sql
stringlengths
6
1.05M
<gh_stars>0 DROP DATABASE IF EXISTS gringotts; CREATE DATABASE gringotts; USE gringotts; DROP TABLE IF EXISTS client; DROP TABLE IF EXISTS client_address; DROP TABLE IF EXISTS account; DROP TABLE IF EXISTS `transaction`; DROP TABLE IF EXISTS bill_supplier; DROP TABLE IF EXISTS bill_payment; DROP TABLE IF EXISTS transfer_interax; DROP TABLE IF EXISTS logins; DROP TABLE IF EXISTS notifications; CREATE TABLE client ( client_id INT(11) AUTO_INCREMENT PRIMARY KEY NOT NULL, first_name VARCHAR(255) NOT NULL, last_name VARCHAR(255) NOT NULL, email VARCHAR(255) NOT NULL, pwd VARCHAR(255) NOT NULL, created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ); CREATE TABLE client_address ( telephone VARCHAR(255), address VARCHAR(255), zip_code VARCHAR(6), province VARCHAR(2), country VARCHAR(3), client_id INT(11) NOT NULL, FOREIGN KEY (client_id) REFERENCES client(client_id) ); CREATE TABLE account ( account_id INT(11) NOT NULL PRIMARY KEY AUTO_INCREMENT, account_type VARCHAR(255) NOT NULL, -- cheques, credit, investment description VARCHAR(255) NOT NULL, account_number VARCHAR(255) NOT NULL, balance DECIMAL(12,2) NOT NULL, client_id INT(11) NOT NULL, FOREIGN KEY (client_id) REFERENCES client(client_id) ); CREATE TABLE `transaction` ( transaction_id INT(11) NOT NULL PRIMARY KEY AUTO_INCREMENT, transaction_date DATETIME, amount DECIMAL(12,2) NOT NULL, transaction_type VARCHAR(255) NOT NULL, -- withdrawal, deposit supplier VARCHAR(255), account_id INT(11) NOT NULL, FOREIGN KEY (account_id) REFERENCES account(account_id) ); CREATE TABLE bill_supplier ( supplier_id INT(11) NOT NULL PRIMARY KEY AUTO_INCREMENT, supplier_name VARCHAR(255) NOT NULL, reference_number VARCHAR(30) NOT NULL, account_id INT(11) NOT NULL, FOREIGN KEY (account_id) REFERENCES account(account_id) ); CREATE TABLE bill_payment ( bill_id INT(11) NOT NULL PRIMARY KEY AUTO_INCREMENT, amount DECIMAL(12,2) NOT NULL, payment_date DATETIME, interax_id VARCHAR(255), -- Save the id from interax here once transaction is complete supplier_id INT(11) NOT NULL, account_id INT(11) NOT NULL, FOREIGN KEY (supplier_id) REFERENCES bill_supplier(supplier_id), FOREIGN KEY (account_id) REFERENCES account(account_id) ); CREATE TABLE interax_transfer ( transfer_id INT(11) NOT NULL PRIMARY KEY AUTO_INCREMENT, to_user_email VARCHAR(255) NOT NULL, from_account INT(11) NOT NULL, security_question VARCHAR(255), answer VARCHAR(255) NOT NULL, amount DECIMAL(6,2) NOT NULL, accepted BOOLEAN, sent_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, accepted_at DATETIME, interax_id VARCHAR(255), -- Save the id from interax API FOREIGN KEY (from_account) REFERENCES account(account_id) ); CREATE TABLE notifications ( message VARCHAR(255), notification_date DATE, client_id INT(11), FOREIGN KEY (client_id) REFERENCES client(client_id) ); CREATE TABLE logins ( login_id INT(11) NOT NULL PRIMARY KEY AUTO_INCREMENT, ip_address VARCHAR(30), success VARCHAR(5), created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, email VARCHAR(255) ); -- ========================= -- DATA INSERTS -- ========================= -- ========================= -- CLIENTS -- ========================= INSERT INTO `client` (`client_id`, `first_name`, `last_name`, `email`, `pwd`, `created_at`) VALUES -- password = <PASSWORD> (NULL, 'katsia', 'touchette', '<EMAIL>', '<PASSWORD>8a808c2402bba5<PASSWORD>6<PASSWORD>7661c', current_timestamp()), (NULL, 'bob', 'marley', '<EMAIL>', '3da541559<PASSWORD>a<PASSWORD>c2<PASSWORD>', current_timestamp()) ; -- ========================= -- Accounts -- ========================= INSERT INTO `account` (`account_id`, `account_type`, `description`,`account_number`, `balance`, `client_id`) VALUES -- Katsia Accounts (NULL, 'cheques', 'Compte de cheques', '0000-1 99-888-01', '11000.32', '1'), (NULL, 'credit', 'Mastercard', '**** **** **** 1234', '-1133.65', '1'), (NULL, 'investment', 'Investments banque', '0000-1 2345455', '2234.23', '1'), -- Bob Accounts (NULL, 'cheques', 'Compte de cheques', '0000-1 99-234-01', '11233333.32', '2'), (NULL, 'credit', 'Mastercard', '**** **** **** 5555', '-13003.65', '2'); -- ========================= -- Transactions -- ========================= INSERT INTO `transaction` (`transaction_id`, `transaction_date`, `amount`, `transaction_type`, `supplier`, `account_id`) VALUES -- Katsia (NULL, '2019-07-13 00:00:00', '31.31', 'withdrawal', 'Amazon.ca', '2'), (NULL, '2019-07-12 00:00:00', '35.35', 'withdrawal', 'Brunet', '2'), (NULL, '2019-07-11 00:00:00', '40.00', 'withdrawal', 'Transfert Interax', '1'), (NULL, '2019-07-10 00:00:00', '54.11', 'withdrawal', 'Metro', '2'), (NULL, '2019-07-10 00:00:00', '131.90', 'withdrawal', 'Metro', '2'), (NULL, '2019-07-08 00:00:00', '1000', 'deposit', 'Depot Paie', '1'), -- Bob (NULL, '2019-07-13 00:00:00', '31.31', 'withdrawal', 'Amazon.ca', '4'), (NULL, '2019-07-13 00:00:00', '35.31', 'withdrawal', 'Amazon.ca', '4'), (NULL, '2019-07-13 00:00:00', '55.31', 'withdrawal', 'Amazon.ca', '4'), (NULL, '2019-07-13 00:00:00', '25.31', 'withdrawal', 'Amazon.ca', '4'), (NULL, '2019-07-13 00:00:00', '25.31', 'withdrawal', 'Amazon.ca', '4'), (NULL, '2019-07-13 00:00:00', '25.31', 'withdrawal', 'Amazon.ca', '4'), (NULL, '2019-07-13 00:00:00', '25.31', 'withdrawal', 'Amazon.ca', '4'), (NULL, '2019-07-13 00:00:00', '25.31', 'withdrawal', 'Amazon.ca', '4'), (NULL, '2019-07-13 00:00:00', '25.31', 'withdrawal', 'Amazon.ca', '4'), (NULL, '2019-07-13 00:00:00', '25.31', 'withdrawal', 'Amazon.ca', '4'), (NULL, '2019-07-13 00:00:00', '25.31', 'withdrawal', 'Amazon.ca', '4'), (NULL, '2019-07-13 00:00:00', '25.31', 'withdrawal', 'Amazon.ca', '4') ; -- ========================= -- Bill Suppliers -- ========================= -- 'Videotron S.E.N.C.' -- 'Bell Canada Inc.' -- '<NAME>' -- '<NAME>' -- 'Mastercard BMO' INSERT INTO `bill_supplier` (`supplier_id`, `supplier_name`, `reference_number`, `account_id`) VALUES -- Katsia (NULL, 'Mastercard BMO', '**** **** **** 1234', '1'), (NULL, 'Videotron S.E.N.C.', '123 1234', '1'), (NULL, 'Bell Canada Inc.', 'aa1234', '1'), (NULL, '<NAME>', 'sco123', '1'), (NULL, '<NAME>', 'desj699', '1'), -- bob (NULL, 'Videotron S.E.N.C.', '222 2222', '4'), (NULL, '<NAME>', '**** **** **** 2222', '4') ; -- ========================= -- Bill Payments -- ========================= INSERT INTO `bill_payment` (`bill_id`, `amount`, `payment_date`, `interax_id`, `supplier_id`, `account_id`) VALUES -- Katsia (NULL, '1000', '2019-07-01 00:00:00', NULL, '1', '1'), -- (NULL, '45.45', '2019-07-03 00:00:00', NULL, '2', '1'), (NULL, '31.31', '2019-07-11 00:00:00', NULL, '3', '1'), (NULL, '800', '2019-06-01 00:00:00', NULL, '1', '1'); -- ========================= -- Interax -- ========================= INSERT INTO `interax_transfer` (`transfer_id`, `to_user_email`, `from_account`, `security_question`, `answer`, `amount`, `accepted`, `sent_at`, `accepted_at`) VALUES (NULL, '<EMAIL>', '1', 'test question', 'test answer', '13', '0', current_timestamp(), NULL);
INSERT INTO `ims`.`customers` (`first_name`, `surname`) VALUES ('jordan', 'harrison'); INSERT INTO `ims`.`customers` (`first_name`, `surname`) VALUES ('Emre', 'Cakmak'); INSERT INTO `ims`.`item` (`itemName`, `itemPrice`,`itemQuantity`) VALUES ('spoon', 1, 10); INSERT INTO `ims`.`item` (`itemName`, `itemPrice`,`itemQuantity`) VALUES ('cheese', 20, 2); INSERT INTO `ims`.`item` (`itemName`, `itemPrice`,`itemQuantity`) VALUES ('PS5', 10, 10); INSERT INTO `ims`.`orders` (`order_id`, `customer_id`) VALUES ('1'); INSERT INTO `ims`.`orders_items` (`fk_order_id`, `fk_item_id`) VALUES ('1','1');
# Database # 1. CREATE : 생성 # 1) DATABASE SHOW DATABASES; #현재 데이터 베이스 확인 # 생성 CREATE DATABASE test; # 선택 USE test; # 현재 데이터 베이스 확인 SELECT DATABASE(); # 2) Table CREATE TABLE user1( user_id INT, name VARCHAR(20), email VARCHAR(30), age INT(3), rdate DATE ) #제약조건 포함 CREATE TABLE user2( user_id INT PRIMARY KEY AUTO_INCREMENT, #PRIMARY KEY : unique (중복되는 데이터가 들어갈 수 없다), not null (null 데이터가 들어갈 수 없다) 라는 조건이 포함 #AUTO_INCREMENT : 데이터가 없으면 1씩 증가할 수 있게 숫자를 넣어준다. name VARCHAR(20) NOT NULL, email VARCHAR(30) UNIQUE NOT NULL, age INT(3) DEFAULT '30', rdate TIMESTAMP # 데이터를 넣지 않으면 현재시간이 자동으로 입력됨 ) --- # 2. Alter : 수정 # 1) DATABASE SHOW VARIABLES like 'character_set_database' ALTER DATABASE test CHARACTER SET = utf8 # 2) TABLE ALTER TABLE user2 ADD tmp TEXT ALTER TABLE user2 MODIFY COLUMN tmp INT(3) ALTER TABLE user2 DROP tmp --- # 3. DROP : 삭제 # 1) DATABASE CREATE DATABASE tmp DROP DATABASE tmp # 2) TABLE USE test; CREATE TABLE user3( NAME VARCHAR(30), AGE INT(3), EMAIL VARCHAR(20) ); SHOW DATABASES; DROP TABLE user3; SELECT DATABASE() --- # 4. INSERT : 삽입 INSERT INTO user1(`user_id`,name, email, age, `rdate`) VALUE(1, "JIN", '<EMAIL>','30',now()), (2, "JUN", '<EMAIL>','32',now()), (3, "HYUN", '<EMAIL>','32',now()), (4, "MIN", '<EMAIL>','31',now()), (5, "EUN", '<EMAIL>','38',now()), (6, "JAE", '<EMAIL>','29',now()), (7, "JOO", '<EMAIL>','29',now()), (8, "HYUK", '<EMAIL>','40',now()), (9, "HUN", '<EMAIL>','27',now()), (10, "HUR", '<EMAIL>','25',now()), (11, "JOON", '<EMAIL>','41',now()) --- # 5. SELECT SELECT user_id, name, age # 데이터 조회 FROM user1 SELECT * FROM user1 SELECT user_id as 'ID', name as '<NAME>', age as 'AGES' FROM user1 --- # 1) DISTINCT : 중복제거 SELECT DISTINCT(NAME) FROM user1 --- # 2) WHERE : 조건 검색 SELECT * FROM user1 WHERE age != 30 # 30세 이상의 사용자를 출력해서 이름의 갯수를 출력 SELECT COUNT(DISTINCT(name)) FROM user1 WHERE age >= 30 --- SELECT * FROM user1 WHERE age > 20 | age < 40 # 3) BETWEEN A AND B SELECT * FROM user1 WHERE age BETWEEN 32 AND 40 --- # 4) ORDER BY : 정렬 SELECT * FROM user1 ORDER BY age ASC SELECT * FROM user1 ORDER BY age DESC SELECT * FROM user1 ORDER BY name , age DESC #이중정렬 --- # 나이가 20세에서 40세 사이에 있는 사용자를 이름 순으로 내림차순 정렬하고 중복데이터를 제거해서 이름만 출력 SELECT DISTINCT (name) FROM user1 WHERE age BETWEEN 20 AND 40 ORDER BY name DESC --- # 5) CONCAT SELECT name, age, CONCAT (name, age) as 'name_age' FROM user1 --- # 6) like : where 절에서 특정 문자열이 들어간 데이터 조회 SELECT * FROM user1 -- WHERE email like '%@naver.%' WHERE email not like '%net' --- # 7) in : 여러개의 조건을 조회할 때 사용 SELECT * FROM user1 WHERE name in ('JUN', 'HUN', 'JIN') --- #서브쿼리 SELECT * FROM user1 WHERE name in ( SELECT DISTINCT(name) FROM user1 # 다른 테이블에서 가져올 수 있다 WHERE age BETWEEN 20 AND 30 ) --- # 8) LIMIT : 출력 갯수 제한 SELECT * FROM user1 LIMIT 3 SELECT * FROM user1 LIMIT 3, 5 # row 3에서 밑으로 5개 --- # 6. UPDATE UPDATE user1 SET age = 20, rdate = '2019-12-23' WHERE age BETWEEN 20 AND 29 SELECT * FROM user1 WHERE age BETWEEN 20 AND 29 --- # 7. DELETE DELETE FROM user1 WHERE name = 'JIN' SELECT * FROM user1
SELECT FilterListId, ModifiedDateUtc - CreatedDateUtc As ProcessingTimeSecs, CreatedDateUtc, ModifiedDateUtc, WasSuccessful FROM snapshots WHERE ModifiedDateUtc - CreatedDateUtc > 30 OR IsCompleted = 0 ORDER BY ProcessingTimeSecs DESC
prompt --application/pages/page_10014 begin -- Manifest -- PAGE: 10014 -- Manifest End wwv_flow_api.component_begin ( p_version_yyyy_mm_dd=>'2020.03.31' ,p_release=>'20.1.0.00.13' ,p_default_workspace_id=>1300871798938927 ,p_default_application_id=>101 ,p_default_id_offset=>0 ,p_default_owner=>'FLOWSDEV' ); wwv_flow_api.create_page( p_id=>10014 ,p_user_interface_id=>wwv_flow_api.id(11041915601621420) ,p_name=>'Page Views' ,p_alias=>'PAGE-VIEWS' ,p_page_mode=>'MODAL' ,p_step_title=>'Page Views' ,p_autocomplete_on_off=>'OFF' ,p_group_id=>wwv_flow_api.id(11045344625621611) ,p_page_template_options=>'#DEFAULT#:ui-dialog--stretch:t-Dialog--noPadding' ,p_required_role=>wwv_flow_api.id(11044789258621602) ,p_required_patch=>wwv_flow_api.id(11043336336621593) ,p_help_text=>wwv_flow_string.join(wwv_flow_t_varchar2( '<p>This page provides an interactive report of the most recent page views.</p>', '<p>Select the reporting timeframe (Default = 1 day) at the top of the page as necessary.<br>', 'Click on the column headings to sort and filter data, or click on the <strong>Actions</strong> button to customize column display and many additional advanced features. Click the <strong>Reset</strong> button to reset the interactive report back to t' ||'he default settings.</p>')) ,p_last_updated_by=>'FLOWSDEV' ,p_last_upd_yyyymmddhh24miss=>'20210124165037' ); wwv_flow_api.create_page_plug( p_id=>wwv_flow_api.id(11074049933622079) ,p_plug_name=>'Page Views' ,p_region_template_options=>'#DEFAULT#:t-IRR-region--noBorders' ,p_plug_template=>wwv_flow_api.id(10955491806620945) ,p_plug_display_sequence=>10 ,p_plug_display_point=>'BODY' ,p_query_type=>'SQL' ,p_plug_source=>wwv_flow_string.join(wwv_flow_t_varchar2( 'select ', ' step_id||''. ''||(select page_name', ' from apex_application_pages p', ' where p.page_id = l.step_id', ' and p.application_id = :APP_ID) page_name,', ' userid_lc user_id,', ' time_stamp timestamp,', ' elap elapsed,', ' step_id page,', ' decode(page_mode,''P'',''Partial'',''D'',''Full'',page_mode) page_mode,', ' component_name,', ' num_rows,', ' ir_search,', ' sqlerrm error', 'from apex_activity_log l', 'where flow_id = :app_id', ' and time_stamp >= sysdate - ( 1/24/60/60 * :P10014_TIMEFRAME )', ' and userid is not null', ' and step_id is not null', 'order by time_stamp desc')) ,p_plug_source_type=>'NATIVE_IR' ,p_ajax_items_to_submit=>'P10014_TIMEFRAME' ,p_prn_page_header=>'Page Views' ); wwv_flow_api.create_worksheet( p_id=>wwv_flow_api.id(11074936434622081) ,p_name=>'Page Views' ,p_max_row_count=>'1000000' ,p_max_row_count_message=>'The maximum row count for this report is #MAX_ROW_COUNT# rows. Please apply a filter to reduce the number of records in your query.' ,p_no_data_found_message=>'No data found.' ,p_pagination_type=>'ROWS_X_TO_Y' ,p_pagination_display_pos=>'BOTTOM_RIGHT' ,p_report_list_mode=>'TABS' ,p_show_detail_link=>'N' ,p_download_formats=>'CSV:HTML:EMAIL:XLS:PDF:RTF' ,p_owner=>'FLOWSDEV' ,p_internal_uid=>11074936434622081 ); wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(11075096044622105) ,p_db_column_name=>'PAGE_NAME' ,p_display_order=>10 ,p_column_identifier=>'A' ,p_column_label=>'Page Name' ,p_column_type=>'STRING' ,p_heading_alignment=>'LEFT' ,p_tz_dependent=>'N' ); wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(11075452088622108) ,p_db_column_name=>'USER_ID' ,p_display_order=>20 ,p_column_identifier=>'B' ,p_column_label=>'User' ,p_column_type=>'STRING' ,p_heading_alignment=>'LEFT' ,p_tz_dependent=>'N' ); wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(11075854459622110) ,p_db_column_name=>'TIMESTAMP' ,p_display_order=>30 ,p_column_identifier=>'C' ,p_column_label=>'Timestamp' ,p_column_type=>'DATE' ,p_heading_alignment=>'LEFT' ,p_format_mask=>'since' ,p_tz_dependent=>'N' ); wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(11076222289622111) ,p_db_column_name=>'ELAPSED' ,p_display_order=>40 ,p_column_identifier=>'D' ,p_column_label=>'Elapsed' ,p_column_type=>'NUMBER' ,p_heading_alignment=>'RIGHT' ,p_column_alignment=>'RIGHT' ,p_format_mask=>'999G999G999G999G999G990D0000' ,p_tz_dependent=>'N' ); wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(11076668352622112) ,p_db_column_name=>'PAGE' ,p_display_order=>50 ,p_column_identifier=>'E' ,p_column_label=>'Page' ,p_column_type=>'NUMBER' ,p_heading_alignment=>'RIGHT' ,p_column_alignment=>'RIGHT' ,p_tz_dependent=>'N' ); wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(11077096733622113) ,p_db_column_name=>'PAGE_MODE' ,p_display_order=>60 ,p_column_identifier=>'F' ,p_column_label=>'Mode' ,p_column_type=>'STRING' ,p_heading_alignment=>'LEFT' ,p_tz_dependent=>'N' ); wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(11077487954622113) ,p_db_column_name=>'COMPONENT_NAME' ,p_display_order=>70 ,p_column_identifier=>'G' ,p_column_label=>'Component Name' ,p_column_type=>'STRING' ,p_heading_alignment=>'LEFT' ,p_tz_dependent=>'N' ); wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(11077857075622114) ,p_db_column_name=>'NUM_ROWS' ,p_display_order=>80 ,p_column_identifier=>'H' ,p_column_label=>'Num Rows' ,p_column_type=>'NUMBER' ,p_heading_alignment=>'RIGHT' ,p_column_alignment=>'RIGHT' ,p_format_mask=>'999G999G999G999G999G990' ,p_tz_dependent=>'N' ); wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(11078256777622127) ,p_db_column_name=>'IR_SEARCH' ,p_display_order=>90 ,p_column_identifier=>'I' ,p_column_label=>'IR Search' ,p_column_type=>'STRING' ,p_heading_alignment=>'LEFT' ,p_format_mask=>'999G999G999G999G999G990' ,p_tz_dependent=>'N' ); wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(11078632890622130) ,p_db_column_name=>'ERROR' ,p_display_order=>100 ,p_column_identifier=>'J' ,p_column_label=>'Error' ,p_column_type=>'STRING' ,p_heading_alignment=>'LEFT' ,p_tz_dependent=>'N' ); wwv_flow_api.create_worksheet_rpt( p_id=>wwv_flow_api.id(11079344181622133) ,p_application_user=>'APXWS_DEFAULT' ,p_report_seq=>10 ,p_report_alias=>'110794' ,p_status=>'PUBLIC' ,p_is_default=>'Y' ,p_report_columns=>'PAGE_NAME:USER_ID:TIMESTAMP:ELAPSED:PAGE_MODE' ,p_sort_column_1=>'TIMESTAMP' ,p_sort_direction_1=>'DESC' ); wwv_flow_api.create_page_plug( p_id=>wwv_flow_api.id(11074122642622079) ,p_plug_name=>'Button Bar' ,p_region_template_options=>'#DEFAULT#:t-ButtonRegion--slimPadding:t-ButtonRegion--noUI:t-Form--large' ,p_component_template_options=>'#DEFAULT#' ,p_escape_on_http_output=>'Y' ,p_plug_template=>wwv_flow_api.id(10940495679620918) ,p_plug_display_sequence=>10 ,p_plug_display_point=>'REGION_POSITION_01' ,p_query_type=>'SQL' ,p_plug_query_num_rows=>15 ,p_attribute_01=>'N' ,p_attribute_02=>'HTML' ,p_attribute_03=>'Y' ); wwv_flow_api.create_page_button( p_id=>wwv_flow_api.id(11080205715622139) ,p_button_sequence=>20 ,p_button_plug_id=>wwv_flow_api.id(11074049933622079) ,p_button_name=>'RESET_REPORT' ,p_button_action=>'REDIRECT_PAGE' ,p_button_template_options=>'t-Button--iconLeft' ,p_button_template_id=>wwv_flow_api.id(11019533711621149) ,p_button_image_alt=>'Reset' ,p_button_position=>'RIGHT_OF_IR_SEARCH_BAR' ,p_button_redirect_url=>'f?p=&APP_ID.:&APP_PAGE_ID.:&SESSION.::&DEBUG.:&APP_PAGE_ID.,RR::' ,p_icon_css_classes=>'fa-undo-alt' ); wwv_flow_api.create_page_item( p_id=>wwv_flow_api.id(11073946672622079) ,p_name=>'P10014_TIMEFRAME' ,p_item_sequence=>10 ,p_item_plug_id=>wwv_flow_api.id(11074122642622079) ,p_item_default=>'900' ,p_prompt=>'Timeframe' ,p_source=>'900' ,p_source_type=>'STATIC' ,p_display_as=>'NATIVE_SELECT_LIST' ,p_named_lov=>'TIMEFRAME (4 WEEKS)' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( 'select disp,', ' val as seconds', ' from table( apex_util.get_timeframe_lov_data )', 'order by insert_order')) ,p_cHeight=>1 ,p_field_template=>wwv_flow_api.id(11018194294621143) ,p_item_template_options=>'#DEFAULT#' ,p_lov_display_extra=>'NO' ,p_attribute_01=>'NONE' ,p_attribute_02=>'N' ,p_attribute_03=>'Y' ); wwv_flow_api.create_page_da_event( p_id=>wwv_flow_api.id(11074267165622079) ,p_name=>'Refresh Report' ,p_event_sequence=>10 ,p_triggering_element_type=>'ITEM' ,p_triggering_element=>'P10014_TIMEFRAME' ,p_bind_type=>'bind' ,p_bind_event_type=>'change' ); wwv_flow_api.create_page_da_action( p_id=>wwv_flow_api.id(11081436051622142) ,p_event_id=>wwv_flow_api.id(11074267165622079) ,p_event_result=>'TRUE' ,p_action_sequence=>10 ,p_execute_on_page_init=>'N' ,p_action=>'NATIVE_REFRESH' ,p_affected_elements_type=>'REGION' ,p_affected_region_id=>wwv_flow_api.id(11074049933622079) ); wwv_flow_api.component_end; end; /
<filename>Assignment1/Problem2/4_OTN_Public_Datasets_After_Normalization/datadump_after_norm/csci5408_a1_p1_2_otnunit_aat_detections.sql -- MySQL dump 10.13 Distrib 8.0.23, for Win64 (x86_64) -- -- Host: localhost Database: csci5408_a1_p1_2 -- ------------------------------------------------------ -- Server version 5.7.23 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!50503 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `otnunit_aat_detections` -- DROP TABLE IF EXISTS `otnunit_aat_detections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `otnunit_aat_detections` ( `detection_project_reference` text, `datacenter_reference` text, `detection_id` varchar(255) NOT NULL, `time` text, `latitude` double DEFAULT NULL, `longitude` double DEFAULT NULL, `tracker_reference` text, `detection_reference_id` text, `detection_reference_type` text, `transmitter_id` int(11) DEFAULT NULL, `detection_serial_number` int(11) DEFAULT NULL, `sensor_data` text, `sensor_data_units` text, `deployment_id` text, `position_data_source` text, PRIMARY KEY (`detection_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `otnunit_aat_detections` -- LOCK TABLES `otnunit_aat_detections` WRITE; /*!40000 ALTER TABLE `otnunit_aat_detections` DISABLE KEYS */; INSERT INTO `otnunit_aat_detections` VALUES ('WRS','OTN-Global','A69-1303-10563-829669','2008-05-20T10:14:19Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829292','2008-05-20T07:39:38Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829290','2008-05-20T07:38:45Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830260','2008-05-20T14:38:47Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828941','2008-05-20T04:42:29Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828938','2008-05-20T04:41:31Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829454','2008-05-20T08:51:03Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829458','2008-05-20T08:53:03Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829457','2008-05-20T08:52:11Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830765','2008-05-20T17:58:24Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825629','2008-05-19T03:07:45Z',44.92408,-62.5425,'WRS','WRS-10563','ANIMAL',10563,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825749','2008-05-19T04:06:38Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825912','2008-05-19T05:16:08Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826058','2008-05-19T06:17:07Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829456','2008-05-20T08:51:33Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829700','2008-05-20T10:30:07Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830255','2008-05-20T14:36:26Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825988','2008-05-19T05:50:31Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829904','2008-05-20T12:00:52Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825746','2008-05-19T04:06:08Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830257','2008-05-20T14:37:16Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828793','2008-05-20T03:51:32Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826151','2008-05-19T06:48:04Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830264','2008-05-20T14:40:42Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830770','2008-05-20T18:01:08Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830267','2008-05-20T14:41:37Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830769','2008-05-20T18:00:30Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825885','2008-05-19T05:05:05Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829296','2008-05-20T07:40:52Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829294','2008-05-20T07:40:10Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828496','2008-05-20T01:30:36Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825751','2008-05-19T04:07:13Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826294','2008-05-19T07:28:20Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830768','2008-05-20T18:00:00Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825763','2008-05-19T04:11:10Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825755','2008-05-19T04:08:35Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829672','2008-05-20T10:15:44Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826442','2008-05-19T08:08:04Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828945','2008-05-20T04:44:01Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830263','2008-05-20T14:40:18Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826445','2008-05-19T08:08:57Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826049','2008-05-19T06:13:13Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825753','2008-05-19T04:08:01Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829298','2008-05-20T07:42:52Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826154','2008-05-19T06:48:53Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828947','2008-05-20T04:45:11Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829784','2008-05-20T11:07:05Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830266','2008-05-20T14:41:08Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826051','2008-05-19T06:14:08Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829899','2008-05-20T11:59:38Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828044','2008-05-19T20:39:37Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825762','2008-05-19T04:10:36Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828796','2008-05-20T03:52:24Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825887','2008-05-19T05:05:58Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826454','2008-05-19T08:11:18Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830102','2008-05-20T13:34:08Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825977','2008-05-19T05:46:16Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825633','2008-05-19T03:09:33Z',44.92408,-62.5425,'WRS','WRS-10563','ANIMAL',10563,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829464','2008-05-20T08:55:45Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829674','2008-05-20T10:16:20Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829303','2008-05-20T07:44:57Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825757','2008-05-19T04:09:18Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828798','2008-05-20T03:53:07Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829462','2008-05-20T08:54:46Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828951','2008-05-20T04:46:13Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829301','2008-05-20T07:44:31Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825760','2008-05-19T04:10:08Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828502','2008-05-20T01:33:13Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826274','2008-05-19T07:23:08Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825759','2008-05-19T04:09:43Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829680','2008-05-20T10:18:27Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830252','2008-05-20T14:35:29Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829502','2008-05-20T09:09:16Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825765','2008-05-19T04:11:54Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829180','2008-05-20T06:52:32Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829786','2008-05-20T11:08:01Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829311','2008-05-20T07:47:00Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826055','2008-05-19T06:15:27Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830781','2008-05-20T18:08:37Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826535','2008-05-19T08:31:53Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829179','2008-05-20T06:51:51Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830782','2008-05-20T18:09:09Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826156','2008-05-19T06:49:29Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826278','2008-05-19T07:24:18Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825890','2008-05-19T05:07:05Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829482','2008-05-20T09:03:30Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826160','2008-05-19T06:50:51Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826158','2008-05-19T06:50:17Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825639','2008-05-19T03:12:27Z',44.92408,-62.5425,'WRS','WRS-10563','ANIMAL',10563,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829306','2008-05-20T07:45:28Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825892','2008-05-19T05:07:29Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828959','2008-05-20T04:50:18Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829788','2008-05-20T11:08:51Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825777','2008-05-19T04:16:01Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825767','2008-05-19T04:12:19Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829471','2008-05-20T09:00:12Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826534','2008-05-19T08:30:54Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830780','2008-05-20T18:07:24Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-827090','2008-05-19T11:43:33Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826281','2008-05-19T07:24:46Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830105','2008-05-20T13:35:08Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825899','2008-05-19T05:10:10Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829470','2008-05-20T08:59:40Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826447','2008-05-19T08:09:41Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825893','2008-05-19T05:07:53Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826168','2008-05-19T06:53:08Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826537','2008-05-19T08:32:47Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826285','2008-05-19T07:26:04Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829472','2008-05-20T09:00:52Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826282','2008-05-19T07:25:20Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826369','2008-05-19T07:49:39Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829475','2008-05-20T09:01:51Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830779','2008-05-20T18:06:50Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830641','2008-05-20T16:45:06Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830271','2008-05-20T14:42:59Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826448','2008-05-19T08:10:04Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829308','2008-05-20T07:46:06Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828806','2008-05-20T03:55:11Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825769','2008-05-19T04:12:47Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828962','2008-05-20T04:51:42Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825637','2008-05-19T03:11:08Z',44.92408,-62.5425,'WRS','WRS-10563','ANIMAL',10563,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825896','2008-05-19T05:08:48Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829902','2008-05-20T12:00:24Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825981','2008-05-19T05:48:12Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829315','2008-05-20T07:49:12Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825895','2008-05-19T05:08:19Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826452','2008-05-19T08:10:52Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825770','2008-05-19T04:13:19Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829684','2008-05-20T10:19:23Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825775','2008-05-19T04:15:02Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-827473','2008-05-19T14:22:01Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829313','2008-05-20T07:47:44Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828811','2008-05-20T03:57:09Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829314','2008-05-20T07:48:38Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829681','2008-05-20T10:18:53Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826056','2008-05-19T06:16:08Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825897','2008-05-19T05:09:23Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830773','2008-05-20T18:02:42Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830614','2008-05-20T16:37:07Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829053','2008-05-20T05:22:38Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828809','2008-05-20T03:56:11Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829479','2008-05-20T09:02:45Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826451','2008-05-19T08:10:28Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825772','2008-05-19T04:14:01Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830681','2008-05-20T16:56:41Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829184','2008-05-20T06:55:23Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830643','2008-05-20T16:45:31Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829790','2008-05-20T11:09:27Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829139','2008-05-20T06:30:51Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830124','2008-05-20T13:41:24Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828816','2008-05-20T03:59:41Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826541','2008-05-19T08:34:01Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825902','2008-05-19T05:12:16Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825911','2008-05-19T05:15:37Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829791','2008-05-20T11:10:17Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830772','2008-05-20T18:02:00Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829687','2008-05-20T10:20:50Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825901','2008-05-19T05:11:20Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826543','2008-05-19T08:34:35Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826164','2008-05-19T06:52:02Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829597','2008-05-20T09:46:10Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828081','2008-05-19T21:00:30Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830554','2008-05-20T16:23:06Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829330','2008-05-20T07:54:06Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829134','2008-05-20T06:27:23Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826287','2008-05-19T07:26:30Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826456','2008-05-19T08:11:47Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826289','2008-05-19T07:26:59Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825905','2008-05-19T05:13:37Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829490','2008-05-20T09:05:54Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828671','2008-05-20T02:53:15Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829907','2008-05-20T12:01:26Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826372','2008-05-19T07:50:22Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829699','2008-05-20T10:28:52Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829486','2008-05-20T09:05:03Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826163','2008-05-19T06:51:36Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829182','2008-05-20T06:53:33Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826539','2008-05-19T08:33:33Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829058','2008-05-20T05:24:50Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830113','2008-05-20T13:36:59Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826465','2008-05-19T08:14:19Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829688','2008-05-20T10:21:28Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829320','2008-05-20T07:50:51Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829319','2008-05-20T07:50:22Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825780','2008-05-19T04:16:55Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825904','2008-05-19T05:13:04Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828090','2008-05-19T21:05:27Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829133','2008-05-20T06:26:25Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826060','2008-05-19T06:18:02Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830290','2008-05-20T14:54:32Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829138','2008-05-20T06:29:56Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828983','2008-05-20T05:00:07Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829912','2008-05-20T12:03:11Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829596','2008-05-20T09:45:40Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825910','2008-05-19T05:15:10Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826166','2008-05-19T06:52:32Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826458','2008-05-19T08:12:22Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829186','2008-05-20T06:56:06Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828673','2008-05-20T02:53:42Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825643','2008-05-19T03:14:07Z',44.92408,-62.5425,'WRS','WRS-10563','ANIMAL',10563,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830117','2008-05-20T13:38:07Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829698','2008-05-20T10:28:04Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830116','2008-05-20T13:37:43Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825788','2008-05-19T04:18:37Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830296','2008-05-20T14:57:31Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829493','2008-05-20T09:06:32Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826063','2008-05-19T06:18:49Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825641','2008-05-19T03:13:08Z',44.92408,-62.5425,'WRS','WRS-10563','ANIMAL',10563,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-827115','2008-05-19T11:51:33Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829693','2008-05-20T10:24:06Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825986','2008-05-19T05:49:40Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829692','2008-05-20T10:23:03Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830294','2008-05-20T14:57:00Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830291','2008-05-20T14:55:25Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826292','2008-05-19T07:27:34Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829595','2008-05-20T09:44:53Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830122','2008-05-20T13:40:50Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829325','2008-05-20T07:52:12Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826461','2008-05-19T08:13:09Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825909','2008-05-19T05:14:45Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828105','2008-05-19T21:12:58Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829495','2008-05-20T09:07:27Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830293','2008-05-20T14:56:34Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830292','2008-05-20T14:56:09Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829136','2008-05-20T06:28:56Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825786','2008-05-19T04:18:06Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828678','2008-05-20T02:55:53Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829499','2008-05-20T09:08:41Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826067','2008-05-19T06:19:56Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826462','2008-05-19T08:13:40Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830587','2008-05-20T16:30:04Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829697','2008-05-20T10:27:08Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826065','2008-05-19T06:19:19Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829696','2008-05-20T10:26:09Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825784','2008-05-19T04:17:39Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-827118','2008-05-19T11:52:14Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825907','2008-05-19T05:14:21Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829910','2008-05-20T12:02:11Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829695','2008-05-20T10:25:08Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829497','2008-05-20T09:08:13Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829327','2008-05-20T07:52:41Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829734','2008-05-20T10:42:37Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825962','2008-05-19T05:39:41Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829591','2008-05-20T09:42:59Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826073','2008-05-19T06:21:27Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829703','2008-05-20T10:32:09Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829336','2008-05-20T07:58:20Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826301','2008-05-19T07:30:14Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825997','2008-05-19T05:54:35Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830778','2008-05-20T18:06:22Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828733','2008-05-20T03:20:57Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826187','2008-05-19T06:59:18Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829346','2008-05-20T08:00:30Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829710','2008-05-20T10:35:08Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829606','2008-05-20T09:48:18Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829718','2008-05-20T10:37:51Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825992','2008-05-19T05:52:09Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829509','2008-05-20T09:11:06Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829504','2008-05-20T09:10:02Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828697','2008-05-20T03:04:33Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829615','2008-05-20T09:51:28Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829507','2008-05-20T09:10:31Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828987','2008-05-20T05:02:03Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830300','2008-05-20T14:59:01Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829934','2008-05-20T12:08:53Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826097','2008-05-19T06:29:41Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829201','2008-05-20T07:01:00Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829082','2008-05-20T05:34:33Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829709','2008-05-20T10:34:44Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829513','2008-05-20T09:11:54Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828688','2008-05-20T02:59:56Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826298','2008-05-19T07:29:25Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829335','2008-05-20T07:57:33Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826006','2008-05-19T05:58:02Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828687','2008-05-20T02:59:05Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830052','2008-05-20T13:16:02Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825795','2008-05-19T04:20:09Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826317','2008-05-19T07:34:28Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825920','2008-05-19T05:20:45Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829926','2008-05-20T12:06:28Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829333','2008-05-20T07:56:38Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829708','2008-05-20T10:34:01Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829142','2008-05-20T06:33:58Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829070','2008-05-20T05:28:57Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829342','2008-05-20T07:59:32Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828993','2008-05-20T05:03:29Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825804','2008-05-19T04:22:21Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830308','2008-05-20T15:01:43Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830133','2008-05-20T13:43:59Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826378','2008-05-19T07:52:28Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-827129','2008-05-19T11:55:01Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829515','2008-05-20T09:12:26Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826375','2008-05-19T07:51:25Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825799','2008-05-19T04:21:19Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826304','2008-05-19T07:30:49Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826174','2008-05-19T06:54:37Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825915','2008-05-19T05:17:45Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825798','2008-05-19T04:20:53Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826171','2008-05-19T06:53:59Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828693','2008-05-20T03:02:15Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825919','2008-05-19T05:20:04Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829916','2008-05-20T12:03:51Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826076','2008-05-19T06:22:23Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829339','2008-05-20T07:58:52Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829600','2008-05-20T09:46:47Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828695','2008-05-20T03:04:04Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829712','2008-05-20T10:35:32Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830700','2008-05-20T17:03:38Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-827132','2008-05-19T11:55:38Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826481','2008-05-19T08:17:44Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825917','2008-05-19T05:18:35Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826397','2008-05-19T07:57:29Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825990','2008-05-19T05:51:11Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828997','2008-05-20T05:04:19Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830314','2008-05-20T15:03:51Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828694','2008-05-20T03:03:18Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829519','2008-05-20T09:13:07Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829714','2008-05-20T10:35:58Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825801','2008-05-19T04:21:47Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829716','2008-05-20T10:37:03Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825918','2008-05-19T05:19:12Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826469','2008-05-19T08:15:15Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825922','2008-05-19T05:21:43Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826079','2008-05-19T06:23:12Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830328','2008-05-20T15:09:54Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829073','2008-05-20T05:29:50Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825809','2008-05-19T04:23:31Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829523','2008-05-20T09:14:07Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826309','2008-05-19T07:32:07Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826176','2008-05-19T06:55:30Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829720','2008-05-20T10:38:25Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826480','2008-05-19T08:17:20Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825928','2008-05-19T05:23:45Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826178','2008-05-19T06:56:12Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829001','2008-05-20T05:05:46Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829144','2008-05-20T06:36:26Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828698','2008-05-20T03:07:09Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830319','2008-05-20T15:06:10Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825807','2008-05-19T04:23:05Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826084','2008-05-19T06:24:37Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829147','2008-05-20T06:38:00Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826473','2008-05-19T08:16:03Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830512','2008-05-20T16:09:05Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828704','2008-05-20T03:09:06Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829528','2008-05-20T09:15:04Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829796','2008-05-20T11:12:20Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829143','2008-05-20T06:34:38Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829005','2008-05-20T05:07:13Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825811','2008-05-19T04:24:00Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828147','2008-05-19T21:46:27Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829350','2008-05-20T08:01:23Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825813','2008-05-19T04:24:35Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830325','2008-05-20T15:08:43Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826307','2008-05-19T07:31:36Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830327','2008-05-20T15:09:27Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829722','2008-05-20T10:39:08Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828701','2008-05-20T03:08:09Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826547','2008-05-19T08:36:20Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830561','2008-05-20T16:24:25Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830687','2008-05-20T16:58:09Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829354','2008-05-20T08:03:06Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830738','2008-05-20T17:29:22Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826081','2008-05-19T06:23:48Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825995','2008-05-19T05:53:39Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828706','2008-05-20T03:09:56Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830685','2008-05-20T16:57:35Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825927','2008-05-19T05:23:20Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830330','2008-05-20T15:10:24Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829534','2008-05-20T09:16:31Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829010','2008-05-20T05:07:52Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829146','2008-05-20T06:37:05Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829727','2008-05-20T10:40:26Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825924','2008-05-19T05:22:36Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829532','2008-05-20T09:15:54Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829725','2008-05-20T10:39:58Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828708','2008-05-20T03:10:33Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826382','2008-05-19T07:53:30Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830510','2008-05-20T16:08:07Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826314','2008-05-19T07:33:41Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829798','2008-05-20T11:13:11Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825994','2008-05-19T05:53:00Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829729','2008-05-20T10:41:00Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826180','2008-05-19T06:57:15Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826550','2008-05-19T08:37:00Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830506','2008-05-20T16:06:05Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829603','2008-05-20T09:47:38Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829356','2008-05-20T08:04:06Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829198','2008-05-20T07:00:08Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826183','2008-05-19T06:58:17Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826311','2008-05-19T07:32:46Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829732','2008-05-20T10:42:09Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829537','2008-05-20T09:17:22Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826476','2008-05-19T08:16:36Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829540','2008-05-20T09:18:02Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829390','2008-05-20T08:16:20Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830777','2008-05-20T18:05:36Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826318','2008-05-19T07:35:00Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826554','2008-05-19T08:37:59Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826558','2008-05-19T08:38:53Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826386','2008-05-19T07:54:32Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825947','2008-05-19T05:31:02Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828713','2008-05-20T03:12:04Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826565','2008-05-19T08:40:04Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829150','2008-05-20T06:39:19Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826502','2008-05-19T08:23:44Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829203','2008-05-20T07:01:41Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826208','2008-05-19T07:06:16Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826327','2008-05-19T07:37:31Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830354','2008-05-20T15:17:04Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825999','2008-05-19T05:55:24Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830343','2008-05-20T15:15:14Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830156','2008-05-20T13:54:36Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830514','2008-05-20T16:09:57Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826087','2008-05-19T06:25:12Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829736','2008-05-20T10:43:09Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830692','2008-05-20T16:59:48Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825823','2008-05-19T04:29:47Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830557','2008-05-20T16:23:40Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826320','2008-05-19T07:35:40Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829549','2008-05-20T09:20:30Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829544','2008-05-20T09:19:00Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829208','2008-05-20T07:03:35Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825676','2008-05-19T03:39:33Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825931','2008-05-19T05:24:42Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826483','2008-05-19T08:18:09Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825840','2008-05-19T04:44:54Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829805','2008-05-20T11:15:29Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825930','2008-05-19T05:24:11Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829811','2008-05-20T11:17:13Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825936','2008-05-19T05:26:12Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829546','2008-05-20T09:19:51Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826191','2008-05-19T07:00:17Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829552','2008-05-20T09:21:26Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825933','2008-05-19T05:25:20Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830690','2008-05-20T16:58:53Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830340','2008-05-20T15:14:11Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829743','2008-05-20T10:45:51Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829927','2008-05-20T12:06:55Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829562','2008-05-20T09:24:53Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825828','2008-05-19T04:37:15Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826390','2008-05-19T07:55:34Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830526','2008-05-20T16:14:27Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829368','2008-05-20T08:07:18Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830152','2008-05-20T13:52:58Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829149','2008-05-20T06:38:48Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825826','2008-05-19T04:32:42Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830043','2008-05-20T13:13:06Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825946','2008-05-19T05:30:34Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826562','2008-05-19T08:39:37Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826089','2008-05-19T06:25:58Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829738','2008-05-20T10:43:51Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825657','2008-05-19T03:24:58Z',44.92408,-62.5425,'WRS','WRS-10563','ANIMAL',10563,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826488','2008-05-19T08:19:07Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830516','2008-05-20T16:10:38Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825938','2008-05-19T05:26:54Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829559','2008-05-20T09:24:11Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826193','2008-05-19T07:01:13Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829558','2008-05-20T09:23:39Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825825','2008-05-19T04:31:30Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830518','2008-05-20T16:11:37Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826194','2008-05-19T07:02:01Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829590','2008-05-20T09:42:18Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825945','2008-05-19T05:29:48Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829572','2008-05-20T09:31:14Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830154','2008-05-20T13:53:42Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829741','2008-05-20T10:44:52Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830520','2008-05-20T16:12:32Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830347','2008-05-20T15:16:00Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825961','2008-05-19T05:39:03Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825827','2008-05-19T04:34:32Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829570','2008-05-20T09:28:44Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826196','2008-05-19T07:02:33Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830524','2008-05-20T16:13:49Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830040','2008-05-20T13:12:22Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825941','2008-05-19T05:27:55Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829566','2008-05-20T09:25:55Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830351','2008-05-20T15:16:29Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829568','2008-05-20T09:26:55Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825943','2008-05-19T05:28:54Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826486','2008-05-19T08:18:36Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829803','2008-05-20T11:14:44Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830529','2008-05-20T16:15:21Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830045','2008-05-20T13:13:58Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829375','2008-05-20T08:10:12Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830776','2008-05-20T18:04:42Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830168','2008-05-20T13:59:15Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829370','2008-05-20T08:07:55Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826569','2008-05-19T08:41:11Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826328','2008-05-19T07:38:13Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828719','2008-05-20T03:14:32Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829574','2008-05-20T09:33:50Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-827045','2008-05-19T11:26:02Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828726','2008-05-20T03:18:55Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825831','2008-05-19T04:41:04Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830357','2008-05-20T15:17:52Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826490','2008-05-19T08:19:47Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829374','2008-05-20T08:09:21Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826000','2008-05-19T05:56:00Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830365','2008-05-20T15:20:05Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830359','2008-05-20T15:18:24Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829573','2008-05-20T09:31:55Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825952','2008-05-19T05:32:49Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825960','2008-05-19T05:38:12Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829613','2008-05-20T09:50:39Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829153','2008-05-20T06:40:00Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826091','2008-05-19T06:27:06Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830532','2008-05-20T16:16:05Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826331','2008-05-19T07:39:14Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828581','2008-05-20T02:07:31Z',44.92408,-62.5425,'WRS','WRS-10563','ANIMAL',10563,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830161','2008-05-20T13:56:20Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829746','2008-05-20T10:47:56Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829576','2008-05-20T09:34:39Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830361','2008-05-20T15:19:05Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826092','2008-05-19T06:27:59Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826492','2008-05-19T08:20:44Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829378','2008-05-20T08:10:51Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830534','2008-05-20T16:16:30Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830158','2008-05-20T13:55:10Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830627','2008-05-20T16:40:42Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825951','2008-05-19T05:32:22Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830160','2008-05-20T13:55:54Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826200','2008-05-19T07:03:16Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825949','2008-05-19T05:31:36Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825959','2008-05-19T05:37:35Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829755','2008-05-20T10:52:55Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830775','2008-05-20T18:03:43Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826003','2008-05-19T05:57:20Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830697','2008-05-20T17:02:14Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825674','2008-05-19T03:38:40Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829588','2008-05-20T09:41:47Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-828730','2008-05-20T03:19:57Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830536','2008-05-20T16:16:57Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825955','2008-05-19T05:35:00Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825834','2008-05-19T04:42:30Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825671','2008-05-19T03:34:50Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826206','2008-05-19T07:05:18Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826337','2008-05-19T07:41:10Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830163','2008-05-20T13:56:49Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829383','2008-05-20T08:13:31Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829584','2008-05-20T09:40:04Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826334','2008-05-19T07:40:14Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829579','2008-05-20T09:35:58Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826203','2008-05-19T07:04:18Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825954','2008-05-19T05:34:01Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829381','2008-05-20T08:12:58Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829809','2008-05-20T11:16:30Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-827037','2008-05-19T11:23:43Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825838','2008-05-19T04:44:00Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826094','2008-05-19T06:28:40Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825833','2008-05-19T04:41:54Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825953','2008-05-19T05:33:21Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829582','2008-05-20T09:36:57Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829583','2008-05-20T09:37:37Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826568','2008-05-19T08:40:34Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825958','2008-05-19T05:37:05Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-827039','2008-05-19T11:24:33Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830368','2008-05-20T15:21:01Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829385','2008-05-20T08:14:14Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826393','2008-05-19T07:56:33Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826499','2008-05-19T08:23:03Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825956','2008-05-19T05:35:54Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830541','2008-05-20T16:18:06Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829033','2008-05-20T05:15:25Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-830165','2008-05-20T13:57:24Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-826001','2008-05-19T05:56:48Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829610','2008-05-20T09:50:03Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825836','2008-05-19T04:43:21Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-827042','2008-05-19T11:25:10Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-829585','2008-05-20T09:40:59Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10563-825957','2008-05-19T05:36:38Z',44.91786,-62.53628,'WRS','WRS-10563','ANIMAL',10563,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-848339','2008-05-27T07:07:21Z',44.91011,-62.51947,'WRS','WRS-10564','ANIMAL',10564,1082,NULL,'NA','WRSH-SW3-VR2-1082-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832164','2008-05-21T11:59:35Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851816','2008-05-29T05:34:06Z',44.87378,-62.48225,'WRS','WRS-10564','ANIMAL',10564,1138,NULL,'NA','WRSH-SW5C-VR2-1138-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828274','2008-05-19T23:20:53Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-846108','2008-05-26T07:42:55Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827665','2008-05-19T16:04:55Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-850741','2008-05-28T15:46:31Z',44.87467,-62.48631,'WRS','WRS-10564','ANIMAL',10564,1134,NULL,'NA','WRSH-SW5B-VR2-1134-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827812','2008-05-19T17:50:40Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-846087','2008-05-26T07:30:36Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832117','2008-05-21T09:30:47Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-850723','2008-05-28T15:33:54Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828319','2008-05-19T23:54:55Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842550','2008-05-25T01:16:55Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832093','2008-05-21T09:12:28Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-850720','2008-05-28T15:33:23Z',44.87467,-62.48631,'WRS','WRS-10564','ANIMAL',10564,1134,NULL,'NA','WRSH-SW5B-VR2-1134-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828448','2008-05-20T01:05:45Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-840787','2008-05-24T14:20:28Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833521','2008-05-22T06:36:24Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-850721','2008-05-28T15:33:26Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827936','2008-05-19T19:27:24Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-838772','2008-05-24T04:57:09Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828593','2008-05-20T02:13:31Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-850727','2008-05-28T15:36:14Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828600','2008-05-20T02:16:01Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842650','2008-05-25T01:53:23Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-831482','2008-05-21T04:22:13Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-850739','2008-05-28T15:45:25Z',44.87467,-62.48631,'WRS','WRS-10564','ANIMAL',10564,1134,NULL,'NA','WRSH-SW5B-VR2-1134-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832071','2008-05-21T08:59:14Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842686','2008-05-25T02:07:20Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827772','2008-05-19T17:23:10Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-850731','2008-05-28T15:38:15Z',44.87467,-62.48631,'WRS','WRS-10564','ANIMAL',10564,1134,NULL,'NA','WRSH-SW5B-VR2-1134-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828029','2008-05-19T20:27:12Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842644','2008-05-25T01:48:47Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827897','2008-05-19T18:50:21Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-850734','2008-05-28T15:42:15Z',44.87467,-62.48631,'WRS','WRS-10564','ANIMAL',10564,1134,NULL,'NA','WRSH-SW5B-VR2-1134-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828743','2008-05-20T03:25:03Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-843800','2008-05-25T08:41:56Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828247','2008-05-19T23:01:29Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-850738','2008-05-28T15:44:52Z',44.87467,-62.48631,'WRS','WRS-10564','ANIMAL',10564,1134,NULL,'NA','WRSH-SW5B-VR2-1134-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828735','2008-05-20T03:21:13Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842612','2008-05-25T01:36:18Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832075','2008-05-21T09:01:15Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-850733','2008-05-28T15:41:19Z',44.87467,-62.48631,'WRS','WRS-10564','ANIMAL',10564,1134,NULL,'NA','WRSH-SW5B-VR2-1134-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-831490','2008-05-21T04:24:57Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-848521','2008-05-27T08:11:02Z',44.91011,-62.51947,'WRS','WRS-10564','ANIMAL',10564,1082,NULL,'NA','WRSH-SW3-VR2-1082-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832074','2008-05-21T09:00:15Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-850732','2008-05-28T15:40:19Z',44.87467,-62.48631,'WRS','WRS-10564','ANIMAL',10564,1134,NULL,'NA','WRSH-SW5B-VR2-1134-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832092','2008-05-21T09:11:25Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-847146','2008-05-26T18:40:42Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832077','2008-05-21T09:02:12Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-850735','2008-05-28T15:43:03Z',44.87467,-62.48631,'WRS','WRS-10564','ANIMAL',10564,1134,NULL,'NA','WRSH-SW5B-VR2-1134-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832079','2008-05-21T09:03:02Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-846097','2008-05-26T07:34:19Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828737','2008-05-20T03:21:45Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-850737','2008-05-28T15:44:24Z',44.87467,-62.48631,'WRS','WRS-10564','ANIMAL',10564,1134,NULL,'NA','WRSH-SW5B-VR2-1134-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832082','2008-05-21T09:05:05Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-843317','2008-05-25T06:11:38Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832081','2008-05-21T09:04:28Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-850736','2008-05-28T15:43:38Z',44.87467,-62.48631,'WRS','WRS-10564','ANIMAL',10564,1134,NULL,'NA','WRSH-SW5B-VR2-1134-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832080','2008-05-21T09:03:38Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842829','2008-05-25T03:01:37Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828753','2008-05-20T03:30:16Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851998','2008-05-29T06:23:22Z',44.87378,-62.48225,'WRS','WRS-10564','ANIMAL',10564,1138,NULL,'NA','WRSH-SW5C-VR2-1138-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827866','2008-05-19T18:28:15Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842745','2008-05-25T02:38:27Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827652','2008-05-19T15:54:10Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851504','2008-05-29T04:09:38Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832091','2008-05-21T09:10:42Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-847468','2008-05-26T22:11:18Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832085','2008-05-21T09:06:32Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-852068','2008-05-29T06:39:26Z',44.87378,-62.48225,'WRS','WRS-10564','ANIMAL',10564,1138,NULL,'NA','WRSH-SW5C-VR2-1138-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827306','2008-05-19T13:16:57Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-840719','2008-05-24T13:52:14Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-831487','2008-05-21T04:24:08Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851503','2008-05-29T04:09:14Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832084','2008-05-21T09:05:55Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842648','2008-05-25T01:51:43Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827836','2008-05-19T18:07:28Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-852115','2008-05-29T06:51:56Z',44.87378,-62.48225,'WRS','WRS-10564','ANIMAL',10564,1138,NULL,'NA','WRSH-SW5C-VR2-1138-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-826521','2008-05-19T08:27:17Z',44.92927,-62.54592,'WRS','WRS-10564','ANIMAL',10564,1093,NULL,'NA','WRSH-FW2-VR2-1093-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842646','2008-05-25T01:51:05Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827644','2008-05-19T15:47:26Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851460','2008-05-29T03:55:41Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832090','2008-05-21T09:09:41Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-847608','2008-05-26T23:44:43Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832087','2008-05-21T09:07:22Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851435','2008-05-29T03:40:11Z',44.87467,-62.48631,'WRS','WRS-10564','ANIMAL',10564,1134,NULL,'NA','WRSH-SW5B-VR2-1134-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833550','2008-05-22T06:49:30Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-846090','2008-05-26T07:31:55Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832089','2008-05-21T09:08:01Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851442','2008-05-29T03:48:45Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827844','2008-05-19T18:12:41Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-840733','2008-05-24T14:01:23Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-826513','2008-05-19T08:26:00Z',44.92927,-62.54592,'WRS','WRS-10564','ANIMAL',10564,1093,NULL,'NA','WRSH-FW2-VR2-1093-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851437','2008-05-29T03:46:05Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833587','2008-05-22T07:01:22Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-840725','2008-05-24T13:56:09Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833569','2008-05-22T06:56:34Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851457','2008-05-29T03:54:41Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832103','2008-05-21T09:21:43Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-840726','2008-05-24T13:57:57Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-831496','2008-05-21T04:26:43Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851438','2008-05-29T03:46:59Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828220','2008-05-19T22:43:32Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842653','2008-05-25T01:54:24Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832095','2008-05-21T09:13:31Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851441','2008-05-29T03:48:12Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-826505','2008-05-19T08:24:30Z',44.92927,-62.54592,'WRS','WRS-10564','ANIMAL',10564,1093,NULL,'NA','WRSH-FW2-VR2-1093-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842662','2008-05-25T01:57:13Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827722','2008-05-19T16:48:00Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851439','2008-05-29T03:47:44Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833556','2008-05-22T06:51:44Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842652','2008-05-25T01:53:51Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828540','2008-05-20T01:52:16Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851447','2008-05-29T03:50:31Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827775','2008-05-19T17:24:54Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-840731','2008-05-24T14:00:35Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-826572','2008-05-19T08:41:38Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851444','2008-05-29T03:49:28Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832116','2008-05-21T09:30:04Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-840735','2008-05-24T14:01:49Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833560','2008-05-22T06:53:32Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851456','2008-05-29T03:54:37Z',44.87467,-62.48631,'WRS','WRS-10564','ANIMAL',10564,1134,NULL,'NA','WRSH-SW5B-VR2-1134-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-831499','2008-05-21T04:27:55Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-846088','2008-05-26T07:31:10Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827935','2008-05-19T19:26:48Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851449','2008-05-29T03:51:34Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828440','2008-05-20T01:01:06Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-848542','2008-05-27T08:15:39Z',44.91011,-62.51947,'WRS','WRS-10564','ANIMAL',10564,1082,NULL,'NA','WRSH-SW3-VR2-1082-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827927','2008-05-19T19:22:01Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851454','2008-05-29T03:53:40Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828356','2008-05-20T00:22:25Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842656','2008-05-25T01:55:07Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828742','2008-05-20T03:24:18Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851452','2008-05-29T03:52:37Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-831492','2008-05-21T04:25:31Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-846160','2008-05-26T08:22:29Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828488','2008-05-20T01:28:18Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-852006','2008-05-29T06:24:59Z',44.87378,-62.48225,'WRS','WRS-10564','ANIMAL',10564,1138,NULL,'NA','WRSH-SW5C-VR2-1138-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827430','2008-05-19T14:03:40Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842659','2008-05-25T01:56:10Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832102','2008-05-21T09:20:42Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851462','2008-05-29T03:56:37Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828592','2008-05-20T02:12:45Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-840736','2008-05-24T14:02:18Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827310','2008-05-19T13:18:13Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851478','2008-05-29T04:02:34Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-826577','2008-05-19T08:42:30Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-840739','2008-05-24T14:04:52Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833567','2008-05-22T06:56:10Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851466','2008-05-29T03:58:46Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828297','2008-05-19T23:40:34Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-848548','2008-05-27T08:16:22Z',44.91011,-62.51947,'WRS','WRS-10564','ANIMAL',10564,1082,NULL,'NA','WRSH-SW3-VR2-1082-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827308','2008-05-19T13:17:43Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851500','2008-05-29T04:08:51Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827796','2008-05-19T17:40:14Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-840737','2008-05-24T14:02:54Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827315','2008-05-19T13:20:15Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851465','2008-05-29T03:58:00Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832100','2008-05-21T09:19:56Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-846092','2008-05-26T07:32:22Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833563','2008-05-22T06:55:03Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851463','2008-05-29T03:57:25Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827361','2008-05-19T13:40:26Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842666','2008-05-25T01:59:18Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832107','2008-05-21T09:23:38Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851470','2008-05-29T04:00:30Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-831498','2008-05-21T04:27:15Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-848552','2008-05-27T08:17:37Z',44.91011,-62.51947,'WRS','WRS-10564','ANIMAL',10564,1082,NULL,'NA','WRSH-SW3-VR2-1082-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827643','2008-05-19T15:40:16Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851477','2008-05-29T04:02:06Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827929','2008-05-19T19:23:11Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842664','2008-05-25T01:58:16Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827080','2008-05-19T11:39:15Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851467','2008-05-29T03:59:14Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832115','2008-05-21T09:29:11Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-841802','2008-05-24T19:32:02Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827934','2008-05-19T19:25:58Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851468','2008-05-29T03:59:47Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828283','2008-05-19T23:28:00Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-840743','2008-05-24T14:07:52Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827695','2008-05-19T16:28:58Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851475','2008-05-29T04:01:41Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833574','2008-05-22T06:57:24Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-840756','2008-05-24T14:12:07Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832104','2008-05-21T09:22:27Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851474','2008-05-29T04:01:17Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827642','2008-05-19T15:35:13Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-848557','2008-05-27T08:18:42Z',44.91011,-62.51947,'WRS','WRS-10564','ANIMAL',10564,1082,NULL,'NA','WRSH-SW3-VR2-1082-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832106','2008-05-21T09:23:14Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851472','2008-05-29T04:00:53Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-826575','2008-05-19T08:42:03Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-840749','2008-05-24T14:10:20Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827928','2008-05-19T19:22:32Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-852003','2008-05-29T06:24:20Z',44.87378,-62.48225,'WRS','WRS-10564','ANIMAL',10564,1138,NULL,'NA','WRSH-SW5C-VR2-1138-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833572','2008-05-22T06:56:58Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-840762','2008-05-24T14:14:18Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827784','2008-05-19T17:33:25Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851498','2008-05-29T04:08:07Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832105','2008-05-21T09:22:50Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-840769','2008-05-24T14:16:54Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833578','2008-05-22T06:58:28Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851480','2008-05-29T04:03:07Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832108','2008-05-21T09:24:03Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-840770','2008-05-24T14:17:18Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828368','2008-05-20T00:28:31Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851482','2008-05-29T04:03:48Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832114','2008-05-21T09:28:33Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-847458','2008-05-26T22:07:11Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832112','2008-05-21T09:26:45Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851484','2008-05-29T04:04:48Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832109','2008-05-21T09:24:31Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842671','2008-05-25T02:03:39Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-826818','2008-05-19T09:45:09Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851489','2008-05-29T04:05:45Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828233','2008-05-19T22:52:33Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842668','2008-05-25T02:01:19Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832111','2008-05-21T09:25:45Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851494','2008-05-29T04:07:14Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832110','2008-05-21T09:25:03Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-847466','2008-05-26T22:10:39Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833584','2008-05-22T06:59:47Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851492','2008-05-29T04:06:36Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832113','2008-05-21T09:27:42Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-847462','2008-05-26T22:08:50Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827312','2008-05-19T13:18:49Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851512','2008-05-29T04:10:58Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827933','2008-05-19T19:25:22Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842684','2008-05-25T02:06:56Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828417','2008-05-20T00:51:55Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851508','2008-05-29T04:10:03Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833582','2008-05-22T06:59:16Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-846093','2008-05-26T07:32:51Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827932','2008-05-19T19:24:52Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851509','2008-05-29T04:10:29Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827930','2008-05-19T19:24:06Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-840772','2008-05-24T14:17:45Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832125','2008-05-21T09:35:27Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851515','2008-05-29T04:11:33Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832118','2008-05-21T09:31:11Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-848570','2008-05-27T08:22:40Z',44.91011,-62.51947,'WRS','WRS-10564','ANIMAL',10564,1082,NULL,'NA','WRSH-SW3-VR2-1082-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827651','2008-05-19T15:53:33Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851518','2008-05-29T04:12:52Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828351','2008-05-20T00:18:51Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842676','2008-05-25T02:04:24Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828444','2008-05-20T01:02:05Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851517','2008-05-29T04:12:20Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827948','2008-05-19T19:35:11Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842678','2008-05-25T02:04:53Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827835','2008-05-19T18:06:33Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851519','2008-05-29T04:13:31Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828447','2008-05-20T01:04:17Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-840775','2008-05-24T14:18:16Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827645','2008-05-19T15:48:22Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851529','2008-05-29T04:17:21Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828595','2008-05-20T02:14:01Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-848574','2008-05-27T08:23:24Z',44.91011,-62.51947,'WRS','WRS-10564','ANIMAL',10564,1082,NULL,'NA','WRSH-SW3-VR2-1082-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832163','2008-05-21T11:59:03Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851523','2008-05-29T04:15:15Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-831512','2008-05-21T04:33:19Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-848575','2008-05-27T08:23:50Z',44.91011,-62.51947,'WRS','WRS-10564','ANIMAL',10564,1082,NULL,'NA','WRSH-SW3-VR2-1082-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832139','2008-05-21T09:44:13Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851521','2008-05-29T04:14:27Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827940','2008-05-19T19:29:57Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-840783','2008-05-24T14:19:46Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833594','2008-05-22T07:03:31Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851525','2008-05-29T04:15:48Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827774','2008-05-19T17:24:11Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-847464','2008-05-26T22:09:47Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832121','2008-05-21T09:32:54Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851527','2008-05-29T04:16:56Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833593','2008-05-22T07:03:27Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842680','2008-05-25T02:05:26Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833591','2008-05-22T07:02:44Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851526','2008-05-29T04:16:32Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832120','2008-05-21T09:32:25Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842681','2008-05-25T02:06:09Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832119','2008-05-21T09:31:34Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-852001','2008-05-29T06:23:49Z',44.87378,-62.48225,'WRS','WRS-10564','ANIMAL',10564,1138,NULL,'NA','WRSH-SW5C-VR2-1138-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-831502','2008-05-21T04:28:52Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842682','2008-05-25T02:06:32Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832122','2008-05-21T09:33:29Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851535','2008-05-29T04:18:20Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832123','2008-05-21T09:34:48Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-847477','2008-05-26T22:16:55Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827978','2008-05-19T19:53:18Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-852035','2008-05-29T06:32:11Z',44.87378,-62.48225,'WRS','WRS-10564','ANIMAL',10564,1138,NULL,'NA','WRSH-SW5C-VR2-1138-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833600','2008-05-22T07:05:55Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842690','2008-05-25T02:08:13Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828745','2008-05-20T03:26:00Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851532','2008-05-29T04:17:48Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828744','2008-05-20T03:25:30Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-846101','2008-05-26T07:36:33Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832128','2008-05-21T09:37:45Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851543','2008-05-29T04:19:57Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832126','2008-05-21T09:36:23Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842541','2008-05-25T01:12:53Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-831505','2008-05-21T04:30:23Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851540','2008-05-29T04:19:00Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833606','2008-05-22T07:07:43Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842540','2008-05-25T01:12:29Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833604','2008-05-22T07:06:52Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851560','2008-05-29T04:24:49Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832138','2008-05-21T09:43:21Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842698','2008-05-25T02:12:53Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827937','2008-05-19T19:28:12Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851564','2008-05-29T04:25:33Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833605','2008-05-22T07:06:55Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-837297','2008-05-23T18:41:56Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828273','2008-05-19T23:19:52Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851572','2008-05-29T04:27:33Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832127','2008-05-21T09:37:11Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-848588','2008-05-27T08:28:26Z',44.91011,-62.51947,'WRS','WRS-10564','ANIMAL',10564,1082,NULL,'NA','WRSH-SW3-VR2-1082-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833611','2008-05-22T07:09:12Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851578','2008-05-29T04:28:26Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828355','2008-05-20T00:21:55Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-837299','2008-05-23T18:42:24Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828746','2008-05-20T03:26:37Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851582','2008-05-29T04:29:08Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827939','2008-05-19T19:29:31Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842688','2008-05-25T02:07:45Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832130','2008-05-21T09:39:18Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851585','2008-05-29T04:30:09Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832137','2008-05-21T09:42:43Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-846107','2008-05-26T07:42:22Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832129','2008-05-21T09:38:52Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851591','2008-05-29T04:31:08Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832136','2008-05-21T09:41:53Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842712','2008-05-25T02:20:06Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-831509','2008-05-21T04:32:38Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851610','2008-05-29T04:34:36Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-826580','2008-05-19T08:43:02Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-848593','2008-05-27T08:29:38Z',44.91011,-62.51947,'WRS','WRS-10564','ANIMAL',10564,1082,NULL,'NA','WRSH-SW3-VR2-1082-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832132','2008-05-21T09:40:16Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851628','2008-05-29T04:38:09Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827938','2008-05-19T19:28:46Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842693','2008-05-25T02:10:27Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832131','2008-05-21T09:39:45Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851597','2008-05-29T04:32:02Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-831508','2008-05-21T04:32:06Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842744','2008-05-25T02:37:41Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-826509','2008-05-19T08:25:13Z',44.92927,-62.54592,'WRS','WRS-10564','ANIMAL',10564,1093,NULL,'NA','WRSH-FW2-VR2-1093-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851603','2008-05-29T04:33:17Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833620','2008-05-22T07:12:54Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-848596','2008-05-27T08:30:08Z',44.91011,-62.51947,'WRS','WRS-10564','ANIMAL',10564,1082,NULL,'NA','WRSH-SW3-VR2-1082-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832134','2008-05-21T09:40:56Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851601','2008-05-29T04:32:48Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833639','2008-05-22T07:18:58Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842694','2008-05-25T02:11:24Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827942','2008-05-19T19:31:04Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851607','2008-05-29T04:33:51Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-831527','2008-05-21T04:38:38Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-837305','2008-05-23T18:43:42Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-826586','2008-05-19T08:44:39Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851619','2008-05-29T04:36:16Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832162','2008-05-21T11:58:16Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-847470','2008-05-26T22:12:13Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832140','2008-05-21T09:46:46Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851613','2008-05-29T04:35:04Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827941','2008-05-19T19:30:27Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-848600','2008-05-27T08:31:41Z',44.91011,-62.51947,'WRS','WRS-10564','ANIMAL',10564,1082,NULL,'NA','WRSH-SW3-VR2-1082-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827773','2008-05-19T17:23:38Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851617','2008-05-29T04:35:36Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-826511','2008-05-19T08:25:36Z',44.92927,-62.54592,'WRS','WRS-10564','ANIMAL',10564,1093,NULL,'NA','WRSH-FW2-VR2-1093-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842695','2008-05-25T02:12:15Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827834','2008-05-19T18:05:34Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851623','2008-05-29T04:37:15Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833628','2008-05-22T07:16:03Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-846100','2008-05-26T07:35:50Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832141','2008-05-21T09:47:54Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851718','2008-05-29T04:57:40Z',44.87467,-62.48631,'WRS','WRS-10564','ANIMAL',10564,1134,NULL,'NA','WRSH-SW5B-VR2-1134-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832143','2008-05-21T09:48:21Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842705','2008-05-25T02:16:08Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828272','2008-05-19T23:19:10Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851667','2008-05-29T04:44:41Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827947','2008-05-19T19:34:08Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842700','2008-05-25T02:13:46Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828446','2008-05-20T01:03:46Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851646','2008-05-29T04:41:15Z',44.87467,-62.48631,'WRS','WRS-10564','ANIMAL',10564,1134,NULL,'NA','WRSH-SW5B-VR2-1134-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828354','2008-05-20T00:21:28Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842704','2008-05-25T02:15:41Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832146','2008-05-21T09:50:22Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851634','2008-05-29T04:39:21Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827650','2008-05-19T15:52:16Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842702','2008-05-25T02:15:17Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828352','2008-05-20T00:19:50Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851813','2008-05-29T05:33:13Z',44.87378,-62.48225,'WRS','WRS-10564','ANIMAL',10564,1138,NULL,'NA','WRSH-SW5C-VR2-1138-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832145','2008-05-21T09:49:30Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-848607','2008-05-27T08:34:38Z',44.91011,-62.51947,'WRS','WRS-10564','ANIMAL',10564,1082,NULL,'NA','WRSH-SW3-VR2-1082-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-831516','2008-05-21T04:35:13Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851642','2008-05-29T04:40:28Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832144','2008-05-21T09:48:52Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-847472','2008-05-26T22:13:01Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828751','2008-05-20T03:29:47Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851656','2008-05-29T04:42:48Z',44.87467,-62.48631,'WRS','WRS-10564','ANIMAL',10564,1134,NULL,'NA','WRSH-SW5B-VR2-1134-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-831515','2008-05-21T04:34:18Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-848609','2008-05-27T08:35:33Z',44.91011,-62.51947,'WRS','WRS-10564','ANIMAL',10564,1082,NULL,'NA','WRSH-SW3-VR2-1082-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833640','2008-05-22T07:19:01Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851647','2008-05-29T04:41:19Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832152','2008-05-21T09:53:59Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-846099','2008-05-26T07:34:57Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-826584','2008-05-19T08:43:42Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851650','2008-05-29T04:41:54Z',44.87467,-62.48631,'WRS','WRS-10564','ANIMAL',10564,1134,NULL,'NA','WRSH-SW5B-VR2-1134-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828750','2008-05-20T03:28:07Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-848611','2008-05-27T08:36:07Z',44.91011,-62.51947,'WRS','WRS-10564','ANIMAL',10564,1082,NULL,'NA','WRSH-SW3-VR2-1082-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832148','2008-05-21T09:51:04Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851651','2008-05-29T04:41:57Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828597','2008-05-20T02:15:26Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842710','2008-05-25T02:19:10Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827946','2008-05-19T19:33:25Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851657','2008-05-29T04:42:52Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-831519','2008-05-21T04:35:59Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-842707','2008-05-25T02:17:12Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827649','2008-05-19T15:51:21Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851663','2008-05-29T04:44:07Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832151','2008-05-21T09:53:04Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-848614','2008-05-27T08:36:54Z',44.91011,-62.51947,'WRS','WRS-10564','ANIMAL',10564,1082,NULL,'NA','WRSH-SW3-VR2-1082-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827647','2008-05-19T15:49:41Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851661','2008-05-29T04:43:38Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-833643','2008-05-22T07:19:44Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-848615','2008-05-27T08:37:23Z',44.91011,-62.51947,'WRS','WRS-10564','ANIMAL',10564,1082,NULL,'NA','WRSH-SW3-VR2-1082-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-832150','2008-05-21T09:52:05Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851673','2008-05-29T04:45:57Z',44.87581,-62.49142,'WRS','WRS-10564','ANIMAL',10564,1088,NULL,'NA','WRSH-SW5A-VR2-1088-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-827646','2008-05-19T15:49:09Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-847475','2008-05-26T22:15:13Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-831520','2008-05-21T04:36:29Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-851672','2008-05-29T04:45:53Z',44.87467,-62.48631,'WRS','WRS-10564','ANIMAL',10564,1134,NULL,'NA','WRSH-SW5B-VR2-1134-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-828353','2008-05-20T00:20:44Z',44.92408,-62.5425,'WRS','WRS-10564','ANIMAL',10564,1085,NULL,'NA','WRSH-SW1-VR2-1085-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-840807','2008-05-24T14:24:37Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'),('WRS','OTN-Global','A69-1303-10564-831525','2008-05-21T04:37:58Z',44.91786,-62.53628,'WRS','WRS-10564','ANIMAL',10564,1136,NULL,'NA','WRSH-SW2-VR2-1136-1','Receiver Metadata'); /*!40000 ALTER TABLE `otnunit_aat_detections` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2021-06-02 7:44:26
DELETE FROM %s WHERE letter = ?;
<reponame>paulissoft/oracle-build-tools CREATE TYPE "ORACLE_TOOLS"."T_ARGUMENT_OBJECT_TAB" AS table of oracle_tools.t_argument_object; /
CREATE DATABASE IF NOT EXISTS quarry CHARACTER SET utf8; USE quarry; CREATE TABLE IF NOT EXISTS user( id INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT, username VARCHAR(255) BINARY NOT NULL UNIQUE, wiki_uid INT UNSIGNED NOT NULL UNIQUE ); CREATE UNIQUE INDEX IF NOT EXISTS user_username_index ON user( username); CREATE UNIQUE INDEX IF NOT EXISTS user_wiki_uid ON user(wiki_uid); CREATE TABLE IF NOT EXISTS user_group( id INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT, user_id INT UNSIGNED NOT NULL, group_name VARCHAR(255) BINARY NOT NULL ); CREATE INDEX IF NOT EXISTS user_group_user_group_index ON user_group(user_id, group_name); CREATE INDEX IF NOT EXISTS user_group_user_id_index ON user_group(user_id); CREATE INDEX IF NOT EXISTS user_group_group_name_index ON user_group(group_name); CREATE TABLE IF NOT EXISTS query( id INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT, user_id INT UNSIGNED NOT NULL, title VARCHAR(1024) BINARY, latest_rev_id INT UNSIGNED, last_touched TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, published SMALLINT DEFAULT 0 NOT NULL, description TEXT BINARY, parent_id INT UNSIGNED ); CREATE INDEX IF NOT EXISTS query_parent_id_index ON query(parent_id); CREATE TABLE IF NOT EXISTS query_revision( id INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT, text TEXT BINARY NOT NULL, query_database VARCHAR(1024) BINARY, query_id INT UNSIGNED NOT NULL, latest_run_id INT UNSIGNED, timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP ); CREATE INDEX IF NOT EXISTS query_rev_query_id_index ON query_revision(query_id); CREATE INDEX IF NOT EXISTS query_rev_query_database_index ON query_revision(query_database); CREATE TABLE IF NOT EXISTS query_run( id INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT, query_rev_id INT UNSIGNED NOT NULL, status TINYINT UNSIGNED NOT NULL DEFAULT 0, timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP, task_id VARCHAR(36) BINARY, extra_info TEXT BINARY ); CREATE INDEX IF NOT EXISTS query_run_status_index ON query_run(status); CREATE TABLE IF NOT EXISTS star( id INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT, user_id INT UNSIGNED NOT NULL, query_id INT UNSIGNED NOT NULL, timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP ); CREATE INDEX IF NOT EXISTS star_user_id_index ON star(user_id); CREATE INDEX IF NOT EXISTS star_query_id_index ON star(query_id); CREATE UNIQUE INDEX IF NOT EXISTS star_user_query_index ON star(user_id, query_id);
-- original: tkt-6bfb98dfc0.test -- credit: http://www.sqlite.org/src/tree?ci=trunk&name=test PRAGMA page_size=512; CREATE TABLE t1(x INTEGER PRIMARY KEY, y); INSERT INTO t1 VALUES(1,randomblob(400)); INSERT INTO t1 VALUES(2,randomblob(400)); INSERT INTO t1 SELECT x+2, randomblob(400) FROM t1; INSERT INTO t1 SELECT x+4, randomblob(400) FROM t1; INSERT INTO t1 SELECT x+8, randomblob(400) FROM t1; INSERT INTO t1 SELECT x+16, randomblob(400) FROM t1; INSERT INTO t1 SELECT x+32, randomblob(400) FROM t1; INSERT INTO t1 SELECT x+64, randomblob(400) FROM t1 WHERE x<10; CREATE TRIGGER r1 AFTER INSERT ON t1 WHEN new.x=74 BEGIN DELETE FROM t1; INSERT INTO t1 VALUES(75, randomblob(400)); INSERT INTO t1 VALUES(76, randomblob(400)); END; INSERT INTO t1 VALUES(74, randomblob(400)); SELECT x, length(y) FROM t1 ORDER BY x;
CREATE DATABASE IF NOT EXISTS test; USE test; CREATE TABLE IF NOT EXISTS messages ( id INT AUTO_INCREMENT, title VARCHAR(255) NOT NULL, date VARCHAR(255), body TEXT, PRIMARY KEY (id) ); INSERT INTO messages (title, body) VALUES ("First Message", "First Body");
<filename>framework/resources/Functional/limit0/filters/plan/q12.sql explain plan for select * from ( -- not null predicate select x, y, z from ( select a1, b1, avg(a1) from t1_v t1 group by a1, b1 ) as sq(x, y, z) where x is not null) t limit 0;
<reponame>TBFY/anomaly-detection-tool -- Table: public.su_rpu -- DROP TABLE public.su_rpu; CREATE TABLE public.su_rpu ( tip text COLLATE pg_catalog."default", skupina text COLLATE pg_catalog."default", podskupina text COLLATE pg_catalog."default", sifra_pu integer, maticna text COLLATE pg_catalog."default", davcna integer, ustanovitelj text COLLATE pg_catalog."default", naziv text COLLATE pg_catalog."default", kraj text COLLATE pg_catalog."default", obcina text COLLATE pg_catalog."default", skd text COLLATE pg_catalog."default", a text COLLATE pg_catalog."default", b text COLLATE pg_catalog."default", c text COLLATE pg_catalog."default", d text COLLATE pg_catalog."default", e text COLLATE pg_catalog."default", f text COLLATE pg_catalog."default", g text COLLATE pg_catalog."default", h text COLLATE pg_catalog."default", i text COLLATE pg_catalog."default", j text COLLATE pg_catalog."default", naslov text COLLATE pg_catalog."default", postna_stevilka text COLLATE pg_catalog."default", posta text COLLATE pg_catalog."default", ezr text COLLATE pg_catalog."default", sifra_proracuna text COLLATE pg_catalog."default", izbrisan boolean, kategorija text COLLATE pg_catalog."default" ) TABLESPACE pg_default; ALTER TABLE public.su_rpu OWNER to matej;
<reponame>andotorg/minidao1.5.1 insert into employee (id,empno,name,age,birthday,salary) values ('${employee.id}', :employee.empno, :employee.name, :employee.age, :employee.birthday, :employee.salary )
/* Navicat MySQL Data Transfer Source Server : 127.0.0.1_3306 Source Server Version : 50723 Source Host : 127.0.0.1:3306 Source Database : test2 Target Server Type : MYSQL Target Server Version : 50723 File Encoding : 65001 Date: 2018-09-20 11:43:02 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for db2test -- ---------------------------- DROP TABLE IF EXISTS `db2test`; CREATE TABLE `db2test` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `sex` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4; -- ---------------------------- -- Records of db2test -- ---------------------------- INSERT INTO `db2test` VALUES ('1', '2', '1'); -- ---------------------------- -- Table structure for testcreateuser -- ---------------------------- DROP TABLE IF EXISTS `testcreateuser`; CREATE TABLE `testcreateuser` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `createUser` int(11) DEFAULT NULL, `createTime` int(11) DEFAULT NULL, `userCreateTime` bigint(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4; -- ---------------------------- -- Records of testcreateuser -- ---------------------------- INSERT INTO `testcreateuser` VALUES ('1', '测试:54', '0', null); INSERT INTO `testcreateuser` VALUES ('2', '测试:49', '0', null); INSERT INTO `testcreateuser` VALUES ('3', '测试:35', '0', null); INSERT INTO `testcreateuser` VALUES ('4', '测试:15', '1', null); INSERT INTO `testcreateuser` VALUES ('5', '测试:62', '1', '1537411925'); INSERT INTO `testcreateuser` VALUES ('6', '测试:16', '1', '1537413805'); INSERT INTO `testcreateuser` VALUES ('7', '测试:90', '1', '1537413898'); INSERT INTO `testcreateuser` VALUES ('8', '测试:37', '1', '1537413926'); INSERT INTO `testcreateuser` VALUES ('9', '测试:12', '1', '1537413998'); INSERT INTO `testcreateuser` VALUES ('10', '测试:59', '1', '1537414040'); INSERT INTO `testcreateuser` VALUES ('11', '测试:84', '1', '1537414352'); INSERT INTO `testcreateuser` VALUES ('12', '测试:68', '1', '1537414655'); INSERT INTO `testcreateuser` VALUES ('13', '测试:77', '1', '1537414843'); -- ---------------------------- -- Table structure for testremove -- ---------------------------- DROP TABLE IF EXISTS `testremove`; CREATE TABLE `testremove` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `isDelete` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- ---------------------------- -- Records of testremove -- ---------------------------- -- ---------------------------- -- Table structure for testupdatetime -- ---------------------------- DROP TABLE IF EXISTS `testupdatetime`; CREATE TABLE `testupdatetime` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `modifyTime` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4; -- ---------------------------- -- Records of testupdatetime -- ---------------------------- INSERT INTO `testupdatetime` VALUES ('1', '修改后', '1537414856'); INSERT INTO `testupdatetime` VALUES ('2', '测试修改', '0'); INSERT INTO `testupdatetime` VALUES ('3', '测试修改', '0'); -- ---------------------------- -- Table structure for testupdateuser -- ---------------------------- DROP TABLE IF EXISTS `testupdateuser`; CREATE TABLE `testupdateuser` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `modifyTime` int(11) DEFAULT NULL, `lastModifyUser` int(11) DEFAULT NULL, `lastModifyTime` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4; -- ---------------------------- -- Records of testupdateuser -- ---------------------------- INSERT INTO `testupdateuser` VALUES ('1', '修改后', '1537414857', '1', '1537414857'); INSERT INTO `testupdateuser` VALUES ('2', '测试修改', '0', null, null); INSERT INTO `testupdateuser` VALUES ('3', '测试修改', '0', null, null);
<reponame>DataONEorg/metrics-service ALTER TABLE CITATIONS ADD COLUMN citation_status TEXT, ADD COLUMN reporter TEXT, ADD COLUMN reviewer TEXT, ADD COLUMN relation_type TEXT; ALTER TABLE CITATION_METADATA ADD COLUMN portal_id TEXT[]; ADD COLUMN title TEXT, ADD COLUMN datePublished TEXT, ADD COLUMN dateUploaded TEXT, ADD COLUMN dateModified TEXT;
;WITH SUMPARTSCTE AS ( SELECT 1 AS COUNTNUMBER, 1 AS GRANDTOTAL UNION ALL SELECT COUNTNUMBER+1, GRANDTOTAL+COUNTNUMBER+1 FROM SUMPARTSCTE WHERE COUNTNUMBER < 40000 ) SELECT MAX(GRANDTOTAL) AS SUMPARTS FROM SUMPARTSCTE OPTION (MAXRECURSION 0);
-- MySQL dump 10.13 Distrib 8.0.21, for Win64 (x86_64) -- -- Host: i4d103.p.ssafy.io Database: law -- ------------------------------------------------------ -- Server version 8.0.23 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!50503 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `board` -- DROP TABLE IF EXISTS `board`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `board` ( `board_id` int NOT NULL AUTO_INCREMENT COMMENT '글번호', `uuid` int NOT NULL COMMENT '작성자uuid', `title` varchar(200) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT '제목', `content` longtext CHARACTER SET utf8 COLLATE utf8_unicode_ci COMMENT '내용', `hit` int NOT NULL DEFAULT '0' COMMENT '조회수', `upload_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '작성일', `category` varchar(30) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '일반' COMMENT '카테고리명', PRIMARY KEY (`board_id`), KEY `FK_board_uuid_member_uuid` (`uuid`), CONSTRAINT `FK_board_uuid_member_uuid` FOREIGN KEY (`uuid`) REFERENCES `member` (`uuid`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE=InnoDB AUTO_INCREMENT=140 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='커뮤니티(QnA, 공지사항, 일반)'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `board` -- LOCK TABLES `board` WRITE; /*!40000 ALTER TABLE `board` DISABLE KEYS */; INSERT INTO `board` VALUES (2,1,'[공지사항] 2021.02.04 긴급 서버 점검','<p><br></p><p>2021.02.05 00:00~04:00 긴급서버점검</p><p>해당 시간동안 서버점검으로 홈페이지 접속이 되지않으니 양해부탁드립니다.</p>',161,'2021-02-02 18:05:49','공지사항'),(3,1,'[공지사항] 이벤트당첨자!','<p><br></p><p>OOO, XXX, PPP축하드립니다.<br></p><p><br></p>',44,'2021-02-02 18:27:24','공지사항'),(84,174,'이 토론은 적절하지 않은 것 같습니다.','<p><br><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABQUAAANKCAYAAAAz3iiDAAAgAElEQVR4Aey9+a9l2VXnyf8B4peUUEkgUM4xz2NGzmlaQiWgIYuhChpVAU3a6kbqVrcsG3BOZrATyZkG+heMMq1qoEoQc6SRsDNeRGQ748V74UJti3Km6XwvoixRv6Hd+ny/a91z7n1DRmRe+7w4sUK6ivvu3Wfvtb5r2Hd979rn/kD7gH9Xrlz5gBF++1bGbbUxSF4yfbB9bwWjwvLWfGkr4lT2vTXb3ak43alyb8VY2YoylX0rfreiX5ZM4/bLsm/Z9/vtA9/v9W5lb72VMVtR7q0oU2E57pxS9t369v0BEsNm/+5UI96pcmOLW5F9q43ZinKXTPPzpcLy1rDcijjdSq7YinKXTLfmc2XfceNU9i37Vi68NR/YijhV/N6a7e5UnO5UuStWxu2XZd+y74fxgR8godWjMCgfKB8oHygfKB8oHygfKB8oHygfKB8oHygfKB8oHygfKB+4e3zgB1ZXV1s9CoPygfKB8oHygfKB8oHygfKB8oHygfKB8oHygfKB8oHygfKBu8cHihQsUrRI4fKB8oHygfKB8oHygfKB8oHygfKB8oHygfKB8oHygfKBu8wH5kYKfutb32pjeiwvL7d6FAblA+UDY/GBr3/9660ehcE8fODixYvlSxVPc/OB8qfKS/PIS7NzlF+VX836xEf9u3yqfOqj+tDs9eVTW8enrl+/3u7kx+XLl8XF/eM//uOHInTnQgpCBn77299u3/3ud0fx+NM//dP2gz/4g+2HfuiH6lEYlA+UD9zRPvDDP/zD7Sd+4ifa448/3n78x3+8HoXBR/KBH/mRH2k/9mM/9pHmKD+sOOz7wK5du8qnKi/NNaf8q3/1r9r9998/1zn7PlvP784ctn379vajP/qj5VeVr+biA/jSzp075zJX5aSPlpPuvffeRnzfyY/77ruv/eqv/mo7efLksKQghOBY/v3FX/xF+6Vf+qWxqFN6FAKFwF2KwJe+9KX2cz/3c/rm6y6FoNSeMwK//du/3XjUv0JgXgjs379fXYfzmq/mKQT+5E/+pP3Mz/xMAVEIzBWBw4cPt69+9atznbMmu3sRWFhYaOx/9a8QmBcC7H1PPPFEkYLzArRIwXkhWfMUAoXAkAj87M/+bONDR/0rBOaFQJGC80Ky5kkEihRMJOr/eSFQpOC8kKx5+ggUKdhHo55/VASKFPyoCNb1swj8y7/8S/vpn/7p9pd/+Ze3TQzO7fhwdQrOmqX+LgQKgUJgWASeffZZbQrDSlGrjwmBIgXHZM2toUuRglvDDmOSokjBMVlz6+hSpODWscUYJClScAxW3Fo6QAp+/OMfb3/2Z39WpOA8TFOdgvNAseYoBAqBoRHgA+zq6urQYtT6I0KgSMERGXOLqFKk4BYxxIjEKFJwRMbcQqoUKbiFjDECUYoUHIERt5gKRQrO2SBFCs4Z0JquECgEBkGgSMFBYB/1okUKjtq8gyhXpOAgsI960SIFR23ewZQrUnAw6Ee5cJGCozTroEoVKThn+IsUnDOgNV0hUAgMgkCRgoPAPupFixQctXkHUa5IwUFgH/WiRQqO2ryDKVek4GDQj3LhIgVHadZBlSpScM7wFyk4Z0BrukKgEBgEgSIFB4F91IsWKThq8w6iXJGCg8A+6kWLFBy1eQdTrkjBwaAf5cJFCo7SrIMqVaTgnOEvUnDOgNZ0hUAhMAgCRQoOAvuoFy1ScNTmHUS5IgUHgX3UixYpOGrzDqZckYKDQT/KhYsUHKVZB1WqSME5w1+k4JwBrekKgUJgEASKFBwE9lEvWqTgqM07iHJFCg4C+6gXLVJw1OYdTLkiBQeDfpQLFyk4SrMOqlSRgnOGv0jBOQNa0xUChcAgCBQpOAjso160SMFRm3cQ5YoUHAT2US9apOCozTuYckUKDgb9KBcuUnCUZh1UqSIF5wx/kYJzBrSmKwQKgUEQKFJwENhHvWiRgqM27yDKFSk4COyjXrRIwVGbdzDlihQcDPpRLlyk4CjNOqhSRQrOGf4iBecMaE1XCBQCgyBQpOAgsI960SIFR23eQZQrUnAQ2Ee9aJGCozbvYMoVKTgY9KNcuEjBUZp1UKWKFJwz/EUKzhnQmq4QKAQGQaBIwUFgH/WiRQqO2ryDKFek4CCwj3rRIgVHbd7BlCtScDDoR7lwkYKjNOugShUpOGf4ixScM6A1XSFQCAyCQJGCg8A+6kWLFBy1eQdRrkjBQWAf9aJFCo7avIMpV6TgYNCPcuEiBUdp1kGVKlJwzvAXKThnQGu6QqAQGASBIgUHgX3UixYpOGrzDqJckYKDwD7qRYsUHLV5B1OuSMHBoB/lwkUKjtKsgypVpOCc4S9ScM6A1nSFQCEwCAJFCg4C+6gXLVJw1OYdRLkiBQeBfdSLFik4avMOplyRgoNBP8qFixQcpVkHVapIwTnDX6TgnAGt6QqBQmAQBIoUHAT2US9apOCozTuIckUKDgL7qBctUnDU5h1MuSIFB4N+lAsXKThKsw6qVJGCc4a/SME5A1rTFQKFwCAIFCk4COyjXrRIwVGbdxDlihQcBPZRL1qk4KjNO5hyRQoOBv0oFy5ScJRmHVSpIgXnDH+RgnMGtKYrBAqBQRAoUnAQ2Ee9aJGCozbvIMoVKTgI7KNetEjBUZt3MOWKFBwM+lEuXKTgKM06qFJFCs4Z/iIF5wxoTVcIFAKDIFCk4CCwj3rRIgVHbd5BlCtScBDYR71okYKjNu9gyhUpOBj0o1y4SMFRmnVQpYoUnDP8RQrOGdCarhAoBAZBoEjBQWAf9aJFCo7avIMoV6TgILCPetEiBUdt3sGUK1JwMOhHuXCRgqM066BKFSk4Z/iLFJwzoDVdIVAIDILAuEjBf2p//vP3tHvu2eDx83/e/uk2UV741LPtz9+9jYve/fP27KcWNrhgoX3ynk+22Xf/6UvPtme/dLuSbbDEFnh5zKTgR7fVQvvkGj/EL9bz2c73Pvq6W8AxPoIIdzspuPCpe9onv9bah/GDvDbh5+91c2T4JWuw1tj/FSk4fwvjO51vdfmLlWb9cP6rb40ZR0kK8rlmzb61ST762id7fnBPu6d37e3ml43Hz3zem/rctf5nra3hIbcnRZGCt4dXjf5gBIoU/GCMbmtEkYK3BVcNLgQKgS2KwLhIwU1AXu9DLa+tS8a4AGe2zUjBdYucNaTgRoQPhbmLJj70Fim4ie0GfGu6yF2fTJm23Uyhkv41KYrWIwV7Cn7tk+v6wvo+sknhs8YPe2vcgU/vDlJwba5I38pcs74f2KC8tx6Zl9feqtk3mudWr79Txt09pOAGOSlz0zpfVLW21hc7su+eds8UAdP539Tr2l87YvB2/fBO8aNZOe96UhBCcLLfrfWNNflllkAMv8xctma8prRP5xheYlznf5vsjbMG2+J/Fym4xQ10B4pXpOCcjVak4JwBrekKgUJgEATGSwrOkC8fQJLwgTIL8L4hPjop2J9t/ecbrb3+6K3/6pg7BSlsu8LjFm0x5XszfjkzhebPgmqmWFrrn5sUPlNrzixyB/55d5CC04bpF8NJqGyWK/rj+zPltd1rMwX1jK9sNE93/Tie3T2k4Gb22iSHbHQZeWkNKYhPbd4Fv9YPN1rgzn59NKTgzP4zRQpv9oUm1+UeFqYkp6TP3Ep+6X/uWnc8OWtmDRPZ6YMfwq+3qNsVKbhFDXMHi1Wk4JyNV6TgnAGt6QqBQmAQBIoUNOx88FxLusyjU7Cbf+pDda+o2mjtQRxiDouOlRTETvf8/CfbJ3/+nnV9ZSPopouaTUhBFVPrz7++j1D4rN+9KF/r+dhGst0pr9+NpGC/ME5CZX0/sBU3ei+v7dt66rUZkod5Mlf1O3H614/h+d1DCn5Anli3U3ATC8/4i0cWKZiIjYYUTIU2+X+jnNPwkf7e1NuLuGbzvDK9R647vkjBTaxSbxUCmyNQpODm+Nz2u0UK3jZkdUEhUAhsQQTuGlLwA7CnSJ79dptL+oX59BTutllDJM503eiadYqo/odpnvsDdHfUanqtO+uv0ZGC2JQCp9eZIH+5pztmvrGFZjsWpguevM4+kPaPIn6mkFrjazril50ROVP8v54fzgy5k/6860hBFb3PTt3egEK6nzem7ed8lN04/femCMB4Y2qemfzEe5sX7f3Z79zndxcpuEGe+DDmm/GXnEI5rJezmvJm5rS6p2DidGf9H3mlR/D196GpPHKLin1Qfpmdc/3xlqufp7QnT/xvdt+9ReG24LDqFNyCRrnDRSpScM4GLFJwzoDWdIVAITAIAuMgBdd+cJ36lrr3gZbX+x9qDTofIJ9tz/58V8CkMTYkBUW6fHLtD4eoEIrurSSR1imi+h98+89z3Tv5//GQgkHObdhJk363ccG9lpDJOfGRuA7/yOcTw08XPev7yCaFj/xz9idtJpPfcU/uNlJw1m/y7/X9oDURMJ/683WPcOa1Nnrf/9Z2mZIbWaNfbN9xznKLAhcpeItAzQ5bZz/LIfhOt/dO76fTfphXjO//MXUKYrPZz0t9O67JR9rL1uaV9IkPzC/sW/m5KVyj71PTsuT+G+tNCEEu3GRvvMNcrkjBO8xgd4C4RQrO2UhFCs4Z0JquECgEBkFgHKTgR4Nu8iGXD7QzH0jXJwX5MBoFz2yBtAEZ0/9gqw/IvQ+waz5YfzR1Br96PKTgR4NSNu/Z2bOt3yn4QSut7yObEzzrdY190Dpb9f27iRRcz28yR63vB5vkow/xq6+sUaTgVo2EDyPXB+SJW+p47q07u+f13trsafrwZmPG8N5dTQrOGHC9z08b5xf8dJpIZrqNx88sNtI/ixQcqWEHVKtIwTmDX6TgnAGt6QqBQmAQBMZHCs58exxdghsVuXzg7JMns3+v/VDrAqs/H8XOZI4NSMHNjMua09+AbzZ66783FlJQdp3pMs2OhzX/T5F/9sH1bfpBpODt+W/fG8ZcdN8tpKB8buaLCWyctl0vV/Be39fW5rBbOebeeRLX9/Nb9864nt09nYLTdlvPh6ZHfMBfG/xC+gdcNfHhDxp3p78/JlKwtbX70Wyu6f89a7vJ5yc+F/X20jX5RR2G63fcb5aPNvZlPqetP9+sjFv97yIFt7qF7jz5ihScs82KFJwzoDVdIVAIDILAuEjBtYSdQV2fpOED5YTM66Hf/6A5+VCr99efh7cmhflmpODMB+Mkljb7UN0T6455OhZScD3A+76x3vuz99FaO2YzUvD2/Hd27iSOZl8fw993AymI/dbLR9gvbTvrf5O8M2Pk/ut57fSQjf2QNdYU7dMXj+KvIgU/nBlnfXBqlk26CNf3w6mrR/HHuEjBMAmfXdb5smIjX0hbT39+8lyz+YWxG+U9rpgd33eSjdav48N9lOp5ITCNQJGC03h85L+KFPzIENYEhUAhsAUQGBUpuMEHV8G8GVm3iR3W+1C7yfC4t9c693LbRDY+FI+JGLyrScFNnYM3NyZj9IuNUx2Hvcmmiu213RtJMK/3/xh8624gBXvWXvM0i+yNi+A1l0xeyGsnL+jJJn44PXC0f90NpKAIl16H1nr5YfJa5J4Pc83ESaby1OTVu+rJWEjBD/SDTy1s+MNH6+ecD+cGH0QKTvx3jZ9Xp+CHQ7yuGjsCRQrO2cJFCs4Z0JquECgEBkFgVKSgbi693lG5jTv8Pgj0IgU/CKG17xcpuBaT7pXNyJiP1inYrTG+Z0UKOq8VKTg/374bSMH5oXWLMxUp2MZCCt6KxTfKR99PUnD9L73q+PCt2O/OH+PP9pPOdvLPpKN15r07X9m5aVCk4Nyg9ERFCs4Z0JquECgEBkFgXKQgEK7fRTX50HCbKM+NFGRdugXXfJs9ri5B1CxScDMn24wU5Lr5+u9mktxJ7xUp+D0gBdfJRZOum0lhdSd5ye3JWqTg7eF1S6Mpyjfzq406oW9p8jtjUJGCvt3BvPygOgUXGvtf/SsE5oVAkYLzQjLmKVJwzoDWdIVAITAIAuMjBQeBsRbtITBmUrCnZj39PiJwt5OC30eo75qlihS8a0z9fVX0biIFv6/A3qWL1Q+N3KWG/x6qXaTgnMEtUnDOgNZ0hUAhMAgCRQoOAvuoFy1ScNTmHUS5IgUHgX3UixYpOGrzDqZckYKDQT/KhYsUHKVZB1WqSME5w1+k4JwBrekKgUJgEASKFBwE9lEvWqTgqM07iHJFCg4C+6gXLVJw1OYdTLkiBQeDfpQLFyk4SrMOqlSRgnOGv0jBOQNa0xUChcAgCBQpOAjso160SMFRm3cQ5YoUHAT2US9apOCozTuYckUKDgb9KBcuUnCUZh1UqSIF5wx/kYJzBrSmKwQKgUEQKFJwENhHvWiRgqM27yDKFSk4COyjXrRIwVGbdzDlihQcDPpRLlyk4CjNOqhSRQrOGf4iBecMaE1XCBQCgyBQpOAgsI960SIFR23eQZQrUnAQ2Ee9aJGCozbvYMoVKTgY9KNcuEjBUZp1UKWKFJwz/EUKzhnQmq4QKAQGQaBIwUFgH/WiRQqO2ryDKFek4CCwj3rRIgVHbd7BlCtScDDoR7lwkYKjNOugShUpOGf4ixScM6A1XSFQCAyCQJGCg8A+6kWLFBy1eQdRrkjBQWAf9aJFCo7avIMpV6TgYNCPcuEiBUdp1kGVKlJwzvAXKThnQGu6QqAQGASBIgUHgX3UixYpOGrzDqJckYKDwD7qRYsUHLV5B1OuSMHBoB/lwkUKjtKsgypVpOCc4S9ScM6A1nSFQCEwCAJFCg4C+6gXLVJw1OYdRLkiBQeBfdSLFik4avMOplyRgoNBP8qFixQcpVkHVapIwTnDX6TgnAGt6QqBQmAQBIoUHAT2US9apOCozTuIckUKDgL7qBctUnDU5h1MuSIFB4N+lAsXKThKsw6qVJGCc4a/SME5A1rTFQKFwCAIFCk4COyjXrRIwVGbdxDlihQcBPZRL1qk4KjNO5hyRQoOBv0oFy5ScJRmHVSpIgXnDH+RgnMGtKYrBAqBQRAoUnAQ2Ee9aJGCozbvIMoVKTgI7KNetEjBUZt3MOWKFBwM+lEuXKTgKM06qFJFCs4Z/iIF5wxoTVcIFAKDIFCk4CCwj3rRIgVHbd5BlCtScBDYR71okYKjNu9gyhUpOBj0o1y4SMFRmnVQpYoUnDP8RQrOGdCarhAoBAZBoEjBQWAf9aJFCo7avIMoV6TgILCPetEiBUdt3sGUK1JwMOhHuXCRgqM066BKFSk4Z/iLFJwzoDVdIVAIDIJAkYKDwD7qRYsUHLV5B1GuSMFBYB/1okUKjtq8gylXpOBg0I9y4SIFR2nWQZUqUnDO8BcpOGdAa7pCoBAYBIEiBQeBfdSLFik4avMOolyRgoPAPupFixQctXkHU65IwcGgH+XCRQqO0qyDKlWk4JzhL1JwzoDWdIVAITAIAkUKDgL7qBctUnDU5h1EuSIFB4F91IsWKThq8w6mXJGCg0E/yoWLFBylWQdVqkjBOcNfpOCcAa3pCoFCYBAEihQcBPZRL1qk4KjNO4hyRQoOAvuoFy1ScNTmHUy5IgUHg36UCxcpOEqzDqpUkYJzhr9IwTkDWtMVAoXAIAg88cQT7erVq4OsXYuOE4EiBcdp1yG1KlJwSPTHuXaRguO069BaFSk4tAXGtX6RguOy51bQBlLwF37hF9prr73WVldXb+vxA7d7wXrjv/Wtb7Xvfve7WwGLuchQpOBcYKxJCoFCYGAEXnjhhfbpT396YClq+TEhUKTgmKy5NXQpUnBr2GFMUhQpOCZrbh1dihTcOrYYgyRFCo7BiltLh8uXL7cHHnigLS8v3xYhCL9XpOCMLd++8c/t1/7z37Wfeu319plr77aXrr3b/mD5vfYHy99pz197r/3eop9/+uq32+8ufrv9/vJ32meuvddeuPZe+32Ne6+9qHHvtpeXv9N+d/Hd9jtX321/uPxPGvc88y19R/O9tOT59P+1d9vvLDKOdd5tn1lkHGu91z679J32e4vvtueX3tV7v7P47fbZZa/z/OJ77feXvqO1P4ssi++2F669215cerd9evHb7cWl77SXrv1Te37xO5rn95etD+N4vLzMut/WNcj7e7r2Pc1vnd/V2uiJfGAinRe9Ps95oP/vLnId44zNH1x/T+ORJzF8MXROnT599b+2P7xuDD23cXxZ49CDOd5rn77qdWUDZADDJXQyhrz+wpIxfHnpO7IB+v3+UtoFDN+zfqEzc7MOGHIN9rNuYGOMwZD1P7tkDF++hu1sF+yEXfj704v/NZ6D4XvyFbBgvhdjHDaTP2Dn0Nl+43EvLeEv7zX8ASzAEQxn/QFZ0eUl+d27DV98eRn9weJd2U66pN9ce084giFr4BPYGezsi++1zwib99pL0gUfQmdef1cYpf3ACj/47HX+B5uwi+SxHukPv6f4AJtv65o/WDaGLy4mho4vybz0ruKJOf+o5w/G0HZiHNhga2RgHZ4jez8GwEb+EBji48QD1+MP6MK1Gifb41+OgYxF/MLx7Jgyrt+RH8pfFPeWJzFkTezHdZ9eZD3niucX35U/JobkB/wArMkh6Iw/WGbLxhySZfHb7WVkv+Z4TgyJZ6+LHR3L6Pj8Nc8nGyy9137n6//YnvnFX2mPP/Ox9lv/y//afv255753j9+6jbk19uPfO1m+l3p+L+cGl1vFcSAMjxw50g4fOdJ+/bktbL/bwvA2/Hbutv/+YPgbz/1We+6532wff+7X28ef+w/x//TzTzz36+0TG7zn6xjPGP/fvdafr3uvG5fv5//dmJzv/vvvb7/8y7/ck+8/TNaxXP11/Z5lzefdnDl+Vs/udY+d/dv6dOumbIzL9/w/f2+sy0fBsFurk3F6bdadlnFazr5c/XGb49Rh0V1vWbq/U+e+jN11idFabKbHrJ2vw7TTeXptrunrMjsu154e97GPfaxt37594kfT66ydL3FMPT2+P+77jWG3dmJoXPoYW+dp3RwrvibxnsamP76bs8Nx7Wv9+OvG9efJ52uvtQx+fS2GXJfvdc9zjXxvrc5ck2v1n6cctuOHxzBlmY3nhx56UF043TqdHN1riXunR87XjenrtNG4nKePodeb1jn1ZNxajLux/fmmx+UY/p+Vsf9ajvOYnG9zXWYxnJ7f6/XXWDt3J1M3LtfudO7P28m5/rh8v5svce3m83u+Psevlx/WztHJu54u3Vy/3n7xF3+x3XvvvevsMd0c3fi+Lmv9ri9Ht276xvR83fu83uncx5DnnjPX9dhunWkfyvF5Df/n85x39u/E069bxu66TuYc15+nf033vnXJcfl/N2fqMq3zc//zv2+/9mu/1j7xiU/c0Q/8affu3e0LX/jCbROCRQrOEIL8+fWb/9weP7/cHj9/vR07s9SeOLfUHj13rR06vdgeObvUHjm73I6fvdaOnV1sj55fbE9eWGrHzlxrj51bao+fW2qHTl9rx84st0fOLbVjZ6+1o2eutRPnlttTF77h52eW2pPnl9vh04u6jrmZ7/iZa+3Rs9faUxd8zSNnltoz55fbkdOL7fDpa+3Rc7Eu8zHu/HJjDNd97M3lduTMUjuoccjoOfn/ifNL7VFkZr4L/L/YDpxabI+dXfa4M9f0/+Pnl6QD8yEfuh48hUzL7VHpbRnR84lzy5IdfR89v9QOnllsxxnD69JlUXM9ecEYohdyWOeldkIYgs9iO3F+sT39pjF85Iz1Ql/0ATfmBUPwfPLCN2ST46evSZcjZ8BmUfZJDMHmyfPWKXU+emaxHTy1KF3Q6xjynrkm24ID9nvqwpLWOoDO59AFDHntWnvsPLY1hmCDzQ6eXmwnsHOMYT5hc97zyR/OL8sfkOOxwJC1Tpxdkv3wL7B58vxSO3RmceIrx5jzjPV6Shiy9rX29IUl+cOR0/Yp5APDR87ZD2V3/OEC/oDPdhiyLuOfOH9d+B87fa09jaxnjQ3yojPjsMMT58CBvy0ruB48ddUY4ttn7L/4gP1hqaUPEQPIkhgyJ3M9ef56O37afobOnT8YZ3QE+6cvGEPhdOG6/P8o151dlu8zjvewBdjyN759+MyicEy/QUb5w4XrilvkYByvyx/O2X7y2XOL7YkLXp9xxBe2P6CYuj6JZ8Y+dn65PRYxgO4nIj+wljCMeH7sHH5vTPEf5wd8D7t0+QEfkC30+rX2JLqcztzR+SHr4A/HT1tudCE/4A+K8VjXOvfzw/W29wv/se34zKtt3wtfbHteeK3tfv5V/b//xe7vgy99se164dW27TNfaHtf+GLb/cIX2y6Ne7Uxbt+L/P1aO/Dia23PC6+27Z95te19gee+jmv3vcTY13Td/hde0/usyxjWZQxz7n3xi+2A5kOm1xpjGWe5Xm27X/DzvS+82g6+9GrbxRzPf7EdfPGLGrcz5mRcysh7u5+3bode/mLb+bznZI7d6PwCcryqdZmLsYfR+fnUBRk7GdAZ/ZAJbJhjW2Co12MsmPJgXB8bdBaGOe7F19p+rfda6Pxq6GwMmR989r7IesaQdcAJbMDeWPs98Dz40p9Y/+dfMzbPv9rAxjp3uhx40c/7OjOn7RwYTuQPnV/GrtYZOYRN4vh/fjZ09rqdPwSGoTO+AI5gvP8F8Pyi/Ab8c075Q+iJjvKHF19rO55/VeunzuArf3gZnb3OwRdfk772AdsIDPeA4cvWg+sOvYQ/gHcP69kY+Ex/nP0SvTw3fm3/AUP7Gn7zhUlMMY618GV05W/7w2vWeQZDdAEb5vM1fX+wv1pn7Oz5wIxr0h8cz2lnyyU/CZ8Vhs9/of3Uy59qL/3hU+0vPvdQe/3zD7c3XtnVvvy5B9vrn7+/vf7Hu9vrn3+gvf65+9sbr2xrb3z+ofa63nuovfHKzvb657fp7zdeYdyD7fXP3atxzONxD7bXX9nRXn9lm+Zhbs9xb3v9lYfb65rvAV37xis7Gg9e83Pmvr/9zifua1eRk10AACAASURBVG/kfJ970PNrbT/XNZ+733O98rDnR5ZXtrUvs15cw9rMJ70ma3c6S67PM2eMQ2f0C515X2tx7SsPtS+/sqe98TmwQb5t7Q3wm2Czo30ZLFkPWV/hPWPTxxBsLD/yJp6MAxtjK/xf2W4cP/9Ae+OV7Xown2QTNsjBe9ssv2Tl+Q7b7nMPzehiO8tmGovOnsO2Ahd84OHAkL8fam/88R5j+Ln7wqbo5Qf+wPpcZwyZ796ZdcEQ+bcJk84fEsPwG8kLNtsDQ8aDx3320Z4/8LrXs82tM+P8t+2HHba11/94l+wPvi/+b8h9vx/gje3AIGJA+n7+ofZlrtG4B9qXe/6g92UzY9XpHGvhN8Iw/BkfSazlU8SAcegwzBgAQ2IBuYyNn2NH5gvbvpJzb5eMek9+g27Yz9h8WX74kH2I59iIucO3jeHunv+mzj1dhA1z7Gqvv8L1D27gD2CIXPi9dRaG5JE/uq99+fPbIweAt+UXDvIbx7/wFjbEM3p43Jc/v8PrZk4hBoitSTx3Oks34QQ29yk+U+fMCV/O2FSu2Bl2Rjd8bRZD9Hpg4kPIKDtMMHy4vfS/d5gqVpQ7+znR2DgnMhYM8ckH2+t/FP6g+RhnH1AM4Ic9f8APJ3lkkhPBjmuIQedOYzCbE3dOcqLkCH9Yg+Ef7/Ya6bMRA9M5kTxCfscGzonOI5E7Jxgybmf7MnNpXwmd18mJzCcdpBfjsEMfQ2z8QHtdOXF77Ct5zXo5kXxDbsWHiIeIFeWYLu61Jr4NhuFvjnvySNg1ckruK56TuMk8kvsFse8ca5/DLjku49n+lWt5fTBkz+p0/j9+497ITY4B7zXEJbg7P2ScdXsuOpP7kd151HkEuVLGiG1hk3sH19w3yYOZE42bbYE+wlM6PziTE62zbCZfzH2ll0cUz57D+Qq9wMb7hXMB+vthf8DOYGg7dvuK7WcMY1+c5ETvF8Krv1+Qf8AE+cEv/EG27I+Trzgn/l9/+Gg7duxY+5u/+Zs7+vGlL32praystH/4h38oUnAdju+2X3rn5n8XAQipQiEPuUGRnSQPhMPRMyaJIF0gQHgPYgISAZLsiR5pwHvMJSKOcRCKPRLR15q4O3ra47gesunoWQhJyBYIBYp8kyFcD1mBLI+cNZkEaQjpYJkhBk3S7Q8yCGKP6xgHoaE1IH3QL8hM9GI9CCn0Zi6Riuc7QhAiB8KC99CFB4TXk5oX3Rb1HmMOnF7UOiJLJhiyBsSMSZ4jp5fa/pPXRCihCzIiT6cz2Fh2MBRhdxbSECLERGxfZwgXCB9IIx4mFz2fCBwRbsYREhUCDrLF6xpDEz0mnJD1wJlr7TA2i2vBNjHk2iMiiiDsTMTZpsaQ5/KH8/YRbASRc+Dkosg0cMYG6MK6vA/+XAcZuu8UGF7X+8Ja2CyJmILkQ0ewTDITrE1EM4Y5IQHDH4Lo1XUxP++xJjLmXPx/6FSS1vZ36Xx+WcRe2gM88P/DU34T2IhMN7n3+Lnr7dDZJfmsbWWiSz4bJOvRiB1k338Kf7Bv22cDm/MmvHN9MGQ+5NX1gSFEfsYtcuOHxIrsIj+0v3kN25lxkOD4DyQd6zIHGEJmQrqlLCKtg4AXYS1/sIzIxmv4BxgSL8goonfiN9cnpOLjZyFHHc9cc/wsBLuvRw+/5v+PnF1q+4gp6YyMjiXmh5DlOshz/hehPxnnuGEc8YzPghn6KVakszHEf/AHCFeei6gFm9PkGcvBdZC8Iss1rotn+UPkRPBClklODAwdA5YRm4iUTVJdOjve0Z1Y2X/qqvwTv82ciL+iT8onv9G6fb+Zzol8GXHs7HLbT+6MLzts015OjHjEH9DFMea8pryUOZEvDcLvsTO5W18wYAPsFzkRX+JLCWTFzszJc8aAL/rjh5kTPc7x7FxgXwTDzInonPlBMRC2BwP8j+uEzSQ/5P7jWCEn5r6CL6Grv2ByjHY6e79gPudEfMtfNJAT5Q+9fIq9lEfOLToez9m3c73cV3IcOqGL/WGxHSLuZ/YV1pWPRE4k72dOxIcdK2ATsSJfds5SHlEuyC9cPI6ciM6OAcd9xkN/X3GcWWfnB3/55Rg3sc8XBM4P1oX32FdSZ38xETn2XNoZPa+3g2eu6SGdlW+sg/3hmjAkxthXDp7K2PMXWmCS+4r8Tfm8v684rpDnyXPX2m9+5a/aV772C21lYX9bXdjVVi8+1G5c2t9uXtrXblza3VYv7283Lh/SY/XS3nbj0r62emlfW1l4uK1e3tNu8P7Cbr1+4/LBdvPyobZ6eW9bveTXVhe2ax7G8doK710+2FavHG43Lh3Qa6tX9reVhW1t5dLOduPKgXZD6+xvNy4dajcvH243Lu9rNxZ2thuXDraVhR1tdWFbY62UhdeRcfXygbZyaVdbZd6FnW314sPxOnIjD7owNtYN2VcXHmqrVw5ItpVLe3y9ZOQ167vK65rvQFvVa7uku3U5KJ1vLOxpqzwYJ0zQAQz3xbqH2ioyLOyR7isL29sqOiPHJV5DzgPC0Hjtksyr0nlHyL2nrVzeI11XsYsw3NNuXDnYVi9tl1147rmwIbYDQzDJ+Xa2Few8wZB1E0PmAYN9bXVhd1u9CNY9nfELYZjjLPdq+AN4TWN4MDDEJ5hzm3TFVvIRsBTW2A87I6PHoTf6gQ0+5XUZFz53+VBbubQjdA6/CWzxw7Sz7I4/LOAPyL23rcgX0Yv5/BrzYg9hA4aSJ7EBQ8bhR+iyp63IH8CY68DMGMoXGYMv8P9F7IzfOwbQD9lkM8VK2sX+wDhjuN92vnKwrVzxGrI3foM+kifwl42Mje18oMm/FM/GRjKybsSK/RCddrWViw9IHuvsWOkwtD/g08YQf8XOu9oKOmk+fBtb8tgT+QE907fB5rDiGTkyZxD3xjRl5H/7LHOtkJPAVzFAzGGzLlbsE8hCHB1UnsDHFM+yE/IcaKsTDB1jmm8qP2RMEcvhm/JD8siDio+1OdF+Y/vvbSvkEcU6/mk/Rqab6V8R4xkDXGcMkfFQ5MTwJekONs4zmRsyJzpWyIlhZ2IF20pnMDfe8iVhmDnRuVPxJHkyJ7Ku8ZWdLz5ozOSf2B/cydvkWPwfm5AfIqbWy4myM3HAOPaVvb19JfOI/ebGgue0P6TOjjVj6PwgGWUX9hXnznX3FfIvOXGBnLi9t684J3pf8Z7nmNoxkxMZ53j2vrI7dGaPzH2FvWGdfUV5nL2APXKf8t90TuzvK+QHciI+EPlBMQXW1tmx4nHEvfKZcmIPw8yJsUd2OhNrxMvMvoKPT/ZS/H2Pc47iK3Mi+wrvBTaZE6Vf7iuZE8nZ5BGwwQ/Bpp8TGRf5UHtkX+eMlX5OBNfYB+JzSJcTwYZ9BbyIZ+xI7twVscvnEvItce+c6Hjkcwa5k7WRMfeVfk5k3YPKJyvE/ZUD7Ztf/Zn2Uz/1U7fNGW3FC7inYJGCc7IMpKCL2OsqUCADKJDpHDp4ekkECJ08EHRZ+FHYP6quQo/jQ/zh03RYXdcYfTA/v6zCisKRB4UERT0FxGOQDipUKO5d7FIksjbrUoxCbPA3xYQIjhjHe3Qn0WFIcbUfMuecSQ8KHQobCLvJfEEg7D+5qK4tvadxjHVHGwXzk+euS8b9kIB0i9Ftpe4xCj+TGsxPQUNxIqLkzFJ7+vw3RKqY2ANDMLDu6EIhCZmKnlwPbuCrjswgCumaAl+wYX4esxgaG3BbFuEKJnR3PgK+cQ3/owvrUjSCDYX8k+e/IQy5VnMHhnQY0sG27+RiO0x34wUXjhRgyJjzPYk+dEgGGfAU60AUqwBzAWhsrssHIBQhA7A5uCArGLK2MMBG8geP83suOtFJeIdeYMM1B6ILENlYGzvLflEUMw5/gCyUPSEeev7wuEgR25n50RniCmzAMLGZ6CwZlxr+gH8/JQzti9hScsjv0NN60EGaGEJCgKF1Xm6sj+9RhB8+da09ESRNH0PkxXeII8gI/AG5KJTpSgWb9A1kFr5B7jGO9cCbwj0x5HU67MALcoh5RWTIfn6duH70zHLDrk+ewx9MwD19weQsa6Yu+CEkA2uDNfrQFYw84M7cltH/cx3+QLwQYycinjPuIewePQ++JoMU93T7imQ1hiIrwAFsgmBS5+MZv+a85HgGQ+R4OmIW+x0PuSAQyT0dhsyPvy035YfAHvLq0cAwdSGmsB8YQoCsnxON51PxpQPjEkP8CizQBT3kD+evay5iBXsRJ+A4wbCXE0V8noY8x/c6P0Q+x5gxRH/FfZCYxI5jpcuJT2sOYmVR5BjvO1amc+JTYWeIWfIYndBgiE/Zv5wveI7M2ASdn7kwmxOtM2PAkfzKg78h5zInEr88BxvGQWAam/Spzh/AkAf2AzN/gWJs+BtceGQ8Mx8xCzYQXok3sSIbr5MT+fIj4xnZsH/Ox3NyIuseY++L3PZE5ETlB2HvWDkUX7TkvjKbE+0f+IP3UvRyjllqj1/ociKykuv0ZdBp20I+j30iJ4Ihcco43vMXKPYr2Tl8Gfy8r3xD+5b8JrABQ2SawjB0hqSUP/T3lcCXPZNuYfYV1qUj/Mk3ncPRhxhIDMmByg/k2FPkB4/r50T897Gz3lfI19oj9flhbU503udLocX2S+f+up1969fayuUjKvZUgF06IoJDRcqVR9rqpUMqhERoXTrabixQSB5oN1UkUIDub6tXjraVK0eaPkhTKF054uJFBJLJKxUzVw631cuH28pbD7bVi3yIP9ZWmY+iU+/xAX2fCzr+pmBa2NFuXjk6GZeFtooPyB/GLexoN0QWHm4rIsr2xXwUdpYXUqIjuiDOgqRT4UDRQiG4t91gLQoSChx0i3EU7itBIvE6MiELOqs4uQxuJiFuXkJ/z7965bj1RGcVaMfbjQX03B9EDAUKGB5uK28fMcm1AEF6zCQiBQwkqootdHFBtgLZdHFHW70MNp4D3CnehSHjhQ2FLGQAdkBv1jZZYQwPyl4ia1TUBdEjmVwgetz+IHX2tdW3KPIpSg+7WJ4QQ1GoSY5DbfWtB1WUrgob5oV0wQeQg/mOSEb5w0RnMNxnQlgY4htHjSE6M+7S8XbjYuqM/IEn9sAXL0ECQgZYvpuQsfhkrCt9kBHC4i3IF2wFPoxDPjBGBnwx7Br+YNKvjyF4gzUyHggSiYKT61Jn5rOMEBLov/LWA1rf/hbj8EX5LyQo2BMDkMwQIMfaShCKHYZR7EsXsNkR/gvhtFcY3rwEBkGA4osiaSBVjrQbC6nzwV48G28R4hNS2PYywZzPjSk6rrz1kHUldyg/IDs646/E1BEX6PgDZBHYyGfTDxPDGEdBHrqsCEPigznTzswdeekiOjuP6H3ZDzIDDBnPWjvbjYvWmfkUb+QhYXyg3byE/sR9EuHMDzlgOxDPxhBsyInYGb+BiATH2ZxI/iEnHjLZpHn4IiTjN3BXDiBmD7WVr9kfJjlRJFzEvfzQxKEItoWd7WbonPEs35YfHnbuIx8qBsjt+FdiOJsTIT7JD/gJeTBjIHMicY7+e9sNxmmMx3U5EQydE0VEigTM/GBC3zmR+EeORxwf8huInWORE3NfyZx4xDlR/rBr4tvKY/HFUmLqfeXhtnoRwhw/7+8rmRPJFd4vuvzAWvgJX0KFH/K/4n5Xu5FfJojcncUQe4IbpJ33i8yJN+SvxHN/XzlognQBEtS5aU1OZF9hLyA/aC+N/eiy82+3r0ROfOvh+MLnEWMo+0VOlN0PeW8WCdjlh5vaV8iJkUelO3s4/rDduWchYh0s9D42zbjnCzB/aYRM6YcdhpkT97UbQQorb01yYmLtfUC5M/fImdypPBoxpDm0r0Aegw2+TX7r7yuHZT9ISmL/JnmPLzJiX5nkRHyB99CZfKPPN6kzOQFS8GeLFKx7Cq5lEq/+t/+uD/AUYBTvFOv8T4FAEciRQDra+PD+FMdxz11rB87QiePCZN+pqyYhKFRVUJjUoNinID8hwmVJ3Q4uxuKDP0TABZNsEAFZqO09eVXFYBIjj+nosDseKAiOQl6cv972nrqqghHCg+4Uih0KMwpN5FdB96ZJHeb/2Jv/ZVI8U7BQFFLYQGaiM51BdOgwH8US3QjozIMjp4dOXxV5oQ6dk1dFQEFcoDPzoQvPReRQ7J5bls4uoHmPjieTjZCw+05fVYFN0bXv5FV1gFAIMgeEHuuqiA1Sg6J2r4puH/VkHO9DjlKcQrpAuoLNnpPIu9g+pmOkrH2tQVQgJ0Un3YroDy7YmeO34AzZRmGmgpzOIYjgC0siDLEl5A8FHf7AmlmQQ3qiJz6EP1BAQzSAIfaAoMEfDpxCZ3dGojPvgz26MB8YQvCocFdHEXY2eYfvZacRzyHK8EM6qZgfv0FnkzAQIMYQLH1U2X9T0FLIozNkisZdcBELfuADNtgReYWhfH1RHShgA0EDWQE5gw8pVkT4cBTZGIrMDHL7BKTe+WvqeuMa5rfuPqrMaxTQFOLIgy6swVrpDzzH3siEP0JKMY7OMnyl8weTtMgn0vOCMUSfZ960HYgXrlGsnA1C+LyJFen8JmQgvtiNo/sLf8BfMz8gE/ISu09ecDwjh7FxNx3+ICIsutw4pi2yokfg4jvYhWvxUxPOy03k1fll4UbeefzCUtvLbQgYd+EbobNlVHfmKXR2fthz8mo7fNrxTG5ATuTFH3ido/gQPvaHqzrCnf6AHxIrdMPhD5Ay4IednwYbdR4ad+zAlxIQwhBMyg/R6acvNCIGwBubi/SM2GBt5ML30R0ypZ8TeY14w85cS7zhF4/3cqJIqTMmx8iJrG8yyF/iZE6kS4vuUgiavacjd07lRPzhunIDxB6+QT7k8ZMih6dzovzhNLnfuWf/yav2w4k/OJ6JB/wBkhW7obMIYXXBOicSs2C/n+PvkVPxG573c6L9zTnGxN+S80Mcfwevx/WFkfMP60KC88UN/oDNn+E4Ov4QGGbuFNHLlwXkB+VO58TcV7Afe4r2yAu+hQTjnnnzvyj3eY+0vMfPcBsF2w7/QRf8CbLTdnSO5Tm3KCA3YldyIuuBqf0BUtmd4/ie/JN4CGLTce8vxzInguGxyH3KDyLt3fnbkXLsUxFH55fbnlNX5d/sfVoj9hXFgDok7XvIQH7AH9jfHoHwi31Fnx/YS+mSjs8P+CG+mjkR+x0/B3bupj0anxHwO64DD+0D0alM9+8JxYpzovJW/E0cs9cRi/tPvaOOY3BT7jxztT33d3/V/u6tf9PeVwEKkUXRsk2dWTchUd6634TE23z45tv3fS50KVroQKEjhg/jIji2tRtvUzC760OFJEUxBI0KNa6haHu43WQcc9G1RfGkQo2uku0qUvgg746tkGmBIptxJmhW3qIYodiiiH9QBTzvu4g/rCKA4gXyKok6k3dZqPJ/kG3orHGQFYdF8tFJZhIJgorOBMirg1EU72433j7aVi7er66Dm28fi04PE5EmK3ZGQXe43aCAeethY6OOGuu8IgzRGcLngEgLFZZvQwbSJQGpw7pH2spl9ITUgKigI+OhdjOIQmEIuSEi9oC6NcBWnRYUWSJmKIQ7XUxKgQ2EDQTHAyZE0UsyUlQeM64UnXRVXDnS3r8IcQFheTR0NoFgnenitD+A9fvY8u3jspOKtiCGRHBpDmTCHx5qN3McHSvS67DJRI2DeNnRbkBEqjiFeGQcBKBJYAhS+YMIL/sDJAkYYlPkXbmyLwgart/v7jiRLcyxt62oswTixkSOO2EhNrviXGQShJDkONTwQzpUiJXVi/e3GxBUbx+PLhawcYEv8nZhp4nfiw/JRtKZghbS4EqQ2xexM11fyL6jvU8s4l/qwMO/IM2IiT32RWSmQ0ZdLSayjA3zMQ5yOwv3vfZF6QlZQdfpAWMIKSWSixg4IJ1NkEOoRbckpBmdYhT4C3vDH4iBnY0YwJfUvSNSDsJuh7vP+PutB9QNbJ2RGXIlyCu+HAg7qxMx8gPdkY5nYoAvIxwD8t2p/BAEYGB4Az+XzpBCdHTSwYc/Q0g5RiHsRG6gi17b7xgQgWmSx/4AhuDhrq+brPHWA+50xBahs8g/YYjOu+0Pb4EN/mBsRF7JfnQ8Q+DSRXy4vc+XClM5kRybxB7dmeEPF7e7E0v5Bv9IXSyH8gOxfgkClFhhjiQ2IyfiD9JlvzujWZvcQ/4Q6WIyTPtAEnbxxYdswZzyxcg3yol8QbCnlxNNPMn3RACajLc/0H1GTiRWnB80X+wDzono7M5PcsMEG+VE8jYxQMzi93wpckgd5M6JEGX2m25fIe7Z09ylLVJVBNehyInoYkJ/RdiQM/AhciJ+Sv6l8+1Q7CvsF/4iiD1HObFH3pk0i85i5Qf7A924K+g1iefII/gUNiZ38qWQ/KGfE4k15iMnxp7LNfi49pVjtslUTmT/wG/Qmf03/AFfntpXksx0Byhre1/0XrqSex/7juIIbIiH+CIMf+aUQYzzvsJ+gc58ocHnB/Q6Fhiy55LPyA/btF+ALxiqu5F9QCQfORGdGQdhhz/4GnIinzOcE20f4YMNRILjyzsiJ+J7uV+QHyHw0Tk7a3dHTvSXX86Jsa/I77dVp2D8SnH90MgML0in4N6TEBIuhFV0qmPInQYUxoc50nluqe3523dEQvDhniIIIonCIQk8ii6O7uz922vt0Kml9sybjPOxPZM+kBfusqMbgAKDokhFho5G0RWxLMIDYomjiBAEkD37Tr3TnlKxFGSHyCtkhqBxNxAFMeO4lgIIXViX4on7tjEfYyg+KMAgPdArj69Oxp1xd5gIu7/18SXWhpiA0GNNCh4KoSRlIOLoKHuGe/UxLjrDhJXIR47U0YX1TpBNxtDEiwkLyBHuEweuHC07cNL3mzuR93NjbYhUiE+IuDMc3TSZ6YKZI1TZWeLCE525nx7H1sCGwgo5NE7dS3T2GEMKY4rSPSddZIEHWGUxCYb4A8U2uO75W0iIRWEBhkkiUaByRBI8IBn3/i1H5SjIwYZ7AnIfOXR28QuGrMHxNwrB/0Hks4liusvQDX+B+GSNQ5AVJ68GaUbRCUFjO0MiULjjn+i9/6TxgrDJo3vyWfnDUuN+jcxJ4Y7uEFgiDYI0Q2f8Gl0gi8Hm6JmrKobxL65hvqd1b0zIWP6+3naffEfkE9cTA77HoO0JpuhCYYsfioiL+1+6MDYBD2HEONYFl4MnjSH3VMTHwBBfxJ5geEL+6OPIwjbuE+kuWPzB84ED9sIXWUPEPyRZHNF7JjDkKCC+SOcgJAwEmLAJIsvY+Lgf5AAFOTEBScs4/BZfxR/ACl+kOwgMD55+R/cQ5XXlHt1b0XZLUhGbUPBD4GYeSdvhL/IHdeU5BohJMEBuSC38Fz9lHMQEHV10BKInOkPm8T5kHNciH9iw1r5TJtV4DxnJBfgy9z1lPvssue4d6Yxc+CHzyh/40oHj/JDp550TIePTH/A51jY2HBsmVuwPfAFBTgRDOvMyJ9of6KB27gSbZ0SumfwyoY+/+0sBbIasxD0ycR268Bxs+J/3yQUi9E9eVRxC5Pi2CB6HzJlHyGt02YKzsImOxMyJ6MuDONpLN666JePYa+REsAZn+UPsK3QZGhv06/YVyCfiD7LvwEkfK+Wesjo2LhmcEyFPyYl8qcB+QEzhx5Br/ZwoIpwvocidgQ1zgy3jkFv2i5wI6Y8/7D31TuwXzonE3GS/UHe586RJKctPjDEva2Jn9h7sTD4jJ/Ic0o+ceELddbyHH9m/8FMwhJD+yciJ6JNf3GBP7Ade6EtOhNgj9/Vzool8cPWa7CvInl/k4IfpE2AINtgHQhg9uR5fdAeyO4+xHfixP+89+Y6/KNKeazKU+dhXdN9TkYWZO4kHY9jPifYHfGpZ+wo2RJfcVxLDSe6ka1f+sDjBJveVp88vtufe/I/t7/7+f2wrC9H5IuKFgjkINz6Yq2CCLItjkBQmExKCghzCiKKTD+BH3WXAGHVPUGRQyFGA9Y700OXCB3OK+8sH2vsX7zOJlh/aVYxBbDBut8kWdd2YhFBhIZKSginGqZNlR1MXAPOpEKJDAFIjCZXoLBBJSaHzsLve1M1nkpL5TLhBkFLku4jwfEG0cPxUxIKPREIG6bgohb66oeiCoOOAjrEotK8cN4YLEIb73AkyISG6cTfVPUlRQ7cGhRDFKV0yUfwHNipkF4wN5ML/d/FeEy9XKKyCFBSRGl2WF30820Xnw+3mlRMxbrfIA9vZOquLZGFb2NmdKjoeLVIDO0exBrnGsTF05jUd4cYf6LJwt4YwBJcFOksYR3cNnUaQUowBw2PtJhgiozrPIB+DQBCGFJOQQ8dMRosEpJsm/OFtSEof0WXczcuQSKzXw5COnyRw5Q8dySwZ8cMFCLsH280rjxgb5kAv9A6dVYwuICuFNuvSabMrMISwIAbw7b1BZD3gQho/0HyQNSa6XPCyBt12kI/oEJ1HIq3xRbrgWI9OFggJxqU/cK3JBXS+Can4FgUvhOX9JpIpwicxAN4mqUwi0bFoUsqFNoS+O/vUCYuvKe59RE9kk7Dmb+wMNu6sFIaQO5d2qsgXiaFOOvu2CnfFMzaGEEt/MCnl14JkVqzsaDcu7mr44qryA/NAJINREvX4NvkI/I90/oANJv4AhtjJ/jDBcGGbyWhej/wAaXBzgc4mH13HxuqKJaaUE53rulghJ0IgpT8kCUFMHYmcCDnCONYhXn0sMUlr6xLElPyG2yzsa+/zpYM6Q4MgFxlNrqOziQ62jOcgrfF56ZwkM37j/MCXC6sX743u2bC/8kj4K9cJw+ji1j7AFzfY0znW+d3+IOIGUocYUEzhNxD17B1H2k06x5QT/aWHcmLcxkB2UM52DGhfIT+Aj77EINadH4g5xzP7gLuE5e/Kic4P0/sK/gApClkI4Xqf/56KgcCa+FROZB8gj9BZHHGPLJIx9wv2Fb4UIlawH19+cbsDk+MmHlEvWgAAIABJREFUFcmddClypHuH/Qbc83YAk30Ff8j9IvdSd80ZQ3yInHjUehDT2EBx7710el8hJ0Z+yA7k+FJLmCqPkBPxB9bb7nwmwg5iFr+J22RMvngDGxOu7y/cL0JwkhPlY5EThQmEHfkAf3hY/ol/KJ4hjZU7rbNiS7KSE8lzB5wTc1/hfzBUHtnr3ITfR9eu99LIicLQ+wXYKMeRi7Bd5GznxF3TOVFxk7HiLyecEyM/ZO6k0/bt40UKFik4wwbGn5CCFAh88KdLgG4SPoCrSKSrg+4tkTcusiEyKCYolijMKc44XsZrzKFjSxc4MgXp4QIRIpBOAO4HxbEn5mct/teRyPN05FDI+PgiBY46tqL7EGIhx7IuRBRH1OiSgSzhmBsFEl1IFOAqVkUCuNinqKLIR0/W5UHRgi4UfBQ3FEYUsxRhPm5LoUh3nPXPcegINhSJHHuEBKBQ41gY71Gc6n5v0YVGd4W6nMBQBae7lRgLCUdxjRx04kEioKcIxfNgyN/GMLsA0ZdCMIs6F2rX2+PnfS8viA+ICzAEHwgq5jOxxziTDRSoyMxc6Py0jj1TVIOZMVRBHWQFuIOh5KP4i44c+wMYuhuLok2kwVm6OCD9KPaX1HHI3xTCzIs8kD7HztE55NfSD1kDDOkq4TX0yA6dLLKxF36BXPoRkQvL6jTC1lyDHSjwKUDBEJIDOz994RsiXCGHILMZh+/SFYsu3OOOOemwwh+QMccht8fhRy7ykQGfRmc6gbArhA9kDeuiJ+uCK9eDIdeyrvQTyWtfBEOKY65BPrpiGQeG8tfwRTDEH4QNXV9nrkp2Eb6TWDERB450R7kT1t1xYMi8whv5IU6CrKDjje5M/IYxPCA0iGfkUKyc860A0Blb4YPkgQ4bk+/qjApygXncDRSxEjbCD+0PPsILIYHdiOenRVbgH/YvyBIIEcjj7GYTaSasA8Mge4jbzA90ItGNRV6gO5B8xrrgDYEJNntPv6P3ICqQFb2wpeIekip+zIZYyTnkN8ph/rLD2EAuuSsU32COfk587JzjOY9uYmf0Z2yH4fX2GHEP0X6GOSDMTbjmPTORzw+6VSH2yH10nC7qeDpEMBi6k8v5DZ85RhccMRX3dcQHyIf+ssMY4s/ogs9B5vdzIvJnToRgtM6OBXIi+wUYopP8QfHlfUV+Et2CdM9iV/YGkf5xj7z8YgIfZV/BNxND9OvnRHwFP6XLFgzAg9gCS3Wfxb5y7LS/4CInQjYZG9tGdp7kRO8rEJT4NvsKJKO6DyMn4g+KFX2BA1noPIq8st9EL/sssWzClVywNieCPfGMj4AZ+QZyK/cVMGQOMCCW5e9xCwn+zvxrX7AfgSF5BNvSOUju5H3W4P/EkH2UGGAv1ZcOuV9E3BtD/NlHpCFzIawzJ+L/6I0N5L9n7QesSw6V35yNHNvbV7gGv+GLHvAUAa81p/cV5058hJzJFzx8fiAneV+BQM3PJ2CYuePg6a+3f3vhr9ubF3+lvR/Hp1R00y1H8UBBqeKcIzjb1M2kQohCgKNPfPBmDAUInQBJqEDsMSYKOubk2KO7yOgsoGCisIpuHa1NtwNdWnFfOeaGeKP4ozgT2cQHeLqVfHSNrgt1f6god1eHCm11/lDs0hnkeVS4Q55Q5Ov4IjpE1wMEA2ur0KbQpFuDLgaKHYoMumo4goXOkBLcp8lH2eie0H2wKGYoskXQxDiKJ/C5fFxdEBSe6t5RwQSRFOQacmg+cOL+Tfe7QxACSAUdXSwuoFTU8TqFjwi2OIKl44uBIdcwH+tQkC7QDYSuYJGdFcxNxxIFGN1hkHwc2aTTD3IPEpXCj+cutFbkDxRtD7sIxS4iLZgzsAYbSFy65Ra2TxfGrKeuG+ZLO5tsVrdN+IPeUyEZ8kom8KXry/e+Qw86wm5y3CuOaRtDCsi90QVIYWqi0r5mn7VvR9ckpMbEH8ALrG0XkS68h8z49iU6oOwPwkTYgOEudS3piFp2Nkl+cIGwgwREF2KAmIK4oOuL+7axVh5TTgwhpdypSgyYUGEc3Tz7fTxatoz7ROJzC8SK7wOnTp4g9uT/+Lf8AQKfTj+IWZOJ2G9y1F3j8HlIJR+LFxmtuPQxXMXDVH6AACU/GBuTAeBsElX3Q2Nt+QN+Q9zzngt9Y0M3G/c0g+TCv7aL3PPx/Dz2SjynP0Ao8pyOWXQmP3AfVGyFvYkPOm+JAZ5D2mFnk9HkIh0xl5+Tw+KeZmBLPCfpgY9mzE90Jo7oEiaPRAcf43R80v7l+bqcSPejOn7X5ETuOxdHYiFUlBPJnfgtce24V57SOGKADmpioPMHfMg5kXswYj/IZ/zmgclxWN3LNcfJzmAItsaG//Gbm/Ib5wYwdk4MHGRn8pntoK6+xAe/Vq4jnsmJO+z3yg/M55xIB7Zj4JHIsfiDY8PkepDv5BHtK8TeNudEEbuWzaRsxCJ7FTJJZ+aLI9f9nKh8QW7jenDKDmrvJZN9RYQe+wo2Zb/I4+6ZEyOWlRNNZEp+sKEjXjlxdl8JbNgjIeTUxQoe7CvOicJHXyKY7OfLKnWQYmftKybLnYsjj+CHfKkmfzAW9h2uCUzlNzwnP7CvsO+hC/PRsYcczmHaGyaxgj8wlpjJfQW/Ilb40oDuTGKAPGV/mOS52Ffo5FRXJ7HCLUC0FvtK3i+R67gXp2MFXHSSAPvJb/A7ZPUXis6JJn1FAirHcH9Gup3p5uz8QT4qbMgP9gfWcu5hzsidgZNzIsQo+3J/XznYvvn3/7qOD9fx4bXEIKQgxRrFEsULBTHFhgpKkRyQY35QTGSHgDvs6BRwhwt/88GdD/kcB6MQoQjjQ7s7D1zsU5RQ8FD4PBG/urr/tDtZKIoouCgWIIqyMKIQpjik4HVx4x+bgDxgXXV69IpH3W9MhVUUHyryg9xTIWOyg44k5FXxEbpDNkEaPBKEIesxTscI1VXogpe1KdZVDAZpgM7gCPlB14m6vijENM6FDQU1xRgyUrCDHwUcY3Ic11FomZi9KhICbCjgpPPkflMUhe66OMBRvtCZAgkMmY/XsKVICI5u6Ui3dWZ+ik101q/vxjheQ2eIBnRkHHOYiPO9nNQ5pl+L9pFbilPGIyfrquAXyeYuSLBhbeSH3IFQ0LgehmBNcQ8Bgv4UwCr2A0P5Q3RigREYCrMkJ4IEcdFo3ZAHv8E3sZWOTosQg3ixz0KIcA0FL6SgdIbIE0GFP1h/FdXCJkgvHYl1BxZygGGSfxAYEK74A7ihcxatwkaEkwkR7CoyMzrqwLuPITiADa9DMovIiR/48LqWn+KZufFpYo9YhiShW4dxT8rXHcvEF3GNfJCJkB+OPcczGCRm+AO2Iy+AGeQS/gS5gv8xT8pIfjh8hiPDJiboJLIuXgOSC2wgvOQP8l/LbF2mMYRckM5xPN/Y2Gc5kkonGT6le6wFaQ0O/lIhx5mwsV/k/UrdVeZxllHvhz/iK8iHzSA/ODoKRtxf051lxg/bojNygRmx/Og6OdH+YJ2xEfIy9zSGJh+P0unWy4l0s3Y50UQa1/X9gfhkTuWHXk5UvEUMsK5joIt7E7rOh/g3cc8YbOqcZwwzJ0JioSf+ih8gF3JwDWvZbyL3xb6ifKScSH64Fhh6DXzMHaeQmfZTx0q3r8i/+OJFt3xwVy/ELH7OlyDSWfuKfRafxA7sKxDBYJMkFBhkTiRPKz/El1rYf+JfPQzxdWJJ/pA5kfyguOz2lRPKU+7OVHdikM+ZOxND9jKIUO8XxLrl1X4R+IKn9oEgo4lnSDq+SCDP0nFLvPRzIrJrXxHZek3xzBj2GWTV/BFv5FjlP3WzGkNyrmPAcY7cB0/7eDOvC8N1ciLYkEdM4NoPea3bV2wD5icnEvu8h428X/iLMnIV+wrYkKfxRfIeewVzO48sNQjl/MKI/YHj1HxZwF4KBpxW+I2v/Kf25lv/rr2vAsqFhI9aQfhAau2KH77gOBGFvAkgfWjnCK+KV7oE3J2kbp0oGlXkqcjycWSRFSrg8rgaZADkjAkHkYWTm4VTfLooyGN/WlOECoQlHWB8gPcNyVW8T+5xuC+6H9y9o6KAdVTsu3BXwUfBI5Jnd3ufwkUFLt08O62zCgaTTJYBsgldKJZ8PGtCboiISF0oOOgMorgHmz6GFKUmOsBDR+goBlWoU0S560v3OlOBQlFGAbbdpImwdWeTijYKMNYQgcF9tHYGSWniUIQXhapIO+QBU7pf4lglmEGmiKxywatOvsDmho4tR2ElXYKQQY5J0Wg8jA14gTVF4CF1DFFoQdTxgzLoJ7JQtgAbE7sicsJvrAuFYBzBDtJLeGkMOqdd3IEi8kLkFf7AWiYhsshTMRjYiDRgTJKBsh1HDimEExvrLEJJXXl0vLiYlnwqQDmWyLHSOL4qQiZJA3wT/4Kwwld8/FT2pbAWfi7ITYYQA8ZGN9THRyDJRNQQi0FuZWfpgo9qCzfIEOGJbxHD+B8EGQV0d/xUdqYwnsIwCB9k0pF8CIUks9GFQjvJAZ7vFhlgDO3b8gNhCGlJDPjeeSILw9dFsKtrKApyYW2Cx/4ASQlRbFJL6+pHh+wzwn4hf3jDPmu/6jC030Da8+MzkFJgZhJDP5oiDIk9jrry5QSkIj9KAr7u4uv8MI8kozNxzw8ooBddx7vl22BtPzTRIXyFISSE84OwFgkaGIYd9UWCOmZNThhDbJc5EVIQXcgjxBzy4DfhU5DNIq7Ix4zzEUuRPSJuIrfN5EQdqwTHIK/k3yJrwIA14rqFXe19fFs+b2yMITKC4d52422e+wd3kME50Z1yxtE+q9wmwjVzNtiQY308dLKvaB/YH/d+tN3lN/iWSB/7tomqOIJN/pfvEQPOlcSK/FA+RnccOZGut8iJiqHMie6oVqcYsTLJ75CSxBAxgC0id75NfLi7zzoTA9GZFnGVckywYV39YMvanKhbN0AOal3kz5yIfR0fzkG851sKiNyKfcV7gP3Gdok9k45TvliA2CW3E5ccuY78oH0AUk2xQodk7PfKD+gLVv19BVKRPZK1yJ2QgeREZMxx7mTPcYoV5br1ciKdqRzrd94TOY5s8kVihdeNO9g4r7AOGB6MfYW1yTfojD/Q1e8vO5jPvs0YZOZaSEFiJW5XIDzj80PYrttXwGZnu/HW9vbNrz5bpGCRgmtJwf/n5j9PCDo+YFPUQf5RBKhjhCIgOgSOnqVLxMQNH+ZzHMUZxTuFAIUOj2cufEOvUeDRYUBBzTUUkhSWrEXRyREhPsjzOh1urE8xwt90o1EA0bFFoZDXc40KmijCKXYoLrl3HDJwY/Lj0R0ioiZ+OZN1KKIo4im6KB6ts7tLWFeFpjorfDSLYgQSBnnQASy4ltfpyKCo5h5lOkb7ZmKDzi6ePZ+xoRiCMOH4G/MhD3iqEJvBhuKJH7eguERGjsJNYRNHAcE6SSLmA2vGIavsp+4S68w6EDyszTXWxQVpHhcEQ2R+8tw3hCEFq+0cRzCFDWTSVdkGAhjbq7iLwjwxRA5szIN787EuRAi2hIgT6RfHTMEPfJ4Gm/gF0/QHim2u5X8KRDDk6CzrgA2kArpBajAO2/AeRaUK/+jqY11j419SFfnNMdQkPYMUoMBUIR0Y8j7+RuGLrzEP64AlOEIaWWd3tYEhOnMvM/wQufAHFfCys/0QfXl87E1jyJx0b6Y/iGCKONR8caQUOxMDYKhYki+YHGY+CJOMMfyBYhoZhY1ILhOgkC2sBYb4grExwcZrLvYhzvEVd6QxBnzwL2zJOIgW7iPG/KynOBPxYT9kHPIjL7EnndEl/CZjIP2G+CLXQGaSR8CQh/0BgsHFPwQTJC7zMUfnDyZ8iWcwVH6Io5bYLLHAjtiV9RRnce9B4hls0EvYTIiVxKbLiaxPFyHjmAeyA0w7bEyYECN0qTKOWNHakRN5j2vBiAdHRcGQOTKeIVcZx5cpihXdP9M/1AHuk5wY/mVsfHwT2504c73RMZcY4ovgTzyhK3aR/SNW5A/4dsQA8vA+eSljnXXBE52RP3MieRUMwSb3C2xGZ5ewiVzHtaxLPHOrCemX2KgbzPuASFkdN+72FeSZYBPzkU/IHcQr+LL3MI7OSGTPfYUxyiNB2EP6pe+aOHVORH70Ip75X1/2nPYxcoinxNAxAIZXTeTFvoLc4NjpTJwZQ64hd7IucimPBKGvbsk4Nq1Y+QpH0f3lUe4rmRPty86JOoq8QU4kNrAP9sMfiGnJMMHG/kAckDvA0P4Q+5TI925fgSRPvxHRGzkxCVrkIvbwVXQGQ3DXnnaa/AH555yIn9u/jCHXcP9T/AGZiS8w9P7f5SxihS5oMMSX8QdyDHL96oX/1M597Vfa+xQ2CxTSdF6ZGONeZiqIKLZUWPhoIeP04ToLVXWtZOHEtT7GqWJfhQ0fyumAcBEoomxShCdJ1JFVKpBVZNLxZmJSH+x1BI95IL+y2KcYzSKQYt33n1PRyVEwkZAcBaMrERk5IrxbxTwdChQSPhZF0eAujSTFdCxNZCLYxI9WiPBiHY7ounASNsiJ3siodSiwfQ85FeAUPxA1FJ7q3uMeeFGAT46euuNJpIwIK8hACiKKGY78mTQUjlHkJGEg0hBM8p6OKpTcTaR7rIk4CgIC+719QoQRBW52MVE46V6KYW/srONXKrR2tdW3+cEUY8i6FGp6iBA+HIWaO9xuTggP7Ac2FLupM7iBIccMIXXCv4RNHGPPAk4YuttOpKAwBIceKYBcIk7wodBZhasLRGxMN590FukMnvi5u0J0LbqLPKBbzUcDed0dSUHwESMigx0rnsNE1gRDiD1sF7+0qlhREWtSR11dFOoqpMGwkxGMdGSwR1ZKZ60ZZOwCRLwxlnz6wRiICmRM/4r7gqKzjpLTSUUMgA0FNzJTDFtnFb/4AxiGzpN1Faf2C3WhyQ/Bwd1/3TgTk+r4U36g4ytIGMhJrRtHBYUjx1Djvl4iLiCJkI1riGcw3t3+mwp37qWZPzzjY9oiHsk/+qVjY7NyETtzLzOOgJKD4qglsZd203wQqjt0dNgYMjdHrBnnI9/KUSLayInEOvrtbKvcW1Vy9nNiEK/Sk5gAG9+P07kkcqK6onysdULyZV5SPDPO5JZzp4/Mm+hw165kXJMTIa98NNQ4mURWx+MlMIQY8v3b6GZ1ToQkIidCvuSvcbtjTDnx7UfVicvajqn8ggMZyZXoTE4ED5NEmRM7/+LLAedO24u/wdBdn8IGP4y4Yl35p4gn7MxR98yJrJuxEl+4QLYqZ5OT0Bm5AkPlB0hk5Cc/cC35NmKF+zEq38QtIiCAJjmR3OR9JXOib6dg4hUMb+paZEw7577C/3S/5X0ViXvnkamcqH0FGciJyO9xjn9/+eB9JfCGNBRhy17KvgJR6g447yv9nOj8Jhth3xwXOdG5k6485CLXcW3kThHDtqf3KWIqsNH1Mbf2M8eA/AE8pHPcrkN7B1gTz5kT6cCL3MnxaGEAhvhQPyd6v0h/UIehciJjTCIqvvEbxTM5Ebn8pQW+YMK5v+fSCe97HcpntQ8QA5kTo1t/8qVV6ry7/b/168NttUjBtaQgnYIuGHwEzgVMRyJlQcYHbYg3F9guzLmO4uFEHDfKgpeigl/85H0+yLvgpevGhQYFgF6Pop7nFCmsTRGkIktEiwsh3k+ih/sluVj3sSsKF4pBigIVpnF0jWt4j7XUcaCuEB8zY5zX5H8XGVkwUahyHYUJ49CXooXxYEBRnqSisfF9xNCZHzmgWKMAZiy6gAHkirExhhSkzMfarAGG6iyBuNE91hjXYcj6fWwgeZBLOmu8ySqPYy3fU0xkAAVzFPLI4gckl9c0NkkidRim7dIfGIce6AVZkxiCm7AJnSg6IcHAEewpeEVQRPFrnT1HYmN/MBbG0D9yYTtHB2sccxV2Ez+EfLFPUSCqkFXBa7uDIX4lnQPDxAaiE3/GLsio+3AJS9uLdSAB0UPYq6MucA8c5Q+T+3oZOwpZYRb382Nu+4ML8vRz+YPIOvt2+oPtbNtSYGe88b47a9wRAzb9WEHeCYkY8cQ1jIPwFekTXULCO3w552ddxYoIQh9zBFPFQBA++Bf6sFZHIpnIMum/KCIIvPEB5mYccjgG/Fz+EBhmDPjIo7ETMcH7iin/MjLjiEtkAmP5l/KHZUw/pFsIIgZ86VADw8ROskfuYT4IQchH7Mw1+EsX944/y97TOY6oGhvng8TQfmSClNyAzomh49nxx5ysb2w6koPrT5w1hh7jLyCwM/qhs0jO0IHX7N/OiWCI3uDEe8KE55OcaFKKMY5720hxqlhJ+TJPm1inK9H+4fsZom/mRBFjE3+wvOQHEeCRw5QTo/MUXcAi9xVikIfiOnBBd2KZPQQMkU8YT+Yz6epY6XVphlzEG4Rexj24sS62cExFfggf1LjosoVg6udEkXaBIeOQzfgaQ3/p4BjInOhxtivPyYmQYFxHLCI39id/Mx/yggG48bdjxXssWPVzIrjaH5yPiRVj02FITjQ2/OAW8rrTXhgHhtK5lxPxRfYV5EqicjYnKj/oh42cH+hotc9jH8tBTsTvpHPkN315hn/1c2LswblfgF3GCs/lu73cyXusgf2cB9lDI+dp33U8gw33U/zNr/x1+8rX/k17nyKJouPSnnZzgQ/IkAgU576x+aRDQB/E/a27Owai80jfvrvAMXES39SrODdJQjFCcaYjVFFYU0i444X1mYsCPYp43U+MgglCiXt8sW4UmhAb+tv3tFNhIkLG9+uzLr6XoIpPii7WisLSxTfvhy4i+ygyIOJ2mUSSvBQoLlLARh1AIhvQJTsOonuCwijmc6EWP9qgAtrH6bSeuhjc6dNhCCECgWaiRKSB5EVfuiGQjfniyJ9w67ppTIB0GKrIk87cewyyiS4Tilp0CQzRQ3NDBlDURZElYsLFKDKpyA+CxXNEUaoCz+SSZBc5ABkDhiZcZXN1TXXjICEsLzonwUYRHl0ywhDiCl9MnY1N11mCnWcwlP+mr7hr0x0joXNiKJ3xBx+ddmGJ7cK+8lmwyQ5OY+NOKZ4z1ljzv8dZZ93rTR0vJlrsD8bZNvFRXhMqFP/umkJ32wJseEASBLnAcxHJ3D+L170mrwkPZEGXKJitl2PFGGJD5kx8wQY5Qg9el48bJ9kMIgAyQzHAuBzLPI5n5QT5FGsTD9jIHb56Lv/ix3JiLeI5uu0sY2Jo+bwWxDrdgiZGICQ6DNMXjQ0YGoO0eRBXwi/0TeJzYnP7oTHE38Gw16HVt7kw6eVEfPUKBAdxBBHpfOZ72vUxxG9mOpKEzUY5kS4s7vMWxJZs2cPmMhiGzsqJQaBMciJ2S9sxjs4z1sJv+NIlMUSXxDCwUo5Jf+uOUdsHQwYRbMyHbZmf3MB6xsYY+ripu7AgmaZzIuuu3VfIiYxLgs4diJ47Yy9JpOhIky7I5ZyoX7buxcokBnQ/PGSyDo691Bk9s0MNP4/50GuSE8Et7KVubJ6nzolh6ow/BFktbIiP3FfCNnH8XATbJFY8zvkDfWI+dePmrQrAhrU933RONDYTQk3YzOTE3Eu1rzhfOPbsL92+wvqOI/SUnbUuz8Gnw8b5gX0lY5t9EJ/oj8OnIicqJ8TerzwSupDHpvYVSGbsTB7BRtgLuZiLR8whXdIfPE4yYx9klc7MEUfp8Q/5Oev29hXNnbkzsQmsU+dLe+vXh+uegmsJQV6BFOQDNx/Cs4CmeKHTgtcoOihS+PDPMUcKGd6n8KCAEbkiwsLjVDBFhwaFdhYfHB2iEKTgOBHdOhT3FKgqyKPbg44JOk00LtZGDhcWFO4mcliXh7oJJsejOPrsgpO1kBWdmFOFZZAcyM3fLsBMtlA4cjwNUo4Hf1OcIJ919nwUaczHtRQn6JtFXHdPQBNEYOiiLmSiI+V0HAOGlIq5mY8ijnWSUKPoRkbksLxx1DAwhAxIHZFRNhL5aPnorgDDJAoZD4bG3h01EEZ0a2BX7OzOM2OI3ZgTmShokbFPPKlwm2Bjf8BHwNA6Wyb0Qj7slAU59pTOgSHXoSe444s6xhYFu+4bhV4qyN1hgkzIDPYU1OjJfHSk2G9MSqadkQF5eY+j6Mwvu4aOxib9wbihO11OyCoMwmfBkNdkryB/kRGc7XvhDxE7qTOyICPYuKi1TDzXfdkUKyZbhI3IAJPDuVZiyFw8l85BmvAaGGI3MER+2S869hiLfEm0SF7uA4kuEXtcz/F2+U3Mx/tdrPT9wZ1+iQ1+BQnH38wDRhOdY358G5mQnQdxLoIpushYi9fBiHH4JLpkXmLuCTYRv9iVOXT0WbHi7jDGWWeTCcwHNsyPP+dazE2cKj+EzsjNusiRmOJbjAPD2ZwIlpn3mJe8xFqJBfZj/vyb94xN/BCGvtBwPBubLidOYiXiHoKtw6bDkNhhXYgd5oBQtd+Ezsrh9m06Pcm50nkmJyJ/xraxiS61xCbiGR1k55AdrMHBOdH5jBgDq8zvyAOGE7I3ZFL+UWw6jzA3ulgO+0Kuhcw5n/3B96zLuM89hrW5Ju2MfNbZtkl/IJ65hn0FDG3nLiciM77t/GNZ0o7MyTXojKyJGzgIe+Iwfg0bQoyxrMs4YdPLidbZ8jIf1yM/+mZORBf8BgyZxzJxzdp9BTyQz18KdPsK1zMn8yOHxvVyInKAR+ZEnsvfIq7JiVwDBryOP4Ih10nn+JKNnMiY3FeYx/knYir2OvlNbx9IDFmDmBLhGfuK5FXOtX+BJ76uo8ORY2Tnc9fa/3Thr9v5r/27tqKjshAeFEkUp+48cjcJR2kgBfiQTtcJH/75wE13QXQLUATSeaIP8xQQJvbU7UDRLTKD130UTPMtuHBwweOii4LDRRJHk+Jm4FGMquuAAkNdZowzKebuD4gSOqL44E8RQBdW3GtKhZ4LdV0zKfai0I7OCx85o/DNLqcsxpLwyPnQLX5hNH+CzpyPAAAgAElEQVQFkyNpqaMwROcgvdSpETd5V1FufN2hQSeLsVYhpk4WikWTDpYXnaNIVuHDkUEf1eqIvCCb1JXC/FG4CkMwYQ4wYhzFZB6RduHVddihM/bN4h+dowCLY5OyURSM2NnjA3vhD4Z0APoeaC6ms/jPosvYiGjjaCC2kp15Pe6NNsHKBSHdUOochbyTj/p+cF23kHU2NuiKHC723BnH32CDfvEDAeErJlCwM35OgQ/xwhzZKeV7lhlX/CsKV/k59ovuQ0ivjAFhyFqJDVhFN6vGJSnJ67aRi19jr+JbGCITRTcYUriDVcYOfuEOqOwMUzdNkGHIQjemi2v8xh2S+IBjHL2YGxLCXaAQD3QhYXdjGIW2rgFDXg95Nc7YSLYkg6QzxAv+FRji24GN17YuyOYuQUiC+HGaiHP7V19nfDHIFBGMYEOsgFnaLwk7kzj2Q54zljHODyb20BM7Yz/iHr0gtZyz/KXIzsCQNfAbOuw6nXWPNvyBnKgj8pkTOTaJzo7ftTkxMYwfbcCuszkR2eRjENYceY0f0JFv43fWBYw7DP3jDvZVfA+5GecYg6yZ6CwM3TlqQgV88AffH88+xdpgwzwRv8KRPML80dmWOVHHqnl9NifiN851xpDj7cwH/uwr4MG+gi0yJ7Jf+Jen9QWCsMguTWNjwsq3XXBuY58hVlJn/I+1kYdYIQaIS+ziPO39KG7zoNeiq1B+YBk9H/e+7OsM7tHBJl2Iy/CTiAH/cjE+BYbIlfOBtfOIrpFu7lLEb0RK6ougHGcC0/sKfog/kBOxV+bE2Acu0wUYeYlYjf3C+4r9wX6JbY2N7K9xxBtzQjCyduylk5zoWFF+km9jP7C2LvbDWHvSiYfOxMg0NsYKncEwfl1ZBCTjHIv2S8eK4m6yryBjPyeSp9AFndxlq3tYTvYVd0Yrp2n/iLwGhvIHMOT6jG3nxG9+9Wfr+HB1Cq4lBiEFKYT4cG+yw8WzCsbJayYO+MDNB38fu4xihGJXBI6JGD7IU3xRjFD49IkAj3PRwTysy1jGUaxQBPEc8okiIwsNyIMs6JjD17hDxONc5FAQT4oM5ovC1/O7aGVdZMxCIosb/mdcdh1yLJhOItZy8RRdUyIWLCOyILN05gcMonCnAOIBhp3OLpqYj4dIh7he49QJ4QIsMQQf3sM2FOgUQBRL6JyEBTgzX64D6YUevq4jsHJOrmUO9NMN5AN7MJ9gkzpT6Im4CWzo/oqCl7Hyhzh6h77YUBj2Ou6MoX/Egy4sujvAM2VEbnCzfLYZekq/8I3UzWSRyUV0pihEHzqZINbQmWIWvGSXwNr+ZAzRXaRJ+JfHGUPkZy1eU0Eb2CQJlBjaH6J4juOcyJEYQrJx/Bj/S11SZ8YhI2MSQ9vWdgYLsMkYAFcwZC7Ph46+l6T9wRhAXDBPxlRiRrcouMhvovMw7QyG7t4xgZI6Ix8P3gcL/gd73udvdEgMjZc7yVg7Y4D/O38wrpAarK15J3GfJMli6Gz/EDbhY8QKcZn6syY2nsyn4962GbIpBuKemPyNHH0MwVa2ii8V7LOOK<KEY>//<KEY>ORE<KEY>MZQ<KEY>//<KEY>MGL<KEY>//<KEY>EQAAEQAAEQAAEQGD<KEY>EQAAEQAAEQAAEQAAEbngCLIi4xItE2BDilonKFDPUa4XZ2WOJ4CKENtOOXxRkUSSdLWZEqioKxnl3iRqRECPyykKJDBcLNaYoY2RNiTBebnFo027MKFvW+LxM304rOrZnbjkD2WKUHYivCz+IRC5/Of0CUr6dsHLbeQs4zmGQn2aAf2a+UuzKT365dYyieohDev2spCjotaMzlOwF+loU2uevfDGsfJnkA09AFIQoGOgq/mAQBf1scAUEQAAEQAAEQAAEQAAEQOBGI8ADfCEGBRXfEkBknAIxSQZN9zmOEOLUeRY0skKZutrptkAEkjO+5D4nlyM8ydxEQkyBKGh8oMEh9MT2AoSaKI++V4ZlrorFGin0yX22YghrBRxkXLkf5UaWVe7LrJbdL2Ig05H7asZfUV0FiYLJGpOJH2fKnZapuB7y/SyOnwrFeWWPyupp2yV82/ZnU2g0+4Ko3IU8UxildyAKQhQs7TR2BIiCNhEcgwAIgAAIgAAIgAAIgAAI3LgENqcoGAkXDqEx/qquepVXbIWQEYse8bVUfFECknplVGxt4dIWUXy+FQkoiR3bRhynWBSUedWzNc3ZjbGtADEqmeUV27FnCcbxVRoyv1nWMqxtJxHPcsvtI+Y+H8LAzVrmU/iCsSYip1lcD5Kxm5/Ke3E9yLwq3rxNmSdCoLqWnldJJNtCO5FoqMut7cTl1cfqlXkV1hIaDTvZ+rayVemwbqIgfxn4lVdeoR//+MfRtzhefvllevXVV+n69euVyikj4+vDkkYX9iEKdgEiTIAACIAACIAACIAACIAACGwSArEAoASG7NYSANJShwoqaQT/DoscDgHPJ/aoPErRwm8cV0AABDYLgTqJgizWXb58Ofoa8Llz5+js2bP04osvUqvVioTBbjGHKNgtkokdiIJdBgpzIAACIAACIAACIAACIAACIAACIAACINBjAnUSBa9evRoJgCwG2v8XL17s2mxBiIJddiqIgl0GCnMgAAIgAAIgAAIgAAIgAAIgAAIgAAIg0GMCdRIFr1y5QmqGoC0K8ozBbr1CDFGwy04FUbDLQGEOBEAABEAABEAABEAABEAABEAABEAABHpMAKIgPjRS2cUgClZGCAMgAAIgAAIgAAIgAAIgAAIgAAIgAAIg0FcCdRIF+YMivH6gPUuQj3/0ox9hpmBfPaNEYhAFS8BCUBAAARAAARAAARAAARAAARAAARAAARCoAYE6iYL8Wi9/bfj8+fPRa8T8KjH/X7hwIfoicbdw4fXhbpFM7EAU7DJQmAMBEAABEAABEAABEAABEAABEAABEACBHhOokyjIRWXBjtcW5A+LvPTSS3Tp0qXoy8PdWk9QpbG2thaJjSw4lvlvlAnsC3vmzJmogD2u276ZhyjYN9RICARAAARAAARAAARAAARAAARAAARAAAS6QqBuoqAqFIuA6l+d69YWMwW7RTKxkycK/tRP/RT90R/9ER06dAj/YAAfgA/AB+AD8AH4AHwAPgAfgA/AB+AD8AH4AHygJj7w4Q9/mN73vvcVqkRPPPEEffSjHy0MNwwBIAp2uZbyRMGRkRH6nd/5HfrDP/xD/IMBfAA+AB+AD8AH4APwAfgAfAA+AB+AD8AH4APwgZr4wPj4OP3e7/1eoUoEUTB+zRivDztcJU8UvOmmm+hjH/sY/e7v/i7+wQA+AB+AD8AH4APwAfgAfAA+AB+AD8AH4APwAfhATXzg13/91+m3f/u3HUqPeQqiIERB0yPEUZ4oyK8Pf/GLX6Svfe1r+AcD+AB8AD4AH4APwAfgA/AB+AB8AD4AH4APwAfgAzXxgd/6rd+iX/u1XxMKj3sXoiBEQbdnEFGeKPj2t7+dnnvuOW9cXAABEAABEAABEAABEAABEAABEAABEAABEOg/gbp+aKSXJLCmYJfpQhTsMlCYAwEQAAEQAAEQAAEQAAEQAAEQAAEQAIEeE4AoGM8AvHAhbIs1BR0OCVHQAQWnQAAEQAAEQAAEQAAEQAAEQAAEQAAEQKDGBCAKhomBSjSEKOhwZoiCDig4BQIgAAIgAAIgAAIgAAIgAAIgAAIgAAI1JgBREKJgZfeEKFgZIQyAAAiAAAiAAAiAAAiAAAiAAAiAAAiAQF8JQBSEKFjZ4SAKVkYIAyAAAiAAAiAAAiAAAiAAAiAAAiAAAiDQVwJ1EwWvX79O/CGQa9eupf98rpt/+NBIN2ni68NdpglzIAACIAACIAACIAACIAACIAACIAACINB7AnUSBVn8e/XVV+nSpUt0/vx5evHFF6nVatHLL78cCYXdogFRsFskEzuYKdhloDAHAiAAAiAAAiAAAiAAAiAAAiAAAiAAAj0mUCdRkGcHXrx4kc6dO0dnz55N//n48uXLXSMBUbBrKGNDEAW7DBTmQAAEQAAEQAAEQAAEQAAEQAAEQAAEQKDHBOokCr7yyivRDEEpCKp9njHYrdeIIQp22akgCnYZKMyBAAiAAAiAAAiAAAiAAAiAAAiAAAiAQI8J1EkUvHLlSmaWoBIF+VViiII9doZOzUMU7JQc4oEACIAACIAACIAACIAACIAACIAACIDAYAjUSRTETMHB+EDlVCEKVkYIAyAAAiAAAiAAAiAAAiAAAiAAAiAAAiDQVwJ1EgWL1hTETMG+ukZ4YhAFw1khJAiAAAiAAAiAAAiAAAiAAAiAAAiAAAjUgUCdREH768P8gZELFy5EXx9mwbBbf1hTsFskEzsQBbsMFOZAAARAAARAAARAAARAAARAAARAAARAoMcE6iQKclFZGGTR7urVq9E/i4F83M0/iILdpElEEAW7DBTmQAAEQAAEQAAEQAAEQAAEQAAEQAAEQKDHBOomCva4uJF5iIJdpgxRsMtAYQ4EQAAEQAAEQAAEQAAEQAAEQAAEQAAEekwAouCF6BVlfk055L8REqgozJkzZ+jixYs9rtr+md+couAGze9qUKPB/xM0v05E6/M0ER03qHHPcv8AV05JlmWWepXz5XssXpXz7TFwfDaplwZNHNmIAvUs7R7U+caRCSv/sn4SX/MUvaPTDl4hdjTTBs0ez4uxTLOqXeyap7hG8sLX7FqHfMJK0eO6LcpEGf9tb9DykQM0tWuMtjVVW27QyI4xmrxrjhZPtTKpSV/O95FMVOcJaS9u25Jf7/ouMzOdpynz7+fRuX0zn/JItMFGwqmnfi3T7vP+oMrVh3TD/Ge4eev7ir7Xuc7ll9Lh764Isv8bmnuTKNug8uzi1mP/L+8Dsh/VvpR1AxmuF/eQXtvPlghnQAAEQKAXBCAKhomBSueDKOjwQoiCDiitNVp8YIomdowkAtAIje6aokNP+iSTXj5YdGD7KgsEszS5c5RGEsGnefMYTd4zT8ueIpR/qHNwCznleDgNTru1Sgv3ynpp0rZbJ2n2yDJtXHUkLh+Oc4Rgnb4WU2JBWRwnD/hy4JcVPvIebmX+StSpg5e05NuXZfILHBy7xCBG5CXDRwmLnq0SgH35pRK2jfKIeIVpeBP3XZD1FFq30paML3zJwyj9AUOZCPRfOj1Pu4UQ6K6bJo3tX6a2sk1E0pcNpiJMmV1pL9s2qg7oJMs8W6HhsiWT+ffz6Nx+NkV1RrTBboqCom24fcLvk/7yqzx3uBV56qS9yn6tqExGGYLTlfXr5xOl/aF5WhMYwvxHROhgd+P4PM3uEcL/1lGa2HvIKfpH5oPLHZYZzV/3h65z+dYc/u6KIPu/fgpsRcxyr4uy9TPPkp+LW26ezXtBUbuKrlvPU+V9QLYz7UuyGPG+DJfT78syW3mL7Ijym5MCAu1nM4YzIAACIFArAhAFIQpWdshhFQXzH0LkjT554Ch6aFAkT8/T5Fb/YGBkz4IxEIijyfTcDy46v37b5sOYslNsW2U92p5eoKkdeWmM0tRjcigTx9b5y3tAM1JKD+RgyCyDyId6UBMPZ2pQGJJ266lZGssTPnZM0eLpNEvxTmCd6/RFfm3h5o6FaBadLGtW+AhlV6JOHbysUlJQ/q3y6AFziUGMyIu3nq10VDidnp375LiEbcOWiKf8KZOC9ANP/lQ+eavtyHoKrVuZuoyf41tpnqw0ZL5V+5Hmo/01mrstxDaHadLMk1oWlL5sMM2kkZwoYC3tZduG6s98xovOS5Z5tkLDZdOT+ffzCLEvw+TXTcxJtMEhEwVb310wRKqRHRM09cCS+0caRl7gQ9laMc+U6euMOgxON7zuGnct9VRkN0veoqW7R9NZ6rK/ivebNH5wxchPFD+g3CFMFUsdVvdVrnNm3u0jh7/bQfhY9n/9FNiKmOVeF2XrZp4li/R+YfctSZ3IsCoPuXmGKBi3obz7istBcQ4EQAAE6kMAoiBEwcreCFFQILy0RNN5wlPyMLZ9nznjhkgOJNwPFvrB2X6Q8x0rO8W20xKcW6SpgPw3GqM0e1yLAxxf508/7Kd2C3bkYDo7WInLN/GXiRDpeDgtTPvkARr1PggLfjtmafmSyKx8ODbim2XU6QtbRvgGbT+4EhmWZc0KH6ZdkRNrt0SdOnhZxkTd+fNv14sa5PVrpqBOz859cizKaefVPjZsiXhazLPS8PqBm5e2I+sptG5l2jK+Oy2zbFYaMt9eUVAMQt85Q4unrdeE2y1a/cvJHDEhzpfBVBZB7hewzm8bqj+TBsvsS5Z5tkLCCWZWOzfrw6qzaIAdYl+GsWxY6Q2zKLh2dDKdiW5za95q9cWqqgt8SAXzbUP6apUXw6eD0w2vu6nHzLYm/d9I21eY4PNtWtmfJwgqH2vS7qPWqwAB5Q5hqsqjw+q+ynUuLZrswyzfV/WU3Sa2ZVwlbqWGe7gjmGXzpljHW32vUPkRfUs38yxZeDnmcBNlyua516JgeJvSvJV/ybg5/b7k47pXivJjpqDyVWxBAAQ2EwGIghAFK/szREGNcOXe7enguXn7LC2dToSzq21ae3xGzFTbTgdO6nj1EAXbtHR3M81/Y8cUzZ9spTMH2qeXaPZ2cf22OWPGY+6DvSyqY18OhvRDnfnwPP1EwlI8nKmH0/y0W7SwR9tq3nGIlteVoNmm1sl5Y2bk+GExC1I+KBoP0uqB01EYcWrloPYHlX9Z1jj/8qE1zK7pL9O0pIoj0k53HbzSa8mO5qc5+epBnVeDvFKioJ1wwbFkpdMriOS57LUVwMeYcWL4gZuX8kuznkLr1lMAdVr6pGvwosLxNiis9D93eVSd522D6qeAtayjbNvIGdDJMnv3V+jAu1T5JmjenhWcxpM8fGmKgXuAP6TchlkULPK1lF/YTvvEbOEPNc1kdrVhscCHjLCOA9nXBfmsslExXWVm+R51D52khXPqbLyV/l8qb8pMa4Xm7hwnW2ykcws0mfrpCE0eXqGWumdcWqOl/ePUVNebM+b9JKDckmnq68peslXl0WF1f+g6p4pk9GGWTV9a6TIKsv+rILDZs1njpVQWaNXUdNMsy9ms/jyqvihn68qzqI+GmhWsU/bvSRZejkl/J8OqPIh09f3Nn5x57/P1ozp+rg8YP5rn8DLKpfwrpD8PuFeK8kMU1PWGPRAAgc1DAKIgRMHK3gxRUCGUg87sAz+Hkg/9auZYHDvwwUUlFW1lHPUAZARIDmS4vIezZZpJH6o8g+ZLyzSTDqzHaO6UTi//oU6HK7O39pfqoxxCRBUPZ+rhNDft9hJNq3I1p2lJzgRUmXn6EI2pMHIgKh+O1fVom8dbGRX+IAZa0geyA4YQu2xfihKeulLZcPBSl/K2mungPjQiWalBZV6e866tPTSWCN5Nmj0hQnbIR1iIdluPTaWCup5tI9teaN3alq3jU3PaV/cVfDZI+m+eqHN6IXfJg9hPm9TMmUUcVD8FrGV9d10UlCwaDRp/SIj/BmJZZ77+Ura/0EFqgxrBoqCRIb5ziA9fufIk85NcL2Btp+A8FjbMgbAzdImT5ivro5+ZTwWW1vEDNJ76mfm6epSAyJPq/0skbMyKDvJZZbxiupEZMRO/ebf56jBfl/5fKm8c+dIyze5oUPOOuZSlyvrG0d1p37T93njGuroWb+UPZ+X7x/B7hfuNAh3f0Uda7TZ7z3S1v8SOjKvELbPghUd5s1kbzd3uHxeEr4Tl11UG1V9YWTRsu/oCK3zhoXjuU88+Lm4i3bB2t0ZzO1W5zGdF8/lFhVFbhw8Y/Z8KV7RVdor6zgSQLLPxrOdIx7iXBtovrAcEAAEQAIHBEoAoCFGwsgdCFEwQbizQbvUw4XsAlQ8eexdJ/9DcyYOFjKMegFzVKcPlPETKvFkLoEury/v0Q5IcuOQ+2EsDwfstWtyr03I9XKuH09y0Zbl89SJFNhlGxjUeBIsLwSKRmn0hB2Jy4JctU149ijRPHqDtytcaDZo8pj1JhIp3Sz/MczRz0B42e9IziMlkKPyEFoWLhMlim14f6YhPNj1Zr7pdyLYXWLdZ0+aZp2bSAX5jp2+2rqPdFPlv9HGhHn99uIC1ZNhtUXDtoXHNjduOb0CfMwBV/Y1ZIWWPpE/k9MeG2aI4fRAFRX+T7bdK+psUtt91gGyZSvad9rp7chZWJ/Wh+4GSfYrwXbP8oXXYpuV9aub4uPGDmqpq6f+6D1FX87drh9m/3X3Myn41O9FfZpm2wVWU2zgvslOGqQ6r8+o6J8w7dh3+7ghlzDKU93VXWNe5U3M0XuT3O7L+W+ijgqnpS1Y7cuXZiBvqe67CJefEs0T6Q7V87lF5EOn6/MBIxZid2iBzyRxZf1aZPT5s2I4OZJ+ofSk/XA4vWeaiOjfupTIfOfazGcMZEAABEKgVAYiCEAUrO+TmEQV9DyrJA4d8aDAeChKEN4ooeI9+iJMDl/IP9gWu11qkqYKHM/Vwmpt2t2YKuurcVwS5tmRzihbFa2Jy8JUdEOQ93KrE2rR0lx7kRTZ2zNKKeh1MBVPbsg/zRNR+YjoVNCP7coalbAd2/agBhEq74taoV+/rnvmJtFstarVatHi38luLcQd8XCnKetXtQg4YrHRdRgLOySUKGg0xg9ZY11OVVWzL+G9APjiIu8w5kR2sdR2LvKYfa5H8Kgy4Ts/TROKr45+Z0gP9rZM097TdcGSarjw5yrexRHN3TdLYzbpdjuwYo8m75mjJWqKteNafw74hVLo4yHtXct3B2mU595ywke2rTDaZ6zn+JmeuGT84pJlZplk1W7A5a4qGIk+q/0+jBexIf9PtNCCiSNcsq6s+svbWjuxO+9TR/Y4PenTSntJk+J7QoIZDYOUgZUVBPdM57MMuZZjqsLo/dJ1Li+bccfi7K5y8V3Vwb5LLf/AMzJXkPt56Ur76bvbBUTaErzh9NPe6KFtOnmNmYb7nQqPOGTPojydnXdxy86ys6W0sUss+oklj+xaTDwiJMtrPEMGioHgTw7oP6lzwXmB/LsucyZMsR4PMWdOB9s1M4QgEQAAEakcAoiBEwcpOOZyiYEvMQlMPp74HleS6fGhwDnhW9ECm0Y/Xh+XrGdYrP0atyoeWvIdI8RoJP5i5RJg+vj7cOlb8cQP1wJ0/qJCvRvHrVb1eU3CN5u9Q4kCTdh8xX1OUQkqcf1k/yheNCjQO2sflgEQ/rI7eY3+8JolW8mG+9cSMe62vHTO0yAKHbAf2w3POIMYoROBBfr3GRqTAYA7WNRvf+Widx5J8fFmX9arFhnJ167Odnpdis2IvPo6jeTnK7uizcsMr+85t/DqYu8xpbjM78hXrbNs185xtG3l9VyYpfaIVv1YZ+UAinkuBptEYoYl7F2ktnWwr68yVJ22a99aO+D+WEfvdCE0afUA5+3FqcgCccPC2w+R6N/xa2PC1Ie95h78pclqk8t23WuL+vJsWpLAq8qR8SNkN2Uqf1+00IKZI1yxzsV/yl+/Vh66ad8wba/HKlMu2Jx3X9Cmbi+wjzRlbyoK8R1p1Ispt21WxyzDVYfW9znVO2XZujR8Mc/jLNlL63tSi5cMzNLVrjMZuHiHTV+SzosWLMyyYmb5i9id8LctU2PbmOXn28153UnOcFP2KFJRd3ESZsnm2TJ+ep92pqN9MxfCIxdYJOvD4KrWumnHK+gA/B8m3Jbb7nn86EQVdfZcoP0RBs+5wBAIgsDkIQBSEKFjZk4dTFJSCmvqlVzyMGQPhUFGQSM7i6faHRjIVZb3aIl9RNcOaAwbjIdV4+Bnch0bM/PKRfH1V1U8SSjycqYfTwgdKi5XBQNa1EFii1OTDsQzn/TV7jRY/o7/y6BLq5MAvzr+sHz1QyjIhIvmwbeSHBxtNGj/omIHi4OW0fW6F5j87Jh7gWdBcpeV7dHmUgLIqZj4a6wNVHqSYOdOvqudwOTEr8pwddHnrWg3IQvmorInwcnAg61UPIEvUrbLv3bZFXTRpZKsSnhvUvP0AraSiljAg/ddo63EYmec8Tq5rXEYZX5dZpG/t6lkp+mvcuu2adZdtGzmDfyud9PD0gviI0Kj4uFOblvdLX+e0R5IPNMg6y08z5GMZMbtRmj2hZiRK+64yp7nXO3K2c2OKFrmuZd0afUGSZ+Gnqp/UBge7p+vc3669YSqWS9s12bt8nPvUdP3RDtNdOzaVCoIN+/5iVUPZ9qSjmz6VqW/jVc4mje9fog3ljudWaWGfaAti/dvIfkC5JdOifkCGzTL3+4Muayy6qaU5Gg17vToR0ttG/K9Ri9ju3astWnlIz/psvGuWlhVLFUMwy5bR9LtMXfmWMlG2r7Zo+SB/GGaUZo/bCatAYVv5mr4xYzeHG5cnm2eRXrK2ZVxu7nNbtBLl1yx3o7HNEFq1XwT4gJGGsuvjYbYNWR9GOWSZHfdKQ+g1rgfaF4iwCwIgAAJ1JABREKJgZb8cSlFQPgA4H3LkjT55SJFxjIcCgVAsJC4fPuz95l32IuMyvfyBaJwaCwRqfaLkoch6TVXnStpWD1DJ1i7H+oL+hdcYaFrx+IE0HeTGKZV6qNOZc+7Jh9WG9ZVj+XCmHupC0ubZGmPq12tX2XZM0aI9O1LWuRHH8eDaWqW5dIYgz0h0zwiRA784/7J+HHYTQq3vzll1M0qzTy5Fi8tL/xrZdcB8ZVEMUBQvA/qlFZrbO04jRvmkwNhyCCgN2pYulC/E9K6KgpJLTpvw1pHts9njiEcRHwOWNQtEtB89+0nWoSyDmb6zLuy0xLExu+22OVq1BeLmGE0fWTFnYEg2Iq+pWbk+oVH/Zl6lf6n98qKgxcLhK/ltI8cH0gIlO601Wrx3Qvj0KM08YaumbVo9rGf56fYq85mXZvLKZsJt9G6ebagH6e2W9VXXtM+X9k3OXp84LoXvZjyYlnVr1F2S57J+naCTdaDquurWLldIf+0N02G5lItouyZ7XxlTkatsulc3aFGKbTtmaMn4MUXlSG8l+zRdfTlnz/QpmzdRm1b2yx93fGVvkvHqMKcYUG7JtCjfMmyWuew7fcW1frxsNMj7g6i3jXQmCmby3hynAyd1m09zLJhly2iyz9ZVwf309DxN3jZN89+1+7M09bAd+daH/eyYw43Lk81zkuS5JZq5Vf9YJV+Tbz11gCa26rLbz8CabYEPXJLPWU3afXieZtXH75pjNPuUzUW2jZz+vKDMRj0a99JA+2G1glAgAAIgMDACEAUhClZ2vmEUBTOvpu5ZEB/9YKRI0poAACAASURBVCTyRp88pMiHBuOhwETYfnou90ueI3vmac16dcJML+fBJUnKeIW0qV/PsB+04uCyLPqhLHrIcZSjKP+N5phjgO3+qqBJJvDIeEVye/bXcPHArR5Ogx8oW6u0cO8UTewYST460KRtt07S7JHlZK0bK49Bdd6itcdnxRczGzT6mcWgV8Ti/Mv6cTwQZwQO/kiCGIzwr+biQTx+eFWznsIGdYbg1Bx3PFgTbTw+I0RV+Xp5/iBGDnSNB2tDyLD8suCaqnertjKHMm3vYNXhTxlD8oQIL2cKun1Q1q1ZxtAycNLGK6ryAxm2MMjcts7SsupfgvxXFi7e12XpbPCctUhExmwlZpFdYkHWV7ZtFPeLabqXVujA7WpwOkpTj5mv8KfheOf0Is1+dJIW1tVZWWd5acpwjnbL5mSZUxFUxsuzr/ITIoKINthIbAo/LeNrsg561V61gC5m4qniRtsNWrhDtZfevT4cUr6Zp5KMhfK82qLVx00BZGTXIVpxffXeKHP5mbdW9ILDFi3dnScMyh+ChKmAcpfpL2TYLH9POxLZIeesf/eHW/yzaTvp18wfARqNcZp9Ur7XLjNZZV+05bTPqGLPFVfOOnd8iV3eNxz34kx/0t6g5cPT4vmgQfyWhC3PEc+yPDZLu2+bpWWrPWi/8PvAxpNmu1I/5BjPw40mjX12Pl3/MfjZuqDMhq8az81l+3NXfeAcCIAACAyeAERBiIKVvXDoRMH2sv5lMX3gsR8q5Y0+eUiRDw3GQ4EDIQs5D0jxaYRGd03RIe9DpEyvYKB4bpGm1S+jDX49Y5XmblMDqCbtfmiVzN+uS9hWRbm6QUuHp2ny1m3pq5kjOyZo6gG59pYKHG9DHurMGK4juR5fg5p3zdGhXaps2a16OO1O2o78FNa5/RriKE0dsfk77BqnZP04HoiNX8Yb1Lx1mhbsGY2XVmlevLasHpajZAIGdTyTZPmecZq4Z4FWM0/yIrMsqt4zQRMPSZElfxDTD5FB5NDYlWkrUVCeMx7082ZASKuCp1sUTF7vjOLIujX9V/muNG3vt9eX6MAuJWBzfMcrUsbsjO0085Ro/YX+a6ao25GZV5uT61jxNS2qI8fM5kZ2MCrrJuYj+RX0iyopteV2s2eCDpzIc2gVWG5D0zRFAnumIF0KmSkYUCanCGILqqINDoEoKNe4GzP6kqQe2ks0o2Z1d/lDI7KmS+2Ldu9tu1fXaH6PEqP5xxuevbuaFUc8CUv/z29PHgMBpzeOz9PsnjHapvhuHaWJvYdo8ZSnnQSUW/YbRfnWYfW9znXOXRT5fDBKswdn9LpyrlezZf9XWWCT/YLuH0f2LHh/AHSXYfBnjQ+Jub6e7OKW5wfGD5NNGtvvEAQLip3nA+2n52nqNnkf5Dcx5mhVCIty3c74/tSk8S+tWj/w5/S3sszpuEDXs3HPM57/pV/k2C8oPy6DAAiAwKAJQBSEKFjZB4dLFDR/IR3dM6m/RLlLvu4pb/QdiIKVqXoMsACwQz+oqEXDzbWt4l/89SO+LEvvHlryHuo8pbFOm3UTr78k867LrR7Q1OCsetpWVkoe8rpR4/Zru5GNNvEg7BB/mVQIrJx//jrpxN4ZmnMsup1JPhpsjtLue/MftjeOz9H07ZPmR2LyHuYzCXVyQggSjoGXHOiqequ6VfVelFuZthqsynN2PoLsCp5aFJR+KtuYPK8HwUX5Vtd5BkT6yrucHaoCpNsWrR6Zpgl7sXU50DEGMmlEY0e3o2xbs1nZx4qvYTA5MGZy7JikyfRHDDnj1JwpFdeF5Ce5ulLp/zmz381jJpdbKFMmKYI0aPRWvfabOStctMGKomBfKJ6aozE18H7XTGbWkNFG09euk5yJ9hfUXvtSIJkIz8gbp/G75vN/YJFRkn1Z7rz25Ig60FOy3yjKtw6r+0PXuWyBzOeDeL3eNi3v08uoRGurCqHImCnouDdl08g/005+b2mvLxrPYaMHV3IjhpVPmRBtuQt5VlbV1rinOJaBicLJ+4bKQ1G7Y2Hw9nGafbyz2ZP5jKy6/8yC420bovbJQ/oV5VQkLtPfKkpltr22XyYvCAsCIAACnROAKAhRsHPvSWIOkyhovCYZPTSYa+3oVx7kjb4zUbDcA75Mzz343XjSfEXVXLTcLAcP2HlG2dxJlgaLbVd2Aqr6+nCbVuXi3emMKJn37KBbDQrzHyhF6eTDrhqUhm4DRBWREvGv29OZ13qzZYjEFf4iX2YtHGlN7pccNBQ9zEvTmX2/qNm8eYzGdk3RgSNL4sutGQNBJ3T9dfJalz8JVxuU52xhS/mT36L5OrYWBVWMNrXEunJm29ODYBU6ZMuDuPGPHqDlgvXInLakvwf4r6wHm03RsVcMMF5xjmc6GmIa98PJLxiybnolCm6cXKC5fVM0sXNUrDnIs7q20djOSZp+YJ6W18VsSydYfdJ4tdvZl4zQ5FE5s1b2ae6+PrZuDoQbPKOHfxxI1y2VXzYXfUKPRMHW04tubo0RGt05QVP75mjxaf1TlCbk2pMfkopn/awk/m0uU9CkmSetuqjUn5l56dTfg/oJM6mgI+n/3vYUZCkvkPQVz/3I6cf+teSCOCbikg6r+0PXObME1rq2yVfEozD2Rye2TibPPdbHeJS4ZRru+Ihn26V9oj2b1bJaXD4ZQdRPt/N88oBY5kT2HzJ9D7cK7a69vkIL/ObJTjFDlX0s6nMnaOreeVryzVRNs8azcMdp+pjsS9OLeqe1SvOfnaDZdMZ8aH+rTZTb67X9crlBaBAAARDolABEQYiCnfpOGm84REF+qOQvtiUPwXJdLuuhcjT6FVLe6GsgCp6epwmV9+hharc5GyyqDTlg5HKqr23KsuQNQtMq7Win3IOvSMJekL2R87DK0RwPp8FpS5FE8gzZDxBV0lIZQkjowCsWTFIb3p2SgwYHL69peeH0Qrio2RihycNlX5vWien6qyoKCjaNWZo/MpEO3LyD7LJ8RPisKKjLFO/JtqcHwXao4GPpvyEDRhm+jP8GZqhIxOBXusbVa4pGu7YFr6nolXhpr+uioPGadVGbjNelkq+n5SLZWKI5ng18s351lGcCT94zT8uZiTPSJzz98dU1WhDLATTk/croW9RyEabfL3NmhZ9WErEurdAh4xX2fHbR+nkB2qAhDHv63+YdC5TB161yGT9k5ZcpFX+SfAbzLNn+pP97+6tcRwy5KH2lO+WW/bfNKj3uVBTkD3jtEa+Ouj4I1lq2PrjVpMnHWuYXukP6S4mvtUxz98ZC1uhWR99tPJN52nFiL4iPqw2UzbPMv7HPM8nFV7Ab8Zp/ltyuY0i/VXnoqN2t0eJn9ezm1BdcZeW3J/aYrwTrDFl7rvxZQfRhQH+rA8d7vbZvp4djEAABEKgBAYiCEAUru+FQiILytVv+Qtlx63FIDLTitUrkg0R1UbDoYci87n7A1LMc88QjLQyqV4vN2Upu28v7yg0OzPzGQo5+8HU8QOd4WfvUvPgwS4EgyHYcD6fBacuHPc+DqV229DhYVGnRwh7NM5qx+eQqbRgzyIjoUovWTi6Ya8a96wDlv4jEAMSgTj2w5/B18coLHl0L/Ip2yiZiGVB3noR1/XVXFIzEEU+a6WmHP6XXXDsi/GYTBWU9mHWr/dl3PitiyA8bxOtMmb2u7qtY9Jp7uk1SFOmqKGj98OMrg33eKUq5fKLUOXlvcffHbTmjJ2Ejk5CvAEbrh14VfUJXZwqaM/psPt5j+4vxMvNif+2o/vqzbat5a/ZjBFFU0f6CxTmRptzt1N+D05X3m4D7h/T/bHuSOa+yL32luF3LevGVO4xj7Os6rH5OcJ1TJeQfFtIlFLZOZtfTTQPqD26l7VbyD7lXKlu8bS/RtHhGmDxmKt3tx6fSH5waqs3J+GJfl68c70bZPIs0jd1ofVUtrI7evZS/zqWLW+l216LFvfpHEulHefvGeshGIcSBK3/isrlb3N+a4T0zJTOB1IkO7Kuo2IIACIBAjQhAFIQoWNkdh0IU5FLyr8m3T0aDT2ehT8/T5J3ql0p5o6+HKBh/DGIyYOF8/nV2hhbT1w1lWdyDUP01yJIPrclDMw9g9IOvfth3cnadjB5ax/O/EqriOR5OK6Wt7Lq28uEzYFAXm1imGTWYaE7TklzjyJUGrdKhnYp7CDsxqOvWoMHK19pDY+mAJxI1j69Zr8US0dU2tTZWafHeCf0aZnOGlkzlx7LsPtT1NwBR0J2l+KzwtbyBjO/a7HHZ9kLqNi8zZQcrBbYcl2U9+MrkO+8WMeIZ2t5ZpPw67J26T5aiSDdFQWm3sWOK5lwiPesArbXo65h6duN2OnDSAco6Je37hBMrSvHh6QWa2hXPoHQFZuFw953qIweiT1AChfDdjvN0YlbMruf1whw/bkTcNmjV+AK776vC2ZK0Ti3SAfHhi/iDVkvur8Fz9G6UK8mG9He3/4r8dpJuR/cPkWZPdoWvhNw/Oil3Tr41c90fus5JE+zrE7tmi5dQ4Bm2n53Wb1FI/iFllYmS9dVvnq17Kr65tU8t0JRY27l595L1cTfDkHg2Uvf5wG3pPJvpmkctWjk4QRMHV/IFQY7k4lbWD+S6ofzBncPLtNZqZTjFfa78qrBjyQCzIO782WGqHLvKX8Ue4oIACIDAEBCAKAhRsLKbDo0oWKqkjsG8fFAIEIjkQNE3kHafdwt3pbJvBJZlcdvuPK/xwy0POose7I0sVTlwPJz2LO2SdR4VS84wGFJRUPMMEemkf+mBXpkqLpdenmUx4FXiSF7womuy/pXQW2ILUbAIsHld9kPdFAWlf009Xqxay/D2DCEzx/FRNt+uUL085/B7Rz9ZNgeyXKPRlzzzLax+aTT9MaFjITI/CYiCRXwKrwtfCRGduuBHMku6bel7heucjNPxvuy/Q8pqJ+T88rcl6MlX++34yXG58pWsH0+alU67uJX1AxG+eEa96yNTOSVw5S8neOlLvbZfOkOIAAIgAAK9JwBREKJgZS+DKOhGKAdUhbMQevoxECnauEVBdwnKnS334FvOthFaPGyqgWfP0pYPhwFCcJxPyTv54ItrZlK/Xh824IUddDxTsDG9uWYKSoG3hBioxP5hFgWL+6wwXyoTSvaZ3RQFpV3/TEH+SMwaLR+ZEesgDnCmYBlwckkBJYY7+slSJjmwPVPw2Aqt2csgOGdYhs8ULJ2nbpQrSVTfNwJ+/Ogk3Y7uH6WJlIxQUnTqpNw5OdLMh0AUJKK1x8y1+FTfHm1dS9E4yu4qsyNYcqpk/fgNdX5F+q0SU8v6QWam4BKtbmCmYOeVgpggAAIg0FsCEAUhClb2MIiCboTGQLSUoNBt4U6KVN22rcte7sFXxyu953g47Vna8uE4WBQkCllE3xhcRP6Rt1akpCQGDaX8imc4BNZ/R2sKNmj0YPGKiLIkal/XX8DgXEVybquwKcHHmbbrpGx7ehDsChl0TvpjD+pe1kPWP60ZMpn0A30rp6Cyz+ymKEg9XlNQ5rs0txL9ih+d9PukHhz9pD++70pv1xT0pZp7vivlilPo1N/Vj1G5+eSLVdqrEmMKEykbQPpKUZs2rweXOydLmrnuD13nckyEX5L8q/DcWKJDe8dpW/LRpObN/BGhBVo1lxn05kuXz+RZ2FdUybM3NwEXXNxKt7tWZ2sKfmiOCr4vXK1dhfS3svyZ+1xBHYbYD6gCBAEBEACBfhOAKAhRsLLPQRR0I+x8oFh9cG3mSAoT3batU9IPvvphX1/t4p7j4bRnacuHw5IPe+2n58QHVAoeJLdO0IGnAkcYxqygAruZB9oS9V/y68MTDwSsVeRxA11/EAU9iOLT0h8zdVvkC8V1L+uhcMCaSb/Yfm7ZyPUKWRf7rh5+fbjzvr5BIa/WFXEzPj6khH9HP1lsxxGi1ZuvDztSCjvVrXL1++vDmfZS0F57JghBFAxztO6F6rhf7ZkPFJRN3mdUHjpqd334+nDZdhXyHCfL3wv7BfhxGQRAAAQGQQCiIETByn63OUVBBxb5oBDwYNH5QLH64NrMfRcH1qZh40g/+PZYFDRSjQ96lnbJOs9mrU0bx+fpwN4JGrt1m160v9GgkR1jNLF3huYeX6XW1WxM/5nOB3XBMwXTxOP8H7prMpP/xtZRGts1RTOHF2k1/ahNGrHUjq4/iIK54KQ/lh2sKLEoJwFZD4MQBbNZ637f1Xp6keb2TdHEzlH9gRxm2dxGYzsnafqBeVpeL153UOa1876+W6KgzE2y39Eg3mEnOeXl1hih0Z0TNLVvjhafDv1hw59O4ZUulqtTfw+eMVelvSoxphBI2QCd3z+Cy10yS7oeuvzsIPn3jGdxYXX5CoRgu08fYJ4zparQ7trryzT/wDRN7hxLZ1tG95eoz52gqXvnaelUib5D1qvNrOg44Nm90gzfEPsZuDgBAiAAAoMnAFEQomBlL7xhRMHKpGAABEAABEAABEAABEAABEAABEAABEAABOpBAKIgRMHKnghRsDJCGAABEAABEAABEAABEAABEAABEAABEACBvhKAKAhRsLLDQRSsjBAGQAAEQAAEQAAEQAAEQAAEQAAEQAAEQKCvBCAKQhSs7HAQBSsjhAEQAAEQAAEQAAEQAAEQAAEQAAEQAAEQ6CsBiIIQBSs7HETByghhAARAAARAAARAAARAAARAAARAAARAAAT6SgCiIETByg4HUbAyQhgAARAAARAAARAAARAAARAAARAAARAAgb4SgCgIUbCyw0EUrIwQBkAABEAABEAABEAABEAABEAABEAABECgrwQgCkIUrOxwEAUrI4QBEAABEAABEAABEAABEAABEAABEA<KEY>ZEAGZEAGZEAGZEAGZEAGZEAGZGCjZEApqBQcad/5Rgmw8/A/pjIgAzIgAzIgAzIgAzIgAzIgAzIgAzKw9gwoBZWCSkEZkAEZkAEZkAEZkAEZkAEZkAEZkAEZkIEtlgGl4Bb7hWvO196cM2MmAzIgAzIgAzIgAzIgAzIgAzIgAzKw2TKgFFQK+i8BMiADMiADMiADMiADMiADMiADMiADMiADWywDSsEt9gvfbK22z+O/1MiADMiADMiADMiADMiADMiADMiADMjA2jOgFFQK+i8BMiADMiADMiADMiADMiADMiADMiADMiADWywDSsEt9gvXnK+9OWfGTAZkQAZkQAZkQAZkQAZkQAZkQAZkYLNlQCmoFPRfAmRABmRABmRABmRABmRABmRABmRABmRABrZYBv4fJwdyTAc39w0AAAAASUVORK5CYII=\" data-filename=\"Image Pasted 2021-21-01 at 14.01.30.png\" style=\"width: 1285px;\"></p>',51,'2021-02-01 13:09:31','일반'),(92,175,'근로계약서를 꼭 작성해야하나요?','사장님이 근로계약서를 작성안해도된다는데 작성안해도 되나요?',38,'2021-02-01 14:14:03','근로/노동'),(122,176,'이렇게 계약서를 작성하는게 맞나요??','<p>계약서작성법을 모르겠어요</p>',18,'2021-02-03 12:40:29','부동산'),(124,177,'부동산 사기를 당한것같아요 도와주세요','<p>bbbbbbbbbbbbbbb<img src=\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAASABIAAD/4QBYRXhpZgAATU0AKgAAAAgAAgESAAMAAAABAAEAAIdpAAQAAAABAAAAJgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAABSKADAAQAAAABAAABSAAAAAD/7QA4UGhvdG9zaG9wIDMuMAA4QklNBAQAAAAAAAA4QklNBCUAAAAAABDUHYzZjwCyBOmACZjs+EJ+/8AAEQgBSAFIAwEiAAIRAQMRAf/EAB8AAAEFAQE<KEY>//<KEY>NERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/<KEY>//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/<KEY>\" data-filename=\"catzzal2.jpg\" style=\"width: 328px;\"></p>',14,'2021-02-03 12:43:19','부동산'),(125,1,'[공지사항]\'법대로합시다\' 이용규칙','<p>욕설, 비방 금지<br></p>',14,'2021-02-03 12:45:59','공지사항'),(127,178,'음주운전을 했습니다...','<p>밤늦게 술을 마시고 귀가하는데 거리가 얼마되지않아서 운전을했습니다...<br></p>',4,'2021-02-03 12:47:51','교통/운전'),(128,174,'교통사고를 이럴때 합의를 해야하나요??','<p>화이트러시안<br></p>',7,'2021-02-03 12:50:12','교통/운전'); /*!40000 ALTER TABLE `board` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `comment` -- DROP TABLE IF EXISTS `comment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `comment` ( `comment_id` int NOT NULL AUTO_INCREMENT COMMENT '댓글번호', `board_id` int NOT NULL COMMENT '글번호', `uuid` int NOT NULL COMMENT '작성자uuid', `content` varchar(200) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT '내용', PRIMARY KEY (`comment_id`), KEY `FK_comment_board_id_board_board_id` (`board_id`), KEY `FK_comment_uuid_member_uuid` (`uuid`), CONSTRAINT `FK_comment_board_id_board_board_id` FOREIGN KEY (`board_id`) REFERENCES `board` (`board_id`) ON DELETE RESTRICT ON UPDATE RESTRICT, CONSTRAINT `FK_comment_uuid_member_uuid` FOREIGN KEY (`uuid`) REFERENCES `member` (`uuid`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='댓글'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `comment` -- LOCK TABLES `comment` WRITE; /*!40000 ALTER TABLE `comment` DISABLE KEYS */; INSERT INTO `comment` VALUES (1,124,167,'안녕하세요. 박형식 변호사입니다. 올려주신 고양이가 상당히 귀엽네요 ^^*... 사기의 죄가 성립하기 위해서는 범인의 기망행위가 있어야 하고, 이로 인해 상대방이 착오에 빠져 재산 처분행위를 하여야 하며, 범인 또는 제3자가 이익을 얻어야 사기죄 성립요건을 충족한다고 할 수 있습니다.'); /*!40000 ALTER TABLE `comment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `controversy` -- DROP TABLE IF EXISTS `controversy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `controversy` ( `controversy_id` int NOT NULL AUTO_INCREMENT COMMENT '글번호', `uuid` int NOT NULL COMMENT '작성자uuid', `start_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '시작날짜', `end_date` timestamp NOT NULL COMMENT '종료날짜', `title` varchar(200) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT '제목', `content` longtext CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT '내용', `agree` int DEFAULT '0' COMMENT '찬성 count', `opposition` int DEFAULT '0' COMMENT '반대 count', PRIMARY KEY (`controversy_id`), KEY `FK_controversy_uuid_member_uuid` (`uuid`), CONSTRAINT `FK_controversy_uuid_member_uuid` FOREIGN KEY (`uuid`) REFERENCES `member` (`uuid`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='찬반논쟁'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `controversy` -- LOCK TABLES `controversy` WRITE; /*!40000 ALTER TABLE `controversy` DISABLE KEYS */; INSERT INTO `controversy` VALUES (1,1,'2021-02-03 02:20:43','2021-03-01 02:00:46','코로나19 포상금 제도','코로나19 방역수칙 위반 사례 신고시, 포상금을 지급하는 제도가 생기며 포상금을 목적으로한 ‘코파라치’가 등장했습니다. 방역 사각지대 해소 vs 포상금 피해 사례 발생, 어떻게 생각하세요?',60,57),(2,1,'2021-02-03 12:37:25','2021-02-24 12:34:32','이익공유제','코로나19 이익공유제는 코로나로 이익을 얻은 업종·계층이 피해가 큰 업종·계층과 이익을 나누는 제도입니다. 사회적 고통을 분담하자는 의견과 기업경영에 대한 지나친 간섭이라는 의견이 있는데요, 어떻게 생각하세요?',35,73),(3,1,'2021-02-08 05:02:40','2021-02-20 02:00:46','공매도 금지','꿈에 그리던 코스피 3000시대지만 오는 3월, 공매도 재개 조치 종료를 앞두고 논란입니다. \"개인 투자자 피해발생\" vs \"주식시장 과열 방지 위해 필요\" 어떻게 생각하세요?',84,13),(4,1,'2021-02-09 05:20:27','2021-02-10 02:00:46','코로나19 포상금 제도','코로나19 방역수칙 위반 사례 신고시, 포상금을 지급하는 제도가 생기며 포상금을 목적으로한 ‘코파라치’가 등장했습니다. 방역 사각지대 해소 vs 포상금 피해 사례 발생, 어떻게 생각하세요?',30,30),(5,1,'2021-02-09 05:47:55','2021-02-10 02:00:46','자차 광고 승인','자기 소유 차량에 돈을 받고 광고 할 수 있는 안건이 승인 됐습니다. 광고 스티커를 붙이고 평소처럼 주행하면 월 10만 원 가량의 수익을 얻는데요, 여러분이라면 시도 하시겠습니까?',70,20); /*!40000 ALTER TABLE `controversy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dict` -- DROP TABLE IF EXISTS `dict`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `dict` ( `id` int NOT NULL AUTO_INCREMENT COMMENT '단어번호', `word` varchar(100) COLLATE utf8_unicode_ci NOT NULL COMMENT '법률단어', `mean` longtext COLLATE utf8_unicode_ci NOT NULL COMMENT '법률단어의미', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='법률단어리스트'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dict` -- LOCK TABLES `dict` WRITE; /*!40000 ALTER TABLE `dict` DISABLE KEYS */; INSERT INTO `dict` VALUES (1,'공연성','공연성이란 불특정 다수가 인식 가능한 상태를 말합니다.\\n한사람에게 이야기했는데 여러 사람에게 전파될 가능성이 있다면 공연성이 성립합니다.'),(2,'선고','검사의 구형과 피고인의 변호사의 변론내용 등을 종합하여 판사의 재량에 따라 형을 확정지어 판결을 내리는 것을 말한다.\\n쉽게 말하자면, 피고인에 대한 직접적인 형별의 판결로 재판의 효력이 생기게 되는것이다.'),(3,'【피 고 인】','소송을 제기하는 자(원고)의 상대방(피고)으로 본래 소송을 당한 사람을 의미한다.'),(4,'【항 소 인】','제1심 판결에 불복할 때에 하는 신청하는 사람을 의미'),(5,'【상 고 인】','제2심 판결에 불복할 때에 하는 신청하는 사람을 의미'),(8,'공소외인','재판에서 심리할 대상이 되지 않는 사람'),(9,'공소 외 인','재판에서 심리할 대상이 되지 않는 사람'),(11,'상소','상소는 판결, 명령, 결정 등의 법원의 재판에 관하여 특정 기간 안에 불복의 의사를 표시하여 상급법원의 판단을 구하는 법률행위를 의미한다.'),(12,'공소사실','공소장에 기재된 구체적 범죄사실 및 심판의 대상으로 공소장에 범죄의 특별구성요건을\\n적시하여 검사가 심판을 청구하는 범죄사실을 뜻하는 단어이다.'),(13,'파기','상급법원이 하급법원의 재판을 깨뜨리는 것을 말함'),(14,'양형부당','범행의 동기나 결과에 비추어 볼 때 형량이 지나치게 가볍거나 무거움.'),(16,'자유심증주의','증거의 증명력, 즉 사실인정을 위한 증거의 실질적 가치를 법률로 규정하지 아니하고 법관의 자유로운 판단에 맡기는 원칙\\n(헌재 2009. 11. 26. 2008헌바25 결정).'),(17,'기각','수리된 소송을 종료하는 일'),(18,'각하','민사 소송법에서, 소나 상소가 형식적인 요건을 갖추지 못한 경우, \\n부적법한 것으로 하여 내용에 대한 판단 없이 소송을 종료하는 일.'),(19,'항소','제1심 판결에 불복할 때에 하는 신청'),(20,'상고','제2심 판결에 불복할 때에 하는 신청'),(22,'사실오인','형사 재판에서, 판사가 사실을 잘못 인정하는 일. 이것이 판결에 영향을 미칠 것이 분명하면 항소의 이유가 되고, \\n또한 그것이 중대한 일이면 상고의 이유가 된다.'),(23,'원심','현재의 재판보다 한 단계 앞서 받은 재판. 또는 그런 법원.\\n 항소(抗訴)에서는 초심의 재판, 상고(上告)에서는 항소의 재판을 이른다.'),(24,'변론','소송 당사자나 변호인이 법정에서 주장하거나 진술함. 또는 그런 주장이나 진술.'),(25,'사실인정','법원이 사실의 존재 여부를 판단하는 일. 재판의 기초가 된다.'),(26,'가납명령','재판이 확정된 후에는 집행할 수 없거나 집행하기에 곤란할 염려가 있다고 인정될 때\\n 직권 또는 검사의 청구에 의하여 피고인에게 벌금이나 과료 또는 추징에 상당한 금액의 가납을 명하는 일. \\n이것은 형의 선고와 동시에 판결로 선고하여야 한다.'),(27,'기소','법률 검사가 특정한 형사 사건에 대하여 법원에 심판을 요구하는 일.'),(28,'공판','기소된 형사 사건을 법원이 심리하는 일. 또는 그런 절차. \\n검사, 피고인, 변호인 들이 입회하여 증거를 제출하면 법원이 유죄ㆍ무죄를 판단하는 형사 소송의 중심 절차이다. \\n공개 심리주의, 구두주의, 변론주의의 원칙에 의하여 진행된다.'),(29,'청구범위','특허 출원이 허락된 경우에, 법적으로 보호받을 수 있는 권리에 해당하는 발명의 기술적 특징. 이는 독점권을 설정하여 주는 핵심 사항이다.'),(30,'패소자','소송에서 진 사람.'); /*!40000 ALTER TABLE `dict` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `easylaw` -- DROP TABLE IF EXISTS `easylaw`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `easylaw` ( `easylaw_id` int NOT NULL AUTO_INCREMENT COMMENT '생활법령번호', `keyword` varchar(200) COLLATE utf8_unicode_ci NOT NULL COMMENT '키워드', `content` text COLLATE utf8_unicode_ci COMMENT '내용', PRIMARY KEY (`easylaw_id`), UNIQUE KEY `UC_keyword` (`keyword`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='생활법령'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `easylaw` -- LOCK TABLES `easylaw` WRITE; /*!40000 ALTER TABLE `easylaw` DISABLE KEYS */; /*!40000 ALTER TABLE `easylaw` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lawyer` -- DROP TABLE IF EXISTS `lawyer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `lawyer` ( `uuid` int NOT NULL COMMENT 'uuid', `career` longtext CHARACTER SET utf8 COLLATE utf8_unicode_ci COMMENT '경력', `introduction` longtext CHARACTER SET utf8 COLLATE utf8_unicode_ci COMMENT '자기소개', `address` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL COMMENT '주소', `dept` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL COMMENT '소속', `chck` char(1) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT 'N' COMMENT '변호사합격확인', `bailiwick` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT '전문분야', PRIMARY KEY (`uuid`), CONSTRAINT `FK_lawyer_uuid_member_uuid` FOREIGN KEY (`uuid`) REFERENCES `member` (`uuid`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='변호사'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lawyer` -- LOCK TABLES `lawyer` WRITE; /*!40000 ALTER TABLE `lawyer` DISABLE KEYS */; INSERT INTO `lawyer` VALUES (2,'(現) 경북 구미시청 자문변호사\n(現) 대구 지방고등법원 국선 변호인','의뢰인의 든든한 파트너로 최선의 결과를 보여드리겠습니다! 내 일 처럼 해결 방안을 찾기 위해 노력하고 있습니다. 젊고 건강한 정신으로 의뢰인의 고충을 해결하고자 겸손하지만 냉철한 이성으로 능동적이고 적극적으로 도와 드리겠습니다.','경북 구미시 3공단3로 302','김앤장','Y','이혼, 상속'),(166,'1988 제27회 사법시험 합격\n1994 변호사(대한민국)\n2007 SH법무법인 설립','상속과 이혼을 비롯한 제반 가사 분야와 재산관리 분야의 사건을 집중적으로 처리하여 왔습니다.','경상남도 진주시 이현동 13-36','SH법무법인','N','상속,이혼, 기타 가사사건 및 신탁, 재산관리 업무'),(167,'고려대학교 법학과 학사','주사위를 던질 기회가 있다면 주지 말고 던져라. 던지는 순간 최소한 한 칸은 전진한다.','부산광역시 북구 금곡동 효열로 111','몬스터법무법인','Y','지식재산권 소송, 영업비밀 및 기술유출 분쟁'),(168,'고려대학교 대학원 졸','사연이니, 사정이니 그 따위 건 집어치우고 사건만 보겠습니다','부산광역시 북구 금곡동 효열로 111','몬스터법무법인','Y','금융기관 인수합병 및 구조조정'),(169,'이화여자대학교 법학과 학사\r\n상속관련소송 다수 승소','여러분을 제 가족처럼 여기겠습니다','부산광역시 북구 금곡동 효열로 111','몬스터법무법인','Y','가정폭력범죄'),(170,'(現) 부산 국선변호사 ','여러분의 돈을 제 돈처럼 여기겠습니다','서울특별시 강남구 선릉로 428','멀티법무법인','Y','일반금융, 자본시장 및 기업금융'),(171,'1998년 제40회 사법시험 합격 \r\n(現) 법무법인 숭인 대표 변호사.','사이버욕설, 사이버폭력','경상남도 창원시 마산합포구 산호동 36-5','명신로펌','N','사이버욕설, 사이버폭력'),(172,'(現) 육군 법무관 \r\n(現) 대구 지방고등법원 국선 변호인','매장 간판 관련 소송 도와드립니다','대구광역시 북구 산격1동 846-33','유명성장법무법인','Y','상표권분쟁, 브랜드도용, 가전제품 관련 사기'),(173,'송파세무서 이의신청심의위원','당신의 소중한 돈을 지켜드립니다','울산광역시 북구 정자동 181-1번지','송무법무법인','N','강력범죄, 계획적범죄, 조직적범죄'),(180,NULL,NULL,'?','?','N',NULL); /*!40000 ALTER TABLE `lawyer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `matching` -- DROP TABLE IF EXISTS `matching`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `matching` ( `matching_id` int NOT NULL AUTO_INCREMENT COMMENT '자문번호', `uuid` int NOT NULL COMMENT '신청자uuid', `lawyer_uuid` int NOT NULL COMMENT '변호사uuid', `create_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '작성일', `content` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT '내용', `state` varchar(8) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL COMMENT '진행상태', `reservation_date` timestamp NULL DEFAULT NULL COMMENT '예약시간', `remarks` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL COMMENT '비고', `title` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT '제목', `category` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL COMMENT '카테고리', PRIMARY KEY (`matching_id`), KEY `FK_matching_uuid_member_uuid` (`uuid`), KEY `FK_matching_lawyer_uuid_member_uuid` (`lawyer_uuid`), CONSTRAINT `FK_matching_lawyer_uuid_member_uuid` FOREIGN KEY (`lawyer_uuid`) REFERENCES `member` (`uuid`) ON DELETE RESTRICT ON UPDATE RESTRICT, CONSTRAINT `FK_matching_uuid_member_uuid` FOREIGN KEY (`uuid`) REFERENCES `member` (`uuid`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE=InnoDB AUTO_INCREMENT=155 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='변호사자문'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `matching` -- LOCK TABLES `matching` WRITE; /*!40000 ALTER TABLE `matching` DISABLE KEYS */; INSERT INTO `matching` VALUES (133,174,171,'2021-02-17 06:06:57','<p><span style=\"color: rgb(51, 51, 51); font-family: &quot;Noto Sans Korean&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 16px;\">실명과 동일한 닉네임을 사용하고 있는 유저입니다.</span><br style=\"color: rgb(51, 51, 51); font-family: &quot;Noto Sans Korean&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 16px;\"><span style=\"color: rgb(51, 51, 51); font-family: &quot;Noto Sans Korean&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 16px;\">본인의 실명을 거론하며 부모님을 들먹이는 욕설을 끊임없이 뱉어내던 유저가 있어 질문을 올립니다. 특정성이라고는 실명 닉네임밖에 없는데 고소가 가능한 부분인지 여쭙고 싶습니다. 욕설은 모두 패드립이었고, 채팅로그를 따겠다는 경고 후에도 욕설은 계속되었습니다.</span><br></p>','신청','2021-02-22 06:00:00',NULL,'게임 욕설로 인한 고소','정보통신/기술'),(134,175,169,'2021-02-17 06:09:19','<p><span style=\"color: rgb(51, 51, 51); font-family: &quot;Noto Sans Korean&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 16px;\">결혼한 지 3년 된 주부입니다. </span></p><p><span style=\"color: rgb(51, 51, 51); font-family: &quot;Noto Sans Korean&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 16px;\">남편이 결혼 초기부터 화가 나면 물건을 던지는 행동을 보이더니 최근에는 저의 신체에 직접 폭력을 행사하고 있습니다. 너무나 괴로운데... 가정폭력에 대하여 어떻게 대처해야 하는지 궁금합니다.</span><br></p>','신청','2021-02-23 04:30:00',NULL,'갈수록 남편의 폭력이 심해지는데... 가정폭력 피해는 어떻게 대처하나요?','가정'),(136,176,172,'2021-02-17 06:17:01','<p>사용 상표가 대상상표와 외관, 호칭, 관념 모두 유사하지 않다고 하더라도 전체적인 구성, 아이디어, 모티브 등이 동일 유사하여 대상상표가 쉽게 연상된다는 등의 점이 있으면 어떻게 되는 건가요?<br></p>','신청','2021-02-26 08:00:00',NULL,'상표의 유사성','정보통신/기술'),(137,176,2,'2021-02-17 06:18:54','<p><span style=\"color: rgb(51, 51, 51); font-family: &quot;Noto Sans Korean&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px;\">상속개시 후 발생한 상속재산의 과실도 상속재산으로서 분할 대상에 해당하나요?</span><br></p>','신청','2021-02-19 05:10:00',NULL,'상속개시 후 발생한 상속재산','가정'),(138,174,167,'2021-02-17 06:20:40','<p style=\"margin-bottom: 0px; font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">안녕하세요 저는 해외구매대행업을 하고 있습니다.</p><p style=\"margin-bottom: 0px; font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">레플 아이템을 올렸는데 그것이 판매가 되었습니다.</p><p style=\"margin-bottom: 0px; font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">하지만 통관시 지식재산권침해에 걸려 폐기처분을 해야한다고 통보받게되었습니다.</p><p style=\"margin-bottom: 0px; font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">그럼 저는 아이템을 산 고객에게 환불을 해줘야하는건지 안해줘도 되는건지 궁금합니다.</p><p style=\"margin-bottom: 0px; font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">고객도 레플아이템이란 사실을 알고 구매를 하였습니다.</p>','접수','2021-02-17 17:00:00','','해외구매대행시 지식재산권침해 아이템에 대한 환불 여부','정보통신/기술'),(139,174,173,'2021-02-17 06:22:06','<p><span style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">예전에 학교폭력 가해자였습니다. 하지만 그친구도 저한테 상처를 주어 지금도 많이 우울하고 하루하루 너무 버티기 힘들정도 입니다 </span></p><p><span style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">그친구도 저랑 싸울때는 똑같이 화냈는데 말이죠 학폭 가해자가 된 이유는 제가 평소에 쓰던 말투때문이래요 학폭위는 안열렸고 사과하고 끝냈습니다</span></p><p><span style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">그친구도 학교폭력실태조사를 하잖아요 그친구가 2019년 2학기때부터 학교폭력을 당한적이 있습니까? 라고 할때 예 라고 대답하면 저는 어떻게 되는건가요?</span><br></p>','신청','2021-02-16 15:01:00',NULL,'학교폭력','가정'),(140,174,168,'2021-02-17 06:23:19','<p><span style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">안녕하세요. 저는 30여명 남짓 다니는 여행사에 재직중입니다.</span><br style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\"><span style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">현재 회사는 코로나 상황으로 휴업상태이며, 20여명의 직원들은 정부지원으로 무급 휴직중이고, 8명정도의 인원이 70% 급여로 주 3회 출근을 하고 있습니다.</span><br style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\"><br style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\"><span style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">조만간 구조조정을 통하여 직원 감축을 한다고 하는데 몇가지 궁금한 사항이 있습니다.</span><br style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\"><br style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\"><span style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">첫째, 구조조정 대상자를 선정해서 면담 후 권고사직으로 진행이 된다고 하는데 면담에서 권고사직을 거부하면 어떻게 되나요?</span><br style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\"><br style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\"><span style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">둘째, 구조조정 대상자가 되지 못했지만 앞으로의 불확실한 상황 때문에 회사를 그만 두고 싶으면 구조조정 대상자에 포함 시켜달라고 요구를 할 슈 있는지 .. 아니면 구조조정 될때 자진 퇴사를 하면 실업급여 대상이 안되는지 궁금합니다.</span><br></p>','접수','2021-02-16 05:15:00','','구조조정 대상자에 대한 질문입니다','근로/노동'),(141,178,2,'2021-02-17 06:24:17','<p><span style=\"color: rgb(51, 51, 51); font-family: &quot;Noto Sans Korean&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px;\">협의이혼의사 철회신고서 접수 후 제출된 협의이혼신고서가 수리된 경우 이혼은 유효한가요?</span><br></p>','종료','2021-02-17 16:10:00','특이사항 없음','협의이혼의사 철회신고서 접수 후 제출된 협의이혼신고서가 수리된 경우의 이혼','가정'),(142,177,166,'2021-02-17 06:26:41','<p><span style=\"color: rgb(51, 51, 51); font-family: &quot;Noto Sans Korean&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px;\">상속인의 존부가 불분명한 경우에 있어 상속재산관리인의 선임 청구인에게 상속재산관리인의 보수의 예납을 명할 수 있나요?</span><br></p>','','2021-02-16 15:29:00','','상속인의 존부가 불분명한 경우','가정'),(143,176,2,'2021-02-17 06:27:41','<p style=\"margin-bottom: 0px; font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">5년전&nbsp; 아이엄마와 협의이혼했습니다.</p><p style=\"margin-bottom: 0px; font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\"><br></p><p style=\"margin-bottom: 0px; font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">아이는 초등생 저학년 고학년 2명입니다</p><p style=\"margin-bottom: 0px; font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\"><br></p><p style=\"margin-bottom: 0px; font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">당시 이혼할때&nbsp; 제가 조그만한 회사에서&nbsp;최저임금만 받는 형편이였고 재산분할 이런거없이 제가 몸만나와서 방얻으며 월세내야하고 생활해야했기에&nbsp;&nbsp;협의이혼 과정에서&nbsp; 양육비는 60만원 주기로 합의하였습니다</p><p style=\"margin-bottom: 0px; font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\"><br></p><p style=\"margin-bottom: 0px; font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">그래서 처음에 60만원씩 꼬박꼬박주다가 제가 월급이&nbsp; 조금 오르게되고&nbsp; 반대로 애엄마는 아웃소싱통해 비정규직으로 2년만다 회사를 옮기며 생활하기에 그게 안스러워 &nbsp;양육비 이외에 계절마다 아이들 용돈이며 외식비 옷이나 통신비&nbsp; 부담하고 양육비도 70만원으로&nbsp; 알아서 더주었습니다.&nbsp;&nbsp; 정말 열심히 일해서 나한테 쓸꺼 안써가며&nbsp;그후엔 또 알아서 &nbsp;80만원씩 계속 보내주었고요.&nbsp;&nbsp;&nbsp;그외 애엄마집에 애들이 필요한&nbsp;TV &nbsp;컴퓨터나 노트북같은&nbsp; 목돈들어가는 용품도 제가 다사주었고요&nbsp;&nbsp;요 근래 몇달은 90만원으로 주고있습니다&nbsp;&nbsp; 하지만&nbsp; 코로나사태및 회사경영악화로 월급감소및 퇴사를&nbsp; 해야될 상황이 왔습니다.</p><p style=\"margin-bottom: 0px; font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\"><br></p><p style=\"margin-bottom: 0px; font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">그래서&nbsp; 양육비를 처음 합의한대로 다시 60만원씩만 보내준다고하니&nbsp;&nbsp; 애엄마쪽에서는 안된다고하며 양육비 더달라는소송도 고려한다는 입장입니다.</p><p style=\"margin-bottom: 0px; font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\"><br></p><p style=\"margin-bottom: 0px; font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">현재 저는 3월에 퇴사예정이고요 퇴사하면 알바나 재취업을&nbsp; 하게되면 최저임금으로 적용받아 일을할게 될것같습니다&nbsp;&nbsp; 반대로 애엄마는 이혼후보다 지금이&nbsp; 사정이 더 좋아졌고 직장도 정규직으로 전화되어 안정적으로 일을하고있습니다</p>','신청','2021-02-16 20:25:00','','협의이혼후 양육비 문제로 질문드립니다','가정'),(144,177,172,'2021-02-17 06:29:11','<p><span style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">현재 군 복무 중에 있는 사람입니다.</span><br style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\"><span style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">담당간부와 선임들의 부조리와 괴롭힘이 장난과 도를 넘어 형사소송을 결심하게 되었습니다.</span><br style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\"><span style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">군대 내에서도 자체적으로 부조리와 괴롭힘을 처벌하는 방법이 있습니다만, 제대를 기다렸다가 사회의 법으로 이 일을 다뤘으면 좋겠기에 이렇게 글을 올립니다.</span></p><p><span style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">1. 형사소송을 진행하게 되면 2020년 4월일 것입니다.</span><br style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\"><span style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">2. 군대 내에서는 사진촬영, 녹음이 위법이라서</span><br style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\"><span style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\">제가 할 수 있는게 육하원칙으로 당시 상황을 구체적으로 기록해놓는 방법 밖에 없는데 혹시 따로 준비 할 수 있는 게 있나 궁금합니다.</span><span style=\"font-family: &quot;Helvetica Neue&quot;, &quot;Apple SD Gothic Neo&quot;, 나눔고딕, NanumGothic, &quot;맑은 고딕&quot;, &quot;Malgun Gothic&quot;, 돋움, Dotum, sans-serif; font-size: 16px;\"><br></span><br></p>','신청','2021-02-20 00:52:00',NULL,'군대 안에서 형사소송을 준비하려면','가정'),(145,178,172,'2021-02-17 06:35:31','<p>약 한달 전 쯤에 새로운 치킨 메뉴를 만들어서 가게에 내놓았습니다.&nbsp;</p><p>치킨에다가 위에 달걀 지단을 부쳐서 얇게 썰어 고명을 올린 메뉴라 \"황금지단\"이라고 올려놓았는데,</p><p>최근 온라인상에서 불순한 게시글로 해당 메뉴를 욕하는 어처구니 없는 일이 일어났습니다.</p><p><br></p><p>달걀을 얇게 썰어서 치킨 위에 올린게 마치 자식을 어미 위에 올린 것과 다를 바가 없지 않느냐면서 폄하하였습니다.</p><p>제 메뉴가 그런 형태로 받아들여지는 건 아무래도 좋지만, 타 매장에서 불순한 목적으로 올린 것 같아 고소해보고자 합니다.</p><p>명예훼손으로 고소가 가능할지 검토 부탁드립니다.</p>','신청','2021-02-19 17:40:00',NULL,'명예훼손으로 고소할 수 있는지 상담받고싶습니다.','금융'),(146,177,170,'2021-02-17 06:51:28','<p><span style=\"color: rgb(51, 51, 51); font-family: &quot;Noto Sans Korean&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px;\">금융기관이 본인확인절차 등을 제대로 거치지 않아 모용계좌가 개설되었습니다. 이 경우 금융기관에 모용계좌를 통하여 입·출금된 금원에 대하여 손해배상책임이 인정되나요?</span><br></p>','신청','2021-02-25 04:30:00',NULL,'금융기관이 본인확인절차 등을 제대로 거치지 않아 모용계좌가 개설된 경우 금융기관은 손해배상책임이 있나요?','금융'),(147,174,170,'2021-02-17 06:57:23','<p><span style=\"color: rgb(51, 51, 51); font-family: &quot;Noto Sans Korean&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 15px;\">금융기관 임직원이 임의로 예금주의 예금계좌에서 5천만원을 인출하였습니다. 업무상배임죄가 성립하나요?</span><br></p>','신청','2021-02-26 06:15:00',NULL,'금융기관 임직원이 임의로 예금주의 예금계좌 인출','금융'),(148,178,173,'2021-02-17 07:20:20','<p><span style=\"color: rgb(51, 51, 51); font-family: &quot;Noto Sans Korean&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 16px;\">경제적 상황이 어려워 보험금을 타려고 고의적으로 교통사고를 유발하고, 보험회사로부터 보험금을 지급받았습니다. 사기죄에 해당하나요?</span><br></p>','신청','2021-03-04 18:00:00',NULL,'고의적으로 교통사고를 유발하여 보험금을 지급받은 경우 사기죄의 성부','교통/운전'),(149,178,169,'2021-02-17 07:32:45','<p><span style=\"color: rgb(51, 51, 51); font-family: &quot;Noto Sans Korean&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 16px;\">시어머니가 온갖 모욕에 폭행으로 저를 정말 심하게 괴롭히십니다. 남편은 알면서도 저보고 참으라는데 도저히 어머님을 모실 수 없다고 했더니 저보고 나쁘다고 하네요. 저는 정말 정신병이 걸릴 지경인데 이런 것도 이혼 사유가 될 수 있나요?</span><br></p>','신청','2021-02-19 02:00:00',NULL,'시어머니의 심한 모욕과 폭행을 이유로 이혼을 할 수 있나요?','가정'),(150,175,166,'2021-02-17 07:34:41','<p><span style=\"color: rgb(51, 51, 51); font-family: &quot;Noto Sans Korean&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 16px;\">아내가 다른 남자를 만나는것을 저에게 들켰고,, 그 날 부로 이혼을 준비중입니다. 둘 사이에는 6살짜리 아들이 하나 있고요.</span><br style=\"color: rgb(51, 51, 51); font-family: &quot;Noto Sans Korean&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 16px;\"><span style=\"color: rgb(51, 51, 51); font-family: &quot;Noto Sans Korean&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 16px;\">금전적인 것이나 물품 분배 같은 것들은 상당수 합의를 한 상황인데, 중요한 양육권을 정하지 못했습니다. 서로 자신이 데려가려 하고 있는 상황입니다.</span><br style=\"color: rgb(51, 51, 51); font-family: &quot;Noto Sans Korean&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 16px;\"><br style=\"color: rgb(51, 51, 51); font-family: &quot;Noto Sans Korean&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 16px;\"><span style=\"color: rgb(51, 51, 51); font-family: &quot;Noto Sans Korean&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 16px;\">맞벌이 부부이지만 아내는 아르바이트여서 벌이가 좋지는 않습니다. 처가도 형편이 넉넉치 않아 제가 번 돈에서 자주 지원을 해드릴 정도였고요. 다만 아내의 근무 시간이 저보다는 짧아서 아들과 보낸 시간은 더 길고요. 둘 다 일 나가있는 동안에는 장모님이 많이 봐주셨었습니다.</span><br style=\"color: rgb(51, 51, 51); font-family: &quot;Noto Sans Korean&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 16px;\"><br style=\"color: rgb(51, 51, 51); font-family: &quot;Noto Sans Korean&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 16px;\"><span style=\"color: rgb(51, 51, 51); font-family: &quot;Noto Sans Korean&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 16px;\">만약 이 것을 법적 판단에 넘긴다고 할 때 양육권을 가져가는 기준이 어떤 요소에 의해 좌우되는지 궁금하고, 대략적으로 위와 같은 상황에서 제가 양육권을 가질 수 있을 지 궁금합니다.</span><br></p>','신청','2021-02-22 01:30:00',NULL,'아들의 양육권을 얻을 수 있을 지 궁금합니다.','가정'),(151,175,167,'2021-02-17 07:40:12','<p><span style=\"color: rgb(51, 51, 51); font-family: &quot;Noto Sans Korean&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 16px;\">얼마 전 모 기업에서 사업기획을 목적으로 홍보영상물 공모전을 벌였습니다. 저는 공모에 참여하여 당선되었는데 회사에서는 포상 형식으로 보상을 하면서 영상물에 대한 지식 재산권을 이전해달라고 했습니다. 지식 재산권의 귀속을 강요하는 구인자는 처벌될 수 있나요?</span><br></p>','신청','2021-02-18 10:00:00',NULL,'저작물에 대하여 지식재산권의 귀속을 강요','정보통신/기술'),(154,174,167,'2021-02-17 18:12:52','<h3>누가 제가 올린 블로그 포스트를 무단으로 게시하였는데, 이에 대한 법률 자문을 요청합니다.</h3><p><img src=\"/api/data/101\" style=\"width: 1661px;\"><br></p>','예약','2021-02-17 18:30:00','예약시간 변경되었습니다. 확인해주세요.','저작권 침해 관련 자문','정보통신/기술'); /*!40000 ALTER TABLE `matching` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `member` -- DROP TABLE IF EXISTS `member`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `member` ( `uuid` int NOT NULL AUTO_INCREMENT COMMENT 'uuid', `email` varchar(45) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT '이메일', `password` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT '비번', `name` varchar(45) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT '이름', `phone` varchar(45) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL COMMENT '연락처', `role` varchar(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT '역할', `join_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '가입일', `image` varchar(300) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL COMMENT '프로필사진', PRIMARY KEY (`uuid`), UNIQUE KEY `UC_email` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=184 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='사용자'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `member` -- LOCK TABLES `member` WRITE; /*!40000 ALTER TABLE `member` DISABLE KEYS */; INSERT INTO `member` VALUES (1,'<EMAIL>','$2a$10$/P704D1/rheBJFZxlsm1SO1pG2a2UmGmNDA33tVzzTOuOTqGeNiVu','AD이현도','010-0803-3502','ROLE_ADMIN','2021-01-26 02:33:14','54'),(2,'<EMAIL>','$2a$10$LTURGqNZMAOpRdwe13rskuMfftaLNdbPS48nXmOZAQEATALnNYl82','임윤선','010-3234-1661','ROLE_LAWYER','2021-02-16 01:10:01','103'),(166,'<EMAIL>','$2a$10$wiQhMopcr0mLhaQm/jObeuZq4ZsM2AMkzV/e5ODlZYpJoS3TGzGZi','박수현','010-1020-1024','ROLE_LAWYER','2021-02-17 04:50:54','86'),(167,'<EMAIL>','$2a$10$QIyZsF8yGip8mZLNoieR1e4PBYI0LCRVegMN4e.ZXvijBKpXnHqiq','박형식','010-1249-4440','ROLE_LAWYER','2021-02-17 05:00:04','87'),(168,'<EMAIL>.com','$2a$10$fQjchlCGy11unPh76KqlsObzulbgmHyzk34NUj7VpdsWfx57vxyIm','최현석','010-2984-1920','ROLE_LAWYER','2021-02-17 05:04:00','88'),(169,'<EMAIL>','$2a$10$9zUJLJ5WM7PSw/IBksO1buHE3bsQYoLMxmrPHCkzWLk1c3c6yvCdC','강하연','010-4948-2939','ROLE_LAWYER','2021-02-17 05:07:48','89'),(170,'<EMAIL>','$2a$10$V/t5ak5soZt1V2rYd6lDd.QDVR0FMwvuGEh2guqM2kfweNy7vG/oe','나형석','010-2903-2894','ROLE_LAWYER','2021-02-17 05:11:05','91'),(171,'<EMAIL>','$2a$10$arTuiTftctT0Lc.p7loZI..WCVjVA7Le6mTfdy6sKrXLAcMi820Li','강성식','010-2949-0343','ROLE_LAWYER','2021-02-17 05:17:40','92'),(172,'<EMAIL>','$2a$10$GyYTO03jSfgw1lliQfcp4eWMyRKlYIJM20kUArRnFbFv4EgmB3TxC','최성장','010-3487-8782','ROLE_LAWYER','2021-02-17 05:21:36','93'),(173,'<EMAIL>','$2a$10$rLnmEgFQoYS4ZjfnqfWcwOaAgnprOLjq8m2vXpF9DoIpw66U/xX1C','송우석','010-4443-1829','ROLE_LAWYER','2021-02-17 05:27:19','94'),(174,'<EMAIL>','$2a$10$GQWtSvVyTPPQNV3u6YU67ucXamGP9hCOgcUaITyabjpjoRMhxd50q','티노만승','010-1405-1305','ROLE_USER','2021-02-17 05:46:18','95'),(175,'<EMAIL>','$2a$10$j5c7NO5rdv2ds91prYLWqembv2MnscLcF02.6CaS8w.ljVo4IuIiq','지수야그만삐져','010-1040-1023','ROLE_USER','2021-02-17 05:47:02','96'),(176,'<EMAIL>','$2a$10$wlPKTHnSPtgWMza8MKKFw.S5sbU54AfUPAJd70gi7s/pFPFZhBTPu','지구별윤준섭','010-5431-9872','ROLE_USER','2021-02-17 05:47:49','97'),(177,'<EMAIL>','$2a$10$2Kah0Ha8x4.yOj0NhYNmaeML4H3z2XHk.LKQXpNkJZ12L1TJcXDGO','군대간여동생','010-6971-7351','ROLE_USER','2021-02-17 05:48:29','98'),(178,'<EMAIL>','$2a$10$OvsJx5ozc/BKY1wUk/scAety9dF84fNyqIZ2o2M5IF.ZPM/XRHRPO','물에젖은너구리','010-7351-7325','ROLE_USER','2021-02-17 05:49:29','99'),(179,'<EMAIL>','$2a$10$gpAXxccOpx.w.1YhcCWqM.u9ENa80kwXGDgbv.zpbfIEjo4rQLKNC','k@조현철',NULL,'ROLE_USER','2021-02-17 07:35:11','http://k.kakaocdn.net/dn/bMabxH/btqD9zJY5HR/mBcwkVwtdbBQ1v1joandc1/img_640x640.jpg'),(180,'<EMAIL>','$2a$10$lo/u.dqVoHgHhmiPxDqZBej4TfnbKOaRxZICKYXHtqXhJ2uwmfWXS','구민진','010-1234-1234','ROLE_LAWYER','2021-02-17 08:19:26',NULL),(181,'<EMAIL>','$2a$10$srEhvyM5EmOrWVTicEhuxuR7DZTOaYDtkNUuogymPFpp.9wl.V6wK','test','010-1234-5678','ROLE_USER','2021-02-17 14:23:53',NULL),(182,'<EMAIL>','$2a$10$nY5psQqvsAWriow8DvePNOoSaibBIsNbsR/YSQ1arjDVLw1yWZxz2','g@dj A',NULL,'ROLE_USER','2021-02-17 17:55:31','https://lh3.googleusercontent.com/a-/AOh14GhBJbwF7BjTUAqVlpe0zeFQVJ7A-fUbGWmxnVNicQ=s96-c'),(183,'<EMAIL>','$2a$10$bPUr2H8RpflgqoXSYfbjSOBGD6jdX//q7g5C7Fep8giYAlmQQkGDy','k@예준',NULL,'ROLE_USER','2021-02-17 17:55:58','http://k.kakaocdn.net/dn/tAg4W/btqXCWlG1Jy/1eEMw8CwKJIJHWaxWxYs4K/img_640x640.jpg'); /*!40000 ALTER TABLE `member` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `message` -- DROP TABLE IF EXISTS `message`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `message` ( `message_id` int NOT NULL AUTO_INCREMENT COMMENT '메세지번호', `content` text COLLATE utf8_unicode_ci COMMENT '메시지내용', `matching_id` int NOT NULL COMMENT '채팅방번호', `uuid` int NOT NULL COMMENT '메시지전송자', `reg_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`message_id`), KEY `FK_message_uuid_member_uuid` (`uuid`), KEY `FK_message_matching_id_matching_matching_id` (`matching_id`), CONSTRAINT `FK_message_matching_id_matching_matching_id` FOREIGN KEY (`matching_id`) REFERENCES `matching` (`matching_id`) ON DELETE RESTRICT ON UPDATE RESTRICT, CONSTRAINT `FK_message_uuid_member_uuid` FOREIGN KEY (`uuid`) REFERENCES `member` (`uuid`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='메세지'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `message` -- LOCK TABLES `message` WRITE; /*!40000 ALTER TABLE `message` DISABLE KEYS */; INSERT INTO `message` VALUES (1,'안녕하세요. 변호사 박수현이라고 합니다.',142,166,'2021-02-17 06:41:20'),(2,'문의 주신 \"상속인의 존부가 불분명한 경우\"에 대해 알려드리고자 합니다.',142,166,'2021-02-17 06:41:46'),(3,'네! 안녕하세요. 그런데 따로 자문비를 드려야하는지요?;;',142,177,'2021-02-17 06:44:26'),(4,'일반적인 자문은 무료이고, 방문상담인 경우에는 따로 비용이 청구됩니다. 그러니 안심하셔도 됩니다! ^^*',142,166,'2021-02-17 06:45:04'),(5,'다시 본론으로 돌아가서...',142,166,'2021-02-17 06:45:12'),(6,'자문 주신 내용에 대해서는 다음과 같이 글을 준비해 두었어요.',142,166,'2021-02-17 06:45:26'),(7,'상속재산의 관리와 청산\n\n관리인의 선임 - 상속재산관리인은 피상속인의 상속인임을 요하지 않는다.\n\n상속재산관리인은 후에 나타날 수 있는 상속인 또는 포괄적 수유자의 법정대리인의 지위를 가진다.\n\n​\n\n상속재산관리인의 권리와 의무\n\n관리인은 원칙적으로 부재자를 위한 재산관리인과 동일한 권리, 의무를 가지므로, \n\n부재자를 위한 재산관리인에 관한 규정이 준용된다.\n\n​\n\n상속재산의 국가귀속\n\n민법에 정한 기간 내에 상속권을 주장하는 자가 없는 때에는 상속재산은 국가에 귀속하며\n\n국가는 적극재산만을 취득하고 채무는 부담하지 않는다.\n\n',142,166,'2021-02-17 06:46:04'),(8,'상속재산관리인으로서 피상속인의 입장에 있으신지 상속인과의 정확한 관계가 어떻게 되시는지 파악이 중요합니다.',142,166,'2021-02-17 06:47:12'),(9,'아... 그렇군요., 그 정보는 어떻게 확인하면 될까요??? 등본상으로는 현재 분리가 되어 있어서 따로 내기가 쉽지 않은데',142,177,'2021-02-17 06:47:55'),(10,'혈연 관계이시면은 혈연 관계를 증명할만한 것을 제출하시면 되는데요. 주로 가족관계증명서라던가, 출생 당시에 있었던 병원에서 출생신고서나 기록이 있는지 확인하시고 제출하시면 됩니다.',142,166,'2021-02-17 06:49:36'),(11,'아. 그렇군요. 친절하게 답변해주셔서 정말 감사합니다!',142,177,'2021-02-17 06:49:49'),(12,'도움이 되셨다니 다행입니다.',142,166,'2021-02-17 06:49:59'),(13,'박수현 변호사였습니다.',142,166,'2021-02-17 06:50:11'),(14,'안녕하십니까. 변호사 최현석입니다. ',140,168,'2021-02-17 15:57:12'),(15,'안녕하세요. 변호사 임윤선이라고 합니다.',141,2,'2021-02-17 16:36:30'),(16,'문의해 주신 \"협의이혼의사 철회신고서 접수 후 제출된 협의이혼신고서가 수리된 경우의 이혼\"에 대해 답변해 드리겠습니다',141,2,'2021-02-17 16:36:55'),(17,'대법원은 \"부부가 이혼하기로 협의하고 가정법원의 협의이혼의사 확인을 받았다고 하더라도 호적법에 정한 바에 의하여 신고함으로써 협의이혼의 효력이 생기기 전에는 부부의 일방이 언제든지 협의이혼의사를 철회할 수 있는 것이어서, 협의이혼신고서가 수리되기 전에 협의이혼의사의 철회신고서가 제출되면 협의이혼신고서는 수리할 수 없는 것이므로, 설사 호적공무원이 착오로 협의이혼의사 철회신고서가 제출된 사실을 간과한 나머지 그 후에 제출된 협의이혼신고서를 수리하였다고 하더라도 협의상 이혼의 효력이 생길 수 없다(대법원 1994. 2. 8. 선고 93도2869 판결).\"라고 판시하고 있습니다.',141,2,'2021-02-17 16:39:12'),(18,'즉 이혼은 유효하지 않은 상태입니다.',141,2,'2021-02-17 16:40:07'),(19,'이걸로 답변이 되셨을까요?',141,2,'2021-02-17 16:40:17'),(20,'넵! 답변 감사드립니다. ',141,178,'2021-02-17 16:41:49'),(21,'혹여나 차후 다른 문의사항이 있으시면 개인 사무실로 연락을 주시면 상세히 답변해 드리겠습니다',141,2,'2021-02-17 16:43:42'),(22,'감사합니다. 임윤선 변호사였습니다',141,2,'2021-02-17 16:44:01'),(23,'감사합니다',141,178,'2021-02-17 16:44:36'),(30,'정확한 상담을 위해 자문요청글에서 언급하신 블로그 포스트링크 공유 부탁드립니다.\n',154,167,'2021-02-17 18:53:01'),(31,'https://blog.naver.com/doggodi303/220051894686',154,174,'2021-02-17 18:53:14'),(32,'확인했습니다.',154,167,'2021-02-17 18:53:23'),(33,'안녕하세요 박형식 변호사입니다.',138,167,'2021-02-18 00:51:36'),(34,'문의해 주신 \"질문 \n해외구매대행시 지식재산권침해 아이템에 대한 환불 여부\"에 대해 답변해 드리겠습니다',138,167,'2021-02-18 00:52:29'),(35,'네',138,174,'2021-02-18 00:52:34'),(36,'우선 침해품(모조품)을 구매하는 행위는 지식재산권 침해에 해당하지 않습니다. 다만, 침해품을 직접 제작하여 판매하거나 구매하여 재판매하는 행위는 지식재산권 침해에 해당합니다.',138,167,'2021-02-18 00:53:07'),(37,'그렇군요',138,174,'2021-02-18 00:53:14'),(38,'본 사안에서, 판매자의 행위가 문제되어 폐기처분이 된 것이므로, 환불처리를 해드려야 하는 것이 맞을 것 같은데 이러한 리스크에 대해 사전공지를 한 경우라면 달리 볼 수 있을 것 같습니다.',138,167,'2021-02-18 00:54:34'),(39,'궁금하던 점은 해결되셨나요?',138,167,'2021-02-18 00:55:27'),(41,'네 답변 감사드립니다',138,174,'2021-02-18 00:57:23'),(42,'다행이내요 다른 궁금한 점이 있으시면 따로 연락주시면 해결해드리겠습니다',138,167,'2021-02-18 00:58:54'),(43,'이상 박형식 변호사였습니다',138,167,'2021-02-18 00:59:04'); /*!40000 ALTER TABLE `message` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `overlap` -- DROP TABLE IF EXISTS `overlap`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `overlap` ( `overlap_id` int NOT NULL AUTO_INCREMENT COMMENT '오버랩번호', `controversy_id` int NOT NULL COMMENT '찬반논쟁번호', `uuid` int NOT NULL COMMENT '유저', PRIMARY KEY (`overlap_id`), UNIQUE KEY `UC_controversy_id_AND_uuid` (`controversy_id`,`uuid`), KEY `FK_overlap_uuid_member_uuid` (`uuid`), CONSTRAINT `FK_overlap_controversy_id_controversy_controversy_id` FOREIGN KEY (`controversy_id`) REFERENCES `controversy` (`controversy_id`) ON DELETE RESTRICT ON UPDATE RESTRICT, CONSTRAINT `FK_overlap_uuid_member_uuid` FOREIGN KEY (`uuid`) REFERENCES `member` (`uuid`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='찬반논쟁 중복투표 방지'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `overlap` -- LOCK TABLES `overlap` WRITE; /*!40000 ALTER TABLE `overlap` DISABLE KEYS */; INSERT INTO `overlap` VALUES (14,1,174),(15,2,174),(16,3,174); /*!40000 ALTER TABLE `overlap` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `proposal` -- DROP TABLE IF EXISTS `proposal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `proposal` ( `opinion_id` int NOT NULL AUTO_INCREMENT COMMENT '의견번호', `uuid` int NOT NULL COMMENT '작성자uuid', `content` text CHARACTER SET utf8 COLLATE utf8_unicode_ci COMMENT '내용', `controversy_id` int NOT NULL, PRIMARY KEY (`opinion_id`), KEY `FK_proposal_uuid_member_uuid` (`uuid`), KEY `FK_proposal_controversy_id_controversy_controversy_id` (`controversy_id`), CONSTRAINT `FK_proposal_controversy_id_controversy_controversy_id` FOREIGN KEY (`controversy_id`) REFERENCES `controversy` (`controversy_id`) ON DELETE RESTRICT ON UPDATE RESTRICT, CONSTRAINT `FK_proposal_uuid_member_uuid` FOREIGN KEY (`uuid`) REFERENCES `member` (`uuid`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='의견(찬반논쟁댓글)'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `proposal` -- LOCK TABLES `proposal` WRITE; /*!40000 ALTER TABLE `proposal` DISABLE KEYS */; INSERT INTO `proposal` VALUES (1,1,'찬성합니다',1),(2,1,'반대합니다',1),(3,1,'반대합니다',1),(4,1,'수정합니다',2),(7,1,'암튼 찬성',2),(22,174,'찬성합니다.',3); /*!40000 ALTER TABLE `proposal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `search` -- DROP TABLE IF EXISTS `search`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `search` ( `search_id` int NOT NULL AUTO_INCREMENT COMMENT '검색번호', `word` varchar(100) COLLATE utf8_unicode_ci NOT NULL COMMENT '검색단어', `hit` int NOT NULL DEFAULT '1' COMMENT '검색수', PRIMARY KEY (`search_id`), UNIQUE KEY `UC_word` (`word`) ) ENGINE=InnoDB AUTO_INCREMENT=881 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='실시간검색어'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `search` -- LOCK TABLES `search` WRITE; /*!40000 ALTER TABLE `search` DISABLE KEYS */; INSERT INTO `search` VALUES (1,'명예훼손',246),(2,'소음',94),(3,'자동차',52),(4,'특허',23),(5,'주거',15),(6,'음주',9),(7,'음성',0),(8,'운전',0),(9,'상속',14),(10,'공소외인',4),(158,'공소 외 인',2),(178,'환경',0),(215,'교통사고',0),(223,'명예',38),(240,'(명예)',1),(257,'판례',3),(286,'인권',0),(337,'종량',0),(346,'법',1),(359,'법령',1),(405,'adas',0),(419,'민사소송',2),(453,'교통',8),(454,'형사',0),(472,'',-999999938),(554,'dsfasdf',0),(555,'판래',4),(597,'음주운전',0),(740,'곽온겸',0),(825,'공해',0),(827,'가나다',0),(829,'sadasd',0),(859,'ㅂㅈㄷㄼㅈㄷㄹ',0),(874,'저작권',1),(875,'주거 소음',0); /*!40000 ALTER TABLE `search` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `uploadfile` -- DROP TABLE IF EXISTS `uploadfile`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `uploadfile` ( `id` int NOT NULL AUTO_INCREMENT COMMENT '파일번호', `origin_file_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT '원파일명', `save_file_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT '저장파일명', `file_path` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT '경로', `content_type` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT '컨텐츠타입', `size` bigint NOT NULL COMMENT '크기', `reg_date` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '등록일자', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=104 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='파일업로드'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `uploadfile` -- LOCK TABLES `uploadfile` WRITE; /*!40000 ALTER TABLE `uploadfile` DISABLE KEYS */; INSERT INTO `uploadfile` VALUES (30,'KakaoTalk_20200913_005737223.png','2021/01/06/35fb056523e74b188cb9075a77f19ed5.png','/volumes/data/2021/01/06/35fb056523e74b188cb9075a77f19ed5.png','image/png',288853,'2021-02-06 09:22:46'),(52,'noimage.jpg','member/1.jpg','/volumes/data/member/1.jpg','image/jpeg',7386,'2021-02-12 17:31:24'),(53,'noimage.jpg','member/1.jpg','/volumes/data/member/1.jpg','image/jpeg',7386,'2021-02-12 17:32:06'),(77,'profile.JPG','member/153.JPG','/volumes/data/member/153.JPG','image/jpeg',36720,'2021-02-15 09:15:42'),(85,'108897(2).jpg','member/166.jpg','/volumes/data/member/166.jpg','image/jpeg',13600,'2021-02-17 13:51:50'),(86,'108897(2).jpg','member/166.jpg','/volumes/data/member/166.jpg','image/jpeg',16624,'2021-02-17 13:52:29'),(87,'123.JPG','member/167.JPG','/volumes/data/member/167.JPG','image/jpeg',11485,'2021-02-17 14:00:35'),(88,'1234.JPG','member/168.JPG','/volumes/data/member/168.JPG','image/jpeg',12545,'2021-02-17 14:04:32'),(89,'12345.png','member/169.png','/volumes/data/member/169.png','image/png',12308,'2021-02-17 14:09:08'),(90,'12345.png','member/170.png','/volumes/data/member/170.png','image/png',12308,'2021-02-17 14:11:39'),(91,'Image Pasted at 2021-2-17 13-52.png','member/170.png','/volumes/data/member/170.png','image/png',28518,'2021-02-17 14:11:47'),(92,'12455.JPG','member/171.JPG','/volumes/data/member/171.JPG','image/jpeg',10706,'2021-02-17 14:19:14'),(93,'123542t4252.JPG','member/172.JPG','/volumes/data/member/172.JPG','image/jpeg',19752,'2021-02-17 14:22:07'),(94,'654321354.png','member/173.png','/volumes/data/member/173.png','image/png',258746,'2021-02-17 14:27:44'),(95,'123455.JPG','member/174.JPG','/volumes/data/member/174.JPG','image/jpeg',27159,'2021-02-17 14:50:37'),(96,'123124.JPG','member/175.JPG','/volumes/data/member/175.JPG','image/jpeg',27359,'2021-02-17 14:53:05'),(97,'12413513.JPG','member/176.JPG','/volumes/data/member/176.JPG','image/jpeg',23115,'2021-02-17 14:54:02'),(98,'1215133.JPG','member/177.JPG','/volumes/data/member/177.JPG','image/jpeg',24024,'2021-02-17 14:55:12'),(99,'123154125.JPG','member/178.JPG','/volumes/data/member/178.JPG','image/jpeg',27097,'2021-02-17 14:57:23'),(100,'블로그자문요청.png','2021/01/18/0515287f74f9426b9aa7488928bae8a6.png','c:/PJT-data/2021/01/18/0515287f74f9426b9aa7488928bae8a6.png','image/png',1024667,'2021-02-18 02:00:17'),(101,'블로그자문요청.png','2021/01/17/a8514e03055c4d938cae291a2178678c.png','/volumes/data/2021/01/17/a8514e03055c4d938cae291a2178678c.png','image/png',1024667,'2021-02-18 03:12:37'),(102,'KakaoTalk_20210218_031845803.jpg','member/2.jpg','c:/PJT-data/member/2.jpg','image/jpeg',103513,'2021-02-18 03:19:09'),(103,'profile.JPG','member/2.JPG','/volumes/data/member/2.JPG','image/jpeg',36720,'2021-02-18 07:46:39'); /*!40000 ALTER TABLE `uploadfile` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `youtube` -- DROP TABLE IF EXISTS `youtube`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `youtube` ( `id` varchar(20) COLLATE utf8_unicode_ci NOT NULL, `title` varchar(200) COLLATE utf8_unicode_ci NOT NULL, `thumbnail` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `published_at` datetime NOT NULL, `channel_id` varchar(30) COLLATE utf8_unicode_ci NOT NULL, `description` varchar(200) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `reg_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='유튜브영상'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `youtube` -- LOCK TABLES `youtube` WRITE; /*!40000 ALTER TABLE `youtube` DISABLE KEYS */; INSERT INTO `youtube` VALUES ('0iofIL_H5t8','9718회. 9706회 상대차주 모닝입니다. 저희 차 영상도 봐주세요.','https://i.ytimg.com/vi/0iofIL_H5t8/hqdefault.jpg','2020-12-27 22:00:00','UCH5U89kvHrVxxS80xpoOydw','b11943, u9706, 한문철TV를 보고 연락 온 상대차주 왼쪽으로 차로 변경하던 앞 차량이 다시 오른쪽으로 차로 변경하여 뒤에서 직진하던 블박차와 추돌, 상대방은 ...','2021-02-17 02:38:16'),('0sihSxLn2kk','9649회. 끼어드는 상대차 때문에 화가 나서 그만..','https://i.ytimg.com/vi/0sihSxLn2kk/hqdefault.jpg','2020-12-27 23:00:00','UCH5U89kvHrVxxS80xpoOydw','b72, 상대차 쫓아가다가..? 가드레일 들이받음 상대 차가 무리하게 끼어들어오려고 하기에 클락션 울렸는데도 들어오려고 해서 화가 난 블박차가 쫓아가다가 가드 ...','2021-02-16 01:39:29'),('1hQZUuwzwt4','8366회. 너무 억울해서 한문철TV에도 제보해봅니다. 제 시야를 가린 쪽은 잘못이 없답니다.','https://i.ytimg.com/vi/1hQZUuwzwt4/hqdefault.jpg','2019-12-29 04:00:00','UCH5U89kvHrVxxS80xpoOydw','b10954, 보배드림에 올렸더니 욕만 배터지게 먹었어요 상대측이 감속없이 웅덩이에서 물 기어 앞을 볼 수 없는 상태에서 급브레이크로 인해 미끄러져 옆 차선에 ...','2021-02-16 01:39:29'),('3Epz14lakBs','9720회. 터널 앞에서 앞차 추돌!! ‘앞차가 브레이크 등만 켜졌어도...’','https://i.ytimg.com/vi/3Epz14lakBs/hqdefault.jpg','2020-12-27 10:00:00','UCH5U89kvHrVxxS80xpoOydw','b12155, 브레이크 등 없이 멈춘 앞차 터널 앞에서 앞 차가 멈추는데, 브레이크등이 없어서 이를 추돌. 앞차에는 4명이 타고 있었음. 처음에는 100:0 이라고 하다가, ...','2021-02-17 02:38:16'),('4RQPA9nhGm8','9640회. 버스 정류장에 앉아있는 여성분을 보고 잠시 한눈팔다 사고 당했습니다..ㅠㅠ','https://i.ytimg.com/vi/4RQPA9nhGm8/hqdefault.jpg','2020-12-27 03:00:00','UCH5U89kvHrVxxS80xpoOydw','b16, u494, 버스 정류장의 여성분에게 한눈팔다가.. 직우차로에서 직진 중 왼쪽 직진 차선에서 우회전해서 들어오는 차량과의 사고 - YouTube 회차 : 494회. 블박차 ...','2021-02-16 01:39:29'),('a7h_X2YVZe0','9814회. 좌회전 차로에서 직진하다 사고나면 무조건 가해차량이다??','https://i.ytimg.com/vi/a7h_X2YVZe0/hqdefault.jpg','2020-12-27 14:00:00','UCH5U89kvHrVxxS80xpoOydw','b11979, 이 사고는 연구대상입니다 편도 4차로 도로, 1,2 차로는 좌회전 차로. 블박차가 2차로에서 직진하는데, 3차로 직진 차로 차량이 블박차 앞으로 들어와 사고 블 ...','2021-02-17 02:38:16'),('bE041EOJGXQ','*요즘 스마트폰을 보면서 운전하는 오토바이가 많아졌습니다 [210209 화 오후 생방송02]','https://i.ytimg.com/vi/bE041EOJGXQ/hqdefault.jpg','2020-12-28 06:30:00','UCH5U89kvHrVxxS80xpoOydw','b12111 오토바이와 차량간의 골목길에서의 사고 b12114 좌회선 차선에서 2차로 급변경하여 직진중인 차량과의 사고 b12117 좌회전차로 좌회전시 상대편 2차로 ...','2021-02-17 02:38:16'),('bLBNhy3WP0o','9817회. 그냥 쭉 가면 됐는데... 왜 멈췄나요??','https://i.ytimg.com/vi/bLBNhy3WP0o/hqdefault.jpg','2020-12-27 20:00:00','UCH5U89kvHrVxxS80xpoOydw','b12116, 아니 왜 멈추나요? 교차로 마지막 차로를 직진으로 통과하는데, 오른쪽에서 교통섬 안쪽으로 우회전하는 차가 블박차 앞으로 들어와 속도를 줄이다 멈춰서 ...','2021-02-17 02:38:16'),('CKrIW6r2dSs','* 술 마신 상태로 아무 빛도 없는 자전거를 탄 사람과의 사고 [ 210208 월 오전 생방송 2 ]','https://i.ytimg.com/vi/CKrIW6r2dSs/hqdefault.jpg','2020-12-28 07:00:00','UCH5U89kvHrVxxS80xpoOydw','b12091, 눈길에 정차해버린 차 b12101, 눈길 고속도로 후방 추돌 b12088, 난폭운전으로 신고가 될지 궁금합니다. b12087, 음주 신호위반 자전거와 사고입니다.','2021-02-17 02:38:16'),('e5BjwBHpMo4','9808회. 새벽에 떡하니 막고있는 이것을 피하지 못하고 그대로 들이박았습니다. 이걸 어떻게 피합니까..','https://i.ytimg.com/vi/e5BjwBHpMo4/hqdefault.jpg','2020-12-27 07:00:00','UCH5U89kvHrVxxS80xpoOydw','b12165, 도로 한가운데에 이게 뭐야.. 새벽 3시 자동차 전용도로(서부 간선도로) 80Km/h이고 차량속도 57Km, 앞유리창 썬팅 가장 옅은 색깔, 반대방향에서 중앙 ...','2021-02-16 01:39:29'),('mlfUHbsG-Wk','9671회. 한문철TV 의 유튜브 영상을 법원에 그대로 제출하지는 마세요','https://i.ytimg.com/vi/mlfUHbsG-Wk/hqdefault.jpg','2020-12-27 03:00:00','UCH5U89kvHrVxxS80xpoOydw','b175, u603, u4084, 재판중에 유튜브 영상 제출했다가 판사님이... 블박 스타렉스가 고속도로 버스 전용차로를 달리는데, 정체되 천천히 진행중인 차들 사이에서 ...','2021-02-16 01:39:29'),('nI7x8AKMFKc','9342회. 개들이 제 차를 뜯어먹었습니다...','https://i.ytimg.com/vi/nI7x8AKMFKc/hqdefault.jpg','2020-12-27 03:00:00','UCH5U89kvHrVxxS80xpoOydw','b11549, 개가 차 뜯어먹는 소리 떠돌이 개들이 차를 망가뜨림. 차밑으로 기어들어간 고양이 때문에 개들이 여러마리 몰려와 차량을 파손시킴 수리비 40만원 예상 ...','2021-02-16 01:39:29'),('PadbFYM9C24','9810회. 여수 가족 여행 중에 사고 났어요','https://i.ytimg.com/vi/PadbFYM9C24/hqdefault.jpg','2020-12-27 13:00:00','UCH5U89kvHrVxxS80xpoOydw','유료광고 포함 (b12096, 여수 밤바다 돌산대교에서 돌산 대교 건너서 좌회전이 안 되자, 불법 유턴 하다가 뒤에서 추월하려는 차와 사고. 상대차는 내 바로 뒤에서 오다 ...','2021-02-16 01:39:29'),('QmVtu0GhKT0','9719회. 앞차가 되돌아오면서 급제동하는 바람에 블박차가 뒤에서 쾅!','https://i.ytimg.com/vi/QmVtu0GhKT0/hqdefault.jpg','2020-12-28 08:00:00','UCH5U89kvHrVxxS80xpoOydw','b12090, 블박차가 더 잘못? 차로 변경해 들어온 앞차가 급제동하여 블박차가 이를 후방 추돌, 앞차는 우측에서 깜빡이 켜고 3차로에서 1차로까지 들어왔고, 이 앞차는 ...','2021-02-17 02:38:16'),('RTzxA90NxRA','9809회. 아내가 말리지 않았다면... 상상만 해도...','https://i.ytimg.com/vi/RTzxA90NxRA/hqdefault.jpg','2020-12-27 18:00:00','UCH5U89kvHrVxxS80xpoOydw','유료광고 포함 (b12167, 간만의 드라이브를 망친 그 남자의 한마디 밀양댐 도로 내리막에서 중앙선 넘어 역주행으로 추월하는 자전거 \"코로나로 답답해 하다가 차로 ...','2021-02-17 02:38:16'),('vuZGwwVJyBA','6958회. 정말 쌤통입니다! 이게 바로 경찰이죠~ 하지만 경찰이 있든 없든 교통법규는 잘 지킵시다!','https://i.ytimg.com/vi/vuZGwwVJyBA/hqdefault.jpg','2019-12-29 09:00:00','UCH5U89kvHrVxxS80xpoOydw','[한글 자막] 자막 표시(CC)를 켜면 자막과 함께 보실 수 있습니다 (b9555, 역대급 사이다 영상, 비보호 좌회전 구간에서 적색등이라 대기중인데 뒤 차가 가라고 클락션 ...','2021-02-16 01:39:29'),('WmrND-orer0','9811회. 연락처 드린다고 했는데 그냥 가셨습니다. 몇대몇일까요?','https://i.ytimg.com/vi/WmrND-orer0/hqdefault.jpg','2020-12-27 23:00:00','UCH5U89kvHrVxxS80xpoOydw','b12159, 사람이 와서 부딪쳤습니다.. 주유소에서 주유마치고 출발하는데 사람이랑 접촉 사고남,. 일단 괜찮으시냐고 여쭤봤고 차에 내려서 괜찮은지 물어보고 연락처 ...','2021-02-16 01:39:29'),('Ws06ShQZekE','*좌회전 차로에서 직진하면 무조건 가해차량이다?? [210209 화 오후 생방송01]','https://i.ytimg.com/vi/Ws06ShQZekE/hqdefault.jpg','2020-12-28 00:30:00','UCH5U89kvHrVxxS80xpoOydw','b11979 교차로 내, 좌회전 차선(직진금지 없고 , 차선이 줄어들지 않은 경우)에서 직진 차량과 옆차의 급차선 변경사고 b12116 정상직진주행중에 우회전 차량과 추돌 ...','2021-02-17 02:38:16'),('zHkQKXlUx04','9813회. 경찰은 K5를 사고에서 빼려고 합니다. 고구마 몇 만 개 먹은 듯합니다.','https://i.ytimg.com/vi/zHkQKXlUx04/hqdefault.jpg','2020-12-27 12:00:00','UCH5U89kvHrVxxS80xpoOydw','유료광고 포함 (b12157, 포르쉐911, K5 때문에 사고 1차로는 좌회전차로, 2차로는 직좌차로, 신호는 직좌차로인데 1차로에 있던 k5가 좌회전차로에서 직진하면서 ...','2021-02-17 02:38:16'); /*!40000 ALTER TABLE `youtube` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2021-02-18 10:00:24
# Write your MySQL query statement below SELECT MAX(salary) as SecondHighestSalary FROM Employee WHERE salary < (SELECT MAX(salary) FROM Employee)
-- <NAME> 216796 -- -- <NAME> 216806 -- ---------------------------------------------------------------------------------------------------------------- -- -- 1. Podłącz się do bazy jako sysdba. -- -- 2. Utwórz dwa konta użytkowników do testów: test_a i test_b z hasłem test. Domyślna przestrzeń -- tabel: users, limity 10m dla przestrzeni users. -- -- 3. Nadaj obu użytkownikom prawo przyłączenia się do bazy danych oraz tworzenia podstawowych -- obiektów, dodatkowo użytkownik test_b ma otrzymać prawo RESTRICTED SESSION. -- -- 4. Przyłącz się do bazy w nowym oknie jako użytkownik test_a. Utwórz w schemacie tego -- użytkownika tabelę test z jedną kolumną typu znakowego do 100 znaków o nazwie tekst. -- Następnie wstaw do tabeli test jeden rekord z wartością atrybutu „pierwszy rekord” -- -- 5. Nie kończ sesji ani transakcji użytkownika test_a. W oknie swojego użytkownika (administratora) -- spróbuj dokonać zamknięcia bazy danych w trybie transakcyjnym. Co zaobserwowałeś? -- -- 6. Uruchom trzecie okno linii poleceń i spróbuj przyłączyć się w nim jako użytkownik test_b. Czy -- próba przyłączenia zakończyła się sukcesem? -- -- 7. Zatwierdź transakcję w drugim oknie (użytkownika test_a). Czy baza danych została zamknięta? -- -- 8. Ponownie uruchom bazę danych. Po uruchomieniu bazy danych w drugim oknie przyłącz się -- ponownie jako użytkownik test_a i wstaw drugi rekord do tabeli test. -- -- 9. W pierwszym oknie dokonaj zamknięcia bazy danych w trybie natychmiastowym. Co się dzieje -- z sesją test_a? -- -- 10. W pierwszym oknie uruchom ponownie bazę danych, w drugim oknie przyłącz się ponownie jako -- użytkownik test_a i sprawdź zawartość tabeli test. Czy rekord dodany w poleceniu istnieje? -- -- 11. Zakończ sesję użytkownika test_a (drugie okno). Zamknij bazę danych, wykonując odpowiednie -- polecenie w pierwszym oknie. -- -- 12. W pierwszym oknie uruchom bazę danych w trybie „bez montowania”. W drugim oknie spróbuj -- przyłączyć się do bazy danych jako użytkownik test_a. -- -- 13. W pierwszym oknie zmień tryb pracy bazy danych na „zamontowana”. Ponownie spróbuj w drugim -- oknie przyłączyć się jako użytkownik test_a. -- -- 14. W pierwszym oknie zmień tryb pracy bazy danych na „otwarta”. Ponownie spróbuj w drugim oknie -- przyłączyć się jako użytkownik test_a. -- -- 15. Wyloguj użytkownika test_a. W pierwszym oknie zmień tryb pracy bazy danych na „logowanie -- zabronione” (podpowiedź: alter system enable restricted session; ) -- -- 16. Ponownie spróbuj w drugim oknie przyłączyć się jako użytkownik test_a. Następnie spróbuj -- przyłączyć się jako użytkownik test_b. Co zaobserwowałeś? -- -- 17. Wyloguj wszystkich użytkowników testowych i usuń ich używając odpowiedniego polecenia. -- Upewnij się, że zostali usunięci. -- ---------------------------------------------------------------------------------------------------------------- -- PODPUNKT 1 -- -- PODPUNKT 2 -- CREATE USER test_a IDENTIFIED BY TEST DEFAULT TABLESPACE users QUOTA 10 m ON users; CREATE USER test_b IDENTIFIED BY TEST DEFAULT TABLESPACE users QUOTA 10 m ON users; -- PODPUNKT 3 -- GRANT CONNECT TO test_a, test_b; GRANT RESOURCE TO test_a, test_b; GRANT RESTRICTED SESSION TO test_b; -- PODPUNKT 4 -- CREATE TABLE test ( tekst VARCHAR(100) ); INSERT INTO test VALUES ('pierwszy rekord'); -- PODPUNKT 5 -- SHUTDOWN transactional; -- baza czeka na zakończenie transakcji -- PODPUNKT 6 -- -- nie, ponieważ "immediate shutdown in progress - no operations are permitted" -- PODPUNKT 7 -- COMMIT; --Database closed. --Database dismounted. --ORACLE instance shut down. --baza została zamknięta -- PODPUNKT 8 -- STARTUP; INSERT INTO test VALUES ('drugi rekord'); -- PODPUNKT 9 -- SHUTDOWN immediate; --ORA-03135: connection lost contact -- nie ma połączenia -- PODPUNKT 10 -- SELECT * FROM test; --TEKST -------------------------------------------------------------------------------- --pierwszy rekord -- jest tylko rekord dodany w punkcie nr 4 lecz rekordu dodanego w punkcie nr 8 nie ma -- PODPUNKT 11 -- DISCONNECT; SHUTDOWN normal; -- PODPUNKT 12 -- STARTUP nomount; -- nie jest to wykonalne "ORA-01033: ORACLE initialization or shutdown in progress" -- PODPUNKT 13 -- ALTER DATABASE MOUNT; -- nie jest to wykonalne "ORA-01033: ORACLE initialization or shutdown in progress" -- PODPUNKT 14 -- ALTER DATABASE OPEN; -- zalogowanie się jest możliwe --Connected to: --Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - Production --With the Partitioning, OLAP, Data Mining and Real Application Testing options -- PODPUNKT 15 -- DISCONNECT; ALTER SYSTEM ENABLE RESTRICTED SESSION; -- PODPUNKT 16 -- -- test_a "ORA-01035: ORACLE only available to users with RESTRICTED SESSION privilege" -- test_b "connected" -- PODPUNKT 17 -- DROP USER test_a CASCADE; DROP USER test_b CASCADE;
<filename>dbstructure.sql -- phpMyAdmin SQL Dump -- version 3.2.0.1 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Feb 11, 2010 at 01:50 PM -- Server version: 5.1.39 -- PHP Version: 5.3.0 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `TOME` -- -- -------------------------------------------------------- -- -- Table structure for table `access` -- DROP TABLE IF EXISTS `access`; CREATE TABLE IF NOT EXISTS `access` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `pageName` varchar(50) NOT NULL, `minLevel` int(11) NOT NULL DEFAULT '0', `message` varchar(255) NOT NULL DEFAULT 'You are not authorized to view this page.' COMMENT 'error message for users without permission to access a given page', PRIMARY KEY (`ID`), UNIQUE KEY `pageName` (`pageName`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=40 ; -- -- Dumping data for table `access` -- INSERT INTO `access` (`ID`, `pageName`, `minLevel`, `message`) VALUES (1, 'admin', 3, ''), (2, 'index', 3, 'You are not authorized to view this page.'), (3, 'addAccess', 1, 'You are not authorized to add access policies.'), (4, 'editAccess', 1, 'You are not authorized to edit access policies.'), (5, 'deleteAccess', 1, 'You are not authorized to delete access policies.'), (6, 'addUser', 1, 'You are not authorized to add users.'), (7, 'editUser', 2, 'You are not authorized to edit users other than yourself.'), (8, 'deleteUser', 2, 'You are not authorized to delete users.'), (9, 'addBooks', 1, 'You are not authorized to manage books'), (10, 'editBooks', 2, 'You are not authorized to manage books'), (11, 'deleteBooks', 2, 'You are not authorized to manage books'), (12, 'addBookTypes', 1, 'You are not authorized to manage book types'), (13, 'editBookTypes', 2, 'You are not authorized to manage book types'), (14, 'deleteBookTypes', 2, 'You are not authorized to manage book types'), (15, 'addBorrowers', 1, 'You are not authorized to manage borrowers'), (16, 'editBorrowers', 2, 'You are not authorized to manage borrowers'), (17, 'deleteBorrowers', 2, 'You are not authorized to manage borrowers'), (21, 'addClasses', 1, 'You are not authorized to manage classes'), (22, 'editClasses', 2, 'You are not authorized to manage classes'), (23, 'deleteClasses', 2, 'You are not authorized to manage classes'), (24, 'addLibraries', 1, 'You are not authorized to manage libraries'), (25, 'editLibraries', 2, 'You are not authorized to manage libraries'), (26, 'deleteLibraries', 2, 'You are not authorized to manage libraries'), (27, 'addTomekeepers', 1, 'You are not authorized to manage TOME Keepers'), (28, 'editTomekeepers', 2, 'You are not authorized to manage TOME Keepers'), (29, 'deleteTomekeepers', 2, 'You are not authorized to manage TOME Keepers'), (39, 'editSemester', 2, ''); -- -------------------------------------------------------- -- -- Table structure for table `books` -- DROP TABLE IF EXISTS `books`; CREATE TABLE IF NOT EXISTS `books` ( `ID` int(11) NOT NULL, `libraryID` int(11) NOT NULL, `bookID` int(11) NOT NULL, `donatorID` int(11) NOT NULL, `expires` date NOT NULL DEFAULT '0000-00-00', `expired` tinyint(1) NOT NULL, `usable` tinyint(1) NOT NULL DEFAULT '1', `comments` text NOT NULL, PRIMARY KEY (`ID`), KEY `bookID` (`bookID`,`donatorID`), KEY `libraryID` (`libraryID`), KEY `usable` (`usable`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `books` -- -- -------------------------------------------------------- -- -- Table structure for table `bookTypes` -- DROP TABLE IF EXISTS `bookTypes`; CREATE TABLE IF NOT EXISTS `bookTypes` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL, `isbn10` varchar(10) DEFAULT NULL, `isbn13` varchar(13) DEFAULT NULL, `author` varchar(50) NOT NULL, `edition` varchar(20) NOT NULL, `comments` text NOT NULL, PRIMARY KEY (`ID`), UNIQUE KEY `isbn13` (`isbn13`), UNIQUE KEY `isbn10` (`isbn10`), KEY `libraryID` (`title`,`isbn10`,`isbn13`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -- Dumping data for table `bookTypes` -- -- -------------------------------------------------------- -- -- Table structure for table `borrowers` -- DROP TABLE IF EXISTS `borrowers`; CREATE TABLE IF NOT EXISTS `borrowers` ( `ID` int(11) NOT NULL, `email` varchar(50) NOT NULL, `name` varchar(50) NOT NULL, `valid` tinyint(1) NOT NULL, PRIMARY KEY (`ID`), KEY `email` (`email`,`name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `borrowers` -- -- -------------------------------------------------------- -- -- Table structure for table `checkouts` -- DROP TABLE IF EXISTS `checkouts`; CREATE TABLE IF NOT EXISTS `checkouts` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `bookID` int(11) NOT NULL, `bookTypeID` int(11) NOT NULL, `tomekeeperID` int(11) NOT NULL COMMENT 'ID of the tomekeeper initiating the checkout', `libraryToID` int(11) NOT NULL COMMENT 'The library of the TomeKeeper who initiated this checkout', `libraryFromID` int(11) NOT NULL COMMENT 'ID of the library this book is being reserved from', `borrowerID` int(11) NOT NULL, `reserved` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `out` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `in` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `semester` float NOT NULL, `comments` text NOT NULL, PRIMARY KEY (`ID`), KEY `bookID` (`bookID`,`tomekeeperID`,`out`,`in`), KEY `borrowerID` (`borrowerID`), KEY `bookTypeID` (`bookTypeID`), KEY `libraryToID` (`libraryToID`), KEY `libraryFromID` (`libraryFromID`), KEY `reserved` (`reserved`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -- Dumping data for table `checkouts` -- -- -------------------------------------------------------- -- -- Table structure for table `classbooks` -- DROP TABLE IF EXISTS `classbooks`; CREATE TABLE IF NOT EXISTS `classbooks` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `classID` int(11) NOT NULL, `bookID` int(11) NOT NULL, `verified` date NOT NULL DEFAULT '0000-00-00', `verifiedSemester` float NOT NULL, `usable` tinyint(1) NOT NULL, `comments` text NOT NULL, PRIMARY KEY (`ID`), KEY `classID` (`classID`,`bookID`), KEY `verifiedSemester` (`verifiedSemester`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -- Dumping data for table `classbooks` -- -- -------------------------------------------------------- -- -- Table structure for table `classes` -- DROP TABLE IF EXISTS `classes`; CREATE TABLE IF NOT EXISTS `classes` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `class` varchar(8) NOT NULL, `name` varchar(100) NOT NULL, `comments` text NOT NULL, PRIMARY KEY (`ID`), KEY `class` (`class`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -- Dumping data for table `classes` -- -- -------------------------------------------------------- -- -- Table structure for table `errorLog` -- DROP TABLE IF EXISTS `errorLog`; CREATE TABLE IF NOT EXISTS `errorLog` ( `errorID` int(11) NOT NULL AUTO_INCREMENT, `time` datetime NOT NULL, `message` text NOT NULL, `type` tinyint(2) NOT NULL, PRIMARY KEY (`errorID`), KEY `time` (`time`,`type`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -- Dumping data for table `errorLog` -- -- -------------------------------------------------------- -- -- Table structure for table `libraries` -- DROP TABLE IF EXISTS `libraries`; CREATE TABLE IF NOT EXISTS `libraries` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL COMMENT 'Because a floor won''t be happy if this field can''t hold their name', `interTOME` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ; -- -- Dumping data for table `libraries` -- INSERT INTO `libraries` (`ID`, `name`, `interTOME`) VALUES (3, 'interTOME', 1); -- -------------------------------------------------------- -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; CREATE TABLE IF NOT EXISTS `users` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(20) NOT NULL, `password` varchar(128) NOT NULL, `password_salt` varchar(64) NOT NULL, `permissions` tinyint(1) NOT NULL DEFAULT '3', `active` tinyint(1) NOT NULL DEFAULT '0', `name` varchar(50) NOT NULL, `email` varchar(50) NOT NULL, `notifications` tinyint(1) NOT NULL, `libraryID` int(11) NOT NULL, `secondContact` varchar(50) NOT NULL, `semester` float unsigned NOT NULL, `firstLogin` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), UNIQUE KEY `username` (`username`), KEY `name` (`name`,`email`,`libraryID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; -- -- Dumping data for table `users` -- INSERT INTO `users` (`ID`, `username`, `password`, `password_salt`, `permissions`, `active`, `name`, `email`, `notifications`, `libraryID`, `secondContact`, `semester`, `firstLogin`) VALUES (1, 'admin', '<PASSWORD>', '<PASSWORD>', 1, 1, '', '', 0, 0, '', 2009.75, 1), (2, 'bion', '<PASSWORD>375aaeb5cf4c7623b31b8bd42c17e7520d2ea35bb77d2764b4f107bc10d81d5915152f532422c72e6', 'a9107b59ccaae59ae364c7db6f4232be', 1, 1, 'Wharf', '<EMAIL>', 0, 1, 'kick', 2009.75, 1), (3, 'benaiah', '<KEY>', '62502416dbae6e992613124d15e2d37c', 1, 1, '<NAME>', '<EMAIL>', 0, 1, 'AIM: letubenaiah', 2010.25, 1), (4, 'synk', '<KEY>', '187e6eb3a08c2e9df3420c4fec003b1e', 1, 1, '<NAME>', '<EMAIL>', 0, 1, 'Wharf', 2010.25, 1);
prompt --application/shared_components/user_interface/templates/report/timeline begin -- Manifest -- ROW TEMPLATE: TIMELINE -- Manifest End wwv_flow_api.component_begin ( p_version_yyyy_mm_dd=>'2021.10.15' ,p_release=>'21.2.6' ,p_default_workspace_id=>18303204396897713 ,p_default_application_id=>401 ,p_default_id_offset=>0 ,p_default_owner=>'BLOG_040000' ); wwv_flow_api.create_row_template( p_id=>wwv_flow_api.id(6814607236267392) ,p_row_template_name=>'Timeline' ,p_internal_name=>'TIMELINE' ,p_row_template1=>wwv_flow_string.join(wwv_flow_t_varchar2( '<li class="t-Timeline-item #EVENT_MODIFIERS#" #EVENT_ATTRIBUTES#>', ' <div class="t-Timeline-wrap">', ' <div class="t-Timeline-user">', ' <div class="t-Timeline-avatar #USER_COLOR#" role="presentation">', ' #USER_AVATAR#', ' </div>', ' <div class="t-Timeline-userinfo">', ' <span class="t-Timeline-username">#USER_NAME#</span>', ' <span class="t-Timeline-date">#EVENT_DATE#</span>', ' </div>', ' </div>', ' <div class="t-Timeline-content">', ' <div class="t-Timeline-typeWrap">', ' <div class="t-Timeline-type #EVENT_STATUS#">', ' <span class="t-Icon #EVENT_ICON#"></span>', ' <span class="t-Timeline-typename">#EVENT_TYPE#</span>', ' </div>', ' </div>', ' <div class="t-Timeline-body">', ' <h3 class="t-Timeline-title">#EVENT_TITLE#</h3>', ' <p class="t-Timeline-desc">#EVENT_DESC#</p>', ' </div>', ' </div>', ' </div>', '</li>')) ,p_row_template_condition1=>':EVENT_LINK is null' ,p_row_template2=>wwv_flow_string.join(wwv_flow_t_varchar2( '<li class="t-Timeline-item #EVENT_MODIFIERS#" #EVENT_ATTRIBUTES#>', ' <a href="#EVENT_LINK#" class="t-Timeline-wrap">', ' <div class="t-Timeline-user">', ' <div class="t-Timeline-avatar #USER_COLOR#" role="presentation">', ' #USER_AVATAR#', ' </div>', ' <div class="t-Timeline-userinfo">', ' <span class="t-Timeline-username">#USER_NAME#</span>', ' <span class="t-Timeline-date">#EVENT_DATE#</span>', ' </div>', ' </div>', ' <div class="t-Timeline-content">', ' <div class="t-Timeline-typeWrap">', ' <div class="t-Timeline-type #EVENT_STATUS#">', ' <span class="t-Icon #EVENT_ICON#"></span>', ' <span class="t-Timeline-typename">#EVENT_TYPE#</span>', ' </div>', ' </div>', ' <div class="t-Timeline-body">', ' <h3 class="t-Timeline-title">#EVENT_TITLE#</h3>', ' <p class="t-Timeline-desc">#EVENT_DESC#</p>', ' </div>', ' </div>', ' </a>', '</li>')) ,p_row_template_before_rows=>wwv_flow_string.join(wwv_flow_t_varchar2( '<ul class="t-Timeline #COMPONENT_CSS_CLASSES#" #REPORT_ATTRIBUTES# id="#REGION_STATIC_ID#_timeline" data-region-id="#REGION_STATIC_ID#">', '')) ,p_row_template_after_rows=>wwv_flow_string.join(wwv_flow_t_varchar2( '</ul>', '<table class="t-Report-pagination" role="presentation">#PAGINATION#</table>')) ,p_row_template_type=>'NAMED_COLUMNS' ,p_row_template_display_cond1=>'NOT_CONDITIONAL' ,p_row_template_display_cond2=>'0' ,p_row_template_display_cond3=>'0' ,p_row_template_display_cond4=>'NOT_CONDITIONAL' ,p_pagination_template=>'<span class="t-Report-paginationText">#TEXT#</span>' ,p_next_page_template=>wwv_flow_string.join(wwv_flow_t_varchar2( '<a href="#LINK#" class="t-Button t-Button--small t-Button--noUI t-Report-paginationLink t-Report-paginationLink--next">', ' #PAGINATION_NEXT#<span class="a-Icon icon-right-arrow" aria-hidden="true"></span>', '</a>')) ,p_previous_page_template=>wwv_flow_string.join(wwv_flow_t_varchar2( '<a href="#LINK#" class="t-Button t-Button--small t-Button--noUI t-Report-paginationLink t-Report-paginationLink--prev">', ' <span class="a-Icon icon-left-arrow" aria-hidden="true"></span>#PAGINATION_PREVIOUS#', '</a>')) ,p_next_set_template=>wwv_flow_string.join(wwv_flow_t_varchar2( '<a href="#LINK#" class="t-Button t-Button--small t-Button--noUI t-Report-paginationLink t-Report-paginationLink--next">', ' #PAGINATION_NEXT_SET#<span class="a-Icon icon-right-arrow" aria-hidden="true"></span>', '</a>')) ,p_previous_set_template=>wwv_flow_string.join(wwv_flow_t_varchar2( '<a href="#LINK#" class="t-Button t-Button--small t-Button--noUI t-Report-paginationLink t-Report-paginationLink--prev">', ' <span class="a-Icon icon-left-arrow" aria-hidden="true"></span>#PAGINATION_PREVIOUS_SET#', '</a>')) ,p_theme_id=>42 ,p_theme_class_id=>7 ,p_reference_id=>1513373588340069864 ,p_translate_this_template=>'N' ); wwv_flow_api.component_end; end; /
/*<NAME> - 2020/12/18 Emmer with polygons.*/ /*SVG drawn using Inkscape,.*/ DECLARE @tt table(id int identity(0,1), label VARCHAR(50), gg GEOMETRY) SET NOCOUNT ON /*Add a point. This point gets layered each time we need to skip*/ DECLARE @g geometry = 'POLYGON((-121.97087 37.372518,-121.97087 37.372518,-121.970863 37.372517,-121.970845 37.372515,-121.97087 37.372518))' DECLARE @i int = 1 WHILE @i <= 960 BEGIN /*You could make this a number table and assign variables for every layer*/ IF @i NOT IN(999999 ,19,39,141,150 ,84,137 ,838,843,49 ,433,539,486 ,15,14,236 ,552,553,180,300 ,644,645,894,367 ) INSERT INTO @tt SELECT @i, @g IF @i in( 84,137) BEGIN INSERT INTO @tt SELECT 'Ligh Grey','POLYGON ((-121.969473 37.365345,-121.96947 37.36522,-121.969463 37.365079,-121.969462 37.365058,-121.969451 37.365029,-121.969452 37.364997,-121.96945 37.364972,-121.969438 37.36496,-121.969391 37.364967,-121.969354 37.364971,-121.968713 37.364974,-121.968612 37.364981,-121.968597 37.364987,-121.968578 37.364995,-121.968564 37.365003,-121.968532 37.365024,-121.968497 37.365041,-121.968434 37.365005,-121.968377 37.364976,-121.968345 37.364969,-121.968291 37.364962,-121.96825 37.364964,-121.968232 37.364966,-121.968174 37.364972,-121.968111 37.364966,-121.968066 37.364964,-121.967925 37.364957,-121.967917 37.365026,-121.967917 37.365078,-121.967916 37.3651,-121.967921 37.365144,-121.967925 37.365229,-121.967935 37.36539,-121.967938 37.365394,-121.96797 37.365407,-121.968007 37.365402,-121.968045 37.365389,-121.968115 37.365364,-121.968143 37.365362,-121.968184 37.365378,-121.968217 37.365386,-121.968251 37.365375,-121.9683 37.36536,-121.968351 37.365345,-121.968443 37.365315,-121.968558 37.365283,-121.96857 37.365286,-121.968566 37.3653,-121.968556 37.365318,-121.968482 37.365358,-121.968465 37.365372,-121.968474 37.365394,-121.968479 37.365396,-121.968495 37.365399,-121.96871 37.365417,-121.968823 37.365412,-121.968905 37.365382,-121.968928 37.365371,-121.968962 37.36536,-121.969019 37.365378,-121.96905 37.365405,-121.969157 37.365426,-121.969297 37.365426,-121.969363 37.365422,-121.969428 37.365419,-121.969438 37.365425,-121.969448 37.365417,-121.969468 37.365359,-121.969473 37.365345),(-121.967469 37.364958,-121.96749 37.36496,-121.967516 37.36498,-121.967517 37.365008,-121.967521 37.365072,-121.967534 37.365244,-121.967533 37.365272,-121.967541 37.365345,-121.967525 37.365398,-121.967508 37.36541,-121.967487 37.365417,-121.966484 37.365405,-121.966445 37.365418,-121.966414 37.36541,-121.966393 37.365394,-121.966395 37.365357,-121.966406 37.365332,-121.966356 37.365342,-121.96633 37.365358,-121.96623 37.365406,-121.966199 37.365413,-121.966132 37.365421,-121.966121 37.365409,-121.966234 37.365292,-121.966278 37.365237,-121.966302 37.365206,-121.966314 37.365192,-121.966334 37.365164,-121.966345 37.365146,-121.966313 37.365157,-121.966292 37.365173,-121.966266 37.365186,-121.966245 37.365197,-121.9662 37.365221,-121.966159 37.365211,-121.966143 37.365219,-121.966115 37.365234,-121.966088 37.365255,-121.966045 37.365275,-121.966002 37.36529,-121.966003 37.365144,-121.965995 37.365015,-121.965997 37.364998,-121.966032 37.364996,-121.966049 37.364999,-121.966563 37.364984,-121.966588 37.364981,-121.966634 37.36498,-121.966653 37.364983,-121.966674 37.364983,-121.966696 37.364983,-121.966761 37.364995,-121.966745 37.365014,-121.966742 37.365046,-121.96679 37.365038,-121.96683 37.365019,-121.966879 37.365014,-121.966947 37.365024,-121.966973 37.36503,-121.967021 37.365016,-121.967042 37.365001,-121.967087 37.364978,-121.967117 37.364975,-121.967132 37.364973,-121.967138 37.364974,-121.967157 37.364957,-121.967166 37.364983,-121.967182 37.36499,-121.967196 37.364992,-121.96721 37.364995,-121.967238 37.364996,-121.967284 37.364979,-121.967347 37.364969,-121.967373 37.364962,-121.96742 37.364958,-121.967434 37.364957,-121.967469 37.364958),(-121.967338 37.365706,-121.967341 37.365779,-121.967348 37.365858,-121.96735 37.365892,-121.967354 37.366201,-121.967351 37.366214,-121.967256 37.366222,-121.967221 37.366223,-121.967192 37.366224,-121.967173 37.366225,-121.967165 37.366227,-121.967166 37.366229,-121.967171 37.366231,-121.967231 37.366234,-121.96724 37.366235,-121.967244 37.366236,-121.967248 37.366237,-121.967252 37.366238,-121.967256 37.366239,-121.967255 37.366259,-121.967255 37.36628,-121.967254 37.366301,-121.967254 37.366322,-121.967252 37.36638,-121.967249 37.366414,-121.967244 37.366429,-121.967234 37.366435,-121.967211 37.366436,-121.967176 37.366434,-121.967143 37.36643,-121.967125 37.366425,-121.967123 37.366415,-121.967128 37.366399,-121.967136 37.366384,-121.967146 37.366374,-121.967149 37.366373,-121.967151 37.366371,-121.967154 37.36637,-121.967157 37.366368,-121.967154 37.366365,-121.967151 37.366362,-121.967148 37.36636,-121.967144 37.366357,-121.967138 37.36635,-121.967135 37.366344,-121.967138 37.36632,-121.967142 37.366314,-121.967151 37.36631,-121.967164 37.366306,-121.967181 37.366299,-121.967188 37.366294,-121.967184 37.36629,-121.967169 37.366289,-121.967161 37.366289,-121.967153 37.366288,-121.967146 37.366286,-121.967142 37.366285,-121.967136 37.366276,-121.967134 37.366262,-121.967136 37.366248,-121.96715 37.366225,-121.967152 37.366222,-121.967147 37.366222,-121.967142 37.366222,-121.967102 37.36622,-121.967094 37.366219,-121.967082 37.366218,-121.967078 37.36622,-121.967081 37.366225,-121.967093 37.366231,-121.9671 37.366234,-121.967105 37.366239,-121.967108 37.366246,-121.967111 37.366257,-121.967111 37.366267,-121.967111 37.366279,-121.967105 37.36638,-121.967103 37.366395,-121.9671 37.366403,-121.967098 37.366407,-121.967095 37.366412,-121.967093 37.366418,-121.967091 37.366424,-121.967089 37.366431,-121.967085 37.366436,-121.967079 37.366438,-121.967026 37.366428,-121.967018 37.366421,-121.967017 37.366418,-121.967015 37.366414,-121.967015 37.366409,-121.967014 37.366405,-121.967011 37.366391,-121.967009 37.366387,-121.967006 37.366383,-121.967004 37.366382,-121.967001 37.366383,-121.966998 37.366387,-121.966996 37.366391,-121.966993 37.366406,-121.96699 37.366416,-121.96698 37.366425,-121.966966 37.366431,-121.966949 37.366433,-121.966926 37.366432,-121.966914 37.366421,-121.96691 37.366391,-121.966909 37.366332,-121.966909 37.366292,-121.96691 37.366262,-121.966912 37.366243,-121.966914 37.366234,-121.966924 37.366229,-121.966954 37.366231,-121.966968 37.366238,-121.966975 37.366242,-121.966979 37.366244,-121.966982 37.366244,-121.966984 37.366241,-121.966991 37.366234,-121.967003 37.366231,-121.967018 37.366232,-121.967031 37.366238,-121.967039 37.366243,-121.967045 37.366245,-121.967051 37.366243,-121.967059 37.366237,-121.96707 37.366226,-121.967065 37.36622,-121.967038 37.366217,-121.966982 37.366216,-121.966974 37.366216,-121.966961 37.366216,-121.966944 37.366216,-121.966927 37.366216,-121.966898 37.366216,-121.96685 37.366216,-121.966789 37.366215,-121.966724 37.366214,-121.966358 37.366211,-121.96627 37.366192,-121.966277 37.365963,-121.966271 37.365903,-121.966256 37.365744,-121.966263 37.365717,-121.966772 37.365706,-121.967279 37.365709,-121.967292 37.365708,-121.967338 37.365706,-121.967338 37.365706),(-121.967306 37.365722,-121.967306 37.365722,-121.967323 37.365713,-121.967328 37.365784,-121.967336 37.365862,-121.967337 37.365896,-121.967335 37.365973,-121.967344 37.366192,-121.967341 37.36621,-121.967033 37.366209,-121.966832 37.366207,-121.966581 37.366202,-121.966538 37.366199,-121.966418 37.366202,-121.966282 37.366177,-121.966285 37.366094,-121.966282 37.365942,-121.966277 37.365819,-121.966282 37.365783,-121.966296 37.365779,-121.967315 37.365784,-121.967307 37.365769,-121.967305 37.365752,-121.967294 37.36575,-121.967287 37.365742,-121.967291 37.365731,-121.967306 37.365722),(-121.966812 37.365934,-121.966812 37.36598,-121.966798 37.365982,-121.966388 37.365978,-121.966383 37.365968,-121.966383 37.365927,-121.966409 37.365927,-121.966812 37.365934),(-121.966403 37.365938,-121.966403 37.365938,-121.966403 37.365938,-121.966794 37.36594,-121.966806 37.365941,-121.966807 37.365955,-121.966806 37.365964,-121.966805 37.365973,-121.966396 37.365965,-121.966385 37.365949,-121.96639 37.365942,-121.966403 37.365938),(-121.966782 37.366017,-121.966809 37.366019,-121.966808 37.366065,-121.966785 37.366071,-121.966404 37.366065,-121.966388 37.366059,-121.96638 37.366044,-121.966383 37.366013,-121.966782 37.366017),(-121.966385 37.366027,-121.966385 37.366027,-121.966385 37.366027,-121.966402 37.366018,-121.966802 37.366033,-121.966805 37.366054,-121.966784 37.36606,-121.966395 37.366046,-121.966388 37.366037,-121.966385 37.366027),(-121.966814 37.366107,-121.966819 37.366132,-121.966816 37.366157,-121.966395 37.366148,-121.966386 37.36614,-121.96638 37.366118,-121.966386 37.3661,-121.966814 37.366107),(-121.966392 37.36612,-121.966393 37.366113,-121.966393 37.366106,-121.966806 37.366115,-121.96681 37.366122,-121.966811 37.366133,-121.966811 37.36614,-121.966811 37.366148,-121.966398 37.36614,-121.966392 37.36612),(-121.966269 37.365741,-121.96628 37.365723,-121.966281 37.36574,-121.966288 37.365748,-121.966311 37.365743,-121.966273 37.365761,-121.966269 37.365741),(-121.967149 37.365749,-121.967149 37.365749,-121.967149 37.365749,-121.967166 37.365748,-121.967184 37.365746,-121.967208 37.36575,-121.967214 37.365768,-121.967158 37.365776,-121.966986 37.365779,-121.966813 37.365775,-121.966716 37.365777,-121.966354 37.365761,-121.966353 37.365747,-121.966745 37.365747,-121.967149 37.365749),(-121.967065 37.366245,-121.967065 37.366245,-121.967065 37.366245,-121.967065 37.366245,-121.967065 37.366245,-121.967074 37.36624,-121.967085 37.366238,-121.967095 37.366238,-121.9671 37.366241,-121.967101 37.366245,-121.967101 37.366252,-121.967101 37.366261,-121.9671 37.366271,-121.967094 37.366374,-121.967091 37.366391,-121.967088 37.366404,-121.967086 37.36641,-121.967084 37.366416,-121.967082 37.366422,-121.96708 37.366429,-121.967074 37.366428,-121.967032 37.366421,-121.967029 37.36642,-121.967027 37.366416,-121.967025 37.366408,-121.967019 37.366384,-121.967012 37.366359,-121.967004 37.366351,-121.966996 37.36636,-121.966987 37.366387,-121.966983 37.366403,-121.966981 37.366412,-121.966979 37.36642,-121.966972 37.36642,-121.966929 37.36642,-121.966922 37.36642,-121.966921 37.366412,-121.96692 37.366405,-121.96692 37.366397,-121.966919 37.366389,-121.966918 37.366373,-121.966918 37.36635,-121.966918 37.366324,-121.966918 37.366298,-121.966918 37.366283,-121.966919 37.366268,-121.966919 37.366253,-121.96692 37.366238,-121.966925 37.366238,-121.96693 37.366238,-121.966955 37.366239,-121.966963 37.366242,-121.966964 37.36625,-121.966961 37.366263,-121.966958 37.366272,-121.966957 37.366287,-121.966958 37.366292,-121.966962 37.366296,-121.966967 37.3663,-121.966971 37.366299,-121.966975 37.366292,-121.966982 37.36627,-121.966996 37.366248,-121.96701 37.36624,-121.967025 37.366247,-121.967039 37.366291,-121.967045 37.366296,-121.967052 37.366296,-121.967057 37.366291,-121.967057 37.366284,-121.967057 37.366256,-121.967058 37.366252,-121.967061 37.366248,-121.967065 37.366245),(-121.967142 37.366259,-121.967142 37.366255,-121.967141 37.366251,-121.967141 37.366247,-121.96714 37.366243,-121.967152 37.366243,-121.967164 37.366243,-121.967225 37.366244,-121.967235 37.366247,-121.967241 37.36625,-121.967244 37.366278,-121.967245 37.366335,-121.967243 37.366392,-121.967239 37.366422,-121.967225 37.366425,-121.967195 37.366427,-121.967162 37.366427,-121.967139 37.366424,-121.967135 37.366422,-121.967132 37.366419,-121.967132 37.366415,-121.967133 37.366408,-121.967138 37.366395,-121.967145 37.366387,-121.967155 37.366383,-121.96717 37.366382,-121.96718 37.366381,-121.967188 37.36638,-121.967194 37.366378,-121.967197 37.366376,-121.967197 37.366369,-121.967191 37.366362,-121.967181 37.366356,-121.967169 37.366353,-121.967163 37.366352,-121.967157 37.366352,-121.967153 37.366351,-121.96715 37.366351,-121.967149 37.36635,-121.967147 37.366346,-121.967147 37.366341,-121.96715 37.366322,-121.967156 37.366318,-121.967167 37.366314,-121.96719 37.366304,-121.967197 37.366293,-121.967189 37.366283,-121.967166 37.366278,-121.967153 37.366276,-121.967147 37.366274,-121.967143 37.366269,-121.967142 37.366259),(-121.967167 37.366366,-121.967168 37.366364,-121.967169 37.366363,-121.96717 37.366361,-121.967172 37.366361,-121.967175 37.366361,-121.967177 37.366363,-121.967179 37.366364,-121.967181 37.366366,-121.967181 37.366368,-121.967181 37.36637,-121.967179 37.366371,-121.967176 37.366371,-121.967172 37.366371,-121.96717 37.36637,-121.967168 37.366368,-121.967167 37.366366),(-121.966646 37.366233,-121.966652 37.36624,-121.966656 37.366254,-121.966657 37.366283,-121.966658 37.366334,-121.966659 37.366395,-121.966654 37.366424,-121.966635 37.366433,-121.966596 37.366434,-121.966564 37.366433,-121.966545 37.36643,-121.966536 37.366421,-121.966533 37.366408,-121.966536 37.366393,-121.966543 37.366381,-121.966554 37.366374,-121.966569 37.366371,-121.966574 37.366371,-121.966579 37.366371,-121.966584 37.366371,-121.966589 37.366371,-121.966583 37.366369,-121.966578 37.366367,-121.966572 37.366365,-121.966567 37.366363,-121.966553 37.366357,-121.966544 37.36635,-121.96654 37.366338,-121.966538 37.36632,-121.966537 37.366309,-121.966539 37.366304,-121.966546 37.366302,-121.966559 37.366301,-121.966578 37.3663,-121.966587 37.366296,-121.966584 37.366291,-121.966569 37.366287,-121.966551 37.366284,-121.96654 37.366279,-121.966534 37.366272,-121.96653 37.36626,-121.96653 37.366244,-121.966538 37.366233,-121.966556 37.366228,-121.966589 37.366226,-121.966612 37.366226,-121.966628 37.366227,-121.966639 37.366229,-121.966646 37.366233,-121.966646 37.366233,-121.966646 37.366233,-121.966646 37.366233,-121.966646 37.366233),(-121.966543 37.36624,-121.966543 37.36624,-121.966543 37.36624,-121.966543 37.36624,-121.966543 37.36624,-121.966558 37.366236,-121.96659 37.366235,-121.966622 37.366236,-121.966641 37.366239,-121.966643 37.366243,-121.966645 37.366251,-121.966647 37.366263,-121.966648 37.366277,-121.966648 37.366323,-121.966649 37.366369,-121.966649 37.366406,-121.966648 37.366421,-121.966644 37.366422,-121.966635 37.366423,-121.966621 37.366424,-121.966604 37.366425,-121.966582 37.366426,-121.966567 37.366426,-121.966557 37.366424,-121.96655 37.366419,-121.966544 37.366414,-121.966541 37.366409,-121.966541 37.366403,-121.966543 37.366396,-121.966547 37.366389,-121.966551 37.366384,-121.966557 37.366382,-121.966566 37.366382,-121.966579 37.36638,-121.966588 37.366376,-121.966595 37.36637,-121.966597 37.366363,-121.966596 37.36636,-121.966592 37.366358,-121.966587 37.366356,-121.966581 37.366356,-121.966567 37.366353,-121.966555 37.366346,-121.966547 37.366335,-121.966544 37.366322,-121.966545 37.366316,-121.966547 37.366312,-121.966554 37.36631,-121.966565 37.36631,-121.966579 37.366308,-121.966591 37.366303,-121.966599 37.366295,-121.966602 37.366286,-121.966601 37.366283,-121.966598 37.366281,-121.966592 37.366279,-121.966584 37.366279,-121.966565 37.366277,-121.966551 37.366273,-121.966542 37.366266,-121.966539 37.366257,-121.966539 37.366252,-121.96654 37.366247,-121.966541 37.366243,-121.966543 37.36624),(-121.966483 37.366232,-121.966488 37.366238,-121.96649 37.366242,-121.966488 37.366246,-121.966483 37.366251,-121.966479 37.366256,-121.966477 37.366263,-121.966476 37.366272,-121.966478 37.366283,-121.966479 37.366295,-121.96648 37.366308,-121.96648 37.366322,-121.96648 37.366334,-121.966481 37.366349,-121.966483 37.366358,-121.966489 37.366364,-121.9665 37.36637,-121.96651 37.366375,-121.966517 37.366381,-121.96652 37.366387,-121.966522 37.366397,-121.966521 37.366417,-121.966512 37.366429,-121.96649 37.366434,-121.966451 37.366434,-121.966407 37.366433,-121.966385 37.366429,-121.966376 37.366422,-121.966375 37.366407,-121.966376 37.36639,-121.966379 37.366379,-121.966385 37.366373,-121.966394 37.366371,-121.966405 37.366368,-121.966412 37.366357,-121.966416 37.366334,-121.966418 37.366295,-121.96642 37.36627,-121.966422 37.366251,-121.966424 37.366237,-121.966427 37.36623,-121.966439 37.366224,-121.966455 37.366222,-121.966471 37.366225,-121.966483 37.366232,-121.966483 37.366232,-121.966483 37.366232,-121.966483 37.366232,-121.966483 37.366232),(-121.966428 37.366297,-121.966428 37.366297,-121.966428 37.366297,-121.966428 37.366297,-121.966428 37.366297,-121.966428 37.366282,-121.966429 37.366266,-121.96643 37.366251,-121.96643 37.366235,-121.966435 37.366235,-121.96644 37.366234,-121.966445 37.366234,-121.96645 37.366233,-121.966455 37.366233,-121.966459 37.366233,-121.966464 37.366232,-121.966469 37.366232,-121.966469 37.366241,-121.966469 37.366249,-121.966469 37.366258,-121.966469 37.366267,-121.96647 37.366303,-121.966471 37.366335,-121.966474 37.366358,-121.966477 37.366369,-121.966479 37.366372,-121.966484 37.366374,-121.96649 37.366377,-121.966496 37.366378,-121.966505 37.36638,-121.96651 37.366384,-121.966512 37.366391,-121.966512 37.366402,-121.966511 37.366415,-121.966507 37.366422,-121.966497 37.366425,-121.96648 37.366425,-121.96647 37.366425,-121.966456 37.366425,-121.96644 37.366424,-121.966423 37.366424,-121.966414 37.366423,-121.966404 37.366423,-121.966394 37.366423,-121.966385 37.366423,-121.966385 37.366417,-121.966386 37.366412,-121.966386 37.366406,-121.966386 37.366401,-121.966388 37.36639,-121.96639 37.366383,-121.966394 37.366379,-121.9664 37.366377,-121.966412 37.366373,-121.96642 37.366361,-121.966425 37.366337,-121.966428 37.366297),(-121.966882 37.366241,-121.966884 37.366248,-121.966885 37.366259,-121.966884 37.366271,-121.966883 37.366286,-121.966881 37.366299,-121.96688 37.366313,-121.966879 37.366324,-121.966878 37.366333,-121.966877 37.366359,-121.966874 37.36639,-121.966871 37.366415,-121.966869 37.366428,-121.966865 37.36643,-121.966857 37.366432,-121.966847 37.366433,-121.966834 37.366433,-121.966814 37.366432,-121.966801 37.366427,-121.966794 37.366417,-121.966792 37.366401,-121.966791 37.366391,-121.966787 37.366382,-121.966783 37.366377,-121.966779 37.366377,-121.966777 37.366381,-121.966775 37.366387,-121.966772 37.366396,-121.966769 37.366405,-121.966765 37.366418,-121.966761 37.366426,-121.966755 37.366431,-121.966745 37.366434,-121.966731 37.366435,-121.966714 37.366434,-121.966699 37.366431,-121.966691 37.366426,-121.966691 37.36642,-121.966691 37.366404,-121.96669 37.366381,-121.966689 37.366353,-121.966688 37.366324,-121.966687 37.366296,-121.966685 37.366274,-121.966684 37.36626,-121.966684 37.366244,-121.966688 37.366234,-121.9667 37.366229,-121.966718 37.366229,-121.966731 37.36623,-121.966738 37.366232,-121.966742 37.366235,-121.966744 37.366241,-121.966746 37.36625,-121.966749 37.366252,-121.966754 37.366249,-121.966761 37.36624,-121.966773 37.366231,-121.966787 37.366227,-121.966801 37.366229,-121.966814 37.366236,-121.966819 37.36624,-121.966824 37.366241,-121.966829 37.36624,-121.966835 37.366236,-121.96685 37.366229,-121.966864 37.366227,-121.966875 37.366231,-121.966882 37.366241),(-121.966697 37.36633,-121.966697 37.36633,-121.966697 37.36633,-121.966697 37.36633,-121.966697 37.36633,-121.966696 37.366295,-121.966696 37.366266,-121.966696 37.366246,-121.966697 37.366237,-121.966699 37.366236,-121.966703 37.366236,-121.966709 37.366236,-121.966715 37.366236,-121.966725 37.36624,-121.966733 37.366248,-121.966738 37.366261,-121.966739 37.366276,-121.966741 37.366285,-121.966745 37.366289,-121.966749 37.366287,-121.966753 37.36628,-121.966762 37.366258,-121.966769 37.366245,-121.966778 37.366239,-121.966788 37.366239,-121.966797 37.36624,-121.966802 37.366243,-121.966806 37.366247,-121.96681 37.366279,-121.966815 37.366289,-121.966822 37.366293,-121.96683 37.366289,-121.966834 37.366253,-121.966837 37.366245,-121.966841 37.36624,-121.966847 37.366238,-121.966857 37.366239,-121.966868 37.36624,-121.966873 37.366248,-121.966873 37.366275,-121.966869 37.36633,-121.966867 37.366354,-121.966866 37.366376,-121.966865 37.366393,-121.966865 37.366404,-121.966865 37.366411,-121.966863 37.366416,-121.966859 37.36642,-121.966852 37.366423,-121.96683 37.366427,-121.966813 37.366423,-121.966802 37.366411,-121.966798 37.366392,-121.966796 37.366376,-121.966791 37.366361,-121.966789 37.366349,-121.966783 37.366344,-121.96678 37.366345,-121.966778 37.366347,-121.966777 37.36635,-121.966776 37.366353,-121.966772 37.36636,-121.96677 37.36637,-121.966768 37.366381,-121.966764 37.366393,-121.966756 37.366413,-121.966746 37.366424,-121.966732 37.366428,-121.966715 37.366424,-121.966711 37.366423,-121.966707 37.366422,-121.966703 37.366421,-121.9667 37.366419,-121.966699 37.366397,-121.966698 37.366375,-121.966698 37.366352,-121.966697 37.36633),(-121.964918 37.367101,-121.964904 37.367056,-121.964891 37.366994,-121.964898 37.366911,-121.964918 37.366982,-121.964926 37.367005,-121.964951 37.367058,-121.964997 37.367116,-121.965076 37.367162,-121.965157 37.367184,-121.965276 37.367196,-121.965358 37.36719,-121.965431 37.367158,-121.965525 37.367102,-121.96559 37.36704,-121.965622 37.366981,-121.965619 37.367044,-121.965605 37.367091,-121.965526 37.367222,-121.965524 37.367208,-121.965514 37.367205,-121.965474 37.36722,-121.965374 37.367236,-121.965257 37.367256,-121.965166 37.36727,-121.96505 37.367265,-121.96501 37.367232,-121.964952 37.367177,-121.964918 37.367101),(-121.965495 37.367136,-121.965556 37.367099,-121.965526 37.367143,-121.965486 37.367185,-121.965394 37.367226,-121.965322 37.367243,-121.965161 37.367226,-121.965121 37.3672,-121.965107 37.367182,-121.965207 37.367197,-121.965354 37.367201,-121.965495 37.367136),(-121.968079 37.366947,-121.96808 37.36695,-121.968079 37.366954,-121.968078 37.366959,-121.968077 37.366965,-121.968071 37.367051,-121.968073 37.367117,-121.968076 37.367177,-121.968079 37.367205,-121.96808 37.367208,-121.968083 37.367309,-121.968083 37.367324,-121.968068 37.367326,-121.96805 37.367326,-121.968032 37.367326,-121.968015 37.367326,-121.967997 37.367326,-121.96793 37.367327,-121.967877 37.367328,-121.967839 37.367328,-121.96782 37.367329,-121.967754 37.36733,-121.967638 37.367329,-121.967525 37.367327,-121.96747 37.367326,-121.967463 37.367322,-121.96746 37.367311,-121.967459 37.367283,-121.967466 37.36699,-121.967468 37.366976,-121.967467 37.366959,-121.967478 37.366959,-121.967486 37.366954,-121.96754 37.366947,-121.968032 37.366945,-121.968056 37.366945,-121.968072 37.366946,-121.968079 37.366947,-121.968079 37.366947,-121.968079 37.366947,-121.968079 37.366947,-121.968079 37.366947),(-121.967726 37.367012,-121.96775 37.367004,-121.96778 37.367001,-121.967808 37.367002,-121.967827 37.367008,-121.967835 37.367017,-121.967838 37.367029,-121.967836 37.367043,-121.967828 37.367057,-121.967822 37.367063,-121.967815 37.367067,-121.967805 37.36707,-121.967792 37.36707,-121.96777 37.367072,-121.967752 37.367076,-121.967736 37.367085,-121.967719 37.367098,-121.96771 37.367108,-121.967705 37.367115,-121.967703 37.367123,-121.967704 37.367131,-121.967704 37.367138,-121.967703 37.367146,-121.967701 37.367155,-121.967697 37.367164,-121.967692 37.367173,-121.967686 37.367179,-121.967678 37.367182,-121.967667 37.367183,-121.967659 37.367183,-121.967651 37.367183,-121.967645 37.367182,-121.967642 37.36718,-121.967635 37.367159,-121.967639 37.367132,-121.967647 37.367103,-121.967653 37.36708,-121.967661 37.367066,-121.96768 37.367046,-121.967703 37.367026,-121.967726 37.367012),(-121.967869 37.367118,-121.967875 37.367112,-121.967881 37.367107,-121.967887 37.367103,-121.967892 37.367102,-121.967911 37.367119,-121.967916 37.367159,-121.967909 37.367205,-121.967889 37.36724,-121.967868 37.367259,-121.967852 37.367272,-121.967841 37.36728,-121.967811 37.36729,-121.967802 37.36729,-121.967792 37.36729,-121.967781 37.367289,-121.967771 37.367289,-121.967762 37.367288,-121.967755 37.367288,-121.967744 37.367282,-121.967735 37.36727,-121.96773 37.367255,-121.967733 37.367241,-121.967736 37.367237,-121.96774 37.367233,-121.967745 37.36723,-121.96775 37.367228,-121.967789 37.367221,-121.967813 37.367214,-121.967827 37.367206,-121.967839 37.367194,-121.967846 37.367184,-121.967851 37.367175,-121.967853 37.367165,-121.967854 37.367154,-121.967855 37.367144,-121.967858 37.367135,-121.967862 37.367126,-121.967869 37.367118),(-121.969493 37.367549,-121.969497 37.367558,-121.969492 37.367591,-121.969486 37.367615,-121.96948 37.36765,-121.969473 37.367684,-121.969461 37.367735,-121.969451 37.367778,-121.969446 37.367819,-121.969436 37.367902,-121.969407 37.367925,-121.969394 37.367928,-121.969207 37.36792,-121.969188 37.36792,-121.969213 37.367879,-121.969225 37.367853,-121.969236 37.367826,-121.969244 37.367806,-121.969235 37.367792,-121.969212 37.367777,-121.969195 37.367793,-121.969179 37.367806,-121.969169 37.367816,-121.969165 37.367822,-121.969159 37.367829,-121.969154 37.367842,-121.96914 37.367865,-121.969118 37.367882,-121.9691 37.367897,-121.96908 37.367894,-121.969064 37.367884,-121.969037 37.367856,-121.969023 37.367843,-121.969007 37.367866,-121.968982 37.367893,-121.96897 37.3679,-121.968951 37.367909,-121.968918 37.367913,-121.968914 37.367986,-121.968913 37.36807,-121.968875 37.368071,-121.968844 37.36807,-121.968834 37.368044,-121.968827 37.368033,-121.968815 37.368026,-121.968803 37.368023,-121.96878 37.368033,-121.968768 37.368054,-121.968741 37.368071,-121.968654 37.368072,-121.968558 37.368073,-121.968559 37.368048,-121.968558 37.367998,-121.968558 37.36795,-121.968557 37.367927,-121.968523 37.367923,-121.968413 37.367923,-121.968249 37.367924,-121.968058 37.367925,-121.96783 37.367916,-121.967827 37.367841,-121.96783 37.367541,-121.967938 37.367542,-121.968127 37.367541,-121.968976 37.367536,-121.969488 37.367537,-121.969488 37.367537,-121.969493 37.367549),(-121.967765 37.367538,-121.967759 37.367848,-121.967761 37.367927,-121.967747 37.367926,-121.967631 37.367927,-121.967486 37.367924,-121.967483 37.367918,-121.967478 37.367909,-121.967471 37.367895,-121.967476 37.367871,-121.967489 37.367802,-121.967523 37.367717,-121.967564 37.367647,-121.967577 37.367623,-121.967572 37.36762,-121.967566 37.367616,-121.967538 37.367633,-121.967505 37.367653,-121.967412 37.367725,-121.967346 37.367811,-121.967335 37.367827,-121.967214 37.367915,-121.96713 37.367926,-121.967037 37.367932,-121.967014 37.367954,-121.967015 37.36802,-121.967017 37.368087,-121.966658 37.368088,-121.96666 37.368045,-121.966662 37.368005,-121.966659 37.367923,-121.966617 37.367925,-121.966545 37.367929,-121.966427 37.367936,-121.96626 37.367943,-121.96617 37.367947,-121.966161 37.367895,-121.966098 37.367612,-121.966097 37.367573,-121.966191 37.367572,-121.966274 37.36757,-121.966351 37.367568,-121.966428 37.367565,-121.96651 37.367563,-121.9668 37.367556,-121.96708 37.367552,-121.967118 37.367551,-121.967136 37.367551,-121.967136 37.367569,-121.967161 37.367599,-121.967177 37.367618,-121.96727 37.36757,-121.967278 37.367567,-121.967291 37.367559,-121.967338 37.367558,-121.967539 37.367549,-121.967747 37.367538,-121.967765 37.367538),(-121.966409 37.367807,-121.966428 37.367791,-121.966441 37.367781,-121.96646 37.367791,-121.966495 37.367816,-121.966512 37.367832,-121.966511 37.367845,-121.966501 37.367857,-121.966486 37.367868,-121.966443 37.367876,-121.966403 37.367852,-121.966393 37.367842,-121.966383 37.367832,-121.966396 37.367819,-121.966409 37.367807),(-121.968904 37.368121,-121.968914 37.368142,-121.968916 37.368249,-121.968916 37.36831,-121.968916 37.368371,-121.96891 37.368373,-121.968905 37.368374,-121.968887 37.368375,-121.968861 37.368373,-121.968845 37.368372,-121.968829 37.36837,-121.968829 37.368356,-121.96883 37.368342,-121.968839 37.368147,-121.968843 37.368131,-121.968861 37.368123,-121.968886 37.368116,-121.968904 37.368121,-121.968904 37.368121,-121.968904 37.368121),(-121.968742 37.36813,-121.968753 37.368138,-121.968747 37.368316,-121.968745 37.36835,-121.968742 37.368367,-121.96872 37.368372,-121.968663 37.368375,-121.968609 37.368377,-121.968585 37.368379,-121.968579 37.36838,-121.968569 37.368377,-121.968561 37.368375,-121.968554 37.368372,-121.968555 37.368314,-121.968556 37.368255,-121.968559 37.368159,-121.968566 37.368132,-121.968649 37.368127,-121.968742 37.36813),(-121.967019 37.368168,-121.967019 37.368267,-121.967019 37.368327,-121.96702 37.368389,-121.966982 37.36839,-121.966774 37.368393,-121.966701 37.368392,-121.966686 37.368393,-121.966668 37.368391,-121.966668 37.36836,-121.966663 37.368268,-121.966661 37.368207,-121.96666 37.368146,-121.966708 37.368146,-121.967019 37.368143,-121.967019 37.368168),(-121.967023 37.368437,-121.967028 37.368801,-121.967029 37.368857,-121.967029 37.368866,-121.967012 37.368875,-121.966926 37.368965,-121.966892 37.369012,-121.96686 37.369083,-121.966933 37.369035,-121.967027 37.368945,-121.967033 37.369054,-121.967033 37.369162,-121.967056 37.369162,-121.967122 37.36916,-121.967247 37.369158,-121.967549 37.369151,-121.967627 37.369149,-121.967474 37.369502,-121.967454 37.369501,-121.967392 37.3695,-121.96725 37.369499,-121.967152 37.369499,-121.96706 37.369498,-121.967032 37.369533,-121.967037 37.36972,-121.967042 37.370121,-121.967049 37.370262,-121.967015 37.370276,-121.966776 37.370274,-121.966758 37.370276,-121.966723 37.370271,-121.966698 37.370261,-121.966681 37.370231,-121.96668 37.370094,-121.966695 37.369965,-121.966705 37.369904,-121.966725 37.369861,-121.966734 37.369798,-121.966703 37.369742,-121.966689 37.36973,-121.966675 37.369717,-121.966675 37.369672,-121.966675 37.369626,-121.966668 37.369558,-121.966665 37.36953,-121.966653 37.369529,-121.966643 37.369527,-121.966563 37.369532,-121.966471 37.369534,-121.966458 37.369481,-121.966427 37.36932,-121.966406 37.369174,-121.96646 37.369171,-121.966586 37.369165,-121.966665 37.36916,-121.966666 37.369108,-121.966666 37.369055,-121.966669 37.368961,-121.966691 37.36884,-121.966714 37.368731,-121.966728 37.368697,-121.966734 37.368679,-121.966672 37.368644,-121.966668 37.368551,-121.966667 37.368444,-121.967023 37.368437),(-121.9686 37.36864,-121.968603 37.368682,-121.968658 37.36876,-121.968675 37.368773,-121.968673 37.368812,-121.968669 37.36887,-121.968674 37.368909,-121.968696 37.368936,-121.968727 37.368943,-121.968748 37.368942,-121.968762 37.368938,-121.968773 37.368933,-121.968785 37.368928,-121.968807 37.368898,-121.968815 37.368819,-121.96882 37.368785,-121.968858 37.368767,-121.968873 37.368761,-121.968894 37.368735,-121.968915 37.368708,-121.968916 37.368732,-121.968919 37.368811,-121.968914 37.368946,-121.968911 37.369093,-121.968925 37.369134,-121.969002 37.369141,-121.969119 37.369137,-121.969173 37.369148,-121.96921 37.369156,-121.969201 37.369236,-121.969171 37.369431,-121.969148 37.369487,-121.969145 37.369496,-121.969103 37.369503,-121.969024 37.369502,-121.968939 37.369502,-121.968929 37.369505,-121.968919 37.369508,-121.96892 37.369542,-121.968921 37.369576,-121.968922 37.369609,-121.968923 37.369643,-121.96891 37.369649,-121.968898 37.369655,-121.968876 37.369681,-121.968856 37.369704,-121.968871 37.36971,-121.968887 37.36972,-121.968919 37.369736,-121.96892 37.36976,-121.968897 37.36981,-121.968842 37.369887,-121.968816 37.369915,-121.968805 37.369928,-121.968802 37.369935,-121.968795 37.369945,-121.968795 37.369964,-121.9688 37.370007,-121.968811 37.370029,-121.968814 37.370043,-121.968796 37.370057,-121.968756 37.370078,-121.968729 37.370091,-121.968702 37.370104,-121.968702 37.370115,-121.968701 37.370126,-121.968704 37.370137,-121.968707 37.37015,-121.968746 37.370133,-121.968785 37.370114,-121.968814 37.370091,-121.968852 37.370067,-121.96888 37.370043,-121.968924 37.370028,-121.96893 37.370107,-121.968932 37.370161,-121.968937 37.370194,-121.968956 37.370229,-121.968867 37.370258,-121.968631 37.370257,-121.9686 37.370257,-121.968578 37.370235,-121.968575 37.370151,-121.968573 37.370019,-121.96857 37.369833,-121.968567 37.369662,-121.968567 37.369565,-121.968559 37.369529,-121.968553 37.369511,-121.968531 37.369508,-121.9685 37.369505,-121.968458 37.369503,-121.968424 37.369497,-121.968407 37.369494,-121.968393 37.369492,-121.968398 37.369483,-121.968413 37.369444,-121.968418 37.36942,-121.968384 37.369422,-121.968345 37.369443,-121.968314 37.36946,-121.968249 37.369479,-121.968152 37.369509,-121.968145 37.369493,-121.968139 37.369478,-121.968121 37.369438,-121.967994 37.36915,-121.968276 37.369145,-121.96848 37.369142,-121.968557 37.369139,-121.968566 37.369131,-121.968565 37.369114,-121.968563 37.369041,-121.968561 37.36889,-121.968561 37.368788,-121.96856 37.368685,-121.968567 37.36868,-121.968573 37.368676,-121.968584 37.368617,-121.968559 37.368533,-121.96857 37.36843,-121.968595 37.368432,-121.968598 37.36846,-121.9686 37.36864))' END If @i in (552,553,180,300) BEGIN INSERT INTO @tt SELECT 'Orange', 'POLYGON ((-121.969515 37.363594,-121.969515 37.363594,-121.967857 37.363607,-121.96785 37.363617,-121.967832 37.363663,-121.967857 37.365307,-121.967865 37.365506,-121.967904 37.365524,-121.967923 37.365541,-121.967935 37.365559,-121.96799 37.365544,-121.969136 37.36551,-121.969179 37.3655,-121.9692 37.365488,-121.969215 37.365481,-121.969159 37.365476,-121.969136 37.365476,-121.969059 37.365452,-121.968997 37.36542,-121.968981 37.365407,-121.96893 37.365402,-121.968772 37.365458,-121.968747 37.365459,-121.968715 37.36546,-121.968694 37.365461,-121.968602 37.365446,-121.968579 37.365446,-121.968568 37.365449,-121.968487 37.365415,-121.968479 37.365396,-121.968474 37.365394,-121.968465 37.365372,-121.968482 37.365358,-121.968454 37.365373,-121.968394 37.365384,-121.96834 37.365393,-121.968308 37.365399,-121.968287 37.365406,-121.968251 37.36541,-121.968206 37.365416,-121.968165 37.365409,-121.968139 37.365412,-121.968116 37.365409,-121.968102 37.365397,-121.968085 37.365415,-121.968059 37.365427,-121.968037 37.365427,-121.968008 37.365425,-121.967968 37.365421,-121.967987 37.365416,-121.968008 37.365409,-121.968007 37.365402,-121.967969 37.365407,-121.967938 37.365394,-121.967924 37.36538,-121.967913 37.365367,-121.967891 37.365338,-121.967907 37.365308,-121.967886 37.365273,-121.967886 37.365204,-121.967885 37.365123,-121.967893 37.364978,-121.967904 37.364965,-121.967908 37.365,-121.967916 37.365045,-121.967918 37.365014,-121.967923 37.364972,-121.967925 37.364957,-121.967966 37.364933,-121.968182 37.364931,-121.968266 37.36493,-121.968391 37.364945,-121.968413 37.364957,-121.968452 37.364976,-121.968483 37.364985,-121.968531 37.364977,-121.968579 37.36496,-121.969403 37.364939,-121.969424 37.364946,-121.96945 37.364972,-121.969452 37.364991,-121.969452 37.364997,-121.969451 37.36502,-121.969451 37.365029,-121.969462 37.365058,-121.969473 37.365344,-121.969482 37.365078,-121.969527 37.363744,-121.96953 37.3636,-121.969515 37.363594),(-121.967567 37.36366,-121.967577 37.364022,-121.967574 37.365148,-121.967572 37.365167,-121.967574 37.365229,-121.967573 37.365402,-121.96758 37.365487,-121.967511 37.365566,-121.967482 37.365573,-121.967429 37.365561,-121.966017 37.365577,-121.965992 37.365578,-121.965975 37.365569,-121.965966 37.365561,-121.96595 37.365383,-121.965946 37.365171,-121.965942 37.365087,-121.965876 37.363673,-121.965889 37.363654,-121.965932 37.363635,-121.967563 37.363607,-121.967567 37.36366),(-121.967512 37.36362,-121.967545 37.363615,-121.967545 37.363615,-121.967512 37.36362),(-121.967403 37.364938,-121.967403 37.364939,-121.96747 37.364935,-121.967496 37.364961,-121.96749 37.36496,-121.967516 37.36498,-121.967517 37.365008,-121.967526 37.364994,-121.967549 37.365239,-121.967539 37.365243,-121.967537 37.365249,-121.967536 37.365265,-121.967538 37.365268,-121.96755 37.365301,-121.967541 37.365345,-121.967535 37.365365,-121.967525 37.365398,-121.967508 37.36541,-121.967487 37.365417,-121.967484 37.365422,-121.96748 37.365426,-121.967429 37.365443,-121.967378 37.36544,-121.966486 37.365443,-121.966455 37.365446,-121.966439 37.365446,-121.966425 37.365444,-121.966402 37.365439,-121.966363 37.365418,-121.966322 37.365409,-121.966306 37.365412,-121.966289 37.365415,-121.966263 37.365421,-121.966241 37.36543,-121.966182 37.365439,-121.966132 37.365422,-121.966121 37.365409,-121.966127 37.365366,-121.966134 37.365342,-121.966136 37.365332,-121.966154 37.365312,-121.96617 37.365293,-121.966177 37.36529,-121.966175 37.365286,-121.966169 37.365278,-121.966146 37.365272,-121.966099 37.365288,-121.966082 37.365296,-121.96605 37.365301,-121.966041 37.365277,-121.966035 37.365278,-121.966016 37.365284,-121.966005 37.365295,-121.965995 37.365301,-121.965984 37.365287,-121.965971 37.365239,-121.965964 37.365175,-121.96596 37.365093,-121.965955 37.36502,-121.965957 37.365005,-121.96596 37.364998,-121.965984 37.364981,-121.966125 37.364959,-121.966555 37.364944,-121.966649 37.364949,-121.966766 37.364975,-121.966761 37.364985,-121.966759 37.364994,-121.966765 37.364997,-121.966774 37.364988,-121.966792 37.364981,-121.966816 37.364981,-121.96684 37.364982,-121.966926 37.364987,-121.966947 37.364986,-121.966993 37.364979,-121.96704 37.364971,-121.967101 37.364944,-121.967175 37.364941,-121.967253 37.364938,-121.967374 37.364937,-121.967403 37.364938),(-121.969473 37.365354,-121.969476 37.365463,-121.969471 37.365541,-121.969457 37.365539,-121.969431 37.365535,-121.969398 37.365523,-121.969342 37.365494,-121.969331 37.365486,-121.969313 37.365486,-121.969305 37.365464,-121.969411 37.365448,-121.969419 37.365443,-121.969438 37.365439,-121.969438 37.365425,-121.969448 37.365417,-121.969469 37.365358,-121.969473 37.365345,-121.969473 37.365354),(-121.969459 37.366078,-121.969467 37.366106,-121.969452 37.366793,-121.96945 37.366754,-121.969436 37.366742,-121.969413 37.366758,-121.96939 37.366751,-121.969305 37.366699,-121.968729 37.366687,-121.968287 37.366701,-121.968247 37.366702,-121.968023 37.366703,-121.967975 37.366713,-121.967952 37.366677,-121.967946 37.366071,-121.96795 37.366036,-121.96797 37.366056,-121.968 37.366083,-121.968003 37.366086,-121.968001 37.36609,-121.968047 37.366109,-121.968095 37.366114,-121.968112 37.366116,-121.969303 37.366089,-121.969375 37.366059,-121.969387 37.366062,-121.969401 37.366075,-121.969432 37.366043,-121.969459 37.366078),(-121.967508 37.366026,-121.967512 37.366717,-121.967475 37.366716,-121.967231 37.36671,-121.966977 37.366699,-121.966991 37.366679,-121.967006 37.366589,-121.967013 37.366504,-121.967185 37.366496,-121.967369 37.366484,-121.967419 37.366402,-121.967429 37.366344,-121.967434 37.366304,-121.967454 37.366169,-121.967457 37.366151,-121.967474 37.366088,-121.967482 37.366073,-121.967491 37.366052,-121.9675 37.366029,-121.967508 37.366026),(-121.967899 37.366036,-121.96792 37.366695,-121.967907 37.366706,-121.967608 37.366709,-121.967563 37.3667,-121.967556 37.366378,-121.96756 37.366065,-121.967573 37.366073,-121.967612 37.366106,-121.967625 37.366113,-121.967739 37.366145,-121.967747 37.366145,-121.967846 37.366107,-121.967859 37.366086,-121.967881 37.366049,-121.967899 37.366036,-121.967899 37.366036),(-121.96606 37.366124,-121.966126 37.366136,-121.966134 37.36614,-121.966142 37.366145,-121.966158 37.366153,-121.966169 37.366163,-121.966174 37.366182,-121.966185 37.366205,-121.966196 37.36625,-121.966211 37.366354,-121.966267 37.366483,-121.966441 37.366497,-121.966602 37.366505,-121.966611 37.366584,-121.966618 37.366678,-121.966619 37.366713,-121.966475 37.366719,-121.966333 37.366724,-121.966287 37.366728,-121.966192 37.366755,-121.96616 37.36677,-121.966139 37.366778,-121.966068 37.366766,-121.966026 37.366703,-121.96602 37.366688,-121.966016 37.366677,-121.966003 37.366487,-121.965999 37.366263,-121.966004 37.366193,-121.966023 37.366131,-121.966042 37.366132,-121.96606 37.366124),(-121.970024 37.366461,-121.970015 37.366489,-121.96998 37.366484,-121.96992 37.36649,-121.9698 37.366605,-121.969756 37.36668,-121.969729 37.366767,-121.9697 37.366856,-121.969704 37.366964,-121.969714 37.367071,-121.969722 37.367111,-121.969711 37.367096,-121.969699 37.367076,-121.969689 37.366771,-121.96975 37.366627,-121.969962 37.366446,-121.970002 37.366439,-121.970017 37.366436,-121.970024 37.366461),(-121.965488 37.36648,-121.965524 37.366488,-121.965625 37.366533,-121.965725 37.366592,-121.96581 37.366726,-121.965812 37.366755,-121.965818 37.366788,-121.965797 37.36675,-121.965707 37.366619,-121.965606 37.366531,-121.96554 37.366523,-121.965498 37.366527,-121.965489 37.366506,-121.965488 37.366486,-121.965488 37.36648),(-121.970686 37.366536,-121.970718 37.366544,-121.970765 37.366598,-121.970751 37.366608,-121.970717 37.366589,-121.970678 37.366574,-121.970652 37.366566,-121.970636 37.366668,-121.97062 37.366771,-121.970602 37.366761,-121.970593 37.366742,-121.970626 37.366626,-121.970649 37.366525,-121.970686 37.366536),(-121.964864 37.366633,-121.964864 37.366659,-121.964841 37.366665,-121.96479 37.36668,-121.964772 37.366689,-121.964742 37.366727,-121.964699 37.36681,-121.964691 37.36682,-121.96469 37.366812,-121.964699 37.366773,-121.964713 37.366733,-121.964721 37.366718,-121.964745 37.366697,-121.964822 37.366631,-121.96485 37.366613,-121.964861 37.36656,-121.964864 37.366633),(-121.969426 37.366886,-121.969439 37.366894,-121.969438 37.367362,-121.969434 37.367361,-121.968713 37.367361,-121.968089 37.367367,-121.967376 37.367374,-121.966281 37.367387,-121.966068 37.367392,-121.966063 37.367386,-121.966061 37.366961,-121.966118 37.366916,-121.966305 37.366926,-121.966611 37.366934,-121.966595 37.366938,-121.966523 37.366945,-121.966456 37.367058,-121.966456 37.367327,-121.96668 37.367354,-121.966921 37.367332,-121.966932 37.367236,-121.966938 37.367092,-121.966931 37.36697,-121.966876 37.366942,-121.966847 37.366923,-121.967421 37.36692,-121.967445 37.366923,-121.967428 37.366929,-121.967315 37.366937,-121.967083 37.36695,-121.96706 37.36712,-121.967075 37.367344,-121.967121 37.367352,-121.967161 37.367355,-121.967183 37.367333,-121.967204 37.367298,-121.967235 37.367246,-121.967311 37.367309,-121.967357 37.367355,-121.967443 37.367355,-121.967603 37.367355,-121.9681 37.367346,-121.968287 37.367342,-121.968442 37.367328,-121.968451 37.3673,-121.96846 37.367007,-121.968427 37.366934,-121.968381 37.366918,-121.96828 37.366917,-121.968335 37.366902,-121.968388 37.366899,-121.968616 37.366894,-121.969014 37.366887,-121.969255 37.366883,-121.969369 37.366879,-121.969426 37.366886,-121.969426 37.366886),(-121.969282 37.366905,-121.969298 37.366891,-121.969313 37.366907,-121.969328 37.366924,-121.969358 37.367032,-121.96937 37.367173,-121.969372 37.367207,-121.969365 37.36726,-121.96933 37.36732,-121.969284 37.367327,-121.969225 37.367329,-121.96921 37.367313,-121.969196 37.36729,-121.969193 37.367274,-121.969188 37.36711,-121.969186 37.366955,-121.9692 37.366939,-121.969241 37.366921,-121.969282 37.366905),(-121.968916 37.366933,-121.968916 37.366933,-121.969015 37.36692,-121.969033 37.366924,-121.969056 37.366956,-121.969061 37.366996,-121.969065 37.367048,-121.969064 37.36722,-121.969061 37.367261,-121.969024 37.367326,-121.968609 37.36733,-121.968586 37.367219,-121.968584 37.36705,-121.96858 37.366967,-121.968614 37.366931,-121.968658 37.366925,-121.968739 37.366957,-121.968759 37.366966,-121.968797 37.366979,-121.968843 37.366981,-121.968886 37.366957,-121.968916 37.366933),(-121.966181 37.36696,-121.966232 37.366943,-121.966321 37.366962,-121.966329 37.367077,-121.966303 37.367344,-121.966245 37.367353,-121.96616 37.367332,-121.966163 37.36711,-121.966165 37.367052,-121.966181 37.36696),(-121.968253 37.366911,-121.968177 37.366928,-121.968097 37.366919,-121.968074 37.366907,-121.968162 37.366907,-121.968253 37.366911,-121.968253 37.366911),(-121.966742 37.366932,-121.966717 37.366937,-121.9667 37.366932,-121.966742 37.366932),(-121.965526 37.367222,-121.965518 37.367237,-121.965409 37.367305,-121.965379 37.367324,-121.965334 37.367337,-121.965278 37.367342,-121.965164 37.367331,-121.965061 37.367278,-121.96505 37.367265,-121.965079 37.367266,-121.965203 37.367328,-121.965285 37.367332,-121.965342 37.367326,-121.965526 37.367222),(-121.969918 37.367383,-121.969918 37.367397,-121.969892 37.367416,-121.969877 37.367429,-121.969877 37.367524,-121.969882 37.367632,-121.969946 37.36766,-121.969982 37.367676,-121.969999 37.367688,-121.970037 37.36771,-121.970119 37.367742,-121.970198 37.367742,-121.970245 37.367723,-121.970313 37.367708,-121.970391 37.367661,-121.970406 37.36763,-121.97041 37.367626,-121.97041 37.36764,-121.970401 37.367659,-121.970392 37.367667,-121.970347 37.367711,-121.970309 37.36773,-121.970176 37.36777,-121.970084 37.367766,-121.969956 37.3677,-121.969899 37.367663,-121.969845 37.367585,-121.969859 37.367378,-121.969837 37.367307,-121.96983 37.367282,-121.969868 37.367329,-121.969918 37.367383),(-121.967887 37.367332,-121.967874 37.367332,-121.967881 37.367329,-121.967887 37.367332),(-121.967664 37.367333,-121.967659 37.367338,-121.967654 37.367333,-121.967659 37.367328,-121.967664 37.367333),(-121.967718 37.367337,-121.967708 37.367336,-121.967715 37.367334,-121.967718 37.367337,-121.967718 37.367337),(-121.969526 37.367377,-121.969548 37.36738,-121.969573 37.367375,-121.969586 37.367378,-121.969585 37.367428,-121.969594 37.367459,-121.969598 37.367439,-121.969603 37.367395,-121.969597 37.367639,-121.969567 37.367796,-121.969532 37.367989,-121.969498 37.368177,-121.969453 37.368424,-121.969413 37.368648,-121.969357 37.368956,-121.969321 37.369157,-121.969305 37.369242,-121.969276 37.369406,-121.969228 37.369671,-121.969173 37.369978,-121.969156 37.370052,-121.969151 37.370105,-121.96914 37.370119,-121.969114 37.370193,-121.969061 37.370281,-121.968963 37.370338,-121.96893 37.370347,-121.968742 37.370361,-121.968553 37.37037,-121.968546 37.370463,-121.968542 37.370545,-121.968529 37.370558,-121.968467 37.370609,-121.968228 37.370631,-121.96811 37.370642,-121.96813 37.370652,-121.968169 37.370664,-121.968208 37.370667,-121.968212 37.370662,-121.968224 37.370657,-121.968241 37.370653,-121.96835 37.370649,-121.968441 37.37065,-121.968314 37.37067,-121.968203 37.370677,-121.968026 37.370687,-121.967945 37.370683,-121.967898 37.370683,-121.967869 37.370682,-121.967881 37.370666,-121.967903 37.370647,-121.967885 37.370633,-121.967762 37.370624,-121.967627 37.370631,-121.967366 37.370623,-121.967281 37.370613,-121.967096 37.370586,-121.967032 37.370487,-121.967022 37.370453,-121.967019 37.370523,-121.967016 37.370458,-121.96701 37.370387,-121.96678 37.370378,-121.966644 37.370374,-121.966666 37.370358,-121.966601 37.370348,-121.966505 37.370274,-121.966465 37.370161,-121.966447 37.370115,-121.966399 37.369952,-121.966366 37.369792,-121.966355 37.369743,-121.966333 37.369628,-121.966403 37.369996,-121.966198 37.368987,-121.966071 37.368347,-121.966007 37.368038,-121.965984 37.367922,-121.965963 37.367825,-121.965936 37.367699,-121.965933 37.367606,-121.965947 37.367534,-121.965968 37.367423,-121.96599 37.367427,-121.966039 37.367426,-121.966681 37.367413,-121.967315 37.367408,-121.967779 37.367405,-121.967723 37.367442,-121.967687 37.367475,-121.967664 37.367479,-121.967576 37.367494,-121.966204 37.367526,-121.966187 37.367524,-121.966171 37.367526,-121.966123 37.367547,-121.966082 37.367578,-121.966077 37.367671,-121.966083 37.367721,-121.966106 37.367809,-121.966112 37.367843,-121.966123 37.367886,-121.966128 37.367908,-121.966158 37.367966,-121.966224 37.367987,-121.966288 37.367994,-121.966302 37.368002,-121.966308 37.368002,-121.96636 37.368024,-121.966346 37.368023,-121.966333 37.368026,-121.966295 37.368036,-121.966241 37.368059,-121.966235 37.36813,-121.966242 37.368214,-121.966251 37.368218,-121.966259 37.368228,-121.966251 37.368239,-121.966247 37.368267,-121.966258 37.368302,-121.96627 37.36834,-121.966284 37.368385,-121.96631 37.368471,-121.96642 37.368482,-121.966499 37.368477,-121.966519 37.368483,-121.966544 37.368491,-121.966592 37.368505,-121.966618 37.368598,-121.966635 37.368651,-121.966634 37.368667,-121.966641 37.368689,-121.966648 37.368753,-121.966615 37.368969,-121.966615 37.369068,-121.96661 37.369082,-121.966602 37.369096,-121.96655 37.369111,-121.966418 37.369127,-121.966369 37.369196,-121.966403 37.369404,-121.966437 37.369504,-121.966449 37.369529,-121.966483 37.369556,-121.966515 37.369563,-121.96655 37.369568,-121.96657 37.369576,-121.966624 37.369643,-121.966639 37.369735,-121.966664 37.369761,-121.966674 37.369783,-121.96667 37.369805,-121.966643 37.369937,-121.966647 37.370146,-121.966651 37.370199,-121.966657 37.37022,-121.966667 37.370245,-121.966674 37.370164,-121.96668 37.370094,-121.966681 37.370231,-121.966698 37.370261,-121.966723 37.370271,-121.966758 37.370276,-121.966776 37.370274,-121.967015 37.370276,-121.967049 37.370262,-121.967066 37.370258,-121.967078 37.370225,-121.967093 37.370192,-121.967109 37.370173,-121.967149 37.370164,-121.967141 37.370184,-121.967126 37.37027,-121.967323 37.370283,-121.967498 37.370277,-121.967502 37.370271,-121.96817 37.370267,-121.968182 37.370267,-121.968336 37.370275,-121.96849 37.370273,-121.968496 37.370258,-121.968503 37.370175,-121.968487 37.370127,-121.968482 37.370116,-121.968457 37.370079,-121.968245 37.369605,-121.96823 37.369572,-121.968235 37.36955,-121.968351 37.369499,-121.968436 37.36954,-121.96844 37.369544,-121.968466 37.369547,-121.968505 37.369573,-121.96852 37.370116,-121.968519 37.370123,-121.968515 37.370127,-121.96851 37.370134,-121.968514 37.370142,-121.968523 37.370154,-121.968565 37.37024,-121.968572 37.370231,-121.968577 37.370222,-121.968578 37.370235,-121.9686 37.370258,-121.968867 37.370258,-121.968956 37.370229,-121.968943 37.370205,-121.968961 37.370121,-121.968951 37.370052,-121.968932 37.37002,-121.968915 37.370008,-121.968895 37.370001,-121.968879 37.369993,-121.968861 37.369966,-121.968882 37.369906,-121.968929 37.369823,-121.968944 37.369784,-121.968946 37.36973,-121.968949 37.369637,-121.968959 37.369616,-121.968996 37.369547,-121.96907 37.369533,-121.969124 37.369525,-121.969148 37.369506,-121.969171 37.369479,-121.969223 37.369213,-121.969214 37.369124,-121.969189 37.369113,-121.96899 37.36908,-121.968968 37.369056,-121.968969 37.368927,-121.968969 37.368818,-121.968969 37.368765,-121.968975 37.368697,-121.968985 37.368575,-121.968997 37.368556,-121.969003 37.368549,-121.969002 37.368491,-121.969004 37.368479,-121.969018 37.368458,-121.969029 37.368456,-121.969157 37.36845,-121.96933 37.368435,-121.969355 37.368384,-121.969363 37.368349,-121.969392 37.368124,-121.969403 37.368036,-121.96935 37.368015,-121.969318 37.368012,-121.96929 37.368011,-121.96915 37.368023,-121.969083 37.368027,-121.968968 37.368024,-121.968977 37.368005,-121.969008 37.36794,-121.969021 37.367932,-121.969065 37.367926,-121.969101 37.367922,-121.96913 37.367916,-121.969159 37.367922,-121.96917 37.367934,-121.969179 37.367947,-121.969313 37.367961,-121.969363 37.36796,-121.969385 37.367961,-121.969424 37.367929,-121.969406 37.367928,-121.969394 37.367928,-121.969407 37.367925,-121.969436 37.367902,-121.969434 37.36791,-121.969438 37.367922,-121.969445 37.36791,-121.969456 37.367873,-121.969498 37.367645,-121.969503 37.367565,-121.969498 37.367558,-121.969488 37.367537,-121.969483 37.367519,-121.969466 37.367512,-121.969303 37.367487,-121.968004 37.367486,-121.967965 37.367486,-121.967936 37.367477,-121.967907 37.367469,-121.967879 37.367456,-121.96786 37.367426,-121.967879 37.3674,-121.967986 37.367398,-121.969366 37.367386,-121.969476 37.367396,-121.969496 37.367395,-121.969504 37.367385,-121.969505 37.367379,-121.969473 37.367376,-121.969443 37.367376,-121.969479 37.36737,-121.969526 37.367377,-121.969526 37.367377),(-121.967651 37.370379,-121.967651 37.370379,-121.968483 37.370378,-121.9685 37.370402,-121.968453 37.370544,-121.968184 37.370589,-121.968103 37.3706,-121.967927 37.370615,-121.967892 37.370596,-121.967847 37.370578,-121.967664 37.37058,-121.967529 37.370589,-121.967278 37.370549,-121.967127 37.370492,-121.967083 37.370415,-121.96709 37.3704,-121.967651 37.370379),(-121.965666 37.36741,-121.965677 37.367511,-121.965684 37.367617,-121.965634 37.3677,-121.965588 37.367732,-121.965495 37.367794,-121.96534 37.367822,-121.965236 37.367797,-121.965165 37.367776,-121.965112 37.367724,-121.965101 37.36769,-121.965099 37.367676,-121.965095 37.367633,-121.965078 37.36754,-121.965083 37.36754,-121.965113 37.367683,-121.965204 37.367774,-121.96529 37.367789,-121.965338 37.367801,-121.965405 37.367783,-121.96549 37.367762,-121.965543 37.367732,-121.965593 37.367699,-121.965627 37.367679,-121.965651 37.367633,-121.965653 37.36759,-121.965649 37.367459,-121.965645 37.367418,-121.965664 37.367396,-121.965692 37.367365,-121.965666 37.36741),(-121.967401 37.367837,-121.967406 37.367852,-121.967418 37.367858,-121.967431 37.367857,-121.967434 37.367888,-121.967457 37.367935,-121.967482 37.367964,-121.967534 37.367973,-121.967698 37.368009,-121.967706 37.36801,-121.967715 37.368036,-121.967723 37.368814,-121.967617 37.36907,-121.967581 37.3691,-121.967541 37.369097,-121.967482 37.369099,-121.967417 37.3691,-121.967131 37.369107,-121.967092 37.369082,-121.967075 37.369028,-121.967065 37.368989,-121.967056 37.368977,-121.967048 37.368951,-121.967046 37.368897,-121.967069 37.368833,-121.967093 37.368485,-121.967265 37.368476,-121.967337 37.368456,-121.967378 37.368164,-121.967375 37.368058,-121.967323 37.368038,-121.967204 37.368033,-121.967161 37.368038,-121.967146 37.368049,-121.967133 37.368035,-121.967112 37.368024,-121.967111 37.367998,-121.967133 37.368004,-121.967154 37.367999,-121.967374 37.367853,-121.967379 37.367843,-121.967387 37.36783,-121.967397 37.367827,-121.967401 37.367837),(-121.968404 37.367974,-121.968407 37.367975,-121.968419 37.367978,-121.968436 37.367985,-121.968449 37.367995,-121.968459 37.367992,-121.96847 37.367988,-121.968483 37.367998,-121.968478 37.368007,-121.968473 37.368019,-121.968437 37.368033,-121.968285 37.368044,-121.968264 37.368094,-121.968284 37.368385,-121.968294 37.368434,-121.968385 37.368459,-121.96843 37.368464,-121.96847 37.368471,-121.968484 37.368478,-121.968499 37.368477,-121.968511 37.36847,-121.968513 37.368504,-121.968534 37.368591,-121.968545 37.36862,-121.968539 37.36864,-121.968504 37.36874,-121.96851 37.368775,-121.968507 37.36905,-121.968025 37.369094,-121.967985 37.369033,-121.967891 37.368823,-121.967887 37.368025,-121.967903 37.367984,-121.967948 37.367987,-121.968404 37.367974),(-121.966536 37.367995,-121.966565 37.368029,-121.966432 37.368036,-121.966375 37.36803,-121.9664 37.368017,-121.966444 37.368012,-121.966481 37.368002,-121.966499 37.367997,-121.966506 37.367993,-121.966536 37.367995,-121.966536 37.367995),(-121.969262 37.368144,-121.969272 37.368169,-121.969249 37.36827,-121.969246 37.368281,-121.969248 37.36833,-121.969225 37.368334,-121.969079 37.368329,-121.969032 37.368336,-121.969015 37.368346,-121.968995 37.368326,-121.968983 37.368271,-121.968986 37.368262,-121.968983 37.368245,-121.968978 37.368216,-121.96898 37.368168,-121.968987 37.368161,-121.96903 37.368155,-121.969083 37.368151,-121.969262 37.368144),(-121.96843 37.368149,-121.968463 37.368154,-121.968488 37.368169,-121.968494 37.368185,-121.968494 37.368275,-121.968486 37.368294,-121.968481 37.368323,-121.96846 37.368342,-121.968427 37.368343,-121.968414 37.368318,-121.968409 37.3683,-121.968405 37.36829,-121.968396 37.368181,-121.968402 37.368154,-121.96843 37.368149,-121.96843 37.368149),(-121.967232 37.36816,-121.967238 37.368187,-121.967235 37.368258,-121.967236 37.368313,-121.967231 37.368329,-121.967204 37.368347,-121.967193 37.368353,-121.96717 37.368353,-121.967136 37.368351,-121.96708 37.368323,-121.967074 37.368287,-121.967084 37.368263,-121.967076 37.368209,-121.967085 37.368179,-121.967126 37.368171,-121.967167 37.368167,-121.967232 37.36816,-121.967232 37.36816),(-121.966403 37.368172,-121.966424 37.368182,-121.966448 37.368184,-121.966473 37.368179,-121.966522 37.368174,-121.96657 37.368199,-121.966578 37.36823,-121.966595 37.368317,-121.966536 37.368355,-121.96651 37.368346,-121.96648 37.368353,-121.966455 37.368358,-121.966447 37.368354,-121.966424 37.368359,-121.96641 37.368355,-121.966431 37.36835,-121.966443 37.368336,-121.96643 37.36834,-121.966417 37.368341,-121.966407 37.368329,-121.966402 37.368321,-121.966397 37.368309,-121.966395 37.368281,-121.966387 37.368185,-121.966403 37.368172,-121.966403 37.368172),(-121.969217 37.369175,-121.969214 37.369181,-121.969214 37.369169,-121.969217 37.369175),(-121.967297 37.369546,-121.967374 37.369563,-121.967381 37.369582,-121.967379 37.369613,-121.967364 37.369656,-121.967177 37.370052,-121.967152 37.370101,-121.967133 37.37013,-121.967095 37.370161,-121.9671 37.370148,-121.9671 37.370131,-121.9671 37.369574,-121.967122 37.369552,-121.967297 37.369546),(-121.968925 37.369741,-121.968925 37.369749,-121.96892 37.369744,-121.968925 37.369741),(-121.967631 37.370657,-121.967669 37.370675,-121.967628 37.370683,-121.967506 37.370676,-121.967488 37.370671,-121.967509 37.370664,-121.967631 37.370657),(-121.968618 37.370703,-121.968689 37.370713,-121.968739 37.370729,-121.968787 37.370757,-121.968894 37.37083,-121.968934 37.370856,-121.968982 37.370961,-121.96899 37.371253,-121.968994 37.3713,-121.968988 37.371509,-121.968996 37.371564,-121.968993 37.371563,-121.968988 37.371544,-121.968979 37.371536,-121.968971 37.371528,-121.968945 37.371535,-121.968869 37.371605,-121.968772 37.372031,-121.968701 37.372183,-121.968517 37.372176,-121.968069 37.372153,-121.967665 37.372187,-121.967173 37.372272,-121.966819 37.372315,-121.966785 37.372275,-121.966768 37.372183,-121.966734 37.371709,-121.966644 37.371539,-121.966595 37.371469,-121.966586 37.371011,-121.966604 37.370993,-121.966688 37.370872,-121.966851 37.370793,-121.966867 37.370776,-121.966893 37.370758,-121.967228 37.370742,-121.96744 37.370737,-121.96755 37.370731,-121.967828 37.370721,-121.967936 37.370716,-121.968037 37.370711,-121.968305 37.370698,-121.968618 37.370703),(-121.968371 37.370833,-121.968502 37.370828,-121.968593 37.370838,-121.968668 37.370844,-121.968726 37.370852,-121.968786 37.370867,-121.968874 37.370912,-121.968909 37.37094,-121.968958 37.371019,-121.968964 37.37123,-121.968957 37.37144,-121.96893 37.37147,-121.96891 37.371503,-121.968874 37.371563,-121.968833 37.371691,-121.968768 37.372028,-121.968714 37.372154,-121.968619 37.372166,-121.968391 37.372143,-121.968235 37.372139,-121.968002 37.372139,-121.967705 37.372156,-121.967384 37.372215,-121.967263 37.372241,-121.967046 37.372279,-121.966837 37.372297,-121.966799 37.372268,-121.966776 37.37201,-121.966758 37.371753,-121.966709 37.371583,-121.966676 37.371461,-121.966671 37.37142,-121.966664 37.371049,-121.966745 37.370986,-121.966771 37.370976,-121.966816 37.370963,-121.966864 37.37095,-121.967022 37.370909,-121.967062 37.370901,-121.967199 37.370884,-121.967543 37.370855,-121.968239 37.37084,-121.968371 37.370833))' END IF @i IN (433,539,486) BEGIN INSERT INTO @tt SELECT 'Outer Flame','POLYGON ((-121.970023 37.366515,-121.970023 37.366515,-121.970023 37.366515,-121.970024 37.366481,-121.970024 37.366461,-121.970015 37.366489,-121.969976 37.366484,-121.969949 37.366487,-121.96992 37.36649,-121.969867 37.36654,-121.9698 37.366605,-121.969779 37.36664,-121.969756 37.36668,-121.9697 37.366856,-121.969703 37.366962,-121.969714 37.367071,-121.969717 37.367088,-121.969722 37.367111,-121.969773 37.367209,-121.969874 37.367335,-121.969918 37.367383,-121.969918 37.367397,-121.969906 37.367405,-121.969892 37.367416,-121.969885 37.367423,-121.969877 37.367429,-121.969877 37.367477,-121.969877 37.367524,-121.969879 37.367595,-121.969882 37.367632,-121.969907 37.367642,-121.969946 37.36766,-121.969965 37.367668,-121.969982 37.367676,-121.969992 37.367685,-121.969999 37.367688,-121.970012 37.367695,-121.970037 37.36771,-121.970075 37.367726,-121.970119 37.367742,-121.970157 37.367741,-121.970198 37.367742,-121.970225 37.367733,-121.970245 37.367723,-121.970274 37.367715,-121.970313 37.367708,-121.970352 37.367684,-121.970391 37.367661,-121.970401 37.367639,-121.970406 37.36763,-121.97041 37.367626,-121.970412 37.367613,-121.970423 37.367532,-121.97044 37.367469,-121.970452 37.367463,-121.970473 37.367454,-121.970632 37.367367,-121.97076 37.367239,-121.970863 37.366958,-121.970808 37.366667,-121.970781 37.366618,-121.970765 37.366598,-121.970759 37.366603,-121.970751 37.366608,-121.970706 37.366584,-121.970652 37.366566,-121.970645 37.366604,-121.970634 37.366678,-121.97062 37.366771,-121.970629 37.366798,-121.970636 37.366828,-121.970643 37.366958,-121.970616 37.367053,-121.970573 37.367127,-121.970492 37.367211,-121.97036 37.367272,-121.970259 37.367279,-121.97019 37.367272,-121.970166 37.367269,-121.970088 37.367222,-121.970024 37.367171,-121.969949 37.367069,-121.969922 37.366947,-121.969932 37.366837,-121.969982 37.366731,-121.969998 37.366696,-121.97001 37.366636,-121.970018 37.366573,-121.970023 37.366515),(-121.965498 37.366527,-121.96554 37.366523,-121.965568 37.366527,-121.965606 37.366531,-121.965707 37.366619,-121.965795 37.366745,-121.965808 37.366772,-121.965818 37.366788,-121.965836 37.366853,-121.965843 37.366976,-121.965841 37.367061,-121.965829 37.367118,-121.965767 37.367267,-121.965671 37.367391,-121.965658 37.367404,-121.965644 37.367417,-121.965646 37.367438,-121.965649 37.367459,-121.965652 37.367515,-121.965653 37.36759,-121.965651 37.367633,-121.965627 37.367679,-121.965593 37.367699,-121.965543 37.367732,-121.96549 37.367762,-121.965405 37.367783,-121.965362 37.367796,-121.965338 37.367801,-121.96532 37.367798,-121.96529 37.367789,-121.965204 37.367774,-121.965113 37.367683,-121.965091 37.367584,-121.965083 37.36754,-121.965079 37.36754,-121.965078 37.36754,-121.96509 37.367612,-121.965069 37.367539,-121.965055 37.367523,-121.965003 37.367496,-121.964913 37.367445,-121.96484 37.367383,-121.964714 37.367198,-121.964672 37.366973,-121.964678 37.366869,-121.964691 37.36682,-121.964699 37.36681,-121.964713 37.366783,-121.964742 37.366727,-121.964772 37.366689,-121.96479 37.36668,-121.964821 37.36667,-121.964849 37.366662,-121.964863 37.366657,-121.964877 37.366708,-121.964897 37.366816,-121.964901 37.366858,-121.964897 37.366901,-121.964891 37.366994,-121.964904 37.367056,-121.964918 37.367101,-121.964952 37.367177,-121.96501 37.367232,-121.96505 37.367265,-121.965061 37.367278,-121.965164 37.367331,-121.965278 37.367342,-121.965334 37.367337,-121.965379 37.367324,-121.965518 37.367237,-121.965606 37.367092,-121.965619 37.367044,-121.965622 37.366981,-121.965612 37.366887,-121.965575 37.366807,-121.965556 37.366776,-121.965541 37.366753,-121.965518 37.366671,-121.96549 37.366527,-121.965489 37.366506,-121.965498 37.366527),(-121.968483 37.370378,-121.9685 37.370402,-121.968453 37.370544,-121.968341 37.370563,-121.968184 37.370589,-121.968103 37.3706,-121.96801 37.370607,-121.967927 37.370615,-121.96791 37.370606,-121.967892 37.370596,-121.967866 37.370585,-121.967847 37.370578,-121.967759 37.370579,-121.967664 37.37058,-121.967581 37.370586,-121.967529 37.370589,-121.967386 37.370567,-121.967278 37.370549,-121.967127 37.370492,-121.967083 37.370415,-121.967085 37.370407,-121.96709 37.3704,-121.967139 37.370399,-121.967642 37.370379,-121.967909 37.370377,-121.968483 37.370378),(-121.968502 37.370828,-121.968585 37.370836,-121.968668 37.370844,-121.968726 37.370852,-121.968786 37.370867,-121.968874 37.370912,-121.968909 37.370941,-121.968958 37.371019,-121.968962 37.371087,-121.968964 37.37123,-121.968957 37.37144,-121.968941 37.371459,-121.96893 37.37147,-121.968893 37.371531,-121.968874 37.371563,-121.968833 37.371691,-121.968779 37.372002,-121.968772 37.372031,-121.968714 37.372154,-121.968619 37.372166,-121.968391 37.372143,-121.968235 37.372139,-121.968113 37.37214,-121.968002 37.372139,-121.967705 37.372156,-121.967384 37.372215,-121.967315 37.372231,-121.967263 37.372241,-121.967046 37.37228,-121.966837 37.372297,-121.966799 37.372268,-121.966776 37.37201,-121.966758 37.371753,-121.966709 37.371583,-121.96669 37.371512,-121.966676 37.371461,-121.966671 37.37142,-121.966664 37.371049,-121.966745 37.370986,-121.966786 37.370969,-121.966883 37.370943,-121.967023 37.370905,-121.967199 37.370884,-121.967543 37.370855,-121.967931 37.370844,-121.968239 37.37084,-121.968378 37.370833,-121.968502 37.370828),(-121.968035 37.371597,-121.968068 37.371594,-121.9681 37.371591,-121.968129 37.371599,-121.968159 37.371607,-121.968172 37.371622,-121.968185 37.371637,-121.968198 37.371652,-121.968211 37.371667,-121.968214 37.37171,-121.968218 37.371753,-121.968202 37.371783,-121.968186 37.371813,-121.968163 37.371828,-121.968139 37.371843,-121.968115 37.37185,-121.968091 37.371858,-121.968063 37.371851,-121.968034 37.371844,-121.968014 37.371833,-121.967993 37.371822,-121.967984 37.37181,-121.967975 37.371798,-121.967967 37.371786,-121.967958 37.371774,-121.967956 37.371751,-121.967953 37.371728,-121.967955 37.371701,-121.967957 37.371674,-121.967971 37.371647,-121.967985 37.371621,-121.96801 37.371609,-121.968035 37.371597),(-121.967397 37.371601,-121.967408 37.371598,-121.967419 37.371595,-121.967432 37.371594,-121.967445 37.371593,-121.967458 37.371595,-121.96747 37.371596,-121.967481 37.371599,-121.967492 37.371603,-121.967513 37.371617,-121.967533 37.371632,-121.967547 37.371652,-121.967561 37.371672,-121.967568 37.371696,-121.967574 37.371719,-121.967571 37.371743,-121.967568 37.371767,-121.967564 37.37178,-121.967559 37.371792,-121.967555 37.371801,-121.967551 37.371809,-121.967546 37.371816,-121.967541 37.371823,-121.967532 37.371831,-121.967524 37.371839,-121.967502 37.371854,-121.96748 37.371868,-121.967457 37.371871,-121.967434 37.371874,-121.967411 37.371865,-121.967387 37.371856,-121.967364 37.371836,-121.96734 37.371816,-121.967334 37.371808,-121.967328 37.371801,-121.967324 37.371794,-121.96732 37.371788,-121.967317 37.37178,-121.967315 37.371772,-121.967312 37.371761,-121.96731 37.37175,-121.967309 37.371739,-121.967309 37.371727,-121.96731 37.371715,-121.967311 37.371703,-121.967315 37.371691,-121.967318 37.371679,-121.967323 37.371667,-121.967328 37.371656,-121.967333 37.371648,-121.967339 37.371641,-121.967347 37.371633,-121.967356 37.371626,-121.967366 37.371619,-121.967376 37.371612,-121.967386 37.371606,-121.967397 37.371601))' END IF @i IN(15,14,236) BEGIN INSERT INTO @tt SELECT 'Blue', 'POLYGON ((-121.970522 37.367771,-121.97052 37.367758,-121.970514 37.367748,-121.970512 37.367751,-121.970474 37.367791,-121.970442 37.367802,-121.970376 37.367823,-121.970295 37.367835,-121.969926 37.367792,-121.969843 37.367786,-121.96983 37.367796,-121.969797 37.367867,-121.969758 37.36816,-121.969739 37.368257,-121.969733 37.368372,-121.969742 37.368461,-121.969754 37.368508,-121.969748 37.36858,-121.969743 37.368619,-121.969681 37.368835,-121.969644 37.368966,-121.969621 37.369006,-121.9696 37.36904,-121.969573 37.36906,-121.96955 37.369072,-121.969522 37.36913,-121.9695 37.369178,-121.969477 37.369203,-121.969448 37.369227,-121.969386 37.369284,-121.969355 37.369319,-121.969333 37.369363,-121.969154 37.370089,-121.96919 37.370098,-121.969253 37.370111,-121.969306 37.370115,-121.969358 37.370115,-121.969398 37.370112,-121.969471 37.370093,-121.969537 37.370066,-121.969598 37.37003,-121.969653 37.369985,-121.969684 37.369951,-121.969715 37.369911,-121.969794 37.369781,-121.970268 37.368937,-121.970303 37.368857,-121.970327 37.368778,-121.970353 37.368668,-121.970511 37.367862,-121.97052 37.367805,-121.970522 37.367771),(-121.965735 37.367834,-121.965747 37.367846,-121.965752 37.367886,-121.965761 37.367971,-121.965772 37.368023,-121.96578 37.368069,-121.965792 37.368148,-121.965816 37.368306,-121.965825 37.368403,-121.965823 37.368434,-121.965796 37.368564,-121.965793 37.368594,-121.965807 37.368673,-121.965894 37.368955,-121.96591 37.368998,-121.965934 37.369046,-121.965958 37.369086,-121.966107 37.369303,-121.966121 37.369319,-121.966146 37.369348,-121.966198 37.369421,-121.966252 37.369569,-121.966283 37.369679,-121.966308 37.369746,-121.966335 37.369833,-121.966351 37.369929,-121.966362 37.370014,-121.966352 37.370084,-121.966332 37.370111,-121.96635 37.370119,-121.966407 37.37012,-121.96634 37.370125,-121.966108 37.370122,-121.965979 37.370072,-121.965878 37.369995,-121.965839 37.369946,-121.965782 37.36986,-121.965691 37.369711,-121.965549 37.369471,-121.965515 37.369412,-121.965481 37.369355,-121.965452 37.369305,-121.965431 37.36927,-121.965301 37.36905,-121.965231 37.368886,-121.965174 37.368725,-121.96512 37.368475,-121.965001 37.367838,-121.965013 37.367848,-121.965035 37.367853,-121.965077 37.367866,-121.965189 37.367888,-121.96532 37.367888,-121.965357 37.367885,-121.965427 37.367875,-121.9655 37.367863,-121.965578 37.367845,-121.965677 37.367828,-121.965735 37.367834,-121.965735 37.367834),(-121.968884 37.368466,-121.968882 37.368553,-121.968873 37.368639,-121.968858 37.368693,-121.968825 37.368715,-121.968768 37.368723,-121.968736 37.368722,-121.968715 37.368718,-121.968683 37.368693,-121.968662 37.368654,-121.968659 37.368548,-121.968668 37.368458,-121.968694 37.368452,-121.968725 37.368461,-121.968728 37.368524,-121.968732 37.368594,-121.968759 37.368619,-121.968785 37.368618,-121.968806 37.368597,-121.968814 37.368573,-121.968816 37.368524,-121.968818 37.368476,-121.968825 37.368459,-121.968857 37.368447,-121.968884 37.368456,-121.968884 37.368466),(-121.968689 37.368784,-121.968717 37.368791,-121.968807 37.368792,-121.96882 37.368785,-121.968818 37.368795,-121.968813 37.368835,-121.968807 37.368898,-121.968785 37.368928,-121.968762 37.368938,-121.968727 37.368943,-121.968696 37.368936,-121.968674 37.368909,-121.968671 37.368889,-121.968671 37.368841,-121.968675 37.368788,-121.968675 37.368773,-121.968689 37.368784),(-121.967815 37.368886,-121.967834 37.368931,-121.967862 37.369152,-121.96787 37.369358,-121.967855 37.369606,-121.967765 37.369815,-121.967678 37.369943,-121.967626 37.369913,-121.967553 37.369858,-121.967475 37.369799,-121.967427 37.369761,-121.96744 37.369727,-121.967637 37.369262,-121.967658 37.369211,-121.967687 37.36917,-121.967692 37.369384,-121.967685 37.369649,-121.967675 37.369719,-121.967725 37.369646,-121.96774 37.369605,-121.967741 37.369314,-121.967743 37.369023,-121.967767 37.368965,-121.967791 37.368898,-121.967797 37.368883,-121.967815 37.368886),(-121.967931 37.369147,-121.967973 37.36925,-121.968173 37.369694,-121.968185 37.369717,-121.968195 37.369742,-121.968131 37.369808,-121.968033 37.369892,-121.967977 37.369936,-121.96792 37.369872,-121.967874 37.369815,-121.967878 37.369731,-121.967922 37.369597,-121.967934 37.369381,-121.967926 37.369244,-121.96792 37.369178,-121.967931 37.369147),(-121.968243 37.369845,-121.968262 37.36989,-121.968272 37.369912,-121.968295 37.369964,-121.96843 37.370249,-121.968406 37.370251,-121.96827 37.370255,-121.968183 37.370178,-121.968168 37.370183,-121.968004 37.370001,-121.968019 37.37,-121.968042 37.369994,-121.968227 37.369818,-121.968243 37.369845),(-121.967424 37.369846,-121.967513 37.369926,-121.967616 37.37002,-121.967473 37.370186,-121.967401 37.370259,-121.967357 37.370258,-121.967316 37.370253,-121.967226 37.370242,-121.967292 37.370078,-121.967399 37.36983,-121.967424 37.369846))' END IF @i IN (838,843,49) BEGIN INSERT INTO @tt SELECT 'Dark Orange', 'POLYGON ((-121.969403 37.364939,-121.968579 37.36496,-121.968483 37.364985,-121.968467 37.36498,-121.968452 37.364976,-121.968413 37.364957,-121.968391 37.364945,-121.968266 37.36493,-121.968182 37.364931,-121.968063 37.364929,-121.967966 37.364933,-121.967925 37.364957,-121.968017 37.364964,-121.968066 37.364964,-121.968103 37.364961,-121.968132 37.364975,-121.968292 37.364962,-121.968345 37.364969,-121.968377 37.364976,-121.968434 37.365005,-121.968497 37.365041,-121.968532 37.365024,-121.968612 37.36498,-121.968698 37.364974,-121.969183 37.364974,-121.969354 37.364971,-121.969438 37.36496,-121.969426 37.364947,-121.969403 37.364939),(-121.96747 37.364935,-121.967496 37.364961,-121.967434 37.364957,-121.96742 37.364958,-121.967373 37.364962,-121.967347 37.364969,-121.967284 37.364979,-121.967238 37.364996,-121.96721 37.364995,-121.967183 37.36499,-121.967166 37.36498,-121.967157 37.364957,-121.96714 37.364971,-121.967132 37.364973,-121.967117 37.364975,-121.967091 37.364978,-121.967043 37.364999,-121.967022 37.365016,-121.966973 37.36503,-121.966947 37.365024,-121.966879 37.365014,-121.96683 37.365019,-121.96679 37.365038,-121.966742 37.365046,-121.966747 37.365013,-121.966766 37.364994,-121.966695 37.364983,-121.966673 37.364983,-121.966653 37.364984,-121.966636 37.364981,-121.966048 37.364999,-121.966032 37.364996,-121.965997 37.364998,-121.965995 37.365015,-121.966004 37.365137,-121.966005 37.365168,-121.966002 37.36529,-121.966013 37.365286,-121.966005 37.365295,-121.966 37.365299,-121.965995 37.365301,-121.965985 37.365288,-121.965971 37.365239,-121.965964 37.365175,-121.96596 37.365093,-121.965955 37.36502,-121.965957 37.365005,-121.96596 37.364998,-121.965984 37.364981,-121.966044 37.364969,-121.966133 37.364956,-121.966555 37.364944,-121.966649 37.364949,-121.966766 37.364975,-121.966792 37.364981,-121.966816 37.364981,-121.96684 37.364982,-121.966926 37.364987,-121.966947 37.364986,-121.966993 37.364979,-121.96704 37.364971,-121.967101 37.364944,-121.967175 37.364941,-121.967253 37.364938,-121.967374 37.364937,-121.967403 37.364938,-121.96747 37.364935,-121.96747 37.364935),(-121.967904 37.364965,-121.967915 37.365038,-121.967935 37.36539,-121.967913 37.365367,-121.967902 37.365351,-121.967891 37.365338,-121.967902 37.365314,-121.967907 37.365308,-121.967894 37.365292,-121.967886 37.365273,-121.967886 37.365204,-121.967885 37.365191,-121.967885 37.365123,-121.967893 37.364984,-121.967893 37.364975,-121.967904 37.364965,-121.967904 37.364965),(-121.967865 37.365506,-121.967904 37.365524,-121.967923 37.365541,-121.967935 37.365559,-121.96799 37.365544,-121.968056 37.365538,-121.969136 37.36551,-121.969179 37.3655,-121.9692 37.365488,-121.969215 37.365481,-121.969159 37.365476,-121.969136 37.365476,-121.969059 37.365452,-121.968997 37.36542,-121.968981 37.365407,-121.96893 37.365402,-121.968772 37.365458,-121.968747 37.365459,-121.968715 37.36546,-121.968694 37.365461,-121.96865 37.365454,-121.968602 37.365446,-121.968579 37.365446,-121.968568 37.365449,-121.968554 37.365444,-121.968486 37.365415,-121.968479 37.365396,-121.968495 37.365399,-121.968703 37.365416,-121.968823 37.365412,-121.968903 37.365382,-121.96893 37.365371,-121.968962 37.365359,-121.968976 37.365364,-121.969002 37.365372,-121.969019 37.365378,-121.96905 37.365405,-121.969195 37.365426,-121.969247 37.365426,-121.969428 37.365419,-121.969438 37.365425,-121.969438 37.365439,-121.969411 37.365448,-121.969305 37.365464,-121.969313 37.365486,-121.969331 37.365486,-121.969342 37.365494,-121.969398 37.365523,-121.969431 37.365535,-121.969471 37.365541,-121.969473 37.36583,-121.969459 37.366078,-121.969432 37.366043,-121.969401 37.366076,-121.969387 37.366062,-121.969375 37.366059,-121.969303 37.366089,-121.968112 37.366116,-121.968047 37.366109,-121.968021 37.366092,-121.968 37.366083,-121.96797 37.366056,-121.96795 37.366036,-121.967946 37.366071,-121.967952 37.366677,-121.967975 37.366713,-121.968023 37.366703,-121.968247 37.366702,-121.968287 37.366701,-121.968729 37.366687,-121.969305 37.366699,-121.96939 37.366751,-121.969413 37.366758,-121.969436 37.366742,-121.96945 37.366754,-121.969452 37.366793,-121.969439 37.366898,-121.969427 37.366886,-121.969347 37.366881,-121.96922 37.366884,-121.969006 37.366886,-121.968621 37.366894,-121.968388 37.366899,-121.968335 37.366902,-121.96828 37.366917,-121.968381 37.366918,-121.968427 37.366934,-121.96846 37.367007,-121.968451 37.3673,-121.968442 37.367328,-121.968287 37.367342,-121.9681 37.367346,-121.967603 37.367355,-121.967443 37.367355,-121.967357 37.367355,-121.967311 37.367309,-121.967235 37.367246,-121.967204 37.367299,-121.967183 37.367333,-121.967161 37.367355,-121.967121 37.367352,-121.967075 37.367344,-121.96706 37.36712,-121.967083 37.36695,-121.967315 37.366937,-121.967428 37.366929,-121.967445 37.366923,-121.967421 37.36692,-121.966847 37.366923,-121.966876 37.366942,-121.966931 37.36697,-121.966938 37.367092,-121.966932 37.367236,-121.966921 37.367332,-121.96668 37.367354,-121.966456 37.367327,-121.966456 37.367058,-121.966523 37.366945,-121.966595 37.366938,-121.966615 37.366936,-121.966597 37.366932,-121.966252 37.366926,-121.966118 37.366916,-121.966061 37.366961,-121.966062 37.367341,-121.966038 37.367065,-121.966016 37.366677,-121.966026 37.366701,-121.966068 37.366766,-121.966139 37.366778,-121.96616 37.36677,-121.966192 37.366755,-121.966287 37.366728,-121.966333 37.366724,-121.966475 37.366719,-121.966619 37.366713,-121.966618 37.366678,-121.966611 37.366584,-121.966602 37.366505,-121.966441 37.366497,-121.966267 37.366483,-121.966211 37.366354,-121.966196 37.36625,-121.966185 37.366205,-121.966174 37.366182,-121.966169 37.366163,-121.966158 37.366153,-121.966142 37.366145,-121.966134 37.36614,-121.966126 37.366135,-121.96606 37.366124,-121.966043 37.366132,-121.966023 37.366131,-121.966004 37.366193,-121.965999 37.366263,-121.965965 37.365566,-121.965969 37.365551,-121.965974 37.365567,-121.965992 37.365578,-121.966017 37.365578,-121.967429 37.365561,-121.967482 37.365573,-121.967511 37.365566,-121.96756 37.365507,-121.96758 37.365487,-121.967573 37.365402,-121.967595 37.365454,-121.967612 37.365471,-121.967698 37.36547,-121.967819 37.365467,-121.967833 37.365457,-121.967861 37.365407,-121.967865 37.365506),(-121.967605 37.365482,-121.967724 37.365477,-121.967839 37.365474,-121.967837 37.365499,-121.967836 37.365525,-121.967774 37.365521,-121.967753 37.365516,-121.967628 37.365523,-121.967604 37.365527,-121.967599 37.36549,-121.967605 37.365482),(-121.967895 37.365554,-121.967895 37.365554,-121.967901 37.365539,-121.967908 37.365539,-121.967926 37.365862,-121.967927 37.366109,-121.967918 37.365952,-121.967895 37.365554),(-121.967525 37.366011,-121.967525 37.366011,-121.967528 37.365623,-121.967534 37.365832,-121.967559 37.366848,-121.967556 37.366874,-121.967269 37.36688,-121.966845 37.366885,-121.966164 37.366883,-121.966153 37.366873,-121.966264 37.366845,-121.96633 37.366837,-121.96652 37.366816,-121.966635 37.366795,-121.966671 37.366734,-121.966656 37.366689,-121.966625 37.366583,-121.966624 37.3665,-121.966409 37.366485,-121.966241 37.366446,-121.966227 37.366343,-121.966228 37.366195,-121.966224 37.366175,-121.966227 37.366166,-121.966228 37.366154,-121.966226 37.366131,-121.966221 37.365964,-121.966218 37.365926,-121.966216 37.365901,-121.966211 37.365876,-121.966202 37.3658,-121.966195 37.365746,-121.966234 37.365667,-121.966671 37.365659,-121.967215 37.365653,-121.967398 37.365677,-121.967423 37.365996,-121.967414 37.366339,-121.967406 37.366391,-121.967389 37.366449,-121.96726 37.366485,-121.967173 37.366482,-121.967121 37.366485,-121.967059 37.366484,-121.966999 37.366499,-121.966992 37.366585,-121.966956 37.366685,-121.966938 37.366688,-121.966939 37.366727,-121.966946 37.366774,-121.967034 37.366804,-121.967285 37.366813,-121.967484 37.366816,-121.967516 37.366806,-121.967524 37.366758,-121.967525 37.366011),(-121.967208 37.36575,-121.967215 37.365765,-121.967205 37.365769,-121.967196 37.365773,-121.966364 37.36577,-121.966352 37.365756,-121.966359 37.365748,-121.966743 37.365747,-121.967183 37.365746,-121.967208 37.36575),(-121.967349 37.365798,-121.967355 37.365862,-121.967358 37.36588,-121.96735 37.365862,-121.967343 37.365798,-121.967344 37.365751,-121.967349 37.365798),(-121.967358 37.365975,-121.967362 37.366094,-121.96736 37.366171,-121.967354 37.366204,-121.967352 37.366176,-121.967346 37.365973,-121.967351 37.365909,-121.967358 37.365975),(-121.966805 37.366701,-121.966858 37.366726,-121.966838 37.366739,-121.966786 37.366741,-121.966763 37.366734,-121.96674 37.36672,-121.966761 37.366708,-121.966785 37.366702,-121.966805 37.366701),(-121.967491 37.366052,-121.9675 37.366029,-121.967508 37.366026,-121.967512 37.366717,-121.967475 37.366716,-121.967231 37.36671,-121.966977 37.366699,-121.966991 37.366679,-121.967006 37.366589,-121.967013 37.366504,-121.967185 37.366496,-121.967369 37.366484,-121.967419 37.366402,-121.967429 37.366344,-121.967434 37.366304,-121.967454 37.366169,-121.967457 37.366151,-121.967474 37.366088,-121.967482 37.366073,-121.967491 37.366052),(-121.967881 37.366049,-121.967881 37.366049,-121.967899 37.366036,-121.96792 37.366695,-121.967907 37.366706,-121.967608 37.366709,-121.967563 37.3667,-121.967556 37.366378,-121.96756 37.366065,-121.967573 37.366073,-121.967612 37.366106,-121.967625 37.366113,-121.967739 37.366145,-121.967747 37.366145,-121.967846 37.366107,-121.967859 37.366086,-121.967881 37.366049),(-121.967774 37.366118,-121.96778 37.366113,-121.967787 37.366115,-121.967774 37.366118),(-121.967928 37.366798,-121.967928 37.366798,-121.967938 37.366593,-121.967941 37.366647,-121.967946 37.366724,-121.967955 37.366795,-121.96796 37.36681,-121.968041 37.366807,-121.968932 37.366797,-121.969297 37.366828,-121.969064 37.366852,-121.968594 37.36686,-121.968063 37.36687,-121.967932 37.36687,-121.967928 37.366798),(-121.968097 37.366919,-121.968097 37.366919,-121.968074 37.366907,-121.968162 37.366907,-121.968253 37.366911,-121.968177 37.366928,-121.968097 37.366919),(-121.9667 37.366932,-121.966742 37.366932,-121.966717 37.366937,-121.9667 37.366932),(-121.968011 37.366943,-121.968011 37.366943,-121.968069 37.366941,-121.968079 37.366958,-121.968095 37.366958,-121.968416 37.366966,-121.968433 37.367049,-121.968426 37.36732,-121.968306 37.367329,-121.968131 37.367328,-121.968083 37.367324,-121.968065 37.367326,-121.968041 37.367326,-121.96747 37.367326,-121.967448 37.36733,-121.967401 37.367338,-121.967321 37.367287,-121.967272 37.367242,-121.967223 37.367219,-121.967183 37.367292,-121.967173 37.367322,-121.96713 37.367336,-121.967092 37.367329,-121.967088 37.367256,-121.967088 37.367084,-121.967096 37.366973,-121.967259 37.366963,-121.967442 37.366962,-121.967477 37.366957,-121.96754 37.366947,-121.968011 37.366943),(-121.966496 37.367006,-121.966528 37.366986,-121.966717 37.366963,-121.966908 37.366963,-121.966912 37.366976,-121.966912 37.367158,-121.966901 37.367332,-121.96662 37.367339,-121.966557 37.367332,-121.966493 37.367316,-121.966488 37.367199,-121.966481 37.367086,-121.966496 37.367006),(-121.967524 37.365116,-121.967517 37.365008,-121.967526 37.364994,-121.967539 37.365136,-121.967547 37.365219,-121.967549 37.365239,-121.967539 37.365243,-121.967537 37.36525,-121.967536 37.365265,-121.967538 37.365268,-121.96755 37.365301,-121.967541 37.365345,-121.967533 37.365272,-121.967534 37.365244,-121.967524 37.365116),(-121.966345 37.365146,-121.966333 37.365165,-121.966314 37.365191,-121.966302 37.365206,-121.966278 37.365237,-121.966234 37.365292,-121.966121 37.365409,-121.966121 37.365409,-121.966127 37.365366,-121.966134 37.365342,-121.966136 37.365332,-121.966155 37.365311,-121.966171 37.365291,-121.966177 37.36529,-121.966175 37.365286,-121.966169 37.365278,-121.966146 37.365272,-121.966099 37.365288,-121.966082 37.365296,-121.96605 37.365301,-121.966041 37.365277,-121.966058 37.36527,-121.966074 37.365262,-121.966088 37.365255,-121.966115 37.365234,-121.966159 37.365211,-121.966182 37.365216,-121.9662 37.365221,-121.966232 37.365204,-121.966266 37.365186,-121.966291 37.365173,-121.966314 37.365157,-121.966327 37.36515,-121.966345 37.365146),(-121.96857 37.365286,-121.968566 37.3653,-121.968556 37.365318,-121.968454 37.365373,-121.968308 37.365399,-121.968297 37.365405,-121.968287 37.365406,-121.968251 37.36541,-121.968206 37.365416,-121.968185 37.365414,-121.968165 37.365409,-121.968139 37.365412,-121.968116 37.365409,-121.968102 37.365397,-121.968085 37.365415,-121.968059 37.365427,-121.968008 37.365425,-121.967968 37.365421,-121.968008 37.365409,-121.968007 37.365402,-121.968115 37.365364,-121.968143 37.365362,-121.968184 37.365378,-121.968217 37.365386,-121.968468 37.365306,-121.968558 37.365283,-121.96857 37.365286,-121.96857 37.365286),(-121.966406 37.365332,-121.966391 37.36536,-121.966391 37.365397,-121.966428 37.365414,-121.966445 37.365418,-121.966484 37.365405,-121.967421 37.365416,-121.967487 37.365417,-121.96748 37.365426,-121.967429 37.365443,-121.967378 37.36544,-121.966486 37.365443,-121.966455 37.365446,-121.966439 37.365446,-121.966425 37.365444,-121.966402 37.365439,-121.966363 37.365418,-121.966322 37.365409,-121.966306 37.365412,-121.966289 37.365415,-121.966263 37.365421,-121.966241 37.36543,-121.966182 37.365439,-121.966132 37.365421,-121.96614 37.365417,-121.966157 37.365414,-121.966174 37.365413,-121.966188 37.365414,-121.966209 37.365412,-121.96623 37.365406,-121.966325 37.365362,-121.966352 37.365345,-121.966406 37.365332,-121.966406 37.365332),(-121.969972 37.366386,-121.970003 37.366412,-121.970017 37.366436,-121.970001 37.366439,-121.969962 37.366446,-121.96975 37.366627,-121.969689 37.366771,-121.969698 37.367059,-121.969699 37.367076,-121.96964 37.367,-121.969614 37.366878,-121.96962 37.36687,-121.969624 37.366856,-121.96964 37.366753,-121.969658 37.366692,-121.969688 37.366593,-121.969704 37.36656,-121.969723 37.366525,-121.969725 37.366519,-121.969722 37.366518,-121.96969 37.366556,-121.969653 37.366614,-121.969705 37.366521,-121.969926 37.366384,-121.969972 37.366386),(-121.965604 37.366445,-121.96566 37.366477,-121.965772 37.366606,-121.965807 37.366702,-121.96581 37.366726,-121.965725 37.366592,-121.965625 37.366533,-121.965525 37.366488,-121.965488 37.36648,-121.965487 37.366454,-121.965536 37.366428,-121.965604 37.366445),(-121.970527 37.366698,-121.970523 37.366678,-121.970534 37.366675,-121.970547 37.366603,-121.970554 37.366575,-121.970539 37.366588,-121.970585 37.366478,-121.970642 37.366476,-121.970718 37.366544,-121.970683 37.366535,-121.970649 37.366525,-121.970626 37.366627,-121.970593 37.366742,-121.970602 37.366761,-121.97062 37.366771,-121.970636 37.366828,-121.970643 37.366958,-121.970616 37.367053,-121.970573 37.367127,-121.970492 37.367211,-121.97036 37.367272,-121.970259 37.367279,-121.970166 37.367269,-121.970118 37.36724,-121.970088 37.367222,-121.970046 37.367189,-121.970119 37.367184,-121.970235 37.367194,-121.970369 37.367166,-121.970406 37.367148,-121.970449 37.36711,-121.970481 37.367077,-121.970495 37.36706,-121.970516 37.367015,-121.970545 37.366927,-121.970553 37.366839,-121.970546 37.366785,-121.970538 37.366788,-121.970534 37.366774,-121.970527 37.366698),(-121.964861 37.36656,-121.96485 37.366613,-121.964822 37.366631,-121.964747 37.366695,-121.964721 37.366718,-121.964766 37.366616,-121.964835 37.366557,-121.964861 37.36656),(-121.969306 37.366894,-121.969313 37.366907,-121.969328 37.366924,-121.969358 37.367032,-121.96937 37.367173,-121.969372 37.367207,-121.969365 37.36726,-121.96933 37.36732,-121.969284 37.367327,-121.969225 37.367329,-121.96921 37.367313,-121.969196 37.36729,-121.969193 37.367274,-121.969188 37.36711,-121.969186 37.366955,-121.9692 37.366939,-121.969241 37.366921,-121.969282 37.366905,-121.969298 37.366891,-121.969306 37.366894),(-121.969216 37.366947,-121.969275 37.366937,-121.969327 37.366937,-121.969333 37.366959,-121.969346 37.367229,-121.969308 37.367316,-121.969263 37.367318,-121.969228 37.367308,-121.969213 37.367212,-121.969211 37.367044,-121.969216 37.366947),(-121.969015 37.36692,-121.969033 37.366924,-121.969056 37.366956,-121.969061 37.366996,-121.969065 37.367048,-121.969064 37.36722,-121.969061 37.367261,-121.969024 37.367326,-121.968609 37.36733,-121.968586 37.367219,-121.968584 37.367048,-121.96858 37.366967,-121.968614 37.366931,-121.968658 37.366925,-121.968739 37.366957,-121.968759 37.366966,-121.968797 37.366979,-121.968843 37.366981,-121.968886 37.366957,-121.968916 37.366933,-121.968966 37.366927,-121.969015 37.36692,-121.969015 37.36692),(-121.968935 37.366951,-121.968982 37.366944,-121.969027 37.366938,-121.969032 37.366954,-121.969038 37.367032,-121.96904 37.367206,-121.969035 37.367306,-121.96895 37.367316,-121.968813 37.367319,-121.968684 37.367318,-121.968614 37.367315,-121.968612 37.367295,-121.96861 37.366979,-121.968611 37.366947,-121.968648 37.366947,-121.968704 37.366965,-121.968772 37.367004,-121.968802 37.367012,-121.96883 37.367021,-121.968869 37.367003,-121.968935 37.366951),(-121.966321 37.366962,-121.966329 37.367077,-121.966303 37.367344,-121.966245 37.367353,-121.96616 37.367332,-121.966163 37.36711,-121.966165 37.367052,-121.966181 37.36696,-121.966232 37.366943,-121.966321 37.366962),(-121.966195 37.366971,-121.966247 37.366963,-121.966308 37.366975,-121.966303 37.36714,-121.966288 37.367336,-121.966198 37.367337,-121.966181 37.367174,-121.966187 37.367029,-121.966195 37.366971),(-121.965514 37.367205,-121.965524 37.367208,-121.965526 37.367222,-121.965342 37.367326,-121.965285 37.367332,-121.965203 37.367328,-121.965079 37.367266,-121.965166 37.36727,-121.965474 37.36722,-121.965514 37.367205),(-121.969837 37.367306,-121.96986 37.367378,-121.969845 37.367585,-121.969899 37.367663,-121.969956 37.3677,-121.970084 37.367766,-121.970176 37.36777,-121.970309 37.36773,-121.970347 37.367711,-121.970401 37.367659,-121.97041 37.36764,-121.970413 37.367644,-121.970404 37.36767,-121.970383 37.367693,-121.970358 37.367714,-121.970316 37.367749,-121.970291 37.367773,-121.970072 37.367783,-121.96989 37.367697,-121.969834 37.367649,-121.969789 37.367619,-121.969782 37.367567,-121.969783 37.367522,-121.969772 37.367521,-121.969797 37.367405,-121.96983 37.367282,-121.969837 37.367306,-121.969837 37.367306),(-121.969439 37.367368,-121.969473 37.367376,-121.969505 37.367379,-121.969504 37.367385,-121.969496 37.367395,-121.969476 37.367396,-121.969366 37.367386,-121.967986 37.367398,-121.967879 37.3674,-121.96786 37.367426,-121.967879 37.367456,-121.967907 37.367469,-121.967936 37.367477,-121.967965 37.367486,-121.969303 37.367487,-121.969466 37.367512,-121.969483 37.367519,-121.969488 37.367537,-121.968932 37.367536,-121.968125 37.367541,-121.967843 37.367543,-121.96783 37.367541,-121.967831 37.367431,-121.967798 37.367431,-121.967766 37.367432,-121.967765 37.367538,-121.967747 37.367538,-121.967678 37.367544,-121.967291 37.367558,-121.96727 37.36757,-121.967253 37.36758,-121.967206 37.367605,-121.967177 37.367618,-121.967136 37.367569,-121.967136 37.367551,-121.967071 37.367552,-121.966803 37.367557,-121.966348 37.367568,-121.966185 37.367572,-121.966097 37.367573,-121.966099 37.367603,-121.966108 37.367653,-121.966159 37.367888,-121.96617 37.367947,-121.966277 37.367943,-121.966659 37.367923,-121.966662 37.368004,-121.966658 37.368088,-121.966502 37.368087,-121.966335 37.368079,-121.966273 37.368074,-121.96628 37.368169,-121.966289 37.368226,-121.966304 37.368322,-121.966326 37.368409,-121.96633 37.368428,-121.966337 37.368437,-121.966555 37.368446,-121.966667 37.368444,-121.966668 37.368543,-121.966672 37.368644,-121.966697 37.368655,-121.966734 37.368679,-121.966714 37.368731,-121.966669 37.368962,-121.966665 37.36916,-121.966537 37.369167,-121.966406 37.369174,-121.966428 37.369324,-121.966467 37.369518,-121.966471 37.369534,-121.966551 37.369532,-121.966643 37.369527,-121.966665 37.36953,-121.966675 37.369626,-121.966675 37.369718,-121.966703 37.369742,-121.966734 37.369798,-121.966725 37.369861,-121.966705 37.369904,-121.96668 37.370094,-121.966667 37.370245,-121.966657 37.37022,-121.96665 37.370196,-121.966646 37.370146,-121.966642 37.370092,-121.966636 37.370012,-121.966643 37.369937,-121.96667 37.369805,-121.966674 37.369783,-121.966664 37.369761,-121.966639 37.369735,-121.966631 37.369708,-121.966626 37.36967,-121.966624 37.369643,-121.966603 37.369617,-121.966586 37.369596,-121.96657 37.369576,-121.96655 37.369568,-121.966515 37.369563,-121.966483 37.369556,-121.966449 37.369529,-121.966437 37.369504,-121.966403 37.369404,-121.966393 37.369368,-121.966385 37.369326,-121.966378 37.369289,-121.966369 37.369196,-121.966418 37.369127,-121.96647 37.36912,-121.966513 37.369115,-121.96655 37.369111,-121.966602 37.369096,-121.96661 37.369082,-121.966615 37.369068,-121.966615 37.368969,-121.966635 37.368817,-121.966644 37.368794,-121.966648 37.368753,-121.966641 37.368689,-121.966634 37.368667,-121.966635 37.368651,-121.966618 37.368598,-121.966614 37.368583,-121.966592 37.368505,-121.966544 37.368491,-121.966519 37.368483,-121.966499 37.368477,-121.96642 37.368482,-121.96631 37.368471,-121.96627 37.36834,-121.966258 37.368302,-121.966247 37.368267,-121.966251 37.368239,-121.966259 37.368228,-121.966251 37.368218,-121.966242 37.368214,-121.966235 37.36813,-121.966241 37.368059,-121.966295 37.368036,-121.966333 37.368026,-121.966346 37.368023,-121.96636 37.368024,-121.966308 37.368002,-121.966302 37.368002,-121.966288 37.367994,-121.966224 37.367987,-121.966158 37.367966,-121.966128 37.367908,-121.966123 37.367886,-121.966112 37.367843,-121.966106 37.367809,-121.966083 37.367721,-121.966077 37.367671,-121.966082 37.367578,-121.966123 37.367547,-121.966171 37.367526,-121.966187 37.367524,-121.966204 37.367526,-121.966616 37.367515,-121.967576 37.367494,-121.967687 37.367475,-121.967723 37.367442,-121.967779 37.367405,-121.967315 37.367408,-121.966681 37.367413,-121.966039 37.367426,-121.96599 37.367427,-121.965968 37.367423,-121.965947 37.367534,-121.965933 37.367606,-121.965936 37.367699,-121.965963 37.367825,-121.965984 37.367922,-121.966007 37.368038,-121.966071 37.368347,-121.966108 37.368532,-121.966182 37.368913,-121.966211 37.369057,-121.966243 37.369208,-121.966266 37.369316,-121.966293 37.36944,-121.966399 37.369952,-121.966447 37.370115,-121.966465 37.370161,-121.966505 37.370274,-121.966601 37.370348,-121.966667 37.370358,-121.966644 37.370374,-121.966526 37.370368,-121.966447 37.370235,-121.966417 37.370118,-121.966409 37.370097,-121.966363 37.369859,-121.96628 37.369453,-121.966206 37.369093,-121.966146 37.368789,-121.966034 37.368228,-121.96591 37.367637,-121.965913 37.367611,-121.965914 37.367506,-121.965911 37.367418,-121.965986 37.367415,-121.966059 37.367415,-121.966064 37.367401,-121.966068 37.367387,-121.966281 37.367387,-121.967376 37.367374,-121.968089 37.367367,-121.968713 37.367361,-121.969131 37.367357,-121.969433 37.367355,-121.969439 37.367368,-121.969439 37.367368),(-121.966499 37.367997,-121.966499 37.367997,-121.966506 37.367993,-121.966536 37.367995,-121.966565 37.368029,-121.966432 37.368036,-121.966414 37.368033,-121.966375 37.36803,-121.9664 37.368017,-121.966444 37.368012,-121.966481 37.368002,-121.966499 37.367997),(-121.969548 37.36738,-121.96954 37.367385,-121.969529 37.36738,-121.969537 37.367374,-121.969548 37.36738),(-121.969601 37.367399,-121.969597 37.367444,-121.969594 37.367459,-121.969585 37.367428,-121.969575 37.367394,-121.969588 37.36738,-121.969601 37.367399),(-121.965692 37.367365,-121.965714 37.367464,-121.965736 37.367546,-121.965734 37.367555,-121.965729 37.367601,-121.965683 37.367687,-121.965646 37.367721,-121.965567 37.367794,-121.965308 37.367841,-121.965204 37.367801,-121.965183 37.367786,-121.965136 37.367774,-121.965104 37.367714,-121.965098 37.367696,-121.965093 37.36769,-121.9651 37.367687,-121.965111 37.367724,-121.965165 37.367776,-121.965238 37.367797,-121.96534 37.367822,-121.965495 37.367794,-121.965588 37.367732,-121.965634 37.3677,-121.965684 37.367617,-121.965677 37.367504,-121.965666 37.36741,-121.965692 37.367365),(-121.969503 37.367565,-121.969498 37.367645,-121.969456 37.367873,-121.969445 37.367909,-121.969437 37.367922,-121.969435 37.367909,-121.96945 37.367781,-121.969461 37.367736,-121.969473 37.367684,-121.969481 37.367647,-121.969498 37.367558,-121.969503 37.367565),(-121.969608 37.367651,-121.969403 37.368763,-121.969332 37.36916,-121.969292 37.369386,-121.969236 37.369702,-121.969151 37.370105,-121.969156 37.370052,-121.969173 37.369978,-121.969228 37.369671,-121.969276 37.369406,-121.969305 37.369242,-121.969321 37.369157,-121.969357 37.368956,-121.969416 37.368632,-121.969445 37.36847,-121.969521 37.368048,-121.969555 37.367855,-121.969587 37.367683,-121.969597 37.367639,-121.969599 37.367562,-121.969608 37.367651),(-121.967577 37.367623,-121.967523 37.367717,-121.967489 37.367802,-121.967471 37.367895,-121.967486 37.367924,-121.967632 37.367927,-121.967761 37.367927,-121.967762 37.368059,-121.967772 37.368813,-121.967659 37.369073,-121.967646 37.369105,-121.967627 37.369149,-121.967606 37.369151,-121.967506 37.369152,-121.967255 37.369157,-121.967056 37.369162,-121.967033 37.369162,-121.967033 37.369055,-121.967027 37.368945,-121.966955 37.369013,-121.966933 37.369035,-121.96686 37.369083,-121.966892 37.369012,-121.966926 37.368965,-121.967012 37.368875,-121.967029 37.368866,-121.967027 37.368739,-121.967023 37.368437,-121.967309 37.368432,-121.967339 37.368202,-121.967344 37.368082,-121.967128 37.368087,-121.967068 37.368088,-121.967017 37.368087,-121.967016 37.368023,-121.967014 37.367954,-121.967037 37.367932,-121.967064 37.367928,-121.967214 37.367915,-121.967346 37.367811,-121.967412 37.367725,-121.967505 37.367653,-121.967566 37.367616,-121.967577 37.367623),(-121.967387 37.36783,-121.967387 37.36783,-121.967397 37.367827,-121.967406 37.367852,-121.967418 37.367858,-121.967431 37.367857,-121.967434 37.367888,-121.967457 37.367935,-121.967482 37.367964,-121.967534 37.367973,-121.967691 37.368009,-121.967698 37.368009,-121.967706 37.36801,-121.967715 37.368036,-121.967723 37.368814,-121.967634 37.369032,-121.967617 37.36907,-121.967581 37.3691,-121.967541 37.369097,-121.967482 37.369099,-121.967417 37.3691,-121.967131 37.369107,-121.967092 37.369082,-121.967075 37.369028,-121.967065 37.368989,-121.967056 37.368977,-121.967048 37.368951,-121.967046 37.368897,-121.967069 37.368833,-121.967093 37.368485,-121.967265 37.368476,-121.967337 37.368456,-121.967378 37.368164,-121.967375 37.368058,-121.967323 37.368038,-121.967204 37.368033,-121.967161 37.368038,-121.967146 37.368049,-121.967133 37.368035,-121.967112 37.368024,-121.967111 37.367998,-121.967133 37.368004,-121.967154 37.367999,-121.967374 37.367853,-121.967379 37.367843,-121.967387 37.36783),(-121.969233 37.367789,-121.969244 37.367806,-121.969219 37.367871,-121.969188 37.36792,-121.96929 37.367924,-121.969424 37.367929,-121.969385 37.367961,-121.969313 37.367961,-121.969179 37.367947,-121.969159 37.367922,-121.96913 37.367916,-121.969101 37.367922,-121.969065 37.367926,-121.969021 37.367932,-121.969008 37.36794,-121.968988 37.367983,-121.968977 37.368005,-121.968968 37.368024,-121.969083 37.368027,-121.96915 37.368023,-121.96929 37.368011,-121.969318 37.368012,-121.96935 37.368015,-121.969403 37.368036,-121.969363 37.368349,-121.969355 37.368384,-121.96933 37.368435,-121.969157 37.36845,-121.969029 37.368456,-121.969018 37.368458,-121.969004 37.368479,-121.969002 37.368491,-121.969003 37.368549,-121.968997 37.368556,-121.968985 37.368575,-121.968984 37.368604,-121.968981 37.368653,-121.968969 37.368765,-121.968968 37.369056,-121.96899 37.36908,-121.969018 37.369085,-121.969045 37.36909,-121.969136 37.369093,-121.969172 37.369108,-121.969189 37.369113,-121.969214 37.369124,-121.969223 37.369213,-121.969171 37.369479,-121.969148 37.369506,-121.969124 37.369525,-121.96907 37.369533,-121.969024 37.369541,-121.968996 37.369547,-121.968959 37.369615,-121.968949 37.369637,-121.968946 37.36973,-121.968944 37.369784,-121.968929 37.369823,-121.968892 37.36989,-121.968882 37.369906,-121.968881 37.369914,-121.968861 37.369966,-121.968879 37.369993,-121.968895 37.370001,-121.968914 37.370008,-121.968932 37.37002,-121.968951 37.370052,-121.968961 37.370121,-121.968943 37.370205,-121.968937 37.370194,-121.968932 37.370161,-121.968927 37.370064,-121.968924 37.370028,-121.96888 37.370043,-121.968852 37.370067,-121.968785 37.370114,-121.968707 37.37015,-121.968701 37.370126,-121.968702 37.370104,-121.968756 37.370078,-121.968814 37.370043,-121.9688 37.370007,-121.968795 37.369945,-121.968805 37.369928,-121.968844 37.369885,-121.968897 37.36981,-121.96892 37.36976,-121.968919 37.369736,-121.968886 37.36972,-121.968856 37.369704,-121.968898 37.369655,-121.968923 37.369643,-121.968921 37.369576,-121.968919 37.369508,-121.968939 37.369502,-121.969103 37.369503,-121.969145 37.369496,-121.969171 37.369431,-121.969189 37.369309,-121.969201 37.369236,-121.96921 37.369156,-121.96912 37.369137,-121.969002 37.369141,-121.968925 37.369134,-121.968911 37.369093,-121.968913 37.368974,-121.968919 37.368811,-121.968917 37.36873,-121.968915 37.368708,-121.968925 37.368691,-121.96894 37.36861,-121.968948 37.368504,-121.968948 37.368421,-121.969147 37.368421,-121.969287 37.368416,-121.969329 37.368381,-121.969344 37.368314,-121.969369 37.368141,-121.969376 37.36805,-121.969207 37.368058,-121.968976 37.368069,-121.968913 37.36807,-121.968913 37.367989,-121.968918 37.367913,-121.968949 37.36791,-121.968982 37.367893,-121.969023 37.367843,-121.969064 37.367884,-121.969072 37.367889,-121.96908 37.367894,-121.9691 37.367897,-121.969139 37.367865,-121.969159 37.367829,-121.969169 37.367816,-121.969212 37.367777,-121.969233 37.367789,-121.969233 37.367789),(-121.96646 37.36779,-121.966495 37.367816,-121.966512 37.367832,-121.966511 37.367845,-121.966501 37.367857,-121.966486 37.367868,-121.966443 37.367876,-121.966403 37.367852,-121.966383 37.367832,-121.966409 37.367807,-121.966441 37.367781,-121.96646 37.36779),(-121.968557 37.367924,-121.968558 37.368045,-121.968558 37.368073,-121.968422 37.368071,-121.968298 37.368075,-121.968303 37.36815,-121.968319 37.368347,-121.968329 37.368423,-121.968385 37.36843,-121.968519 37.36843,-121.96857 37.36843,-121.968559 37.368533,-121.968569 37.368568,-121.968584 37.368617,-121.968573 37.368676,-121.96856 37.368685,-121.968561 37.36889,-121.968566 37.369131,-121.968557 37.369139,-121.968274 37.369146,-121.967994 37.36915,-121.967973 37.369106,-121.967858 37.368853,-121.96783 37.367984,-121.96783 37.367949,-121.96783 37.367916,-121.968056 37.367925,-121.968413 37.367923,-121.968557 37.367924,-121.968557 37.367924),(-121.967921 37.367989,-121.968407 37.367975,-121.968419 37.367978,-121.968436 37.367985,-121.968449 37.367995,-121.968459 37.367992,-121.96847 37.367988,-121.968483 37.367998,-121.968478 37.368007,-121.968473 37.368019,-121.968437 37.368033,-121.968285 37.368044,-121.968264 37.368094,-121.968266 37.368148,-121.968274 37.368243,-121.968277 37.368318,-121.968284 37.368385,-121.968294 37.368434,-121.968385 37.368459,-121.96843 37.368464,-121.96847 37.368471,-121.968484 37.368478,-121.968499 37.368477,-121.968511 37.36847,-121.968513 37.368504,-121.968519 37.368544,-121.968525 37.368566,-121.968534 37.368591,-121.968545 37.36862,-121.968539 37.36864,-121.968504 37.36874,-121.96851 37.368775,-121.968509 37.368865,-121.968509 37.368937,-121.968508 37.368987,-121.968507 37.36905,-121.968375 37.369062,-121.968025 37.369094,-121.968014 37.369075,-121.967891 37.368823,-121.967887 37.368025,-121.967895 37.368006,-121.967903 37.367984,-121.967921 37.367989),(-121.966277 37.368018,-121.966269 37.368023,-121.966264 37.368018,-121.966272 37.368012,-121.966277 37.368018),(-121.969301 37.368114,-121.969305 37.36814,-121.969299 37.368192,-121.969271 37.368356,-121.969265 37.368367,-121.969091 37.368367,-121.968916 37.368367,-121.968916 37.368309,-121.968918 37.368132,-121.96911 37.368123,-121.969224 37.368115,-121.969301 37.368114,-121.969301 37.368114),(-121.969083 37.368151,-121.969262 37.368144,-121.969272 37.368169,-121.969249 37.36827,-121.969246 37.368281,-121.969248 37.36833,-121.969225 37.368334,-121.969079 37.368329,-121.969032 37.368336,-121.969015 37.368346,-121.968995 37.368326,-121.968983 37.368271,-121.968986 37.368262,-121.968983 37.368245,-121.968978 37.368216,-121.96898 37.368168,-121.968987 37.368161,-121.96903 37.368155,-121.969083 37.368151),(-121.968442 37.368126,-121.968486 37.368131,-121.968541 37.368134,-121.968558 37.368137,-121.968556 37.368252,-121.968551 37.36837,-121.96847 37.368374,-121.968388 37.368368,-121.968375 37.368239,-121.968369 37.368168,-121.968373 37.368129,-121.968442 37.368126),(-121.968402 37.368154,-121.968402 37.368154,-121.96843 37.368149,-121.968463 37.368154,-121.968488 37.368169,-121.968494 37.368185,-121.968494 37.368275,-121.968486 37.368294,-121.968481 37.368323,-121.96846 37.368342,-121.968427 37.368343,-121.968414 37.368318,-121.968409 37.3683,-121.968405 37.36829,-121.968396 37.368181,-121.968402 37.368154),(-121.967275 37.368135,-121.96727 37.368234,-121.967264 37.368342,-121.967258 37.368371,-121.967248 37.368386,-121.967142 37.368388,-121.96702 37.368389,-121.967019 37.368143,-121.967071 37.368142,-121.967154 37.368141,-121.967275 37.368135,-121.967275 37.368135),(-121.967167 37.368167,-121.967167 37.368167,-121.967232 37.36816,-121.967238 37.368187,-121.967235 37.368258,-121.967236 37.368313,-121.967231 37.368329,-121.967204 37.368347,-121.967193 37.368353,-121.96717 37.368353,-121.967136 37.368351,-121.96708 37.368323,-121.967074 37.368287,-121.967084 37.368263,-121.967085 37.368248,-121.967085 37.368235,-121.967076 37.368209,-121.967085 37.368179,-121.967126 37.368171,-121.967167 37.368167),(-121.96638 37.368145,-121.966517 37.368146,-121.96666 37.368146,-121.966663 37.36827,-121.966668 37.368391,-121.966579 37.368392,-121.966384 37.368389,-121.966372 37.368341,-121.966362 37.368261,-121.966351 37.368185,-121.966361 37.368148,-121.96638 37.368145),(-121.966387 37.368185,-121.966387 37.368185,-121.966403 37.368172,-121.966424 37.368182,-121.966448 37.368184,-121.966473 37.368179,-121.966522 37.368174,-121.96657 37.368199,-121.966578 37.36823,-121.966595 37.368317,-121.966536 37.368355,-121.96651 37.368346,-121.96648 37.368353,-121.966455 37.368358,-121.966447 37.368354,-121.966424 37.368359,-121.96641 37.368355,-121.966431 37.36835,-121.966443 37.368336,-121.96643 37.36834,-121.966417 37.368341,-121.966407 37.368329,-121.966402 37.368321,-121.966397 37.368309,-121.966387 37.368185),(-121.968418 37.36942,-121.968413 37.369444,-121.968401 37.369475,-121.968393 37.369492,-121.968463 37.369502,-121.968553 37.369511,-121.968567 37.369565,-121.96857 37.369833,-121.968577 37.370222,-121.968565 37.37024,-121.968523 37.370154,-121.968514 37.370142,-121.96851 37.370134,-121.968515 37.370127,-121.968519 37.370123,-121.96852 37.370116,-121.968505 37.369573,-121.968466 37.369547,-121.96844 37.369544,-121.968436 37.36954,-121.968425 37.369535,-121.968351 37.369499,-121.968235 37.36955,-121.96823 37.369572,-121.968245 37.369605,-121.96826 37.369634,-121.968411 37.36997,-121.968449 37.37006,-121.968457 37.370079,-121.968482 37.370116,-121.968487 37.370127,-121.968503 37.370175,-121.968496 37.370258,-121.96849 37.370273,-121.968336 37.370275,-121.968182 37.370267,-121.96827 37.370255,-121.968411 37.370251,-121.96843 37.370249,-121.968421 37.370228,-121.96843 37.37024,-121.968465 37.370254,-121.968476 37.370239,-121.96846 37.370205,-121.968425 37.370198,-121.968428 37.370162,-121.968438 37.370144,-121.968152 37.369509,-121.968207 37.369493,-121.968314 37.36946,-121.968335 37.369448,-121.968351 37.36944,-121.968364 37.369432,-121.968384 37.369422,-121.968418 37.36942,-121.968418 37.36942),(-121.967263 37.369499,-121.967474 37.369502,-121.967192 37.370172,-121.967181 37.370251,-121.96721 37.370253,-121.967226 37.370242,-121.967357 37.370258,-121.967478 37.370259,-121.967493 37.370266,-121.967502 37.370271,-121.967498 37.370277,-121.967323 37.370283,-121.967126 37.37027,-121.967141 37.370184,-121.967149 37.370164,-121.967109 37.370173,-121.967093 37.370192,-121.967078 37.370225,-121.967066 37.370258,-121.967049 37.370262,-121.967042 37.370114,-121.967032 37.369533,-121.96706 37.369498,-121.967263 37.369499),(-121.967122 37.369552,-121.967297 37.369546,-121.967374 37.369563,-121.967381 37.369582,-121.967379 37.369613,-121.967364 37.369656,-121.967152 37.370101,-121.967133 37.37013,-121.967095 37.370161,-121.9671 37.370148,-121.9671 37.370131,-121.9671 37.369574,-121.967122 37.369552),(-121.969151 37.370105,-121.969107 37.370278,-121.969041 37.370338,-121.968975 37.370347,-121.96893 37.370347,-121.968963 37.370338,-121.969061 37.370281,-121.969114 37.370193,-121.96914 37.370119,-121.969151 37.370105),(-121.967032 37.370489,-121.967096 37.370586,-121.967281 37.370613,-121.967366 37.370623,-121.967627 37.370631,-121.967762 37.370624,-121.967885 37.370633,-121.967903 37.370647,-121.967881 37.370666,-121.967869 37.370682,-121.967898 37.370683,-121.967945 37.370683,-121.968026 37.370687,-121.968203 37.370677,-121.968314 37.37067,-121.968441 37.37065,-121.96835 37.370649,-121.968241 37.370653,-121.968224 37.370657,-121.968212 37.370662,-121.968208 37.370667,-121.968169 37.370664,-121.96813 37.370652,-121.96811 37.370642,-121.968228 37.370631,-121.968467 37.370609,-121.968542 37.370545,-121.968546 37.37059,-121.968553 37.370635,-121.968618 37.370648,-121.968801 37.37074,-121.968934 37.370856,-121.968894 37.37083,-121.968787 37.370757,-121.968739 37.370729,-121.968689 37.370714,-121.968618 37.370703,-121.968309 37.370699,-121.968037 37.370711,-121.967936 37.370716,-121.967828 37.370721,-121.96755 37.370731,-121.96744 37.370737,-121.967228 37.370742,-121.966893 37.370758,-121.966867 37.370776,-121.966851 37.370793,-121.966688 37.370872,-121.966604 37.370994,-121.966586 37.371011,-121.966684 37.370804,-121.966948 37.370662,-121.967004 37.370652,-121.967017 37.370649,-121.967018 37.370554,-121.967022 37.370453,-121.967032 37.370489,-121.967032 37.370489),(-121.967509 37.370664,-121.967631 37.370657,-121.967669 37.370675,-121.967628 37.370683,-121.967506 37.370676,-121.967488 37.370671,-121.967509 37.370664),(-121.966593 37.371378,-121.966597 37.371472,-121.966644 37.371539,-121.966734 37.371709,-121.966768 37.372183,-121.966785 37.372275,-121.966819 37.372315,-121.967173 37.372272,-121.967665 37.372187,-121.968069 37.372153,-121.968517 37.372176,-121.968701 37.372183,-121.968772 37.372031,-121.968869 37.371605,-121.968945 37.371535,-121.968971 37.371528,-121.968988 37.371544,-121.968996 37.371564,-121.968958 37.371559,-121.968911 37.371575,-121.968868 37.37164,-121.968807 37.371943,-121.968727 37.372186,-121.96852 37.372185,-121.968016 37.372164,-121.967183 37.37228,-121.966833 37.372338,-121.966771 37.372268,-121.966752 37.372057,-121.966742 37.371838,-121.966703 37.371659,-121.966665 37.371594,-121.966605 37.371558,-121.966589 37.371557,-121.966574 37.371332,-121.966593 37.371299,-121.966593 37.371378))' END IF @i IN (644,645,894,367) BEGIN INSERT INTO @tt SELECT 'Brownish','POLYGON ((-121.967836 37.365525,-121.967839 37.365474,-121.967605 37.365482,-121.967599 37.36549,-121.967602 37.36552,-121.967604 37.365527,-121.967612 37.365527,-121.967628 37.365523,-121.967696 37.365519,-121.967753 37.365516,-121.967774 37.365521,-121.967836 37.365525),(-121.967908 37.365539,-121.96792 37.365631,-121.967926 37.365862,-121.967928 37.366037,-121.967927 37.366109,-121.967923 37.366062,-121.967918 37.365952,-121.967908 37.365746,-121.967895 37.365554,-121.967896 37.365545,-121.967901 37.365539,-121.967905 37.365538,-121.967908 37.365539,-121.967908 37.365539,-121.967908 37.365539),(-121.967528 37.365623,-121.967531 37.365687,-121.967534 37.365832,-121.967547 37.366561,-121.967559 37.366848,-121.967561 37.366865,-121.967556 37.366874,-121.967484 37.366878,-121.967269 37.36688,-121.96703 37.366882,-121.966845 37.366885,-121.96646 37.366887,-121.966164 37.366883,-121.966151 37.366879,-121.966153 37.366873,-121.966203 37.366856,-121.966264 37.366845,-121.966291 37.366842,-121.96633 37.366837,-121.966421 37.366825,-121.96652 37.366816,-121.966589 37.366807,-121.966635 37.366795,-121.966654 37.366776,-121.966671 37.366734,-121.966674 37.366702,-121.966656 37.366689,-121.966627 37.366665,-121.966625 37.366583,-121.966626 37.366526,-121.966624 37.3665,-121.966574 37.366487,-121.966409 37.366485,-121.966282 37.366479,-121.966241 37.366446,-121.966231 37.366415,-121.966227 37.366343,-121.966226 37.366277,-121.966226 37.366235,-121.966227 37.366063,-121.966221 37.365964,-121.966218 37.365949,-121.966218 37.365928,-121.966219 37.36591,-121.966216 37.3659,-121.966213 37.365892,-121.966211 37.365876,-121.966209 37.365824,-121.966202 37.3658,-121.966197 37.365783,-121.966195 37.365746,-121.966203 37.36569,-121.966234 37.365667,-121.966349 37.365662,-121.966671 37.365659,-121.967004 37.365657,-121.967215 37.365653,-121.967349 37.365654,-121.967398 37.365677,-121.967421 37.365746,-121.967423 37.365996,-121.967419 37.366275,-121.967414 37.366339,-121.96741 37.366359,-121.967406 37.366391,-121.967399 37.366426,-121.967389 37.366449,-121.967352 37.366479,-121.96726 37.366485,-121.967201 37.366484,-121.967173 37.366482,-121.967156 37.366482,-121.967121 37.366485,-121.967081 37.366487,-121.967059 37.366484,-121.967025 37.366485,-121.966999 37.366499,-121.966995 37.366528,-121.966992 37.366585,-121.966985 37.366664,-121.966956 37.366685,-121.966947 37.366686,-121.966938 37.366688,-121.966939 37.366707,-121.966939 37.366727,-121.966942 37.366756,-121.966946 37.366774,-121.967034 37.366804,-121.967285 37.366813,-121.967415 37.366814,-121.967484 37.366816,-121.967508 37.366817,-121.967516 37.366806,-121.967521 37.366786,-121.967524 37.366758,-121.967529 37.366457,-121.967525 37.366011,-121.967521 37.365702,-121.967528 37.365623,-121.967528 37.365623,-121.967528 37.365623),(-121.967091 37.365675,-121.967091 37.365675,-121.967091 37.365675,-121.967247 37.36567,-121.967355 37.365672,-121.967396 37.365709,-121.967411 37.365803,-121.967411 37.366115,-121.9674 37.366351,-121.967396 37.366375,-121.967395 37.3664,-121.967392 37.366424,-121.967382 37.366443,-121.967335 37.366471,-121.967183 37.366476,-121.967124 37.366475,-121.967091 37.366475,-121.967072 37.366475,-121.96705 37.366474,-121.967008 37.36648,-121.966987 37.366504,-121.966983 37.366536,-121.966981 37.36659,-121.966976 37.366659,-121.966953 37.366675,-121.96693 37.366688,-121.966926 37.366748,-121.966922 37.366821,-121.966904 37.366854,-121.966868 37.366857,-121.966794 37.366858,-121.966688 37.366851,-121.966675 37.3668,-121.966677 37.366766,-121.966681 37.366742,-121.966685 37.366695,-121.966661 37.36668,-121.966651 37.366677,-121.966642 37.36667,-121.966636 37.366649,-121.966636 37.366585,-121.966637 37.366526,-121.966633 37.366499,-121.966609 37.366482,-121.966577 37.366477,-121.966563 37.366478,-121.96655 37.366476,-121.96653 37.366474,-121.966498 37.366475,-121.966462 37.366477,-121.966431 37.366476,-121.966396 37.366474,-121.966351 37.366475,-121.966304 37.366475,-121.966279 37.366468,-121.966247 37.366435,-121.966238 37.366343,-121.966237 37.366278,-121.966236 37.366238,-121.966237 37.366186,-121.966238 37.366096,-121.966238 37.366009,-121.966235 37.365968,-121.966231 37.365946,-121.966229 37.365908,-121.966226 37.365863,-121.966222 37.365823,-121.966215 37.365763,-121.966221 37.36574,-121.966227 37.365734,-121.96622 37.365728,-121.966211 37.365713,-121.966216 37.365703,-121.966223 37.365699,-121.966234 37.36569,-121.966241 37.365684,-121.966247 37.365677,-121.966371 37.365677,-121.966495 37.365677,-121.966877 37.365676,-121.966993 37.365676,-121.967042 37.365676,-121.967091 37.365675),(-121.967221 37.365695,-121.967241 37.365697,-121.967283 37.365698,-121.967335 37.3657,-121.967351 37.365711,-121.967364 37.365764,-121.967371 37.365903,-121.967374 37.366002,-121.967376 37.366076,-121.967372 37.366174,-121.967358 37.366225,-121.96734 37.366228,-121.967307 37.36623,-121.967286 37.36623,-121.967265 37.36623,-121.967265 37.366245,-121.967259 37.366393,-121.967253 37.366415,-121.967247 37.366437,-121.967226 37.366439,-121.967205 37.366441,-121.96719 37.36644,-121.967126 37.366435,-121.967109 37.366433,-121.967109 37.366429,-121.967109 37.366425,-121.967112 37.366421,-121.967114 37.366417,-121.967111 37.366415,-121.967107 37.366412,-121.967104 37.366415,-121.967093 37.366434,-121.96709 37.36644,-121.967082 37.366442,-121.967073 37.366444,-121.967051 37.36644,-121.967028 37.366436,-121.967019 37.366422,-121.967009 37.366409,-121.967008 37.366405,-121.967007 37.366401,-121.967005 37.366399,-121.967004 37.366397,-121.967002 37.366399,-121.967 37.366402,-121.966999 37.366407,-121.966998 37.366413,-121.966991 37.366423,-121.966984 37.366434,-121.96696 37.366436,-121.966935 37.366439,-121.966917 37.366436,-121.966898 37.366434,-121.966898 37.366427,-121.966898 37.36642,-121.9669 37.366409,-121.966903 37.366397,-121.966902 37.366282,-121.966901 37.366271,-121.9669 37.366259,-121.966897 37.36626,-121.966894 37.366262,-121.966892 37.366271,-121.966889 37.36628,-121.966881 37.366385,-121.96688 37.366402,-121.96688 37.366411,-121.96688 37.366419,-121.96688 37.366427,-121.966879 37.366436,-121.966869 37.366436,-121.966858 37.366436,-121.966795 37.366436,-121.966794 37.36643,-121.966792 37.366425,-121.966791 37.366419,-121.96679 37.366414,-121.966785 37.366402,-121.96678 37.36639,-121.966777 37.3664,-121.966773 37.36641,-121.966771 37.36642,-121.966768 37.36643,-121.966762 37.366435,-121.966756 37.366439,-121.966737 37.36644,-121.966718 37.36644,-121.966702 37.366431,-121.966686 37.366421,-121.966682 37.366417,-121.966679 37.366413,-121.966675 37.366409,-121.966671 37.366405,-121.96667 37.366408,-121.966669 37.366412,-121.966667 37.366415,-121.966666 37.366419,-121.966663 37.366424,-121.96666 37.36643,-121.966657 37.366433,-121.966654 37.366436,-121.966643 37.366437,-121.966633 37.366438,-121.966612 37.366439,-121.966592 37.36644,-121.966569 37.36644,-121.966546 37.36644,-121.96654 37.366436,-121.966535 37.366432,-121.966532 37.366428,-121.96653 37.366423,-121.966524 37.366428,-121.966518 37.366433,-121.966512 37.366436,-121.966505 37.36644,-121.966495 37.36644,-121.966485 37.366441,-121.966471 37.36644,-121.966457 37.366439,-121.96644 37.366439,-121.966422 37.366439,-121.966399 37.366436,-121.966376 37.366433,-121.966372 37.36642,-121.966369 37.366407,-121.966372 37.366391,-121.966376 37.366376,-121.966386 37.366371,-121.966396 37.366365,-121.966401 37.366365,-121.966406 37.366365,-121.966407 37.366366,-121.966409 37.366367,-121.966406 37.366369,-121.966403 37.36637,-121.966398 37.366371,-121.966394 37.366371,-121.966386 37.366375,-121.966379 37.366379,-121.966377 37.366393,-121.966375 37.366407,-121.96638 37.366418,-121.966385 37.366429,-121.966418 37.366432,-121.966451 37.366434,-121.966481 37.366431,-121.966512 37.366429,-121.966517 37.366413,-121.966522 37.366397,-121.966519 37.366389,-121.966517 37.366381,-121.966508 37.366375,-121.9665 37.36637,-121.966491 37.366364,-121.966483 37.366358,-121.966482 37.366346,-121.96648 37.366334,-121.96648 37.366321,-121.96648 37.366308,-121.966479 37.366296,-121.966478 37.366283,-121.966477 37.366273,-121.966477 37.366263,-121.96648 37.366257,-121.966483 37.366251,-121.966486 37.366247,-121.96649 37.366242,-121.966486 37.366237,-121.966483 37.366232,-121.966469 37.366227,-121.966455 37.366222,-121.966442 37.366226,-121.966428 37.366229,-121.966425 37.366237,-121.966423 37.366245,-121.96642 37.36626,-121.966417 37.366274,-121.966416 37.366284,-121.966415 37.366293,-121.966414 37.366303,-121.966412 37.366312,-121.966413 37.366302,-121.966413 37.366292,-121.966414 37.366281,-121.966415 37.366271,-121.966417 37.366254,-121.966419 37.366238,-121.966422 37.36623,-121.966426 37.366223,-121.966428 37.366219,-121.966431 37.366214,-121.966421 37.366215,-121.96641 37.366216,-121.966346 37.366217,-121.966284 37.36621,-121.96627 37.366193,-121.96627 37.366165,-121.966272 37.366167,-121.966282 37.3662,-121.966338 37.366212,-121.966378 37.366213,-121.966404 37.366212,-121.96642 37.366211,-121.966437 37.36621,-121.966465 37.36621,-121.966494 37.366211,-121.966611 37.366212,-121.966728 37.366214,-121.966827 37.366215,-121.966927 37.366216,-121.966944 37.366216,-121.966961 37.366216,-121.966972 37.366216,-121.966982 37.366216,-121.967017 37.366217,-121.967051 37.366218,-121.96706 37.36622,-121.96707 37.366222,-121.967069 37.366225,-121.967068 37.366228,-121.967063 37.366233,-121.967052 37.366241,-121.967045 37.366245,-121.967038 37.366241,-121.967031 37.366238,-121.967017 37.366234,-121.967003 37.366231,-121.966994 37.366236,-121.966984 37.366241,-121.966982 37.366242,-121.966979 37.366244,-121.966974 37.366241,-121.966968 37.366238,-121.966953 37.366233,-121.966939 37.366228,-121.966927 37.366231,-121.966914 37.366234,-121.966912 37.366248,-121.96691 37.366262,-121.966914 37.366421,-121.966932 37.366427,-121.966949 37.366433,-121.966965 37.366429,-121.96698 37.366425,-121.966987 37.366415,-121.966993 37.366406,-121.966994 37.366401,-121.966998 37.366387,-121.967001 37.366384,-121.967004 37.366382,-121.967006 37.366384,-121.967009 37.366387,-121.967014 37.366405,-121.967015 37.366409,-121.967015 37.366414,-121.967017 37.366417,-121.967018 37.366421,-121.967028 37.366427,-121.967038 37.366433,-121.967054 37.366436,-121.96707 37.366438,-121.967078 37.366437,-121.967085 37.366436,-121.967088 37.36643,-121.967095 37.366412,-121.967098 37.366408,-121.9671 37.366403,-121.967102 37.366391,-121.967105 37.36638,-121.967104 37.366357,-121.967104 37.366335,-121.967104 37.366329,-121.967105 37.366323,-121.967106 37.366313,-121.967108 37.366303,-121.96711 37.366291,-121.967111 37.366279,-121.967111 37.366268,-121.967111 37.366257,-121.967108 37.366248,-121.967105 37.366239,-121.967099 37.366235,-121.967093 37.366231,-121.967086 37.366226,-121.967079 37.366221,-121.967096 37.366221,-121.967113 37.36622,-121.967126 37.366222,-121.967139 37.366223,-121.967144 37.366223,-121.96715 37.366224,-121.967148 37.366226,-121.967147 37.366228,-121.967144 37.366233,-121.96714 37.366238,-121.967135 37.366242,-121.967131 37.366247,-121.967132 37.366243,-121.967133 37.366239,-121.967133 37.366234,-121.967133 37.366229,-121.967128 37.366228,-121.967124 37.366227,-121.967118 37.36623,-121.967113 37.366234,-121.967115 37.366251,-121.967118 37.366268,-121.967119 37.366272,-121.967119 37.366275,-121.96712 37.366278,-121.967121 37.366281,-121.967122 37.366277,-121.967131 37.366258,-121.967132 37.366254,-121.967134 37.36625,-121.967134 37.366254,-121.967134 37.366258,-121.967134 37.366261,-121.967134 37.366265,-121.967138 37.366274,-121.967142 37.366284,-121.967155 37.366286,-121.967169 37.366289,-121.967178 37.366292,-121.967188 37.366294,-121.967176 37.3663,-121.967164 37.366306,-121.967153 37.36631,-121.967142 37.366314,-121.967139 37.366321,-121.967135 37.366329,-121.967135 37.366336,-121.967135 37.366344,-121.96714 37.36635,-121.967144 37.366357,-121.967148 37.36636,-121.967151 37.366362,-121.967154 37.366365,-121.967157 37.366368,-121.967154 37.36637,-121.967151 37.366371,-121.967149 37.366373,-121.967146 37.366374,-121.967137 37.366387,-121.967128 37.366399,-121.967127 37.366412,-121.967125 37.366425,-121.967151 37.366429,-121.967176 37.366434,-121.967205 37.366434,-121.967234 37.366435,-121.967242 37.366424,-121.967249 37.366414,-121.967252 37.366368,-121.967254 37.366322,-121.967254 37.366301,-121.967255 37.36628,-121.967255 37.366259,-121.967256 37.366239,-121.967252 37.366238,-121.967248 37.366237,-121.967244 37.366236,-121.96724 37.366235,-121.967193 37.366232,-121.967182 37.366232,-121.967171 37.366231,-121.967168 37.366229,-121.967165 37.366227,-121.967178 37.366226,-121.967192 37.366224,-121.967224 37.366223,-121.967256 37.366222,-121.967322 37.366221,-121.967349 37.366217,-121.967361 37.366167,-121.967362 37.366087,-121.967359 37.36602,-121.967355 37.365926,-121.967351 37.365831,-121.967345 37.365759,-121.967342 37.365732,-121.967339 37.365705,-121.967329 37.365704,-121.967319 37.365703,-121.967303 37.365704,-121.967292 37.365707,-121.967286 37.36571,-121.96728 37.365708,-121.967128 37.365706,-121.966773 37.365706,-121.966346 37.365709,-121.966263 37.365717,-121.966255 37.365727,-121.966256 37.365744,-121.966269 37.365853,-121.966267 37.365908,-121.966265 37.365904,-121.966265 37.365894,-121.966266 37.365876,-121.966263 37.365852,-121.966259 37.365824,-121.966256 37.365798,-121.966254 37.365773,-121.966251 37.365749,-121.96625 37.365728,-121.966257 37.365713,-121.966262 37.365707,-121.966267 37.365701,-121.9665 37.3657,-121.966732 37.3657,-121.967063 37.365698,-121.967207 37.365695,-121.967216 37.365694,-121.967221 37.365695,-121.967221 37.365695,-121.967221 37.365695),(-121.966486 37.36622,-121.966486 37.36622,-121.966486 37.36622,-121.966486 37.36622,-121.966486 37.36622,-121.966492 37.366218,-121.966499 37.366217,-121.966511 37.366216,-121.966523 37.366215,-121.96653 37.366215,-121.966538 37.366215,-121.966545 37.366214,-121.966553 37.366214,-121.96655 37.366216,-121.966547 37.366219,-121.966544 37.366221,-121.96654 37.366224,-121.966536 37.366228,-121.966532 37.366232,-121.96653 37.366235,-121.966528 37.366239,-121.966529 37.36624,-121.96653 37.36624,-121.966532 37.366238,-121.966535 37.366235,-121.966563 37.36623,-121.966591 37.366226,-121.96662 37.36623,-121.966649 37.366234,-121.966652 37.366247,-121.966656 37.366259,-121.966657 37.366297,-121.966658 37.366335,-121.966656 37.366379,-121.966654 37.366424,-121.966625 37.366429,-121.966596 37.366434,-121.966571 37.366432,-121.966545 37.36643,-121.966539 37.366419,-121.966533 37.366408,-121.966538 37.366394,-121.966543 37.366381,-121.966556 37.366376,-121.966569 37.366371,-121.966574 37.366371,-121.966579 37.366371,-121.966584 37.366371,-121.966589 37.36637,-121.966583 37.366369,-121.966578 37.366367,-121.966572 37.366365,-121.966567 37.366363,-121.966556 37.366356,-121.966544 37.36635,-121.966541 37.366335,-121.966538 37.36632,-121.966538 37.366312,-121.966539 37.366304,-121.966549 37.366303,-121.966559 37.366301,-121.966573 37.366298,-121.966588 37.366295,-121.966585 37.366292,-121.966583 37.366289,-121.966577 37.366288,-121.96657 37.366287,-121.966562 37.366286,-121.966554 37.366284,-121.966545 37.36628,-121.966537 37.366276,-121.966534 37.36627,-121.966531 37.366263,-121.966529 37.366258,-121.966527 37.366252,-121.966526 37.366251,-121.966525 37.366249,-121.966526 37.366259,-121.966527 37.366268,-121.966536 37.366278,-121.966546 37.366287,-121.96655 37.366288,-121.966554 37.36629,-121.966558 37.366292,-121.966562 37.366294,-121.966559 37.366294,-121.966555 37.366294,-121.966551 37.366294,-121.966548 37.366294,-121.966543 37.366295,-121.966537 37.366296,-121.966535 37.366298,-121.966533 37.366301,-121.966534 37.366316,-121.966534 37.366332,-121.966538 37.366343,-121.966542 37.366355,-121.966545 37.366361,-121.966547 37.366367,-121.966543 37.366373,-121.966539 37.366378,-121.966535 37.366381,-121.966531 37.366384,-121.96653 37.366383,-121.966528 37.366383,-121.966525 37.366379,-121.966522 37.366375,-121.966514 37.366371,-121.966507 37.366366,-121.966498 37.36636,-121.966489 37.366354,-121.966487 37.366342,-121.966486 37.366331,-121.966486 37.36632,-121.966486 37.366308,-121.966485 37.366297,-121.966484 37.366286,-121.966485 37.366277,-121.966485 37.366268,-121.966489 37.366261,-121.966493 37.366254,-121.966496 37.366251,-121.966499 37.366248,-121.966501 37.366245,-121.966504 37.366242,-121.966501 37.36624,-121.966498 37.366237,-121.966495 37.366235,-121.966492 37.366233,-121.966488 37.366229,-121.966483 37.366225,-121.966485 37.366222,-121.966486 37.36622),(-121.96652 37.366335,-121.96652 37.366337,-121.96652 37.366339,-121.966519 37.366341,-121.966517 37.366343,-121.966513 37.366343,-121.966508 37.366343,-121.966509 37.366339,-121.966511 37.366335,-121.966513 37.366333,-121.966516 37.366332,-121.966518 37.366333,-121.96652 37.366335,-121.96652 37.366335,-121.96652 37.366335,-121.96652 37.366335,-121.96652 37.366335),(-121.966971 37.366228,-121.966972 37.366224,-121.966973 37.366221,-121.96698 37.366221,-121.966987 37.366222,-121.966989 37.366224,-121.96699 37.366226,-121.966988 37.366228,-121.966985 37.366229,-121.966981 37.36623,-121.966977 37.36623,-121.966974 37.366229,-121.966971 37.366228),(-121.966819 37.366228,-121.966819 37.366228,-121.966819 37.366228,-121.966819 37.366228,-121.966819 37.366228,-121.966822 37.366224,-121.966826 37.366221,-121.966831 37.366221,-121.966836 37.366221,-121.966837 37.366222,-121.966838 37.366224,-121.966837 37.366226,-121.966837 37.366228,-121.966831 37.36623,-121.966826 37.366232,-121.966822 37.36623,-121.966819 37.366228),(-121.967043 37.366227,-121.967046 37.366225,-121.967048 37.366224,-121.967051 37.366223,-121.967055 37.366222,-121.967057 37.366223,-121.96706 37.366224,-121.967058 37.366227,-121.967056 37.36623,-121.967051 37.366232,-121.967045 37.366234,-121.967044 37.366231,-121.967043 37.366227),(-121.966835 37.366236,-121.966835 37.366236,-121.966835 37.366236,-121.966835 37.366236,-121.966835 37.366236,-121.966856 37.366231,-121.966877 37.366226,-121.966893 37.366227,-121.966908 37.366228,-121.966904 37.366232,-121.9669 37.366236,-121.966892 37.366234,-121.966884 37.366232,-121.966882 37.366231,-121.966879 37.366229,-121.96688 37.366235,-121.966882 37.36624,-121.966883 37.366249,-121.966885 37.366258,-121.966884 37.366272,-121.966883 37.366286,-121.966874 37.36639,-121.966872 37.366409,-121.966869 37.366428,-121.966863 37.36643,-121.966857 37.366432,-121.966801 37.366427,-121.966796 37.366414,-121.966792 37.366401,-121.96679 37.366392,-121.966787 37.366382,-121.966783 37.36638,-121.966779 37.366377,-121.966777 37.366382,-121.966775 37.366387,-121.966772 37.366396,-121.966769 37.366405,-121.966765 37.366416,-121.966761 37.366426,-121.966753 37.36643,-121.966745 37.366434,-121.966723 37.366431,-121.9667 37.366428,-121.966695 37.366411,-121.96669 37.366394,-121.966691 37.366391,-121.966691 37.366388,-121.966688 37.366391,-121.966685 37.366394,-121.966681 37.366398,-121.966678 37.366401,-121.966675 37.3664,-121.966672 37.3664,-121.966668 37.366383,-121.966664 37.366366,-121.966664 37.366348,-121.966665 37.366331,-121.966666 37.366326,-121.966666 37.366322,-121.966665 37.366315,-121.966664 37.366309,-121.966662 37.366302,-121.96666 37.366295,-121.966662 37.36629,-121.966663 37.366285,-121.966665 37.366277,-121.966667 37.366269,-121.966666 37.366252,-121.966664 37.366235,-121.966665 37.366231,-121.966666 37.366227,-121.966671 37.366225,-121.966675 37.366223,-121.96668 37.366223,-121.966684 37.366223,-121.966683 37.366228,-121.966681 37.366232,-121.96668 37.366238,-121.966678 37.366244,-121.966678 37.366251,-121.966678 37.366257,-121.966679 37.36627,-121.966681 37.366283,-121.966681 37.366305,-121.966682 37.366326,-121.966683 37.366345,-121.966684 37.366363,-121.966685 37.366369,-121.966687 37.366375,-121.966687 37.366363,-121.966688 37.366352,-121.966687 37.366328,-121.966687 37.366304,-121.966686 37.366281,-121.966685 37.366257,-121.966687 37.366245,-121.966688 37.366234,-121.966693 37.366232,-121.966698 37.36623,-121.966708 37.366229,-121.966717 37.366229,-121.966728 37.36623,-121.966738 37.366232,-121.966741 37.366237,-121.966744 37.366241,-121.966746 37.366247,-121.966749 37.366252,-121.966755 37.366246,-121.966761 37.36624,-121.966774 37.366234,-121.966787 37.366227,-121.9668 37.366231,-121.966814 37.366235,-121.966819 37.366238,-121.966824 37.366241,-121.966829 37.366238,-121.966835 37.366236),(-121.96675 37.366227,-121.966751 37.366225,-121.966752 37.366224,-121.966755 37.366223,-121.966758 37.366222,-121.966761 37.366223,-121.966763 37.366224,-121.966763 37.366225,-121.966763 37.366227,-121.966761 37.366229,-121.966759 37.366231,-121.966757 37.366232,-121.966755 37.366232,-121.966753 37.366232,-121.966751 37.366231,-121.966751 37.366229,-121.96675 37.366227),(-121.967158 37.366297,-121.967158 37.366297,-121.967158 37.366297,-121.967158 37.366297,-121.967158 37.366297,-121.967159 37.366296,-121.967159 37.366295,-121.967162 37.366295,-121.967165 37.366295,-121.967168 37.366295,-121.967171 37.366296,-121.96717 37.366297,-121.967168 37.366298,-121.967165 37.366298,-121.967163 37.366299,-121.96716 37.366298,-121.967158 37.366297),(-121.967125 37.366299,-121.967126 37.366297,-121.967127 37.366296,-121.967129 37.366295,-121.96713 37.366294,-121.967132 37.366295,-121.967134 37.366296,-121.967135 37.366297,-121.967136 37.366299,-121.967135 37.366301,-121.967134 37.366303,-121.967132 37.366304,-121.96713 37.366304,-121.967129 37.366304,-121.967127 37.366303,-121.967126 37.366301,-121.967125 37.366299),(-121.967111 37.366323,-121.967114 37.36632,-121.967118 37.366316,-121.967122 37.366317,-121.967127 37.366318,-121.967128 37.366322,-121.96713 37.366326,-121.967125 37.366327,-121.96712 37.366329,-121.967116 37.366328,-121.967113 37.366327,-121.967112 37.366325,-121.967111 37.366323),(-121.967112 37.366375,-121.967114 37.366363,-121.967115 37.366352,-121.967124 37.366354,-121.967132 37.366357,-121.967138 37.366362,-121.967144 37.366367,-121.96714 37.366371,-121.967125 37.36639,-121.967122 37.366393,-121.967119 37.366396,-121.967112 37.366375),(-121.967206 37.365754,-121.967204 37.36576,-121.967202 37.365766,-121.966784 37.365765,-121.966367 37.365764,-121.966367 37.365758,-121.966367 37.365751,-121.966787 37.365752,-121.967206 37.365754),(-121.966932 37.365875,-121.966953 37.36589,-121.966975 37.365901,-121.966991 37.365909,-121.966998 37.365917,-121.966997 37.365922,-121.966993 37.365924,-121.966987 37.365926,-121.966978 37.365933,-121.966971 37.365951,-121.96697 37.366,-121.966975 37.366059,-121.967004 37.366082,-121.967017 37.366092,-121.967024 37.366103,-121.967035 37.36612,-121.96707 37.366126,-121.967124 37.366125,-121.967141 37.366112,-121.967147 37.366094,-121.967168 37.366082,-121.967186 37.366071,-121.967195 37.366049,-121.9672 37.366027,-121.967201 37.366008,-121.967201 37.365995,-121.967205 37.365988,-121.967207 37.365994,-121.967206 37.366013,-121.967199 37.366059,-121.967171 37.366085,-121.967154 37.366096,-121.967153 37.366112,-121.967154 37.36612,-121.967155 37.366129,-121.967136 37.36613,-121.967117 37.366132,-121.967086 37.366134,-121.967065 37.366132,-121.967052 37.36613,-121.967038 37.366127,-121.967027 37.366121,-121.967019 37.366106,-121.967012 37.366094,-121.967005 37.366088,-121.966996 37.366084,-121.966982 37.366074,-121.966968 37.366054,-121.966965 37.366003,-121.966967 37.36594,-121.966982 37.365921,-121.96699 37.365913,-121.966977 37.365908,-121.966963 37.365903,-121.966943 37.36589,-121.966926 37.365878,-121.966917 37.365872,-121.966916 37.365877,-121.966915 37.365889,-121.966914 37.365951,-121.966919 37.365982,-121.966921 37.365992,-121.966921 37.365998,-121.966918 37.366019,-121.966916 37.366067,-121.966914 37.366116,-121.966913 37.36614,-121.966918 37.366146,-121.966939 37.366148,-121.966972 37.36615,-121.966944 37.366155,-121.96691 37.366148,-121.966907 37.366119,-121.966909 37.36608,-121.96691 37.366019,-121.966908 37.36596,-121.966908 37.365926,-121.966909 37.365876,-121.966911 37.365857,-121.966918 37.365862,-121.966932 37.365875,-121.966932 37.365875,-121.966932 37.365875),(-121.967249 37.365878,-121.967255 37.366018,-121.967251 37.36613,-121.967234 37.366158,-121.967206 37.366161,-121.967137 37.366161,-121.967107 37.366159,-121.966978 37.366154,-121.966957 37.366154,-121.966979 37.36615,-121.967031 37.366149,-121.967093 37.366154,-121.967141 37.366155,-121.967199 37.366156,-121.967227 37.366153,-121.96724 37.366146,-121.967246 37.366121,-121.967241 37.366104,-121.967236 37.366098,-121.967244 37.366085,-121.967251 37.366066,-121.967249 37.366009,-121.967247 37.365958,-121.967246 37.365929,-121.967246 37.365895,-121.967241 37.365881,-121.967236 37.365879,-121.967233 37.365887,-121.967227 37.365895,-121.967217 37.365898,-121.967208 37.3659,-121.967202 37.365903,-121.967196 37.365907,-121.967186 37.365908,-121.967173 37.365912,-121.967185 37.365925,-121.967203 37.365952,-121.967205 37.365988,-121.967201 37.365995,-121.967201 37.365975,-121.967193 37.365945,-121.967173 37.365921,-121.967164 37.365912,-121.967182 37.365903,-121.967199 37.365896,-121.967217 37.365886,-121.967239 37.365873,-121.967249 37.365878,-121.967249 37.365878,-121.967249 37.365878),(-121.966269 37.365914,-121.966267 37.365914,-121.966268 37.365913,-121.966269 37.365914,-121.966269 37.365914,-121.966269 37.365914),(-121.966794 37.36594,-121.966806 37.365941,-121.966807 37.365955,-121.966806 37.365964,-121.966805 37.365973,-121.966454 37.365971,-121.966454 37.365966,-121.966803 37.365971,-121.966803 37.365965,-121.966803 37.365958,-121.9668 37.365948,-121.966783 37.365946,-121.966421 37.365943,-121.966392 37.365954,-121.966399 37.365961,-121.96642 37.365965,-121.966433 37.365967,-121.966446 37.365968,-121.966434 37.365969,-121.966422 37.365969,-121.966394 37.365965,-121.966385 37.365949,-121.96639 37.365942,-121.966403 37.365938,-121.966556 37.365936,-121.966794 37.36594),(-121.966646 37.366023,-121.966664 37.366025,-121.966692 37.366025,-121.966768 37.366026,-121.966805 37.366037,-121.966804 37.366055,-121.96679 37.366062,-121.966782 37.366061,-121.966791 37.366057,-121.966802 37.366046,-121.966798 37.366035,-121.966686 37.366029,-121.966486 37.366025,-121.96641 37.366026,-121.966397 37.366035,-121.966406 37.36605,-121.966424 37.366048,-121.966432 37.366047,-121.966444 37.366051,-121.966451 37.366056,-121.966432 37.366057,-121.966398 37.366049,-121.966385 37.366027,-121.966402 37.366018,-121.96651 37.366018,-121.966601 37.36602,-121.966646 37.366023,-121.966646 37.366023,-121.966646 37.366023),(-121.966777 37.366056,-121.966784 37.36606,-121.966782 37.366061,-121.966756 37.366062,-121.966702 37.36606,-121.966648 37.366057,-121.966624 37.366055,-121.966629 37.366053,-121.966642 37.366051,-121.966777 37.366056),(-121.966562 37.366053,-121.966572 37.366055,-121.966539 37.366056,-121.966499 37.366055,-121.966473 37.366053,-121.966496 37.366049,-121.966562 37.366053,-121.966562 37.366053,-121.966562 37.366053),(-121.96654 37.366106,-121.96658 37.366109,-121.966673 37.366111,-121.966774 37.366113,-121.966809 37.366118,-121.966812 37.366123,-121.96681 37.366124,-121.966807 37.366136,-121.966801 37.366121,-121.966702 37.366116,-121.96647 37.366112,-121.966408 37.366113,-121.966399 37.366124,-121.966405 37.366138,-121.96647 37.366137,-121.966544 37.366139,-121.966609 37.36614,-121.966641 37.366143,-121.966635 37.366146,-121.966608 37.366147,-121.966483 37.366144,-121.966444 37.366143,-121.966421 37.366141,-121.966421 37.366141,-121.966398 37.36614,-121.966392 37.36612,-121.966393 37.366113,-121.966393 37.366106,-121.966429 37.366106,-121.966465 37.366105,-121.966516 37.366105,-121.96654 37.366106),(-121.966812 37.366137,-121.9668 37.366146,-121.966688 37.366148,-121.966662 37.366146,-121.966684 37.366143,-121.966789 37.366143,-121.966807 37.366136,-121.966813 37.36613,-121.966812 37.366137),(-121.966418 37.366339,-121.966417 37.366346,-121.966415 37.366354,-121.966413 37.36635,-121.96641 37.366347,-121.966409 37.366341,-121.966408 37.366336,-121.96641 37.366332,-121.966412 37.366327,-121.966416 37.366326,-121.966419 37.366324,-121.966418 37.366332,-121.966418 37.366339),(-121.967181 37.366366,-121.967181 37.366368,-121.96718 37.36637,-121.967178 37.366371,-121.967176 37.366371,-121.967173 37.366371,-121.96717 37.36637,-121.967169 37.366368,-121.967167 37.366366,-121.967168 37.366364,-121.967169 37.366363,-121.967171 37.366362,-121.967172 37.366361,-121.967175 37.366362,-121.967177 37.366363,-121.967179 37.366364,-121.967181 37.366366),(-121.966334 37.366416,-121.966338 37.366427,-121.96633 37.366433,-121.966324 37.36643,-121.966322 37.366423,-121.966326 37.366413,-121.966334 37.366416),(-121.966404 37.366459,-121.966405 37.366462,-121.966402 37.366464,-121.966397 37.366462,-121.966393 37.366459,-121.966393 37.366455,-121.966395 37.366454,-121.9664 37.366455,-121.966404 37.366459),(-121.966746 37.366472,-121.966762 37.366474,-121.966798 37.366475,-121.966862 37.366482,-121.966889 37.366506,-121.966893 37.366519,-121.966894 37.366527,-121.966892 37.366559,-121.96689 37.366629,-121.966886 37.366702,-121.966882 37.366739,-121.966878 37.366755,-121.966877 37.366773,-121.966859 37.366816,-121.966794 37.366829,-121.966742 37.366821,-121.966729 37.366787,-121.966728 37.366766,-121.966726 37.366748,-121.966726 37.366723,-121.966729 37.366688,-121.96673 37.366657,-121.966728 37.366641,-121.966723 37.36661,-121.966726 37.366568,-121.966727 37.366554,-121.966724 37.366544,-121.966721 37.366534,-121.966727 37.366517,-121.966734 37.366499,-121.966739 37.366483,-121.966742 37.366474,-121.966746 37.366472),(-121.966751 37.366484,-121.966768 37.366481,-121.966802 37.36648,-121.966876 37.366496,-121.966884 37.366593,-121.966881 37.366658,-121.966878 37.366703,-121.966871 37.366731,-121.966851 37.366731,-121.966845 37.366731,-121.966843 37.366735,-121.966837 37.366745,-121.966827 37.366741,-121.966809 37.36674,-121.966795 37.366741,-121.966793 37.366747,-121.966786 37.366741,-121.966778 37.366737,-121.966763 37.366734,-121.966752 37.366734,-121.966742 37.366734,-121.96674 37.366718,-121.966738 37.366703,-121.966736 37.366677,-121.966736 37.366658,-121.966737 37.366648,-121.966735 37.366642,-121.966732 37.366621,-121.966732 37.366575,-121.966737 37.36651,-121.966751 37.366484),(-121.969725 37.366519,-121.969723 37.366525,-121.969703 37.366561,-121.969688 37.366593,-121.969681 37.366614,-121.96964 37.366753,-121.969627 37.366839,-121.969624 37.366856,-121.96962 37.36687,-121.969614 37.366878,-121.969611 37.366858,-121.969611 37.366776,-121.969624 37.366689,-121.969653 37.366614,-121.96969 37.366556,-121.969716 37.366525,-121.969722 37.366518,-121.969725 37.366519),(-121.967938 37.366593,-121.96794 37.366622,-121.967941 37.366647,-121.967944 37.366678,-121.967946 37.366724,-121.96795 37.366769,-121.967955 37.366795,-121.967957 37.366803,-121.96796 37.36681,-121.968 37.366808,-121.968041 37.366807,-121.968456 37.3668,-121.968932 37.366797,-121.969172 37.366805,-121.969297 37.366828,-121.96929 37.366842,-121.969064 37.366852,-121.968899 37.366856,-121.968594 37.36686,-121.968271 37.366866,-121.968063 37.36687,-121.967972 37.366871,-121.967932 37.36687,-121.967929 37.366847,-121.967928 37.366798,-121.967933 37.366643,-121.967938 37.366593,-121.967938 37.366593,-121.967938 37.366593),(-121.970554 37.366575,-121.970552 37.366586,-121.970546 37.366605,-121.970538 37.366649,-121.970534 37.366675,-121.970523 37.366678,-121.97052 37.366662,-121.970531 37.366625,-121.970539 37.366588,-121.970554 37.366575),(-121.970546 37.366785,-121.97055 37.366806,-121.970553 37.366839,-121.970545 37.366927,-121.970516 37.367015,-121.970504 37.367042,-121.970495 37.36706,-121.970481 37.367077,-121.970449 37.36711,-121.970406 37.367148,-121.970369 37.367166,-121.970235 37.367194,-121.970119 37.367184,-121.970046 37.367189,-121.970024 37.367171,-121.970009 37.367152,-121.970067 37.367161,-121.97014 37.367159,-121.970259 37.367146,-121.97036 37.367099,-121.970435 37.367034,-121.970491 37.36695,-121.970518 37.366887,-121.970537 37.366798,-121.970538 37.366788,-121.970546 37.366785),(-121.967838 37.366835,-121.967875 37.366848,-121.967881 37.366862,-121.967812 37.366869,-121.967746 37.366866,-121.967746 37.366857,-121.967751 37.366845,-121.967762 37.366832,-121.967784 37.36683,-121.967811 37.366832,-121.967838 37.366835),(-121.967725 37.366842,-121.967732 37.366849,-121.967735 37.366858,-121.967724 37.366866,-121.967657 37.366869,-121.967595 37.366869,-121.96758 37.366864,-121.967596 37.366845,-121.967656 37.366838,-121.9677 37.366839,-121.967725 37.366842),(-121.965556 37.367099,-121.965526 37.367143,-121.965486 37.367185,-121.965394 37.367226,-121.965322 37.367244,-121.965161 37.367226,-121.965121 37.3672,-121.965107 37.367182,-121.965126 37.367185,-121.965169 37.367195,-121.965354 37.367201,-121.96552 37.36712,-121.965546 37.367102,-121.965556 37.367099),(-121.969782 37.367567,-121.969783 37.367602,-121.969789 37.367619,-121.969805 37.367632,-121.969834 37.367649,-121.969868 37.367672,-121.96989 37.367697,-121.969964 37.367734,-121.970072 37.367783,-121.970194 37.367777,-121.970291 37.367773,-121.970305 37.367762,-121.970316 37.367749,-121.970337 37.367732,-121.970358 37.367714,-121.970384 37.367692,-121.970404 37.36767,-121.970413 37.367644,-121.970418 37.367643,-121.970426 37.367648,-121.97043 37.367652,-121.970419 37.367655,-121.970414 37.367665,-121.970412 37.367674,-121.970401 37.367702,-121.970373 37.367719,-121.970342 37.367729,-121.970335 37.367743,-121.97032 37.367777,-121.970291 37.367797,-121.970279 37.367803,-121.970266 37.367808,-121.970226 37.367825,-121.970099 37.367811,-121.970053 37.367805,-121.970005 37.3678,-121.969975 37.367796,-121.96995 37.367788,-121.969924 37.36778,-121.969901 37.367754,-121.969876 37.36774,-121.969865 37.367734,-121.969844 37.367721,-121.969819 37.367702,-121.969812 37.36768,-121.969803 37.367654,-121.969775 37.367635,-121.969764 37.367629,-121.969754 37.367623,-121.969755 37.3676,-121.969756 37.367576,-121.969757 37.367552,-121.969757 37.367528,-121.969749 37.367529,-121.96974 37.367531,-121.969753 37.367525,-121.969768 37.367524,-121.969783 37.367522,-121.969782 37.367544,-121.969782 37.367567),(-121.965767 37.36756,-121.965778 37.367568,-121.96575 37.367565,-121.965752 37.367578,-121.965755 37.367592,-121.965749 37.367624,-121.965743 37.367661,-121.965722 37.367691,-121.965704 37.367717,-121.965671 37.367748,-121.965616 37.367796,-121.965561 37.367824,-121.965564 37.367826,-121.965572 37.367826,-121.965581 37.367827,-121.965586 37.367831,-121.965579 37.367837,-121.965557 37.367842,-121.965531 37.367848,-121.965511 37.367854,-121.965374 37.367877,-121.965247 37.367882,-121.965234 37.367871,-121.96524 37.367863,-121.965237 37.367859,-121.965221 37.367849,-121.965198 37.367833,-121.965177 37.367793,-121.965151 37.367785,-121.965119 37.367772,-121.9651 37.367732,-121.965093 37.367705,-121.965083 37.367701,-121.965053 37.367724,-121.965014 37.36777,-121.965009 37.367779,-121.965012 37.367768,-121.965042 37.367729,-121.965093 37.36769,-121.965098 37.367696,-121.965102 37.367709,-121.965121 37.367744,-121.965136 37.367774,-121.965183 37.367786,-121.965204 37.367801,-121.965308 37.367841,-121.96545 37.367815,-121.965567 37.367794,-121.965611 37.367752,-121.965646 37.367721,-121.965683 37.367687,-121.965729 37.367601,-121.965736 37.367546,-121.965767 37.36756,-121.965767 37.36756),(-121.968994 37.371297,-121.969067 37.371449,-121.969123 37.371602,-121.969161 37.371692,-121.969257 37.371958,-121.969282 37.372052,-121.969284 37.372163,-121.969284 37.372204,-121.969284 37.37224,-121.969283 37.372272,-121.969281 37.372302,-121.969279 37.372331,-121.969275 37.37236,-121.96927 37.372392,-121.969264 37.372426,-121.969235 37.372551,-121.969193 37.372671,-121.96914 37.372786,-121.969075 37.372895,-121.968999 37.372996,-121.968913 37.37309,-121.968818 37.373176,-121.968713 37.373252,-121.968685 37.373268,-121.968653 37.373287,-121.968461 37.373377,-121.968427 37.37339,-121.968323 37.373424,-121.968214 37.373451,-121.968101 37.373472,-121.967985 37.373487,-121.967868 37.373495,-121.967752 37.373496,-121.967637 37.373491,-121.967525 37.373478,-121.967435 37.373463,-121.967349 37.373444,-121.967268 37.373421,-121.967189 37.373393,-121.967112 37.373361,-121.967036 37.373324,-121.966961 37.373281,-121.966885 37.373233,-121.966821 37.373191,-121.966807 37.373183,-121.966796 37.373177,-121.966789 37.373173,-121.966784 37.373172,-121.966781 37.373173,-121.966778 37.373175,-121.966774 37.373176,-121.966768 37.373175,-121.96676 37.373171,-121.96675 37.373166,-121.966738 37.373159,-121.966725 37.37315,-121.966693 37.373127,-121.966633 37.373062,-121.966619 37.373044,-121.966589 37.372991,-121.966583 37.372978,-121.966579 37.372969,-121.966577 37.372962,-121.966577 37.372954,-121.966584 37.372955,-121.966586 37.372955,-121.966589 37.372956,-121.96659 37.372955,-121.966591 37.372955,-121.966591 37.372954,-121.966591 37.372953,-121.966587 37.372944,-121.966578 37.372927,-121.966523 37.372801,-121.96652 37.372795,-121.966513 37.372789,-121.966503 37.372786,-121.966494 37.372784,-121.966443 37.37276,-121.966428 37.372748,-121.966412 37.372733,-121.966397 37.372715,-121.966381 37.372694,-121.966366 37.372672,-121.966327 37.372597,-121.966318 37.372577,-121.966311 37.372558,-121.966305 37.372541,-121.966296 37.372484,-121.966298 37.372458,-121.9663 37.372454,-121.966303 37.37245,-121.966323 37.372431,-121.966325 37.37243,-121.966327 37.372428,-121.966329 37.372426,-121.966327 37.372418,-121.966318 37.372371,-121.966316 37.372363,-121.966313 37.372344,-121.96631 37.372327,-121.966305 37.372275,-121.966305 37.372254,-121.966304 37.372229,-121.966304 37.3722,-121.966306 37.372122,-121.966309 37.372089,-121.966313 37.372056,-121.966336 37.371948,-121.966348 37.371902,-121.966449 37.371634,-121.96648 37.371562,-121.966565 37.371341,-121.966574 37.371332,-121.966581 37.371442,-121.966589 37.371557,-121.966605 37.371558,-121.966665 37.371594,-121.966703 37.371659,-121.966742 37.371838,-121.966743 37.371849,-121.966744 37.371867,-121.966771 37.372268,-121.966833 37.372338,-121.967183 37.37228,-121.967287 37.372259,-121.967394 37.37224,-121.967503 37.372222,-121.967611 37.372206,-121.967719 37.372192,-121.967823 37.37218,-121.967923 37.372171,-121.968016 37.372164,-121.968091 37.37216,-121.968161 37.372158,-121.968226 37.372158,-121.968289 37.372159,-121.968348 37.372163,-121.968406 37.372168,-121.968463 37.372175,-121.96852 37.372185,-121.968727 37.372186,-121.968819 37.371878,-121.968828 37.371814,-121.968837 37.371758,-121.968846 37.371711,-121.968857 37.371672,-121.968868 37.37164,-121.968881 37.371613,-121.968896 37.371592,-121.968912 37.371575,-121.968958 37.371559,-121.968996 37.371564,-121.968988 37.371509,-121.96899 37.371409,-121.968994 37.371297),(-121.966555 37.371383,-121.966562 37.371366,-121.966566 37.371445,-121.966556 37.371464,-121.966515 37.37157,-121.9665 37.371592,-121.966482 37.371596,-121.966528 37.371459,-121.966555 37.371383),(-121.966543 37.371602,-121.966605 37.371596,-121.966627 37.371604,-121.966639 37.371617,-121.966627 37.371627,-121.966566 37.371635,-121.966485 37.371647,-121.966443 37.371685,-121.966429 37.371702,-121.966463 37.371631,-121.966543 37.371602),(-121.968796 37.372176,-121.968796 37.372176,-121.968827 37.372184,-121.968851 37.372213,-121.968882 37.372245,-121.968909 37.372284,-121.968917 37.37231,-121.968916 37.372323,-121.968939 37.372346,-121.968835 37.372341,-121.968585 37.372314,-121.968527 37.372302,-121.968484 37.372296,-121.968472 37.372277,-121.968504 37.372273,-121.968524 37.372271,-121.968634 37.372248,-121.968747 37.372208,-121.968768 37.372192,-121.968796 37.372176),(-121.967543 37.372311,-121.967639 37.372306,-121.967634 37.372319,-121.967593 37.372329,-121.967517 37.372335,-121.96747 37.372337,-121.967452 37.372336,-121.967438 37.372333,-121.967469 37.372323,-121.967543 37.372311),(-121.966749 37.37233,-121.96676 37.372308,-121.966782 37.372333,-121.966836 37.372374,-121.96687 37.372391,-121.966961 37.372385,-121.967056 37.372378,-121.967099 37.37237,-121.967165 37.372357,-121.967331 37.372339,-121.967385 37.372333,-121.967413 37.372334,-121.967384 37.372351,-121.967341 37.372358,-121.967297 37.372367,-121.967109 37.372406,-121.967039 37.372421,-121.967008 37.37243,-121.966967 37.37244,-121.966885 37.372457,-121.966796 37.372472,-121.96675 37.37248,-121.96663 37.372482,-121.966675 37.372388,-121.966687 37.372369,-121.96672 37.372352,-121.966749 37.37233),(-121.967669 37.372315,-121.96768 37.372313,-121.967688 37.372318,-121.967669 37.372315))' END IF @i IN(19,39,141 , 150) BEGIN INSERT INTO @tt SELECT 'Black','POLYGON ((-121.967355 37.365672,-121.967355 37.365672,-121.967091 37.365674,-121.966993 37.365676,-121.966495 37.365677,-121.966247 37.365677,-121.966234 37.36569,-121.966216 37.365703,-121.96622 37.365728,-121.966221 37.36574,-121.966222 37.365823,-121.966226 37.365863,-121.966229 37.365908,-121.966231 37.365946,-121.966235 37.365968,-121.966238 37.366009,-121.966238 37.366096,-121.966237 37.366186,-121.966236 37.366238,-121.966237 37.366278,-121.966238 37.366343,-121.966247 37.366435,-121.966279 37.366468,-121.966304 37.366475,-121.966351 37.366475,-121.966396 37.366474,-121.966431 37.366475,-121.966462 37.366477,-121.966498 37.366475,-121.96653 37.366474,-121.96655 37.366476,-121.966563 37.366478,-121.966577 37.366477,-121.966609 37.366482,-121.966633 37.366499,-121.966637 37.366526,-121.966636 37.366585,-121.966636 37.366649,-121.966642 37.36667,-121.966651 37.366677,-121.966661 37.36668,-121.966685 37.366695,-121.966681 37.366742,-121.966677 37.366766,-121.966675 37.3668,-121.966688 37.366851,-121.966794 37.366858,-121.966868 37.366857,-121.966904 37.366854,-121.966922 37.366821,-121.966926 37.366748,-121.96693 37.366688,-121.966953 37.366675,-121.966976 37.366659,-121.966981 37.36659,-121.966983 37.366536,-121.966987 37.366504,-121.967008 37.36648,-121.96705 37.366474,-121.967072 37.366475,-121.967091 37.366475,-121.967124 37.366475,-121.967183 37.366475,-121.967335 37.366471,-121.967382 37.366443,-121.967392 37.366424,-121.967395 37.3664,-121.967396 37.366375,-121.9674 37.366351,-121.967411 37.366115,-121.967411 37.365803,-121.967396 37.365709,-121.967355 37.365672),(-121.966732 37.3657,-121.966732 37.3657,-121.967207 37.365695,-121.967221 37.365695,-121.967283 37.365698,-121.967351 37.365711,-121.967371 37.365903,-121.967374 37.366002,-121.967376 37.366076,-121.967372 37.366174,-121.967358 37.366225,-121.96734 37.366228,-121.967307 37.36623,-121.967286 37.36623,-121.967265 37.36623,-121.967265 37.366261,-121.967264 37.366292,-121.967262 37.366347,-121.967259 37.366393,-121.967247 37.366437,-121.967205 37.366441,-121.967174 37.366439,-121.967142 37.366437,-121.967109 37.366433,-121.967109 37.366425,-121.967114 37.366417,-121.967107 37.366412,-121.967101 37.366417,-121.967096 37.366428,-121.96709 37.36644,-121.967073 37.366444,-121.967028 37.366436,-121.967009 37.366409,-121.967007 37.366401,-121.967004 37.366397,-121.967 37.366402,-121.966998 37.366413,-121.966984 37.366434,-121.966935 37.366439,-121.966898 37.366434,-121.966898 37.36642,-121.966903 37.366397,-121.966904 37.366337,-121.966902 37.366282,-121.9669 37.366259,-121.966894 37.366262,-121.966889 37.36628,-121.966887 37.366302,-121.966884 37.366333,-121.966882 37.366368,-121.96688 37.366402,-121.96688 37.366419,-121.966879 37.366436,-121.966858 37.366436,-121.966837 37.366436,-121.966816 37.366436,-121.966795 37.366436,-121.966792 37.366425,-121.96679 37.366414,-121.96678 37.36639,-121.966773 37.36641,-121.966768 37.36643,-121.966756 37.366439,-121.966718 37.36644,-121.966686 37.366421,-121.966679 37.366413,-121.966671 37.366405,-121.966669 37.366412,-121.966666 37.366419,-121.96666 37.36643,-121.966654 37.366436,-121.966633 37.366438,-121.966592 37.36644,-121.966546 37.36644,-121.966535 37.366432,-121.96653 37.366423,-121.966518 37.366433,-121.966505 37.36644,-121.966485 37.366441,-121.966457 37.366439,-121.966422 37.366439,-121.966376 37.366433,-121.966369 37.366407,-121.966376 37.366376,-121.966395 37.366365,-121.966406 37.366361,-121.966408 37.366351,-121.966408 37.366339,-121.96641 37.36633,-121.966412 37.366311,-121.966414 37.366277,-121.966417 37.366238,-121.966425 37.366224,-121.966431 37.366214,-121.96641 37.366216,-121.966346 37.366217,-121.966284 37.36621,-121.96627 37.366192,-121.96627 37.366162,-121.966273 37.365976,-121.966266 37.365901,-121.966266 37.365878,-121.966262 37.365852,-121.966258 37.365824,-121.966256 37.365798,-121.966251 37.365749,-121.966257 37.365713,-121.966267 37.365701,-121.966732 37.3657),(-121.966945 37.365891,-121.966964 37.365903,-121.966977 37.365908,-121.96699 37.365913,-121.966982 37.365921,-121.966967 37.36594,-121.966965 37.366003,-121.966968 37.366054,-121.966982 37.366074,-121.966996 37.366084,-121.967005 37.366088,-121.967012 37.366094,-121.967019 37.366106,-121.967027 37.366121,-121.967038 37.366127,-121.967052 37.36613,-121.967065 37.366132,-121.967086 37.366134,-121.967117 37.366132,-121.967136 37.36613,-121.967155 37.366129,-121.967154 37.36612,-121.967153 37.366112,-121.967154 37.366096,-121.967171 37.366085,-121.967199 37.366059,-121.967207 37.366006,-121.967203 37.365955,-121.967185 37.365925,-121.967173 37.365911,-121.967186 37.365908,-121.967196 37.365907,-121.967202 37.365903,-121.967208 37.3659,-121.967217 37.365898,-121.967227 37.365895,-121.967233 37.365887,-121.967236 37.365879,-121.967241 37.365881,-121.967246 37.365895,-121.967251 37.366066,-121.967244 37.366085,-121.967236 37.366098,-121.967241 37.366104,-121.967246 37.366121,-121.96724 37.366146,-121.967227 37.366153,-121.967199 37.366156,-121.966972 37.36615,-121.96692 37.366147,-121.966913 37.36614,-121.966914 37.366116,-121.966914 37.365921,-121.966919 37.365873,-121.966928 37.365878,-121.966945 37.365891,-121.966945 37.365891,-121.966945 37.365891),(-121.966769 37.365947,-121.966791 37.365946,-121.966801 37.365946,-121.966803 37.365957,-121.966803 37.365963,-121.966803 37.36597,-121.966417 37.365965,-121.966392 37.365957,-121.966391 37.36595,-121.966393 37.365946,-121.966769 37.365947),(-121.966764 37.366033,-121.9668 37.366037,-121.966802 37.366043,-121.966801 37.36605,-121.966787 37.366057,-121.966435 37.366046,-121.96643 37.366045,-121.966424 37.366048,-121.966406 37.36605,-121.966397 37.366035,-121.96641 37.366026,-121.966764 37.366033),(-121.9668 37.366123,-121.966806 37.366137,-121.966788 37.366143,-121.966405 37.366138,-121.966399 37.366124,-121.966408 37.366113,-121.9668 37.366123),(-121.966543 37.366221,-121.966525 37.366256,-121.966546 37.366287,-121.966554 37.36629,-121.966562 37.366294,-121.966555 37.366294,-121.966548 37.366294,-121.966537 37.366296,-121.966533 37.366301,-121.966534 37.366332,-121.966542 37.366355,-121.966547 37.366367,-121.966539 37.366378,-121.966531 37.366384,-121.966528 37.366383,-121.966522 37.366375,-121.966507 37.366366,-121.966489 37.366354,-121.966486 37.366331,-121.966486 37.366308,-121.966484 37.366286,-121.966485 37.366268,-121.966493 37.366254,-121.966499 37.366248,-121.966504 37.366242,-121.966498 37.366237,-121.966492 37.366233,-121.966486 37.36622,-121.966523 37.366215,-121.966547 37.366215,-121.966543 37.366221,-121.966543 37.366221),(-121.966987 37.366222,-121.96699 37.366226,-121.966985 37.366229,-121.966977 37.36623,-121.966971 37.366228,-121.966973 37.366221,-121.966987 37.366222),(-121.966836 37.366221,-121.966838 37.366224,-121.966837 37.366228,-121.966826 37.366232,-121.966819 37.366228,-121.966826 37.366221,-121.966836 37.366221,-121.966836 37.366221,-121.966836 37.366221),(-121.967056 37.36623,-121.96705 37.366234,-121.967045 37.366235,-121.967044 37.366227,-121.967055 37.366222,-121.96706 37.366224,-121.967056 37.36623),(-121.966908 37.366228,-121.966899 37.366236,-121.966884 37.366231,-121.96688 37.366225,-121.966892 37.366224,-121.966904 37.366225,-121.966908 37.366228),(-121.966763 37.366227,-121.966759 37.366231,-121.966755 37.366232,-121.966751 37.366231,-121.96675 37.366227,-121.966752 37.366224,-121.966758 37.366222,-121.966763 37.366224,-121.966763 37.366227),(-121.966682 37.366231,-121.96668 37.366255,-121.966681 37.366303,-121.966684 37.366385,-121.966676 37.3664,-121.966664 37.36637,-121.966665 37.366331,-121.966666 37.366322,-121.966664 37.366309,-121.96666 37.366295,-121.966663 37.366285,-121.966667 37.366269,-121.966664 37.366235,-121.966666 37.366227,-121.966675 37.366223,-121.966684 37.366223,-121.966682 37.366231,-121.966682 37.366231,-121.966682 37.366231),(-121.967134 37.366236,-121.967131 37.366248,-121.967128 37.366262,-121.967121 37.366276,-121.967115 37.36625,-121.967113 37.366231,-121.967124 37.366227,-121.967133 37.366229,-121.967134 37.366236),(-121.967168 37.366298,-121.967163 37.366299,-121.967158 37.366297,-121.967159 37.366295,-121.967165 37.366295,-121.967171 37.366296,-121.967168 37.366298,-121.967168 37.366298,-121.967168 37.366298),(-121.967136 37.366299,-121.967134 37.366303,-121.96713 37.366304,-121.967127 37.366303,-121.967125 37.366299,-121.967127 37.366296,-121.96713 37.366294,-121.967134 37.366296,-121.967136 37.366299),(-121.967127 37.366318,-121.96713 37.366326,-121.96712 37.366329,-121.967113 37.366327,-121.967111 37.366323,-121.967118 37.366316,-121.967127 37.366318),(-121.967132 37.366357,-121.967144 37.366367,-121.967136 37.366375,-121.967128 37.366382,-121.967125 37.36639,-121.967119 37.366396,-121.967112 37.366375,-121.967115 37.366352,-121.967132 37.366357),(-121.966727 37.366517,-121.966734 37.366499,-121.966739 37.366483,-121.966742 37.366474,-121.966746 37.366472,-121.966762 37.366474,-121.966798 37.366475,-121.966862 37.366481,-121.966889 37.366506,-121.966893 37.366519,-121.966894 37.366527,-121.966892 37.366559,-121.96689 37.366629,-121.966886 37.366702,-121.966882 37.366739,-121.966878 37.366755,-121.966877 37.366773,-121.966859 37.366816,-121.966794 37.366829,-121.966742 37.366821,-121.966729 37.366787,-121.966728 37.366766,-121.966726 37.366748,-121.966726 37.366723,-121.966729 37.366688,-121.96673 37.366657,-121.966728 37.366641,-121.966723 37.36661,-121.966726 37.366568,-121.966727 37.366554,-121.966724 37.366544,-121.966721 37.366534,-121.966727 37.366517),(-121.969327 37.366937,-121.969336 37.367048,-121.969346 37.367229,-121.969319 37.367295,-121.969308 37.367316,-121.969263 37.367318,-121.969242 37.367311,-121.969228 37.367308,-121.969224 37.367282,-121.969215 37.367186,-121.969213 37.367029,-121.969216 37.366947,-121.969275 37.366937,-121.969327 37.366937),(-121.969032 37.366954,-121.969039 37.367029,-121.969038 37.367122,-121.969035 37.367306,-121.968936 37.367318,-121.968777 37.367318,-121.968676 37.367317,-121.968614 37.367315,-121.968611 37.367171,-121.96861 37.367036,-121.968611 37.366947,-121.968648 37.366947,-121.968704 37.366965,-121.968772 37.367004,-121.96883 37.367021,-121.968869 37.367003,-121.968935 37.366951,-121.96897 37.366946,-121.969027 37.366938,-121.969032 37.366954),(-121.968416 37.366966,-121.968433 37.367049,-121.968426 37.36732,-121.968354 37.367323,-121.968314 37.367327,-121.968252 37.367328,-121.968211 37.367327,-121.968144 37.367325,-121.968083 37.367324,-121.96808 37.367208,-121.96807 37.367062,-121.968078 37.366959,-121.968249 37.366964,-121.968416 37.366966,-121.968416 37.366966),(-121.967461 37.367057,-121.967459 37.367113,-121.967458 37.367165,-121.967457 37.367233,-121.967463 37.367322,-121.967454 37.367329,-121.967446 37.367331,-121.967401 37.367338,-121.967358 37.367312,-121.967272 37.367242,-121.967223 37.367219,-121.967173 37.367322,-121.96713 37.367336,-121.9671 37.36733,-121.967092 37.367329,-121.967089 37.367138,-121.967095 37.367017,-121.967096 37.366973,-121.967189 37.366967,-121.967305 37.366963,-121.967442 37.366962,-121.967467 37.366959,-121.967461 37.367057),(-121.966908 37.366963,-121.96691 37.367138,-121.966901 37.367332,-121.966736 37.367336,-121.96662 37.367339,-121.966574 37.367333,-121.966493 37.367316,-121.966481 37.367086,-121.966496 37.367006,-121.966528 37.366986,-121.966717 37.366963,-121.966908 37.366963),(-121.966308 37.366975,-121.966304 37.367151,-121.966288 37.367336,-121.966236 37.367335,-121.966198 37.367337,-121.966192 37.367288,-121.966188 37.367239,-121.96618 37.367166,-121.966185 37.367066,-121.966195 37.366971,-121.966247 37.366963,-121.966308 37.366975),(-121.967803 37.367008,-121.967828 37.36702,-121.967825 37.367054,-121.967803 37.367061,-121.967775 37.367064,-121.967736 37.367074,-121.967709 37.367096,-121.967698 37.367127,-121.967689 37.367144,-121.967685 37.367161,-121.967665 37.367175,-121.967646 37.367157,-121.967643 37.36713,-121.967658 37.367085,-121.967681 37.367055,-121.967705 37.367034,-121.967736 37.367014,-121.967772 37.367005,-121.967803 37.367008),(-121.967905 37.367124,-121.96791 37.367156,-121.967904 37.367201,-121.967891 37.367225,-121.967883 37.367236,-121.967864 37.367257,-121.967827 37.367279,-121.967768 37.367287,-121.967746 37.367269,-121.967744 37.367245,-121.967752 37.367234,-121.967773 37.367232,-121.967808 37.367226,-121.96785 37.367198,-121.96786 37.367158,-121.96787 37.367124,-121.96789 37.367111,-121.967905 37.367124),(-121.967831 37.367431,-121.967826 37.367843,-121.96783 37.367909,-121.967858 37.368853,-121.967878 37.368897,-121.9679 37.368949,-121.96797 37.369103,-121.968052 37.369285,-121.968076 37.369341,-121.968224 37.36967,-121.968274 37.369782,-121.968309 37.369857,-121.968438 37.370144,-121.968428 37.370162,-121.968425 37.370198,-121.96846 37.370205,-121.968476 37.370239,-121.968465 37.370254,-121.96843 37.37024,-121.968421 37.370228,-121.968402 37.370192,-121.968372 37.37013,-121.968242 37.369845,-121.968226 37.369819,-121.968045 37.369993,-121.968019 37.37,-121.968007 37.370001,-121.96796 37.370005,-121.967824 37.369836,-121.967642 37.370083,-121.967598 37.370136,-121.967529 37.370212,-121.967478 37.370259,-121.967442 37.370259,-121.967401 37.370259,-121.967473 37.370186,-121.967616 37.37002,-121.967433 37.369855,-121.967399 37.36983,-121.967388 37.369854,-121.967365 37.369907,-121.967226 37.370242,-121.96721 37.370254,-121.967181 37.370251,-121.967192 37.370172,-121.967256 37.370018,-121.967335 37.369828,-121.967382 37.369718,-121.967474 37.3695,-121.967495 37.36945,-121.967542 37.369343,-121.967595 37.369218,-121.967648 37.3691,-121.967699 37.368982,-121.967725 37.368925,-121.967738 37.368893,-121.967757 37.36885,-121.967772 37.368813,-121.967767 37.368421,-121.967761 37.367953,-121.967759 37.367848,-121.96776 37.36783,-121.967766 37.367432,-121.967831 37.367431),(-121.967797 37.368883,-121.967815 37.368886,-121.967834 37.368931,-121.967862 37.369152,-121.96787 37.369358,-121.967855 37.369606,-121.967765 37.369815,-121.967678 37.369943,-121.967626 37.369913,-121.967475 37.369799,-121.967427 37.369761,-121.96744 37.369727,-121.967461 37.369679,-121.967532 37.369512,-121.96758 37.369399,-121.967637 37.369262,-121.967658 37.369211,-121.967687 37.36917,-121.967692 37.369384,-121.967685 37.369649,-121.967675 37.369719,-121.967725 37.369646,-121.96774 37.369605,-121.967741 37.369314,-121.967743 37.369023,-121.967767 37.368965,-121.967791 37.368898,-121.967797 37.368883),(-121.96792 37.369178,-121.967931 37.369147,-121.967973 37.36925,-121.967988 37.369283,-121.968185 37.369717,-121.968195 37.369742,-121.967977 37.369936,-121.96792 37.369872,-121.967874 37.369815,-121.967878 37.369731,-121.967922 37.369597,-121.967934 37.369381,-121.967926 37.369244,-121.96792 37.369178),(-121.969754 37.367623,-121.969775 37.367635,-121.969803 37.367654,-121.969819 37.367702,-121.969901 37.367754,-121.969924 37.36778,-121.969979 37.367797,-121.969918 37.367792,-121.969843 37.367786,-121.96983 37.367796,-121.96983 37.367796,-121.969797 37.367867,-121.969756 37.368157,-121.969739 37.368257,-121.969733 37.368372,-121.969742 37.368461,-121.969754 37.368508,-121.969751 37.368563,-121.969746 37.368596,-121.969743 37.368619,-121.969644 37.368966,-121.9696 37.36904,-121.969573 37.36906,-121.96955 37.369072,-121.969527 37.369117,-121.9695 37.369178,-121.969477 37.369203,-121.969386 37.369284,-121.969355 37.369319,-121.969333 37.369363,-121.969154 37.370089,-121.969189 37.369922,-121.969313 37.369257,-121.969608 37.367651,-121.969627 37.367594,-121.96968 37.367555,-121.96974 37.367531,-121.969757 37.367528,-121.969754 37.367623),(-121.965465 37.367862,-121.965518 37.367851,-121.965547 37.367845,-121.965579 37.367837,-121.965586 37.367831,-121.965581 37.367827,-121.965564 37.367826,-121.965561 37.367824,-121.965616 37.367796,-121.965704 37.367717,-121.965743 37.367661,-121.965755 37.367592,-121.96575 37.367565,-121.965765 37.367565,-121.965799 37.367572,-121.965799 37.367572,-121.965882 37.367622,-121.96591 37.367637,-121.965954 37.367848,-121.965989 37.368022,-121.966035 37.368241,-121.966164 37.368886,-121.966266 37.369385,-121.966352 37.369804,-121.966417 37.370118,-121.966407 37.37012,-121.96635 37.370119,-121.966332 37.370111,-121.966352 37.370084,-121.966362 37.370014,-121.966351 37.369929,-121.966335 37.369834,-121.966308 37.369746,-121.966283 37.369679,-121.966271 37.369633,-121.966252 37.369569,-121.966198 37.369421,-121.966146 37.369348,-121.966102 37.369297,-121.966007 37.369183,-121.965958 37.369086,-121.965934 37.369046,-121.96591 37.368998,-121.965841 37.36877,-121.965837 37.36875,-121.965823 37.368717,-121.965807 37.368673,-121.965793 37.368594,-121.965796 37.368581,-121.965796 37.368564,-121.965796 37.368544,-121.965802 37.368524,-121.965818 37.368466,-121.965825 37.368403,-121.965816 37.368306,-121.965792 37.368148,-121.965785 37.368106,-121.96578 37.368069,-121.965776 37.368042,-121.965772 37.368023,-121.965761 37.367971,-121.965752 37.367886,-121.965747 37.367846,-121.965735 37.367834,-121.965677 37.367828,-121.965578 37.367845,-121.965504 37.367862,-121.96537 37.367884,-121.96532 37.367888,-121.965189 37.367888,-121.965077 37.367866,-121.965035 37.367853,-121.965013 37.367848,-121.965001 37.367838,-121.964996 37.367816,-121.965013 37.367772,-121.965053 37.367724,-121.965083 37.367701,-121.965093 37.367705,-121.965093 37.367705,-121.965093 37.367705,-121.965096 37.367717,-121.965104 37.367738,-121.965119 37.367772,-121.965151 37.367785,-121.965177 37.367793,-121.965199 37.367834,-121.965221 37.367849,-121.965237 37.367859,-121.96524 37.367863,-121.965234 37.367871,-121.965247 37.367882,-121.965374 37.367877,-121.965465 37.367862),(-121.970459 37.367676,-121.970498 37.367719,-121.970514 37.367748,-121.970474 37.367791,-121.970383 37.367823,-121.970295 37.367835,-121.970282 37.367833,-121.970226 37.367825,-121.970279 37.367803,-121.970291 37.367797,-121.97032 37.367777,-121.970335 37.367743,-121.970342 37.367729,-121.970373 37.367719,-121.970401 37.367702,-121.970412 37.367674,-121.970419 37.367655,-121.97043 37.367652,-121.970459 37.367676),(-121.968827 37.368033,-121.968834 37.368044,-121.968837 37.368056,-121.968839 37.368065,-121.968844 37.36807,-121.968926 37.368071,-121.969078 37.368066,-121.969175 37.368061,-121.969282 37.368054,-121.969339 37.36805,-121.969367 37.36805,-121.969376 37.36805,-121.969369 37.368141,-121.969356 37.368238,-121.969337 37.368344,-121.969331 37.36837,-121.969329 37.368381,-121.969311 37.368399,-121.969287 37.368416,-121.969113 37.36842,-121.968948 37.368421,-121.968948 37.368452,-121.968948 37.368483,-121.96894 37.36861,-121.968925 37.368691,-121.968915 37.368708,-121.968903 37.368723,-121.968894 37.368735,-121.96889 37.368742,-121.968873 37.368761,-121.968847 37.368774,-121.968839 37.368777,-121.96882 37.368785,-121.968807 37.368792,-121.968717 37.368791,-121.968689 37.368784,-121.968658 37.36876,-121.968603 37.368682,-121.968597 37.368537,-121.968598 37.36846,-121.968595 37.368432,-121.96857 37.36843,-121.968519 37.368429,-121.968379 37.368429,-121.968329 37.368423,-121.968326 37.368406,-121.968322 37.368375,-121.968314 37.368277,-121.968307 37.36819,-121.968298 37.368075,-121.968359 37.368072,-121.968577 37.368074,-121.968741 37.368071,-121.968768 37.368054,-121.96878 37.368033,-121.968803 37.368023,-121.968815 37.368026,-121.968827 37.368033,-121.968827 37.368033,-121.968827 37.368033),(-121.969228 37.368105,-121.969318 37.368104,-121.969313 37.368159,-121.969285 37.368349,-121.969267 37.368375,-121.968826 37.368375,-121.968824 37.368327,-121.96883 37.368208,-121.968834 37.368128,-121.968864 37.368116,-121.9689 37.368115,-121.968925 37.368119,-121.968978 37.368118,-121.969122 37.368113,-121.969228 37.368105),(-121.968362 37.368123,-121.968406 37.368115,-121.968447 37.368118,-121.968598 37.368122,-121.968719 37.368124,-121.968755 37.368131,-121.968755 37.368254,-121.968752 37.36832,-121.968745 37.36837,-121.968675 37.36838,-121.968486 37.368384,-121.968402 37.368383,-121.96838 37.368376,-121.96837 37.368312,-121.968361 37.368193,-121.968362 37.368123),(-121.968825 37.368459,-121.968838 37.368452,-121.968857 37.368447,-121.968884 37.368456,-121.968882 37.368553,-121.968873 37.368639,-121.968858 37.368693,-121.968825 37.368715,-121.968768 37.368723,-121.968736 37.368722,-121.968715 37.368718,-121.968683 37.368693,-121.968662 37.368654,-121.968659 37.368548,-121.968668 37.368458,-121.968677 37.368454,-121.968694 37.368452,-121.968725 37.368461,-121.968728 37.368524,-121.968732 37.368594,-121.968759 37.368619,-121.968785 37.368618,-121.968806 37.368597,-121.968814 37.368573,-121.968816 37.368524,-121.968818 37.368476,-121.968825 37.368459),(-121.966336 37.368079,-121.966404 37.368082,-121.966503 37.368088,-121.967133 37.368087,-121.967208 37.368084,-121.967278 37.368083,-121.967311 37.368082,-121.967344 37.368082,-121.967344 37.368095,-121.967344 37.368108,-121.967339 37.368202,-121.967309 37.368432,-121.966555 37.368446,-121.966337 37.368437,-121.96633 37.368428,-121.966327 37.368419,-121.966326 37.368409,-121.966322 37.368396,-121.966304 37.368322,-121.966293 37.368257,-121.966289 37.368227,-121.966284 37.3682,-121.96628 37.368167,-121.966276 37.368124,-121.966274 37.368099,-121.966273 37.368074,-121.966336 37.368079),(-121.967183 37.368128,-121.967183 37.368128,-121.967183 37.368128,-121.967254 37.368123,-121.967284 37.368128,-121.967287 37.368148,-121.967284 37.368199,-121.967279 37.368256,-121.967276 37.368306,-121.96727 37.368367,-121.967261 37.368392,-121.96703 37.368396,-121.966594 37.368401,-121.966376 37.368397,-121.96637 37.368381,-121.966365 37.368354,-121.966358 37.368314,-121.966349 37.368269,-121.966337 37.368181,-121.966344 37.368135,-121.966438 37.368134,-121.967183 37.368128),(-121.96822 37.370207,-121.96827 37.370255,-121.968232 37.370261,-121.968179 37.370222,-121.968154 37.370196,-121.968168 37.370183,-121.968183 37.370178,-121.96822 37.370207),(-121.967838 37.371184,-121.96788 37.37119,-121.967935 37.3712,-121.967996 37.371215,-121.968056 37.371236,-121.968108 37.371264,-121.968149 37.371293,-121.968177 37.371318,-121.968188 37.371333,-121.968188 37.371336,-121.968189 37.371338,-121.968188 37.37134,-121.968187 37.371342,-121.968186 37.371343,-121.968184 37.371344,-121.968181 37.371345,-121.968178 37.371346,-121.968163 37.37134,-121.968132 37.371323,-121.96809 37.3713,-121.968039 37.371277,-121.967984 37.371259,-121.96793 37.371247,-121.967885 37.371238,-121.967857 37.371232,-121.967815 37.371225,-121.967749 37.371222,-121.967669 37.371221,-121.967586 37.371224,-121.967547 37.371227,-121.967516 37.371231,-121.967493 37.371235,-121.967482 37.371238,-121.967468 37.371241,-121.967473 37.371235,-121.967487 37.371226,-121.967497 37.37122,-121.967504 37.371218,-121.967513 37.371213,-121.967524 37.371209,-121.967532 37.371205,-121.967589 37.371193,-121.967672 37.371184,-121.967762 37.371182,-121.967838 37.371184,-121.967838 37.371184,-121.967838 37.371184,-121.967838 37.371184,-121.967838 37.371184),(-121.966563 37.371389,-121.966566 37.371445,-121.966515 37.37157,-121.9665 37.371592,-121.966482 37.371596,-121.966525 37.371469,-121.966555 37.371383,-121.966562 37.371366,-121.966563 37.371389),(-121.966627 37.371604,-121.966639 37.371617,-121.966627 37.371627,-121.966566 37.371635,-121.966485 37.371647,-121.966443 37.371685,-121.966429 37.371702,-121.966463 37.371631,-121.966543 37.371602,-121.966605 37.371596,-121.966627 37.371604),(-121.967491 37.371604,-121.967515 37.371616,-121.967528 37.371627,-121.967539 37.371638,-121.967553 37.371657,-121.967564 37.371679,-121.967571 37.371703,-121.967574 37.371736,-121.967568 37.371764,-121.967561 37.371789,-121.967546 37.371816,-121.967519 37.371846,-121.967488 37.371864,-121.967448 37.371873,-121.967424 37.37187,-121.967402 37.371862,-121.967383 37.371853,-121.967364 37.371836,-121.967344 37.371819,-121.967326 37.371798,-121.967316 37.371776,-121.967311 37.371753,-121.967309 37.371729,-121.967311 37.371708,-121.967316 37.371687,-121.967323 37.371668,-121.967328 37.371656,-121.967338 37.371643,-121.967351 37.371631,-121.967364 37.37162,-121.967378 37.37161,-121.967397 37.371601,-121.967414 37.371597,-121.96743 37.371594,-121.967463 37.371596,-121.967491 37.371604),(-121.968159 37.371607,-121.968185 37.371637,-121.968211 37.371667,-121.968214 37.37171,-121.968218 37.371753,-121.968202 37.371783,-121.968186 37.371813,-121.968163 37.371828,-121.968139 37.371843,-121.968115 37.37185,-121.968091 37.371858,-121.968063 37.371852,-121.968034 37.371844,-121.968013 37.371833,-121.967993 37.371822,-121.967958 37.371774,-121.967953 37.371728,-121.967957 37.371674,-121.967985 37.371621,-121.968035 37.371597,-121.968068 37.371594,-121.9681 37.371591,-121.968129 37.371599,-121.968159 37.371607),(-121.968827 37.372184,-121.968851 37.372213,-121.968882 37.372245,-121.968909 37.372284,-121.968917 37.37231,-121.968916 37.372323,-121.968939 37.372346,-121.968835 37.372341,-121.968585 37.372314,-121.968527 37.372302,-121.968484 37.372296,-121.968472 37.372277,-121.968504 37.372273,-121.968524 37.372271,-121.968634 37.372248,-121.968747 37.372208,-121.968768 37.372192,-121.968796 37.372176,-121.968827 37.372184,-121.968827 37.372184),(-121.967639 37.372306,-121.967634 37.372319,-121.967593 37.372329,-121.967517 37.372335,-121.96747 37.372337,-121.967452 37.372336,-121.967438 37.372333,-121.967469 37.372323,-121.967543 37.372311,-121.967639 37.372306),(-121.966782 37.372333,-121.966836 37.372374,-121.96687 37.372391,-121.966961 37.372385,-121.967056 37.372378,-121.967099 37.37237,-121.967165 37.372357,-121.967331 37.372339,-121.967385 37.372333,-121.967413 37.372334,-121.967384 37.372351,-121.967341 37.372358,-121.967297 37.372367,-121.967109 37.372406,-121.967039 37.372421,-121.967008 37.37243,-121.966967 37.37244,-121.966885 37.372457,-121.966796 37.372472,-121.96675 37.37248,-121.96663 37.372482,-121.966675 37.372388,-121.966687 37.372369,-121.96672 37.372352,-121.966749 37.37233,-121.96676 37.372308,-121.966782 37.372333),(-121.967688 37.372318,-121.967677 37.37232,-121.96768 37.372313,-121.967688 37.372318))' END SET @i = @i + 1 END SELECT id CatIndex, gg , label FROM @tt ORDER by ID ASC
<gh_stars>0 USE [CursoASP] GO drop table Adeudos drop table Clientes drop table Localidades drop table Proveedores GO /****** Object: Table [dbo].[Proveedores] Script Date: 08/11/2017 08:50:46 a. m. ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Proveedores]( [Id] [int] IDENTITY(1,1) NOT NULL, [Nombre] [varchar](250) NOT NULL, [RFC] [varchar](20) NOT NULL, [Moral] [bit] NOT NULL, [localidad_id] [int] NOT NULL, CONSTRAINT [PK_Proveedores] PRIMARY KEY CLUSTERED ( [Id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[Adeudos] Script Date: 08/11/2017 08:50:46 a. m. ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Adeudos]( [Id] [int] IDENTITY(1,1) NOT NULL, [proveedor_id] [int] NOT NULL, [monto] [numeric](10, 2) NOT NULL, CONSTRAINT [PK_Adeudos] PRIMARY KEY CLUSTERED ( [Id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[Localidades] Script Date: 08/11/2017 08:50:46 a. m. ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Localidades]( [Id] [int] IDENTITY(1,1) NOT NULL, [nombre] [varchar](250) NOT NULL, [padre_id] [int] NULL, CONSTRAINT [PK_Localidades] PRIMARY KEY CLUSTERED ( [Id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: View [dbo].[vw_proveedores] Script Date: 08/11/2017 08:50:46 a. m. ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE VIEW [dbo].[vw_proveedores] AS SELECT dbo.Proveedores.Id, dbo.Proveedores.Nombre, dbo.Proveedores.RFC, dbo.Proveedores.Moral, ISNULL(SUM(dbo.Adeudos.monto), 0) AS monto, dbo.Localidades.nombre AS Localidad, Localidades_1.nombre AS Estado FROM dbo.Proveedores INNER JOIN dbo.Localidades ON dbo.Proveedores.localidad_id = dbo.Localidades.Id INNER JOIN dbo.Localidades AS Localidades_1 ON dbo.Localidades.padre_id = Localidades_1.Id LEFT OUTER JOIN dbo.Adeudos ON dbo.Proveedores.Id = dbo.Adeudos.proveedor_id GROUP BY dbo.Proveedores.Id, dbo.Proveedores.Nombre, dbo.Proveedores.RFC, dbo.Proveedores.Moral, dbo.Localidades.nombre, Localidades_1.nombre GO /****** Object: Table [dbo].[Clientes] Script Date: 08/11/2017 08:50:46 a. m. ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Clientes]( [Id] [int] IDENTITY(1,1) NOT NULL, [Nombre] [varchar](250) NOT NULL, [Estado] [varchar](100) NULL, [Localidad] [varchar](100) NULL, [Adeudo] [numeric](10, 2) NOT NULL, [Vence] [date] NULL, [RFC] [varchar](20) NOT NULL, [Moral] [bit] NOT NULL, CONSTRAINT [PK_Clientes] PRIMARY KEY CLUSTERED ( [Id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING ON GO /****** Object: Index [IX_Clientes] Script Date: 08/11/2017 08:50:46 a. m. ******/ CREATE UNIQUE NONCLUSTERED INDEX [IX_Clientes] ON [dbo].[Clientes] ( [RFC] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO ALTER TABLE [dbo].[Clientes] ADD CONSTRAINT [DF_Clientes_Estado] DEFAULT ('Chihuahua') FOR [Estado] GO ALTER TABLE [dbo].[Clientes] ADD CONSTRAINT [DF_Clientes_Localidad] DEFAULT ('Chihuahua') FOR [Localidad] GO ALTER TABLE [dbo].[Clientes] ADD CONSTRAINT [DF_Clientes_Moral] DEFAULT ((0)) FOR [Moral] GO ALTER TABLE [dbo].[Proveedores] ADD CONSTRAINT [DF_Proveedores_Moral] DEFAULT ((0)) FOR [Moral] GO ALTER TABLE [dbo].[Proveedores] ADD CONSTRAINT [DF_Proveedores_localidad_id] DEFAULT ((1)) FOR [localidad_id] GO ALTER TABLE [dbo].[Adeudos] WITH CHECK ADD CONSTRAINT [FK_Adeudos_Proveedores] FOREIGN KEY([proveedor_id]) REFERENCES [dbo].[Proveedores] ([Id]) GO ALTER TABLE [dbo].[Adeudos] CHECK CONSTRAINT [FK_Adeudos_Proveedores] GO ALTER TABLE [dbo].[Localidades] WITH CHECK ADD CONSTRAINT [FK_Localidades_Localidades] FOREIGN KEY([padre_id]) REFERENCES [dbo].[Localidades] ([Id]) GO ALTER TABLE [dbo].[Localidades] CHECK CONSTRAINT [FK_Localidades_Localidades] GO ALTER TABLE [dbo].[Proveedores] WITH CHECK ADD CONSTRAINT [FK_Proveedores_Localidades] FOREIGN KEY([localidad_id]) REFERENCES [dbo].[Localidades] ([Id]) GO ALTER TABLE [dbo].[Proveedores] CHECK CONSTRAINT [FK_Proveedores_Localidades] GO EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00] Begin DesignProperties = Begin PaneConfigurations = Begin PaneConfiguration = 0 NumPanes = 4 Configuration = "(H (1[40] 4[12] 2[21] 3) )" End Begin PaneConfiguration = 1 NumPanes = 3 Configuration = "(H (1 [50] 4 [25] 3))" End Begin PaneConfiguration = 2 NumPanes = 3 Configuration = "(H (1 [50] 2 [25] 3))" End Begin PaneConfiguration = 3 NumPanes = 3 Configuration = "(H (4 [30] 2 [40] 3))" End Begin PaneConfiguration = 4 NumPanes = 2 Configuration = "(H (1 [56] 3))" End Begin PaneConfiguration = 5 NumPanes = 2 Configuration = "(H (2 [66] 3))" End Begin PaneConfiguration = 6 NumPanes = 2 Configuration = "(H (4 [50] 3))" End Begin PaneConfiguration = 7 NumPanes = 1 Configuration = "(V (3))" End Begin PaneConfiguration = 8 NumPanes = 3 Configuration = "(H (1[56] 4[18] 2) )" End Begin PaneConfiguration = 9 NumPanes = 2 Configuration = "(H (1 [75] 4))" End Begin PaneConfiguration = 10 NumPanes = 2 Configuration = "(H (1[66] 2) )" End Begin PaneConfiguration = 11 NumPanes = 2 Configuration = "(H (4 [60] 2))" End Begin PaneConfiguration = 12 NumPanes = 1 Configuration = "(H (1) )" End Begin PaneConfiguration = 13 NumPanes = 1 Configuration = "(V (4))" End Begin PaneConfiguration = 14 NumPanes = 1 Configuration = "(V (2))" End ActivePaneConfig = 0 End Begin DiagramPane = Begin Origin = Top = -96 Left = 0 End Begin Tables = Begin Table = "Proveedores" Begin Extent = Top = 6 Left = 38 Bottom = 136 Right = 208 End DisplayFlags = 280 TopColumn = 2 End Begin Table = "Adeudos" Begin Extent = Top = 0 Left = 466 Bottom = 113 Right = 636 End DisplayFlags = 280 TopColumn = 0 End Begin Table = "Localidades" Begin Extent = Top = 149 Left = 252 Bottom = 279 Right = 438 End DisplayFlags = 280 TopColumn = 0 End Begin Table = "Localidades_1" Begin Extent = Top = 102 Left = 674 Bottom = 215 Right = 860 End DisplayFlags = 280 TopColumn = 0 End End End Begin SQLPane = End Begin DataPane = Begin ParameterDefaults = "" End Begin ColumnWidths = 9 Width = 284 Width = 1500 Width = 1500 Width = 1500 Width = 1500 Width = 1500 Width = 1500 Width = 1500 Width = 1500 End End Begin CriteriaPane = Begin ColumnWidths = 12 Column = 1440 Alias = 900 Table = 2400 Output = 720 Append = 1400 NewValue = 1170 SortType = 1350 SortOrder = 1410 GroupBy = 1350 Filter = 1350 Or = 1350 Or = 1350 Or = 13' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vw_proveedores' GO EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane2', @value=N'50 End End End ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vw_proveedores' GO EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=2 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'vw_proveedores' GO USE [master] GO ALTER DATABASE [CursoASP] SET READ_WRITE GO
INSERT INTO items (id, text) VALUES (1, "one"), (2, "two"), (3, "three");
<filename>spider.sql /* Navicat Premium Data Transfer Source Server : localhost Source Server Type : MySQL Source Server Version : 80011 Source Host : localhost:3306 Source Schema : spider Target Server Type : MySQL Target Server Version : 80011 File Encoding : 65001 Date: 06/11/2018 09:47:52 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for article -- ---------------------------- DROP TABLE IF EXISTS `article`; CREATE TABLE `article` ( `url` bigint(20) NOT NULL, `bookUrl` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `title` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `content` mediumtext CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, PRIMARY KEY (`url`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Table structure for book -- ---------------------------- DROP TABLE IF EXISTS `book`; CREATE TABLE `book` ( `bookUrl` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `author` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `title` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `updateTime` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `intro` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `latestChapterTitle` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `latestChapterUrl` varchar(11) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `titlePageUrl` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `sourceUrl` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `chapterPage` mediumtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL, `views` mediumtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL, PRIMARY KEY (`bookUrl`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; SET FOREIGN_KEY_CHECKS = 1;
<filename>uninstall.sql<gh_stars>1-10 prompt prompt prompt . ********************************* . prompt . SYSDATES uninstaller . prompt . <NAME> . prompt . ********************************* . prompt prompt Drop SYSDATES functions drop function sysminute; drop function syshour; drop function sysday; drop function sysweek; drop function sysmonth; drop function sysyear; prompt prompt . ********************************* . prompt . Uninstall complete . prompt . ********************************* . prompt
<filename>src/test/resources/sql/drop_domain/3ae97468.sql -- file:domain.sql ln:354 expect:true drop domain ddef2 restrict
<gh_stars>10-100 -- file:numeric_big.sql ln:38 expect:true INSERT INTO num_exp_mul VALUES (0,0,'0')
-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -- Signals insert into t_signal (created, name, alias, referenceid, currency) values (now(), 'AlexProfit' , 'alexprofit' , '2474', 'USD'), (now(), 'Asta' , 'asta' , '2370', 'GBP'), (now(), 'Caesar2' , 'caesar2' , '1619', 'USD'), (now(), 'Caesar2.1' , 'caesar21' , '1803', 'USD'), (now(), 'Consistent Profit', 'consistent' , '4351', 'USD'), (now(), 'DayFox' , 'dayfox' , '2465', 'EUR'), (now(), 'FX Viper' , 'fxviper' , '633' , 'USD'), (now(), 'GC-Edge' , 'gcedge' , '998' , 'USD'), (now(), 'GoldStar' , 'goldstar' , '2622', 'USD'), (now(), 'Kilimanjaro' , 'kilimanjaro' , '2905', 'USD'), (now(), 'NovoLRfund' , 'novolr' , '4322', 'USD'), (now(), 'OverTrader' , 'overtrader' , '2973', 'USD'), (now(), 'SmartScalper' , 'smartscalper' , '1086', 'USD'), (now(), 'SmartTrader' , 'smarttrader' , '1081', 'USD'), (now(), 'Steady Capture' , 'steadycapture', '4023', 'USD'), (now(), 'TwilightScalper' , 'twilight' , '3913', 'USD'), (now(), 'Yen Fortress' , 'yenfortress' , '2877', 'USD'); set @signal_alexprofit = (select id from t_signal where alias = 'alexprofit' ); set @signal_asta = (select id from t_signal where alias = 'asta' ); set @signal_caesar2 = (select id from t_signal where alias = 'caesar2' ); set @signal_caesar21 = (select id from t_signal where alias = 'caesar21' ); set @signal_consistent = (select id from t_signal where alias = 'consistent' ); set @signal_dayfox = (select id from t_signal where alias = 'dayfox' ); set @signal_fxviper = (select id from t_signal where alias = 'fxviper' ); set @signal_gcedge = (select id from t_signal where alias = 'gcedge' ); set @signal_goldstar = (select id from t_signal where alias = 'goldstar' ); set @signal_kilimanjaro = (select id from t_signal where alias = 'kilimanjaro' ); set @signal_novolr = (select id from t_signal where alias = 'novolr' ); set @signal_overtrader = (select id from t_signal where alias = 'overtrader' ); set @signal_smarttrader = (select id from t_signal where alias = 'smarttrader' ); set @signal_steadycapture = (select id from t_signal where alias = 'steadycapture'); set @signal_twilight = (select id from t_signal where alias = 'twilight' ); set @signal_yenfortress = (select id from t_signal where alias = 'yenfortress' ); -- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------
<reponame>riceissa/computing-data-project<gh_stars>0 insert into storage_plans(provider,name,redundancy,date_observed,region,storage_cost,download_cost,write_op_cost,read_op_cost,list_op_cost,delete_op_cost,minimum_duration) values ('Microsoft Azure','Azure Block Blob General Purpose v2 Hot','LRS','2018-07-18','East US','[[50, 0.0208], [500, 0.02], [null, 0.0192]]','0',0.005,'0.0004',0.005,0,NULL) ,('Microsoft Azure','Azure Block Blob General Purpose v2 Cool','LRS','2018-07-18','East US','0.0152','0.01',0.010,'0.001',0.005,0,NULL) ,('Microsoft Azure','Azure Block Blob General Purpose v2 Archive','LRS','2018-07-18','East US','0.002','0.02',0.010,'0.5',0.005,0,NULL) ,('Microsoft Azure','Azure Block Blob General Purpose v1','LRS','2018-07-18','East US','[[1, 0.024], [50, 0.0236], [500, 0.0232], [1000, 0.0228], [5000, 0.0224], [null, null]]','0',0.000036,'0.000036',0.000036,0.000036,NULL) ,('Microsoft Azure','Azure Block Blob General Purpose v2 Hot','LRS','2019-07-08','East US','[[50, 0.0208], [500, 0.02], [null, 0.0192]]','0',0.005,'0.0004',0.005,0,NULL) ,('Microsoft Azure','Azure Block Blob General Purpose v2 Cool','LRS','2019-07-08','East US','0.0152','0.01',0.010,'0.001',0.005,0,NULL) ,('Microsoft Azure','Azure Block Blob General Purpose v2 Archive','LRS','2019-07-08','East US','0.001','0.02',0.010,'0.5',0.005,0,NULL) ,('Microsoft Azure','Azure Block Blob General Purpose v1','LRS','2019-07-08','East US','[[1, 0.024], [50, 0.0236], [500, 0.0232], [1000, 0.0228], [5000, 0.0224], [null, null]]','0',0.000036,'0.000036',0.000036,0.000036,NULL) ;
<reponame>tbowan/luchronia #------------------------------------------------------------------------------ # 1. Les compétences #------------------------------------------------------------------------------ SET @Perception = (SELECT id from game_characteristic where name = "Perception" ) ; SET @Explorer = (SELECT id from game_skill_metier where name = "Explorer" ) ; SET @Archaeologist = (SELECT id from game_skill_metier where name = "Archaeologist" ) ; INSERT INTO game_skill_skill (`name`, `classname`, `building_job`, `building_type`, `by_hand`, `characteristic`, `cost`, `metier`) VALUES ("ProspectGround", "ProspectGround", null, null, 1.0, @Perception, 1, @Explorer), ("ProspectUnderground", "ProspectUnderground", null, null, 1.0, @Perception, 1, @Explorer), ("ProspectArcheo", "ProspectArcheo", null, null, 1.0, @Perception, 1, @Archaeologist) ; #------------------------------------------------------------------------------ # 2. Parchemins #------------------------------------------------------------------------------ INSERT INTO game_ressource_item (`name`) VALUES ("ParchmentProspectGround"), ("ParchmentProspectUnderground"), ("ParchmentProspectArcheo") ; INSERT INTO game_ressource_parchment (`item`, `skill`) SELECT i.id as item, s.id as skill FROM game_skill_skill as s, game_ressource_item as i WHERE s.`name` in ("ProspectGround", "ProspectUnderground", "ProspectArcheo") and i.`name` = concat("Parchment", s.`name`) ; #------------------------------------------------------------------------------ # 3. Livres #------------------------------------------------------------------------------ INSERT INTO game_ressource_item (`name`) VALUES ("BookProspectGround"), ("BookProspectUnderground"), ("BookProspectArcheo") ; INSERT INTO game_ressource_book (`item`, `skill`) SELECT i.id as item, s.id as skill FROM game_skill_skill as s, game_ressource_item as i WHERE s.`name` in ("ProspectGround", "ProspectUnderground", "ProspectArcheo") and i.`name` = concat("Book", s.`name`) ;
<reponame>jmayfiel/prescriptiontrails<filename>users.sql<gh_stars>1-10 -- phpMyAdmin SQL Dump -- version 4.0.5 -- http://www.phpmyadmin.net -- -- Host: -- Generation Time: Apr 11, 2019 at 12:12 PM -- Server version: 5.5.53-MariaDB -- PHP Version: 5.4.45-pl0-gentoo SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `prescripttrails` -- -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE IF NOT EXISTS `users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `email` char(128) NOT NULL, `password` char(128) NOT NULL, `user_salt` varchar(50) NOT NULL, `fname` varchar(35) NOT NULL, `lname` varchar(35) NOT NULL, `data` varchar(12000) NOT NULL, `is_verified` tinyint(1) NOT NULL, `is_active` tinyint(1) NOT NULL, `is_admin` tinyint(1) NOT NULL, `is_provider` tinyint(1) NOT NULL, `is_super` tinyint(1) NOT NULL, `verification_code` varchar(65) NOT NULL, `createdAt` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=134 ; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<reponame>mr-loop-1/projektDBMS drop table IF EXISTS stack_Compare; drop table IF EXISTS lastNode; drop table IF EXISTS lastNodeTracker; CREATE TABLE stack_Compare (i INT NOT NULL AUTO_INCREMENT, Station VARCHAR(20), PRIMARY KEY (i)); CREATE TABLE lastNode (Last_Station_ID INT, I INT); CREATE TABLE lastNodeTracker (message VARCHAR(20)); AlTER table lastNode ADD PRimary key (I); INSERT INTO lastNode VALUES (1, 1); Drop trigger IF EXISTS lastAdded; DROP TRIGGER IF EXISTS lastAdd; DELIMITER $$ CREATE TRIGGER lastAdded AFTER INSERT ON stack_Compare FOR EACH ROW BEGIN UPDATE lastNode SET Last_Station_ID = (SELECT Station.Station_ID FROM Station WHERE New.Station = Station.Name LIMIT 1) WHERE I = 1; END $$ CREATE TRIGGER lastAdd AFTER INSERT ON stack_Compare FOR EACH ROW BEGIN INSERT INTO lastNodeTracker VALUES ("Inserted"); END $$ DELIMITER ; DROP PROCEDURE IF EXISTS insertStation; DROP PROCEDURE IF EXISTS insertStationPrev; DROP PROCEDURE IF EXISTS insertMain; DROP PROCEDURE IF EXISTS insertFromJunction; DELIMITER $$ SET max_sp_recursion_depth=100; CREATE PROCEDURE insertStation (insertstationID INT, starter VARCHAR(20), destination VARCHAR(20)) this_procedure:BEGIN DECLARE nextNode INT DEFAULT NULL; INSERT INTO stack_Compare (Station) SELECT Name from Station WHERE Station_ID = insertstationID LIMIT 1; IF insertStationID IN (SELECT * FROM (SELECT Station_ID FROM Station WHERE Name = destination LIMIT 1) AS bypass2) THEN LEAVE this_procedure; END IF; SET nextNode = (SELECT Next_Station FROM Station WHERE Station_ID = insertstationID LIMIT 1); IF nextNode IS NULL THEN LEAVE this_procedure; END IF; IF nextNode = -1 THEN LEAVE this_procedure; ELSE CALL insertStation (nextNode, starter, destination); END IF; END $$ SET max_sp_recursion_depth=100; CREATE PROCEDURE insertStationPrev (insertstationID INT, starter VARCHAR(20), destination VARCHAR(20)) this_procedure4:BEGIN DECLARE nextNode INT DEFAULT NULL; INSERT INTO stack_Compare (Station) SELECT Name from Station WHERE Station_ID = insertstationID LIMIT 1; IF insertStationID IN (SELECT * FROM (SELECT Station_ID FROM Station WHERE Name = destination LIMIT 1) AS bypass2) THEN LEAVE this_procedure4; END IF; SET nextNode = (SELECT Prev_Station FROM Station WHERE Station_ID = insertstationID LIMIT 1); IF nextNode IS NULL THEN LEAVE this_procedure4; END IF; IF nextNode = -1 THEN LEAVE this_procedure4; ELSE CALL insertStationPrev (nextNode, starter, destination); END IF; END $$ CREATE PROCEDURE insertMain (starter VARCHAR(20), destination VARCHAR(20)) this_procedure2:BEGIN DECLARE id INT DEFAULT NULL; SET id = (SELECT Station_ID FROM Station WHERE Name = starter); CALL insertStation(id, starter, destination); IF (SELECT Last_Station_ID FROM lastNode LIMIT 1) = (SELECT Station_ID FROM Station WHERE Name = destination LIMIT 1) THEN LEAVE this_procedure2; ELSE CALL insertFromJunction(starter, destination); END IF; END; $$ SET max_sp_recursion_depth=100; CREATE PROCEDURE insertFromJunction (starter VARCHAR(20), destination VARCHAR(20)) this_procedure3:BEGIN DECLARE adjacentID INT DEFAULT NULL; SET @junction = (SELECT Station.Name FROM Station, lastNode WHERE lastNode.Last_Station_ID = Station.Station_ID); SET @iteration = 1; IF @junction = 'K' THEN IF destination IN (SELECT J FROM half) THEN SET @iteration = 2; END IF; ELSEIF @junction = 'J' THEN IF destination IN (SELECT K FROM half) THEN SET @iteration = 2; END IF; END IF; loop2: REPEAT SET adjacentID = (SELECT CASE @junction WHEN 'H' THEN H WHEN 'K' THEN K WHEN 'J' THEN J WHEN 'N' THEN N END AS selectedColumn from Hybrid WHERE Hybrid_ID = @iteration LIMIT 1); IF (SELECT Last_Station_ID FROM lastNode WHERE I = 1 LIMIT 1) = (SELECT Station_ID FROM Station WHERE Name = destination LIMIT 1) THEN LEAVE loop2; ELSEIF adjacentID IN (SELECT Station_ID FROM Station, stack_Compare WHERE stack_Compare.Station = Station.Name) THEN SET @iteration = @iteration +1 -1; ELSEIF @junction = (SELECT Name FROM Station WHERE Station_ID = (SELECT Next_Station FROM Station WHERE Station_ID = adjacentID LIMIT 1) LIMIT 1) THEN CALL insertStationPrev (adjacentID, starter, destination); IF (SELECT Last_Station_ID FROM lastNode WHERE I = 1 LIMIT 1) = (SELECT Station_ID FROM Station WHERE Name = destination LIMIT 1) THEN LEAVE loop2; ELSEIF (SELECT Prev_Station FROM Station,lastNode WHERE Last_Station_ID = Station_ID) IS NULL THEN set @lim = (SELECT COUNT(i) FROM stack_Compare WHERE i>(SELECT i FROM stack_Compare where Station = @junction)); prepare stmt FROM 'DELETE FROM stack_Compare ORDER BY i desc LIMIT ?'; execute stmt using @lim; DEALLOCATE PREPARE stmt; END IF; ELSE CALL insertStation (adjacentID, starter, destination); IF (SELECT Last_Station_ID FROM lastNode WHERE I = 1 LIMIT 1) = (SELECT Station_ID FROM Station WHERE Name = destination LIMIT 1) THEN LEAVE loop2; ELSEIF (SELECT Next_Station FROM Station,lastNode WHERE Last_Station_ID = Station_ID) IS NULL THEN set @lim = (SELECT COUNT(i) FROM stack_Compare WHERE i>(SELECT i FROM stack_Compare where Station = @junction)); prepare stmt FROM 'DELETE FROM stack_Compare ORDER BY i desc LIMIT ?'; execute stmt using @lim; DEALLOCATE PREPARE stmt; END IF; END IF; IF (SELECT Next_Station FROM Station, lastNode WHERE Last_Station_ID = Station_ID) = -1 THEN IF @junction <> (SELECT Name FROM Station, lastNode WHERE Last_Station_ID = Station_ID) THEN CALL insertFromJunction (starter, destination); END IF; END IF; SET @iteration := @iteration + 1; UNTIL adjacentID IS NULL END REPEAT loop2; END; $$ DELIMITER ; CALL insertMain('A','T'); truncate stack_Compare; SELECT * FROM stack_Compare; select * from lastNode; select * from lastNodeTracker;
create table users ( id varchar(128) primary key, oauth_token varchar(128) NOT NULL ) ENGINE = InnoDB, DEFAULT CHARSET = utf8mb4; create table venues ( id bigint primary key auto_increment, venue_name varchar(128) NOT NULL, latitude double NOT NULL, longitude double NOT NULL, last_rainfall float NOT NULL DEFAULT 0.0, last_update DATETIME NOT NULL DEFAULT '2000-01-01 00:00:00', CONSTRAINT uq_venues_name UNIQUE (venue_name) ) ENGINE = InnoDB, DEFAULT CHARSET = utf8mb4;
CREATE DATABASE model_db WITH OWNER = airflow ENCODING = 'UTF8' LC_COLLATE = 'en_US.utf8' LC_CTYPE = 'en_US.utf8' TABLESPACE = pg_default CONNECTION LIMIT = -1; \connect model_db CREATE TABLE public.tweets( id SERIAL PRIMARY KEY, timestamp_col TIMESTAMP, tweets_org character varying(500), tweets_clnd character varying(500), labels smallint NOT NULL, predictions smallint NOT NULL ); CREATE TABLE public.models( id SERIAL PRIMARY KEY, timestamp_col TIMESTAMP, model BYTEA, model_name character varying(100), model_acc REAL, model_f1 REAL );
<reponame>gusgeek/HealtyServer<filename>db.sql -- -------------------------------------------------------- -- Host: 127.0.0.1 -- Versión del servidor: 10.7.3-MariaDB - mariadb.org binary distribution -- SO del servidor: Win64 -- HeidiSQL Versión: 11.3.0.6295 -- -------------------------------------------------------- /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET NAMES utf8 */; /*!50503 SET NAMES utf8mb4 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- Volcando estructura de base de datos para healtyserver CREATE DATABASE IF NOT EXISTS `healtyserver` /*!40100 DEFAULT CHARACTER SET utf8mb3 COLLATE utf8mb3_spanish_ci */; USE `healtyserver`; -- Volcando estructura para tabla healtyserver.log CREATE TABLE IF NOT EXISTS `log` ( `id_log` int(11) NOT NULL AUTO_INCREMENT, `date` datetime DEFAULT NULL, `data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`data`)), PRIMARY KEY (`id_log`), KEY `id_log` (`id_log`) ) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_spanish_ci; -- Volcando datos para la tabla healtyserver.log: ~45 rows (aproximadamente) /*!40000 ALTER TABLE `log` DISABLE KEYS */; INSERT INTO `log` (`id_log`, `date`, `data`) VALUES (1, '2022-03-25 21:01:40', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (2, '2022-03-27 12:47:55', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (3, '2022-03-27 19:49:01', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (4, '2022-03-27 19:49:02', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (5, '2022-03-27 19:49:21', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (6, '2022-03-27 19:50:11', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (7, '2022-03-27 19:54:33', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (8, '2022-03-27 19:54:34', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (9, '2022-03-27 19:54:36', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (10, '2022-03-27 19:54:36', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (11, '2022-03-27 19:54:48', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (12, '2022-03-27 19:55:11', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (13, '2022-03-27 19:55:26', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (14, '2022-03-28 01:25:25', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (15, '2022-03-28 01:25:28', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (16, '2022-03-28 03:51:54', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (17, '2022-03-28 05:00:14', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (18, '2022-03-29 08:36:00', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (19, '2022-03-29 20:15:27', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (20, '2022-03-29 20:36:42', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (21, '2022-03-29 20:36:44', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (22, '2022-03-29 20:45:19', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (23, '2022-03-29 20:45:21', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (24, '2022-03-29 20:45:24', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (25, '2022-03-29 20:45:27', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (26, '2022-03-29 20:45:33', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (27, '2022-03-29 20:46:04', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (28, '2022-03-29 20:46:06', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (29, '2022-03-29 20:50:54', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (30, '2022-03-29 20:51:03', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (31, '2022-03-29 22:07:08', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (32, '2022-03-30 02:00:12', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (33, '2022-03-30 02:03:41', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (34, '2022-03-30 02:03:42', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (35, '2022-03-30 02:03:50', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (36, '2022-03-30 02:04:04', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (37, '2022-03-30 02:06:05', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (38, '2022-03-30 02:06:11', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (39, '2022-03-30 02:06:14', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (40, '2022-03-30 02:06:18', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (41, '2022-03-30 02:06:23', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (42, '2022-03-30 02:06:25', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (43, '2022-03-30 02:06:27', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (44, '2022-03-30 02:10:09', '{"data":"El servidor fue inicializado en el puerto 1320"}'), (45, '2022-03-30 02:10:11', '{"data":"El servidor fue inicializado en el puerto 1320"}'); /*!40000 ALTER TABLE `log` ENABLE KEYS */; -- Volcando estructura para tabla healtyserver.servers CREATE TABLE IF NOT EXISTS `servers` ( `idserver` int(11) NOT NULL AUTO_INCREMENT, `name_server` text COLLATE utf8mb3_spanish_ci DEFAULT NULL, `uptime` mediumtext COLLATE utf8mb3_spanish_ci DEFAULT NULL, `lastinsert` datetime DEFAULT NULL, `os` longtext COLLATE utf8mb3_spanish_ci DEFAULT NULL, PRIMARY KEY (`idserver`), KEY `idserver` (`idserver`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_spanish_ci; -- Volcando datos para la tabla healtyserver.servers: ~1 rows (aproximadamente) /*!40000 ALTER TABLE `servers` DISABLE KEYS */; INSERT INTO `servers` (`idserver`, `name_server`, `uptime`, `lastinsert`, `os`) VALUES (1, 'NotebookAsus', '{"dias":4,"horas":11,"minutos":1,"segundos":0}', '2022-04-02 21:00:45', '{"platform":"Windows","distro":"Microsoft Windows 11 Home","release":"10.0.22000","codename":"","kernel":"10.0.22000","arch":"x64","hostname":"NotebookAsus","fqdn":"NOTEBOOKASUS","codepage":" 850","logofile":"windows","serial":"00356-02094-17539-AAOEM","build":"22000","servicepack":"0.0","uefi":true,"hypervisor":false,"remoteSession":false}'); /*!40000 ALTER TABLE `servers` ENABLE KEYS */; -- Volcando estructura para tabla healtyserver.server_data CREATE TABLE IF NOT EXISTS `server_data` ( `id_data` int(11) NOT NULL AUTO_INCREMENT, `date` datetime DEFAULT NULL, `disk` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`disk`)), `cpuload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`cpuload`)), `networkstate` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`networkstate`)), `networkdevices` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`networkdevices`)), `ram` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`ram`)), PRIMARY KEY (`id_data`), KEY `id_data` (`id_data`) ) ENGINE=InnoDB AUTO_INCREMENT=410 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_spanish_ci; -- Volcando datos para la tabla healtyserver.server_data: ~345 rows (aproximadamente) /*!40000 ALTER TABLE `server_data` DISABLE KEYS */; INSERT INTO `server_data` (`id_data`, `date`, `disk`, `cpuload`, `networkstate`, `networkdevices`, `ram`) VALUES (1, '2022-03-29 20:48:04', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53504184320,"available":73771966464,"use":42.04,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":39.07448265680236,"currentLoadUser":20.31397380270831,"currentLoadSystem":18.005101664192384,"currentLoadNice":0,"currentLoadIdle":60.92551734319764,"currentLoadIrq":0.7554071899016577,"rawCurrentLoad":47640,"rawCurrentLoadUser":24767,"rawCurrentLoadSystem":21952,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":74281,"rawCurrentLoadIrq":921,"cpus":[{"load":45.7318461188254,"loadUser":19.86927254398231,"loadSystem":24.236610191538485,"loadNice":0,"loadIdle":54.2681538811746,"loadIrq":1.6259633833046079,"rawLoad":14063,"rawLoadUser":6110,"rawLoadSystem":7453,"rawLoadNice":0,"rawLoadIdle":16688,"rawLoadIrq":500},{"load":35.32494068020037,"loadUser":21.678091220669653,"loadSystem":13.337068283680464,"loadNice":0,"loadIdle":64.67505931979963,"loadIrq":0.30978117585025045,"rawLoad":10719,"rawLoadUser":6578,"rawLoadSystem":4047,"rawLoadNice":0,"rawLoadIdle":19625,"rawLoadIrq":94},{"load":39.07162416284517,"loadUser":19.537461647586685,"loadSystem":19.32961631091023,"loadNice":0,"loadIdle":60.928375837154825,"loadIrq":0.2045462043482564,"rawLoad":11843,"rawLoadUser":5922,"rawLoadSystem":5859,"rawLoadNice":0,"rawLoadIdle":18468,"rawLoadIrq":62},{"load":36.09700147468458,"loadUser":20.17696214976241,"loadSystem":15.051613960347371,"loadNice":0,"loadIdle":63.90299852531541,"loadIrq":0.8684253645747992,"rawLoad":11015,"rawLoadUser":6157,"rawLoadSystem":4593,"rawLoadNice":0,"rawLoadIdle":19500,"rawLoadIrq":265}]}', '{"ESTABLISHED":29,"CLOSE":0,"TIME_WAIT":86,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":188787654,"rx_dropped":0,"rx_errors":0,"tx_bytes":18804680,"tx_dropped":0,"tx_errors":0,"rx_sec":10457.3498265754,"tx_sec":513.7972313453452,"ms":32579}]', '{"total":10685313024,"free":5263548416,"used":5421764608,"active":5421764608,"available":5263548416,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":29360128,"swapfree":2520776704}'), (2, '2022-03-29 20:48:32', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53507022848,"available":73769127936,"use":42.04,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":46.35428034182294,"currentLoadUser":27.00585934220909,"currentLoadSystem":18.61306515790004,"currentLoadNice":0,"currentLoadIdle":53.64571965817706,"currentLoadIrq":0.7353558417138156,"rawCurrentLoad":55220,"rawCurrentLoadUser":32171,"rawCurrentLoadSystem":22173,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":63906,"rawCurrentLoadIrq":876,"cpus":[{"load":49.792089418183025,"loadUser":25.62456338777818,"loadSystem":22.504241375869068,"loadNice":0,"loadIdle":50.207910581816975,"loadIrq":1.6632846545357773,"rawLoad":14968,"rawLoadUser":7703,"rawLoadSystem":6765,"rawLoadNice":0,"rawLoadIdle":15093,"rawLoadIrq":500},{"load":43.89463401488867,"loadUser":26.472866911442722,"loadSystem":17.000707380334827,"loadNice":0,"loadIdle":56.105365985111334,"loadIrq":0.4210597231111261,"rawLoad":13031,"rawLoadUser":7859,"rawLoadSystem":5047,"rawLoadNice":0,"rawLoadIdle":16656,"rawLoadIrq":125},{"load":46.36523029199541,"loadUser":26.97417223008969,"loadSystem":19.07411153820217,"loadNice":0,"loadIdle":53.63476970800458,"loadIrq":0.31694652370355386,"rawLoad":13751,"rawLoadUser":8000,"rawLoadSystem":5657,"rawLoadNice":0,"rawLoadIdle":15907,"rawLoadIrq":94},{"load":45.32301480484522,"loadUser":28.967025572005383,"loadSystem":15.827725437415882,"loadNice":0,"loadIdle":54.676985195154785,"loadIrq":0.5282637954239569,"rawLoad":13470,"rawLoadUser":8609,"rawLoadSystem":4704,"rawLoadNice":0,"rawLoadIdle":16250,"rawLoadIrq":157}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":83,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":189357096,"rx_dropped":0,"rx_errors":0,"tx_bytes":18821627,"tx_dropped":0,"tx_errors":0,"rx_sec":19926.584316058368,"tx_sec":593.0293592749414,"ms":28577}]', '{"total":10685313024,"free":5300191232,"used":5385121792,"active":5385121792,"available":5300191232,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":29360128,"swapfree":2520776704}'), (3, '2022-03-29 20:49:00', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53507805184,"available":73768345600,"use":42.04,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":32.23968484345843,"currentLoadUser":19.736263736263737,"currentLoadSystem":12.02488077959776,"currentLoadNice":0,"currentLoadIdle":67.76031515654157,"currentLoadIrq":0.4785403275969314,"rawCurrentLoad":38873,"rawCurrentLoadUser":23797,"rawCurrentLoadSystem":14499,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":81702,"rawCurrentLoadIrq":577,"cpus":[{"load":35.874971180132405,"loadUser":20.17390731530582,"loadSystem":14.515332169559633,"loadNice":0,"loadIdle":64.1250288198676,"loadIrq":1.1857316952669543,"rawLoad":10892,"rawLoadUser":6125,"rawLoadSystem":4407,"rawLoadNice":0,"rawLoadIdle":19469,"rawLoadIrq":360},{"load":31.198828463023364,"loadUser":20.282233908007722,"loadSystem":10.763495972841643,"loadNice":0,"loadIdle":68.80117153697664,"loadIrq":0.15309858217399985,"rawLoad":9374,"rawLoadUser":6094,"rawLoadSystem":3234,"rawLoadNice":0,"rawLoadIdle":20672,"rawLoadIrq":46},{"load":31.26873126873127,"loadUser":18.88777888777889,"loadSystem":12.277722277722278,"loadNice":0,"loadIdle":68.73126873126874,"loadIrq":0.10323010323010323,"rawLoad":9390,"rawLoadUser":5672,"rawLoadSystem":3687,"rawLoadNice":0,"rawLoadIdle":20640,"rawLoadIrq":31},{"load":30.58265312894021,"loadUser":19.596522662419535,"loadSystem":10.521600637069481,"loadNice":0,"loadIdle":69.41734687105979,"loadIrq":0.4645298294511912,"rawLoad":9217,"rawLoadUser":5906,"rawLoadSystem":3171,"rawLoadNice":0,"rawLoadIdle":20921,"rawLoadIrq":140}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":46,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":189409621,"rx_dropped":0,"rx_errors":0,"tx_bytes":18837773,"tx_dropped":0,"tx_errors":0,"rx_sec":1866.0295580503055,"tx_sec":573.6109137416513,"ms":28148}]', '{"total":10685313024,"free":5277036544,"used":5408276480,"active":5408276480,"available":5277036544,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":29360128,"swapfree":2520776704}'), (4, '2022-03-29 20:49:33', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53508853760,"available":73767297024,"use":42.04,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":36.753386190948135,"currentLoadUser":21.641063759497854,"currentLoadSystem":14.530888668648828,"currentLoadNice":0,"currentLoadIdle":63.246613809051865,"currentLoadIrq":0.5814337628014535,"rawCurrentLoad":44501,"rawCurrentLoadUser":26203,"rawCurrentLoadSystem":17594,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":76579,"rawCurrentLoadIrq":704,"cpus":[{"load":40.39847948617119,"loadUser":21.55590509896448,"loadSystem":17.459693275658672,"loadNice":0,"loadIdle":59.60152051382881,"loadIrq":1.3828811115480404,"rawLoad":12328,"rawLoadUser":6578,"rawLoadSystem":5328,"rawLoadNice":0,"rawLoadIdle":18188,"rawLoadIrq":422},{"load":35.97757207790053,"loadUser":23.48296340532829,"loadSystem":12.338674894661757,"loadNice":0,"loadIdle":64.02242792209947,"loadIrq":0.15593377791048738,"rawLoad":10844,"rawLoadUser":7078,"rawLoadSystem":3719,"rawLoadNice":0,"rawLoadIdle":19297,"rawLoadIrq":47},{"load":35.07759649820931,"loadUser":19.84348056771455,"loadSystem":15.02520228146969,"loadNice":0,"loadIdle":64.9224035017907,"loadIrq":0.20891364902506965,"rawLoad":10578,"rawLoadUser":5984,"rawLoadSystem":4531,"rawLoadNice":0,"rawLoadIdle":19578,"rawLoadIrq":63},{"load":35.520533914824725,"loadUser":21.683681897776456,"loadSystem":13.268576337265008,"loadNice":0,"loadIdle":64.47946608517528,"loadIrq":0.5682756797832622,"rawLoad":10751,"rawLoadUser":6563,"rawLoadSystem":4016,"rawLoadNice":0,"rawLoadIdle":19516,"rawLoadIrq":172}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":38,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":189455038,"rx_dropped":0,"rx_errors":0,"tx_bytes":18851603,"tx_dropped":0,"tx_errors":0,"rx_sec":1437.8838726017857,"tx_sec":437.85221300576205,"ms":31586}]', '{"total":10685313024,"free":5244739584,"used":5440573440,"active":5440573440,"available":5244739584,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":29360128,"swapfree":2520776704}'), (5, '2022-03-29 20:50:02', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53510033408,"available":73766117376,"use":42.04,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":36.09089398471253,"currentLoadUser":20.55084745762712,"currentLoadSystem":14.981721502160186,"currentLoadNice":0,"currentLoadIdle":63.90910601528748,"currentLoadIrq":0.5583250249252244,"rawCurrentLoad":43439,"rawCurrentLoadUser":24735,"rawCurrentLoadSystem":18032,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":76921,"rawCurrentLoadIrq":672,"cpus":[{"load":39.12111114776814,"loadUser":18.607106331034938,"loadSystem":19.2273432087361,"loadNice":0,"loadIdle":60.87888885223186,"loadIrq":1.2866616079970967,"rawLoad":11858,"rawLoadUser":5640,"rawLoadSystem":5828,"rawLoadNice":0,"rawLoadIdle":18453,"rawLoadIrq":390},{"load":35.177588794397195,"loadUser":21.367350341837586,"loadSystem":13.600133400033352,"loadNice":0,"loadIdle":64.8224112056028,"loadIrq":0.21010505252626313,"rawLoad":10548,"rawLoadUser":6407,"rawLoadSystem":4078,"rawLoadNice":0,"rawLoadIdle":19437,"rawLoadIrq":63},{"load":36.15209988649262,"loadUser":21.336048607865393,"loadSystem":14.71255925752821,"loadNice":0,"loadIdle":63.847900113507386,"loadIrq":0.10349202109901849,"rawLoad":10829,"rawLoadUser":6391,"rawLoadSystem":4407,"rawLoadNice":0,"rawLoadIdle":19125,"rawLoadIrq":31},{"load":33.88907339754235,"loadUser":20.913317834606442,"loadSystem":12.351378279641315,"loadNice":0,"loadIdle":66.11092660245765,"loadIrq":0.6243772832945865,"rawLoad":10204,"rawLoadUser":6297,"rawLoadSystem":3719,"rawLoadNice":0,"rawLoadIdle":19906,"rawLoadIrq":188}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":30,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":189497338,"rx_dropped":0,"rx_errors":0,"tx_bytes":18866388,"tx_dropped":0,"tx_errors":0,"rx_sec":1439.2160865571093,"tx_sec":503.04514987581234,"ms":29391}]', '{"total":10685313024,"free":5293531136,"used":5391781888,"active":5391781888,"available":5293531136,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":29360128,"swapfree":2520776704}'), (6, '2022-03-29 20:50:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53510668288,"available":73765482496,"use":42.04,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":41.85819394671721,"currentLoadUser":25.90149552666209,"currentLoadSystem":15.297077639931473,"currentLoadNice":0,"currentLoadIdle":58.1418060532828,"currentLoadIrq":0.6596207801236479,"rawCurrentLoad":50576,"rawCurrentLoadUser":31296,"rawCurrentLoadSystem":18483,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":70251,"rawCurrentLoadIrq":797,"cpus":[{"load":46.89544094928179,"loadUser":24.757584722085266,"loadSystem":20.800052591789107,"loadNice":0,"loadIdle":53.1045590507182,"loadIrq":1.337803635407422,"rawLoad":14267,"rawLoadUser":7532,"rawLoadSystem":6328,"rawLoadNice":0,"rawLoadIdle":16156,"rawLoadIrq":407},{"load":40.01729758499102,"loadUser":26.348878983434236,"loadSystem":13.512075044907194,"loadNice":0,"loadIdle":59.98270241500898,"loadIrq":0.15634355664959085,"rawLoad":12030,"rawLoadUser":7921,"rawLoadSystem":4062,"rawLoadNice":0,"rawLoadIdle":18032,"rawLoadIrq":47},{"load":41.40524066651207,"loadUser":26.087388610991486,"loadSystem":14.698380097392919,"loadNice":0,"loadIdle":58.59475933348792,"loadIrq":0.6194719581276709,"rawLoad":12499,"rawLoadUser":7875,"rawLoadSystem":4437,"rawLoadNice":0,"rawLoadIdle":17688,"rawLoadIrq":187},{"load":39.06483170286851,"loadUser":26.423478693417344,"loadSystem":12.124025866357155,"loadNice":0,"loadIdle":60.93516829713149,"loadIrq":0.5173271430940142,"rawLoad":11780,"rawLoadUser":7968,"rawLoadSystem":3656,"rawLoadNice":0,"rawLoadIdle":18375,"rawLoadIrq":156}]}', '{"ESTABLISHED":20,"CLOSE":0,"TIME_WAIT":44,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":28,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":189548839,"rx_dropped":0,"rx_errors":0,"tx_bytes":18875485,"tx_dropped":0,"tx_errors":0,"rx_sec":1757.1735644341327,"tx_sec":310.3824763724453,"ms":29309}]', '{"total":10685313024,"free":5272133632,"used":5413134336,"active":5413101568,"available":5272227840,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":29360128,"swapfree":2520776704}'), (7, '2022-03-29 20:51:05', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53507321856,"available":73768828928,"use":42.04,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":40.179921130463356,"currentLoadUser":23.402070325336837,"currentLoadSystem":16.008051265198816,"currentLoadNice":0,"currentLoadIdle":59.820078869536644,"currentLoadIrq":0.7697995399277029,"rawCurrentLoad":48907,"rawCurrentLoadUser":28485,"rawCurrentLoadSystem":19485,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":72813,"rawCurrentLoadIrq":937,"cpus":[{"load":46.481813733485566,"loadUser":23.496982547708367,"loadSystem":21.458163431740335,"loadNice":0,"loadIdle":53.518186266514434,"loadIrq":1.5266677540368618,"rawLoad":14249,"rawLoadUser":7203,"rawLoadSystem":6578,"rawLoadNice":0,"rawLoadIdle":16406,"rawLoadIrq":468},{"load":37.216774877434744,"loadUser":25.053001192526832,"loadSystem":12.16377368490791,"loadNice":0,"loadIdle":62.783225122565256,"loadIrq":0,"rawLoad":11235,"rawLoadUser":7563,"rawLoadSystem":3672,"rawLoadNice":0,"rawLoadIdle":18953,"rawLoadIrq":0},{"load":38.854765207053696,"loadUser":21.877683112079783,"loadSystem":16.71950333531471,"loadNice":0,"loadIdle":61.145234792946304,"loadIrq":0.25757875965920346,"rawLoad":11766,"rawLoadUser":6625,"rawLoadSystem":5063,"rawLoadNice":0,"rawLoadIdle":18516,"rawLoadIrq":78},{"load":38.10099689491747,"loadUser":23.186795227978426,"loadSystem":13.636215067821539,"loadNice":0,"loadIdle":61.89900310508253,"loadIrq":1.2779865991175028,"rawLoad":11657,"rawLoadUser":7094,"rawLoadSystem":4172,"rawLoadNice":0,"rawLoadIdle":18938,"rawLoadIrq":391}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":45,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":189633545,"rx_dropped":0,"rx_errors":0,"tx_bytes":18890371,"tx_dropped":0,"tx_errors":0,"rx_sec":2605.53675792064,"tx_sec":457.88988003691173,"ms":32510}]', '{"total":10685313024,"free":5308051456,"used":5377261568,"active":5377261568,"available":5308051456,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":29360128,"swapfree":2520776704}'), (8, '2022-03-29 20:51:34', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53508165632,"available":73767985152,"use":42.04,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":56.8641583388672,"currentLoadUser":34.556453572180565,"currentLoadSystem":21.459807907225343,"currentLoadNice":0,"currentLoadIdle":43.135841661132794,"currentLoadIrq":0.847896859461298,"rawCurrentLoad":70217,"rawCurrentLoadUser":42671,"rawCurrentLoadSystem":26499,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":53265,"rawCurrentLoadIrq":1047,"cpus":[{"load":60.55927480060219,"loadUser":33.03116691758225,"loadSystem":25.574169576219607,"loadNice":0,"loadIdle":39.440725199397804,"loadIrq":1.9539383068003462,"rawLoad":18906,"rawLoadUser":10312,"rawLoadSystem":7984,"rawLoadNice":0,"rawLoadIdle":12313,"rawLoadIrq":610},{"load":55.906409880405384,"loadUser":35.233160621761655,"loadSystem":20.419069964480073,"loadNice":0,"loadIdle":44.093590119594616,"loadIrq":0.25417929416365237,"rawLoad":17156,"rawLoadUser":10812,"rawLoadSystem":6266,"rawLoadNice":0,"rawLoadIdle":13531,"rawLoadIrq":78},{"load":56.19233268356075,"loadUser":35.432098765432094,"loadSystem":20.201429499675115,"loadNice":0,"loadIdle":43.80766731643925,"loadIrq":0.5588044184535412,"rawLoad":17296,"rawLoadUser":10906,"rawLoadSystem":6218,"rawLoadNice":0,"rawLoadIdle":13484,"rawLoadIrq":172},{"load":54.744122613326404,"loadUser":34.553188725808546,"loadSystem":19.58371217041174,"loadNice":0,"loadIdle":45.255877386673596,"loadIrq":0.6072217171061177,"rawLoad":16859,"rawLoadUser":10641,"rawLoadSystem":6031,"rawLoadNice":0,"rawLoadIdle":13937,"rawLoadIrq":187}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":49,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":189705496,"rx_dropped":0,"rx_errors":0,"tx_bytes":18916356,"tx_dropped":0,"tx_errors":0,"rx_sec":2361.2168548175373,"tx_sec":852.7500656340246,"ms":30472}]', '{"total":10685313024,"free":5262172160,"used":5423140864,"active":5423140864,"available":5262172160,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":29360128,"swapfree":2520776704}'), (9, '2022-03-29 20:52:00', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53508755456,"available":73767395328,"use":42.04,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":30.919673444344077,"currentLoadUser":17.962265437253933,"currentLoadSystem":12.610570449780989,"currentLoadNice":0,"currentLoadIdle":69.08032655565593,"currentLoadIrq":0.3468375573091541,"rawCurrentLoad":36283,"rawCurrentLoadUser":21078,"rawCurrentLoadSystem":14798,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":81063,"rawCurrentLoadIrq":407,"cpus":[{"load":32.46845989050226,"loadUser":17.587649199170265,"loadSystem":14.295915938382016,"loadNice":0,"loadIdle":67.53154010949774,"loadIrq":0.584894752949978,"rawLoad":9548,"rawLoadUser":5172,"rawLoadSystem":4204,"rawLoadNice":0,"rawLoadIdle":19859,"rawLoadIrq":172},{"load":30.95075472986818,"loadUser":17.129977460555974,"loadSystem":13.660269107301415,"loadNice":0,"loadIdle":69.04924527013182,"loadIrq":0.16050816201079163,"rawLoad":9063,"rawLoadUser":5016,"rawLoadSystem":4000,"rawLoadNice":0,"rawLoadIdle":20219,"rawLoadIrq":47},{"load":29.936479748651045,"loadUser":18.089611365343895,"loadSystem":11.68636022129636,"loadNice":0,"loadIdle":70.06352025134895,"loadIrq":0.16050816201079163,"rawLoad":8766,"rawLoadUser":5297,"rawLoadSystem":3422,"rawLoadNice":0,"rawLoadIdle":20516,"rawLoadIrq":47},{"load":30.318297872340427,"loadUser":19.040000000000003,"loadSystem":10.798297872340425,"loadNice":0,"loadIdle":69.68170212765958,"loadIrq":0.48,"rawLoad":8906,"rawLoadUser":5593,"rawLoadSystem":3172,"rawLoadNice":0,"rawLoadIdle":20469,"rawLoadIrq":141}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":60,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":29,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":189754377,"rx_dropped":0,"rx_errors":0,"tx_bytes":18940653,"tx_dropped":0,"tx_errors":0,"rx_sec":1827.9421113645712,"tx_sec":908.6047642197375,"ms":26741}]', '{"total":10685313024,"free":5329625088,"used":5355687936,"active":5355687936,"available":5329625088,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":29360128,"swapfree":2520776704}'), (10, '2022-03-29 20:52:30', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53509304320,"available":73766846464,"use":42.04,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.629202737652705,"currentLoadUser":6.354314796796647,"currentLoadSystem":5.067817611788871,"currentLoadNice":0,"currentLoadIdle":88.3707972623473,"currentLoadIrq":0.20707032906718562,"rawCurrentLoad":13984,"rawCurrentLoadUser":7641,"rawCurrentLoadSystem":6094,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":106265,"rawCurrentLoadIrq":249,"cpus":[{"load":12.81676575110432,"loadUser":5.8653558736590385,"loadSystem":6.589391876183201,"loadNice":0,"loadIdle":87.18323424889569,"loadIrq":0.3620180012620811,"rawLoad":3859,"rawLoadUser":1766,"rawLoadSystem":1984,"rawLoadNice":0,"rawLoadIdle":26250,"rawLoadIrq":109},{"load":12.797202797202797,"loadUser":7.022977022977023,"loadSystem":5.670995670995671,"loadNice":0,"loadIdle":87.2027972027972,"loadIrq":0.10323010323010323,"rawLoad":3843,"rawLoadUser":2109,"rawLoadSystem":1703,"rawLoadNice":0,"rawLoadIdle":26187,"rawLoadIrq":31},{"load":10.156666666666666,"loadUser":6.456666666666666,"loadSystem":3.6999999999999997,"loadNice":0,"loadIdle":89.84333333333333,"loadIrq":0,"rawLoad":3047,"rawLoadUser":1937,"rawLoadSystem":1110,"rawLoadNice":0,"rawLoadIdle":26953,"rawLoadIrq":0},{"load":10.743938890733975,"loadUser":6.074393889073398,"loadSystem":4.307539023580206,"loadNice":0,"loadIdle":89.25606110926603,"loadIrq":0.36200597808037194,"rawLoad":3235,"rawLoadUser":1829,"rawLoadSystem":1297,"rawLoadNice":0,"rawLoadIdle":26875,"rawLoadIrq":109}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":32,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":28,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":189801315,"rx_dropped":0,"rx_errors":0,"tx_bytes":18945926,"tx_dropped":0,"tx_errors":0,"rx_sec":1566.53205620265,"tx_sec":175.98371324633715,"ms":29963}]', '{"total":10685313024,"free":5334798336,"used":5350514688,"active":5350514688,"available":5334798336,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":29360128,"swapfree":2520776704}'), (11, '2022-03-29 20:53:00', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53509808128,"available":73766342656,"use":42.04,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.969092721834498,"currentLoadUser":6.660019940179461,"currentLoadSystem":5.114656031904287,"currentLoadNice":0,"currentLoadIdle":88.0309072781655,"currentLoadIrq":0.19441674975074777,"rawCurrentLoad":14406,"rawCurrentLoadUser":8016,"rawCurrentLoadSystem":6156,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":105954,"rawCurrentLoadIrq":234,"cpus":[{"load":14.166583937258018,"loadUser":6.77388398027731,"loadSystem":6.77388398027731,"loadNice":0,"loadIdle":85.83341606274199,"loadIrq":0.6188159767033985,"rawLoad":4281,"rawLoadUser":2047,"rawLoadSystem":2047,"rawLoadNice":0,"rawLoadIdle":25938,"rawLoadIrq":187},{"load":11.813671627876003,"loadUser":6.506176539140279,"loadSystem":5.307495088735724,"loadNice":0,"loadIdle":88.186328372124,"loadIrq":0,"rawLoad":3548,"rawLoadUser":1954,"rawLoadSystem":1594,"rawLoadNice":0,"rawLoadIdle":26485,"rawLoadIrq":0},{"load":10.715950715950715,"loadUser":6.346986346986347,"loadSystem":4.368964368964369,"loadNice":0,"loadIdle":89.28404928404929,"loadIrq":0,"rawLoad":3218,"rawLoadUser":1906,"rawLoadSystem":1312,"rawLoadNice":0,"rawLoadIdle":26812,"rawLoadIrq":0},{"load":11.16763082651772,"loadUser":7.011769399561141,"loadSystem":3.999601037303012,"loadNice":0,"loadIdle":88.83236917348228,"loadIrq":0.1562603896535674,"rawLoad":3359,"rawLoadUser":2109,"rawLoadSystem":1203,"rawLoadNice":0,"rawLoadIdle":26719,"rawLoadIrq":47}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":37,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":189899465,"rx_dropped":0,"rx_errors":0,"tx_bytes":18964360,"tx_dropped":0,"tx_errors":0,"rx_sec":3259.822644392042,"tx_sec":612.2421867215783,"ms":30109}]', '{"total":10685313024,"free":5341503488,"used":5343809536,"active":5343809536,"available":5341503488,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":29360128,"swapfree":2520776704}'), (12, '2022-03-29 20:53:30', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53510696960,"available":73765453824,"use":42.04,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":12.571347744329623,"currentLoadUser":6.4874444610853175,"currentLoadSystem":5.875892366831411,"currentLoadNice":0,"currentLoadIdle":87.42865225567039,"currentLoadIrq":0.20801091641289338,"rawCurrentLoad":15109,"rawCurrentLoadUser":7797,"rawCurrentLoadSystem":7062,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":105077,"rawCurrentLoadIrq":250,"cpus":[{"load":15.514149063371862,"loadUser":6.277401355121562,"loadSystem":8.821575660953899,"loadNice":0,"loadIdle":84.48585093662814,"loadIrq":0.4151720472963996,"rawLoad":4671,"rawLoadUser":1890,"rawLoadSystem":2656,"rawLoadNice":0,"rawLoadIdle":25437,"rawLoadIrq":125},{"load":12.713871193676415,"loadUser":6.930594003268518,"loadSystem":5.7832771904078975,"loadNice":0,"loadIdle":87.28612880632357,"loadIrq":0,"rawLoad":3812,"rawLoadUser":2078,"rawLoadSystem":1734,"rawLoadNice":0,"rawLoadIdle":26171,"rawLoadIrq":0},{"load":10.724280383795309,"loadUser":6.196695095948828,"loadSystem":4.424307036247335,"loadNice":0,"loadIdle":89.2757196162047,"loadIrq":0.10327825159914712,"rawLoad":3219,"rawLoadUser":1860,"rawLoadSystem":1328,"rawLoadNice":0,"rawLoadIdle":26797,"rawLoadIrq":31},{"load":11.326839323115795,"loadUser":6.546095282422954,"loadSystem":4.468233651384687,"loadNice":0,"loadIdle":88.6731606768842,"loadIrq":0.3125103893081552,"rawLoad":3407,"rawLoadUser":1969,"rawLoadSystem":1344,"rawLoadNice":0,"rawLoadIdle":26672,"rawLoadIrq":94}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":27,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":20,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":189938074,"rx_dropped":0,"rx_errors":0,"tx_bytes":18974853,"tx_dropped":0,"tx_errors":0,"rx_sec":1289.1151919866445,"tx_sec":350.3505843071786,"ms":29950}]', '{"total":10685313024,"free":5339758592,"used":5345554432,"active":5345554432,"available":5339758592,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":29360128,"swapfree":2520776704}'), (13, '2022-03-29 20:54:01', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53513601024,"available":73762549760,"use":42.05,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":12.155799211353843,"currentLoadUser":6.383208824850673,"currentLoadSystem":5.603713624943847,"currentLoadNice":0,"currentLoadIdle":87.84420078864615,"currentLoadIrq":0.16887676155932316,"rawCurrentLoad":14612,"rawCurrentLoadUser":7673,"rawCurrentLoadSystem":6736,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":105594,"rawCurrentLoadIrq":203,"cpus":[{"load":14.859717115505648,"loadUser":6.989300738679652,"loadSystem":7.247672993474444,"loadNice":0,"loadIdle":85.14028288449435,"loadIrq":0.6227433833515519,"rawLoad":4486,"rawLoadUser":2110,"rawLoadSystem":2188,"rawLoadNice":0,"rawLoadIdle":25703,"rawLoadIrq":188},{"load":12.449585013832873,"loadUser":5.989800339988667,"loadSystem":6.459784673844206,"loadNice":0,"loadIdle":87.55041498616713,"loadIrq":0,"rawLoad":3735,"rawLoadUser":1797,"rawLoadSystem":1938,"rawLoadNice":0,"rawLoadIdle":26266,"rawLoadIrq":0},{"load":10.366321122629246,"loadUser":5.729809006366454,"loadSystem":4.636512116262791,"loadNice":0,"loadIdle":89.63367887737076,"loadIrq":0,"rawLoad":3110,"rawLoadUser":1719,"rawLoadSystem":1391,"rawLoadNice":0,"rawLoadIdle":26891,"rawLoadIrq":0},{"load":10.9312010661336,"loadUser":6.81992337164751,"loadSystem":4.061302681992337,"loadNice":0,"loadIdle":89.0687989338664,"loadIrq":0.04997501249375312,"rawLoad":3281,"rawLoadUser":2047,"rawLoadSystem":1219,"rawLoadNice":0,"rawLoadIdle":26734,"rawLoadIrq":15}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":12,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":190967097,"rx_dropped":0,"rx_errors":0,"tx_bytes":18991284,"tx_dropped":0,"tx_errors":0,"rx_sec":34311.05998466207,"tx_sec":547.8643593077924,"ms":29991}]', '{"total":10685313024,"free":5340770304,"used":5344542720,"active":5344542720,"available":5340770304,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":29360128,"swapfree":2520776704}'), (14, '2022-03-29 20:54:30', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53510168576,"available":73765982208,"use":42.04,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":13.10793843493011,"currentLoadUser":7.689813159492114,"currentLoadSystem":5.352435911294413,"currentLoadNice":0,"currentLoadIdle":86.8920615650699,"currentLoadIrq":0.06568936414358531,"rawCurrentLoad":15764,"rawCurrentLoadUser":9248,"rawCurrentLoadSystem":6437,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":104499,"rawCurrentLoadIrq":79,"cpus":[{"load":14.431927690825109,"loadUser":8.098228823978998,"loadSystem":6.177516365932276,"loadNice":0,"loadIdle":85.5680723091749,"loadIrq":0.1561825009138338,"rawLoad":4343,"rawLoadUser":2437,"rawLoadSystem":1859,"rawLoadNice":0,"rawLoadIdle":25750,"rawLoadIrq":47},{"load":13.36284363975238,"loadUser":7.0192371696731675,"loadSystem":6.343606470079212,"loadNice":0,"loadIdle":86.63715636024763,"loadIrq":0,"rawLoad":4015,"rawLoadUser":2109,"rawLoadSystem":1906,"rawLoadNice":0,"rawLoadIdle":26031,"rawLoadIrq":0},{"load":12.520779307134783,"loadUser":7.789746658687413,"loadSystem":4.624642595917281,"loadNice":0,"loadIdle":87.47922069286521,"loadIrq":0.10639005253008844,"rawLoad":3766,"rawLoadUser":2343,"rawLoadSystem":1391,"rawLoadNice":0,"rawLoadIdle":26312,"rawLoadIrq":32},{"load":12.114757372029555,"loadUser":7.851294681488384,"loadSystem":4.26346269054117,"loadNice":0,"loadIdle":87.88524262797046,"loadIrq":0,"rawLoad":3640,"rawLoadUser":2359,"rawLoadSystem":1281,"rawLoadNice":0,"rawLoadIdle":26406,"rawLoadIrq":0}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":12,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":22,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":190997383,"rx_dropped":0,"rx_errors":0,"tx_bytes":18994972,"tx_dropped":0,"tx_errors":0,"rx_sec":1004.4441496418148,"tx_sec":122.31361103741045,"ms":30152}]', '{"total":10685313024,"free":5351956480,"used":5333356544,"active":5333356544,"available":5351956480,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":29360128,"swapfree":2520776704}'), (15, '2022-03-29 20:55:01', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53519630336,"available":73756520448,"use":42.05,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":12.669430845572318,"currentLoadUser":6.9079495121057715,"currentLoadSystem":5.592466779898092,"currentLoadNice":0,"currentLoadIdle":87.33056915442768,"currentLoadIrq":0.16901455356845507,"rawCurrentLoad":15217,"rawCurrentLoadUser":8297,"rawCurrentLoadSystem":6717,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":104891,"rawCurrentLoadIrq":203,"cpus":[{"load":15.349887133182843,"loadUser":6.74213251892179,"loadSystem":8.14300889656088,"loadNice":0,"loadIdle":84.65011286681715,"loadIrq":0.46474571770017264,"rawLoad":4624,"rawLoadUser":2031,"rawLoadSystem":2453,"rawLoadNice":0,"rawLoadIdle":25500,"rawLoadIrq":140},{"load":12.296558164354323,"loadUser":7.243863393810032,"loadSystem":5.05269477054429,"loadNice":0,"loadIdle":87.70344183564568,"loadIrq":0,"rawLoad":3687,"rawLoadUser":2172,"rawLoadSystem":1515,"rawLoadNice":0,"rawLoadIdle":26297,"rawLoadIrq":0},{"load":11.560385346178206,"loadUser":6.5102170072335745,"loadSystem":4.946831561052035,"loadNice":0,"loadIdle":88.43961465382179,"loadIrq":0.10333677789259642,"rawLoad":3468,"rawLoadUser":1953,"rawLoadSystem":1484,"rawLoadNice":0,"rawLoadIdle":26531,"rawLoadIrq":31},{"load":11.459618012732909,"loadUser":7.1364287857071425,"loadSystem":4.216526115796141,"loadNice":0,"loadIdle":88.5403819872671,"loadIrq":0.10666311122962568,"rawLoad":3438,"rawLoadUser":2141,"rawLoadSystem":1265,"rawLoadNice":0,"rawLoadIdle":26563,"rawLoadIrq":32}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":5,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":192668120,"rx_dropped":0,"rx_errors":0,"tx_bytes":19008790,"tx_dropped":0,"tx_errors":0,"rx_sec":55659.69284072359,"tx_sec":460.3391411533464,"ms":30017}]', '{"total":10685313024,"free":5353758720,"used":5331554304,"active":5331554304,"available":5353758720,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":29360128,"swapfree":2520776704}'), (16, '2022-03-29 20:55:30', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53520023552,"available":73756127232,"use":42.05,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":12.016678040579903,"currentLoadUser":6.502272008522112,"currentLoadSystem":5.410376337821868,"currentLoadNice":0,"currentLoadIdle":87.9833219594201,"currentLoadIrq":0.10402969423592272,"rawCurrentLoad":14439,"rawCurrentLoadUser":7813,"rawCurrentLoadSystem":6501,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":105719,"rawCurrentLoadIrq":125,"cpus":[{"load":13.251329787234042,"loadUser":6.496010638297872,"loadSystem":6.4926861702127665,"loadNice":0,"loadIdle":86.74867021276596,"loadIrq":0.26263297872340424,"rawLoad":3986,"rawLoadUser":1954,"rawLoadSystem":1953,"rawLoadNice":0,"rawLoadIdle":26094,"rawLoadIrq":79},{"load":12.866237792073598,"loadUser":6.823105896470118,"loadSystem":6.04313189560348,"loadNice":0,"loadIdle":87.1337622079264,"loadIrq":0,"rawLoad":3860,"rawLoadUser":2047,"rawLoadSystem":1813,"rawLoadNice":0,"rawLoadIdle":26141,"rawLoadIrq":0},{"load":10.724280383795309,"loadUser":6.7164179104477615,"loadSystem":4.007862473347548,"loadNice":0,"loadIdle":89.2757196162047,"loadIrq":0,"rawLoad":3219,"rawLoadUser":2016,"rawLoadSystem":1203,"rawLoadNice":0,"rawLoadIdle":26797,"rawLoadIrq":0},{"load":11.223844848807426,"loadUser":5.974518479092512,"loadSystem":5.096304181497621,"loadNice":0,"loadIdle":88.77615515119257,"loadIrq":0.1530221882172915,"rawLoad":3374,"rawLoadUser":1796,"rawLoadSystem":1532,"rawLoadNice":0,"rawLoadIdle":26687,"rawLoadIrq":46}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":6,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":192702712,"rx_dropped":0,"rx_errors":0,"tx_bytes":19012726,"tx_dropped":0,"tx_errors":0,"rx_sec":1111.4252666752345,"tx_sec":126.46189435805167,"ms":31124}]', '{"total":10685313024,"free":5368500224,"used":5316812800,"active":5316812800,"available":5368500224,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":29360128,"swapfree":2520776704}'), (17, '2022-03-29 20:56:01', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53532188672,"available":73743962112,"use":42.06,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":14.028101097439308,"currentLoadUser":7.520784835384103,"currentLoadSystem":6.32607249750582,"currentLoadNice":0,"currentLoadIdle":85.9718989025607,"currentLoadIrq":0.18124376454938476,"rawCurrentLoad":16873,"rawCurrentLoadUser":9046,"rawCurrentLoadSystem":7609,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":103407,"rawCurrentLoadIrq":218,"cpus":[{"load":14.630662946725122,"loadUser":7.938089544307162,"loadSystem":6.383685399229441,"loadNice":0,"loadIdle":85.36933705327488,"loadIrq":0.30888800318852133,"rawLoad":4405,"rawLoadUser":2390,"rawLoadSystem":1922,"rawLoadNice":0,"rawLoadIdle":25703,"rawLoadIrq":93},{"load":15.928702315508914,"loadUser":8.58903881392637,"loadSystem":7.339663501582542,"loadNice":0,"loadIdle":84.07129768449109,"loadIrq":0,"rawLoad":4781,"rawLoadUser":2578,"rawLoadSystem":2203,"rawLoadNice":0,"rawLoadIdle":25234,"rawLoadIrq":0},{"load":13.169642857142858,"loadUser":7.339418976545842,"loadSystem":5.830223880597015,"loadNice":0,"loadIdle":86.83035714285714,"loadIrq":0,"rawLoad":3953,"rawLoadUser":2203,"rawLoadSystem":1750,"rawLoadNice":0,"rawLoadIdle":26063,"rawLoadIrq":0},{"load":12.388440993994891,"loadUser":6.220762416641783,"loadSystem":5.752961082910321,"loadNice":0,"loadIdle":87.61155900600511,"loadIrq":0.41471749444278555,"rawLoad":3734,"rawLoadUser":1875,"rawLoadSystem":1734,"rawLoadNice":0,"rawLoadIdle":26407,"rawLoadIrq":125}]}', '{"ESTABLISHED":20,"CLOSE":0,"TIME_WAIT":10,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":199659263,"rx_dropped":0,"rx_errors":0,"tx_bytes":19041880,"tx_dropped":0,"tx_errors":0,"rx_sec":240619.5219812528,"tx_sec":1008.4051053232333,"ms":28911}]', '{"total":10685313024,"free":5347790848,"used":5337522176,"active":5337522176,"available":5347790848,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":29360128,"swapfree":2520776704}'), (18, '2022-03-29 20:56:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53532987392,"available":73743163392,"use":42.06,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":26.874963683603248,"currentLoadUser":15.318463671151914,"currentLoadSystem":11.167188239298078,"currentLoadNice":0,"currentLoadIdle":73.12503631639674,"currentLoadIrq":0.3893117731532593,"rawCurrentLoad":32376,"rawCurrentLoadUser":18454,"rawCurrentLoadSystem":13453,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":88093,"rawCurrentLoadIrq":469,"cpus":[{"load":31.702569854517865,"loadUser":16.70240490878501,"loadSystem":13.967604658067495,"loadNice":0,"loadIdle":68.29743014548214,"loadIrq":1.0325602876653581,"rawLoad":9610,"rawLoadUser":5063,"rawLoadSystem":4234,"rawLoadNice":0,"rawLoadIdle":20703,"rawLoadIrq":313},{"load":25.933071651919366,"loadUser":15.384871266050162,"loadSystem":10.341959949437829,"loadNice":0,"loadIdle":74.06692834808062,"loadIrq":0.20624043643137518,"rawLoad":7796,"rawLoadUser":4625,"rawLoadSystem":3109,"rawLoadNice":0,"rawLoadIdle":22266,"rawLoadIrq":62},{"load":25.52059077905662,"loadUser":13.618521721774998,"loadSystem":11.695828620850243,"loadNice":0,"loadIdle":74.47940922094338,"loadIrq":0.20624043643137518,"rawLoad":7672,"rawLoadUser":4094,"rawLoadSystem":3516,"rawLoadNice":0,"rawLoadIdle":22390,"rawLoadIrq":62},{"load":24.30074587107086,"loadUser":15.55673947789025,"loadSystem":8.637453383058071,"loadNice":0,"loadIdle":75.69925412892914,"loadIrq":0.10655301012253596,"rawLoad":7298,"rawLoadUser":4672,"rawLoadSystem":2594,"rawLoadNice":0,"rawLoadIdle":22734,"rawLoadIrq":32}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":14,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":199703715,"rx_dropped":0,"rx_errors":0,"tx_bytes":19049985,"tx_dropped":0,"tx_errors":0,"rx_sec":1488.6306553698805,"tx_sec":271.42426576470984,"ms":29861}]', '{"total":10685313024,"free":5326147584,"used":5359165440,"active":5359165440,"available":5326147584,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":29360128,"swapfree":2520776704}'), (19, '2022-03-29 20:57:01', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53564284928,"available":73711865856,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":19.755612673537463,"currentLoadUser":11.359269333466424,"currentLoadSystem":8.266580157878538,"currentLoadNice":0,"currentLoadIdle":80.24438732646254,"currentLoadIrq":0.1297631821924987,"rawCurrentLoad":23750,"rawCurrentLoadUser":13656,"rawCurrentLoadSystem":9938,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":96469,"rawCurrentLoadIrq":156,"cpus":[{"load":24.868181064500085,"loadUser":14.558116398607195,"loadSystem":9.845796716962361,"loadNice":0,"loadIdle":75.13181893549992,"loadIrq":0.46426794893052564,"rawLoad":7499,"rawLoadUser":4390,"rawLoadSystem":2969,"rawLoadNice":0,"rawLoadIdle":22656,"rawLoadIrq":140},{"load":19.565796483750667,"loadUser":10.665290356952584,"loadSystem":8.847229621736814,"loadNice":0,"loadIdle":80.43420351624934,"loadIrq":0.05327650506126798,"rawLoad":5876,"rawLoadUser":3203,"rawLoadSystem":2657,"rawLoadNice":0,"rawLoadIdle":24156,"rawLoadIrq":16},{"load":17.69722814498934,"loadUser":10.307835820895523,"loadSystem":7.3893923240938175,"loadNice":0,"loadIdle":82.30277185501066,"loadIrq":0,"rawLoad":5312,"rawLoadUser":3094,"rawLoadSystem":2218,"rawLoadNice":0,"rawLoadIdle":24704,"rawLoadIrq":0},{"load":16.867670575692966,"loadUser":9.891391257995735,"loadSystem":6.976279317697228,"loadNice":0,"loadIdle":83.13232942430704,"loadIrq":0,"rawLoad":5063,"rawLoadUser":2969,"rawLoadSystem":2094,"rawLoadNice":0,"rawLoadIdle":24953,"rawLoadIrq":0}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":14,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":37,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":199850243,"rx_dropped":0,"rx_errors":0,"tx_bytes":19102107,"tx_dropped":0,"tx_errors":0,"rx_sec":4873.7069682354895,"tx_sec":1733.6437718277066,"ms":30065}]', '{"total":10685313024,"free":5220134912,"used":5465178112,"active":5465178112,"available":5220134912,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":29360128,"swapfree":2520776704}'), (20, '2022-03-29 20:57:30', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53564743680,"available":73711407104,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":12.242028997562741,"currentLoadUser":6.549822404485223,"currentLoadSystem":5.536654549689312,"currentLoadNice":0,"currentLoadIdle":87.75797100243726,"currentLoadIrq":0.15555204338820633,"rawCurrentLoad":14717,"rawCurrentLoadUser":7874,"rawCurrentLoadSystem":6656,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":105500,"rawCurrentLoadIrq":187,"cpus":[{"load":14.047310971766032,"loadUser":6.479546133174082,"loadSystem":7.153047344149166,"loadNice":0,"loadIdle":85.95268902823396,"loadIrq":0.41471749444278555,"rawLoad":4234,"rawLoadUser":1953,"rawLoadSystem":2156,"rawLoadNice":0,"rawLoadIdle":25907,"rawLoadIrq":125},{"load":12.684306873023798,"loadUser":6.863038775170577,"loadSystem":5.718089532368115,"loadNice":0,"loadIdle":87.3156931269762,"loadIrq":0.10317856548510568,"rawLoad":3811,"rawLoadUser":2062,"rawLoadSystem":1718,"rawLoadNice":0,"rawLoadIdle":26234,"rawLoadIrq":31},{"load":10.783333333333333,"loadUser":6.510000000000001,"loadSystem":4.273333333333333,"loadNice":0,"loadIdle":89.21666666666667,"loadIrq":0,"rawLoad":3235,"rawLoadUser":1953,"rawLoadSystem":1282,"rawLoadNice":0,"rawLoadIdle":26765,"rawLoadIrq":0},{"load":11.444840331657288,"loadUser":6.346774999167527,"loadSystem":4.994838666711066,"loadNice":0,"loadIdle":88.55515966834271,"loadIrq":0.10322666577869534,"rawLoad":3437,"rawLoadUser":1906,"rawLoadSystem":1500,"rawLoadNice":0,"rawLoadIdle":26594,"rawLoadIrq":31}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":13,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":199879380,"rx_dropped":0,"rx_errors":0,"tx_bytes":19108394,"tx_dropped":0,"tx_errors":0,"rx_sec":970.6832794749643,"tx_sec":209.44797947829565,"ms":30017}]', '{"total":10685313024,"free":5265518592,"used":5419794432,"active":5419794432,"available":5265518592,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":29360128,"swapfree":2520776704}'), (21, '2022-03-29 20:58:00', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53565267968,"available":73710882816,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":14.892060007317964,"currentLoadUser":7.914213485014803,"currentLoadSystem":6.847287363203939,"currentLoadNice":0,"currentLoadIdle":85.10793999268203,"currentLoadIrq":0.13055915909922494,"rawCurrentLoad":17908,"rawCurrentLoadUser":9517,"rawCurrentLoadSystem":8234,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":102344,"rawCurrentLoadIrq":157,"cpus":[{"load":16.0491776042532,"loadUser":8.101013457384948,"loadSystem":7.685662070111314,"loadNice":0,"loadIdle":83.9508223957468,"loadIrq":0.2625020767569364,"rawLoad":4830,"rawLoadUser":2438,"rawLoadSystem":2313,"rawLoadNice":0,"rawLoadIdle":25265,"rawLoadIrq":79},{"load":15.671119698837325,"loadUser":7.602358663424059,"loadSystem":8.068761035413266,"loadNice":0,"loadIdle":84.32888030116268,"loadIrq":0,"rawLoad":4704,"rawLoadUser":2282,"rawLoadSystem":2422,"rawLoadNice":0,"rawLoadIdle":25313,"rawLoadIrq":0},{"load":14.201991275681797,"loadUser":8.011721221404548,"loadSystem":6.1902700542772475,"loadNice":0,"loadIdle":85.79800872431821,"loadIrq":0,"rawLoad":4265,"rawLoadUser":2406,"rawLoadSystem":1859,"rawLoadNice":0,"rawLoadIdle":25766,"rawLoadIrq":0},{"load":13.64708226776047,"loadUser":7.9411471652994114,"loadSystem":5.44687634926434,"loadNice":0,"loadIdle":86.35291773223953,"loadIrq":0.25905875319671856,"rawLoad":4109,"rawLoadUser":2391,"rawLoadSystem":1640,"rawLoadNice":0,"rawLoadIdle":26000,"rawLoadIrq":78}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":9,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":199957656,"rx_dropped":0,"rx_errors":0,"tx_bytes":19122578,"tx_dropped":0,"tx_errors":0,"rx_sec":2613.0324475897983,"tx_sec":473.4944585391908,"ms":29956}]', '{"total":10685313024,"free":5182992384,"used":5502320640,"active":5502320640,"available":5182992384,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":29360128,"swapfree":2520776704}'), (22, '2022-03-29 20:58:30', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53565661184,"available":73710489600,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":14.14462462662351,"currentLoadUser":6.513183622188756,"currentLoadSystem":7.475850133541898,"currentLoadNice":0,"currentLoadIdle":85.85537537337649,"currentLoadIrq":0.15559087089285864,"rawCurrentLoad":17000,"rawCurrentLoadUser":7828,"rawCurrentLoadSystem":8985,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":103187,"rawCurrentLoadIrq":187,"cpus":[{"load":16.274054412740544,"loadUser":6.738553417385535,"loadSystem":9.07100199071002,"loadNice":0,"loadIdle":83.72594558725946,"loadIrq":0.46449900464499,"rawLoad":4905,"rawLoadUser":2031,"rawLoadSystem":2734,"rawLoadNice":0,"rawLoadIdle":25235,"rawLoadIrq":140},{"load":14.888726012793176,"loadUser":6.713086353944562,"loadSystem":8.122334754797441,"loadNice":0,"loadIdle":85.11127398720683,"loadIrq":0.053304904051172705,"rawLoad":4469,"rawLoadUser":2015,"rawLoadSystem":2438,"rawLoadNice":0,"rawLoadIdle":25547,"rawLoadIrq":16},{"load":12.866666666666667,"loadUser":5.886666666666667,"loadSystem":6.98,"loadNice":0,"loadIdle":87.13333333333333,"loadIrq":0,"rawLoad":3860,"rawLoadUser":1766,"rawLoadSystem":2094,"rawLoadNice":0,"rawLoadIdle":26140,"rawLoadIrq":0},{"load":12.54037494588925,"loadUser":6.713063168059671,"loadSystem":5.724085112050881,"loadNice":0,"loadIdle":87.45962505411076,"loadIrq":0.10322666577869534,"rawLoad":3766,"rawLoadUser":2016,"rawLoadSystem":1719,"rawLoadNice":0,"rawLoadIdle":26265,"rawLoadIrq":31}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":5,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200002845,"rx_dropped":0,"rx_errors":0,"tx_bytes":19127120,"tx_dropped":0,"tx_errors":0,"rx_sec":1500.5478997177488,"tx_sec":150.82184957662295,"ms":30115}]', '{"total":10685313024,"free":5406932992,"used":5278380032,"active":5278380032,"available":5406932992,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":46137344,"swapfree":2503999488}'), (23, '2022-03-29 20:59:03', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53561860096,"available":73714290688,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":16.569326394440186,"currentLoadUser":8.80711943488262,"currentLoadSystem":7.532179388877107,"currentLoadNice":0,"currentLoadIdle":83.43067360555982,"currentLoadIrq":0.23002757068045745,"rawCurrentLoad":20313,"rawCurrentLoadUser":10797,"rawCurrentLoadSystem":9234,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":102281,"rawCurrentLoadIrq":282,"cpus":[{"load":19.046532846715326,"loadUser":8.808003128258603,"loadSystem":9.880083420229406,"loadNice":0,"loadIdle":80.95346715328468,"loadIrq":0.3584462982273201,"rawLoad":5845,"rawLoadUser":2703,"rawLoadSystem":3032,"rawLoadNice":0,"rawLoadIdle":24843,"rawLoadIrq":110},{"load":16.027965631023555,"loadUser":8.628181253879578,"loadSystem":7.298506975072691,"loadNice":0,"loadIdle":83.97203436897644,"loadIrq":0.10127740207128623,"rawLoad":4906,"rawLoadUser":2641,"rawLoadSystem":2234,"rawLoadNice":0,"rawLoadIdle":25703,"rawLoadIrq":31},{"load":15.203265306122448,"loadUser":8.16326530612245,"loadSystem":6.886530612244898,"loadNice":0,"loadIdle":84.79673469387755,"loadIrq":0.15346938775510202,"rawLoad":4656,"rawLoadUser":2500,"rawLoadSystem":2109,"rawLoadNice":0,"rawLoadIdle":25969,"rawLoadIrq":47},{"load":15.995044340114761,"loadUser":9.627673448095983,"loadSystem":6.060902451747522,"loadNice":0,"loadIdle":84.00495565988524,"loadIrq":0.3064684402712572,"rawLoad":4906,"rawLoadUser":2953,"rawLoadSystem":1859,"rawLoadNice":0,"rawLoadIdle":25766,"rawLoadIrq":94}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200077678,"rx_dropped":0,"rx_errors":0,"tx_bytes":19132302,"tx_dropped":0,"tx_errors":0,"rx_sec":2307.7373793443735,"tx_sec":159.8051006876985,"ms":32427}]', '{"total":10685313024,"free":5385162752,"used":5300150272,"active":5300150272,"available":5385162752,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":46137344,"swapfree":2503999488}'), (24, '2022-03-29 20:59:33', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53559451648,"available":73716699136,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":29.47317781303805,"currentLoadUser":16.94490395327639,"currentLoadSystem":11.961108672900982,"currentLoadNice":0,"currentLoadIdle":70.52682218696195,"currentLoadIrq":0.5671651868606732,"rawCurrentLoad":34921,"rawCurrentLoadUser":20077,"rawCurrentLoadSystem":14172,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":83563,"rawCurrentLoadIrq":672,"cpus":[{"load":32.388555328212526,"loadUser":15.72468386274444,"loadSystem":15.459698789118843,"loadNice":0,"loadIdle":67.61144467178748,"loadIrq":1.2041726763492437,"rawLoad":9656,"rawLoadUser":4688,"rawLoadSystem":4609,"rawLoadNice":0,"rawLoadIdle":20157,"rawLoadIrq":359},{"load":29.46343779677113,"loadUser":17.32804232804233,"loadSystem":12.030253696920363,"loadNice":0,"loadIdle":70.53656220322887,"loadIrq":0.10514177180843848,"rawLoad":8687,"rawLoadUser":5109,"rawLoadSystem":3547,"rawLoadNice":0,"rawLoadIdle":20797,"rawLoadIrq":31},{"load":28.428648868410356,"loadUser":17.57351944707955,"loadSystem":10.6416858652934,"loadNice":0,"loadIdle":71.57135113158965,"loadIrq":0.21344355603740345,"rawLoad":8391,"rawLoadUser":5187,"rawLoadSystem":3141,"rawLoadNice":0,"rawLoadIdle":21125,"rawLoadIrq":63},{"load":27.592598833878196,"loadUser":17.164908496511746,"loadSystem":9.68959590172222,"loadNice":0,"loadIdle":72.4074011661218,"loadIrq":0.7380944356442317,"rawLoad":8187,"rawLoadUser":5093,"rawLoadSystem":2875,"rawLoadNice":0,"rawLoadIdle":21484,"rawLoadIrq":219}]}', '{"ESTABLISHED":20,"CLOSE":0,"TIME_WAIT":12,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":27,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200127183,"rx_dropped":0,"rx_errors":0,"tx_bytes":19140445,"tx_dropped":0,"tx_errors":0,"rx_sec":1704.4241693923223,"tx_sec":280.3580650714409,"ms":29045}]', '{"total":10685313024,"free":5364736000,"used":5320577024,"active":5320577024,"available":5364736000,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":46137344,"swapfree":2503999488}'), (25, '2022-03-29 21:00:00', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53559783424,"available":73716367360,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":26.933722259973152,"currentLoadUser":15.901519797139398,"currentLoadSystem":10.527537000513782,"currentLoadNice":0,"currentLoadIdle":73.06627774002685,"currentLoadIrq":0.5046654623199696,"rawCurrentLoad":32502,"rawCurrentLoadUser":19189,"rawCurrentLoadSystem":12704,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":88172,"rawCurrentLoadIrq":609,"cpus":[{"load":29.255371656082392,"loadUser":15.11631733078872,"loadSystem":12.905136389062552,"loadNice":0,"loadIdle":70.7446283439176,"loadIrq":1.233917936231121,"rawLoad":8891,"rawLoadUser":4594,"rawLoadSystem":3922,"rawLoadNice":0,"rawLoadIdle":21500,"rawLoadIrq":375},{"load":26.87356551242391,"loadUser":16.009712936167382,"loadSystem":10.70751422013771,"loadNice":0,"loadIdle":73.12643448757609,"loadIrq":0.15633835611881713,"rawLoad":8079,"rawLoadUser":4813,"rawLoadSystem":3219,"rawLoadNice":0,"rawLoadIdle":21984,"rawLoadIrq":47},{"load":25.792924418411157,"loadUser":16.537424701301294,"loadSystem":9.152328019436217,"loadNice":0,"loadIdle":74.20707558158884,"loadIrq":0.10317169767364463,"rawLoad":7750,"rawLoadUser":4969,"rawLoadSystem":2750,"rawLoadNice":0,"rawLoadIdle":22297,"rawLoadIrq":31},{"load":25.791270341033375,"loadUser":15.951347230968086,"loadSystem":9.322904583568091,"loadNice":0,"loadIdle":74.20872965896662,"loadIrq":0.5170185264971995,"rawLoad":7782,"rawLoadUser":4813,"rawLoadSystem":2813,"rawLoadNice":0,"rawLoadIdle":22391,"rawLoadIrq":156}]}', '{"ESTABLISHED":18,"CLOSE":0,"TIME_WAIT":18,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":33,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200185060,"rx_dropped":0,"rx_errors":0,"tx_bytes":19152154,"tx_dropped":0,"tx_errors":0,"rx_sec":2028.138907383397,"tx_sec":410.3094228545397,"ms":28537}]', '{"total":10685313024,"free":5375275008,"used":5310038016,"active":5310038016,"available":5375275008,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":46137344,"swapfree":2503999488}'), (26, '2022-03-29 21:00:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53560324096,"available":73715826688,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.984741089945944,"currentLoadUser":6.85818042495065,"currentLoadSystem":5.022446922814236,"currentLoadNice":0,"currentLoadIdle":88.01525891005404,"currentLoadIrq":0.10411374218105797,"rawCurrentLoad":14389,"rawCurrentLoadUser":8234,"rawCurrentLoadSystem":6030,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":105672,"rawCurrentLoadIrq":125,"cpus":[{"load":13.176666666666668,"loadUser":7.8100000000000005,"loadSystem":5.3133333333333335,"loadNice":0,"loadIdle":86.82333333333332,"loadIrq":0.05333333333333334,"rawLoad":3953,"rawLoadUser":2343,"rawLoadSystem":1594,"rawLoadNice":0,"rawLoadIdle":26047,"rawLoadIrq":16},{"load":12.610058697972251,"loadUser":6.983724653148346,"loadSystem":5.626334044823906,"loadNice":0,"loadIdle":87.38994130202775,"loadIrq":0,"rawLoad":3781,"rawLoadUser":2094,"rawLoadSystem":1687,"rawLoadNice":0,"rawLoadIdle":26203,"rawLoadIrq":0},{"load":10.785752401280684,"loadUser":6.253335112059766,"loadSystem":4.532417289220918,"loadNice":0,"loadIdle":89.21424759871933,"loadIrq":0,"rawLoad":3234,"rawLoadUser":1875,"rawLoadSystem":1359,"rawLoadNice":0,"rawLoadIdle":26750,"rawLoadIrq":0},{"load":11.368092247366498,"loadUser":6.3868673777955,"loadSystem":4.619014388728275,"loadNice":0,"loadIdle":88.6319077526335,"loadIrq":0.3622104808427209,"rawLoad":3421,"rawLoadUser":1922,"rawLoadSystem":1390,"rawLoadNice":0,"rawLoadIdle":26672,"rawLoadIrq":109}]}', '{"ESTABLISHED":20,"CLOSE":0,"TIME_WAIT":19,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200237195,"rx_dropped":0,"rx_errors":0,"tx_bytes":19158604,"tx_dropped":0,"tx_errors":0,"rx_sec":1736.6755496335777,"tx_sec":214.85676215856097,"ms":30020}]', '{"total":10685313024,"free":5363183616,"used":5322129408,"active":5322129408,"available":5363183616,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":46137344,"swapfree":2503999488}'), (27, '2022-03-29 21:01:01', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53560717312,"available":73715433472,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.743236727024826,"currentLoadUser":6.248649008164148,"currentLoadSystem":5.364892502618845,"currentLoadNice":0,"currentLoadIdle":88.25676327297518,"currentLoadIrq":0.1296952162418317,"rawCurrentLoad":14125,"rawCurrentLoadUser":7516,"rawCurrentLoadSystem":6453,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":106157,"rawCurrentLoadIrq":156,"cpus":[{"load":14.10503253220024,"loadUser":7.419333421856328,"loadSystem":6.376975169300225,"loadNice":0,"loadIdle":85.89496746779976,"loadIrq":0.3087239410436861,"rawLoad":4249,"rawLoadUser":2235,"rawLoadSystem":1921,"rawLoadNice":0,"rawLoadIdle":25875,"rawLoadIrq":93},{"load":12.28023441662227,"loadUser":7.075785828449653,"loadSystem":5.204448588172616,"loadNice":0,"loadIdle":87.71976558337772,"loadIrq":0,"rawLoad":3688,"rawLoadUser":2125,"rawLoadSystem":1563,"rawLoadNice":0,"rawLoadIdle":26344,"rawLoadIrq":0},{"load":9.782898241875333,"loadUser":4.47522642514651,"loadSystem":5.307671816728822,"loadNice":0,"loadIdle":90.21710175812466,"loadIrq":0,"rawLoad":2938,"rawLoadUser":1344,"rawLoadSystem":1594,"rawLoadNice":0,"rawLoadIdle":27094,"rawLoadIrq":0},{"load":10.799494915930087,"loadUser":6.021133780820096,"loadSystem":4.569017079816574,"loadNice":0,"loadIdle":89.20050508406992,"loadIrq":0.20934405529341396,"rawLoad":3250,"rawLoadUser":1812,"rawLoadSystem":1375,"rawLoadNice":0,"rawLoadIdle":26844,"rawLoadIrq":63}]}', '{"ESTABLISHED":20,"CLOSE":0,"TIME_WAIT":19,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200313069,"rx_dropped":0,"rx_errors":0,"tx_bytes":19169754,"tx_dropped":0,"tx_errors":0,"rx_sec":2534.1170969573495,"tx_sec":372.39905146788686,"ms":29941}]', '{"total":10685313024,"free":5379022848,"used":5306290176,"active":5306290176,"available":5379022848,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":46137344,"swapfree":2503999488}'), (28, '2022-03-29 21:01:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53561143296,"available":73715007488,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.991719528112867,"currentLoadUser":6.404063749657059,"currentLoadSystem":5.404753788980987,"currentLoadNice":0,"currentLoadIdle":88.00828047188713,"currentLoadIrq":0.18290198947482186,"rawCurrentLoad":14424,"rawCurrentLoadUser":7703,"rawCurrentLoadSystem":6501,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":105859,"rawCurrentLoadIrq":220,"cpus":[{"load":13.366254598482087,"loadUser":6.784211049613893,"loadSystem":6.061710801047294,"loadNice":0,"loadIdle":86.63374540151791,"loadIrq":0.5203327478208994,"rawLoad":4033,"rawLoadUser":2047,"rawLoadSystem":1829,"rawLoadNice":0,"rawLoadIdle":26140,"rawLoadIrq":157},{"load":12.537045053444773,"loadUser":6.293496720055942,"loadSystem":6.1902700542772475,"loadNice":0,"loadIdle":87.46295494655523,"loadIrq":0.0532782791115847,"rawLoad":3765,"rawLoadUser":1890,"rawLoadSystem":1859,"rawLoadNice":0,"rawLoadIdle":26266,"rawLoadIrq":16},{"load":10.774612693653173,"loadUser":6.090288189238715,"loadSystem":4.68432450441446,"loadNice":0,"loadIdle":89.22538730634683,"loadIrq":0,"rawLoad":3234,"rawLoadUser":1828,"rawLoadSystem":1406,"rawLoadNice":0,"rawLoadIdle":26781,"rawLoadIrq":0},{"load":11.28259712613092,"loadUser":6.446248004257583,"loadSystem":4.6800159659393294,"loadNice":0,"loadIdle":88.71740287386908,"loadIrq":0.15633315593400746,"rawLoad":3392,"rawLoadUser":1938,"rawLoadSystem":1407,"rawLoadNice":0,"rawLoadIdle":26672,"rawLoadIrq":47}]}', '{"ESTABLISHED":20,"CLOSE":0,"TIME_WAIT":11,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200354112,"rx_dropped":0,"rx_errors":0,"tx_bytes":19173438,"tx_dropped":0,"tx_errors":0,"rx_sec":1363.7813590297392,"tx_sec":122.41236085728526,"ms":30095}]', '{"total":10685313024,"free":5384781824,"used":5300531200,"active":5300531200,"available":5384781824,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":46137344,"swapfree":2503999488}'), (29, '2022-03-29 21:02:01', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53561708544,"available":73714442240,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":13.869171307455739,"currentLoadUser":7.675172471116283,"currentLoadSystem":5.986202310697365,"currentLoadNice":0,"currentLoadIdle":86.13082869254426,"currentLoadIrq":0.20779652564209125,"rawCurrentLoad":16686,"rawCurrentLoadUser":9234,"rawCurrentLoadSystem":7202,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":103624,"rawCurrentLoadIrq":250,"cpus":[{"load":15.998806801232973,"loadUser":8.388850220410328,"loadSystem":7.092903781777203,"loadNice":0,"loadIdle":84.00119319876703,"loadIrq":0.517052799045441,"rawLoad":4827,"rawLoadUser":2531,"rawLoadSystem":2140,"rawLoadNice":0,"rawLoadIdle":25344,"rawLoadIrq":156},{"load":14.679327003165085,"loadUser":8.745627186406796,"loadSystem":5.9336998167582875,"loadNice":0,"loadIdle":85.32067299683492,"loadIrq":0,"rawLoad":4406,"rawLoadUser":2625,"rawLoadSystem":1781,"rawLoadNice":0,"rawLoadIdle":25609,"rawLoadIrq":0},{"load":12.546641791044777,"loadUser":6.403251599147121,"loadSystem":6.143390191897654,"loadNice":0,"loadIdle":87.45335820895522,"loadIrq":0,"rawLoad":3766,"rawLoadUser":1922,"rawLoadSystem":1844,"rawLoadNice":0,"rawLoadIdle":26250,"rawLoadIrq":0},{"load":12.245914707054602,"loadUser":7.1608874717683015,"loadSystem":4.77281785571941,"loadNice":0,"loadIdle":87.75408529294539,"loadIrq":0.3122093795668925,"rawLoad":3687,"rawLoadUser":2156,"rawLoadSystem":1437,"rawLoadNice":0,"rawLoadIdle":26421,"rawLoadIrq":94}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":5,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200409937,"rx_dropped":0,"rx_errors":0,"tx_bytes":19186771,"tx_dropped":0,"tx_errors":0,"rx_sec":1865.4347390229234,"tx_sec":445.53231303882916,"ms":29926}]', '{"total":10685313024,"free":5381840896,"used":5303472128,"active":5303472128,"available":5381840896,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":46137344,"swapfree":2503999488}'), (30, '2022-03-29 21:02:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53563281408,"available":73712869376,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":18.430314601145515,"currentLoadUser":9.662986635676932,"currentLoadSystem":8.43114468332365,"currentLoadNice":0,"currentLoadIdle":81.56968539885449,"currentLoadIrq":0.3361832821449323,"rawCurrentLoad":22203,"rawCurrentLoadUser":11641,"rawCurrentLoadSystem":10157,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":98267,"rawCurrentLoadIrq":405,"cpus":[{"load":21.087014192863776,"loadUser":10.518636423928902,"loadSystem":10.104125215545828,"loadNice":0,"loadIdle":78.91298580713622,"loadIrq":0.4642525533890436,"rawLoad":6359,"rawLoadUser":3172,"rawLoadSystem":3047,"rawLoadNice":0,"rawLoadIdle":23797,"rawLoadIrq":140},{"load":18.14823443272207,"loadUser":9.724764535560954,"loadSystem":8.32029819948747,"loadNice":0,"loadIdle":81.85176556727794,"loadIrq":0.10317169767364463,"rawLoad":5453,"rawLoadUser":2922,"rawLoadSystem":2500,"rawLoadNice":0,"rawLoadIdle":24594,"rawLoadIrq":31},{"load":17.203871869074945,"loadUser":9.510028939227622,"loadSystem":7.537504573728504,"loadNice":0,"loadIdle":82.79612813092506,"loadIrq":0.15633835611881713,"rawLoad":5172,"rawLoadUser":2859,"rawLoadSystem":2266,"rawLoadNice":0,"rawLoadIdle":24891,"rawLoadIrq":47},{"load":17.279168322076547,"loadUser":8.899483512117602,"loadSystem":7.760561515031121,"loadNice":0,"loadIdle":82.72083167792346,"loadIrq":0.6191232949278241,"rawLoad":5219,"rawLoadUser":2688,"rawLoadSystem":2344,"rawLoadNice":0,"rawLoadIdle":24985,"rawLoadIrq":187}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":6,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":25,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200441127,"rx_dropped":0,"rx_errors":0,"tx_bytes":19194453,"tx_dropped":0,"tx_errors":0,"rx_sec":1037.1774408087258,"tx_sec":255.4535780792764,"ms":30072}]', '{"total":10685313024,"free":5405622272,"used":5279690752,"active":5279690752,"available":5405622272,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":46137344,"swapfree":2503999488}'), (31, '2022-03-29 21:03:01', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53563801600,"available":73712349184,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":12.013813763834568,"currentLoadUser":6.058084380461014,"currentLoadSystem":5.760173088125156,"currentLoadNice":0,"currentLoadIdle":87.98618623616544,"currentLoadIrq":0.1955562952483981,"rawCurrentLoad":14437,"rawCurrentLoadUser":7280,"rawCurrentLoadSystem":6922,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":105733,"rawCurrentLoadIrq":235,"cpus":[{"load":13.827389632772109,"loadUser":6.419859472358478,"loadSystem":6.784435900835212,"loadNice":0,"loadIdle":86.1726103672279,"loadIrq":0.6230942595784171,"rawLoad":4172,"rawLoadUser":1937,"rawLoadSystem":2047,"rawLoadNice":0,"rawLoadIdle":26000,"rawLoadIrq":188},{"load":12.663420490928495,"loadUser":5.783084311632871,"loadSystem":6.880336179295625,"loadNice":0,"loadIdle":87.33657950907151,"loadIrq":0,"rawLoad":3797,"rawLoadUser":1734,"rawLoadSystem":2063,"rawLoadNice":0,"rawLoadIdle":26187,"rawLoadIrq":0},{"load":10.520350678355946,"loadUser":5.520184006133538,"loadSystem":4.946831561052035,"loadNice":0,"loadIdle":89.47964932164405,"loadIrq":0.053335111170372346,"rawLoad":3156,"rawLoadUser":1656,"rawLoadSystem":1484,"rawLoadNice":0,"rawLoadIdle":26843,"rawLoadIrq":16},{"load":11.03448275862069,"loadUser":6.506746626686656,"loadSystem":4.424454439446944,"loadNice":0,"loadIdle":88.96551724137932,"loadIrq":0.1032816924870898,"rawLoad":3312,"rawLoadUser":1953,"rawLoadSystem":1328,"rawLoadNice":0,"rawLoadIdle":26703,"rawLoadIrq":31}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":6,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200483990,"rx_dropped":0,"rx_errors":0,"tx_bytes":19205292,"tx_dropped":0,"tx_errors":0,"rx_sec":1428.4809704725722,"tx_sec":361.2277544491102,"ms":30006}]', '{"total":10685313024,"free":5405081600,"used":5280231424,"active":5280231424,"available":5405081600,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":46137344,"swapfree":2503999488}'), (32, '2022-03-29 21:03:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53560131584,"available":73716019200,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.842356992538742,"currentLoadUser":6.720955573485497,"currentLoadSystem":4.990808594172399,"currentLoadNice":0,"currentLoadIdle":88.15764300746126,"currentLoadIrq":0.13059282488084445,"rawCurrentLoad":14237,"rawCurrentLoadUser":8080,"rawCurrentLoadSystem":6000,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":105984,"rawCurrentLoadIrq":157,"cpus":[{"load":14.51072719434957,"loadUser":6.996717180090858,"loadSystem":7.046456875683921,"loadNice":0,"loadIdle":85.48927280565043,"loadIrq":0.4675531385747919,"rawLoad":4376,"rawLoadUser":2110,"rawLoadSystem":2125,"rawLoadNice":0,"rawLoadIdle":25781,"rawLoadIrq":141},{"load":12.593233883857218,"loadUser":7.025839104954715,"loadSystem":5.514118273841237,"loadNice":0,"loadIdle":87.40676611614278,"loadIrq":0.05327650506126798,"rawLoad":3782,"rawLoadUser":2110,"rawLoadSystem":1656,"rawLoadNice":0,"rawLoadIdle":26250,"rawLoadIrq":16},{"load":10.047974413646056,"loadUser":6.040111940298507,"loadSystem":4.007862473347548,"loadNice":0,"loadIdle":89.95202558635394,"loadIrq":0,"rawLoad":3016,"rawLoadUser":1813,"rawLoadSystem":1203,"rawLoadNice":0,"rawLoadIdle":27000,"rawLoadIrq":0},{"load":10.204557569296375,"loadUser":6.819696162046908,"loadSystem":3.384861407249467,"loadNice":0,"loadIdle":89.79544243070362,"loadIrq":0,"rawLoad":3063,"rawLoadUser":2047,"rawLoadSystem":1016,"rawLoadNice":0,"rawLoadIdle":26953,"rawLoadIrq":0}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":6,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200517495,"rx_dropped":0,"rx_errors":0,"tx_bytes":19209277,"tx_dropped":0,"tx_errors":0,"rx_sec":1116.3867786218846,"tx_sec":132.7802212448354,"ms":30012}]', '{"total":10685313024,"free":5404504064,"used":5280808960,"active":5280808960,"available":5404504064,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":46137344,"swapfree":2503999488}'), (33, '2022-03-29 21:04:00', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53560545280,"available":73715605504,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":16.092001760958226,"currentLoadUser":8.46173653739129,"currentLoadSystem":7.358645723446494,"currentLoadNice":0,"currentLoadIdle":83.90799823904177,"currentLoadIrq":0.2716195001204429,"rawCurrentLoad":19373,"rawCurrentLoadUser":10187,"rawCurrentLoadSystem":8859,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":101016,"rawCurrentLoadIrq":327,"cpus":[{"load":18.104761274087807,"loadUser":8.691477385603601,"loadSystem":8.794119594728826,"loadNice":0,"loadIdle":81.8952387259122,"loadIrq":0.6191642937553804,"rawLoad":5468,"rawLoadUser":2625,"rawLoadSystem":2656,"rawLoadNice":0,"rawLoadIdle":24734,"rawLoadIrq":187},{"load":16.58734649049822,"loadUser":8.942656504809133,"loadSystem":7.541518288015442,"loadNice":0,"loadIdle":83.41265350950178,"loadIrq":0.10317169767364463,"rawLoad":4984,"rawLoadUser":2687,"rawLoadSystem":2266,"rawLoadNice":0,"rawLoadIdle":25063,"rawLoadIrq":31},{"load":15.495723366725464,"loadUser":8.217126501813825,"loadSystem":7.175425167237994,"loadNice":0,"loadIdle":84.50427663327453,"loadIrq":0.10317169767364463,"rawLoad":4656,"rawLoadUser":2469,"rawLoadSystem":2156,"rawLoadNice":0,"rawLoadIdle":25391,"rawLoadIrq":31},{"load":14.172731199946831,"loadUser":7.995214834014555,"loadSystem":5.918319875053999,"loadNice":0,"loadIdle":85.82726880005318,"loadIrq":0.25919649087827734,"rawLoad":4265,"rawLoadUser":2406,"rawLoadSystem":1781,"rawLoadNice":0,"rawLoadIdle":25828,"rawLoadIrq":78}]}', '{"ESTABLISHED":18,"CLOSE":0,"TIME_WAIT":8,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":29,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200557084,"rx_dropped":0,"rx_errors":0,"tx_bytes":19220886,"tx_dropped":0,"tx_errors":0,"rx_sec":1324.0025417210127,"tx_sec":388.2478846861309,"ms":29901}]', '{"total":10685313024,"free":5395386368,"used":5289926656,"active":5289926656,"available":5395386368,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":46137344,"swapfree":2503999488}'), (34, '2022-03-29 21:04:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53561004032,"available":73715146752,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.452962978386708,"currentLoadUser":6.142506142506143,"currentLoadSystem":5.205513680089951,"currentLoadNice":0,"currentLoadIdle":88.54703702161329,"currentLoadIrq":0.10494315579061342,"rawCurrentLoad":13751,"rawCurrentLoadUser":7375,"rawCurrentLoadSystem":6250,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":106314,"rawCurrentLoadIrq":126,"cpus":[{"load":12.949281150159745,"loadUser":6.759185303514377,"loadSystem":5.980431309904153,"loadNice":0,"loadIdle":87.05071884984025,"loadIrq":0.20966453674121405,"rawLoad":3891,"rawLoadUser":2031,"rawLoadSystem":1797,"rawLoadNice":0,"rawLoadIdle":26157,"rawLoadIrq":63},{"load":12.036419423692637,"loadUser":6.41008537886873,"loadSystem":5.626334044823906,"loadNice":0,"loadIdle":87.96358057630736,"loadIrq":0,"rawLoad":3609,"rawLoadUser":1922,"rawLoadSystem":1687,"rawLoadNice":0,"rawLoadIdle":26375,"rawLoadIrq":0},{"load":10.215107553776887,"loadUser":5.679506419876605,"loadSystem":4.5356011339002835,"loadNice":0,"loadIdle":89.78489244622311,"loadIrq":0,"rawLoad":3063,"rawLoadUser":1703,"rawLoadSystem":1360,"rawLoadNice":0,"rawLoadIdle":26922,"rawLoadIrq":0},{"load":10.609691160809371,"loadUser":5.720846645367412,"loadSystem":4.679179978700746,"loadNice":0,"loadIdle":89.39030883919062,"loadIrq":0.20966453674121405,"rawLoad":3188,"rawLoadUser":1719,"rawLoadSystem":1406,"rawLoadNice":0,"rawLoadIdle":26860,"rawLoadIrq":63}]}', '{"ESTABLISHED":18,"CLOSE":0,"TIME_WAIT":6,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200587209,"rx_dropped":0,"rx_errors":0,"tx_bytes":19224473,"tx_dropped":0,"tx_errors":0,"rx_sec":1000.8638160736238,"tx_sec":119.17339446493239,"ms":30099}]', '{"total":10685313024,"free":5394558976,"used":5290754048,"active":5290754048,"available":5394558976,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":46137344,"swapfree":2503999488}'), (35, '2022-03-29 21:05:01', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53561528320,"available":73714622464,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":12.745187710472706,"currentLoadUser":7.209911445557726,"currentLoadSystem":5.418035172327776,"currentLoadNice":0,"currentLoadIdle":87.2548122895273,"currentLoadIrq":0.11724109258720325,"rawCurrentLoad":15328,"rawCurrentLoadUser":8671,"rawCurrentLoadSystem":6516,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":104937,"rawCurrentLoadIrq":141,"cpus":[{"load":14.462508294625081,"loadUser":7.050431320504313,"loadSystem":7.050431320504313,"loadNice":0,"loadIdle":85.53749170537492,"loadIrq":0.36164565361645656,"rawLoad":4359,"rawLoadUser":2125,"rawLoadSystem":2125,"rawLoadNice":0,"rawLoadIdle":25781,"rawLoadIrq":109},{"load":13.628194888178912,"loadUser":7.697683706070288,"loadSystem":5.877263045793398,"loadNice":0,"loadIdle":86.37180511182109,"loadIrq":0.05324813631522897,"rawLoad":4095,"rawLoadUser":2313,"rawLoadSystem":1766,"rawLoadNice":0,"rawLoadIdle":25953,"rawLoadIrq":16},{"load":11.185108720988312,"loadUser":6.450001664946223,"loadSystem":4.73510705604209,"loadNice":0,"loadIdle":88.81489127901169,"loadIrq":0,"rawLoad":3359,"rawLoadUser":1937,"rawLoadSystem":1422,"rawLoadNice":0,"rawLoadIdle":26672,"rawLoadIrq":0},{"load":11.698728616121947,"loadUser":7.64161618851095,"loadSystem":4.003860746854823,"loadNice":0,"loadIdle":88.30127138387806,"loadIrq":0.05325168075617386,"rawLoad":3515,"rawLoadUser":2296,"rawLoadSystem":1203,"rawLoadNice":0,"rawLoadIdle":26531,"rawLoadIrq":16}]}', '{"ESTABLISHED":18,"CLOSE":0,"TIME_WAIT":6,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200632566,"rx_dropped":0,"rx_errors":0,"tx_bytes":19232770,"tx_dropped":0,"tx_errors":0,"rx_sec":1513.969091091158,"tx_sec":276.9451583831236,"ms":29959}]', '{"total":10685313024,"free":5404315648,"used":5280997376,"active":5280997376,"available":5404315648,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":46137344,"swapfree":2503999488}'), (36, '2022-03-29 21:05:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53561921536,"available":73714229248,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.599624263281711,"currentLoadUser":6.455688836795598,"currentLoadSystem":5.000955967314231,"currentLoadNice":0,"currentLoadIdle":88.40037573671829,"currentLoadIrq":0.14297945917188293,"rawCurrentLoad":13954,"rawCurrentLoadUser":7766,"rawCurrentLoadSystem":6016,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":106343,"rawCurrentLoadIrq":172,"cpus":[{"load":14.036192496354236,"loadUser":7.198727296831499,"loadSystem":6.370144504838923,"loadNice":0,"loadIdle":85.96380750364577,"loadIrq":0.46732069468381277,"rawLoad":4235,"rawLoadUser":2172,"rawLoadSystem":1922,"rawLoadNice":0,"rawLoadIdle":25937,"rawLoadIrq":141},{"load":11.757850221437847,"loadUser":6.659784888948087,"loadSystem":5.09806533248976,"loadNice":0,"loadIdle":88.24214977856215,"loadIrq":0,"rawLoad":3531,"rawLoadUser":2000,"rawLoadSystem":1531,"rawLoadNice":0,"rawLoadIdle":26500,"rawLoadIrq":0},{"load":10.405913888981386,"loadUser":6.140321667610136,"loadSystem":4.26559222137125,"loadNice":0,"loadIdle":89.59408611101861,"loadIrq":0,"rawLoad":3125,"rawLoadUser":1844,"rawLoadSystem":1281,"rawLoadNice":0,"rawLoadIdle":26906,"rawLoadIrq":0},{"load":10.188603931743339,"loadUser":5.821109004424043,"loadSystem":4.264378139240927,"loadNice":0,"loadIdle":89.81139606825667,"loadIrq":0.10311678807836877,"rawLoad":3063,"rawLoadUser":1750,"rawLoadSystem":1282,"rawLoadNice":0,"rawLoadIdle":27000,"rawLoadIrq":31}]}', '{"ESTABLISHED":18,"CLOSE":0,"TIME_WAIT":6,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200662628,"rx_dropped":0,"rx_errors":0,"tx_bytes":19236390,"tx_dropped":0,"tx_errors":0,"rx_sec":1000.8656279131708,"tx_sec":120.52204021840457,"ms":30036}]', '{"total":10685313024,"free":5406576640,"used":5278736384,"active":5278736384,"available":5406576640,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":46137344,"swapfree":2503999488}'), (37, '2022-03-29 21:06:01', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53562445824,"available":73713704960,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.463382134945618,"currentLoadUser":6.818901047652359,"currentLoadSystem":4.527890204700278,"currentLoadNice":0,"currentLoadIdle":88.53661786505438,"currentLoadIrq":0.11659088259298124,"rawCurrentLoad":13765,"rawCurrentLoadUser":8188,"rawCurrentLoadSystem":5437,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":106313,"rawCurrentLoadIrq":140,"cpus":[{"load":13.192366513730965,"loadUser":7.842941684952456,"loadSystem":5.04022873861294,"loadNice":0,"loadIdle":86.80763348626903,"loadIrq":0.30919609016556954,"rawLoad":3968,"rawLoadUser":2359,"rawLoadSystem":1516,"rawLoadNice":0,"rawLoadIdle":26110,"rawLoadIrq":93},{"load":12.036419423692637,"loadUser":6.513473852721452,"loadSystem":5.522945570971185,"loadNice":0,"loadIdle":87.96358057630736,"loadIrq":0,"rawLoad":3609,"rawLoadUser":1953,"rawLoadSystem":1656,"rawLoadNice":0,"rawLoadIdle":26375,"rawLoadIrq":0},{"load":9.798232449558112,"loadUser":6.306486576621643,"loadSystem":3.4917458729364683,"loadNice":0,"loadIdle":90.20176755044189,"loadIrq":0,"rawLoad":2938,"rawLoadUser":1891,"rawLoadSystem":1047,"rawLoadNice":0,"rawLoadIdle":27047,"rawLoadIrq":0},{"load":10.822150444540641,"loadUser":6.609836502280976,"loadSystem":4.055808997369384,"loadNice":0,"loadIdle":89.17784955545936,"loadIrq":0.15650494489028002,"rawLoad":3250,"rawLoadUser":1985,"rawLoadSystem":1218,"rawLoadNice":0,"rawLoadIdle":26781,"rawLoadIrq":47}]}', '{"ESTABLISHED":18,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200700991,"rx_dropped":0,"rx_errors":0,"tx_bytes":19243915,"tx_dropped":0,"tx_errors":0,"rx_sec":1275.408092024336,"tx_sec":250.17454037700722,"ms":30079}]', '{"total":10685313024,"free":5418418176,"used":5266894848,"active":5266894848,"available":5418418176,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":46137344,"swapfree":2503999488}'), (38, '2022-03-29 21:06:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53562839040,"available":73713311744,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":12.558294193441125,"currentLoadUser":6.3510536597531075,"currentLoadSystem":6.013550022860468,"currentLoadNice":0,"currentLoadIdle":87.44170580655887,"currentLoadIrq":0.19369051082754893,"rawCurrentLoad":15107,"rawCurrentLoadUser":7640,"rawCurrentLoadSystem":7234,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":105188,"rawCurrentLoadIrq":233,"cpus":[{"load":14.625726141078838,"loadUser":6.639004149377594,"loadSystem":7.621576763485477,"loadNice":0,"loadIdle":85.37427385892116,"loadIrq":0.36514522821576767,"rawLoad":4406,"rawLoadUser":2000,"rawLoadSystem":2296,"rawLoadNice":0,"rawLoadIdle":25719,"rawLoadIrq":110},{"load":12.330591721887384,"loadUser":6.243548333388831,"loadSystem":6.037095001831441,"loadNice":0,"loadIdle":87.66940827811261,"loadIrq":0.04994838666711065,"rawLoad":3703,"rawLoadUser":1875,"rawLoadSystem":1813,"rawLoadNice":0,"rawLoadIdle":26328,"rawLoadIrq":15},{"load":10.869130869130869,"loadUser":5.980685980685981,"loadSystem":4.838494838494838,"loadNice":0,"loadIdle":89.13086913086913,"loadIrq":0.04995004995004995,"rawLoad":3264,"rawLoadUser":1796,"rawLoadSystem":1453,"rawLoadNice":0,"rawLoadIdle":26766,"rawLoadIrq":15},{"load":12.401607492776247,"loadUser":6.539572885183833,"loadSystem":5.553156863396326,"loadNice":0,"loadIdle":87.59839250722375,"loadIrq":0.30887774419608754,"rawLoad":3734,"rawLoadUser":1969,"rawLoadSystem":1672,"rawLoadNice":0,"rawLoadIdle":26375,"rawLoadIrq":93}]}', '{"ESTABLISHED":18,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200731993,"rx_dropped":0,"rx_errors":0,"tx_bytes":19247627,"tx_dropped":0,"tx_errors":0,"rx_sec":1035.6784926839046,"tx_sec":124.00614685641744,"ms":29934}]', '{"total":10685313024,"free":5446500352,"used":5238812672,"active":5238812672,"available":5446500352,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":47185920,"swapfree":2502950912}'), (39, '2022-03-29 21:07:01', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53563363328,"available":73712787456,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":13.327169902467869,"currentLoadUser":7.15790876456527,"currentLoadSystem":6.065149130040062,"currentLoadNice":0,"currentLoadIdle":86.67283009753213,"currentLoadIrq":0.10411200786253882,"rawCurrentLoad":16001,"rawCurrentLoadUser":8594,"rawCurrentLoadSystem":7282,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":104062,"rawCurrentLoadIrq":125,"cpus":[{"load":15.132958365227811,"loadUser":7.747861683362732,"loadSystem":7.1787532865177885,"loadNice":0,"loadIdle":84.86704163477219,"loadIrq":0.20634339534728927,"rawLoad":4547,"rawLoadUser":2328,"rawLoadSystem":2157,"rawLoadNice":0,"rawLoadIdle":25500,"rawLoadIrq":62},{"load":13.236618309154577,"loadUser":7.660496915124229,"loadSystem":5.5761213940303485,"loadNice":0,"loadIdle":86.76338169084542,"loadIrq":0,"rawLoad":3969,"rawLoadUser":2297,"rawLoadSystem":1672,"rawLoadNice":0,"rawLoadIdle":26016,"rawLoadIrq":0},{"load":11.883004268943436,"loadUser":6.7235859124866595,"loadSystem":5.159418356456777,"loadNice":0,"loadIdle":88.11699573105656,"loadIrq":0,"rawLoad":3563,"rawLoadUser":2016,"rawLoadSystem":1547,"rawLoadNice":0,"rawLoadIdle":26421,"rawLoadIrq":0},{"load":13.052883815355942,"loadUser":6.499816953439612,"loadSystem":6.343395347289246,"loadNice":0,"loadIdle":86.94711618464406,"loadIrq":0.20967151462708425,"rawLoad":3922,"rawLoadUser":1953,"rawLoadSystem":1906,"rawLoadNice":0,"rawLoadIdle":26125,"rawLoadIrq":63}]}', '{"ESTABLISHED":19,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200790670,"rx_dropped":0,"rx_errors":0,"tx_bytes":19267660,"tx_dropped":0,"tx_errors":0,"rx_sec":1953.4256608296157,"tx_sec":666.9218989280245,"ms":30038}]', '{"total":10685313024,"free":5513138176,"used":5172174848,"active":5172174848,"available":5513138176,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":62914560,"swapfree":2487222272}'), (40, '2022-03-29 21:07:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53563891712,"available":73712259072,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.570749384932508,"currentLoadUser":6.284493649843739,"currentLoadSystem":5.129995345435201,"currentLoadNice":0,"currentLoadIdle":88.42925061506749,"currentLoadIrq":0.1562603896535674,"rawCurrentLoad":13921,"rawCurrentLoadUser":7561,"rawCurrentLoadSystem":6172,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":106391,"rawCurrentLoadIrq":188,"cpus":[{"load":12.623844670523306,"loadUser":6.546312919742005,"loadSystem":5.921271361127735,"loadNice":0,"loadIdle":87.37615532947669,"loadIrq":0.1562603896535674,"rawLoad":3797,"rawLoadUser":1969,"rawLoadSystem":1781,"rawLoadNice":0,"rawLoadIdle":26281,"rawLoadIrq":47},{"load":12.108309493712992,"loadUser":6.962277958884972,"loadSystem":5.039584857960215,"loadNice":0,"loadIdle":87.891690506287,"loadIrq":0.10644667686780653,"rawLoad":3640,"rawLoadUser":2093,"rawLoadSystem":1515,"rawLoadNice":0,"rawLoadIdle":26422,"rawLoadIrq":32},{"load":10.249067661161428,"loadUser":5.514118273841237,"loadSystem":4.734949387320192,"loadNice":0,"loadIdle":89.75093233883857,"loadIrq":0,"rawLoad":3078,"rawLoadUser":1656,"rawLoadSystem":1422,"rawLoadNice":0,"rawLoadIdle":26954,"rawLoadIrq":0},{"load":11.300597213005972,"loadUser":6.114797611147976,"loadSystem":4.824153948241539,"loadNice":0,"loadIdle":88.69940278699403,"loadIrq":0.36164565361645656,"rawLoad":3406,"rawLoadUser":1843,"rawLoadSystem":1454,"rawLoadNice":0,"rawLoadIdle":26734,"rawLoadIrq":109}]}', '{"ESTABLISHED":20,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200821414,"rx_dropped":0,"rx_errors":0,"tx_bytes":19273110,"tx_dropped":0,"tx_errors":0,"rx_sec":1024.731684554363,"tx_sec":181.65455636290915,"ms":30002}]', '{"total":10685313024,"free":5512777728,"used":5172535296,"active":5172535296,"available":5512777728,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":62914560,"swapfree":2487222272}'), (41, '2022-03-29 21:08:01', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53560385536,"available":73715765248,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":12.999560461432564,"currentLoadUser":6.870070740829816,"currentLoadSystem":5.960308838042478,"currentLoadNice":0,"currentLoadIdle":87.00043953856743,"currentLoadIrq":0.16918088256027067,"rawCurrentLoad":15675,"rawCurrentLoadUser":8284,"rawCurrentLoadSystem":7187,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":104906,"rawCurrentLoadIrq":204,"cpus":[{"load":15.426659599840997,"loadUser":7.920365708228435,"loadSystem":7.194911885517424,"loadNice":0,"loadIdle":84.573340400159,"loadIrq":0.3113820060951371,"rawLoad":4657,"rawLoadUser":2391,"rawLoadSystem":2172,"rawLoadNice":0,"rawLoadIdle":25531,"rawLoadIrq":94},{"load":13.919255690314007,"loadUser":6.908124273135072,"loadSystem":7.011131417178934,"loadNice":0,"loadIdle":86.080744309686,"loadIrq":0,"rawLoad":4189,"rawLoadUser":2079,"rawLoadSystem":2110,"rawLoadNice":0,"rawLoadIdle":25906,"rawLoadIrq":0},{"load":11.197743861977438,"loadUser":5.912408759124087,"loadSystem":5.129396151293961,"loadNice":0,"loadIdle":88.80225613802256,"loadIrq":0.1559389515593895,"rawLoad":3375,"rawLoadUser":1782,"rawLoadSystem":1546,"rawLoadNice":0,"rawLoadIdle":26765,"rawLoadIrq":47},{"load":11.453014125605145,"loadUser":6.737847337356588,"loadSystem":4.506266993832482,"loadNice":0,"loadIdle":88.54698587439486,"loadIrq":0.20889979441607534,"rawLoad":3454,"rawLoadUser":2032,"rawLoadSystem":1359,"rawLoadNice":0,"rawLoadIdle":26704,"rawLoadIrq":63}]}', '{"ESTABLISHED":20,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200850741,"rx_dropped":0,"rx_errors":0,"tx_bytes":19276806,"tx_dropped":0,"tx_errors":0,"rx_sec":974.8695276401955,"tx_sec":122.86008709237777,"ms":30083}]', '{"total":10685313024,"free":5452210176,"used":5233045504,"active":5233045504,"available":5452267520,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":62914560,"swapfree":2487222272}'), (42, '2022-03-29 21:08:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53560844288,"available":73715306496,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":26.429376173586483,"currentLoadUser":6.6488629250991025,"currentLoadSystem":19.66367619445024,"currentLoadNice":0,"currentLoadIdle":73.57062382641352,"currentLoadIrq":0.1168370540371375,"rawCurrentLoad":31669,"rawCurrentLoadUser":7967,"rawCurrentLoadSystem":23562,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":88156,"rawCurrentLoadIrq":140,"cpus":[{"load":29.68432281076036,"loadUser":6.873562452081735,"loadSystem":22.550751691723057,"loadNice":0,"loadIdle":70.31567718923965,"loadIrq":0.2600086669555652,"rawLoad":8905,"rawLoadUser":2062,"rawLoadSystem":6765,"rawLoadNice":0,"rawLoadIdle":21094,"rawLoadIrq":78},{"load":33.418000735269544,"loadUser":7.15216737408509,"loadSystem":26.265833361184455,"loadNice":0,"loadIdle":66.58199926473046,"loadIrq":0,"rawLoad":9999,"rawLoadUser":2140,"rawLoadSystem":7859,"rawLoadNice":0,"rawLoadIdle":19922,"rawLoadIrq":0},{"load":22.612124857964037,"loadUser":7.205400708508789,"loadSystem":15.40672414945525,"loadNice":0,"loadIdle":77.38787514203595,"loadIrq":0,"rawLoad":6766,"rawLoadUser":2156,"rawLoadSystem":4610,"rawLoadNice":0,"rawLoadIdle":23156,"rawLoadIrq":0},{"load":20.00800453590368,"loadUser":5.366374278757963,"loadSystem":14.434846412967348,"loadNice":0,"loadIdle":79.99199546409632,"loadIrq":0.20678384417836776,"rawLoad":5999,"rawLoadUser":1609,"rawLoadSystem":4328,"rawLoadNice":0,"rawLoadIdle":23984,"rawLoadIrq":62}]}', '{"ESTABLISHED":20,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200882069,"rx_dropped":0,"rx_errors":0,"tx_bytes":19280226,"tx_dropped":0,"tx_errors":0,"rx_sec":1046.4991982896847,"tx_sec":114.24371993586317,"ms":29936}]', '{"total":10685313024,"free":5802303488,"used":4883009536,"active":4883009536,"available":5802303488,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":62914560,"swapfree":2487222272}'), (43, '2022-03-29 21:09:01', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53561372672,"available":73714778112,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":12.766665557293575,"currentLoadUser":6.980730189369987,"currentLoadSystem":5.681931640429993,"currentLoadNice":0,"currentLoadIdle":87.23333444270642,"currentLoadIrq":0.10400372749359338,"rawCurrentLoad":15344,"rawCurrentLoadUser":8390,"rawCurrentLoadSystem":6829,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":104844,"rawCurrentLoadIrq":125,"cpus":[{"load":13.884913635304688,"loadUser":7.019003561087629,"loadSystem":6.762738376543416,"loadNice":0,"loadIdle":86.11508636469532,"loadIrq":0.10317169767364463,"rawLoad":4172,"rawLoadUser":2109,"rawLoadSystem":2032,"rawLoadNice":0,"rawLoadIdle":25875,"rawLoadIrq":31},{"load":13.839032999234124,"loadUser":7.232526389397623,"loadSystem":6.556558223169391,"loadNice":0,"loadIdle":86.16096700076588,"loadIrq":0.04994838666711065,"rawLoad":4156,"rawLoadUser":2172,"rawLoadSystem":1969,"rawLoadNice":0,"rawLoadIdle":25875,"rawLoadIrq":15},{"load":11.131830441876728,"loadUser":6.866238220505477,"loadSystem":4.212313942259665,"loadNice":0,"loadIdle":88.86816955812328,"loadIrq":0.0532782791115847,"rawLoad":3343,"rawLoadUser":2062,"rawLoadSystem":1265,"rawLoadNice":0,"rawLoadIdle":26688,"rawLoadIrq":16},{"load":12.21117723328568,"loadUser":6.805412413976529,"loadSystem":5.196316366900495,"loadNice":0,"loadIdle":87.78882276671432,"loadIrq":0.2094484524086572,"rawLoad":3673,"rawLoadUser":2047,"rawLoadSystem":1563,"rawLoadNice":0,"rawLoadIdle":26406,"rawLoadIrq":63}]}', '{"ESTABLISHED":19,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200913021,"rx_dropped":0,"rx_errors":0,"tx_bytes":19285028,"tx_dropped":0,"tx_errors":0,"rx_sec":1032.2150336823852,"tx_sec":160.1413993196825,"ms":29986}]', '{"total":10685313024,"free":5791481856,"used":4893831168,"active":4893831168,"available":5791481856,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":62914560,"swapfree":2487222272}'), (44, '2022-03-29 21:09:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53561909248,"available":73714241536,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":15.031705822944089,"currentLoadUser":7.399129124654381,"currentLoadSystem":6.998460239407938,"currentLoadNice":0,"currentLoadIdle":84.96829417705591,"currentLoadIrq":0.6341164588817696,"rawCurrentLoad":18158,"rawCurrentLoadUser":8938,"rawCurrentLoadSystem":8454,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":102640,"rawCurrentLoadIrq":766,"cpus":[{"load":19.514812526421903,"loadUser":7.216025495105851,"loadSystem":9.908620857858281,"loadNice":0,"loadIdle":80.4851874735781,"loadIrq":2.3901661734577737,"rawLoad":6001,"rawLoadUser":2219,"rawLoadSystem":3047,"rawLoadNice":0,"rawLoadIdle":24750,"rawLoadIrq":735},{"load":15.51224387806097,"loadUser":8.015992003998,"loadSystem":7.496251874062969,"loadNice":0,"loadIdle":84.48775612193903,"loadIrq":0,"rawLoad":4656,"rawLoadUser":2406,"rawLoadSystem":2250,"rawLoadNice":0,"rawLoadIdle":25359,"rawLoadIrq":0},{"load":12.242925235825473,"loadUser":6.303123229225692,"loadSystem":5.93980200659978,"loadNice":0,"loadIdle":87.75707476417452,"loadIrq":0,"rawLoad":3673,"rawLoadUser":1891,"rawLoadSystem":1782,"rawLoadNice":0,"rawLoadIdle":26328,"rawLoadIrq":0},{"load":12.746828277446639,"loadUser":8.064999500516134,"loadSystem":4.57860211115181,"loadNice":0,"loadIdle":87.25317172255336,"loadIrq":0.10322666577869534,"rawLoad":3828,"rawLoadUser":2422,"rawLoadSystem":1375,"rawLoadNice":0,"rawLoadIdle":26203,"rawLoadIrq":31}]}', '{"ESTABLISHED":18,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":200970872,"rx_dropped":0,"rx_errors":0,"tx_bytes":19288891,"tx_dropped":0,"tx_errors":0,"rx_sec":1923.9416009844026,"tx_sec":128.47118294589112,"ms":30069}]', '{"total":10685313024,"free":5744062464,"used":4941250560,"active":4941250560,"available":5744062464,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":62914560,"swapfree":2487222272}'), (45, '2022-03-29 21:10:01', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53562400768,"available":73713750016,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":12.680460381877454,"currentLoadUser":6.783480806333578,"currentLoadSystem":5.664127469895549,"currentLoadNice":0,"currentLoadIdle":87.31953961812255,"currentLoadIrq":0.23285210564832678,"rawCurrentLoad":15248,"rawCurrentLoadUser":8157,"rawCurrentLoadSystem":6811,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":105000,"rawCurrentLoadIrq":280,"cpus":[{"load":14.2463936328967,"loadUser":7.255844801857071,"loadSystem":6.423478693417343,"loadNice":0,"loadIdle":85.7536063671033,"loadIrq":0.5670701376222849,"rawLoad":4296,"rawLoadUser":2188,"rawLoadSystem":1937,"rawLoadNice":0,"rawLoadIdle":25859,"rawLoadIrq":171},{"load":13.236618309154577,"loadUser":6.776721694180424,"loadSystem":6.459896614974153,"loadNice":0,"loadIdle":86.76338169084542,"loadIrq":0,"rawLoad":3969,"rawLoadUser":2032,"rawLoadSystem":1937,"rawLoadNice":0,"rawLoadIdle":26016,"rawLoadIrq":0},{"load":10.416666666666668,"loadUser":5.26,"loadSystem":5.156666666666666,"loadNice":0,"loadIdle":89.58333333333334,"loadIrq":0,"rawLoad":3125,"rawLoadUser":1578,"rawLoadSystem":1547,"rawLoadNice":0,"rawLoadIdle":26875,"rawLoadIrq":0},{"load":12.813870067756078,"loadUser":7.835126876577654,"loadSystem":4.6167131659359635,"loadNice":0,"loadIdle":87.18612993224392,"loadIrq":0.3620300252424605,"rawLoad":3858,"rawLoadUser":2359,"rawLoadSystem":1390,"rawLoadNice":0,"rawLoadIdle":26250,"rawLoadIrq":109}]}', '{"ESTABLISHED":18,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":201012629,"rx_dropped":0,"rx_errors":0,"tx_bytes":19292657,"tx_dropped":0,"tx_errors":0,"rx_sec":1394.8757349011223,"tx_sec":125.80171031533939,"ms":29936}]', '{"total":10685313024,"free":5766447104,"used":4918865920,"active":4918865920,"available":5766447104,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":62914560,"swapfree":2487222272}'), (46, '2022-03-29 21:10:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53563019264,"available":73713131520,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.73837809057935,"currentLoadUser":6.330072210575355,"currentLoadSystem":5.290173371934379,"currentLoadNice":0,"currentLoadIdle":88.26162190942065,"currentLoadIrq":0.11813250806961498,"rawCurrentLoad":14110,"rawCurrentLoadUser":7609,"rawCurrentLoadSystem":6359,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":106094,"rawCurrentLoadIrq":142,"cpus":[{"load":12.812852685388037,"loadUser":6.379871207594769,"loadSystem":6.0678483701785835,"loadNice":0,"loadIdle":87.18714731461196,"loadIrq":0.365133107614685,"rawLoad":3860,"rawLoadUser":1922,"rawLoadSystem":1828,"rawLoadNice":0,"rawLoadIdle":26266,"rawLoadIrq":110},{"load":12.753623188405797,"loadUser":6.296851574212893,"loadSystem":6.4567716141929035,"loadNice":0,"loadIdle":87.2463768115942,"loadIrq":0,"rawLoad":3828,"rawLoadUser":1890,"rawLoadSystem":1938,"rawLoadNice":0,"rawLoadIdle":26187,"rawLoadIrq":0},{"load":10.925377110319337,"loadUser":6.659784888948087,"loadSystem":4.212313942259665,"loadNice":0,"loadIdle":89.07462288968067,"loadIrq":0.0532782791115847,"rawLoad":3281,"rawLoadUser":2000,"rawLoadSystem":1265,"rawLoadNice":0,"rawLoadIdle":26750,"rawLoadIrq":16},{"load":10.45884389984017,"loadUser":5.98361747469366,"loadSystem":4.421949920085242,"loadNice":0,"loadIdle":89.54115610015982,"loadIrq":0.05327650506126798,"rawLoad":3141,"rawLoadUser":1797,"rawLoadSystem":1328,"rawLoadNice":0,"rawLoadIdle":26891,"rawLoadIrq":16}]}', '{"ESTABLISHED":18,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":201042282,"rx_dropped":0,"rx_errors":0,"tx_bytes":19296274,"tx_dropped":0,"tx_errors":0,"rx_sec":986.9857542271335,"tx_sec":120.39009452802556,"ms":30044}]', '{"total":10685313024,"free":5771538432,"used":4913774592,"active":4913774592,"available":5771538432,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":62914560,"swapfree":2487222272}'), (47, '2022-03-29 21:11:01', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53563428864,"available":73712721920,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.884751905700059,"currentLoadUser":6.143960364763876,"currentLoadSystem":5.49390259108706,"currentLoadNice":0,"currentLoadIdle":88.11524809429994,"currentLoadIrq":0.2468889498491234,"rawCurrentLoad":14297,"rawCurrentLoadUser":7391,"rawCurrentLoadSystem":6609,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":106000,"rawCurrentLoadIrq":297,"cpus":[{"load":12.829975397300352,"loadUser":6.6493782831305275,"loadSystem":5.921271361127735,"loadNice":0,"loadIdle":87.17002460269964,"loadIrq":0.2593257530420906,"rawLoad":3859,"rawLoadUser":2000,"rawLoadSystem":1781,"rawLoadNice":0,"rawLoadIdle":26219,"rawLoadIrq":78},{"load":12.13019722814499,"loadUser":6.246668443496802,"loadSystem":5.830223880597015,"loadNice":0,"loadIdle":87.869802771855,"loadIrq":0.053304904051172705,"rawLoad":3641,"rawLoadUser":1875,"rawLoadSystem":1750,"rawLoadNice":0,"rawLoadIdle":26375,"rawLoadIrq":16},{"load":10.26,"loadUser":5.833333333333333,"loadSystem":4.426666666666667,"loadNice":0,"loadIdle":89.74,"loadIrq":0,"rawLoad":3078,"rawLoadUser":1750,"rawLoadSystem":1328,"rawLoadNice":0,"rawLoadIdle":26922,"rawLoadIrq":0},{"load":12.313346356322219,"loadUser":5.847101281329669,"loadSystem":5.7941264112836475,"loadNice":0,"loadIdle":87.68665364367779,"loadIrq":0.672118663708903,"rawLoad":3719,"rawLoadUser":1766,"rawLoadSystem":1750,"rawLoadNice":0,"rawLoadIdle":26484,"rawLoadIrq":203}]}', '{"ESTABLISHED":18,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":201093306,"rx_dropped":0,"rx_errors":0,"tx_bytes":19301167,"tx_dropped":0,"tx_errors":0,"rx_sec":1705.9177532597794,"tx_sec":163.59077231695085,"ms":29910}]', '{"total":10685313024,"free":5772144640,"used":4913168384,"active":4913168384,"available":5772144640,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":62914560,"swapfree":2487222272}'), (48, '2022-03-29 21:11:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53563822080,"available":73712328704,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.76260189652304,"currentLoadUser":6.5504907669273,"currentLoadSystem":5.030776909000166,"currentLoadNice":0,"currentLoadIdle":88.23739810347696,"currentLoadIrq":0.18133422059557477,"rawCurrentLoad":14141,"rawCurrentLoadUser":7875,"rawCurrentLoadSystem":6048,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":106079,"rawCurrentLoadIrq":218,"cpus":[{"load":13.108502453906354,"loadUser":6.423265685104125,"loadSystem":6.167926780740151,"loadNice":0,"loadIdle":86.89149754609365,"loadIrq":0.5173099880620772,"rawLoad":3953,"rawLoadUser":1937,"rawLoadSystem":1860,"rawLoadNice":0,"rawLoadIdle":26203,"rawLoadIrq":156},{"load":12.966666666666669,"loadUser":7.343333333333334,"loadSystem":5.623333333333334,"loadNice":0,"loadIdle":87.03333333333333,"loadIrq":0,"rawLoad":3890,"rawLoadUser":2203,"rawLoadSystem":1687,"rawLoadNice":0,"rawLoadIdle":26110,"rawLoadIrq":0},{"load":10.307835820895523,"loadUser":6.040111940298507,"loadSystem":4.21775053304904,"loadNice":0,"loadIdle":89.69216417910447,"loadIrq":0.04997334754797442,"rawLoad":3094,"rawLoadUser":1813,"rawLoadSystem":1266,"rawLoadNice":0,"rawLoadIdle":26922,"rawLoadIrq":15},{"load":10.6629392971246,"loadUser":6.39643237486688,"loadSystem":4.110090521831736,"loadNice":0,"loadIdle":89.3370607028754,"loadIrq":0.1564164004259851,"rawLoad":3204,"rawLoadUser":1922,"rawLoadSystem":1235,"rawLoadNice":0,"rawLoadIdle":26844,"rawLoadIrq":47}]}', '{"ESTABLISHED":18,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":201144508,"rx_dropped":0,"rx_errors":0,"tx_bytes":19304849,"tx_dropped":0,"tx_errors":0,"rx_sec":1705.4826460595564,"tx_sec":122.64339484378124,"ms":30022}]', '{"total":10685313024,"free":5771427840,"used":4913885184,"active":4913885184,"available":5771427840,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":62914560,"swapfree":2487222272}'), (49, '2022-03-29 21:12:05', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53564194816,"available":73711955968,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":12.137266806949839,"currentLoadUser":6.899935957682167,"currentLoadSystem":5.041877022115393,"currentLoadNice":0,"currentLoadIdle":87.86273319305016,"currentLoadIrq":0.19545382715227935,"rawCurrentLoad":14593,"rawCurrentLoadUser":8296,"rawCurrentLoadSystem":6062,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":105640,"rawCurrentLoadIrq":235,"cpus":[{"load":13.824533492426502,"loadUser":6.575850982731763,"loadSystem":6.678598654336946,"loadNice":0,"loadIdle":86.17546650757349,"loadIrq":0.5700838553577939,"rawLoad":4171,"rawLoadUser":1984,"rawLoadSystem":2015,"rawLoadNice":0,"rawLoadIdle":26000,"rawLoadIrq":172},{"load":12.763333333333332,"loadUser":7.553333333333333,"loadSystem":5.21,"loadNice":0,"loadIdle":87.23666666666666,"loadIrq":0,"rawLoad":3829,"rawLoadUser":2266,"rawLoadSystem":1563,"rawLoadNice":0,"rawLoadIdle":26171,"rawLoadIrq":0},{"load":10.833333333333334,"loadUser":6.666666666666667,"loadSystem":4.166666666666666,"loadNice":0,"loadIdle":89.16666666666667,"loadIrq":0,"rawLoad":3250,"rawLoadUser":2000,"rawLoadSystem":1250,"rawLoadNice":0,"rawLoadIdle":26750,"rawLoadIrq":0},{"load":11.120351274033665,"loadUser":6.805934402235381,"loadSystem":4.10484997671479,"loadNice":0,"loadIdle":88.87964872596633,"loadIrq":0.2095668950834941,"rawLoad":3343,"rawLoadUser":2046,"rawLoadSystem":1234,"rawLoadNice":0,"rawLoadIdle":26719,"rawLoadIrq":63}]}', '{"ESTABLISHED":19,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":22,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":201216259,"rx_dropped":0,"rx_errors":0,"tx_bytes":19312879,"tx_dropped":0,"tx_errors":0,"rx_sec":2020.6995606623857,"tx_sec":226.14622057001236,"ms":35508}]', '{"total":10685313024,"free":5778186240,"used":4907126784,"active":4907126784,"available":5778186240,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":62914560,"swapfree":2487222272}'), (50, '2022-03-29 21:12:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53560676352,"available":73715474432,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":13.469540301482496,"currentLoadUser":6.903367800340518,"currentLoadSystem":6.385116897138824,"currentLoadNice":0,"currentLoadIdle":86.5304596985175,"currentLoadIrq":0.181055604003156,"rawCurrentLoad":16218,"rawCurrentLoadUser":8312,"rawCurrentLoadSystem":7688,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":104187,"rawCurrentLoadIrq":218,"cpus":[{"load":14.442824963561678,"loadUser":7.039220882469856,"loadSystem":6.936531071949119,"loadNice":0,"loadIdle":85.55717503643831,"loadIrq":0.4670730091427057,"rawLoad":4360,"rawLoadUser":2125,"rawLoadSystem":2094,"rawLoadNice":0,"rawLoadIdle":25828,"rawLoadIrq":141},{"load":15.694231920697227,"loadUser":8.159803073647796,"loadSystem":7.484531967267646,"loadNice":0,"loadIdle":84.30576807930278,"loadIrq":0.049896879781784316,"rawLoad":4718,"rawLoadUser":2453,"rawLoadSystem":2250,"rawLoadNice":0,"rawLoadIdle":25344,"rawLoadIrq":15},{"load":11.855155428343208,"loadUser":6.393529920788126,"loadSystem":5.461625507555082,"loadNice":0,"loadIdle":88.14484457165679,"loadIrq":0,"rawLoad":3562,"rawLoadUser":1921,"rawLoadSystem":1641,"rawLoadNice":0,"rawLoadIdle":26484,"rawLoadIrq":0},{"load":11.88348998638281,"loadUser":6.021455378790395,"loadSystem":5.656116111461689,"loadNice":0,"loadIdle":88.11651001361719,"loadIrq":0.20591849613072502,"rawLoad":3578,"rawLoadUser":1813,"rawLoadSystem":1703,"rawLoadNice":0,"rawLoadIdle":26531,"rawLoadIrq":62}]}', '{"ESTABLISHED":19,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":22,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":201256177,"rx_dropped":0,"rx_errors":0,"tx_bytes":19316077,"tx_dropped":0,"tx_errors":0,"rx_sec":1627.844384634206,"tx_sec":130.41350623929534,"ms":24522}]', '{"total":10685313024,"free":5741981696,"used":4943331328,"active":4943331328,"available":5741981696,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":62914560,"swapfree":2487222272}'), (51, '2022-03-29 21:13:01', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53561475072,"available":73714675712,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":20.777373992731867,"currentLoadUser":12.357485592635404,"currentLoadSystem":8.133820092972199,"currentLoadNice":0,"currentLoadIdle":79.22262600726813,"currentLoadIrq":0.28606830712426506,"rawCurrentLoad":24985,"rawCurrentLoadUser":14860,"rawCurrentLoadSystem":9781,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":95266,"rawCurrentLoadIrq":344,"cpus":[{"load":21.91862585800975,"loadUser":11.917631064097888,"loadSystem":9.43064628444474,"loadNice":0,"loadIdle":78.08137414199025,"loadIrq":0.5703485094671221,"rawLoad":6610,"rawLoadUser":3594,"rawLoadSystem":2844,"rawLoadNice":0,"rawLoadIdle":23547,"rawLoadIrq":172},{"load":22.34592180260658,"loadUser":13.646211792940235,"loadSystem":8.646378454051531,"loadNice":0,"loadIdle":77.65407819739342,"loadIrq":0.05333155561481284,"rawLoad":6704,"rawLoadUser":4094,"rawLoadSystem":2594,"rawLoadNice":0,"rawLoadIdle":23297,"rawLoadIrq":16},{"load":19.47731591053035,"loadUser":11.823727457581919,"loadSystem":7.5502516750558355,"loadNice":0,"loadIdle":80.52268408946965,"loadIrq":0.10333677789259642,"rawLoad":5843,"rawLoadUser":3547,"rawLoadSystem":2265,"rawLoadNice":0,"rawLoadIdle":24156,"rawLoadIrq":31},{"load":19.36598657539709,"loadUser":12.045590483152788,"loadSystem":6.905030903170068,"loadNice":0,"loadIdle":80.63401342460291,"loadIrq":0.41536518907423403,"rawLoad":5828,"rawLoadUser":3625,"rawLoadSystem":2078,"rawLoadNice":0,"rawLoadIdle":24266,"rawLoadIrq":125}]}', '{"ESTABLISHED":28,"CLOSE":0,"TIME_WAIT":5,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":201636367,"rx_dropped":0,"rx_errors":0,"tx_bytes":19371541,"tx_dropped":0,"tx_errors":0,"rx_sec":12606.187207798668,"tx_sec":1839.0530189993037,"ms":30159}]', '{"total":10685313024,"free":5518303232,"used":5167009792,"active":5167009792,"available":5518303232,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (52, '2022-03-29 21:13:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53562327040,"available":73713823744,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":13.577570093457943,"currentLoadUser":7.774870197300104,"currentLoadSystem":5.5684319833852545,"currentLoadNice":0,"currentLoadIdle":86.42242990654205,"currentLoadIrq":0.23426791277258566,"rawCurrentLoad":16344,"rawCurrentLoadUser":9359,"rawCurrentLoadSystem":6703,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":104031,"rawCurrentLoadIrq":282,"cpus":[{"load":15.276258658977163,"loadUser":8.18335487719996,"loadSystem":6.575850982731763,"loadNice":0,"loadIdle":84.72374134102284,"loadIrq":0.517052799045441,"rawLoad":4609,"rawLoadUser":2469,"rawLoadSystem":1984,"rawLoadNice":0,"rawLoadIdle":25562,"rawLoadIrq":156},{"load":14.598224675022442,"loadUser":8.414508461052561,"loadSystem":5.974267761561222,"loadNice":0,"loadIdle":85.40177532497756,"loadIrq":0.2094484524086572,"rawLoad":4391,"rawLoadUser":2531,"rawLoadSystem":1797,"rawLoadNice":0,"rawLoadIdle":25688,"rawLoadIrq":63},{"load":11.96723494938732,"loadUser":7.075785828449653,"loadSystem":4.891449120937667,"loadNice":0,"loadIdle":88.03276505061268,"loadIrq":0,"rawLoad":3594,"rawLoadUser":2125,"rawLoadSystem":1469,"rawLoadNice":0,"rawLoadIdle":26438,"rawLoadIrq":0},{"load":12.461369753763334,"loadUser":7.42365334130861,"loadSystem":4.8283654005915,"loadNice":0,"loadIdle":87.53863024623666,"loadIrq":0.20935101186322402,"rawLoad":3750,"rawLoadUser":2234,"rawLoadSystem":1453,"rawLoadNice":0,"rawLoadIdle":26343,"rawLoadIrq":63}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":5,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":201694486,"rx_dropped":0,"rx_errors":0,"tx_bytes":19378978,"tx_dropped":0,"tx_errors":0,"rx_sec":1947.8182183792478,"tx_sec":249.2459280112608,"ms":29838}]', '{"total":10685313024,"free":5617876992,"used":5067436032,"active":5067436032,"available":5617876992,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (53, '2022-03-29 21:14:01', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53563269120,"available":73712881664,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":12.493545001749096,"currentLoadUser":6.754843330945678,"currentLoadSystem":5.635421698788959,"currentLoadNice":0,"currentLoadIdle":87.5064549982509,"currentLoadIrq":0.1032799720144592,"rawCurrentLoad":15000,"rawCurrentLoadUser":8110,"rawCurrentLoadSystem":6766,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":105062,"rawCurrentLoadIrq":124,"cpus":[{"load":14.502877291022187,"loadUser":6.6526960050560495,"loadSystem":7.590726141768952,"loadNice":0,"loadIdle":85.49712270897781,"loadIrq":0.2594551441971859,"rawLoad":4360,"rawLoadUser":2000,"rawLoadSystem":2282,"rawLoadNice":0,"rawLoadIdle":25703,"rawLoadIrq":78},{"load":13.017534502300155,"loadUser":7.6571771451430095,"loadSystem":5.310354023601573,"loadNice":0,"loadIdle":86.98246549769985,"loadIrq":0.05000333355557038,"rawLoad":3905,"rawLoadUser":2297,"rawLoadSystem":1593,"rawLoadNice":0,"rawLoadIdle":26093,"rawLoadIrq":15},{"load":11.459999999999999,"loadUser":6.72,"loadSystem":4.6866666666666665,"loadNice":0,"loadIdle":88.53999999999999,"loadIrq":0.05333333333333334,"rawLoad":3438,"rawLoadUser":2016,"rawLoadSystem":1406,"rawLoadNice":0,"rawLoadIdle":26562,"rawLoadIrq":16},{"load":10.989633678877372,"loadUser":5.989800339988667,"loadSystem":4.949835005499817,"loadNice":0,"loadIdle":89.01036632112263,"loadIrq":0.04999833338888704,"rawLoad":3297,"rawLoadUser":1797,"rawLoadSystem":1485,"rawLoadNice":0,"rawLoadIdle":26704,"rawLoadIrq":15}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":5,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":201730656,"rx_dropped":0,"rx_errors":0,"tx_bytes":19385359,"tx_dropped":0,"tx_errors":0,"rx_sec":1200.6240456748324,"tx_sec":211.81039633539135,"ms":30126}]', '{"total":10685313024,"free":5650538496,"used":5034774528,"active":5034774528,"available":5650538496,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (54, '2022-03-29 21:39:47', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53561892864,"available":73714257920,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":47.693988562927146,"currentLoadUser":23.68310939606676,"currentLoadSystem":23.97368543400437,"currentLoadNice":0,"currentLoadIdle":52.306011437072854,"currentLoadIrq":0.03719373285601376,"rawCurrentLoad":20517,"rawCurrentLoadUser":10188,"rawCurrentLoadSystem":10313,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":22501,"rawCurrentLoadIrq":16,"cpus":[{"load":48.476685862901725,"loadUser":23.22125208991269,"loadSystem":25.106817759613598,"loadNice":0,"loadIdle":51.523314137098275,"loadIrq":0.1486160133754412,"rawLoad":5219,"rawLoadUser":2500,"rawLoadSystem":2703,"rawLoadNice":0,"rawLoadIdle":5547,"rawLoadIrq":16},{"load":48.84196818900568,"loadUser":24.56515672960655,"loadSystem":24.276811459399124,"loadNice":0,"loadIdle":51.15803181099433,"loadIrq":0,"rawLoad":5251,"rawLoadUser":2641,"rawLoadSystem":2610,"rawLoadNice":0,"rawLoadIdle":5500,"rawLoadIrq":0},{"load":46.94447028183425,"loadUser":26.592875081387778,"loadSystem":20.35159520044647,"loadNice":0,"loadIdle":53.05552971816575,"loadIrq":0,"rawLoad":5047,"rawLoadUser":2859,"rawLoadSystem":2188,"rawLoadNice":0,"rawLoadIdle":5704,"rawLoadIrq":0},{"load":46.51162790697674,"loadUser":20.35348837209302,"loadSystem":26.158139534883723,"loadNice":0,"loadIdle":53.48837209302325,"loadIrq":0,"rawLoad":5000,"rawLoadUser":2188,"rawLoadSystem":2812,"rawLoadNice":0,"rawLoadIdle":5750,"rawLoadIrq":0}]}', '{"ESTABLISHED":15,"CLOSE":0,"TIME_WAIT":0,"LISTEN":31,"CLOSE_WAIT":1,"UNKNOWN":18,"SYN_SENT":2,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":1,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":201848186,"rx_dropped":0,"rx_errors":0,"tx_bytes":19429283,"tx_dropped":0,"tx_errors":0,"rx_sec":76.03738661190785,"tx_sec":28.417137492907685,"ms":1545687}]', '{"total":10685313024,"free":5493776384,"used":5191536640,"active":5191536640,"available":5493776384,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (55, '2022-03-29 21:40:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53562097664,"available":73714053120,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":42.998699500776105,"currentLoadUser":23.84612157570164,"currentLoadSystem":18.629022108486808,"currentLoadNice":0,"currentLoadIdle":57.001300499223895,"currentLoadIrq":0.5235558165876578,"rawCurrentLoad":51248,"rawCurrentLoadUser":28421,"rawCurrentLoadSystem":22203,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":67937,"rawCurrentLoadIrq":624,"cpus":[{"load":45.89182356463309,"loadUser":22.45359590180294,"loadSystem":22.037788570288072,"loadNice":0,"loadIdle":54.10817643536691,"loadIrq":1.4004390925420798,"rawLoad":13796,"rawLoadUser":6750,"rawLoadSystem":6625,"rawLoadNice":0,"rawLoadIdle":16266,"rawLoadIrq":421},{"load":40.96592632536821,"loadUser":23.80101782885646,"loadSystem":17.06042937548448,"loadNice":0,"loadIdle":59.03407367463179,"loadIrq":0.10447912102726567,"rawLoad":12155,"rawLoadUser":7062,"rawLoadSystem":5062,"rawLoadNice":0,"rawLoadIdle":17516,"rawLoadIrq":31},{"load":43.879061007600725,"loadUser":24.645187327638393,"loadSystem":18.917737270464787,"loadNice":0,"loadIdle":56.120938992399275,"loadIrq":0.3161364094975449,"rawLoad":13047,"rawLoadUser":7328,"rawLoadSystem":5625,"rawLoadNice":0,"rawLoadIdle":16687,"rawLoadIrq":94},{"load":41.22080893734437,"loadUser":24.50030284675954,"loadSystem":16.45803889898378,"loadNice":0,"loadIdle":58.779191062655634,"loadIrq":0.26246719160104987,"rawLoad":12250,"rawLoadUser":7281,"rawLoadSystem":4891,"rawLoadNice":0,"rawLoadIdle":17468,"rawLoadIrq":78}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":7,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":37,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":1,"FIN_WAIT2":2}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":201995450,"rx_dropped":0,"rx_errors":0,"tx_bytes":19470610,"tx_dropped":0,"tx_errors":0,"rx_sec":5017.170891251022,"tx_sec":1407.9790133551376,"ms":29352}]', '{"total":10685313024,"free":5400051712,"used":5285261312,"active":5285261312,"available":5400051712,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (56, '2022-03-29 21:40:47', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53562425344,"available":73713725440,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":14.618061007760266,"currentLoadUser":8.09662730060082,"currentLoadSystem":6.261931719572565,"currentLoadNice":0,"currentLoadIdle":85.38193899223974,"currentLoadIrq":0.2595019875868795,"rawCurrentLoad":17688,"rawCurrentLoadUser":9797,"rawCurrentLoadSystem":7577,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":103313,"rawCurrentLoadIrq":314,"cpus":[{"load":15.728148930551889,"loadUser":7.83931872194349,"loadSystem":7.476234486400846,"loadNice":0,"loadIdle":84.27185106944812,"loadIrq":0.41259572220755214,"rawLoad":4765,"rawLoadUser":2375,"rawLoadSystem":2265,"rawLoadNice":0,"rawLoadIdle":25531,"rawLoadIrq":125},{"load":12.935372798304861,"loadUser":7.6049529863594225,"loadSystem":5.224473579658324,"loadNice":0,"loadIdle":87.06462720169515,"loadIrq":0.10594623228711429,"rawLoad":3907,"rawLoadUser":2297,"rawLoadSystem":1578,"rawLoadNice":0,"rawLoadIdle":26297,"rawLoadIrq":32},{"load":14.344425294975474,"loadUser":7.768792257722391,"loadSystem":6.575633037253083,"loadNice":0,"loadIdle":85.65557470502453,"loadIrq":0,"rawLoad":4328,"rawLoadUser":2344,"rawLoadSystem":1984,"rawLoadNice":0,"rawLoadIdle":25844,"rawLoadIrq":0},{"load":15.457153219690726,"loadUser":9.169441788387351,"loadSystem":5.7700550628111715,"loadNice":0,"loadIdle":84.54284678030928,"loadIrq":0.5176563684922022,"rawLoad":4688,"rawLoadUser":2781,"rawLoadSystem":1750,"rawLoadNice":0,"rawLoadIdle":25641,"rawLoadIrq":157}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":9,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":37,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":202032276,"rx_dropped":0,"rx_errors":0,"tx_bytes":19480889,"tx_dropped":0,"tx_errors":0,"rx_sec":1185.678869248849,"tx_sec":330.9507711130429,"ms":31059}]', '{"total":10685313024,"free":5413773312,"used":5271539712,"active":5271539712,"available":5413773312,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (57, '2022-03-29 21:41:17', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53562843136,"available":73713307648,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":24.341012825112855,"currentLoadUser":13.155545171599508,"currentLoadSystem":10.84752551254558,"currentLoadNice":0,"currentLoadIdle":75.65898717488714,"currentLoadIrq":0.33794214096776615,"rawCurrentLoad":29171,"rawCurrentLoadUser":15766,"rawCurrentLoadSystem":13000,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":90672,"rawCurrentLoadIrq":405,"cpus":[{"load":27.201883538930893,"loadUser":13.367157447937391,"loadSystem":12.849847459875315,"loadNice":0,"loadIdle":72.7981164610691,"loadIrq":0.9848786311181854,"rawLoad":8203,"rawLoadUser":4031,"rawLoadSystem":3875,"rawLoadNice":0,"rawLoadIdle":21953,"rawLoadIrq":297},{"load":21.75732217573222,"loadUser":12.86694560669456,"loadSystem":8.840167364016736,"loadNice":0,"loadIdle":78.24267782426779,"loadIrq":0.05020920502092051,"rawLoad":6500,"rawLoadUser":3844,"rawLoadSystem":2641,"rawLoadNice":0,"rawLoadIdle":23375,"rawLoadIrq":15},{"load":24.987454417717707,"loadUser":12.599110100030108,"loadSystem":12.284634170820647,"loadNice":0,"loadIdle":75.0125455822823,"loadIrq":0.10371014686694992,"rawLoad":7469,"rawLoadUser":3766,"rawLoadSystem":3672,"rawLoadNice":0,"rawLoadIdle":22422,"rawLoadIrq":31},{"load":23.391597874402596,"loadUser":13.786303933692057,"loadSystem":9.398081614919288,"loadNice":0,"loadIdle":76.60840212559741,"loadIrq":0.2072123257912503,"rawLoad":6999,"rawLoadUser":4125,"rawLoadSystem":2812,"rawLoadNice":0,"rawLoadIdle":22922,"rawLoadIrq":62}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":16,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":35,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":202070100,"rx_dropped":0,"rx_errors":0,"tx_bytes":19492690,"tx_dropped":0,"tx_errors":0,"rx_sec":1269.0913971279024,"tx_sec":395.95356328009666,"ms":29804}]', '{"total":10685313024,"free":5400608768,"used":5284704256,"active":5284704256,"available":5400608768,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (58, '2022-03-29 21:41:49', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53563498496,"available":73712652288,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":37.61702689761075,"currentLoadUser":20.562059343163316,"currentLoadSystem":16.38294007892608,"currentLoadNice":0,"currentLoadIdle":62.38297310238925,"currentLoadIrq":0.6720274755213579,"rawCurrentLoad":45564,"rawCurrentLoadUser":24906,"rawCurrentLoadSystem":19844,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":75562,"rawCurrentLoadIrq":814,"cpus":[{"load":40.974729241877256,"loadUser":19.127010173941585,"loadSystem":20.564489661962586,"loadNice":0,"loadIdle":59.02527075812274,"loadIrq":1.2832294059730882,"rawLoad":12485,"rawLoadUser":5828,"rawLoadSystem":6266,"rawLoadNice":0,"rawLoadIdle":17985,"rawLoadIrq":391},{"load":37.32581287325813,"loadUser":22.239548772395487,"loadSystem":14.877239548772394,"loadNice":0,"loadIdle":62.67418712674188,"loadIrq":0.20902455209024554,"rawLoad":11250,"rawLoadUser":6703,"rawLoadSystem":4484,"rawLoadNice":0,"rawLoadIdle":18890,"rawLoadIrq":63},{"load":36.60941791588074,"loadUser":19.338826566067706,"loadSystem":16.803997485025977,"loadNice":0,"loadIdle":63.39058208411926,"loadIrq":0.4665938647870545,"rawLoad":11063,"rawLoadUser":5844,"rawLoadSystem":5078,"rawLoadNice":0,"rawLoadIdle":19156,"rawLoadIrq":141},{"load":35.53487143941644,"loadUser":21.55658976136251,"loadSystem":13.255437832128594,"loadNice":0,"loadIdle":64.46512856058355,"loadIrq":0.7228438459253391,"rawLoad":10766,"rawLoadUser":6531,"rawLoadSystem":4016,"rawLoadNice":0,"rawLoadIdle":19531,"rawLoadIrq":219}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":18,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":35,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":202112688,"rx_dropped":0,"rx_errors":0,"tx_bytes":19497569,"tx_dropped":0,"tx_errors":0,"rx_sec":1356.5217391304348,"tx_sec":155.40691192865106,"ms":31395}]', '{"total":10685313024,"free":5369933824,"used":5315379200,"active":5315379200,"available":5369933824,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (59, '2022-03-29 21:42:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53560029184,"available":73716121600,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":34.099667554291194,"currentLoadUser":19.408378955028862,"currentLoadSystem":13.82626817287177,"currentLoadNice":0,"currentLoadIdle":65.90033244570881,"currentLoadIrq":0.8650204263905658,"rawCurrentLoad":41234,"rawCurrentLoadUser":23469,"rawCurrentLoadSystem":16719,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":79688,"rawCurrentLoadIrq":1046,"cpus":[{"load":37.18859462467673,"loadUser":16.983664516973842,"loadSystem":18.312763937538875,"loadNice":0,"loadIdle":62.81140537532327,"loadIrq":1.8921661701640096,"rawLoad":11360,"rawLoadUser":5188,"rawLoadSystem":5594,"rawLoadNice":0,"rawLoadIdle":19187,"rawLoadIrq":578},{"load":35.15333333333333,"loadUser":21.873333333333335,"loadSystem":13.176666666666668,"loadNice":0,"loadIdle":64.84666666666666,"loadIrq":0.10333333333333333,"rawLoad":10546,"rawLoadUser":6562,"rawLoadSystem":3953,"rawLoadNice":0,"rawLoadIdle":19454,"rawLoadIrq":31},{"load":31.78821178821179,"loadUser":18.834498834498834,"loadSystem":12.747252747252746,"loadNice":0,"loadIdle":68.21178821178822,"loadIrq":0.20646020646020646,"rawLoad":9546,"rawLoadUser":5656,"rawLoadSystem":3828,"rawLoadNice":0,"rawLoadIdle":20484,"rawLoadIrq":62},{"load":32.23595320481134,"loadUser":19.980227385071675,"loadSystem":11.019937386719393,"loadNice":0,"loadIdle":67.76404679518866,"loadIrq":1.2357884330202669,"rawLoad":9782,"rawLoadUser":6063,"rawLoadSystem":3344,"rawLoadNice":0,"rawLoadIdle":20563,"rawLoadIrq":375}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":12,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":202172030,"rx_dropped":0,"rx_errors":0,"tx_bytes":19511042,"tx_dropped":0,"tx_errors":0,"rx_sec":2146.6502676891914,"tx_sec":487.37519895818264,"ms":27644}]', '{"total":10685313024,"free":5387812864,"used":5297500160,"active":5297500160,"available":5387812864,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (60, '2022-03-29 21:42:48', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53560541184,"available":73715609600,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":14.57258077899663,"currentLoadUser":7.804902334998423,"currentLoadSystem":6.340342200906118,"currentLoadNice":0,"currentLoadIdle":85.42741922100336,"currentLoadIrq":0.42733624309208884,"rawCurrentLoad":17562,"rawCurrentLoadUser":9406,"rawCurrentLoadSystem":7641,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":102952,"rawCurrentLoadIrq":515,"cpus":[{"load":17.959022333487056,"loadUser":8.080242440213453,"loadSystem":8.696225047763358,"loadNice":0,"loadIdle":82.04097766651294,"loadIrq":1.1825548455102444,"rawLoad":5452,"rawLoadUser":2453,"rawLoadSystem":2640,"rawLoadNice":0,"rawLoadIdle":24906,"rawLoadIrq":359},{"load":15.472817572747575,"loadUser":8.699710009666346,"loadSystem":6.773107563081231,"loadNice":0,"loadIdle":84.52718242725243,"loadIrq":0,"rawLoad":4642,"rawLoadUser":2610,"rawLoadSystem":2032,"rawLoadNice":0,"rawLoadIdle":25359,"rawLoadIrq":0},{"load":11.817030916844349,"loadUser":7.44269722814499,"loadSystem":4.321028784648187,"loadNice":0,"loadIdle":88.18296908315565,"loadIrq":0.053304904051172705,"rawLoad":3547,"rawLoadUser":2234,"rawLoadSystem":1297,"rawLoadNice":0,"rawLoadIdle":26469,"rawLoadIrq":16},{"load":13.00972162314609,"loadUser":6.997577889113773,"loadSystem":5.547629317495604,"loadNice":0,"loadIdle":86.99027837685391,"loadIrq":0.46451441653671327,"rawLoad":3921,"rawLoadUser":2109,"rawLoadSystem":1672,"rawLoadNice":0,"rawLoadIdle":26218,"rawLoadIrq":140}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":11,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":202225544,"rx_dropped":0,"rx_errors":0,"tx_bytes":19523168,"tx_dropped":0,"tx_errors":0,"rx_sec":1688.9912889786642,"tx_sec":382.71682868324706,"ms":31684}]', '{"total":10685313024,"free":5380059136,"used":5305253888,"active":5305253888,"available":5380059136,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (61, '2022-03-29 21:43:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53561413632,"available":73714737152,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":35.32387995641982,"currentLoadUser":19.061375416817985,"currentLoadSystem":15.462709234375517,"currentLoadNice":0,"currentLoadIdle":64.67612004358017,"currentLoadIrq":0.7997953052263198,"rawCurrentLoad":42797,"rawCurrentLoadUser":23094,"rawCurrentLoadSystem":18734,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":78359,"rawCurrentLoadIrq":969,"cpus":[{"load":39.31551222065897,"loadUser":18.558387592841015,"loadSystem":19.068808690246378,"loadNice":0,"loadIdle":60.68448777934103,"loadIrq":1.6883159375715735,"rawLoad":12016,"rawLoadUser":5672,"rawLoadSystem":5828,"rawLoadNice":0,"rawLoadIdle":18547,"rawLoadIrq":516},{"load":33.1771508324195,"loadUser":18.848237131558836,"loadSystem":14.172731199946831,"loadNice":0,"loadIdle":66.8228491675805,"loadIrq":0.1561825009138338,"rawLoad":9984,"rawLoadUser":5672,"rawLoadSystem":4265,"rawLoadNice":0,"rawLoadIdle":20109,"rawLoadIrq":47},{"load":33.989919087412126,"loadUser":18.911659371269398,"loadSystem":14.716805942432684,"loadNice":0,"loadIdle":66.01008091258788,"loadIrq":0.3614537737100411,"rawLoad":10250,"rawLoadUser":5703,"rawLoadSystem":4438,"rawLoadNice":0,"rawLoadIdle":19906,"rawLoadIrq":109},{"load":34.75810703928289,"loadUser":19.928157131558134,"loadSystem":13.85117321381492,"loadNice":0,"loadIdle":65.24189296071711,"loadIrq":0.9787766939098339,"rawLoad":10547,"rawLoadUser":6047,"rawLoadSystem":4203,"rawLoadNice":0,"rawLoadIdle":19797,"rawLoadIrq":297}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":5,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":202268016,"rx_dropped":0,"rx_errors":0,"tx_bytes":19532910,"tx_dropped":0,"tx_errors":0,"rx_sec":1494.8613262001973,"tx_sec":342.8832887512319,"ms":28412}]', '{"total":10685313024,"free":5292134400,"used":5393178624,"active":5393178624,"available":5292134400,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (62, '2022-03-29 21:43:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53561872384,"available":73714278400,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":19.864516823598585,"currentLoadUser":10.546321830513527,"currentLoadSystem":8.748436891837056,"currentLoadNice":0,"currentLoadIdle":80.13548317640141,"currentLoadIrq":0.5697581012480022,"rawCurrentLoad":23987,"rawCurrentLoadUser":12735,"rawCurrentLoadSystem":10564,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":96766,"rawCurrentLoadIrq":688,"cpus":[{"load":24.33170924414011,"loadUser":11.36752699499605,"loadSystem":11.782328153805636,"loadNice":0,"loadIdle":75.66829075585989,"loadIrq":1.1818540953384251,"rawLoad":7391,"rawLoadUser":3453,"rawLoadSystem":3579,"rawLoadNice":0,"rawLoadIdle":22985,"rawLoadIrq":359},{"load":18.504473938063402,"loadUser":10.341615939859627,"loadSystem":8.006519642084955,"loadNice":0,"loadIdle":81.4955260619366,"loadIrq":0.15633835611881713,"rawLoad":5563,"rawLoadUser":3109,"rawLoadSystem":2407,"rawLoadNice":0,"rawLoadIdle":24500,"rawLoadIrq":47},{"load":18.0886804377474,"loadUser":10.501280643980973,"loadSystem":7.431061437647607,"loadNice":0,"loadIdle":81.9113195622526,"loadIrq":0.15633835611881713,"rawLoad":5438,"rawLoadUser":3157,"rawLoadSystem":2234,"rawLoadNice":0,"rawLoadIdle":24625,"rawLoadIrq":47},{"load":18.495256355161814,"loadUser":9.969918349806619,"loadSystem":7.748504181679944,"loadNice":0,"loadIdle":81.50474364483819,"loadIrq":0.7768338236752504,"rawLoad":5595,"rawLoadUser":3016,"rawLoadSystem":2344,"rawLoadNice":0,"rawLoadIdle":24656,"rawLoadIrq":235}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":34,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":202322914,"rx_dropped":0,"rx_errors":0,"tx_bytes":19544622,"tx_dropped":0,"tx_errors":0,"rx_sec":1812.8322821384934,"tx_sec":386.75164283591454,"ms":30283}]', '{"total":10685313024,"free":5308022784,"used":5377290240,"active":5377290240,"available":5308022784,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (63, '2022-03-29 21:44:18', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53564096512,"available":73712054272,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":36.126882251295974,"currentLoadUser":18.15354233522587,"currentLoadSystem":17.329877396527607,"currentLoadNice":0,"currentLoadIdle":63.873117748704026,"currentLoadIrq":0.6434625195424998,"rawCurrentLoad":43905,"rawCurrentLoadUser":22062,"rawCurrentLoadSystem":21061,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":77625,"rawCurrentLoadIrq":782,"cpus":[{"load":40.510710553814,"loadUser":18.36794670846395,"loadSystem":20.71251306165099,"loadNice":0,"loadIdle":59.489289446186,"loadIrq":1.4302507836990597,"rawLoad":12406,"rawLoadUser":5625,"rawLoadSystem":6343,"rawLoadNice":0,"rawLoadIdle":18218,"rawLoadIrq":438},{"load":34.77758330306133,"loadUser":18.473630329249364,"loadSystem":15.993527294342988,"loadNice":0,"loadIdle":65.22241669693868,"loadIrq":0.3104256794689739,"rawLoad":10531,"rawLoadUser":5594,"rawLoadSystem":4843,"rawLoadNice":0,"rawLoadIdle":19750,"rawLoadIrq":94},{"load":34.81537800403293,"loadUser":18.852269346467885,"loadSystem":15.754851079303164,"loadNice":0,"loadIdle":65.18462199596708,"loadIrq":0.20825757826187563,"rawLoad":10532,"rawLoadUser":5703,"rawLoadSystem":4766,"rawLoadNice":0,"rawLoadIdle":19719,"rawLoadIrq":63},{"load":34.358332784618426,"loadUser":16.92236781457826,"loadSystem":16.820306841377494,"loadNice":0,"loadIdle":65.64166721538157,"loadIrq":0.615658128662672,"rawLoad":10436,"rawLoadUser":5140,"rawLoadSystem":5109,"rawLoadNice":0,"rawLoadIdle":19938,"rawLoadIrq":187}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":42,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":202466864,"rx_dropped":0,"rx_errors":0,"tx_bytes":19573445,"tx_dropped":0,"tx_errors":0,"rx_sec":4577.688736246263,"tx_sec":916.5871652992431,"ms":31446}]', '{"total":10685313024,"free":5572186112,"used":5113126912,"active":5113126912,"available":5572186112,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (64, '2022-03-29 21:44:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53564620800,"available":73711529984,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":27.024088323854134,"currentLoadUser":16.204416192706592,"currentLoadSystem":10.33706925393108,"currentLoadNice":0,"currentLoadIdle":72.97591167614587,"currentLoadIrq":0.48260287721646034,"rawCurrentLoad":32310,"rawCurrentLoadUser":19374,"rawCurrentLoadSystem":12359,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":87250,"rawCurrentLoadIrq":577,"cpus":[{"load":31.282325069238215,"loadUser":16.473689479128435,"loadSystem":14.077880476492375,"loadNice":0,"loadIdle":68.71767493076179,"loadIrq":0.7307551136174046,"rawLoad":9375,"rawLoadUser":4937,"rawLoadSystem":4219,"rawLoadNice":0,"rawLoadIdle":20594,"rawLoadIrq":219},{"load":26.29598521753738,"loadUser":17.00655131866286,"loadSystem":9.239039139929448,"loadNice":0,"loadIdle":73.70401478246262,"loadIrq":0.050394758945069715,"rawLoad":7827,"rawLoadUser":5062,"rawLoadSystem":2750,"rawLoadNice":0,"rawLoadIdle":21938,"rawLoadIrq":15},{"load":25.718989383147427,"loadUser":16.378846929176184,"loadSystem":9.289746001881467,"loadNice":0,"loadIdle":74.28101061685257,"loadIrq":0.05039645208977288,"rawLoad":7655,"rawLoadUser":4875,"rawLoadSystem":2765,"rawLoadNice":0,"rawLoadIdle":22109,"rawLoadIrq":15},{"load":24.792096334242565,"loadUser":14.969063934535292,"loadSystem":8.731953961812254,"loadNice":0,"loadIdle":75.20790366575744,"loadIrq":1.091078437895017,"rawLoad":7453,"rawLoadUser":4500,"rawLoadSystem":2625,"rawLoadNice":0,"rawLoadIdle":22609,"rawLoadIrq":328}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":202518594,"rx_dropped":0,"rx_errors":0,"tx_bytes":19584597,"tx_dropped":0,"tx_errors":0,"rx_sec":1811.33793200042,"tx_sec":390.4898630904443,"ms":28559}]', '{"total":10685313024,"free":5569433600,"used":5115879424,"active":5115879424,"available":5569433600,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (65, '2022-03-29 21:45:19', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53565620224,"available":73710530560,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":21.71078248622675,"currentLoadUser":12.634936415227207,"currentLoadSystem":8.609419659500436,"currentLoadNice":0,"currentLoadIdle":78.28921751377325,"currentLoadIrq":0.46642641149910946,"rawCurrentLoad":26206,"rawCurrentLoadUser":15251,"rawCurrentLoadSystem":10392,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":94499,"rawCurrentLoadIrq":563,"cpus":[{"load":25.45418576280128,"loadUser":13.139239671601437,"loadSystem":11.335685317682746,"loadNice":0,"loadIdle":74.54581423719871,"loadIrq":0.9792607735170958,"rawLoad":7720,"rawLoadUser":3985,"rawLoadSystem":3438,"rawLoadNice":0,"rawLoadIdle":22609,"rawLoadIrq":297},{"load":22.49742345157751,"loadUser":14.338907543468865,"loadSystem":8.00226071345457,"loadNice":0,"loadIdle":77.50257654842248,"loadIrq":0.1562551946540776,"rawLoad":6767,"rawLoadUser":4313,"rawLoadSystem":2407,"rawLoadNice":0,"rawLoadIdle":23312,"rawLoadIrq":47},{"load":19.250108221504444,"loadUser":11.548066997435983,"loadSystem":7.702041224068462,"loadNice":0,"loadIdle":80.74989177849555,"loadIrq":0,"rawLoad":5781,"rawLoadUser":3468,"rawLoadSystem":2313,"rawLoadNice":0,"rawLoadIdle":24250,"rawLoadIrq":0},{"load":19.61937487609859,"loadUser":11.51457080552435,"loadSystem":7.381219850657504,"loadNice":0,"loadIdle":80.38062512390141,"loadIrq":0.7235842199167383,"rawLoad":5938,"rawLoadUser":3485,"rawLoadSystem":2234,"rawLoadNice":0,"rawLoadIdle":24328,"rawLoadIrq":219}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":5,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":202613219,"rx_dropped":0,"rx_errors":0,"tx_bytes":19602429,"tx_dropped":0,"tx_errors":0,"rx_sec":2945.8920955138383,"tx_sec":555.1508359017465,"ms":32121}]', '{"total":10685313024,"free":5554692096,"used":5130620928,"active":5130620928,"available":5554692096,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (66, '2022-03-29 21:45:49', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53565759488,"available":73710391296,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":58.80871529075341,"currentLoadUser":35.90914260646335,"currentLoadSystem":21.806911790989002,"currentLoadNice":0,"currentLoadIdle":41.19128470924659,"currentLoadIrq":1.0926608933010544,"rawCurrentLoad":72390,"rawCurrentLoadUser":44202,"rawCurrentLoadSystem":26843,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":50704,"rawCurrentLoadIrq":1345,"cpus":[{"load":63.56268819270934,"loadUser":34.38400922544686,"loadSystem":26.67691716317509,"loadNice":0,"loadIdle":36.43731180729067,"loadIrq":2.5017618040873857,"rawLoad":19843,"rawLoadUser":10734,"rawLoadSystem":8328,"rawLoadNice":0,"rawLoadIdle":11375,"rawLoadIrq":781},{"load":56.71724769442083,"loadUser":36.330041206095885,"loadSystem":19.92609065341095,"loadNice":0,"loadIdle":43.28275230557917,"loadIrq":0.46111583491399044,"rawLoad":17343,"rawLoadUser":11109,"rawLoadSystem":6093,"rawLoadNice":0,"rawLoadIdle":13235,"rawLoadIrq":141},{"load":59.07945133728353,"loadUser":35.75473859953514,"loadSystem":22.96461190951648,"loadNice":0,"loadIdle":40.92054866271647,"loadIrq":0.3601008282319049,"rawLoad":18047,"rawLoadUser":10922,"rawLoadSystem":7015,"rawLoadNice":0,"rawLoadIdle":12500,"rawLoadIrq":110},{"load":55.79330753471432,"loadUser":37.192286429709604,"loadSystem":17.583168027056033,"loadNice":0,"loadIdle":44.20669246528568,"loadIrq":1.0178530779486847,"rawLoad":17157,"rawLoadUser":11437,"rawLoadSystem":5407,"rawLoadNice":0,"rawLoadIdle":13594,"rawLoadIrq":313}]}', '{"ESTABLISHED":31,"CLOSE":0,"TIME_WAIT":8,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":37,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":208153536,"rx_dropped":0,"rx_errors":0,"tx_bytes":19862127,"tx_dropped":0,"tx_errors":0,"rx_sec":184082.03475429444,"tx_sec":8628.700534937037,"ms":30097}]', '{"total":10685313024,"free":5368074240,"used":5317238784,"active":5317238784,"available":5368074240,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (67, '2022-03-29 21:46:17', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53565640704,"available":73710510080,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":35.169911474693855,"currentLoadUser":20.22391695083234,"currentLoadSystem":14.317750415749778,"currentLoadNice":0,"currentLoadIdle":64.83008852530614,"currentLoadIrq":0.62824410811174,"rawCurrentLoad":41874,"rawCurrentLoadUser":24079,"rawCurrentLoadSystem":17047,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":77188,"rawCurrentLoadIrq":748,"cpus":[{"load":37.6865671641791,"loadUser":17.960421108742004,"loadSystem":18.270255863539443,"loadNice":0,"loadIdle":62.31343283582089,"loadIrq":1.4558901918976546,"rawLoad":11312,"rawLoadUser":5391,"rawLoadSystem":5484,"rawLoadNice":0,"rawLoadIdle":18704,"rawLoadIrq":437},{"load":34.333187287250176,"loadUser":20.905935088133194,"loadSystem":13.113814836035187,"loadNice":0,"loadIdle":65.66681271274982,"loadIrq":0.31343736308179704,"rawLoad":10187,"rawLoadUser":6203,"rawLoadSystem":3891,"rawLoadNice":0,"rawLoadIdle":19484,"rawLoadIrq":93},{"load":34.5660249915569,"loadUser":21.637960148598445,"loadSystem":12.823370482944952,"loadNice":0,"loadIdle":65.43397500844308,"loadIrq":0.10469436001350894,"rawLoad":10235,"rawLoadUser":6407,"rawLoadSystem":3797,"rawLoadNice":0,"rawLoadIdle":19375,"rawLoadIrq":31},{"load":34.06685704686713,"loadUser":20.419956324542248,"loadSystem":13.018646060809678,"loadNice":0,"loadIdle":65.93314295313287,"loadIrq":0.6282546615152024,"rawLoad":10140,"rawLoadUser":6078,"rawLoadSystem":3875,"rawLoadNice":0,"rawLoadIdle":19625,"rawLoadIrq":187}]}', '{"ESTABLISHED":31,"CLOSE":0,"TIME_WAIT":8,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":29,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":208335254,"rx_dropped":0,"rx_errors":0,"tx_bytes":19915978,"tx_dropped":0,"tx_errors":0,"rx_sec":6423.173447386094,"tx_sec":1903.4675338446855,"ms":28291}]', '{"total":10685313024,"free":5406019584,"used":5279293440,"active":5279293440,"available":5406019584,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (68, '2022-03-29 21:46:48', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53566361600,"available":73709789184,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":36.98341322000955,"currentLoadUser":21.58010904119517,"currentLoadSystem":14.643968967732372,"currentLoadNice":0,"currentLoadIdle":63.01658677999045,"currentLoadIrq":0.7593352110820115,"rawCurrentLoad":44906,"rawCurrentLoadUser":26203,"rawCurrentLoadSystem":17781,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":76516,"rawCurrentLoadIrq":922,"cpus":[{"load":42.06468474354786,"loadUser":21.898072525318526,"loadSystem":18.582162691930744,"loadNice":0,"loadIdle":57.935315256452135,"loadIrq":1.5844495262985951,"rawLoad":12876,"rawLoadUser":6703,"rawLoadSystem":5688,"rawLoadNice":0,"rawLoadIdle":17734,"rawLoadIrq":485},{"load":35.30407086692545,"loadUser":21.618393550313527,"loadSystem":13.63259347732325,"loadNice":0,"loadIdle":64.69592913307454,"loadIrq":0.05308383928867655,"rawLoad":10641,"rawLoadUser":6516,"rawLoadSystem":4109,"rawLoadNice":0,"rawLoadIdle":19500,"rawLoadIrq":16},{"load":36.5389074767284,"loadUser":23.082783979858878,"loadSystem":13.250737072249644,"loadNice":0,"loadIdle":63.46109252327161,"loadIrq":0.2053864246198695,"rawLoad":11030,"rawLoadUser":6968,"rawLoadSystem":4000,"rawLoadNice":0,"rawLoadIdle":19157,"rawLoadIrq":62},{"load":33.98176092376329,"loadUser":19.734942920876524,"loadSystem":13.06915103004855,"loadNice":0,"loadIdle":66.01823907623671,"loadIrq":1.1776669728382103,"rawLoad":10359,"rawLoadUser":6016,"rawLoadSystem":3984,"rawLoadNice":0,"rawLoadIdle":20125,"rawLoadIrq":359}]}', '{"ESTABLISHED":35,"CLOSE":0,"TIME_WAIT":9,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":208456248,"rx_dropped":0,"rx_errors":0,"tx_bytes":19948299,"tx_dropped":0,"tx_errors":0,"rx_sec":4002.845138452377,"tx_sec":1069.2758130148543,"ms":30227}]', '{"total":10685313024,"free":5287976960,"used":5397336064,"active":5397336064,"available":5287976960,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (69, '2022-03-29 21:47:17', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53563334656,"available":73712816128,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":39.999667749250364,"currentLoadUser":24.620611175253966,"currentLoadSystem":14.743627015308453,"currentLoadNice":0,"currentLoadIdle":60.00033225074964,"currentLoadIrq":0.6354295586879418,"rawCurrentLoad":48156,"rawCurrentLoadUser":29641,"rawCurrentLoadSystem":17750,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":72235,"rawCurrentLoadIrq":765,"cpus":[{"load":43.60147161181267,"loadUser":24.28822379105764,"loadSystem":18.434920950581684,"loadNice":0,"loadIdle":56.39852838818733,"loadIrq":0.8783268701733453,"rawLoad":13155,"rawLoadUser":7328,"rawLoadSystem":5562,"rawLoadNice":0,"rawLoadIdle":17016,"rawLoadIrq":265},{"load":38.1000100210442,"loadUser":25.15616127200454,"loadSystem":12.840297959047334,"loadNice":0,"loadIdle":61.8999899789558,"loadIrq":0.10355078999231719,"rawLoad":11406,"rawLoadUser":7531,"rawLoadSystem":3844,"rawLoadNice":0,"rawLoadIdle":18531,"rawLoadIrq":31},{"load":39.64795748920624,"loadUser":24.390567917635337,"loadSystem":14.583194951843243,"loadNice":0,"loadIdle":60.35204251079376,"loadIrq":0.6741946197276651,"rawLoad":11938,"rawLoadUser":7344,"rawLoadSystem":4391,"rawLoadNice":0,"rawLoadIdle":18172,"rawLoadIrq":203},{"load":38.63387797037086,"loadUser":24.651178205680576,"loadSystem":13.101116892586088,"loadNice":0,"loadIdle":61.36612202962913,"loadIrq":0.8815828721041992,"rawLoad":11657,"rawLoadUser":7438,"rawLoadSystem":3953,"rawLoadNice":0,"rawLoadIdle":18516,"rawLoadIrq":266}]}', '{"ESTABLISHED":32,"CLOSE":0,"TIME_WAIT":11,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":31,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":208536919,"rx_dropped":0,"rx_errors":0,"tx_bytes":19967454,"tx_dropped":0,"tx_errors":0,"rx_sec":2720.7757166947727,"tx_sec":646.0370994940978,"ms":29650}]', '{"total":10685313024,"free":5413801984,"used":5271511040,"active":5271511040,"available":5413801984,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (70, '2022-03-29 21:47:48', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53560930304,"available":73715220480,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":34.27557774748288,"currentLoadUser":19.927565987221392,"currentLoadSystem":13.871688320220752,"currentLoadNice":0,"currentLoadIdle":65.72442225251713,"currentLoadIrq":0.47632344004073385,"rawCurrentLoad":41736,"rawCurrentLoadUser":24265,"rawCurrentLoadSystem":16891,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":80030,"rawCurrentLoadIrq":580,"cpus":[{"load":37.97654919428796,"loadUser":19.857854054762218,"loadSystem":17.349010873837287,"loadNice":0,"loadIdle":62.023450805712045,"loadIrq":0.769684265688458,"rawLoad":11595,"rawLoadUser":6063,"rawLoadSystem":5297,"rawLoadNice":0,"rawLoadIdle":18937,"rawLoadIrq":235},{"load":34.79133094353274,"loadUser":20.65642779623113,"loadSystem":13.77314434176341,"loadNice":0,"loadIdle":65.20866905646726,"loadIrq":0.36175880553819845,"rawLoad":10579,"rawLoadUser":6281,"rawLoadSystem":4188,"rawLoadNice":0,"rawLoadIdle":19828,"rawLoadIrq":110},{"load":32.4228028503563,"loadUser":19.741356558458698,"loadSystem":12.628661916072842,"loadNice":0,"loadIdle":67.57719714964371,"loadIrq":0.052784375824755876,"rawLoad":9828,"rawLoadUser":5984,"rawLoadSystem":3828,"rawLoadNice":0,"rawLoadIdle":20484,"rawLoadIrq":16},{"load":31.899066033098478,"loadUser":19.456005243322956,"loadSystem":11.725380960183516,"loadNice":0,"loadIdle":68.10093396690152,"loadIrq":0.7176798295920039,"rawLoad":9734,"rawLoadUser":5937,"rawLoadSystem":3578,"rawLoadNice":0,"rawLoadIdle":20781,"rawLoadIrq":219}]}', '{"ESTABLISHED":33,"CLOSE":0,"TIME_WAIT":10,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":36,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":208649802,"rx_dropped":0,"rx_errors":0,"tx_bytes":19998690,"tx_dropped":0,"tx_errors":0,"rx_sec":3659.210995494181,"tx_sec":1012.5449771467471,"ms":30849}]', '{"total":10685313024,"free":5303836672,"used":5381476352,"active":5381476352,"available":5303836672,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (71, '2022-03-29 21:48:17', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53561647104,"available":73714503680,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":31.830752212389378,"currentLoadUser":19.393604183427193,"currentLoadSystem":12.006402520783052,"currentLoadNice":0,"currentLoadIdle":68.16924778761062,"currentLoadIrq":0.43074550817913654,"rawCurrentLoad":37983,"rawCurrentLoadUser":23142,"rawCurrentLoadSystem":14327,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":81345,"rawCurrentLoadIrq":514,"cpus":[{"load":35.03403630539242,"loadUser":17.935798184730377,"loadSystem":16.213961558996264,"loadNice":0,"loadIdle":64.96596369460758,"loadIrq":0.8842765616657768,"rawLoad":10499,"rawLoadUser":5375,"rawLoadSystem":4859,"rawLoadNice":0,"rawLoadIdle":19469,"rawLoadIrq":265},{"load":31.738077621577993,"loadUser":21.389654940472187,"loadSystem":10.244164929037465,"loadNice":0,"loadIdle":68.26192237842201,"loadIrq":0.10425775206833927,"rawLoad":9437,"rawLoadUser":6360,"rawLoadSystem":3046,"rawLoadNice":0,"rawLoadIdle":20297,"rawLoadIrq":31},{"load":30.163107449134017,"loadUser":17.447452497057338,"loadSystem":12.61140070623844,"loadNice":0,"loadIdle":69.83689255086598,"loadIrq":0.10425424583823777,"rawLoad":8969,"rawLoadUser":5188,"rawLoadSystem":3750,"rawLoadNice":0,"rawLoadIdle":20766,"rawLoadIrq":31},{"load":30.37034558897327,"loadUser":20.805593656953597,"loadSystem":8.939145562209362,"loadNice":0,"loadIdle":69.62965441102673,"loadIrq":0.6256063698103108,"rawLoad":9078,"rawLoadUser":6219,"rawLoadSystem":2672,"rawLoadNice":0,"rawLoadIdle":20813,"rawLoadIrq":187}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":10,"LISTEN":32,"CLOSE_WAIT":4,"UNKNOWN":34,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":3}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":208695465,"rx_dropped":0,"rx_errors":0,"tx_bytes":20013618,"tx_dropped":0,"tx_errors":0,"rx_sec":1561.128205128205,"tx_sec":510.35897435897436,"ms":29250}]', '{"total":10685313024,"free":5445275648,"used":5240037376,"active":5240037376,"available":5445275648,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (72, '2022-03-29 21:48:48', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53562748928,"available":73713401856,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":37.30277430806653,"currentLoadUser":22.881467359147987,"currentLoadSystem":13.75238314377753,"currentLoadNice":0,"currentLoadIdle":62.69722569193347,"currentLoadIrq":0.6689238051410163,"rawCurrentLoad":45393,"rawCurrentLoadUser":27844,"rawCurrentLoadSystem":16735,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":76295,"rawCurrentLoadIrq":814,"cpus":[{"load":40.205714285714286,"loadUser":20.662857142857145,"loadSystem":18.213877551020406,"loadNice":0,"loadIdle":59.794285714285714,"loadIrq":1.3289795918367346,"rawLoad":12313,"rawLoadUser":6328,"rawLoadSystem":5578,"rawLoadNice":0,"rawLoadIdle":18312,"rawLoadIrq":407},{"load":36.01598362009181,"loadUser":23.942406129255968,"loadSystem":11.868828638420132,"loadNice":0,"loadIdle":63.98401637990819,"loadIrq":0.2047488524157062,"rawLoad":10906,"rawLoadUser":7250,"rawLoadSystem":3594,"rawLoadNice":0,"rawLoadIdle":19375,"rawLoadIrq":62},{"load":36.62479338842975,"loadUser":23.70909090909091,"loadSystem":12.8099173553719,"loadNice":0,"loadIdle":63.37520661157024,"loadIrq":0.10578512396694215,"rawLoad":11079,"rawLoadUser":7172,"rawLoadSystem":3875,"rawLoadNice":0,"rawLoadIdle":19171,"rawLoadIrq":32},{"load":36.33892309707847,"loadUser":23.234639067208175,"loadSystem":12.079130093017163,"loadNice":0,"loadIdle":63.66107690292152,"loadIrq":1.0251539368531377,"rawLoad":11095,"rawLoadUser":7094,"rawLoadSystem":3688,"rawLoadNice":0,"rawLoadIdle":19437,"rawLoadIrq":313}]}', '{"ESTABLISHED":30,"CLOSE":0,"TIME_WAIT":13,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":208855723,"rx_dropped":0,"rx_errors":0,"tx_bytes":20043681,"tx_dropped":0,"tx_errors":0,"rx_sec":5131.211577868852,"tx_sec":962.5704405737705,"ms":31232}]', '{"total":10685313024,"free":5236060160,"used":5449252864,"active":5449252864,"available":5236060160,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (73, '2022-03-29 21:49:17', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53563228160,"available":73712922624,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":32.20483427607008,"currentLoadUser":18.692924043546917,"currentLoadSystem":13.094153918136472,"currentLoadNice":0,"currentLoadIdle":67.79516572392991,"currentLoadIrq":0.417756314386692,"rawCurrentLoad":38545,"rawCurrentLoadUser":22373,"rawCurrentLoadSystem":15672,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":81142,"rawCurrentLoadIrq":500,"cpus":[{"load":35.204845741671384,"loadUser":18.927014344194095,"loadSystem":15.44580157752854,"loadNice":0,"loadIdle":64.79515425832861,"loadIrq":0.832029819948747,"rawLoad":10578,"rawLoadUser":5687,"rawLoadSystem":4641,"rawLoadNice":0,"rawLoadIdle":19469,"rawLoadIrq":250},{"load":31.657736101808435,"loadUser":18.78432685867381,"loadSystem":12.662424648359009,"loadNice":0,"loadIdle":68.34226389819156,"loadIrq":0.21098459477561954,"rawLoad":9453,"rawLoadUser":5609,"rawLoadSystem":3781,"rawLoadNice":0,"rawLoadIdle":20407,"rawLoadIrq":63},{"load":31.029170434374898,"loadUser":17.94768746441609,"loadSystem":12.873840383134064,"loadNice":0,"loadIdle":68.97082956562511,"loadIrq":0.20764258682474296,"rawLoad":9265,"rawLoadUser":5359,"rawLoadSystem":3844,"rawLoadNice":0,"rawLoadIdle":20594,"rawLoadIrq":62},{"load":30.911400020052803,"loadUser":19.110323852812407,"loadSystem":11.383309381370943,"loadNice":0,"loadIdle":69.08859997994719,"loadIrq":0.4177667858694562,"rawLoad":9249,"rawLoadUser":5718,"rawLoadSystem":3406,"rawLoadNice":0,"rawLoadIdle":20672,"rawLoadIrq":125}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":14,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":34,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":208908284,"rx_dropped":0,"rx_errors":0,"tx_bytes":20054918,"tx_dropped":0,"tx_errors":0,"rx_sec":1819.7901879998615,"tx_sec":389.0523837551501,"ms":28883}]', '{"total":10685313024,"free":5436887040,"used":5248425984,"active":5248425984,"available":5436887040,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (74, '2022-03-29 21:49:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53564211200,"available":73711939584,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":21.92780082987552,"currentLoadUser":12.733609958506223,"currentLoadSystem":8.779253112033194,"currentLoadNice":0,"currentLoadIdle":78.07219917012448,"currentLoadIrq":0.4149377593360996,"rawCurrentLoad":26423,"rawCurrentLoadUser":15344,"rawCurrentLoadSystem":10579,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":94077,"rawCurrentLoadIrq":500,"cpus":[{"load":25.907749444573398,"loadUser":13.16112345392446,"loadSystem":12.229333156481083,"loadNice":0,"loadIdle":74.0922505554266,"loadIrq":0.5172928341678549,"rawLoad":7813,"rawLoadUser":3969,"rawLoadSystem":3688,"rawLoadNice":0,"rawLoadIdle":22344,"rawLoadIrq":156},{"load":21.636103437947217,"loadUser":13.728492029154324,"loadSystem":7.751189802642526,"loadNice":0,"loadIdle":78.36389656205279,"loadIrq":0.1564216061503644,"rawLoad":6501,"rawLoadUser":4125,"rawLoadSystem":2329,"rawLoadNice":0,"rawLoadIdle":23546,"rawLoadIrq":47},{"load":19.605950677272276,"loadUser":12.220853995407195,"loadSystem":7.228675075714714,"loadNice":0,"loadIdle":80.39404932272772,"loadIrq":0.1564216061503644,"rawLoad":5891,"rawLoadUser":3672,"rawLoadSystem":2172,"rawLoadNice":0,"rawLoadIdle":24156,"rawLoadIrq":47},{"load":20.556051439717017,"loadUser":11.828490198023076,"loadSystem":7.901087639260802,"loadNice":0,"loadIdle":79.44394856028299,"loadIrq":0.8264736024331383,"rawLoad":6218,"rawLoadUser":3578,"rawLoadSystem":2390,"rawLoadNice":0,"rawLoadIdle":24031,"rawLoadIrq":250}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":12,"LISTEN":32,"CLOSE_WAIT":3,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":208966162,"rx_dropped":0,"rx_errors":0,"tx_bytes":20065495,"tx_dropped":0,"tx_errors":0,"rx_sec":1985.7956494887806,"tx_sec":362.89713854388253,"ms":29146}]', '{"total":10685313024,"free":5473746944,"used":5211566080,"active":5211566080,"available":5473746944,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (75, '2022-03-29 21:50:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53564555264,"available":73711595520,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":14.333272452554501,"currentLoadUser":7.7706012253640395,"currentLoadSystem":6.238896176133628,"currentLoadNice":0,"currentLoadIdle":85.6667275474455,"currentLoadIrq":0.323775051056835,"rawCurrentLoad":17265,"rawCurrentLoadUser":9360,"rawCurrentLoadSystem":7515,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":103189,"rawCurrentLoadIrq":390,"cpus":[{"load":17.89345128069712,"loadUser":9.747161341431212,"loadSystem":7.218774755743332,"loadNice":0,"loadIdle":82.10654871930288,"loadIrq":0.9275151835225772,"rawLoad":5421,"rawLoadUser":2953,"rawLoadSystem":2187,"rawLoadNice":0,"rawLoadIdle":24875,"rawLoadIrq":281},{"load":14.148712996570211,"loadUser":7.438979720955014,"loadSystem":6.659784888948087,"loadNice":0,"loadIdle":85.85128700342979,"loadIrq":0.04994838666711065,"rawLoad":4249,"rawLoadUser":2234,"rawLoadSystem":2000,"rawLoadNice":0,"rawLoadIdle":25782,"rawLoadIrq":15},{"load":12.233475479744136,"loadUser":6.559834754797442,"loadSystem":5.673640724946695,"loadNice":0,"loadIdle":87.76652452025586,"loadIrq":0,"rawLoad":3672,"rawLoadUser":1969,"rawLoadSystem":1703,"rawLoadNice":0,"rawLoadIdle":26344,"rawLoadIrq":0},{"load":13.028461359636012,"loadUser":7.319584205107768,"loadSystem":5.396698880807678,"loadNice":0,"loadIdle":86.97153864036399,"loadIrq":0.3121782737205672,"rawLoad":3923,"rawLoadUser":2204,"rawLoadSystem":1625,"rawLoadNice":0,"rawLoadIdle":26188,"rawLoadIrq":94}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":12,"LISTEN":32,"CLOSE_WAIT":3,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":209032339,"rx_dropped":0,"rx_errors":0,"tx_bytes":20071320,"tx_dropped":0,"tx_errors":0,"rx_sec":2207.8134383132046,"tx_sec":194.33509041169012,"ms":29974}]', '{"total":10685313024,"free":5451333632,"used":5233979392,"active":5233979392,"available":5451333632,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (76, '2022-03-29 21:50:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53564555264,"available":73711595520,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":15.921801616409711,"currentLoadUser":8.414789982906552,"currentLoadSystem":7.130291916291884,"currentLoadNice":0,"currentLoadIdle":84.07819838359029,"currentLoadIrq":0.37671971721127834,"rawCurrentLoad":19188,"rawCurrentLoadUser":10141,"rawCurrentLoadSystem":8593,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":101326,"rawCurrentLoadIrq":454,"cpus":[{"load":19.329231990474298,"loadUser":9.148640603294304,"loadSystem":9.45624131772177,"loadNice":0,"loadIdle":80.6707680095257,"loadIrq":0.7243500694582258,"rawLoad":5844,"rawLoadUser":2766,"rawLoadSystem":2859,"rawLoadNice":0,"rawLoadIdle":24390,"rawLoadIrq":219},{"load":16.747096215928376,"loadUser":8.999234532565648,"loadSystem":7.641361866409293,"loadNice":0,"loadIdle":83.25290378407162,"loadIrq":0.1064998169534396,"rawLoad":5032,"rawLoadUser":2704,"rawLoadSystem":2296,"rawLoadNice":0,"rawLoadIdle":25015,"rawLoadIrq":32},{"load":13.27336331834083,"loadUser":7.5995335665500585,"loadSystem":5.673829751790771,"loadNice":0,"loadIdle":86.72663668165917,"loadIrq":0,"rawLoad":3984,"rawLoadUser":2281,"rawLoadSystem":1703,"rawLoadNice":0,"rawLoadIdle":26031,"rawLoadIrq":0},{"load":14.322589185253824,"loadUser":7.90919319610828,"loadSystem":5.741610960354755,"loadNice":0,"loadIdle":85.67741081474618,"loadIrq":0.6717850287907869,"rawLoad":4328,"rawLoadUser":2390,"rawLoadSystem":1735,"rawLoadNice":0,"rawLoadIdle":25890,"rawLoadIrq":203}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":8,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":209074679,"rx_dropped":0,"rx_errors":0,"tx_bytes":20076940,"tx_dropped":0,"tx_errors":0,"rx_sec":1408.8443749376102,"tx_sec":187.00296143479852,"ms":30053}]', '{"total":10685313024,"free":5454327808,"used":5230985216,"active":5230985216,"available":5454327808,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (77, '2022-03-29 21:51:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53564620800,"available":73711529984,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":14.072266354558357,"currentLoadUser":7.704758821625121,"currentLoadSystem":6.160818786263914,"currentLoadNice":0,"currentLoadIdle":85.92773364544163,"currentLoadIrq":0.2066887466693229,"rawCurrentLoad":16953,"rawCurrentLoadUser":9282,"rawCurrentLoadSystem":7422,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":103518,"rawCurrentLoadIrq":249,"cpus":[{"load":16.880327760523357,"loadUser":8.620233925857397,"loadSystem":7.589374215291085,"loadNice":0,"loadIdle":83.11967223947664,"loadIrq":0.6707196193748761,"rawLoad":5109,"rawLoadUser":2609,"rawLoadSystem":2297,"rawLoadNice":0,"rawLoadIdle":25157,"rawLoadIrq":203},{"load":14.232994215040895,"loadUser":8.311722853913158,"loadSystem":5.871401024004256,"loadNice":0,"loadIdle":85.76700578495911,"loadIrq":0.04987033712347895,"rawLoad":4281,"rawLoadUser":2500,"rawLoadSystem":1766,"rawLoadNice":0,"rawLoadIdle":25797,"rawLoadIrq":15},{"load":11.748270356572645,"loadUser":6.446248004257583,"loadSystem":5.248802554550293,"loadNice":0,"loadIdle":88.25172964342735,"loadIrq":0.05321979776476849,"rawLoad":3532,"rawLoadUser":1938,"rawLoadSystem":1578,"rawLoadNice":0,"rawLoadIdle":26532,"rawLoadIrq":16},{"load":13.408508798190466,"loadUser":7.434387785650134,"loadSystem":5.924225792502412,"loadNice":0,"loadIdle":86.59149120180953,"loadIrq":0.049895220037920365,"rawLoad":4031,"rawLoadUser":2235,"rawLoadSystem":1781,"rawLoadNice":0,"rawLoadIdle":26032,"rawLoadIrq":15}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":209114114,"rx_dropped":0,"rx_errors":0,"tx_bytes":20083927,"tx_dropped":0,"tx_errors":0,"rx_sec":1316.2550066755673,"tx_sec":233.2109479305741,"ms":29960}]', '{"total":10685313024,"free":5455843328,"used":5229469696,"active":5229469696,"available":5455843328,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (78, '2022-03-29 21:51:47', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53564620800,"available":73711529984,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":21.20266967320369,"currentLoadUser":10.902537177092162,"currentLoadSystem":9.952844551611761,"currentLoadNice":0,"currentLoadIdle":78.79733032679631,"currentLoadIrq":0.34728794449976547,"rawCurrentLoad":25764,"rawCurrentLoadUser":13248,"rawCurrentLoadSystem":12094,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":95749,"rawCurrentLoadIrq":422,"cpus":[{"load":26.20454247078903,"loadUser":11.178941840619666,"loadSystem":14.35932781935145,"loadNice":0,"loadIdle":73.79545752921098,"loadIrq":0.6662728108179073,"rawLoad":7984,"rawLoadUser":3406,"rawLoadSystem":4375,"rawLoadNice":0,"rawLoadIdle":22484,"rawLoadIrq":203},{"load":20.13216586816455,"loadUser":11.769370560052867,"loadSystem":8.36279530811168,"loadNice":0,"loadIdle":79.86783413183545,"loadIrq":0,"rawLoad":6093,"rawLoadUser":3562,"rawLoadSystem":2531,"rawLoadNice":0,"rawLoadIdle":24172,"rawLoadIrq":0},{"load":18.9900520455893,"loadUser":9.931484287502471,"loadSystem":8.801633836221095,"loadNice":0,"loadIdle":81.0099479544107,"loadIrq":0.25693392186573555,"rawLoad":5765,"rawLoadUser":3015,"rawLoadSystem":2672,"rawLoadNice":0,"rawLoadIdle":24593,"rawLoadIrq":78},{"load":19.46617579383341,"loadUser":10.732364736046282,"loadSystem":8.270330681743475,"loadNice":0,"loadIdle":80.5338242061666,"loadIrq":0.4634803760436526,"rawLoad":5922,"rawLoadUser":3265,"rawLoadSystem":2516,"rawLoadNice":0,"rawLoadIdle":24500,"rawLoadIrq":141}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":209144259,"rx_dropped":0,"rx_errors":0,"tx_bytes":20088532,"tx_dropped":0,"tx_errors":0,"rx_sec":979.7835343062372,"tx_sec":149.67335131797054,"ms":30767}]', '{"total":10685313024,"free":5437501440,"used":5247811584,"active":5247811584,"available":5437501440,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (79, '2022-03-29 21:52:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53564751872,"available":73711398912,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":28.72721790404717,"currentLoadUser":16.084829804342,"currentLoadSystem":12.105501206110961,"currentLoadNice":0,"currentLoadIdle":71.27278209595282,"currentLoadIrq":0.5368868935942106,"rawCurrentLoad":34298,"rawCurrentLoadUser":19204,"rawCurrentLoadSystem":14453,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":85094,"rawCurrentLoadIrq":641,"cpus":[{"load":33.12746210856647,"loadUser":15.336849836415839,"loadSystem":16.902583962075184,"loadNice":0,"loadIdle":66.87253789143354,"loadIrq":0.8880283100754491,"rawLoad":9923,"rawLoadUser":4594,"rawLoadSystem":5063,"rawLoadNice":0,"rawLoadIdle":20031,"rawLoadIrq":266},{"load":27.47134550099156,"loadUser":17.122113542401937,"loadSystem":10.137474370609391,"loadNice":0,"loadIdle":72.52865449900844,"loadIrq":0.21175758798023595,"rawLoad":8173,"rawLoadUser":5094,"rawLoadSystem":3016,"rawLoadNice":0,"rawLoadIdle":21578,"rawLoadIrq":63},{"load":26.6646509440301,"loadUser":15.43371632063428,"loadSystem":10.968890680642343,"loadNice":0,"loadIdle":73.3353490559699,"loadIrq":0.2620439427534771,"rawLoad":7937,"rawLoadUser":4594,"rawLoadSystem":3265,"rawLoadNice":0,"rawLoadIdle":21829,"rawLoadIrq":78},{"load":27.622739881688446,"loadUser":16.449984960395707,"loadSystem":10.390695498145115,"loadNice":0,"loadIdle":72.37726011831155,"loadIrq":0.782059423147622,"rawLoad":8265,"rawLoadUser":4922,"rawLoadSystem":3109,"rawLoadNice":0,"rawLoadIdle":21656,"rawLoadIrq":234}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":209197531,"rx_dropped":0,"rx_errors":0,"tx_bytes":20100374,"tx_dropped":0,"tx_errors":0,"rx_sec":1810.8025425745266,"tx_sec":402.5289778714436,"ms":29419}]', '{"total":10685313024,"free":5450551296,"used":5234761728,"active":5234761728,"available":5450551296,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (80, '2022-03-29 21:52:48', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53565272064,"available":73710878720,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":33.00322432058959,"currentLoadUser":19.033361847733104,"currentLoadSystem":13.185990656050537,"currentLoadNice":0,"currentLoadIdle":66.99677567941042,"currentLoadIrq":0.7838718168059486,"rawCurrentLoad":40124,"rawCurrentLoadUser":23140,"rawCurrentLoadSystem":16031,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":81452,"rawCurrentLoadIrq":953,"cpus":[{"load":37.83129376349715,"loadUser":19.12178522348014,"loadSystem":17.38106144885806,"loadNice":0,"loadIdle":62.16870623650285,"loadIrq":1.3284470911589554,"rawLoad":11562,"rawLoadUser":5844,"rawLoadSystem":5312,"rawLoadNice":0,"rawLoadIdle":19000,"rawLoadIrq":406},{"load":31.249586776859505,"loadUser":19.884297520661157,"loadSystem":11.054545454545455,"loadNice":0,"loadIdle":68.7504132231405,"loadIrq":0.31074380165289256,"rawLoad":9453,"rawLoadUser":6015,"rawLoadSystem":3344,"rawLoadNice":0,"rawLoadIdle":20797,"rawLoadIrq":94},{"load":31.28469468675654,"loadUser":18.378271213322762,"loadSystem":12.546259582342056,"loadNice":0,"loadIdle":68.71530531324346,"loadIrq":0.36016389109172614,"rawLoad":9468,"rawLoadUser":5562,"rawLoadSystem":3797,"rawLoadNice":0,"rawLoadIdle":20796,"rawLoadIrq":109},{"load":31.60983606557377,"loadUser":18.750819672131147,"loadSystem":11.731147540983606,"loadNice":0,"loadIdle":68.39016393442623,"loadIrq":1.1278688524590164,"rawLoad":9641,"rawLoadUser":5719,"rawLoadSystem":3578,"rawLoadNice":0,"rawLoadIdle":20859,"rawLoadIrq":344}]}', '{"ESTABLISHED":27,"CLOSE":0,"TIME_WAIT":5,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":34,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":209277938,"rx_dropped":0,"rx_errors":0,"tx_bytes":20121894,"tx_dropped":0,"tx_errors":0,"rx_sec":2515.548742335127,"tx_sec":673.2574145914153,"ms":31964}]', '{"total":10685313024,"free":5310279680,"used":5375033344,"active":5375033344,"available":5310279680,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (81, '2022-03-29 21:53:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53565272064,"available":73710878720,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":34.00338763513177,"currentLoadUser":20.56327737092944,"currentLoadSystem":12.81821352064963,"currentLoadNice":0,"currentLoadIdle":65.99661236486824,"currentLoadIrq":0.6218967435526993,"rawCurrentLoad":40953,"rawCurrentLoadUser":24766,"rawCurrentLoadSystem":15438,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":79485,"rawCurrentLoadIrq":749,"cpus":[{"load":36.69012694862856,"loadUser":19.21989081102414,"loadSystem":15.878445043741365,"loadNice":0,"loadIdle":63.30987305137143,"loadIrq":1.5917910938630535,"rawLoad":11156,"rawLoadUser":5844,"rawLoadSystem":4828,"rawLoadNice":0,"rawLoadIdle":19250,"rawLoadIrq":484},{"load":35.28075625480175,"loadUser":22.547349433811004,"loadSystem":12.683301600026722,"loadNice":0,"loadIdle":64.71924374519826,"loadIrq":0.05010522096402445,"rawLoad":10562,"rawLoadUser":6750,"rawLoadSystem":3797,"rawLoadNice":0,"rawLoadIdle":19375,"rawLoadIrq":15},{"load":31.96196196196196,"loadUser":19.23923923923924,"loadSystem":12.565899232565899,"loadNice":0,"loadIdle":68.03803803803804,"loadIrq":0.1568234901568235,"rawLoad":9579,"rawLoadUser":5766,"rawLoadSystem":3766,"rawLoadNice":0,"rawLoadIdle":20391,"rawLoadIrq":47},{"load":32.05311203319502,"loadUser":21.26473029045643,"loadSystem":10.114522821576763,"loadNice":0,"loadIdle":67.94688796680498,"loadIrq":0.6738589211618258,"rawLoad":9656,"rawLoadUser":6406,"rawLoadSystem":3047,"rawLoadNice":0,"rawLoadIdle":20469,"rawLoadIrq":203}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":5,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":34,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":209333920,"rx_dropped":0,"rx_errors":0,"tx_bytes":20143676,"tx_dropped":0,"tx_errors":0,"rx_sec":1985.5997730013478,"tx_sec":772.5757253316309,"ms":28194}]', '{"total":10685313024,"free":5389996032,"used":5295316992,"active":5295316992,"available":5389996032,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":61865984,"swapfree":2488270848}'), (82, '2022-03-29 21:53:52', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53567180800,"available":73708969984,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":33.4148962552699,"currentLoadUser":19.916508225179797,"currentLoadSystem":12.851946763660413,"currentLoadNice":0,"currentLoadIdle":66.5851037447301,"currentLoadIrq":0.6464412664296934,"rawCurrentLoad":40422,"rawCurrentLoadUser":24093,"rawCurrentLoadSystem":15547,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":80548,"rawCurrentLoadIrq":782,"cpus":[{"load":36.67083032016304,"loadUser":19.360988758135562,"loadSystem":16.0771809874433,"loadNice":0,"loadIdle":63.32916967983696,"loadIrq":1.2326605745841825,"rawLoad":11156,"rawLoadUser":5890,"rawLoadSystem":4891,"rawLoadNice":0,"rawLoadIdle":19266,"rawLoadIrq":375},{"load":33.26469611424776,"loadUser":20.913317834606442,"loadSystem":12.142145466622384,"loadNice":0,"loadIdle":66.73530388575224,"loadIrq":0.2092328130189306,"rawLoad":10016,"rawLoadUser":6297,"rawLoadSystem":3656,"rawLoadNice":0,"rawLoadIdle":20094,"rawLoadIrq":63},{"load":32.08613012560643,"loadUser":19.78135176447132,"loadSystem":12.148601050043197,"loadNice":0,"loadIdle":67.91386987439355,"loadIrq":0.15617731109191202,"rawLoad":9656,"rawLoadUser":5953,"rawLoadSystem":3656,"rawLoadNice":0,"rawLoadIdle":20438,"rawLoadIrq":47},{"load":31.61745320326918,"loadUser":19.618375955707883,"loadSystem":11.020300553651463,"loadNice":0,"loadIdle":68.38254679673082,"loadIrq":0.9787766939098339,"rawLoad":9594,"rawLoadUser":5953,"rawLoadSystem":3344,"rawLoadNice":0,"rawLoadIdle":20750,"rawLoadIrq":297}]}', '{"ESTABLISHED":40,"CLOSE":0,"TIME_WAIT":6,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":36,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":209870081,"rx_dropped":0,"rx_errors":0,"tx_bytes":20203920,"tx_dropped":0,"tx_errors":0,"rx_sec":14445.549089341524,"tx_sec":1623.1274921866582,"ms":37116}]', '{"total":10685313024,"free":5189562368,"used":5495750656,"active":5495750656,"available":5189562368,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":60817408,"swapfree":2489319424}'), (83, '2022-03-29 21:54:17', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53567770624,"available":73708380160,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":33.593096537502795,"currentLoadUser":17.120355110930756,"currentLoadSystem":15.851628557941549,"currentLoadNice":0,"currentLoadIdle":66.4069034624972,"currentLoadIrq":0.6211128686304875,"rawCurrentLoad":40564,"rawCurrentLoadUser":20673,"rawCurrentLoadSystem":19141,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":80187,"rawCurrentLoadIrq":750,"cpus":[{"load":37.798648871313226,"loadUser":15.860932608337453,"loadSystem":20.80408634041852,"loadNice":0,"loadIdle":62.20135112868677,"loadIrq":1.1336299225572581,"rawLoad":11470,"rawLoadUser":4813,"rawLoadSystem":6313,"rawLoadNice":0,"rawLoadIdle":18875,"rawLoadIrq":344},{"load":32.449406838799725,"loadUser":17.289735154354833,"loadSystem":14.850629714551559,"loadNice":0,"loadIdle":67.55059316120028,"loadIrq":0.30904196989333066,"rawLoad":9765,"rawLoadUser":5203,"rawLoadSystem":4469,"rawLoadNice":0,"rawLoadIdle":20328,"rawLoadIrq":93},{"load":32.86701668106599,"loadUser":17.601515252209744,"loadSystem":14.953146806672427,"loadNice":0,"loadIdle":67.13298331893401,"loadIrq":0.31235462218382404,"rawLoad":9891,"rawLoadUser":5297,"rawLoadSystem":4500,"rawLoadNice":0,"rawLoadIdle":20203,"rawLoadIrq":94},{"load":31.232006353618587,"loadUser":17.737185214600085,"loadSystem":12.77011151924286,"loadNice":0,"loadIdle":68.76799364638143,"loadIrq":0.7247096197756379,"rawLoad":9438,"rawLoadUser":5360,"rawLoadSystem":3859,"rawLoadNice":0,"rawLoadIdle":20781,"rawLoadIrq":219}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":6,"LISTEN":32,"CLOSE_WAIT":8,"UNKNOWN":29,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":6}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":209920205,"rx_dropped":0,"rx_errors":0,"tx_bytes":20212761,"tx_dropped":0,"tx_errors":0,"rx_sec":2117.080587937152,"tx_sec":373.41611758743034,"ms":23676}]', '{"total":10685313024,"free":5417074688,"used":5268238336,"active":5268238336,"available":5417074688,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":60817408,"swapfree":2489319424}'), (84, '2022-03-29 21:54:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53568294912,"available":73707855872,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":37.75737063029881,"currentLoadUser":22.799595175285784,"currentLoadSystem":14.244354852089657,"currentLoadNice":0,"currentLoadIdle":62.2426293697012,"currentLoadIrq":0.7134206029233653,"rawCurrentLoad":45515,"rawCurrentLoadUser":27484,"rawCurrentLoadSystem":17171,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":75031,"rawCurrentLoadIrq":860,"cpus":[{"load":43.016723067319376,"loadUser":23.10017413017052,"loadSystem":18.22124388080297,"loadNice":0,"loadIdle":56.98327693268062,"loadIrq":1.6953050563458947,"rawLoad":13093,"rawLoadUser":7031,"rawLoadSystem":5546,"rawLoadNice":0,"rawLoadIdle":17344,"rawLoadIrq":516},{"load":36.68623265741729,"loadUser":22.512006403415157,"loadSystem":13.964114194236926,"loadNice":0,"loadIdle":63.313767342582715,"loadIrq":0.2101120597652081,"rawLoad":11000,"rawLoadUser":6750,"rawLoadSystem":4187,"rawLoadNice":0,"rawLoadIdle":18984,"rawLoadIrq":63},{"load":35.30178464006416,"loadUser":22.715727558318292,"loadSystem":12.58605708174587,"loadNice":0,"loadIdle":64.69821535993583,"loadIrq":0,"rawLoad":10563,"rawLoadUser":6797,"rawLoadSystem":3766,"rawLoadNice":0,"rawLoadIdle":19359,"rawLoadIrq":0},{"load":35.9533821143595,"loadUser":22.86527828361421,"loadSystem":12.15773267556203,"loadNice":0,"loadIdle":64.0466178856405,"loadIrq":0.93037115518326,"rawLoad":10859,"rawLoadUser":6906,"rawLoadSystem":3672,"rawLoadNice":0,"rawLoadIdle":19344,"rawLoadIrq":281}]}', '{"ESTABLISHED":27,"CLOSE":0,"TIME_WAIT":18,"LISTEN":32,"CLOSE_WAIT":7,"UNKNOWN":33,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":6}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":210023751,"rx_dropped":0,"rx_errors":0,"tx_bytes":20240369,"tx_dropped":0,"tx_errors":0,"rx_sec":3584.0227060330208,"tx_sec":955.5917067598907,"ms":28891}]', '{"total":10685313024,"free":5336211456,"used":5349101568,"active":5349101568,"available":5336211456,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":60817408,"swapfree":2489319424}'), (85, '2022-03-29 21:55:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53568225280,"available":73707925504,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":12.706107346276971,"currentLoadUser":6.989564711262629,"currentLoadSystem":5.535276264914979,"currentLoadNice":0,"currentLoadIdle":87.29389265372302,"currentLoadIrq":0.1812663700993639,"rawCurrentLoad":15281,"rawCurrentLoadUser":8406,"rawCurrentLoadSystem":6657,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":104984,"rawCurrentLoadIrq":218,"cpus":[{"load":14.729119638826186,"loadUser":7.1570840525826585,"loadSystem":7.210197848891249,"loadNice":0,"loadIdle":85.27088036117382,"loadIrq":0.36183773735227726,"rawLoad":4437,"rawLoadUser":2156,"rawLoadSystem":2172,"rawLoadNice":0,"rawLoadIdle":25687,"rawLoadIrq":109},{"load":13.156055513029589,"loadUser":6.969081771890704,"loadSystem":6.083802043465238,"loadNice":0,"loadIdle":86.84394448697041,"loadIrq":0.10317169767364463,"rawLoad":3953,"rawLoadUser":2094,"rawLoadSystem":1828,"rawLoadNice":0,"rawLoadIdle":26094,"rawLoadIrq":31},{"load":11.093333333333334,"loadUser":6.613333333333333,"loadSystem":4.4799999999999995,"loadNice":0,"loadIdle":88.90666666666667,"loadIrq":0,"rawLoad":3328,"rawLoadUser":1984,"rawLoadSystem":1344,"rawLoadNice":0,"rawLoadIdle":26672,"rawLoadIrq":0},{"load":11.839569349371967,"loadUser":7.21738552535389,"loadSystem":4.362995946035754,"loadNice":0,"loadIdle":88.16043065062803,"loadIrq":0.25918787798232207,"rawLoad":3563,"rawLoadUser":2172,"rawLoadSystem":1313,"rawLoadNice":0,"rawLoadIdle":26531,"rawLoadIrq":78}]}', '{"ESTABLISHED":27,"CLOSE":0,"TIME_WAIT":18,"LISTEN":32,"CLOSE_WAIT":7,"UNKNOWN":31,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":6}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":210067265,"rx_dropped":0,"rx_errors":0,"tx_bytes":20251138,"tx_dropped":0,"tx_errors":0,"rx_sec":1448.2942253286735,"tx_sec":358.4290231319687,"ms":30045}]', '{"total":10685313024,"free":5377122304,"used":5308190720,"active":5308190720,"available":5377122304,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":60817408,"swapfree":2489319424}'), (86, '2022-03-29 21:55:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53568299008,"available":73707851776,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.92933720359635,"currentLoadUser":6.784327098217627,"currentLoadSystem":5.015262032886146,"currentLoadNice":0,"currentLoadIdle":88.07066279640365,"currentLoadIrq":0.12974807249257692,"rawCurrentLoad":14343,"rawCurrentLoadUser":8157,"rawCurrentLoadSystem":6030,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":105890,"rawCurrentLoadIrq":156,"cpus":[{"load":13.760217983651227,"loadUser":6.855187080481159,"loadSystem":6.6458430251877445,"loadNice":0,"loadIdle":86.23978201634877,"loadIrq":0.25918787798232207,"rawLoad":4141,"rawLoadUser":2063,"rawLoadSystem":2000,"rawLoadNice":0,"rawLoadIdle":25953,"rawLoadIrq":78},{"load":12.026918976545842,"loadUser":7.132862473347548,"loadSystem":4.8940565031982945,"loadNice":0,"loadIdle":87.97308102345416,"loadIrq":0,"rawLoad":3610,"rawLoadUser":2141,"rawLoadSystem":1469,"rawLoadNice":0,"rawLoadIdle":26406,"rawLoadIrq":0},{"load":10.034613592491514,"loadUser":5.774479131997603,"loadSystem":4.210211009784996,"loadNice":0,"loadIdle":89.96538640750849,"loadIrq":0.049923450708913,"rawLoad":3015,"rawLoadUser":1735,"rawLoadSystem":1265,"rawLoadNice":0,"rawLoadIdle":27031,"rawLoadIrq":15},{"load":11.892808458290387,"loadUser":7.374405692057054,"loadSystem":4.308940386341723,"loadNice":0,"loadIdle":88.10719154170961,"loadIrq":0.20946237989161154,"rawLoad":3577,"rawLoadUser":2218,"rawLoadSystem":1296,"rawLoadNice":0,"rawLoadIdle":26500,"rawLoadIrq":63}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":18,"LISTEN":32,"CLOSE_WAIT":8,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":6}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":210117118,"rx_dropped":0,"rx_errors":0,"tx_bytes":20258755,"tx_dropped":0,"tx_errors":0,"rx_sec":1661.4343797907086,"tx_sec":253.84923015396922,"ms":30006}]', '{"total":10685313024,"free":5365972992,"used":5319340032,"active":5319340032,"available":5365972992,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":60817408,"swapfree":2489319424}'), (87, '2022-03-29 21:56:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53568299008,"available":73707851776,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":13.029865125240846,"currentLoadUser":6.644076805527872,"currentLoadSystem":6.151584612318119,"currentLoadNice":0,"currentLoadIdle":86.97013487475915,"currentLoadIrq":0.23420370739485746,"rawCurrentLoad":15689,"rawCurrentLoadUser":8000,"rawCurrentLoadSystem":7407,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":104719,"rawCurrentLoadIrq":282,"cpus":[{"load":15.226037385655575,"loadUser":7.145697998143974,"loadSystem":7.613018692827787,"loadNice":0,"loadIdle":84.77396261434443,"loadIrq":0.46732069468381277,"rawLoad":4594,"rawLoadUser":2156,"rawLoadSystem":2297,"rawLoadNice":0,"rawLoadIdle":25578,"rawLoadIrq":141},{"load":14.048348428343102,"loadUser":7.388785295684603,"loadSystem":6.659563132658497,"loadNice":0,"loadIdle":85.9516515716569,"loadIrq":0,"rawLoad":4219,"rawLoadUser":2219,"rawLoadSystem":2000,"rawLoadNice":0,"rawLoadIdle":25813,"rawLoadIrq":0},{"load":11.020190932375346,"loadUser":5.611549080264777,"loadSystem":5.302198716029672,"loadNice":0,"loadIdle":88.97980906762466,"loadIrq":0.10644313608089678,"rawLoad":3313,"rawLoadUser":1687,"rawLoadSystem":1594,"rawLoadNice":0,"rawLoadIdle":26750,"rawLoadIrq":32},{"load":11.82110746159716,"loadUser":6.429780033840947,"loadSystem":5.029693772602103,"loadNice":0,"loadIdle":88.17889253840285,"loadIrq":0.361633655154109,"rawLoad":3563,"rawLoadUser":1938,"rawLoadSystem":1516,"rawLoadNice":0,"rawLoadIdle":26578,"rawLoadIrq":109}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":18,"LISTEN":32,"CLOSE_WAIT":7,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":6}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":210177621,"rx_dropped":0,"rx_errors":0,"tx_bytes":20265166,"tx_dropped":0,"tx_errors":0,"rx_sec":2014.3494473298708,"tx_sec":213.443867359169,"ms":30036}]', '{"total":10685313024,"free":5355417600,"used":5329903616,"active":5329907712,"available":5355401216,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":60817408,"swapfree":2489319424}'), (88, '2022-03-29 21:56:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53568430080,"available":73707720704,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":12.245271862690396,"currentLoadUser":6.298353583890605,"currentLoadSystem":5.777862906919611,"currentLoadNice":0,"currentLoadIdle":87.7547281373096,"currentLoadIrq":0.16905537188017888,"rawCurrentLoad":14704,"rawCurrentLoadUser":7563,"rawCurrentLoadSystem":6938,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":105375,"rawCurrentLoadIrq":203,"cpus":[{"load":14.568196144786171,"loadUser":6.997113566238679,"loadSystem":7.00043130619422,"loadNice":0,"loadIdle":85.43180385521383,"loadIrq":0.570651272353273,"rawLoad":4391,"rawLoadUser":2109,"rawLoadSystem":2110,"rawLoadNice":0,"rawLoadIdle":25750,"rawLoadIrq":172},{"load":12.459957287773625,"loadUser":5.8395621996796585,"loadSystem":6.620395088093966,"loadNice":0,"loadIdle":87.54004271222638,"loadIrq":0,"rawLoad":3734,"rawLoadUser":1750,"rawLoadSystem":1984,"rawLoadNice":0,"rawLoadIdle":26234,"rawLoadIrq":0},{"load":10.522982567247759,"loadUser":5.783140561981267,"loadSystem":4.636512116262791,"loadNice":0,"loadIdle":89.47701743275223,"loadIrq":0.10332988900369987,"rawLoad":3157,"rawLoadUser":1735,"rawLoadSystem":1391,"rawLoadNice":0,"rawLoadIdle":26844,"rawLoadIrq":31},{"load":11.418465747939537,"loadUser":6.570122459875205,"loadSystem":4.848343288064333,"loadNice":0,"loadIdle":88.58153425206046,"loadIrq":0,"rawLoad":3422,"rawLoadUser":1969,"rawLoadSystem":1453,"rawLoadNice":0,"rawLoadIdle":26547,"rawLoadIrq":0}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":5,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":210213139,"rx_dropped":0,"rx_errors":0,"tx_bytes":20268985,"tx_dropped":0,"tx_errors":0,"rx_sec":1185.5140186915887,"tx_sec":127.46995994659545,"ms":29960}]', '{"total":10685313024,"free":5347745792,"used":5337567232,"active":5337567232,"available":5347745792,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":60817408,"swapfree":2489319424}'), (89, '2022-03-29 21:57:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53560840192,"available":73715310592,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":20.471283741707282,"currentLoadUser":11.77960261381469,"currentLoadSystem":8.484103722278038,"currentLoadNice":0,"currentLoadIdle":79.52871625829272,"currentLoadIrq":0.20757740561455368,"rawCurrentLoad":24655,"rawCurrentLoadUser":14187,"rawCurrentLoadSystem":10218,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":95782,"rawCurrentLoadIrq":250,"cpus":[{"load":23.806678616477463,"loadUser":13.486689238531502,"loadSystem":10.061076810728274,"loadNice":0,"loadIdle":76.19332138352254,"loadIrq":0.2589125672176857,"rawLoad":7172,"rawLoadUser":4063,"rawLoadSystem":3031,"rawLoadNice":0,"rawLoadIdle":22954,"rawLoadIrq":78},{"load":19.706450109831593,"loadUser":10.969846235771817,"loadSystem":8.736603874059776,"loadNice":0,"loadIdle":80.2935498901684,"loadIrq":0,"rawLoad":5921,"rawLoadUser":3296,"rawLoadSystem":2625,"rawLoadNice":0,"rawLoadIdle":24125,"rawLoadIrq":0},{"load":18.927644278772547,"loadUser":11.232776409505425,"loadSystem":7.6948678692671235,"loadNice":0,"loadIdle":81.07235572122745,"loadIrq":0,"rawLoad":5687,"rawLoadUser":3375,"rawLoadSystem":2312,"rawLoadNice":0,"rawLoadIdle":24359,"rawLoadIrq":0},{"load":19.441411032793937,"loadUser":11.426585922763824,"loadSystem":7.445646778516828,"loadNice":0,"loadIdle":80.55858896720606,"loadIrq":0.5691783315132863,"rawLoad":5875,"rawLoadUser":3453,"rawLoadSystem":2250,"rawLoadNice":0,"rawLoadIdle":24344,"rawLoadIrq":172}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":6,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":29,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":210314426,"rx_dropped":0,"rx_errors":0,"tx_bytes":20284103,"tx_dropped":0,"tx_errors":0,"rx_sec":3377.5843670801655,"tx_sec":504.13498732826463,"ms":29988}]', '{"total":10685313024,"free":5281259520,"used":5404053504,"active":5404053504,"available":5281259520,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":60817408,"swapfree":2489319424}'), (90, '2022-03-29 21:57:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53560905728,"available":73715245056,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":13.269613434463695,"currentLoadUser":7.766278963275025,"currentLoadSystem":5.36013121414715,"currentLoadNice":0,"currentLoadIdle":86.73038656553629,"currentLoadIrq":0.14320325704152062,"rawCurrentLoad":15938,"rawCurrentLoadUser":9328,"rawCurrentLoadSystem":6438,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":104171,"rawCurrentLoadIrq":172,"cpus":[{"load":15.255081705858908,"loadUser":7.835126876577654,"loadSystem":7.004782781984854,"loadNice":0,"loadIdle":84.74491829414109,"loadIrq":0.4151720472963996,"rawLoad":4593,"rawLoadUser":2359,"rawLoadSystem":2109,"rawLoadNice":0,"rawLoadIdle":25515,"rawLoadIrq":125},{"load":14.020343505085876,"loadUser":8.027347006836752,"loadSystem":5.992996498249124,"loadNice":0,"loadIdle":85.97965649491412,"loadIrq":0,"rawLoad":4204,"rawLoadUser":2407,"rawLoadSystem":1797,"rawLoadNice":0,"rawLoadIdle":25781,"rawLoadIrq":0},{"load":11.359391675560298,"loadUser":7.2938900747065105,"loadSystem":4.065501600853789,"loadNice":0,"loadIdle":88.6406083244397,"loadIrq":0,"rawLoad":3406,"rawLoadUser":2187,"rawLoadSystem":1219,"rawLoadNice":0,"rawLoadIdle":26578,"rawLoadIrq":0},{"load":12.436734150239745,"loadUser":7.908231220031967,"loadSystem":4.3720031965903035,"loadNice":0,"loadIdle":87.56326584976026,"loadIrq":0.15649973361747468,"rawLoad":3735,"rawLoadUser":2375,"rawLoadSystem":1313,"rawLoadNice":0,"rawLoadIdle":26297,"rawLoadIrq":47}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":5,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":210354127,"rx_dropped":0,"rx_errors":0,"tx_bytes":20287806,"tx_dropped":0,"tx_errors":0,"rx_sec":1322.132676168909,"tx_sec":123.31823631277474,"ms":30028}]', '{"total":10685313024,"free":5288509440,"used":5396803584,"active":5396803584,"available":5288509440,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":60817408,"swapfree":2489319424}'), (91, '2022-03-29 21:58:17', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53561032704,"available":73715118080,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":36.85782606177446,"currentLoadUser":21.00795141445817,"currentLoadSystem":15.345981681132558,"currentLoadNice":0,"currentLoadIdle":63.14217393822553,"currentLoadIrq":0.5038929661837347,"rawCurrentLoad":44546,"rawCurrentLoadUser":25390,"rawCurrentLoadSystem":18547,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":76313,"rawCurrentLoadIrq":609,"cpus":[{"load":40.66993517817775,"loadUser":20.927248198479813,"loadSystem":18.66342009147445,"loadNice":0,"loadIdle":59.33006482182225,"loadIrq":1.0792668882234873,"rawLoad":12360,"rawLoadUser":6360,"rawLoadSystem":5672,"rawLoadNice":0,"rawLoadIdle":18031,"rawLoadIrq":328},{"load":35.39023580205912,"loadUser":19.976751909664564,"loadSystem":15.257389571570906,"loadNice":0,"loadIdle":64.60976419794089,"loadIrq":0.15609432082364663,"rawLoad":10656,"rawLoadUser":6015,"rawLoadSystem":4594,"rawLoadNice":0,"rawLoadIdle":19454,"rawLoadIrq":47},{"load":36.33920573305464,"loadUser":21.253442155203874,"loadSystem":14.82697986131847,"loadNice":0,"loadIdle":63.66079426694535,"loadIrq":0.2587837165322982,"rawLoad":10953,"rawLoadUser":6406,"rawLoadSystem":4469,"rawLoadNice":0,"rawLoadIdle":19188,"rawLoadIrq":78},{"load":35.00347486514214,"loadUser":21.871794023231956,"loadSystem":12.615415163649601,"loadNice":0,"loadIdle":64.99652513485786,"loadIrq":0.5162656782605818,"rawLoad":10577,"rawLoadUser":6609,"rawLoadSystem":3812,"rawLoadNice":0,"rawLoadIdle":19640,"rawLoadIrq":156}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":7,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":39,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":210631798,"rx_dropped":0,"rx_errors":0,"tx_bytes":20327679,"tx_dropped":0,"tx_errors":0,"rx_sec":9073.326144495637,"tx_sec":1302.9114792667385,"ms":30603}]', '{"total":10685313024,"free":5173415936,"used":5511897088,"active":5511897088,"available":5173415936,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":60817408,"swapfree":2489319424}'), (92, '2022-03-29 21:58:47', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53555392512,"available":73720758272,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":41.38891184003966,"currentLoadUser":23.534660827893912,"currentLoadSystem":17.05444931008841,"currentLoadNice":0,"currentLoadIdle":58.611088159960346,"currentLoadIrq":0.7998017020573412,"rawCurrentLoad":50093,"rawCurrentLoadUser":28484,"rawCurrentLoadSystem":20641,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":70937,"rawCurrentLoadIrq":968,"cpus":[{"load":46.066093550812276,"loadUser":22.930082044912233,"loadSystem":21.246690419376982,"loadNice":0,"loadIdle":53.93390644918772,"loadIrq":1.889321086523061,"rawLoad":14093,"rawLoadUser":7015,"rawLoadSystem":6500,"rawLoadNice":0,"rawLoadIdle":16500,"rawLoadIrq":578},{"load":40.447944704748615,"loadUser":25.597314990197056,"loadSystem":14.591433223673281,"loadNice":0,"loadIdle":59.552055295251385,"loadIrq":0.25919649087827734,"rawLoad":12172,"rawLoadUser":7703,"rawLoadSystem":4391,"rawLoadNice":0,"rawLoadIdle":17921,"rawLoadIrq":78},{"load":40.810155185591334,"loadUser":23.5204200312365,"loadSystem":17.030538663476555,"loadNice":0,"loadIdle":59.189844814408666,"loadIrq":0.25919649087827734,"rawLoad":12281,"rawLoadUser":7078,"rawLoadSystem":5125,"rawLoadNice":0,"rawLoadIdle":17812,"rawLoadIrq":78},{"load":38.17063898714092,"loadUser":22.108360054213083,"loadSystem":15.288750785098012,"loadNice":0,"loadIdle":61.829361012859074,"loadIrq":0.7735281478298238,"rawLoad":11547,"rawLoadUser":6688,"rawLoadSystem":4625,"rawLoadNice":0,"rawLoadIdle":18704,"rawLoadIrq":234}]}', '{"ESTABLISHED":30,"CLOSE":0,"TIME_WAIT":7,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":58,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":212346538,"rx_dropped":0,"rx_errors":0,"tx_bytes":20495743,"tx_dropped":0,"tx_errors":0,"rx_sec":57015.46134663342,"tx_sec":5588.162926018288,"ms":30075}]', '{"total":10685313024,"free":5112471552,"used":5572841472,"active":5572841472,"available":5112471552,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":60817408,"swapfree":2489319424}'), (93, '2022-03-29 21:59:18', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53555134464,"available":73721016320,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":32.476119894598156,"currentLoadUser":18.091238471673254,"currentLoadSystem":13.611660079051383,"currentLoadNice":0,"currentLoadIdle":67.52388010540184,"currentLoadIrq":0.7732213438735177,"rawCurrentLoad":39439,"rawCurrentLoadUser":21970,"rawCurrentLoadSystem":16530,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":82001,"rawCurrentLoadIrq":939,"cpus":[{"load":37.33616604020264,"loadUser":18.437653211309037,"loadSystem":17.365582611537832,"loadNice":0,"loadIdle":62.66383395979736,"loadIrq":1.532930217355777,"rawLoad":11423,"rawLoadUser":5641,"rawLoadSystem":5313,"rawLoadNice":0,"rawLoadIdle":19172,"rawLoadIrq":469},{"load":30.47048306459623,"loadUser":17.643942654703178,"loadSystem":12.568287918418699,"loadNice":0,"loadIdle":69.52951693540376,"loadIrq":0.2582524914743568,"rawLoad":9203,"rawLoadUser":5329,"rawLoadSystem":3796,"rawLoadNice":0,"rawLoadIdle":21000,"rawLoadIrq":78},{"load":32.24460050351133,"loadUser":18.633231747714323,"loadSystem":13.402676560222604,"loadNice":0,"loadIdle":67.75539949648866,"loadIrq":0.2086921955744004,"rawLoad":9734,"rawLoadUser":5625,"rawLoadSystem":4046,"rawLoadNice":0,"rawLoadIdle":20454,"rawLoadIrq":63},{"load":29.812175740461022,"loadUser":17.649569843041967,"loadSystem":11.082288040979838,"loadNice":0,"loadIdle":70.18782425953898,"loadIrq":1.0803178564392197,"rawLoad":9079,"rawLoadUser":5375,"rawLoadSystem":3375,"rawLoadNice":0,"rawLoadIdle":21375,"rawLoadIrq":329}]}', '{"ESTABLISHED":30,"CLOSE":0,"TIME_WAIT":10,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":215688389,"rx_dropped":0,"rx_errors":0,"tx_bytes":20591382,"tx_dropped":0,"tx_errors":0,"rx_sec":107444.65164132077,"tx_sec":3074.9123878725522,"ms":31103}]', '{"total":10685313024,"free":5162258432,"used":5523054592,"active":5523054592,"available":5162258432,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":60817408,"swapfree":2489319424}'), (94, '2022-03-29 21:59:47', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53555359744,"available":73720791040,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":39.602826045445866,"currentLoadUser":23.245967239790456,"currentLoadSystem":15.618799345792064,"currentLoadNice":0,"currentLoadIdle":60.39717395455413,"currentLoadIrq":0.7380594598633469,"rawCurrentLoad":47702,"rawCurrentLoadUser":28000,"rawCurrentLoadSystem":18813,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":72749,"rawCurrentLoadIrq":889,"cpus":[{"load":44.19010031244861,"loadUser":20.401249794441704,"loadSystem":22.095050156224303,"loadNice":0,"loadIdle":55.80989968755139,"loadIrq":1.6938003617826016,"rawLoad":13436,"rawLoadUser":6203,"rawLoadSystem":6718,"rawLoadNice":0,"rawLoadIdle":16969,"rawLoadIrq":515},{"load":38.54409706019599,"loadUser":23.748416772215187,"loadSystem":14.429038064129058,"loadNice":0,"loadIdle":61.455902939804005,"loadIrq":0.3666422238517432,"rawLoad":11564,"rawLoadUser":7125,"rawLoadSystem":4329,"rawLoadNice":0,"rawLoadIdle":18438,"rawLoadIrq":110},{"load":38.88499181614724,"loadUser":25.31649797908942,"loadSystem":13.414837826101481,"loadNice":0,"loadIdle":61.11500818385276,"loadIrq":0.15365601095634165,"rawLoad":11641,"rawLoadUser":7579,"rawLoadSystem":4016,"rawLoadNice":0,"rawLoadIdle":18296,"rawLoadIrq":46},{"load":36.73896436044773,"loadUser":23.559305144982893,"loadSystem":12.455575115421663,"loadNice":0,"loadIdle":63.26103563955227,"loadIrq":0.7240841000431794,"rawLoad":11061,"rawLoadUser":7093,"rawLoadSystem":3750,"rawLoadNice":0,"rawLoadIdle":19046,"rawLoadIrq":218}]}', '{"ESTABLISHED":29,"CLOSE":0,"TIME_WAIT":10,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":31,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":215895265,"rx_dropped":0,"rx_errors":0,"tx_bytes":20604192,"tx_dropped":0,"tx_errors":0,"rx_sec":7197.940224766014,"tx_sec":445.70474235412826,"ms":28741}]', '{"total":10685313024,"free":5047779328,"used":5637533696,"active":5637533696,"available":5047779328,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":60817408,"swapfree":2489319424}'), (95, '2022-03-29 22:00:18', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53552971776,"available":73723179008,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":49.735851548570295,"currentLoadUser":28.91682625635607,"currentLoadSystem":20.031532721389418,"currentLoadNice":0,"currentLoadIdle":50.264148451429705,"currentLoadIrq":0.7874925708248036,"rawCurrentLoad":60252,"rawCurrentLoadUser":35031,"rawCurrentLoadSystem":24267,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":60892,"rawCurrentLoadIrq":954,"cpus":[{"load":54.02084152575698,"loadUser":26.726962904705726,"loadSystem":25.756979944946913,"loadNice":0,"loadIdle":45.97915847424302,"loadIrq":1.5368986761043388,"rawLoad":16485,"rawLoadUser":8156,"rawLoadSystem":7860,"rawLoadNice":0,"rawLoadIdle":14031,"rawLoadIrq":469},{"load":48.0578019355694,"loadUser":29.000397719740157,"loadSystem":18.643112819832957,"loadNice":0,"loadIdle":51.9421980644306,"loadIrq":0.414291395996288,"rawLoad":14500,"rawLoadUser":8750,"rawLoadSystem":5625,"rawLoadNice":0,"rawLoadIdle":15672,"rawLoadIrq":125},{"load":48.93609969508153,"loadUser":29.56714834946308,"loadSystem":18.954659949622165,"loadNice":0,"loadIdle":51.06390030491846,"loadIrq":0.414291395996288,"rawLoad":14765,"rawLoadUser":8921,"rawLoadSystem":5719,"rawLoadNice":0,"rawLoadIdle":15407,"rawLoadIrq":125},{"load":47.88667283053758,"loadUser":30.39228635583146,"loadSystem":16.718399154669132,"loadNice":0,"loadIdle":52.11332716946242,"loadIrq":0.7759873200369832,"rawLoad":14502,"rawLoadUser":9204,"rawLoadSystem":5063,"rawLoadNice":0,"rawLoadIdle":15782,"rawLoadIrq":235}]}', '{"ESTABLISHED":28,"CLOSE":0,"TIME_WAIT":11,"LISTEN":32,"CLOSE_WAIT":7,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":6}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":216051441,"rx_dropped":0,"rx_errors":0,"tx_bytes":20637693,"tx_dropped":0,"tx_errors":0,"rx_sec":5023.189990672542,"tx_sec":1077.5143932327683,"ms":31091}]', '{"total":10685313024,"free":4991705088,"used":5693607936,"active":5693607936,"available":4991705088,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":60817408,"swapfree":2489319424}'), (96, '2022-03-29 22:00:50', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53556920320,"available":73719230464,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":41.61396823311049,"currentLoadUser":25.20244411228462,"currentLoadSystem":15.936827581675727,"currentLoadNice":0,"currentLoadIdle":58.3860317668895,"currentLoadIrq":0.4746965391501453,"rawCurrentLoad":50670,"rawCurrentLoadUser":30687,"rawCurrentLoadSystem":19405,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":71092,"rawCurrentLoadIrq":578,"cpus":[{"load":45.81551020408163,"loadUser":25.05142857142857,"loadSystem":19.693061224489796,"loadNice":0,"loadIdle":54.18448979591837,"loadIrq":1.0710204081632653,"rawLoad":14031,"rawLoadUser":7672,"rawLoadSystem":6031,"rawLoadNice":0,"rawLoadIdle":16594,"rawLoadIrq":328},{"load":41.04076722802623,"loadUser":25.386415318195297,"loadSystem":15.499456217249449,"loadNice":0,"loadIdle":58.95923277197377,"loadIrq":0.154895692581485,"rawLoad":12453,"rawLoadUser":7703,"rawLoadSystem":4703,"rawLoadNice":0,"rawLoadIdle":17890,"rawLoadIrq":47},{"load":40.40148503466176,"loadUser":24.53921214311529,"loadSystem":15.39902092847521,"loadNice":0,"loadIdle":59.598514965338246,"loadIrq":0.46325196307126193,"rawLoad":12297,"rawLoadUser":7469,"rawLoadSystem":4687,"rawLoadNice":0,"rawLoadIdle":18140,"rawLoadIrq":141},{"load":39.163949006818854,"loadUser":25.835886286523703,"loadSystem":13.123826465065719,"loadNice":0,"loadIdle":60.836050993181146,"loadIrq":0.20423625522943636,"rawLoad":11889,"rawLoadUser":7843,"rawLoadSystem":3984,"rawLoadNice":0,"rawLoadIdle":18468,"rawLoadIrq":62}]}', '{"ESTABLISHED":28,"CLOSE":0,"TIME_WAIT":17,"LISTEN":32,"CLOSE_WAIT":7,"UNKNOWN":29,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":6}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":216164426,"rx_dropped":0,"rx_errors":0,"tx_bytes":20660791,"tx_dropped":0,"tx_errors":0,"rx_sec":3554.664149756174,"tx_sec":726.6949819097058,"ms":31785}]', '{"total":10685313024,"free":4928622592,"used":5756690432,"active":5756690432,"available":4928622592,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":60817408,"swapfree":2489319424}'), (97, '2022-03-29 22:01:19', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53557542912,"available":73718607872,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":49.6386734862234,"currentLoadUser":29.491833030852995,"currentLoadSystem":19.244349117307376,"currentLoadNice":0,"currentLoadIdle":50.3613265137766,"currentLoadIrq":0.902491338063026,"rawCurrentLoad":60172,"rawCurrentLoadUser":35750,"rawCurrentLoadSystem":23328,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":61048,"rawCurrentLoadIrq":1094,"cpus":[{"load":53.33681087601474,"loadUser":28.373488083982657,"loadSystem":22.873536986926613,"loadNice":0,"loadIdle":46.66318912398527,"loadIrq":2.089785805105467,"rawLoad":16360,"rawLoadUser":8703,"rawLoadSystem":7016,"rawLoadNice":0,"rawLoadIdle":14313,"rawLoadIrq":641},{"load":47.6369191935966,"loadUser":29.941213590620748,"loadSystem":17.436646849779137,"loadNice":0,"loadIdle":52.3630808064034,"loadIrq":0.25905875319671856,"rawLoad":14343,"rawLoadUser":9015,"rawLoadSystem":5250,"rawLoadNice":0,"rawLoadIdle":15766,"rawLoadIrq":78},{"load":49.533609958506226,"loadUser":30.29045643153527,"loadSystem":18.931120331950208,"loadNice":0,"loadIdle":50.46639004149378,"loadIrq":0.3120331950207469,"rawLoad":14922,"rawLoadUser":9125,"rawLoadSystem":5703,"rawLoadNice":0,"rawLoadIdle":15203,"rawLoadIrq":94},{"load":47.989311516511066,"loadUser":29.383432850592158,"loadSystem":17.678883647280045,"loadNice":0,"loadIdle":52.010688483488934,"loadIrq":0.9269950186388678,"rawLoad":14547,"rawLoadUser":8907,"rawLoadSystem":5359,"rawLoadNice":0,"rawLoadIdle":15766,"rawLoadIrq":281}]}', '{"ESTABLISHED":42,"CLOSE":0,"TIME_WAIT":26,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":29,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":216246056,"rx_dropped":0,"rx_errors":0,"tx_bytes":20683692,"tx_dropped":0,"tx_errors":0,"rx_sec":2866.423203876677,"tx_sec":804.164618301847,"ms":28478}]', '{"total":10685313024,"free":4853645312,"used":5831667712,"active":5831667712,"available":4853645312,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":60817408,"swapfree":2489319424}'), (98, '2022-03-29 22:01:48', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53558001664,"available":73718149120,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":42.997114791281,"currentLoadUser":25.211387401811177,"currentLoadSystem":17.01689431463785,"currentLoadNice":0,"currentLoadIdle":57.002885208719,"currentLoadIrq":0.7688330748319742,"rawCurrentLoad":51563,"rawCurrentLoadUser":30234,"rawCurrentLoadSystem":20407,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":68359,"rawCurrentLoadIrq":922,"cpus":[{"load":46.45189088860164,"loadUser":24.546750190580358,"loadSystem":20.50644658778297,"loadNice":0,"loadIdle":53.54810911139837,"loadIrq":1.3986941102383084,"rawLoad":14015,"rawLoadUser":7406,"rawLoadSystem":6187,"rawLoadNice":0,"rawLoadIdle":16156,"rawLoadIrq":422},{"load":42.55061952251435,"loadUser":26.234847721701755,"loadSystem":16.211678587018568,"loadNice":0,"loadIdle":57.44938047748565,"loadIrq":0.10409321379402975,"rawLoad":12672,"rawLoadUser":7813,"rawLoadSystem":4828,"rawLoadNice":0,"rawLoadIdle":17109,"rawLoadIrq":31},{"load":41.29004096434088,"loadUser":24.44765294473172,"loadSystem":16.73829830098717,"loadNice":0,"loadIdle":58.70995903565912,"loadIrq":0.10408971862198645,"rawLoad":12297,"rawLoadUser":7281,"rawLoadSystem":4985,"rawLoadNice":0,"rawLoadIdle":17485,"rawLoadIrq":31},{"load":41.66887504968862,"loadUser":25.619451437657347,"loadSystem":14.598515966609249,"loadNice":0,"loadIdle":58.331124950311384,"loadIrq":1.450907645422022,"rawLoad":12579,"rawLoadUser":7734,"rawLoadSystem":4407,"rawLoadNice":0,"rawLoadIdle":17609,"rawLoadIrq":438}]}', '{"ESTABLISHED":31,"CLOSE":0,"TIME_WAIT":32,"LISTEN":32,"CLOSE_WAIT":7,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":6}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":216364113,"rx_dropped":0,"rx_errors":0,"tx_bytes":20706979,"tx_dropped":0,"tx_errors":0,"rx_sec":3971.3728260503917,"tx_sec":783.3619268678306,"ms":29727}]', '{"total":10685313024,"free":4978302976,"used":5707010048,"active":5707010048,"available":4978302976,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":62914560,"swapfree":2487222272}'), (99, '2022-03-29 22:02:17', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53558374400,"available":73717776384,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":32.144446092243804,"currentLoadUser":19.71015209188129,"currentLoadSystem":11.816369238881473,"currentLoadNice":0,"currentLoadIdle":67.85555390775619,"currentLoadIrq":0.6179247614810421,"rawCurrentLoad":39015,"rawCurrentLoadUser":23923,"rawCurrentLoadSystem":14342,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":82359,"rawCurrentLoadIrq":750,"cpus":[{"load":34.61073540461956,"loadUser":17.664739129014343,"loadSystem":15.466039400176419,"loadNice":0,"loadIdle":65.38926459538045,"loadIrq":1.4799568754287955,"rawLoad":10594,"rawLoadUser":5407,"rawLoadSystem":4734,"rawLoadNice":0,"rawLoadIdle":20015,"rawLoadIrq":453},{"load":31.934276344121642,"loadUser":21.015668996587937,"loadSystem":10.815914135223771,"loadNice":0,"loadIdle":68.06572365587836,"loadIrq":0.10269321230993475,"rawLoad":9640,"rawLoadUser":6344,"rawLoadSystem":3265,"rawLoadNice":0,"rawLoadIdle":20547,"rawLoadIrq":31},{"load":30.243271907729017,"loadUser":19.368951345618456,"loadSystem":10.821291263423042,"loadNice":0,"loadIdle":69.75672809227098,"loadIrq":0.05302929868752485,"rawLoad":9125,"rawLoadUser":5844,"rawLoadSystem":3265,"rawLoadNice":0,"rawLoadIdle":21047,"rawLoadIrq":16},{"load":31.75689008748273,"loadUser":20.811681904887195,"loadSystem":10.123002039071235,"loadNice":0,"loadIdle":68.24310991251727,"loadIrq":0.8222061435243044,"rawLoad":9656,"rawLoadUser":6328,"rawLoadSystem":3078,"rawLoadNice":0,"rawLoadIdle":20750,"rawLoadIrq":250}]}', '{"ESTABLISHED":30,"CLOSE":0,"TIME_WAIT":41,"LISTEN":32,"CLOSE_WAIT":8,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":6}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":216455368,"rx_dropped":0,"rx_errors":0,"tx_bytes":20726926,"tx_dropped":0,"tx_errors":0,"rx_sec":3139.902969411279,"tx_sec":686.3365791556274,"ms":29063}]', '{"total":10685313024,"free":4973756416,"used":5711556608,"active":5711556608,"available":4973756416,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":62914560,"swapfree":2487222272}'), (100, '2022-03-29 22:02:47', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53558571008,"available":73717579776,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":19.492787576558786,"currentLoadUser":10.642089762040229,"currentLoadSystem":8.367080558251615,"currentLoadNice":0,"currentLoadIdle":80.50721242344122,"currentLoadIrq":0.48361725626694335,"rawCurrentLoad":23297,"rawCurrentLoadUser":12719,"rawCurrentLoadSystem":10000,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":96219,"rawCurrentLoadIrq":578,"cpus":[{"load":22.86057852895985,"loadUser":11.847818825572851,"loadSystem":10.33469169617209,"loadNice":0,"loadIdle":77.13942147104015,"loadIrq":0.6780680072149108,"rawLoad":6844,"rawLoadUser":3547,"rawLoadSystem":3094,"rawLoadNice":0,"rawLoadIdle":23094,"rawLoadIrq":203},{"load":19.8314361505658,"loadUser":10.80554716094154,"loadSystem":8.868070246130083,"loadNice":0,"loadIdle":80.16856384943421,"loadIrq":0.15781874349417416,"rawLoad":5906,"rawLoadUser":3218,"rawLoadSystem":2641,"rawLoadNice":0,"rawLoadIdle":23875,"rawLoadIrq":47},{"load":16.851441241685144,"loadUser":9.608277900960829,"loadSystem":7.139017671168448,"loadNice":0,"loadIdle":83.14855875831486,"loadIrq":0.10414566955586912,"rawLoad":5016,"rawLoadUser":2860,"rawLoadSystem":2125,"rawLoadNice":0,"rawLoadIdle":24750,"rawLoadIrq":31},{"load":18.417635110385934,"loadUser":10.30268722320269,"loadSystem":7.125969831174453,"loadNice":0,"loadIdle":81.58236488961407,"loadIrq":0.988978056008791,"rawLoad":5531,"rawLoadUser":3094,"rawLoadSystem":2140,"rawLoadNice":0,"rawLoadIdle":24500,"rawLoadIrq":297}]}', '{"ESTABLISHED":29,"CLOSE":0,"TIME_WAIT":35,"LISTEN":32,"CLOSE_WAIT":8,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":6}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":216496951,"rx_dropped":0,"rx_errors":0,"tx_bytes":20735076,"tx_dropped":0,"tx_errors":0,"rx_sec":1368.6722401421894,"tx_sec":268.2509380554275,"ms":30382}]', '{"total":10685313024,"free":4988645376,"used":5696667648,"active":5696667648,"available":4988645376,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":62914560,"swapfree":2487222272}'), (101, '2022-03-29 22:03:17', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53550858240,"available":73725292544,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":29.0887860141945,"currentLoadUser":16.562181679654827,"currentLoadSystem":11.995759869483482,"currentLoadNice":0,"currentLoadIdle":70.9112139858055,"currentLoadIrq":0.53084446505619,"rawCurrentLoad":35125,"rawCurrentLoadUser":19999,"rawCurrentLoadSystem":14485,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":85626,"rawCurrentLoadIrq":641,"cpus":[{"load":32.42424242424242,"loadUser":15.90250329380764,"loadSystem":15.44137022397892,"loadNice":0,"loadIdle":67.57575757575758,"loadIrq":1.080368906455863,"rawLoad":9844,"rawLoadUser":4828,"rawLoadSystem":4688,"rawLoadNice":0,"rawLoadIdle":20516,"rawLoadIrq":328},{"load":28.51918345634683,"loadUser":17.713943746259726,"loadSystem":10.64897932043354,"loadNice":0,"loadIdle":71.48081654365316,"loadIrq":0.1562603896535674,"rawLoad":8578,"rawLoadUser":5328,"rawLoadSystem":3203,"rawLoadNice":0,"rawLoadIdle":21500,"rawLoadIrq":47},{"load":28.324795422792892,"loadUser":16.78531035859224,"loadSystem":11.383141507551061,"loadNice":0,"loadIdle":71.67520457720711,"loadIrq":0.15634355664959085,"rawLoad":8515,"rawLoadUser":5046,"rawLoadSystem":3422,"rawLoadNice":0,"rawLoadIdle":21547,"rawLoadIrq":47},{"load":27.06687382235298,"loadUser":15.857327030511387,"loadSystem":10.485603781693168,"loadNice":0,"loadIdle":72.93312617764703,"loadIrq":0.7239430101484249,"rawLoad":8188,"rawLoadUser":4797,"rawLoadSystem":3172,"rawLoadNice":0,"rawLoadIdle":22063,"rawLoadIrq":219}]}', '{"ESTABLISHED":29,"CLOSE":0,"TIME_WAIT":23,"LISTEN":32,"CLOSE_WAIT":7,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":6}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":216793940,"rx_dropped":0,"rx_errors":0,"tx_bytes":20771362,"tx_dropped":0,"tx_errors":0,"rx_sec":10109.919662309369,"tx_sec":1235.2260348583877,"ms":29376}]', '{"total":10685313024,"free":4837515264,"used":5847797760,"active":5847797760,"available":4837515264,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":62914560,"swapfree":2487222272}'), (102, '2022-03-29 22:03:48', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53551964160,"available":73724186624,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":42.488863919097874,"currentLoadUser":25.684016212528594,"currentLoadSystem":15.940447048436937,"currentLoadNice":0,"currentLoadIdle":57.511136080902126,"currentLoadIrq":0.8644006581323489,"rawCurrentLoad":52939,"rawCurrentLoadUser":32001,"rawCurrentLoadSystem":19861,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":71656,"rawCurrentLoadIrq":1077,"cpus":[{"load":47.2139081704133,"loadUser":25.07482646628033,"loadSystem":20.448321976692352,"loadNice":0,"loadIdle":52.7860918295867,"loadIrq":1.6907597274406165,"rawLoad":14828,"rawLoadUser":7875,"rawLoadSystem":6422,"rawLoadNice":0,"rawLoadIdle":16578,"rawLoadIrq":531},{"load":40.7072208933997,"loadUser":27.22218630810007,"loadSystem":13.284633783696426,"loadNice":0,"loadIdle":59.2927791066003,"loadIrq":0.2004008016032064,"rawLoad":12594,"rawLoadUser":8422,"rawLoadSystem":4110,"rawLoadNice":0,"rawLoadIdle":18344,"rawLoadIrq":62},{"load":41.93735685945615,"loadUser":25.102416051095126,"loadSystem":16.48333924712106,"loadNice":0,"loadIdle":58.062643140543855,"loadIrq":0.35160156123996,"rawLoad":13001,"rawLoadUser":7782,"rawLoadSystem":5110,"rawLoadNice":0,"rawLoadIdle":18000,"rawLoadIrq":109},{"load":40.051199999999994,"loadUser":25.3504,"loadSystem":13.500799999999998,"loadNice":0,"loadIdle":59.948800000000006,"loadIrq":1.2,"rawLoad":12516,"rawLoadUser":7922,"rawLoadSystem":4219,"rawLoadNice":0,"rawLoadIdle":18734,"rawLoadIrq":375}]}', '{"ESTABLISHED":41,"CLOSE":0,"TIME_WAIT":18,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":50,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":217136238,"rx_dropped":0,"rx_errors":0,"tx_bytes":20836296,"tx_dropped":0,"tx_errors":0,"rx_sec":11056.49407280597,"tx_sec":2097.419167285765,"ms":30959}]', '{"total":10685313024,"free":4796772352,"used":5888540672,"active":5888540672,"available":4796772352,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":62914560,"swapfree":2487222272}'), (103, '2022-03-29 22:04:20', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53553922048,"available":73722228736,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":41.790327881285236,"currentLoadUser":24.22580074323129,"currentLoadSystem":16.628325370140978,"currentLoadNice":0,"currentLoadIdle":58.209672118714764,"currentLoadIrq":0.9362017679129695,"rawCurrentLoad":49593,"rawCurrentLoadUser":28749,"rawCurrentLoadSystem":19733,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":69078,"rawCurrentLoadIrq":1111,"cpus":[{"load":44.81020265081962,"loadUser":22.638800787901044,"loadSystem":20.291790471739056,"loadNice":0,"loadIdle":55.18979734918038,"loadIrq":1.8796113911795147,"rawLoad":13422,"rawLoadUser":6781,"rawLoadSystem":6078,"rawLoadNice":0,"rawLoadIdle":16531,"rawLoadIrq":563},{"load":40.720757406087756,"loadUser":24.60212426617802,"loadSystem":15.850554820319656,"loadNice":0,"loadIdle":59.27924259391225,"loadIrq":0.26807831959007766,"rawLoad":12000,"rawLoadUser":7250,"rawLoadSystem":4671,"rawLoadNice":0,"rawLoadIdle":17469,"rawLoadIrq":79},{"load":40.85944919278253,"loadUser":24.43019943019943,"loadSystem":16.110432777099444,"loadNice":0,"loadIdle":59.14055080721747,"loadIrq":0.31881698548365217,"rawLoad":12047,"rawLoadUser":7203,"rawLoadSystem":4750,"rawLoadNice":0,"rawLoadIdle":17437,"rawLoadIrq":94},{"load":40.73240383000168,"loadUser":25.247774231479923,"loadSystem":14.22476062489501,"loadNice":0,"loadIdle":59.26759616999831,"loadIrq":1.2598689736267428,"rawLoad":12124,"rawLoadUser":7515,"rawLoadSystem":4234,"rawLoadNice":0,"rawLoadIdle":17641,"rawLoadIrq":375}]}', '{"ESTABLISHED":42,"CLOSE":0,"TIME_WAIT":25,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":70,"SYN_SENT":5,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":217748917,"rx_dropped":0,"rx_errors":0,"tx_bytes":21015253,"tx_dropped":0,"tx_errors":0,"rx_sec":20530.074054217068,"tx_sec":5996.6156217538455,"ms":29843}]', '{"total":10685313024,"free":4762120192,"used":5923192832,"active":5923192832,"available":4762120192,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":62914560,"swapfree":2487222272}'), (104, '2022-03-29 22:04:48', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53550944256,"available":73725206528,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":48.515099201881455,"currentLoadUser":29.045843862326638,"currentLoadSystem":18.713669760731232,"currentLoadNice":0,"currentLoadIdle":51.48490079811854,"currentLoadIrq":0.7555855788235883,"rawCurrentLoad":58173,"rawCurrentLoadUser":34828,"rawCurrentLoadSystem":22439,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":61734,"rawCurrentLoadIrq":906,"cpus":[{"load":52.91282965310097,"loadUser":28.260223784533125,"loadSystem":22.847146582169852,"loadNice":0,"loadIdle":47.08717034689903,"loadIrq":1.805459286397993,"rawLoad":16031,"rawLoadUser":8562,"rawLoadSystem":6922,"rawLoadNice":0,"rawLoadIdle":14266,"rawLoadIrq":547},{"load":48.062925569382486,"loadUser":29.560929795726697,"loadSystem":18.294032804481265,"loadNice":0,"loadIdle":51.937074430617514,"loadIrq":0.20796296917452117,"rawLoad":14329,"rawLoadUser":8813,"rawLoadSystem":5454,"rawLoadNice":0,"rawLoadIdle":15484,"rawLoadIrq":62},{"load":46.43970110243608,"loadUser":28.53265422377107,"loadSystem":17.592065140904065,"loadNice":0,"loadIdle":53.56029889756392,"loadIrq":0.31498173776094895,"rawLoad":13859,"rawLoadUser":8515,"rawLoadSystem":5250,"rawLoadNice":0,"rawLoadIdle":15984,"rawLoadIrq":94},{"load":46.58476330373239,"loadUser":29.839086599452493,"loadSystem":16.067970888696,"loadNice":0,"loadIdle":53.41523669626761,"loadIrq":0.6777058155838953,"rawLoad":13954,"rawLoadUser":8938,"rawLoadSystem":4813,"rawLoadNice":0,"rawLoadIdle":16000,"rawLoadIrq":203}]}', '{"ESTABLISHED":78,"CLOSE":0,"TIME_WAIT":32,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":48,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":218210828,"rx_dropped":0,"rx_errors":0,"tx_bytes":21157805,"tx_dropped":0,"tx_errors":0,"rx_sec":15499.848998355761,"tx_sec":4783.46364215966,"ms":29801}]', '{"total":10685313024,"free":4751147008,"used":5934166016,"active":5934166016,"available":4751147008,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":62914560,"swapfree":2487222272}'), (105, '2022-03-29 22:05:17', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53551616000,"available":73724534784,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":30.809672283401884,"currentLoadUser":19.78572376277033,"currentLoadSystem":10.584450046437574,"currentLoadNice":0,"currentLoadIdle":69.19032771659812,"currentLoadIrq":0.4394984741939764,"rawCurrentLoad":37154,"rawCurrentLoadUser":23860,"rawCurrentLoadSystem":12764,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":83438,"rawCurrentLoadIrq":530,"cpus":[{"load":34.821340521350386,"loadUser":19.77581276092173,"loadSystem":13.710923375299958,"loadNice":0,"loadIdle":65.17865947864962,"loadIrq":1.334604385128694,"rawLoad":10593,"rawLoadUser":6016,"rawLoadSystem":4171,"rawLoadNice":0,"rawLoadIdle":19828,"rawLoadIrq":406},{"load":29.431538307927845,"loadUser":19.65652665912268,"loadSystem":9.671836517340077,"loadNice":0,"loadIdle":70.56846169207216,"loadIrq":0.10317513146508688,"rawLoad":8843,"rawLoadUser":5906,"rawLoadSystem":2906,"rawLoadNice":0,"rawLoadIdle":21203,"rawLoadIrq":31},{"load":29.602743831374244,"loadUser":18.94042822416836,"loadSystem":10.612367220538776,"loadNice":0,"loadIdle":70.39725616862576,"loadIrq":0.04994838666711065,"rawLoad":8890,"rawLoadUser":5688,"rawLoadSystem":3187,"rawLoadNice":0,"rawLoadIdle":21141,"rawLoadIrq":15},{"load":29.334751113178708,"loadUser":20.768259453711703,"loadSystem":8.307303781484682,"loadNice":0,"loadIdle":70.6652488868213,"loadIrq":0.25918787798232207,"rawLoad":8828,"rawLoadUser":6250,"rawLoadSystem":2500,"rawLoadNice":0,"rawLoadIdle":21266,"rawLoadIrq":78}]}', '{"ESTABLISHED":59,"CLOSE":0,"TIME_WAIT":41,"LISTEN":32,"CLOSE_WAIT":8,"UNKNOWN":31,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":6}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":218336212,"rx_dropped":0,"rx_errors":0,"tx_bytes":21189826,"tx_dropped":0,"tx_errors":0,"rx_sec":4272.463965652366,"tx_sec":1091.1166388387228,"ms":29347}]', '{"total":10685313024,"free":4798500864,"used":5886812160,"active":5886812160,"available":4798500864,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":62914560,"swapfree":2487222272}'), (106, '2022-03-29 22:05:48', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53552914432,"available":73723236352,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":25.54946873655291,"currentLoadUser":13.252623216709145,"currentLoadSystem":11.805302704312998,"currentLoadNice":0,"currentLoadIdle":74.45053126344709,"currentLoadIrq":0.4915428155307669,"rawCurrentLoad":30875,"rawCurrentLoadUser":16015,"rawCurrentLoadSystem":14266,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":89969,"rawCurrentLoadIrq":594,"cpus":[{"load":28.866318246063834,"loadUser":12.378792361042633,"loadSystem":15.307497616934556,"loadNice":0,"loadIdle":71.13368175393616,"loadIrq":1.180028268086645,"rawLoad":8782,"rawLoadUser":3766,"rawLoadSystem":4657,"rawLoadNice":0,"rawLoadIdle":21641,"rawLoadIrq":359},{"load":25.815334594074518,"loadUser":14.256328588965198,"loadSystem":11.30022228857702,"loadNice":0,"loadIdle":74.18466540592549,"loadIrq":0.2587837165322982,"rawLoad":7781,"rawLoadUser":4297,"rawLoadSystem":3406,"rawLoadNice":0,"rawLoadIdle":22360,"rawLoadIrq":78},{"load":24.144347710507077,"loadUser":12.823154117099755,"loadSystem":11.21486010500432,"loadNice":0,"loadIdle":75.85565228949292,"loadIrq":0.10633348840300393,"rawLoad":7266,"rawLoadUser":3859,"rawLoadSystem":3375,"rawLoadNice":0,"rawLoadIdle":22828,"rawLoadIrq":32},{"load":23.34194659776055,"loadUser":13.55926588484728,"loadSystem":9.368581461604718,"loadNice":0,"loadIdle":76.65805340223945,"loadIrq":0.41409925130855363,"rawLoad":7046,"rawLoadUser":4093,"rawLoadSystem":2828,"rawLoadNice":0,"rawLoadIdle":23140,"rawLoadIrq":125}]}', '{"ESTABLISHED":37,"CLOSE":0,"TIME_WAIT":49,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":218393923,"rx_dropped":0,"rx_errors":0,"tx_bytes":21207193,"tx_dropped":0,"tx_errors":0,"rx_sec":1863.749394477636,"tx_sec":560.8590343936703,"ms":30965}]', '{"total":10685313024,"free":4827865088,"used":5857447936,"active":5857447936,"available":4827865088,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":62914560,"swapfree":2487222272}'), (107, '2022-03-29 22:06:18', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53545922560,"available":73730228224,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":41.71477583874905,"currentLoadUser":22.34602315838089,"currentLoadSystem":18.801339359350774,"currentLoadNice":0,"currentLoadIdle":58.28522416125095,"currentLoadIrq":0.5674133210173853,"rawCurrentLoad":50580,"rawCurrentLoadUser":27095,"rawCurrentLoadSystem":22797,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":70672,"rawCurrentLoadIrq":688,"cpus":[{"load":42.981737106134624,"loadUser":20.84986392996492,"loadSystem":20.951506606773993,"loadNice":0,"loadIdle":57.01826289386537,"loadIrq":1.180366569395718,"rawLoad":13109,"rawLoadUser":6359,"rawLoadSystem":6390,"rawLoadNice":0,"rawLoadIdle":17390,"rawLoadIrq":360},{"load":42.37187127532777,"loadUser":22.65925043040657,"loadSystem":19.504039200105947,"loadNice":0,"loadIdle":57.62812872467224,"loadIrq":0.20858164481525626,"rawLoad":12798,"rawLoadUser":6844,"rawLoadSystem":5891,"rawLoadNice":0,"rawLoadIdle":17406,"rawLoadIrq":63},{"load":40.808007158718056,"loadUser":22.891326682795878,"loadSystem":17.813939614887484,"loadNice":0,"loadIdle":59.19199284128194,"loadIrq":0.10274086103469988,"rawLoad":12313,"rawLoadUser":6907,"rawLoadSystem":5375,"rawLoadNice":0,"rawLoadIdle":17860,"rawLoadIrq":31},{"load":40.69001843560706,"loadUser":22.995127732420332,"loadSystem":16.924545693968923,"loadNice":0,"loadIdle":59.30998156439294,"loadIrq":0.7703450092178035,"rawLoad":12360,"rawLoadUser":6985,"rawLoadSystem":5141,"rawLoadNice":0,"rawLoadIdle":18016,"rawLoadIrq":234}]}', '{"ESTABLISHED":35,"CLOSE":0,"TIME_WAIT":36,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":27,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":218459240,"rx_dropped":0,"rx_errors":0,"tx_bytes":21222879,"tx_dropped":0,"tx_errors":0,"rx_sec":2144.35325016415,"tx_sec":514.9704530531845,"ms":30460}]', '{"total":10685313024,"free":5152489472,"used":5532823552,"active":5532823552,"available":5152489472,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":62914560,"swapfree":2487222272}'), (108, '2022-03-29 22:07:18', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53545140224,"available":73731010560,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":52.81115212255227,"currentLoadUser":31.437651866113992,"currentLoadSystem":20.637816659239768,"currentLoadNice":0,"currentLoadIdle":47.18884787744773,"currentLoadIrq":0.7356835971985168,"rawCurrentLoad":62812,"rawCurrentLoadUser":37391,"rawCurrentLoadSystem":24546,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":56125,"rawCurrentLoadIrq":875,"cpus":[{"load":55.201465201465204,"loadUser":28.46153846153846,"loadSystem":25.024975024975028,"loadNice":0,"loadIdle":44.7985347985348,"loadIrq":1.7149517149517148,"rawLoad":16577,"rawLoadUser":8547,"rawLoadSystem":7515,"rawLoadNice":0,"rawLoadIdle":13453,"rawLoadIrq":515},{"load":51.53237264055206,"loadUser":30.33962519450646,"loadSystem":21.033759556186997,"loadNice":0,"loadIdle":48.46762735944794,"loadIrq":0.15898788985860224,"rawLoad":15234,"rawLoadUser":8969,"rawLoadSystem":6218,"rawLoadNice":0,"rawLoadIdle":14328,"rawLoadIrq":47},{"load":54.02736586681046,"loadUser":33.8062820167161,"loadSystem":19.695335669991913,"loadNice":0,"loadIdle":45.97263413318954,"loadIrq":0.5257481801024535,"rawLoad":16031,"rawLoadUser":10031,"rawLoadSystem":5844,"rawLoadNice":0,"rawLoadIdle":13641,"rawLoadIrq":156},{"load":50.44990395308867,"loadUser":33.17494018130961,"loadSystem":16.74586324267853,"loadNice":0,"loadIdle":49.550096046911335,"loadIrq":0.5291005291005291,"rawLoad":14970,"rawLoadUser":9844,"rawLoadSystem":4969,"rawLoadNice":0,"rawLoadIdle":14703,"rawLoadIrq":157}]}', '{"ESTABLISHED":38,"CLOSE":0,"TIME_WAIT":19,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":27,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":218658846,"rx_dropped":0,"rx_errors":0,"tx_bytes":21332988,"tx_dropped":0,"tx_errors":0,"rx_sec":4345.354816592389,"tx_sec":3017.1751799794306,"ms":29170}]', '{"total":10685313024,"free":5394350080,"used":5290962944,"active":5290962944,"available":5394350080,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":57671680,"swapfree":2492465152}'), (109, '2022-03-29 22:07:49', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53545562112,"available":73730588672,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":35.277932484891814,"currentLoadUser":17.858835069285696,"currentLoadSystem":16.963565781926697,"currentLoadNice":0,"currentLoadIdle":64.72206751510818,"currentLoadIrq":0.45553163367941546,"rawCurrentLoad":42439,"rawCurrentLoadUser":21484,"rawCurrentLoadSystem":20407,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":77860,"rawCurrentLoadIrq":548,"cpus":[{"load":36.87702158558321,"loadUser":15.522476731137369,"loadSystem":20.166347613703874,"loadNice":0,"loadIdle":63.1229784144168,"loadIrq":1.1881972407419632,"rawLoad":11173,"rawLoadUser":4703,"rawLoadSystem":6110,"rawLoadNice":0,"rawLoadIdle":19125,"rawLoadIrq":360},{"load":35.16057955531816,"loadUser":18.93570140882687,"loadSystem":16.17146290979502,"loadNice":0,"loadIdle":64.83942044468185,"loadIrq":0.05341523669626762,"rawLoad":10532,"rawLoadUser":5672,"rawLoadSystem":4844,"rawLoadNice":0,"rawLoadIdle":19422,"rawLoadIrq":16},{"load":38.926129731532434,"loadUser":19.593129898282474,"loadSystem":19.1762547940637,"loadNice":0,"loadIdle":61.073870268467566,"loadIrq":0.1567450391862598,"rawLoad":11672,"rawLoadUser":5875,"rawLoadSystem":5750,"rawLoadNice":0,"rawLoadIdle":18313,"rawLoadIrq":47},{"load":30.144368305501963,"loadUser":17.410684585190605,"loadSystem":12.317876388796488,"loadNice":0,"loadIdle":69.85563169449803,"loadIrq":0.41580733151486926,"rawLoad":9062,"rawLoadUser":5234,"rawLoadSystem":3703,"rawLoadNice":0,"rawLoadIdle":21000,"rawLoadIrq":125}]}', '{"ESTABLISHED":40,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":22,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":218750682,"rx_dropped":0,"rx_errors":0,"tx_bytes":21422174,"tx_dropped":0,"tx_errors":0,"rx_sec":3060.9959336044267,"tx_sec":2972.6684887674155,"ms":30002}]', '{"total":10685313024,"free":5301563392,"used":5383749632,"active":5383749632,"available":5301563392,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":57671680,"swapfree":2492465152}'), (110, '2022-03-29 22:08:19', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53548335104,"available":73727815680,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":77.35263702171665,"currentLoadUser":53.14167528438469,"currentLoadSystem":23.64260599793175,"currentLoadNice":0,"currentLoadIdle":22.64736297828335,"currentLoadIrq":0.5683557394002069,"rawCurrentLoad":93500,"rawCurrentLoadUser":64235,"rawCurrentLoadSystem":28578,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":27375,"rawCurrentLoadIrq":687,"cpus":[{"load":80.65843621399176,"loadUser":51.028806584362144,"loadSystem":28.54979423868313,"loadNice":0,"loadIdle":19.34156378600823,"loadIrq":1.0798353909465022,"rawLoad":24500,"rawLoadUser":15500,"rawLoadSystem":8672,"rawLoadNice":0,"rawLoadIdle":5875,"rawLoadIrq":328},{"load":76.06114869346067,"loadUser":51.14073484547023,"loadSystem":24.55896007428041,"loadNice":0,"loadIdle":23.93885130653933,"loadIrq":0.3614537737100411,"rawLoad":22937,"rawLoadUser":15422,"rawLoadSystem":7406,"rawLoadNice":0,"rawLoadIdle":7219,"rawLoadIrq":109},{"load":76.07408632379692,"loadUser":53.74565900446503,"loadSystem":21.70663138746486,"loadNice":0,"loadIdle":23.925913676203077,"loadIrq":0.6217959318670415,"rawLoad":23001,"rawLoadUser":16250,"rawLoadSystem":6563,"rawLoadNice":0,"rawLoadIdle":7234,"rawLoadIrq":188},{"load":76.59503802849646,"loadUser":56.67076289481551,"loadSystem":19.718356637550233,"loadNice":0,"loadIdle":23.40496197150354,"loadIrq":0.20591849613072502,"rawLoad":23062,"rawLoadUser":17063,"rawLoadSystem":5937,"rawLoadNice":0,"rawLoadIdle":7047,"rawLoadIrq":62}]}', '{"ESTABLISHED":46,"CLOSE":0,"TIME_WAIT":13,"LISTEN":32,"CLOSE_WAIT":3,"UNKNOWN":31,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":219069996,"rx_dropped":0,"rx_errors":0,"tx_bytes":21585135,"tx_dropped":0,"tx_errors":0,"rx_sec":10379.132130667967,"tx_sec":5296.960832114416,"ms":30765}]', '{"total":10685313024,"free":4848283648,"used":5837029376,"active":5837029376,"available":4848283648,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":57671680,"swapfree":2492465152}'), (111, '2022-03-29 22:08:49', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53548982272,"available":73727168512,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":50.28518371136755,"currentLoadUser":33.83406287306009,"currentLoadSystem":15.828525003316091,"currentLoadNice":0,"currentLoadIdle":49.71481628863245,"currentLoadIrq":0.6225958349913782,"rawCurrentLoad":60656,"rawCurrentLoadUser":40812,"rawCurrentLoadSystem":19093,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":59968,"rawCurrentLoadIrq":751,"cpus":[{"load":55.65761316872428,"loadUser":35.34156378600823,"loadSystem":18.979423868312757,"loadNice":0,"loadIdle":44.34238683127572,"loadIrq":1.3366255144032921,"rawLoad":16906,"rawLoadUser":10735,"rawLoadSystem":5765,"rawLoadNice":0,"rawLoadIdle":13469,"rawLoadIrq":406},{"load":47.6149377593361,"loadUser":31.014107883817427,"loadSystem":16.07966804979253,"loadNice":0,"loadIdle":52.385062240663906,"loadIrq":0.521161825726141,"rawLoad":14344,"rawLoadUser":9343,"rawLoadSystem":4844,"rawLoadNice":0,"rawLoadIdle":15781,"rawLoadIrq":157},{"load":53.04200226319643,"loadUser":37.28616121946349,"loadSystem":15.496239100046596,"loadNice":0,"loadIdle":46.95799773680357,"loadIrq":0.2596019436863476,"rawLoad":15937,"rawLoadUser":11203,"rawLoadSystem":4656,"rawLoadNice":0,"rawLoadIdle":14109,"rawLoadIrq":78},{"load":44.780238047742536,"loadUser":31.687612208258525,"loadSystem":12.726910033911828,"loadNice":0,"loadIdle":55.219761952257464,"loadIrq":0.36571580557217903,"rawLoad":13469,"rawLoadUser":9531,"rawLoadSystem":3828,"rawLoadNice":0,"rawLoadIdle":16609,"rawLoadIrq":110}]}', '{"ESTABLISHED":46,"CLOSE":0,"TIME_WAIT":16,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":31,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":219185969,"rx_dropped":0,"rx_errors":0,"tx_bytes":21632576,"tx_dropped":0,"tx_errors":0,"rx_sec":3990.8121128699245,"tx_sec":1632.5189263592567,"ms":29060}]', '{"total":10685313024,"free":4788015104,"used":5897297920,"active":5897297920,"available":4788015104,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":57671680,"swapfree":2492465152}'), (112, '2022-03-29 22:09:19', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53549506560,"available":73726644224,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":42.15890817630809,"currentLoadUser":24.791159856512596,"currentLoadSystem":16.531563105595186,"currentLoadNice":0,"currentLoadIdle":57.84109182369191,"currentLoadIrq":0.8361852142003051,"rawCurrentLoad":51124,"rawCurrentLoadUser":30063,"rawCurrentLoadSystem":20047,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":70141,"rawCurrentLoadIrq":1014,"cpus":[{"load":46.556788511749346,"loadUser":24.118798955613578,"loadSystem":20.551566579634464,"loadNice":0,"loadIdle":53.443211488250654,"loadIrq":1.8864229765013056,"rawLoad":14265,"rawLoadUser":7390,"rawLoadSystem":6297,"rawLoadNice":0,"rawLoadIdle":16375,"rawLoadIrq":578},{"load":40.04237989603682,"loadUser":24.265801410455914,"loadSystem":15.313048372678212,"loadNice":0,"loadIdle":59.95762010396318,"loadIrq":0.4635301129026918,"rawLoad":12094,"rawLoadUser":7329,"rawLoadSystem":4625,"rawLoadNice":0,"rawLoadIdle":18109,"rawLoadIrq":140},{"load":41.00394811054709,"loadUser":24.780199727945323,"loadSystem":15.964964666069474,"loadNice":0,"loadIdle":58.99605188945291,"loadIrq":0.2587837165322982,"rawLoad":12359,"rawLoadUser":7469,"rawLoadSystem":4812,"rawLoadNice":0,"rawLoadIdle":17782,"rawLoadIrq":78},{"load":40.96958488821373,"loadUser":26.006406657640103,"loadSystem":14.24325484627324,"loadNice":0,"loadIdle":59.03041511178627,"loadIrq":0.7199233843003864,"rawLoad":12406,"rawLoadUser":7875,"rawLoadSystem":4313,"rawLoadNice":0,"rawLoadIdle":17875,"rawLoadIrq":218}]}', '{"ESTABLISHED":38,"CLOSE":0,"TIME_WAIT":20,"LISTEN":32,"CLOSE_WAIT":5,"UNKNOWN":29,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":3}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":219243475,"rx_dropped":0,"rx_errors":0,"tx_bytes":21653574,"tx_dropped":0,"tx_errors":0,"rx_sec":1889.90403575654,"tx_sec":690.0880767713948,"ms":30428}]', '{"total":10685313024,"free":4840534016,"used":5844779008,"active":5844779008,"available":4840534016,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":57671680,"swapfree":2492465152}'), (113, '2022-03-29 22:09:48', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53550505984,"available":73725644800,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":42.7471646993714,"currentLoadUser":25.322352824562415,"currentLoadSystem":16.597969652164576,"currentLoadNice":0,"currentLoadIdle":57.252835300628604,"currentLoadIrq":0.8268422226444083,"rawCurrentLoad":51751,"rawCurrentLoadUser":30656,"rawCurrentLoadSystem":20094,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":69312,"rawCurrentLoadIrq":1001,"cpus":[{"load":45.54893226778462,"loadUser":22.314293200576444,"loadSystem":21.54460893488799,"loadNice":0,"loadIdle":54.451067732215385,"loadIrq":1.6900301323201885,"rawLoad":13907,"rawLoadUser":6813,"rawLoadSystem":6578,"rawLoadNice":0,"rawLoadIdle":16625,"rawLoadIrq":516},{"load":42.553968781135836,"loadUser":27.39953503819329,"loadSystem":14.842245101295251,"loadNice":0,"loadIdle":57.44603121886417,"loadIrq":0.31218864164729326,"rawLoad":12813,"rawLoadUser":8250,"rawLoadSystem":4469,"rawLoadNice":0,"rawLoadIdle":17297,"rawLoadIrq":94},{"load":41.508743932442314,"loadUser":25.71314582086575,"loadSystem":15.586142695657957,"loadNice":0,"loadIdle":58.491256067557686,"loadIrq":0.20945541591861158,"rawLoad":12485,"rawLoadUser":7734,"rawLoadSystem":4688,"rawLoadNice":0,"rawLoadIdle":17593,"rawLoadIrq":63},{"load":41.347262960155554,"loadUser":25.900537191444485,"loadSystem":14.365751573674324,"loadNice":0,"loadIdle":58.652737039844446,"loadIrq":1.0809741950367464,"rawLoad":12546,"rawLoadUser":7859,"rawLoadSystem":4359,"rawLoadNice":0,"rawLoadIdle":17797,"rawLoadIrq":328}]}', '{"ESTABLISHED":32,"CLOSE":0,"TIME_WAIT":25,"LISTEN":32,"CLOSE_WAIT":3,"UNKNOWN":43,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":2}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":219520342,"rx_dropped":0,"rx_errors":0,"tx_bytes":21736323,"tx_dropped":0,"tx_errors":0,"rx_sec":9562.966289030119,"tx_sec":2858.1445150594086,"ms":28952}]', '{"total":10685313024,"free":4741439488,"used":5943873536,"active":5943873536,"available":4741439488,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":57671680,"swapfree":2492465152}'), (114, '2022-03-29 22:10:22', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53546037248,"available":73730113536,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":41.741542243111724,"currentLoadUser":26.041753168025778,"currentLoadSystem":15.14175150719968,"currentLoadNice":0,"currentLoadIdle":58.25845775688827,"currentLoadIrq":0.5580375678862666,"rawCurrentLoad":50266,"rawCurrentLoadUser":31360,"rawCurrentLoadSystem":18234,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":70156,"rawCurrentLoadIrq":672,"cpus":[{"load":44.60598050553445,"loadUser":24.883528828679992,"loadSystem":18.638691557905172,"loadNice":0,"loadIdle":55.39401949446555,"loadIrq":1.0837601189492814,"rawLoad":13500,"rawLoadUser":7531,"rawLoadSystem":5641,"rawLoadNice":0,"rawLoadIdle":16765,"rawLoadIrq":328},{"load":40.34316175245711,"loadUser":26.183574879227052,"loadSystem":13.899716808262536,"loadNice":0,"loadIdle":59.6568382475429,"loadIrq":0.25987006496751625,"rawLoad":12109,"rawLoadUser":7859,"rawLoadSystem":4172,"rawLoadNice":0,"rawLoadIdle":17906,"rawLoadIrq":78},{"load":40.78,"loadUser":25.52333333333333,"loadSystem":15.049999999999999,"loadNice":0,"loadIdle":59.21999999999999,"loadIrq":0.20666666666666667,"rawLoad":12234,"rawLoadUser":7657,"rawLoadSystem":4515,"rawLoadNice":0,"rawLoadIdle":17766,"rawLoadIrq":62},{"load":41.214916063963905,"loadUser":27.57945723575078,"loadSystem":12.958662331630283,"loadNice":0,"loadIdle":58.785083936036095,"loadIrq":0.6767964965828412,"rawLoad":12423,"rawLoadUser":8313,"rawLoadSystem":3906,"rawLoadNice":0,"rawLoadIdle":17719,"rawLoadIrq":204}]}', '{"ESTABLISHED":35,"CLOSE":0,"TIME_WAIT":18,"LISTEN":32,"CLOSE_WAIT":4,"UNKNOWN":57,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":3}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":220031168,"rx_dropped":0,"rx_errors":0,"tx_bytes":21839529,"tx_dropped":0,"tx_errors":0,"rx_sec":14003.673447009156,"tx_sec":2829.2669554251875,"ms":36478}]', '{"total":10685313024,"free":4764921856,"used":5920391168,"active":5920391168,"available":4764921856,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":57671680,"swapfree":2492465152}'), (115, '2022-03-29 22:10:48', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53546950656,"available":73729200128,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":40.04996714822235,"currentLoadUser":21.089218938847022,"currentLoadSystem":18.023053025202586,"currentLoadNice":0,"currentLoadIdle":59.95003285177765,"currentLoadIrq":0.9376951841727436,"rawCurrentLoad":49374,"rawCurrentLoadUser":25999,"rawCurrentLoadSystem":22219,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":73907,"rawCurrentLoadIrq":1156,"cpus":[{"load":42.69045323047252,"loadUser":18.93603342976535,"loadSystem":21.89649630343941,"loadNice":0,"loadIdle":57.309546769527486,"loadIrq":1.8579234972677594,"rawLoad":13281,"rawLoadUser":5891,"rawLoadSystem":6812,"rawLoadNice":0,"rawLoadIdle":17829,"rawLoadIrq":578},{"load":39.161227154047,"loadUser":22.640339425587467,"loadSystem":16.16514360313316,"loadNice":0,"loadIdle":60.838772845953,"loadIrq":0.35574412532637073,"rawLoad":11999,"rawLoadUser":6937,"rawLoadSystem":4953,"rawLoadNice":0,"rawLoadIdle":18641,"rawLoadIrq":109},{"load":39.49061224489796,"loadUser":21.2734693877551,"loadSystem":17.910204081632653,"loadNice":0,"loadIdle":60.50938775510204,"loadIrq":0.30693877551020404,"rawLoad":12094,"rawLoadUser":6515,"rawLoadSystem":5485,"rawLoadNice":0,"rawLoadIdle":18531,"rawLoadIrq":94},{"load":38.82741215298001,"loadUser":21.53627127418624,"loadSystem":16.077784249013135,"loadNice":0,"loadIdle":61.17258784702,"loadIrq":1.2133566297806253,"rawLoad":12000,"rawLoadUser":6656,"rawLoadSystem":4969,"rawLoadNice":0,"rawLoadIdle":18906,"rawLoadIrq":375}]}', '{"ESTABLISHED":34,"CLOSE":0,"TIME_WAIT":19,"LISTEN":32,"CLOSE_WAIT":3,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":2}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":220113590,"rx_dropped":0,"rx_errors":0,"tx_bytes":21864674,"tx_dropped":0,"tx_errors":0,"rx_sec":3376.152050137222,"tx_sec":1029.9840249047638,"ms":24413}]', '{"total":10685313024,"free":4682379264,"used":6002933760,"active":6002933760,"available":4682379264,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":57671680,"swapfree":2492465152}'), (116, '2022-03-29 22:11:17', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53548105728,"available":73728045056,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":36.06491111354392,"currentLoadUser":20.49988631291738,"currentLoadSystem":14.9873259956041,"currentLoadNice":0,"currentLoadIdle":63.93508888645608,"currentLoadIrq":0.5776988050224426,"rawCurrentLoad":42826,"rawCurrentLoadUser":24343,"rawCurrentLoadSystem":17797,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":75921,"rawCurrentLoadIrq":686,"cpus":[{"load":39.52874331550802,"loadUser":20.2072192513369,"loadSystem":17.96457219251337,"loadNice":0,"loadIdle":60.47125668449198,"loadIrq":1.356951871657754,"rawLoad":11827,"rawLoadUser":6046,"rawLoadSystem":5375,"rawLoadNice":0,"rawLoadIdle":18093,"rawLoadIrq":406},{"load":35.04380475594493,"loadUser":21.618239014984947,"loadSystem":13.266583229036296,"loadNice":0,"loadIdle":64.95619524405507,"loadIrq":0.1589825119236884,"rawLoad":10360,"rawLoadUser":6391,"rawLoadSystem":3922,"rawLoadNice":0,"rawLoadIdle":19203,"rawLoadIrq":47},{"load":35.60198803124049,"loadUser":20.97237718497481,"loadSystem":14.419988504581264,"loadNice":0,"loadIdle":64.3980119687595,"loadIrq":0.20962234168441693,"rawLoad":10530,"rawLoadUser":6203,"rawLoadSystem":4265,"rawLoadNice":0,"rawLoadIdle":19047,"rawLoadIrq":62},{"load":34.05194192744298,"loadUser":19.210428807222016,"loadSystem":14.265503419004952,"loadNice":0,"loadIdle":65.94805807255702,"loadIrq":0.5760097012160205,"rawLoad":10109,"rawLoadUser":5703,"rawLoadSystem":4235,"rawLoadNice":0,"rawLoadIdle":19578,"rawLoadIrq":171}]}', '{"ESTABLISHED":32,"CLOSE":0,"TIME_WAIT":22,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":220198072,"rx_dropped":0,"rx_errors":0,"tx_bytes":21887879,"tx_dropped":0,"tx_errors":0,"rx_sec":2905.058285478491,"tx_sec":797.9436745641484,"ms":29081}]', '{"total":10685313024,"free":4748369920,"used":5936943104,"active":5936943104,"available":4748369920,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":57671680,"swapfree":2492465152}'), (117, '2022-03-29 22:11:48', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53548122112,"available":73728028672,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":26.56928739596114,"currentLoadUser":15.22117584640382,"currentLoadSystem":10.828331730609808,"currentLoadNice":0,"currentLoadIdle":73.43071260403886,"currentLoadIrq":0.519779818947508,"rawCurrentLoad":32050,"rawCurrentLoadUser":18361,"rawCurrentLoadSystem":13062,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":88578,"rawCurrentLoadIrq":627,"cpus":[{"load":30.57542047410939,"loadUser":15.676731558733941,"loadSystem":14.226592504304067,"loadNice":0,"loadIdle":69.4245795258906,"loadIrq":0.6720964110713813,"rawLoad":9235,"rawLoadUser":4735,"rawLoadSystem":4297,"rawLoadNice":0,"rawLoadIdle":20969,"rawLoadIrq":203},{"load":25.650161499783557,"loadUser":16.076720721920683,"loadSystem":9.466884219639706,"loadNice":0,"loadIdle":74.34983850021645,"loadIrq":0.1065565582231694,"rawLoad":7703,"rawLoadUser":4828,"rawLoadSystem":2843,"rawLoadNice":0,"rawLoadIdle":22328,"rawLoadIrq":32},{"load":25.082409349715313,"loadUser":14.257649918423068,"loadSystem":10.718209969034062,"loadNice":0,"loadIdle":74.91759065028468,"loadIrq":0.10654946225818268,"rawLoad":7533,"rawLoadUser":4282,"rawLoadSystem":3219,"rawLoadNice":0,"rawLoadIdle":22500,"rawLoadIrq":32},{"load":24.963768115942027,"loadUser":14.874835309617918,"loadSystem":8.903162055335969,"loadNice":0,"loadIdle":75.03623188405797,"loadIrq":1.185770750988142,"rawLoad":7579,"rawLoadUser":4516,"rawLoadSystem":2703,"rawLoadNice":0,"rawLoadIdle":22781,"rawLoadIrq":360}]}', '{"ESTABLISHED":30,"CLOSE":0,"TIME_WAIT":17,"LISTEN":32,"CLOSE_WAIT":3,"UNKNOWN":22,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":220241498,"rx_dropped":0,"rx_errors":0,"tx_bytes":21895411,"tx_dropped":0,"tx_errors":0,"rx_sec":1461.8595569918534,"tx_sec":253.55147108328285,"ms":29706}]', '{"total":10685313024,"free":4731498496,"used":5953814528,"active":5953814528,"available":4731498496,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":57671680,"swapfree":2492465152}'), (118, '2022-03-29 22:12:18', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53549010944,"available":73727139840,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":36.16447172987424,"currentLoadUser":21.504604416278838,"currentLoadSystem":13.989833976961416,"currentLoadNice":0,"currentLoadIdle":63.83552827012575,"currentLoadIrq":0.6700333366339901,"rawCurrentLoad":43827,"rawCurrentLoadUser":26061,"rawCurrentLoadSystem":16954,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":77361,"rawCurrentLoadIrq":812,"cpus":[{"load":39.29494097256287,"loadUser":20.949017299453875,"loadSystem":16.75986788318781,"loadNice":0,"loadIdle":60.70505902743712,"loadIrq":1.5860557899211876,"rawLoad":12016,"rawLoadUser":6406,"rawLoadSystem":5125,"rawLoadNice":0,"rawLoadIdle":18563,"rawLoadIrq":485},{"load":35.94060718546997,"loadUser":23.303062441999202,"loadSystem":12.379026912369085,"loadNice":0,"loadIdle":64.05939281453003,"loadIrq":0.2585178311016837,"rawLoad":10844,"rawLoadUser":7031,"rawLoadSystem":3735,"rawLoadNice":0,"rawLoadIdle":19328,"rawLoadIrq":78},{"load":36.078301260783014,"loadUser":21.357000663570005,"loadSystem":14.568679495686796,"loadNice":0,"loadIdle":63.92169873921699,"loadIrq":0.152621101526211,"rawLoad":10874,"rawLoadUser":6437,"rawLoadSystem":4391,"rawLoadNice":0,"rawLoadIdle":19266,"rawLoadIrq":46},{"load":33.313529392349075,"loadUser":20.421163811598507,"loadSystem":12.22233224411658,"loadNice":0,"loadIdle":66.68647060765093,"loadIrq":0.6700333366339901,"rawLoad":10093,"rawLoadUser":6187,"rawLoadSystem":3703,"rawLoadNice":0,"rawLoadIdle":20204,"rawLoadIrq":203}]}', '{"ESTABLISHED":37,"CLOSE":0,"TIME_WAIT":17,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":30,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":220381780,"rx_dropped":0,"rx_errors":0,"tx_bytes":21929004,"tx_dropped":0,"tx_errors":0,"rx_sec":4602.1258447608425,"tx_sec":1102.060232268224,"ms":30482}]', '{"total":10685313024,"free":4680601600,"used":6004711424,"active":6004711424,"available":4680601600,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":57671680,"swapfree":2492465152}'), (119, '2022-03-29 22:12:49', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53549010944,"available":73727139840,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":52.36928773901788,"currentLoadUser":35.40741590339336,"currentLoadSystem":16.29581687994626,"currentLoadNice":0,"currentLoadIdle":47.63071226098212,"currentLoadIrq":0.6660549556782618,"rawCurrentLoad":63923,"rawCurrentLoadUser":43219,"rawCurrentLoadSystem":19891,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":58139,"rawCurrentLoadIrq":813,"cpus":[{"load":55.7471078129557,"loadUser":35.1890858420558,"loadSystem":18.78544346868013,"loadNice":0,"loadIdle":44.252892187044296,"loadIrq":1.7725785022197738,"rawLoad":17203,"rawLoadUser":10859,"rawLoadSystem":5797,"rawLoadNice":0,"rawLoadIdle":13656,"rawLoadIrq":547},{"load":50.386627620019084,"loadUser":36.14556941199697,"loadSystem":13.98440327728604,"loadNice":0,"loadIdle":49.613372379980916,"loadIrq":0.2566549307360732,"rawLoad":15313,"rawLoadUser":10985,"rawLoadSystem":4250,"rawLoadNice":0,"rawLoadIdle":15078,"rawLoadIrq":78},{"load":55.14043280931396,"loadUser":36.84470170361113,"loadSystem":17.986581595737682,"loadNice":0,"loadIdle":44.85956719068605,"loadIrq":0.30914950996513846,"rawLoad":16766,"rawLoadUser":11203,"rawLoadSystem":5469,"rawLoadNice":0,"rawLoadIdle":13640,"rawLoadIrq":94},{"load":48.15168058935736,"loadUser":33.4539235677169,"loadSystem":14.388607511675328,"loadNice":0,"loadIdle":51.84831941064264,"loadIrq":0.30914950996513846,"rawLoad":14641,"rawLoadUser":10172,"rawLoadSystem":4375,"rawLoadNice":0,"rawLoadIdle":15765,"rawLoadIrq":94}]}', '{"ESTABLISHED":36,"CLOSE":0,"TIME_WAIT":10,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":220423666,"rx_dropped":0,"rx_errors":0,"tx_bytes":21938955,"tx_dropped":0,"tx_errors":0,"rx_sec":1331.8706477153487,"tx_sec":316.4170561862062,"ms":31449}]', '{"total":10685313024,"free":4637437952,"used":6047875072,"active":6047875072,"available":4637437952,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":57671680,"swapfree":2492465152}'), (120, '2022-03-29 22:13:17', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53549723648,"available":73726427136,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":46.896966758887004,"currentLoadUser":28.157571401108317,"currentLoadSystem":17.99466737991157,"currentLoadNice":0,"currentLoadIdle":53.103033241112996,"currentLoadIrq":0.7447279778671191,"rawCurrentLoad":56108,"rawCurrentLoadUser":33688,"rawCurrentLoadSystem":21529,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":63533,"rawCurrentLoadIrq":891,"cpus":[{"load":50.078049752565676,"loadUser":26.154970274668703,"loadSystem":22.521505197781394,"loadNice":0,"loadIdle":49.921950247434324,"loadIrq":1.4015742801155802,"rawLoad":15078,"rawLoadUser":7875,"rawLoadSystem":6781,"rawLoadNice":0,"rawLoadIdle":15031,"rawLoadIrq":422},{"load":44.88006450312437,"loadUser":28.871867231069004,"loadSystem":15.746153329301887,"loadNice":0,"loadIdle":55.11993549687563,"loadIrq":0.2620439427534771,"rawLoad":13359,"rawLoadUser":8594,"rawLoadSystem":4687,"rawLoadNice":0,"rawLoadIdle":16407,"rawLoadIrq":78},{"load":46.61722263239144,"loadUser":28.4750654406336,"loadSystem":17.773004899657696,"loadNice":0,"loadIdle":53.38277736760857,"loadIrq":0.36915229210014094,"rawLoad":13891,"rawLoadUser":8485,"rawLoadSystem":5296,"rawLoadNice":0,"rawLoadIdle":15907,"rawLoadIrq":110},{"load":45.982381206620396,"loadUser":29.144420715429792,"loadSystem":15.900293646556326,"loadNice":0,"loadIdle":54.017618793379604,"loadIrq":0.9376668446342766,"rawLoad":13780,"rawLoadUser":8734,"rawLoadSystem":4765,"rawLoadNice":0,"rawLoadIdle":16188,"rawLoadIrq":281}]}', '{"ESTABLISHED":33,"CLOSE":0,"TIME_WAIT":14,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":220509496,"rx_dropped":0,"rx_errors":0,"tx_bytes":21958062,"tx_dropped":0,"tx_errors":0,"rx_sec":3017.7202728359466,"tx_sec":671.7882005484846,"ms":28442}]', '{"total":10685313024,"free":4612562944,"used":6072750080,"active":6072750080,"available":4612562944,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":57671680,"swapfree":2492465152}'), (121, '2022-03-29 22:13:50', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53549879296,"available":73726271488,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":37.74140590841218,"currentLoadUser":23.1502182037173,"currentLoadSystem":13.947713604527417,"currentLoadNice":0,"currentLoadIdle":62.25859409158782,"currentLoadIrq":0.6434741001674683,"rawCurrentLoad":45749,"rawCurrentLoadUser":28062,"rawCurrentLoadSystem":16907,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":75468,"rawCurrentLoadIrq":780,"cpus":[{"load":41.76430273163408,"loadUser":23.15198590124343,"loadSystem":16.879344668907674,"loadNice":0,"loadIdle":58.23569726836592,"loadIrq":1.7329721614829805,"rawLoad":12797,"rawLoadUser":7094,"rawLoadSystem":5172,"rawLoadNice":0,"rawLoadIdle":17844,"rawLoadIrq":531},{"load":36.973815048060985,"loadUser":23.768644348690753,"loadSystem":12.999668544912165,"loadNice":0,"loadIdle":63.026184951939015,"loadIrq":0.20550215445807093,"rawLoad":11155,"rawLoadUser":7171,"rawLoadSystem":3922,"rawLoadNice":0,"rawLoadIdle":19015,"rawLoadIrq":62},{"load":36.57768197645498,"loadUser":23.677665395456806,"loadSystem":12.747471397778146,"loadNice":0,"loadIdle":63.422318023545024,"loadIrq":0.15254518322002983,"rawLoad":11030,"rawLoadUser":7140,"rawLoadSystem":3844,"rawLoadNice":0,"rawLoadIdle":19125,"rawLoadIrq":46},{"load":35.59221182770818,"loadUser":22.00588410300486,"loadSystem":13.120227430498165,"loadNice":0,"loadIdle":64.40778817229183,"loadIrq":0.46610029420515026,"rawLoad":10767,"rawLoadUser":6657,"rawLoadSystem":3969,"rawLoadNice":0,"rawLoadIdle":19484,"rawLoadIrq":141}]}', '{"ESTABLISHED":32,"CLOSE":0,"TIME_WAIT":19,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":25,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":220602875,"rx_dropped":0,"rx_errors":0,"tx_bytes":21982518,"tx_dropped":0,"tx_errors":0,"rx_sec":2963.2838283828382,"tx_sec":776.0853008377761,"ms":31512}]', '{"total":10685313024,"free":4731305984,"used":5954007040,"active":5954007040,"available":4731305984,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":57671680,"swapfree":2492465152}'), (122, '2022-03-29 22:14:18', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53550100480,"available":73726050304,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":43.0989961723362,"currentLoadUser":26.31041440065095,"currentLoadSystem":15.958285937279454,"currentLoadNice":0,"currentLoadIdle":56.9010038276638,"currentLoadIrq":0.8302958344057988,"rawCurrentLoad":51908,"rawCurrentLoadUser":31688,"rawCurrentLoadSystem":19220,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":68531,"rawCurrentLoadIrq":1000,"cpus":[{"load":46.297942386831274,"loadUser":24.641975308641975,"loadSystem":19.960493827160494,"loadNice":0,"loadIdle":53.70205761316872,"loadIrq":1.6954732510288066,"rawLoad":14063,"rawLoadUser":7485,"rawLoadSystem":6063,"rawLoadNice":0,"rawLoadIdle":16312,"rawLoadIrq":515},{"load":41.91188750459267,"loadUser":28.026988209359033,"loadSystem":13.62102942650055,"loadNice":0,"loadIdle":58.08811249540733,"loadIrq":0.26386986873309065,"rawLoad":12548,"rawLoadUser":8391,"rawLoadSystem":4078,"rawLoadNice":0,"rawLoadIdle":17391,"rawLoadIrq":79},{"load":42.35203689469639,"loadUser":26.63168799919794,"loadSystem":15.509808508505163,"loadNice":0,"loadIdle":57.64796310530361,"loadIrq":0.21054038699328276,"rawLoad":12673,"rawLoadUser":7969,"rawLoadSystem":4641,"rawLoadNice":0,"rawLoadIdle":17250,"rawLoadIrq":63},{"load":41.79855638699424,"loadUser":25.96847890868154,"loadSystem":14.694391099927156,"loadNice":0,"loadIdle":58.201443613005765,"loadIrq":1.1356863783855373,"rawLoad":12624,"rawLoadUser":7843,"rawLoadSystem":4438,"rawLoadNice":0,"rawLoadIdle":17578,"rawLoadIrq":343}]}', '{"ESTABLISHED":30,"CLOSE":0,"TIME_WAIT":17,"LISTEN":32,"CLOSE_WAIT":3,"UNKNOWN":26,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":220663450,"rx_dropped":0,"rx_errors":0,"tx_bytes":21991073,"tx_dropped":0,"tx_errors":0,"rx_sec":2044.173725238754,"tx_sec":288.6984105557993,"ms":29633}]', '{"total":10685313024,"free":4759867392,"used":5925445632,"active":5925445632,"available":4759867392,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":57671680,"swapfree":2492465152}'), (123, '2022-03-29 22:14:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53550174208,"available":73725976576,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":28.52388001036989,"currentLoadUser":15.339906503759085,"currentLoadSystem":12.80513811184425,"currentLoadNice":0,"currentLoadIdle":71.47611998963012,"currentLoadIrq":0.3788353947665521,"rawCurrentLoad":34108,"rawCurrentLoadUser":18343,"rawCurrentLoadSystem":15312,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":85469,"rawCurrentLoadIrq":453,"cpus":[{"load":30.33199027671406,"loadUser":15.347474276580867,"loadSystem":14.152042889014686,"loadNice":0,"loadIdle":69.66800972328593,"loadIrq":0.8324731111185109,"rawLoad":9109,"rawLoadUser":4609,"rawLoadSystem":4250,"rawLoadNice":0,"rawLoadIdle":20922,"rawLoadIrq":250},{"load":27.755019810623864,"loadUser":15.213887583103888,"loadSystem":12.541132227519977,"loadNice":0,"loadIdle":72.24498018937612,"loadIrq":0,"rawLoad":8266,"rawLoadUser":4531,"rawLoadSystem":3735,"rawLoadNice":0,"rawLoadIdle":21516,"rawLoadIrq":0},{"load":28.036630773875416,"loadUser":15.303076045754924,"loadSystem":12.629566267485156,"loadNice":0,"loadIdle":71.96336922612458,"loadIrq":0.10398846063533596,"rawLoad":8358,"rawLoadUser":4562,"rawLoadSystem":3765,"rawLoadNice":0,"rawLoadIdle":21453,"rawLoadIrq":31},{"load":27.96047140520148,"loadUser":15.494274363168964,"loadSystem":11.891964077054052,"loadNice":0,"loadIdle":72.03952859479853,"loadIrq":0.5742329649784663,"rawLoad":8375,"rawLoadUser":4641,"rawLoadSystem":3562,"rawLoadNice":0,"rawLoadIdle":21578,"rawLoadIrq":172}]}', '{"ESTABLISHED":39,"CLOSE":0,"TIME_WAIT":23,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":221131610,"rx_dropped":0,"rx_errors":0,"tx_bytes":22143898,"tx_dropped":0,"tx_errors":0,"rx_sec":17430.28407610112,"tx_sec":5689.89910272162,"ms":26859}]', '{"total":10685313024,"free":4465287168,"used":6220025856,"active":6220025856,"available":4465287168,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":55574528,"swapfree":2494562304}'), (124, '2022-03-29 22:15:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53549498368,"available":73726652416,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.553844242951186,"currentLoadUser":6.430671138160891,"currentLoadSystem":4.800231855256076,"currentLoadNice":0,"currentLoadIdle":88.44615575704881,"currentLoadIrq":0.3229412495342194,"rawCurrentLoad":13953,"rawCurrentLoadUser":7766,"rawCurrentLoadSystem":5797,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":106812,"rawCurrentLoadIrq":390,"cpus":[{"load":12.020739077309203,"loadUser":6.139163171625772,"loadSystem":5.260724546745484,"loadNice":0,"loadIdle":87.9792609226908,"loadIrq":0.6208513589379479,"rawLoad":3640,"rawLoadUser":1859,"rawLoadSystem":1593,"rawLoadNice":0,"rawLoadIdle":26641,"rawLoadIrq":188},{"load":10.780052423769867,"loadUser":6.065231095922227,"loadSystem":4.562195162414148,"loadNice":0,"loadIdle":89.21994757623013,"loadIrq":0.1526261654334915,"rawLoad":3249,"rawLoadUser":1828,"rawLoadSystem":1375,"rawLoadNice":0,"rawLoadIdle":26890,"rawLoadIrq":46},{"load":11.500347993238988,"loadUser":6.164451662081994,"loadSystem":5.077387067908394,"loadNice":0,"loadIdle":88.49965200676101,"loadIrq":0.25850926324859974,"rawLoad":3470,"rawLoadUser":1860,"rawLoadSystem":1532,"rawLoadNice":0,"rawLoadIdle":26703,"rawLoadIrq":78},{"load":11.911706217685271,"loadUser":7.3545008617261045,"loadSystem":4.298687524857484,"loadNice":0,"loadIdle":88.08829378231474,"loadIrq":0.2585178311016837,"rawLoad":3594,"rawLoadUser":2219,"rawLoadSystem":1297,"rawLoadNice":0,"rawLoadIdle":26578,"rawLoadIrq":78}]}', '{"ESTABLISHED":36,"CLOSE":0,"TIME_WAIT":19,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":221204166,"rx_dropped":0,"rx_errors":0,"tx_bytes":22153577,"tx_dropped":0,"tx_errors":0,"rx_sec":2396.7231526442706,"tx_sec":319.72384633171475,"ms":30273}]', '{"total":10685313024,"free":4546396160,"used":6138916864,"active":6138916864,"available":4546396160,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":55574528,"swapfree":2494562304}'), (125, '2022-03-29 22:15:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53549854720,"available":73726296064,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":21.770315159728305,"currentLoadUser":11.943677799996696,"currentLoadSystem":8.727627295113123,"currentLoadNice":0,"currentLoadIdle":78.2296848402717,"currentLoadIrq":1.0990100646184866,"rawCurrentLoad":26346,"rawCurrentLoadUser":14454,"rawCurrentLoadSystem":10562,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":94672,"rawCurrentLoadIrq":1330,"cpus":[{"load":24.309954379861498,"loadUser":11.487085234172438,"loadSystem":11.02760182480554,"loadNice":0,"loadIdle":75.6900456201385,"loadIrq":1.7952673208835208,"rawLoad":7407,"rawLoadUser":3500,"rawLoadSystem":3360,"rawLoadNice":0,"rawLoadIdle":23062,"rawLoadIrq":547},{"load":18.31141082993924,"loadUser":11.477598985110502,"loadSystem":6.726981371436203,"loadNice":0,"loadIdle":81.68858917006075,"loadIrq":0.10683047339253524,"rawLoad":5485,"rawLoadUser":3438,"rawLoadSystem":2015,"rawLoadNice":0,"rawLoadIdle":24469,"rawLoadIrq":32},{"load":21.674483584472608,"loadUser":12.630143365598908,"loadSystem":8.575325150517248,"loadNice":0,"loadIdle":78.3255164155274,"loadIrq":0.46901506835645146,"rawLoad":6516,"rawLoadUser":3797,"rawLoadSystem":2578,"rawLoadNice":0,"rawLoadIdle":23547,"rawLoadIrq":141},{"load":22.723699724878816,"loadUser":12.18066291104415,"loadSystem":8.545132975239094,"loadNice":0,"loadIdle":77.27630027512117,"loadIrq":1.997903838595572,"rawLoad":6938,"rawLoadUser":3719,"rawLoadSystem":2609,"rawLoadNice":0,"rawLoadIdle":23594,"rawLoadIrq":610}]}', '{"ESTABLISHED":37,"CLOSE":0,"TIME_WAIT":18,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":221340325,"rx_dropped":0,"rx_errors":0,"tx_bytes":22177059,"tx_dropped":0,"tx_errors":0,"rx_sec":4582.626548196015,"tx_sec":790.3204092622509,"ms":29712}]', '{"total":10685313024,"free":4521795584,"used":6163517440,"active":6163517440,"available":4521795584,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":55574528,"swapfree":2494562304}'), (126, '2022-03-29 22:16:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53550837760,"available":73725313024,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.9974988158845965,"currentLoadUser":3.739311800437084,"currentLoadSystem":2.973168360436419,"currentLoadNice":0,"currentLoadIdle":93.0025011841154,"currentLoadIrq":0.28501865501109325,"rawCurrentLoad":8421,"rawCurrentLoadUser":4500,"rawCurrentLoadSystem":3578,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":111922,"rawCurrentLoadIrq":343,"cpus":[{"load":8.912556053811658,"loadUser":3.6599841730414138,"loadSystem":4.171063044051702,"loadNice":0,"loadIdle":91.08744394618834,"loadIrq":1.081508836718544,"rawLoad":2703,"rawLoadUser":1110,"rawLoadSystem":1265,"rawLoadNice":0,"rawLoadIdle":27625,"rawLoadIrq":328},{"load":6.093333333333333,"loadUser":3.6966666666666668,"loadSystem":2.396666666666667,"loadNice":0,"loadIdle":93.90666666666667,"loadIrq":0,"rawLoad":1828,"rawLoadUser":1109,"rawLoadSystem":719,"rawLoadNice":0,"rawLoadIdle":28172,"rawLoadIrq":0},{"load":6.143538117937265,"loadUser":3.4367812260408677,"loadSystem":2.7067568918963962,"loadNice":0,"loadIdle":93.85646188206273,"loadIrq":0,"rawLoad":1843,"rawLoadUser":1031,"rawLoadSystem":812,"rawLoadNice":0,"rawLoadIdle":28156,"rawLoadIrq":0},{"load":6.819696162046908,"loadUser":4.164445628997868,"loadSystem":2.605277185501066,"loadNice":0,"loadIdle":93.18030383795309,"loadIrq":0.04997334754797442,"rawLoad":2047,"rawLoadUser":1250,"rawLoadSystem":782,"rawLoadNice":0,"rawLoadIdle":27969,"rawLoadIrq":15}]}', '{"ESTABLISHED":37,"CLOSE":0,"TIME_WAIT":18,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":27,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":221404084,"rx_dropped":0,"rx_errors":0,"tx_bytes":22189869,"tx_dropped":0,"tx_errors":0,"rx_sec":2128.492739108663,"tx_sec":427.64146219328995,"ms":29955}]', '{"total":10685313024,"free":4591132672,"used":6094180352,"active":6094180352,"available":4591132672,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":55574528,"swapfree":2494562304}'), (127, '2022-03-29 22:16:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53551095808,"available":73725054976,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":17.756089491749723,"currentLoadUser":10.635623009801083,"currentLoadSystem":6.474504776477399,"currentLoadNice":0,"currentLoadIdle":82.24391050825028,"currentLoadIrq":0.6459617054712378,"rawCurrentLoad":21468,"rawCurrentLoadUser":12859,"rawCurrentLoadSystem":7828,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":99437,"rawCurrentLoadIrq":781,"cpus":[{"load":19.456521739130434,"loadUser":10.447957839262187,"loadSystem":7.928194993412385,"loadNice":0,"loadIdle":80.54347826086956,"loadIrq":1.080368906455863,"rawLoad":5907,"rawLoadUser":3172,"rawLoadSystem":2407,"rawLoadNice":0,"rawLoadIdle":24453,"rawLoadIrq":328},{"load":15.170556552962298,"loadUser":10.08045747722588,"loadSystem":4.933838686082851,"loadNice":0,"loadIdle":84.8294434470377,"loadIrq":0.1562603896535674,"rawLoad":4563,"rawLoadUser":3032,"rawLoadSystem":1484,"rawLoadNice":0,"rawLoadIdle":25515,"rawLoadIrq":47},{"load":17.98606502986065,"loadUser":10.72992700729927,"loadSystem":6.894492368944924,"loadNice":0,"loadIdle":82.01393497013935,"loadIrq":0.36164565361645656,"rawLoad":5421,"rawLoadUser":3234,"rawLoadSystem":2078,"rawLoadNice":0,"rawLoadIdle":24719,"rawLoadIrq":109},{"load":18.389553862894452,"loadUser":11.2803772216177,"loadSystem":6.1298512876314835,"loadNice":0,"loadIdle":81.61044613710555,"loadIrq":0.9793253536452665,"rawLoad":5577,"rawLoadUser":3421,"rawLoadSystem":1859,"rawLoadNice":0,"rawLoadIdle":24750,"rawLoadIrq":297}]}', '{"ESTABLISHED":29,"CLOSE":0,"TIME_WAIT":13,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":221441045,"rx_dropped":0,"rx_errors":0,"tx_bytes":22195998,"tx_dropped":0,"tx_errors":0,"rx_sec":1217.9858959994726,"tx_sec":201.97060568114415,"ms":30346}]', '{"total":10685313024,"free":4557967360,"used":6127345664,"active":6127341568,"available":4557971456,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":55574528,"swapfree":2494562304}'), (128, '2022-03-29 22:17:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53551505408,"available":73724645376,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":22.135573877591526,"currentLoadUser":13.890657691258074,"currentLoadSystem":7.4832744804545035,"currentLoadNice":0,"currentLoadIdle":77.86442612240847,"currentLoadIrq":0.7616417058789478,"rawCurrentLoad":26767,"rawCurrentLoadUser":16797,"rawCurrentLoadSystem":9049,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":94156,"rawCurrentLoadIrq":921,"cpus":[{"load":23.400838904181413,"loadUser":12.953860270022282,"loadSystem":8.756062393498492,"loadNice":0,"loadIdle":76.59916109581859,"loadIrq":1.6909162406606373,"rawLoad":7141,"rawLoadUser":3953,"rawLoadSystem":2672,"rawLoadNice":0,"rawLoadIdle":23375,"rawLoadIrq":516},{"load":19.706450109831593,"loadUser":13.466018771217467,"loadSystem":6.087332756440126,"loadNice":0,"loadIdle":80.2935498901684,"loadIrq":0.15309858217399985,"rawLoad":5921,"rawLoadUser":4046,"rawLoadSystem":1829,"rawLoadNice":0,"rawLoadIdle":24125,"rawLoadIrq":46},{"load":23.32856810399282,"loadUser":15.066990258984674,"loadSystem":8.00226071345457,"loadNice":0,"loadIdle":76.67143189600718,"loadIrq":0.2593171315535756,"rawLoad":7017,"rawLoadUser":4532,"rawLoadSystem":2407,"rawLoadNice":0,"rawLoadIdle":23062,"rawLoadIrq":78},{"load":22.085727494881446,"loadUser":14.08757677828413,"loadSystem":7.070206723466085,"loadNice":0,"loadIdle":77.91427250511856,"loadIrq":0.9279439931312331,"rawLoad":6688,"rawLoadUser":4266,"rawLoadSystem":2141,"rawLoadNice":0,"rawLoadIdle":23594,"rawLoadIrq":281}]}', '{"ESTABLISHED":30,"CLOSE":0,"TIME_WAIT":12,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":27,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":221545187,"rx_dropped":0,"rx_errors":0,"tx_bytes":22216755,"tx_dropped":0,"tx_errors":0,"rx_sec":3483.709105506122,"tx_sec":694.3533819495551,"ms":29894}]', '{"total":10685313024,"free":4533522432,"used":6151790592,"active":6151790592,"available":4533522432,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":55574528,"swapfree":2494562304}'), (129, '2022-03-29 22:17:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53551722496,"available":73724428288,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":17.494679133092063,"currentLoadUser":10.49349487788921,"currentLoadSystem":6.430588566554314,"currentLoadNice":0,"currentLoadIdle":82.50532086690794,"currentLoadIrq":0.5705956886485412,"rawCurrentLoad":21125,"rawCurrentLoadUser":12671,"rawCurrentLoadSystem":7765,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":99626,"rawCurrentLoadIrq":689,"cpus":[{"load":19.647736625514405,"loadUser":9.31028806584362,"loadSystem":9.155555555555555,"loadNice":0,"loadIdle":80.3522633744856,"loadIrq":1.1818930041152265,"rawLoad":5968,"rawLoadUser":2828,"rawLoadSystem":2781,"rawLoadNice":0,"rawLoadIdle":24407,"rawLoadIrq":359},{"load":15.506792754395313,"loadUser":10.199120937666489,"loadSystem":5.254395311667555,"loadNice":0,"loadIdle":84.49320724560468,"loadIrq":0.05327650506126798,"rawLoad":4657,"rawLoadUser":3063,"rawLoadSystem":1578,"rawLoadNice":0,"rawLoadIdle":25375,"rawLoadIrq":16},{"load":17.44533794111783,"loadUser":11.367714494583637,"loadSystem":5.815112647039277,"loadNice":0,"loadIdle":82.55466205888217,"loadIrq":0.26251079949491596,"rawLoad":5250,"rawLoadUser":3421,"rawLoadSystem":1750,"rawLoadNice":0,"rawLoadIdle":24844,"rawLoadIrq":79},{"load":17.355371900826448,"loadUser":11.104132231404959,"loadSystem":5.474380165289256,"loadNice":0,"loadIdle":82.64462809917356,"loadIrq":0.7768595041322314,"rawLoad":5250,"rawLoadUser":3359,"rawLoadSystem":1656,"rawLoadNice":0,"rawLoadIdle":25000,"rawLoadIrq":235}]}', '{"ESTABLISHED":32,"CLOSE":0,"TIME_WAIT":8,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":221642671,"rx_dropped":0,"rx_errors":0,"tx_bytes":22250479,"tx_dropped":0,"tx_errors":0,"rx_sec":3243.412297045515,"tx_sec":1122.038860793186,"ms":30056}]', '{"total":10685313024,"free":4522889216,"used":6162423808,"active":6162423808,"available":4522889216,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":55574528,"swapfree":2494562304}'), (130, '2022-03-29 22:18:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53552427008,"available":73723723776,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":20.265690099861118,"currentLoadUser":12.374346934726539,"currentLoadSystem":7.1423847629125055,"currentLoadNice":0,"currentLoadIdle":79.73430990013888,"currentLoadIrq":0.7489584022220752,"rawCurrentLoad":24515,"rawCurrentLoadUser":14969,"rawCurrentLoadSystem":8640,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":96453,"rawCurrentLoadIrq":906,"cpus":[{"load":22.747784841397937,"loadUser":11.578115221186469,"loadSystem":10.036562469119536,"loadNice":0,"loadIdle":77.25221515860207,"loadIrq":1.1331071510919333,"rawLoad":6906,"rawLoadUser":3515,"rawLoadSystem":3047,"rawLoadNice":0,"rawLoadIdle":23453,"rawLoadIrq":344},{"load":16.699410609037326,"loadUser":11.601345276547567,"loadSystem":5.044787053378176,"loadNice":0,"loadIdle":83.30058939096267,"loadIrq":0.0532782791115847,"rawLoad":5015,"rawLoadUser":3484,"rawLoadSystem":1515,"rawLoadNice":0,"rawLoadIdle":25016,"rawLoadIrq":16},{"load":20.278838174273858,"loadUser":13.072199170124483,"loadSystem":6.844813278008299,"loadNice":0,"loadIdle":79.72116182572614,"loadIrq":0.3618257261410789,"rawLoad":6109,"rawLoadUser":3938,"rawLoadSystem":2062,"rawLoadNice":0,"rawLoadIdle":24016,"rawLoadIrq":109},{"load":21.29511049814468,"loadUser":13.24007486947099,"loadSystem":6.620037434735495,"loadNice":0,"loadIdle":78.70488950185532,"loadIrq":1.4349981939382,"rawLoad":6485,"rawLoadUser":4032,"rawLoadSystem":2016,"rawLoadNice":0,"rawLoadIdle":23968,"rawLoadIrq":437}]}', '{"ESTABLISHED":31,"CLOSE":0,"TIME_WAIT":12,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":221738900,"rx_dropped":0,"rx_errors":0,"tx_bytes":22275900,"tx_dropped":0,"tx_errors":0,"rx_sec":3206.3507930161268,"tx_sec":847.0278555244569,"ms":30012}]', '{"total":10685313024,"free":4505559040,"used":6179753984,"active":6179753984,"available":4505559040,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":55574528,"swapfree":2494562304}'), (131, '2022-03-29 22:18:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53549199360,"available":73726951424,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":26.010219446570066,"currentLoadUser":15.736466638690727,"currentLoadSystem":9.064204783885858,"currentLoadNice":0,"currentLoadIdle":73.98978055342992,"currentLoadIrq":1.2095480239934833,"rawCurrentLoad":31611,"rawCurrentLoadUser":19125,"rawCurrentLoadSystem":11016,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":89922,"rawCurrentLoadIrq":1470,"cpus":[{"load":28.310740354535973,"loadUser":14.461678832116789,"loadSystem":11.659280500521376,"loadNice":0,"loadIdle":71.68925964546402,"loadIrq":2.18978102189781,"rawLoad":8688,"rawLoadUser":4438,"rawLoadSystem":3578,"rawLoadNice":0,"rawLoadIdle":22000,"rawLoadIrq":672},{"load":22.92186408542062,"loadUser":15.124904367494926,"loadSystem":7.640621361806872,"loadNice":0,"loadIdle":77.07813591457938,"loadIrq":0.15633835611881713,"rawLoad":6891,"rawLoadUser":4547,"rawLoadSystem":2297,"rawLoadNice":0,"rawLoadIdle":23172,"rawLoadIrq":47},{"load":25.64995357474466,"loadUser":16.68324711500199,"loadSystem":8.499137816686563,"loadNice":0,"loadIdle":74.35004642525533,"loadIrq":0.46756864305610824,"rawLoad":7735,"rawLoadUser":5031,"rawLoadSystem":2563,"rawLoadNice":0,"rawLoadIdle":22421,"rawLoadIrq":141},{"load":27.091360282113236,"loadUser":16.681904264350553,"loadSystem":8.417684320511984,"loadNice":0,"loadIdle":72.90863971788676,"loadIrq":1.991771697250702,"rawLoad":8297,"rawLoadUser":5109,"rawLoadSystem":2578,"rawLoadNice":0,"rawLoadIdle":22329,"rawLoadIrq":610}]}', '{"ESTABLISHED":31,"CLOSE":0,"TIME_WAIT":13,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":221877226,"rx_dropped":0,"rx_errors":0,"tx_bytes":22292515,"tx_dropped":0,"tx_errors":0,"rx_sec":4630.468985371405,"tx_sec":556.1878619489171,"ms":29873}]', '{"total":10685313024,"free":4463640576,"used":6221672448,"active":6221672448,"available":4463640576,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":55574528,"swapfree":2494562304}'), (132, '2022-03-29 22:19:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53549461504,"available":73726689280,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":27.495724934836385,"currentLoadUser":19.456112098019357,"currentLoadSystem":7.651951587999934,"currentLoadNice":0,"currentLoadIdle":72.50427506516361,"currentLoadIrq":0.38766124881709363,"rawCurrentLoad":33123,"rawCurrentLoadUser":23438,"rawCurrentLoadSystem":9218,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":87343,"rawCurrentLoadIrq":467,"cpus":[{"load":30.15307468989179,"loadUser":19.434547373977303,"loadSystem":9.68923198733175,"loadNice":0,"loadIdle":69.8469253101082,"loadIrq":1.0292953285827395,"rawLoad":9140,"rawLoadUser":5891,"rawLoadSystem":2937,"rawLoadNice":0,"rawLoadIdle":21172,"rawLoadIrq":312},{"load":26.08029318673996,"loadUser":18.584041312676995,"loadSystem":7.446276861569215,"loadNice":0,"loadIdle":73.91970681326004,"loadIrq":0.04997501249375312,"rawLoad":7828,"rawLoadUser":5578,"rawLoadSystem":2235,"rawLoadNice":0,"rawLoadIdle":22187,"rawLoadIrq":15},{"load":28.481138979442484,"loadUser":21.15627702747655,"loadSystem":7.118621515534562,"loadNice":0,"loadIdle":71.51886102055751,"loadIrq":0.20624043643137518,"rawLoad":8562,"rawLoadUser":6360,"rawLoadSystem":2140,"rawLoadNice":0,"rawLoadIdle":21500,"rawLoadIrq":62},{"load":25.245203976460417,"loadUser":18.648801409715066,"loadSystem":6.337068191641454,"loadNice":0,"loadIdle":74.75479602353958,"loadIrq":0.2593343751039,"rawLoad":7593,"rawLoadUser":5609,"rawLoadSystem":1906,"rawLoadNice":0,"rawLoadIdle":22484,"rawLoadIrq":78}]}', '{"ESTABLISHED":30,"CLOSE":0,"TIME_WAIT":11,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":31,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":221943778,"rx_dropped":0,"rx_errors":0,"tx_bytes":22309210,"tx_dropped":0,"tx_errors":0,"rx_sec":2221.7325988983475,"tx_sec":557.336004006009,"ms":29955}]', '{"total":10685313024,"free":4619673600,"used":6065639424,"active":6065639424,"available":4619673600,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":56623104,"swapfree":2493513728}'), (133, '2022-03-29 22:19:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53549662208,"available":73726488576,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":25.602501588244515,"currentLoadUser":16.178642442843824,"currentLoadSystem":8.379330544623482,"currentLoadNice":0,"currentLoadIdle":74.39749841175548,"currentLoadIrq":1.0445286007772085,"rawCurrentLoad":31031,"rawCurrentLoadUser":19609,"rawCurrentLoadSystem":10156,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":90172,"rawCurrentLoadIrq":1266,"cpus":[{"load":29.061146831124525,"loadUser":16.86130429077549,"loadSystem":10.55963784280278,"loadNice":0,"loadIdle":70.93885316887547,"loadIrq":1.6402046975462536,"rawLoad":8859,"rawLoadUser":5140,"rawLoadSystem":3219,"rawLoadNice":0,"rawLoadIdle":21625,"rawLoadIrq":500},{"load":22.331423240938168,"loadUser":15.201892324093816,"loadSystem":7.026252665245202,"loadNice":0,"loadIdle":77.66857675906184,"loadIrq":0.10327825159914712,"rawLoad":6703,"rawLoadUser":4563,"rawLoadSystem":2109,"rawLoadNice":0,"rawLoadIdle":23313,"rawLoadIrq":31},{"load":25.27177515577356,"loadUser":16.465597242476466,"loadSystem":8.183083653718679,"loadNice":0,"loadIdle":74.72822484422643,"loadIrq":0.6230942595784171,"rawLoad":7625,"rawLoadUser":4968,"rawLoadSystem":2469,"rawLoadNice":0,"rawLoadIdle":22547,"rawLoadIrq":188},{"load":25.691919688185777,"loadUser":16.17372506632603,"loadSystem":7.726572991385805,"loadNice":0,"loadIdle":74.30808031181422,"loadIrq":1.7916216304739445,"rawLoad":7844,"rawLoadUser":4938,"rawLoadSystem":2359,"rawLoadNice":0,"rawLoadIdle":22687,"rawLoadIrq":547}]}', '{"ESTABLISHED":30,"CLOSE":0,"TIME_WAIT":13,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":27,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":222031163,"rx_dropped":0,"rx_errors":0,"tx_bytes":22327125,"tx_dropped":0,"tx_errors":0,"rx_sec":2903.5419989367356,"tx_sec":595.2618288144604,"ms":30096}]', '{"total":10685313024,"free":4555173888,"used":6130139136,"active":6130139136,"available":4555173888,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":56623104,"swapfree":2493513728}'), (134, '2022-03-29 22:20:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53550645248,"available":73725505536,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":28.032792271801277,"currentLoadUser":17.083689294867582,"currentLoadSystem":10.191726358677794,"currentLoadNice":0,"currentLoadIdle":71.96720772819873,"currentLoadIrq":0.757376618255898,"rawCurrentLoad":34126,"rawCurrentLoadUser":20797,"rawCurrentLoadSystem":12407,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":87610,"rawCurrentLoadIrq":922,"cpus":[{"load":30.209963484611375,"loadUser":15.385367762128324,"loadSystem":13.295513823682839,"loadNice":0,"loadIdle":69.79003651538864,"loadIrq":1.5290818988002086,"rawLoad":9266,"rawLoadUser":4719,"rawLoadSystem":4078,"rawLoadNice":0,"rawLoadIdle":21406,"rawLoadIrq":469},{"load":25.503865723914625,"loadUser":16.880327760523357,"loadSystem":8.415383598757682,"loadNice":0,"loadIdle":74.49613427608539,"loadIrq":0.20815436463358225,"rawLoad":7719,"rawLoadUser":5109,"rawLoadSystem":2547,"rawLoadNice":0,"rawLoadIdle":22547,"rawLoadIrq":63},{"load":28.34203396550585,"loadUser":17.501486816890242,"loadSystem":10.635696821515893,"loadNice":0,"loadIdle":71.65796603449415,"loadIrq":0.20485032709971585,"rawLoad":8578,"rawLoadUser":5297,"rawLoadSystem":3219,"rawLoadNice":0,"rawLoadIdle":21688,"rawLoadIrq":62},{"load":28.04598454080964,"loadUser":18.5772304467444,"loadSystem":8.394471374295822,"loadNice":0,"loadIdle":71.95401545919036,"loadIrq":1.0742827197694222,"rawLoad":8563,"rawLoadUser":5672,"rawLoadSystem":2563,"rawLoadNice":0,"rawLoadIdle":21969,"rawLoadIrq":328}]}', '{"ESTABLISHED":30,"CLOSE":0,"TIME_WAIT":12,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":27,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":222189564,"rx_dropped":0,"rx_errors":0,"tx_bytes":22350888,"tx_dropped":0,"tx_errors":0,"rx_sec":5073.702754644459,"tx_sec":761.1467008327995,"ms":31220}]', '{"total":10685313024,"free":4504543232,"used":6180769792,"active":6180769792,"available":4504543232,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":56623104,"swapfree":2493513728}'), (135, '2022-03-29 22:20:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53550690304,"available":73725460480,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":26.122452369483252,"currentLoadUser":15.844725345912995,"currentLoadSystem":9.316811454578676,"currentLoadNice":0,"currentLoadIdle":73.87754763051674,"currentLoadIrq":0.9609155689915785,"rawCurrentLoad":31453,"rawCurrentLoadUser":19078,"rawCurrentLoadSystem":11218,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":88953,"rawCurrentLoadIrq":1157,"cpus":[{"load":27.89204768767195,"loadUser":12.894667889427486,"loadSystem":12.642473470457224,"loadNice":0,"loadIdle":72.10795231232805,"loadIrq":2.3549063277872397,"rawLoad":8516,"rawLoadUser":3937,"rawLoadSystem":3860,"rawLoadNice":0,"rawLoadIdle":22016,"rawLoadIrq":719},{"load":24.620274339243895,"loadUser":16.309802609568415,"loadSystem":8.049514887922381,"loadNice":0,"loadIdle":75.37972566075611,"loadIrq":0.2609568417530947,"rawLoad":7359,"rawLoadUser":4875,"rawLoadSystem":2406,"rawLoadNice":0,"rawLoadIdle":22531,"rawLoadIrq":78},{"load":26.70850999899843,"loadUser":17.006643741862252,"loadSystem":9.231128768403833,"loadNice":0,"loadIdle":73.29149000100156,"loadIrq":0.4707374887323474,"rawLoad":8000,"rawLoadUser":5094,"rawLoadSystem":2765,"rawLoadNice":0,"rawLoadIdle":21953,"rawLoadIrq":141},{"load":25.233924944224302,"loadUser":17.222203722819753,"loadSystem":7.282474776064733,"loadNice":0,"loadIdle":74.76607505577569,"loadIrq":0.7292464453398155,"rawLoad":7578,"rawLoadUser":5172,"rawLoadSystem":2187,"rawLoadNice":0,"rawLoadIdle":22453,"rawLoadIrq":219}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":12,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":27,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":1,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":222263062,"rx_dropped":0,"rx_errors":0,"tx_bytes":22364977,"tx_dropped":0,"tx_errors":0,"rx_sec":2562.691771269177,"tx_sec":491.2482566248257,"ms":28680}]', '{"total":10685313024,"free":4542107648,"used":6143205376,"active":6143205376,"available":4542107648,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":56623104,"swapfree":2493513728}'), (136, '2022-03-29 22:21:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53551083520,"available":73725067264,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":28.242750049319394,"currentLoadUser":18.263792990070364,"currentLoadSystem":9.132307489971723,"currentLoadNice":0,"currentLoadIdle":71.75724995068062,"currentLoadIrq":0.8466495692773066,"rawCurrentLoad":34359,"rawCurrentLoadUser":22219,"rawCurrentLoadSystem":11110,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":87297,"rawCurrentLoadIrq":1030,"cpus":[{"load":31.72382377822607,"loadUser":17.28704366499642,"loadSystem":12.556126765146091,"loadNice":0,"loadIdle":68.27617622177394,"loadIrq":1.8806533480835557,"rawLoad":9750,"rawLoadUser":5313,"rawLoadSystem":3859,"rawLoadNice":0,"rawLoadIdle":20984,"rawLoadIrq":578},{"load":26.409789978501735,"loadUser":18.554655200926078,"loadSystem":7.597155614354226,"loadNice":0,"loadIdle":73.59021002149827,"loadIrq":0.2579791632214321,"rawLoad":7985,"rawLoadUser":5610,"rawLoadSystem":2297,"rawLoadNice":0,"rawLoadIdle":22250,"rawLoadIrq":78},{"load":27.351247600767753,"loadUser":18.406247931696342,"loadSystem":8.739823945992455,"loadNice":0,"loadIdle":72.64875239923224,"loadIrq":0.20517572307895957,"rawLoad":8265,"rawLoadUser":5562,"rawLoadSystem":2641,"rawLoadNice":0,"rawLoadIdle":21953,"rawLoadIrq":62},{"load":27.4344415635564,"loadUser":18.819127637927075,"loadSystem":7.591322327611671,"loadNice":0,"loadIdle":72.5655584364436,"loadIrq":1.0239915980176573,"rawLoad":8359,"rawLoadUser":5734,"rawLoadSystem":2313,"rawLoadNice":0,"rawLoadIdle":22110,"rawLoadIrq":312}]}', '{"ESTABLISHED":29,"CLOSE":0,"TIME_WAIT":13,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":31,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":222399265,"rx_dropped":0,"rx_errors":0,"tx_bytes":22383864,"tx_dropped":0,"tx_errors":0,"rx_sec":4369.962782340863,"tx_sec":605.9740759753594,"ms":31168}]', '{"total":10685313024,"free":4437884928,"used":6247428096,"active":6247428096,"available":4437884928,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":56623104,"swapfree":2493513728}'), (137, '2022-03-29 22:21:47', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53551017984,"available":73725132800,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":23.167921724466115,"currentLoadUser":16.358050458332638,"currentLoadSystem":6.522682873887563,"currentLoadNice":0,"currentLoadIdle":76.83207827553389,"currentLoadIrq":0.2871883922459134,"rawCurrentLoad":27751,"rawCurrentLoadUser":19594,"rawCurrentLoadSystem":7813,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":92031,"rawCurrentLoadIrq":344,"cpus":[{"load":25.19449431478157,"loadUser":15.895338785823526,"loadSystem":8.57104860695525,"loadNice":0,"loadIdle":74.80550568521844,"loadIrq":0.7281069220027927,"rawLoad":7578,"rawLoadUser":4781,"rawLoadSystem":2578,"rawLoadNice":0,"rawLoadIdle":22500,"rawLoadIrq":219},{"load":23.01255230125523,"loadUser":16.786610878661087,"loadSystem":6.172384937238494,"loadNice":0,"loadIdle":76.98744769874477,"loadIrq":0.05355648535564853,"rawLoad":6875,"rawLoadUser":5015,"rawLoadSystem":1844,"rawLoadNice":0,"rawLoadIdle":23000,"rawLoadIrq":16},{"load":22.792813890468704,"loadUser":16.677260713927268,"loadSystem":6.011843029674484,"loadNice":0,"loadIdle":77.2071861095313,"loadIrq":0.10371014686694992,"rawLoad":6813,"rawLoadUser":4985,"rawLoadSystem":1797,"rawLoadNice":0,"rawLoadIdle":23078,"rawLoadIrq":31},{"load":21.661433629500966,"loadUser":16.076558220322,"loadSystem":5.324336963056984,"loadNice":0,"loadIdle":78.33856637049902,"loadIrq":0.26053844612198546,"rawLoad":6485,"rawLoadUser":4813,"rawLoadSystem":1594,"rawLoadNice":0,"rawLoadIdle":23453,"rawLoadIrq":78}]}', '{"ESTABLISHED":27,"CLOSE":0,"TIME_WAIT":11,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":25,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":222447632,"rx_dropped":0,"rx_errors":0,"tx_bytes":22397146,"tx_dropped":0,"tx_errors":0,"rx_sec":1582.2755823082962,"tx_sec":434.5066736456425,"ms":30568}]', '{"total":10685313024,"free":4531200000,"used":6154113024,"active":6154113024,"available":4531200000,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":56623104,"swapfree":2493513728}'), (138, '2022-03-29 22:22:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53551034368,"available":73725116416,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":25.709486708297646,"currentLoadUser":18.617529913606013,"currentLoadSystem":6.871606395982139,"currentLoadNice":0,"currentLoadIdle":74.29051329170235,"currentLoadIrq":0.22035039870949505,"rawCurrentLoad":30919,"rawCurrentLoadUser":22390,"rawCurrentLoadSystem":8264,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":89344,"rawCurrentLoadIrq":265,"cpus":[{"load":28.9329843972571,"loadUser":19.306323914267733,"loadSystem":9.007188524861695,"loadNice":0,"loadIdle":71.0670156027429,"loadIrq":0.6194719581276709,"rawLoad":8734,"rawLoadUser":5828,"rawLoadSystem":2719,"rawLoadNice":0,"rawLoadIdle":21453,"rawLoadIrq":187},{"load":24.217473915797193,"loadUser":17.91726390879696,"loadSystem":6.300210007000233,"loadNice":0,"loadIdle":75.7825260842028,"loadIrq":0,"rawLoad":7265,"rawLoadUser":5375,"rawLoadSystem":1890,"rawLoadNice":0,"rawLoadIdle":22734,"rawLoadIrq":0},{"load":26.3,"loadUser":20.103333333333335,"loadSystem":6.196666666666667,"loadNice":0,"loadIdle":73.7,"loadIrq":0,"rawLoad":7890,"rawLoadUser":6031,"rawLoadSystem":1859,"rawLoadNice":0,"rawLoadIdle":22110,"rawLoadIrq":0},{"load":23.373341756159192,"loadUser":17.142667154303954,"loadSystem":5.971340226751338,"loadNice":0,"loadIdle":76.62665824384081,"loadIrq":0.2593343751039,"rawLoad":7030,"rawLoadUser":5156,"rawLoadSystem":1796,"rawLoadNice":0,"rawLoadIdle":23047,"rawLoadIrq":78}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":8,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":222492617,"rx_dropped":0,"rx_errors":0,"tx_bytes":22401708,"tx_dropped":0,"tx_errors":0,"rx_sec":1584.313587377615,"tx_sec":160.66774670705078,"ms":28394}]', '{"total":10685313024,"free":4517396480,"used":6167916544,"active":6167916544,"available":4517396480,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":56623104,"swapfree":2493513728}'), (139, '2022-03-29 22:22:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53551034368,"available":73725116416,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":20.922221299908692,"currentLoadUser":14.955590603469743,"currentLoadSystem":5.629617332115879,"currentLoadNice":0,"currentLoadIdle":79.0777787000913,"currentLoadIrq":0.33701336432306794,"rawCurrentLoad":25205,"rawCurrentLoadUser":18017,"rawCurrentLoadSystem":6782,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":95265,"rawCurrentLoadIrq":406,"cpus":[{"load":21.91708476366517,"loadUser":13.77079482439926,"loadSystem":7.218774755743332,"loadNice":0,"loadIdle":78.08291523633483,"loadIrq":0.9275151835225772,"rawLoad":6640,"rawLoadUser":4172,"rawLoadSystem":2187,"rawLoadNice":0,"rawLoadIdle":23656,"rawLoadIrq":281},{"load":20.65463505594033,"loadUser":16.18273841236015,"loadSystem":4.421949920085242,"loadNice":0,"loadIdle":79.34536494405967,"loadIrq":0.04994672349493873,"rawLoad":6203,"rawLoadUser":4860,"rawLoadSystem":1328,"rawLoadNice":0,"rawLoadIdle":23829,"rawLoadIrq":15},{"load":22.013185935002664,"loadUser":16.44246137453383,"loadSystem":5.5174480554075656,"loadNice":0,"loadIdle":77.98681406499733,"loadIrq":0.05327650506126798,"rawLoad":6611,"rawLoadUser":4938,"rawLoadSystem":1657,"rawLoadNice":0,"rawLoadIdle":23421,"rawLoadIrq":16},{"load":19.099966788442376,"loadUser":13.440717369644636,"loadSystem":5.347060777150448,"loadNice":0,"loadIdle":80.90003321155763,"loadIrq":0.31218864164729326,"rawLoad":5751,"rawLoadUser":4047,"rawLoadSystem":1610,"rawLoadNice":0,"rawLoadIdle":24359,"rawLoadIrq":94}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":6,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":20,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":222524750,"rx_dropped":0,"rx_errors":0,"tx_bytes":22405781,"tx_dropped":0,"tx_errors":0,"rx_sec":1066.938938141249,"tx_sec":135.23923365541057,"ms":30117}]', '{"total":10685313024,"free":4503236608,"used":6182076416,"active":6182076416,"available":4503236608,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":56623104,"swapfree":2493513728}'), (140, '2022-03-29 22:23:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53551951872,"available":73724198912,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":24.600404944937367,"currentLoadUser":14.620816803568784,"currentLoadSystem":8.796029564272663,"currentLoadNice":0,"currentLoadIdle":75.39959505506263,"currentLoadIrq":1.1835585770959194,"rawCurrentLoad":29889,"rawCurrentLoadUser":17764,"rawCurrentLoadSystem":10687,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":91609,"rawCurrentLoadIrq":1438,"cpus":[{"load":27.903415015641293,"loadUser":14.054353493222107,"loadSystem":11.659280500521376,"loadNice":0,"loadIdle":72.0965849843587,"loadIrq":2.18978102189781,"rawLoad":8563,"rawLoadUser":4313,"rawLoadSystem":3578,"rawLoadNice":0,"rawLoadIdle":22125,"rawLoadIrq":672},{"load":21.672599048601178,"loadUser":14.447290509297762,"loadSystem":7.068959781777054,"loadNice":0,"loadIdle":78.32740095139881,"loadIrq":0.15634875752636307,"rawLoad":6515,"rawLoadUser":4343,"rawLoadSystem":2125,"rawLoadNice":0,"rawLoadIdle":23546,"rawLoadIrq":47},{"load":24.144448865897335,"loadUser":14.972144846796656,"loadSystem":8.70473537604457,"loadNice":0,"loadIdle":75.85555113410265,"loadIrq":0.46756864305610824,"rawLoad":7281,"rawLoadUser":4515,"rawLoadSystem":2625,"rawLoadNice":0,"rawLoadIdle":22875,"rawLoadIrq":141},{"load":24.61347367044749,"loadUser":15.013238322492073,"loadSystem":7.710914261432354,"loadNice":0,"loadIdle":75.38652632955251,"loadIrq":1.889321086523061,"rawLoad":7530,"rawLoadUser":4593,"rawLoadSystem":2359,"rawLoadNice":0,"rawLoadIdle":23063,"rawLoadIrq":578}]}', '{"ESTABLISHED":28,"CLOSE":0,"TIME_WAIT":8,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":34,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":222656783,"rx_dropped":0,"rx_errors":0,"tx_bytes":22436386,"tx_dropped":0,"tx_errors":0,"rx_sec":4440.173527037934,"tx_sec":1029.2238364272262,"ms":29736}]', '{"total":10685313024,"free":4459106304,"used":6226206720,"active":6226206720,"available":4459106304,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":56623104,"swapfree":2493513728}'), (141, '2022-03-29 22:23:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53552279552,"available":73723871232,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":18.874861609134623,"currentLoadUser":11.295999471222961,"currentLoadSystem":6.88153741923757,"currentLoadNice":0,"currentLoadIdle":81.12513839086539,"currentLoadIrq":0.6973247186740915,"rawCurrentLoad":22845,"rawCurrentLoadUser":13672,"rawCurrentLoadSystem":8329,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":98189,"rawCurrentLoadIrq":844,"cpus":[{"load":21.19436397155649,"loadUser":11.624308664735318,"loadSystem":8.490255464840663,"loadNice":0,"loadIdle":78.8056360284435,"loadIrq":1.0797998419805108,"rawLoad":6438,"rawLoadUser":3531,"rawLoadSystem":2579,"rawLoadNice":0,"rawLoadIdle":23938,"rawLoadIrq":328},{"load":16.210106382978722,"loadUser":9.97340425531915,"loadSystem":6.13031914893617,"loadNice":0,"loadIdle":83.78989361702128,"loadIrq":0.10638297872340426,"rawLoad":4876,"rawLoadUser":3000,"rawLoadSystem":1844,"rawLoadNice":0,"rawLoadIdle":25204,"rawLoadIrq":32},{"load":19.561400602908538,"loadUser":11.750091098817371,"loadSystem":7.3475337065624275,"loadNice":0,"loadIdle":80.43859939709147,"loadIrq":0.46377579752873754,"rawLoad":5905,"rawLoadUser":3547,"rawLoadSystem":2218,"rawLoadNice":0,"rawLoadIdle":24282,"rawLoadIrq":140},{"load":18.512059491296764,"loadUser":11.825869500839065,"loadSystem":5.554275936955019,"loadNice":0,"loadIdle":81.48794050870323,"loadIrq":1.1319140535026817,"rawLoad":5626,"rawLoadUser":3594,"rawLoadSystem":1688,"rawLoadNice":0,"rawLoadIdle":24765,"rawLoadIrq":344}]}', '{"ESTABLISHED":28,"CLOSE":0,"TIME_WAIT":15,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":29,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":222735584,"rx_dropped":0,"rx_errors":0,"tx_bytes":22456808,"tx_dropped":0,"tx_errors":0,"rx_sec":2598.0350136823713,"tx_sec":673.3045399096634,"ms":30331}]', '{"total":10685313024,"free":4429197312,"used":6256115712,"active":6256115712,"available":4429197312,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":56623104,"swapfree":2493513728}'), (142, '2022-03-29 22:24:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53552607232,"available":73723543552,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":16.977918819678667,"currentLoadUser":10.151693887384319,"currentLoadSystem":6.411683586156479,"currentLoadNice":0,"currentLoadIdle":83.02208118032132,"currentLoadIrq":0.4145413461378703,"rawCurrentLoad":20437,"rawCurrentLoadUser":12220,"rawCurrentLoadSystem":7718,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":99937,"rawCurrentLoadIrq":499,"cpus":[{"load":18.25071149645906,"loadUser":9.927857568336753,"loadSystem":7.495532464094248,"loadNice":0,"loadIdle":81.74928850354094,"loadIrq":0.8273214640280628,"rawLoad":5515,"rawLoadUser":3000,"rawLoadSystem":2265,"rawLoadNice":0,"rawLoadIdle":24703,"rawLoadIrq":250},{"load":15.791228947807237,"loadUser":9.954977488744372,"loadSystem":5.786226446556611,"loadNice":0,"loadIdle":84.20877105219276,"loadIrq":0.05002501250625312,"rawLoad":4735,"rawLoadUser":2985,"rawLoadSystem":1735,"rawLoadNice":0,"rawLoadIdle":25250,"rawLoadIrq":15},{"load":17.07479593536565,"loadUser":10.82791937364651,"loadSystem":6.090288189238715,"loadNice":0,"loadIdle":82.92520406463436,"loadIrq":0.15658837248042645,"rawLoad":5125,"rawLoadUser":3250,"rawLoadSystem":1828,"rawLoadNice":0,"rawLoadIdle":24890,"rawLoadIrq":47},{"load":16.786045894680992,"loadUser":9.898527656187824,"loadSystem":6.267409470752089,"loadNice":0,"loadIdle":83.213954105319,"loadIrq":0.6201087677410797,"rawLoad":5062,"rawLoadUser":2985,"rawLoadSystem":1890,"rawLoadNice":0,"rawLoadIdle":25094,"rawLoadIrq":187}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":20,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":222807770,"rx_dropped":0,"rx_errors":0,"tx_bytes":22526954,"tx_dropped":0,"tx_errors":0,"rx_sec":2433.2906357446236,"tx_sec":2364.5250455066407,"ms":29666}]', '{"total":10685313024,"free":4452204544,"used":6233108480,"active":6233108480,"available":4452204544,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":56623104,"swapfree":2493513728}'), (143, '2022-03-29 22:24:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53553369088,"available":73722781696,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":17.408421348639862,"currentLoadUser":10.157393699289537,"currentLoadSystem":6.552970464902777,"currentLoadNice":0,"currentLoadIdle":82.59157865136014,"currentLoadIrq":0.6980571844475506,"rawCurrentLoad":21048,"rawCurrentLoadUser":12281,"rawCurrentLoadSystem":7923,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":99859,"rawCurrentLoadIrq":844,"cpus":[{"load":19.660737812911727,"loadUser":10.550065876152832,"loadSystem":7.977602108036891,"loadNice":0,"loadIdle":80.33926218708828,"loadIrq":1.1330698287220025,"rawLoad":5969,"rawLoadUser":3203,"rawLoadSystem":2422,"rawLoadNice":0,"rawLoadIdle":24391,"rawLoadIrq":344},{"load":14.641278702688332,"loadUser":9.812913302096833,"loadSystem":4.569168909713222,"loadNice":0,"loadIdle":85.35872129731167,"loadIrq":0.25919649087827734,"rawLoad":4406,"rawLoadUser":2953,"rawLoadSystem":1375,"rawLoadNice":0,"rawLoadIdle":25687,"rawLoadIrq":78},{"load":17.778738690792974,"loadUser":10.707158062799362,"loadSystem":6.915247472059606,"loadNice":0,"loadIdle":82.22126130920702,"loadIrq":0.15633315593400746,"rawLoad":5345,"rawLoadUser":3219,"rawLoadSystem":2079,"rawLoadNice":0,"rawLoadIdle":24719,"rawLoadIrq":47},{"load":17.53208292201382,"loadUser":9.562356038170451,"loadSystem":6.735768344850279,"loadNice":0,"loadIdle":82.46791707798617,"loadIrq":1.2339585389930898,"rawLoad":5328,"rawLoadUser":2906,"rawLoadSystem":2047,"rawLoadNice":0,"rawLoadIdle":25062,"rawLoadIrq":375}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":20,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":222838604,"rx_dropped":0,"rx_errors":0,"tx_bytes":22532628,"tx_dropped":0,"tx_errors":0,"rx_sec":1020.2839085404189,"tx_sec":187.7502398994077,"ms":30221}]', '{"total":10685313024,"free":4448284672,"used":6237028352,"active":6237028352,"available":4448284672,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":56623104,"swapfree":2493513728}'), (144, '2022-03-29 22:25:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53553385472,"available":73722765312,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":18.98410165631986,"currentLoadUser":12.192608475238309,"currentLoadSystem":6.569597845870004,"currentLoadNice":0,"currentLoadIdle":81.01589834368013,"currentLoadIrq":0.22189533521154853,"rawCurrentLoad":22843,"rawCurrentLoadUser":14671,"rawCurrentLoadSystem":7905,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":97484,"rawCurrentLoadIrq":267,"cpus":[{"load":19.815912326590073,"loadUser":10.657881667384036,"loadSystem":8.535575936165282,"loadNice":0,"loadIdle":80.18408767340993,"loadIrq":0.6224547230407576,"rawLoad":5985,"rawLoadUser":3219,"rawLoadSystem":2578,"rawLoadNice":0,"rawLoadIdle":24218,"rawLoadIrq":188},{"load":17.37812999467235,"loadUser":12.070458177943527,"loadSystem":5.254395311667555,"loadNice":0,"loadIdle":82.62187000532765,"loadIrq":0.05327650506126798,"rawLoad":5219,"rawLoadUser":3625,"rawLoadSystem":1578,"rawLoadNice":0,"rawLoadIdle":24813,"rawLoadIrq":16},{"load":20.19390950889585,"loadUser":13.377090691010862,"loadSystem":6.816818817884987,"loadNice":0,"loadIdle":79.80609049110416,"loadIrq":0,"rawLoad":6061,"rawLoadUser":4015,"rawLoadSystem":2046,"rawLoadNice":0,"rawLoadIdle":23953,"rawLoadIrq":0},{"load":18.54511603165104,"loadUser":12.673715007646786,"loadSystem":5.661945608085643,"loadNice":0,"loadIdle":81.45488396834895,"loadIrq":0.20945541591861158,"rawLoad":5578,"rawLoadUser":3812,"rawLoadSystem":1703,"rawLoadNice":0,"rawLoadIdle":24500,"rawLoadIrq":63}]}', '{"ESTABLISHED":27,"CLOSE":0,"TIME_WAIT":19,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":222955602,"rx_dropped":0,"rx_errors":0,"tx_bytes":22558627,"tx_dropped":0,"tx_errors":0,"rx_sec":3912.060721570201,"tx_sec":869.328250911158,"ms":29907}]', '{"total":10685313024,"free":4432322560,"used":6252990464,"active":6252990464,"available":4432322560,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":56623104,"swapfree":2493513728}'), (145, '2022-03-29 22:25:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53549322240,"available":73726828544,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":19.68522901872846,"currentLoadUser":12.652298492587516,"currentLoadSystem":6.592749470536938,"currentLoadNice":0,"currentLoadIdle":80.31477098127155,"currentLoadIrq":0.44018105560400317,"rawCurrentLoad":23702,"rawCurrentLoadUser":15234,"rawCurrentLoadSystem":7938,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":96703,"rawCurrentLoadIrq":530,"cpus":[{"load":20.537694930967124,"loadUser":11.846505314041652,"loadSystem":7.9164321425024,"loadNice":0,"loadIdle":79.46230506903288,"loadIrq":0.7747574744230706,"rawLoad":6203,"rawLoadUser":3578,"rawLoadSystem":2391,"rawLoadNice":0,"rawLoadIdle":24000,"rawLoadIrq":234},{"load":18.362249825169002,"loadUser":12.434646508375238,"loadSystem":5.721136234972859,"loadNice":0,"loadIdle":81.637750174831,"loadIrq":0.20646708182090645,"rawLoad":5514,"rawLoadUser":3734,"rawLoadSystem":1718,"rawLoadNice":0,"rawLoadIdle":24515,"rawLoadIrq":62},{"load":19.532682243925205,"loadUser":12.812906236458785,"loadSystem":6.616446118462719,"loadNice":0,"loadIdle":80.46731775607479,"loadIrq":0.10332988900369987,"rawLoad":5860,"rawLoadUser":3844,"rawLoadSystem":1985,"rawLoadNice":0,"rawLoadIdle":24141,"rawLoadIrq":31},{"load":20.30027840381811,"loadUser":13.515842502982897,"loadSystem":6.1116266737372404,"loadNice":0,"loadIdle":79.69972159618189,"loadIrq":0.6728092270979716,"rawLoad":6125,"rawLoadUser":4078,"rawLoadSystem":1844,"rawLoadNice":0,"rawLoadIdle":24047,"rawLoadIrq":203}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":15,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":223077064,"rx_dropped":0,"rx_errors":0,"tx_bytes":22576958,"tx_dropped":0,"tx_errors":0,"rx_sec":3988.7688417457553,"tx_sec":601.9835144987028,"ms":30451}]', '{"total":10685313024,"free":4405592064,"used":6279720960,"active":6279720960,"available":4405592064,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":56623104,"swapfree":2493513728}'), (146, '2022-03-29 22:26:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53549367296,"available":73726783488,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":9.729379301173577,"currentLoadUser":6.129691811562885,"currentLoadSystem":3.390239037202035,"currentLoadNice":0,"currentLoadIdle":90.27062069882642,"currentLoadIrq":0.2094484524086572,"rawCurrentLoad":11706,"rawCurrentLoadUser":7375,"rawCurrentLoadSystem":4079,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":108610,"rawCurrentLoadIrq":252,"cpus":[{"load":10.2566653402308,"loadUser":5.5942432683379755,"loadSystem":4.194853428836716,"loadNice":0,"loadIdle":89.7433346597692,"loadIrq":0.46756864305610824,"rawLoad":3093,"rawLoadUser":1687,"rawLoadSystem":1265,"rawLoadNice":0,"rawLoadIdle":27063,"rawLoadIrq":141},{"load":9.052183173588926,"loadUser":5.927183173588924,"loadSystem":3.0185037273695423,"loadNice":0,"loadIdle":90.94781682641107,"loadIrq":0.10649627263045794,"rawLoad":2720,"rawLoadUser":1781,"rawLoadSystem":907,"rawLoadNice":0,"rawLoadIdle":27328,"rawLoadIrq":32},{"load":10.197018104366347,"loadUser":6.449680511182108,"loadSystem":3.640841320553781,"loadNice":0,"loadIdle":89.80298189563365,"loadIrq":0.10649627263045794,"rawLoad":3064,"rawLoadUser":1938,"rawLoadSystem":1094,"rawLoadNice":0,"rawLoadIdle":26984,"rawLoadIrq":32},{"load":9.40992549228313,"loadUser":6.549361362426823,"loadSystem":2.704230973922299,"loadNice":0,"loadIdle":90.59007450771686,"loadIrq":0.15633315593400746,"rawLoad":2829,"rawLoadUser":1969,"rawLoadSystem":813,"rawLoadNice":0,"rawLoadIdle":27235,"rawLoadIrq":47}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":10,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":31,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":223138346,"rx_dropped":0,"rx_errors":0,"tx_bytes":22588943,"tx_dropped":0,"tx_errors":0,"rx_sec":2077.285515745229,"tx_sec":406.25741500288126,"ms":29501}]', '{"total":10685313024,"free":4461531136,"used":6223781888,"active":6223781888,"available":4461531136,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":56623104,"swapfree":2493513728}'), (147, '2022-03-29 22:26:49', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53549494272,"available":73726656512,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.374210092499314,"currentLoadUser":3.6816558292883967,"currentLoadSystem":2.601803361946232,"currentLoadNice":0,"currentLoadIdle":93.62578990750069,"currentLoadIrq":0.09075090126468457,"rawCurrentLoad":7656,"rawCurrentLoadUser":4422,"rawCurrentLoadSystem":3125,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112453,"rawCurrentLoadIrq":109,"cpus":[{"load":7.21738552535389,"loadUser":3.7382867016681067,"loadSystem":3.170067123014554,"loadNice":0,"loadIdle":92.78261447464611,"loadIrq":0.30903170067123015,"rawLoad":2172,"rawLoadUser":1125,"rawLoadSystem":954,"rawLoadNice":0,"rawLoadIdle":27922,"rawLoadIrq":93},{"load":6.096463451218293,"loadUser":3.596546781773941,"loadSystem":2.499916669444352,"loadNice":0,"loadIdle":93.9035365487817,"loadIrq":0,"rawLoad":1829,"rawLoadUser":1079,"rawLoadSystem":750,"rawLoadNice":0,"rawLoadIdle":28172,"rawLoadIrq":0},{"load":5.933531117703923,"loadUser":3.643454781826061,"loadSystem":2.2900763358778624,"loadNice":0,"loadIdle":94.06646888229608,"loadIrq":0,"rawLoad":1780,"rawLoadUser":1093,"rawLoadSystem":687,"rawLoadNice":0,"rawLoadIdle":28219,"rawLoadIrq":0},{"load":6.246876561719141,"loadUser":3.7481259370314843,"loadSystem":2.4454439446943197,"loadNice":0,"loadIdle":93.75312343828087,"loadIrq":0.053306679993336666,"rawLoad":1875,"rawLoadUser":1125,"rawLoadSystem":734,"rawLoadNice":0,"rawLoadIdle":28140,"rawLoadIrq":16}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":10,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":223214055,"rx_dropped":0,"rx_errors":0,"tx_bytes":22598120,"tx_dropped":0,"tx_errors":0,"rx_sec":2176.1713135958607,"tx_sec":263.7826961770624,"ms":34790}]', '{"total":10685313024,"free":4474118144,"used":6211194880,"active":6211194880,"available":4474118144,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":56623104,"swapfree":2493513728}'), (148, '2022-03-29 22:27:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53549993984,"available":73726156800,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":22.425098272387935,"currentLoadUser":13.342747662933968,"currentLoadSystem":8.180556931919531,"currentLoadNice":0,"currentLoadIdle":77.57490172761207,"currentLoadIrq":0.9017936775344366,"rawCurrentLoad":27155,"rawCurrentLoadUser":16157,"rawCurrentLoadSystem":9906,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":93937,"rawCurrentLoadIrq":1092,"cpus":[{"load":24.053956480357083,"loadUser":12.2583609570383,"loadSystem":10.256326101939676,"loadNice":0,"loadIdle":75.94604351964291,"loadIrq":1.5392694213791067,"rawLoad":7329,"rawLoadUser":3735,"rawLoadSystem":3125,"rawLoadNice":0,"rawLoadIdle":23140,"rawLoadIrq":469},{"load":19.673496585040812,"loadUser":13.793103448275861,"loadSystem":5.830418124271198,"loadNice":0,"loadIdle":80.32650341495918,"loadIrq":0.04997501249375312,"rawLoad":5905,"rawLoadUser":4140,"rawLoadSystem":1750,"rawLoadNice":0,"rawLoadIdle":24110,"rawLoadIrq":15},{"load":23.14805608034205,"loadUser":14.139405389281098,"loadSystem":8.44188127672268,"loadNice":0,"loadIdle":76.85194391965796,"loadIrq":0.5667694143382719,"rawLoad":6984,"rawLoadUser":4266,"rawLoadSystem":2547,"rawLoadNice":0,"rawLoadIdle":23187,"rawLoadIrq":171},{"load":22.791339488123008,"loadUser":13.194467260242467,"loadSystem":8.161119689851168,"loadNice":0,"loadIdle":77.20866051187699,"loadIrq":1.435752538029372,"rawLoad":6937,"rawLoadUser":4016,"rawLoadSystem":2484,"rawLoadNice":0,"rawLoadIdle":23500,"rawLoadIrq":437}]}', '{"ESTABLISHED":28,"CLOSE":0,"TIME_WAIT":12,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":36,"SYN_SENT":2,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":223339004,"rx_dropped":0,"rx_errors":0,"tx_bytes":22622115,"tx_dropped":0,"tx_errors":0,"rx_sec":4872.635807042858,"tx_sec":935.7329485629606,"ms":25643}]', '{"total":10685313024,"free":4309499904,"used":6375813120,"active":6375813120,"available":4309499904,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":56623104,"swapfree":2493513728}'), (149, '2022-03-29 22:27:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53551239168,"available":73724911616,"use":42.07,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":29.503922890932117,"currentLoadUser":18.491043965985163,"currentLoadSystem":10.266953961544155,"currentLoadNice":0,"currentLoadIdle":70.49607710906788,"currentLoadIrq":0.7459249634027995,"rawCurrentLoad":35875,"rawCurrentLoadUser":22484,"rawCurrentLoadSystem":12484,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":85719,"rawCurrentLoadIrq":907,"cpus":[{"load":31.253044127674773,"loadUser":15.423580218852488,"loadSystem":13.800045458973276,"loadNice":0,"loadIdle":68.74695587232522,"loadIrq":2.0294184498490115,"rawLoad":9625,"rawLoadUser":4750,"rawLoadSystem":4250,"rawLoadNice":0,"rawLoadIdle":21172,"rawLoadIrq":625},{"load":27.082297570514736,"loadUser":18.902257134334295,"loadSystem":8.18004043618044,"loadNice":0,"loadIdle":72.91770242948526,"loadIrq":0,"rawLoad":8171,"rawLoadUser":5703,"rawLoadSystem":2468,"rawLoadNice":0,"rawLoadIdle":22000,"rawLoadIrq":0},{"load":29.23122765196663,"loadUser":19.29545755529069,"loadSystem":9.829823864388823,"loadNice":0,"loadIdle":70.76877234803337,"loadIrq":0.10594623228711429,"rawLoad":8829,"rawLoadUser":5828,"rawLoadSystem":2969,"rawLoadNice":0,"rawLoadIdle":21375,"rawLoadIrq":32},{"load":30.405627506409832,"loadUser":20.38984945105516,"loadSystem":9.194004338965222,"loadNice":0,"loadIdle":69.59437249359016,"loadIrq":0.821773716389455,"rawLoad":9250,"rawLoadUser":6203,"rawLoadSystem":2797,"rawLoadNice":0,"rawLoadIdle":21172,"rawLoadIrq":250}]}', '{"ESTABLISHED":28,"CLOSE":0,"TIME_WAIT":11,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":34,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":223491528,"rx_dropped":0,"rx_errors":0,"tx_bytes":22641964,"tx_dropped":0,"tx_errors":0,"rx_sec":5071.117465172723,"tx_sec":659.9394886458091,"ms":30077}]', '{"total":10685313024,"free":4271902720,"used":6413410304,"active":6413410304,"available":4271902720,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":56623104,"swapfree":2493513728}'), (150, '2022-03-29 22:28:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53551591424,"available":73724559360,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":14.644428152492669,"currentLoadUser":8.64436150359904,"currentLoadSystem":5.506031724873367,"currentLoadNice":0,"currentLoadIdle":85.35557184750732,"currentLoadIrq":0.4940349240202612,"rawCurrentLoad":17578,"rawCurrentLoadUser":10376,"rawCurrentLoadSystem":6609,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":102454,"rawCurrentLoadIrq":593,"cpus":[{"load":16.096332858515254,"loadUser":8.281710670156027,"loadSystem":6.728061748434756,"loadNice":0,"loadIdle":83.90366714148475,"loadIrq":1.0865604399244708,"rawLoad":4859,"rawLoadUser":2500,"rawLoadSystem":2031,"rawLoadNice":0,"rawLoadIdle":25328,"rawLoadIrq":328},{"load":13.571380853764447,"loadUser":8.300487674527357,"loadSystem":5.010354733115104,"loadNice":0,"loadIdle":86.42861914623555,"loadIrq":0.26053844612198546,"rawLoad":4063,"rawLoadUser":2485,"rawLoadSystem":1500,"rawLoadNice":0,"rawLoadIdle":25875,"rawLoadIrq":78},{"load":14.843932956408285,"loadUser":9.253621491418821,"loadSystem":5.486601318122512,"loadNice":0,"loadIdle":85.15606704359172,"loadIrq":0.10371014686694992,"rawLoad":4437,"rawLoadUser":2766,"rawLoadSystem":1640,"rawLoadNice":0,"rawLoadIdle":25454,"rawLoadIrq":31},{"load":14.055836886993603,"loadUser":8.745335820895523,"loadSystem":4.790778251599146,"loadNice":0,"loadIdle":85.9441631130064,"loadIrq":0.5197228144989339,"rawLoad":4219,"rawLoadUser":2625,"rawLoadSystem":1438,"rawLoadNice":0,"rawLoadIdle":25797,"rawLoadIrq":156}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":11,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":38,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":223585278,"rx_dropped":0,"rx_errors":0,"tx_bytes":22662681,"tx_dropped":0,"tx_errors":0,"rx_sec":3175.9205935160408,"tx_sec":701.8191673159661,"ms":29519}]', '{"total":10685313024,"free":4358733824,"used":6326579200,"active":6326579200,"available":4358733824,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":56623104,"swapfree":2493513728}'), (151, '2022-03-29 22:28:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53551587328,"available":73724563456,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":7.46500907018157,"currentLoadUser":4.252167690182569,"currentLoadSystem":3.0688834523274586,"currentLoadNice":0,"currentLoadIdle":92.53499092981843,"currentLoadIrq":0.14395792767154292,"rawCurrentLoad":8971,"rawCurrentLoadUser":5110,"rawCurrentLoadSystem":3688,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":111203,"rawCurrentLoadIrq":173,"cpus":[{"load":8.556167473956606,"loadUser":4.4588945657222485,"loadSystem":3.6294870944197464,"loadNice":0,"loadIdle":91.4438325260434,"loadIrq":0.4677858138146108,"rawLoad":2579,"rawLoadUser":1344,"rawLoadSystem":1094,"rawLoadNice":0,"rawLoadIdle":27563,"rawLoadIrq":141},{"load":7.1861673773987205,"loadUser":4.321028784648187,"loadSystem":2.8118336886993602,"loadNice":0,"loadIdle":92.81383262260128,"loadIrq":0.053304904051172705,"rawLoad":2157,"rawLoadUser":1297,"rawLoadSystem":844,"rawLoadNice":0,"rawLoadIdle":27859,"rawLoadIrq":16},{"load":7.033333333333333,"loadUser":4.0633333333333335,"loadSystem":2.97,"loadNice":0,"loadIdle":92.96666666666667,"loadIrq":0,"rawLoad":2110,"rawLoadUser":1219,"rawLoadSystem":891,"rawLoadNice":0,"rawLoadIdle":27890,"rawLoadIrq":0},{"load":7.079557569296376,"loadUser":4.164445628997868,"loadSystem":2.8618070362473347,"loadNice":0,"loadIdle":92.92044243070362,"loadIrq":0.053304904051172705,"rawLoad":2125,"rawLoadUser":1250,"rawLoadSystem":859,"rawLoadNice":0,"rawLoadIdle":27891,"rawLoadIrq":16}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":11,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":223619025,"rx_dropped":0,"rx_errors":0,"tx_bytes":22668144,"tx_dropped":0,"tx_errors":0,"rx_sec":1126.1011745862254,"tx_sec":182.29444741057128,"ms":29968}]', '{"total":10685313024,"free":4355588096,"used":6329724928,"active":6329724928,"available":4355588096,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":56623104,"swapfree":2493513728}'), (152, '2022-03-29 22:29:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53551603712,"available":73724547072,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":8.726879753938235,"currentLoadUser":4.336838605095806,"currentLoadSystem":4.195519348268839,"currentLoadNice":0,"currentLoadIdle":91.27312024606177,"currentLoadIrq":0.19452180057358992,"rawCurrentLoad":10498,"rawCurrentLoadUser":5217,"rawCurrentLoadSystem":5047,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":109797,"rawCurrentLoadIrq":234,"cpus":[{"load":10.343685848619296,"loadUser":4.344083173299781,"loadSystem":5.380438381564135,"loadNice":0,"loadIdle":89.6563141513807,"loadIrq":0.6191642937553804,"rawLoad":3124,"rawLoadUser":1312,"rawLoadSystem":1625,"rawLoadNice":0,"rawLoadIdle":27078,"rawLoadIrq":187},{"load":7.236140724946695,"loadUser":4.111140724946695,"loadSystem":3.125,"loadNice":0,"loadIdle":92.7638592750533,"loadIrq":0,"rawLoad":2172,"rawLoadUser":1234,"rawLoadSystem":938,"rawLoadNice":0,"rawLoadIdle":27844,"rawLoadIrq":0},{"load":8.427957776963805,"loadUser":4.368818887149946,"loadSystem":4.005860610702274,"loadNice":0,"loadIdle":91.57204222303619,"loadIrq":0.0532782791115847,"rawLoad":2531,"rawLoadUser":1312,"rawLoadSystem":1203,"rawLoadNice":0,"rawLoadIdle":27500,"rawLoadIrq":16},{"load":8.889702456233776,"loadUser":4.523064634227518,"loadSystem":4.26346269054117,"loadNice":0,"loadIdle":91.11029754376622,"loadIrq":0.10317513146508688,"rawLoad":2671,"rawLoadUser":1359,"rawLoadSystem":1281,"rawLoadNice":0,"rawLoadIdle":27375,"rawLoadIrq":31}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":6,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":223671807,"rx_dropped":0,"rx_errors":0,"tx_bytes":22671967,"tx_dropped":0,"tx_errors":0,"rx_sec":1758.3449930041975,"tx_sec":127.35691918182424,"ms":30018}]', '{"total":10685313024,"free":4488155136,"used":6197157888,"active":6197157888,"available":4488155136,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":58720256,"swapfree":2491416576}'), (153, '2022-03-29 22:29:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53551669248,"available":73724481536,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":7.635547800074785,"currentLoadUser":4.09073912501558,"currentLoadSystem":3.3104823632057836,"currentLoadNice":0,"currentLoadIdle":92.36445219992521,"currentLoadIrq":0.2343263118534214,"rawCurrentLoad":9189,"rawCurrentLoadUser":4923,"rawCurrentLoadSystem":3984,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":111156,"rawCurrentLoadIrq":282,"cpus":[{"load":9.764966447390169,"loadUser":3.9271429043667974,"loadSystem":5.060989719348121,"loadNice":0,"loadIdle":90.23503355260983,"loadIrq":0.7768338236752504,"rawLoad":2954,"rawLoadUser":1188,"rawLoadSystem":1531,"rawLoadNice":0,"rawLoadIdle":27297,"rawLoadIrq":235},{"load":6.5534465534465545,"loadUser":4.368964368964369,"loadSystem":2.131202131202131,"loadNice":0,"loadIdle":93.44655344655345,"loadIrq":0.05328005328005328,"rawLoad":1968,"rawLoadUser":1312,"rawLoadSystem":640,"rawLoadNice":0,"rawLoadIdle":28062,"rawLoadIrq":16},{"load":7.3425059133157875,"loadUser":3.9577572708798345,"loadSystem":3.384748642435953,"loadNice":0,"loadIdle":92.65749408668421,"loadIrq":0,"rawLoad":2204,"rawLoadUser":1188,"rawLoadSystem":1016,"rawLoadNice":0,"rawLoadIdle":27813,"rawLoadIrq":0},{"load":6.8659100742170605,"loadUser":4.11022731054681,"loadSystem":2.652511065996605,"loadNice":0,"loadIdle":93.13408992578293,"loadIrq":0.10317169767364463,"rawLoad":2063,"rawLoadUser":1235,"rawLoadSystem":797,"rawLoadNice":0,"rawLoadIdle":27984,"rawLoadIrq":31}]}', '{"ESTABLISHED":29,"CLOSE":0,"TIME_WAIT":5,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":32,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":223744577,"rx_dropped":0,"rx_errors":0,"tx_bytes":22686983,"tx_dropped":0,"tx_errors":0,"rx_sec":2425.5858138062063,"tx_sec":500.51664944501846,"ms":30001}]', '{"total":10685313024,"free":4477054976,"used":6208258048,"active":6208258048,"available":4477054976,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":58720256,"swapfree":2491416576}'), (154, '2022-03-29 22:30:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53552148480,"available":73724002304,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":9.016809308747328,"currentLoadUser":5.22327852217814,"currentLoadSystem":3.6513045720321715,"currentLoadNice":0,"currentLoadIdle":90.98319069125267,"currentLoadIrq":0.14222621453701623,"rawCurrentLoad":10841,"rawCurrentLoadUser":6280,"rawCurrentLoadSystem":4390,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":109390,"rawCurrentLoadIrq":171,"cpus":[{"load":9.990056347364932,"loadUser":4.865760689426582,"loadSystem":4.607225720914816,"loadNice":0,"loadIdle":90.00994365263507,"loadIrq":0.5170699370235333,"rawLoad":3014,"rawLoadUser":1468,"rawLoadSystem":1390,"rawLoadNice":0,"rawLoadIdle":27156,"rawLoadIrq":156},{"load":7.965751599147121,"loadUser":5.050639658848614,"loadSystem":2.9151119402985075,"loadNice":0,"loadIdle":92.03424840085287,"loadIrq":0,"rawLoad":2391,"rawLoadUser":1516,"rawLoadSystem":875,"rawLoadNice":0,"rawLoadIdle":27625,"rawLoadIrq":0},{"load":9.204435712144926,"loadUser":5.358153784674815,"loadSystem":3.7963302141263444,"loadNice":0,"loadIdle":90.79556428785507,"loadIrq":0.04995171334376769,"rawLoad":2764,"rawLoadUser":1609,"rawLoadSystem":1140,"rawLoadNice":0,"rawLoadIdle":27265,"rawLoadIrq":15},{"load":8.901918976545842,"loadUser":5.620335820895522,"loadSystem":3.28158315565032,"loadNice":0,"loadIdle":91.09808102345416,"loadIrq":0,"rawLoad":2672,"rawLoadUser":1687,"rawLoadSystem":985,"rawLoadNice":0,"rawLoadIdle":27344,"rawLoadIrq":0}]}', '{"ESTABLISHED":30,"CLOSE":0,"TIME_WAIT":5,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":223829919,"rx_dropped":0,"rx_errors":0,"tx_bytes":22700855,"tx_dropped":0,"tx_errors":0,"rx_sec":2841.891441891442,"tx_sec":461.93806193806194,"ms":30030}]', '{"total":10685313024,"free":4372697088,"used":6312615936,"active":6312615936,"available":4372697088,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":57671680,"swapfree":2492465152}'), (155, '2022-03-29 22:30:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53552082944,"available":73724067840,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":7.898937496882326,"currentLoadUser":3.8842054505246004,"currentLoadSystem":3.8326599158643853,"currentLoadNice":0,"currentLoadIdle":92.10106250311767,"currentLoadIrq":0.18207213049334064,"rawCurrentLoad":9501,"rawCurrentLoadUser":4672,"rawCurrentLoadSystem":4610,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":110781,"rawCurrentLoadIrq":219,"cpus":[{"load":9.877891392832323,"loadUser":4.136470432509348,"loadSystem":5.069658162083457,"loadNice":0,"loadIdle":90.12210860716768,"loadIrq":0.6717627982395182,"rawLoad":2985,"rawLoadUser":1250,"rawLoadSystem":1532,"rawLoadNice":0,"rawLoadIdle":27234,"rawLoadIrq":203},{"load":6.976279317697228,"loadUser":3.851279317697228,"loadSystem":3.125,"loadNice":0,"loadIdle":93.02372068230277,"loadIrq":0,"rawLoad":2094,"rawLoadUser":1156,"rawLoadSystem":938,"rawLoadNice":0,"rawLoadIdle":27922,"rawLoadIrq":0},{"load":8.014784230154502,"loadUser":4.318726691529036,"loadSystem":3.6427810335641984,"loadNice":0,"loadIdle":91.9852157698455,"loadIrq":0.05327650506126798,"rawLoad":2407,"rawLoadUser":1297,"rawLoadSystem":1094,"rawLoadNice":0,"rawLoadIdle":27625,"rawLoadIrq":16},{"load":6.713310011660837,"loadUser":3.2283858070964517,"loadSystem":3.4849242045643845,"loadNice":0,"loadIdle":93.28668998833916,"loadIrq":0,"rawLoad":2015,"rawLoadUser":969,"rawLoadSystem":1046,"rawLoadNice":0,"rawLoadIdle":28000,"rawLoadIrq":0}]}', '{"ESTABLISHED":28,"CLOSE":0,"TIME_WAIT":5,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":223864200,"rx_dropped":0,"rx_errors":0,"tx_bytes":22704840,"tx_dropped":0,"tx_errors":0,"rx_sec":1141.9387075283146,"tx_sec":132.744836775483,"ms":30020}]', '{"total":10685313024,"free":4453326848,"used":6231986176,"active":6231986176,"available":4453326848,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":57671680,"swapfree":2492465152}'), (156, '2022-03-29 22:31:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53551636480,"available":73724514304,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":9.755307754261564,"currentLoadUser":5.215174738660046,"currentLoadSystem":4.1772877105872785,"currentLoadNice":0,"currentLoadIdle":90.24469224573843,"currentLoadIrq":0.36284530501423984,"rawCurrentLoad":11749,"rawCurrentLoadUser":6281,"rawCurrentLoadSystem":5031,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":108688,"rawCurrentLoadIrq":437,"cpus":[{"load":12.997434716832204,"loadUser":5.6008682496875615,"loadSystem":6.061303690061172,"loadNice":0,"loadIdle":87.0025652831678,"loadIrq":1.3352627770834704,"rawLoad":3952,"rawLoadUser":1703,"rawLoadSystem":1843,"rawLoadNice":0,"rawLoadIdle":26454,"rawLoadIrq":406},{"load":8.275862068965518,"loadUser":4.737631184407796,"loadSystem":3.4882558720639683,"loadNice":0,"loadIdle":91.72413793103448,"loadIrq":0.04997501249375312,"rawLoad":2484,"rawLoadUser":1422,"rawLoadSystem":1047,"rawLoadNice":0,"rawLoadIdle":27531,"rawLoadIrq":15},{"load":8.906666666666666,"loadUser":5.156666666666666,"loadSystem":3.75,"loadNice":0,"loadIdle":91.09333333333333,"loadIrq":0,"rawLoad":2672,"rawLoadUser":1547,"rawLoadSystem":1125,"rawLoadNice":0,"rawLoadIdle":27328,"rawLoadIrq":0},{"load":8.798640724946695,"loadUser":5.360474413646055,"loadSystem":3.384861407249467,"loadNice":0,"loadIdle":91.2013592750533,"loadIrq":0.053304904051172705,"rawLoad":2641,"rawLoadUser":1609,"rawLoadSystem":1016,"rawLoadNice":0,"rawLoadIdle":27375,"rawLoadIrq":16}]}', '{"ESTABLISHED":31,"CLOSE":0,"TIME_WAIT":6,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":224068135,"rx_dropped":0,"rx_errors":0,"tx_bytes":22741773,"tx_dropped":0,"tx_errors":0,"rx_sec":6803.502919099249,"tx_sec":1232.1267723102585,"ms":29975}]', '{"total":10685313024,"free":4418539520,"used":6266773504,"active":6266773504,"available":4418539520,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":57671680,"swapfree":2492465152}'), (157, '2022-03-29 22:31:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53551644672,"available":73724506112,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":7.507085684838713,"currentLoadUser":4.090995985471229,"currentLoadSystem":3.208298355123719,"currentLoadNice":0,"currentLoadIdle":92.49291431516129,"currentLoadIrq":0.2077913442437642,"rawCurrentLoad":9032,"rawCurrentLoadUser":4922,"rawCurrentLoadSystem":3860,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":111281,"rawCurrentLoadIrq":250,"cpus":[{"load":8.698820723466277,"loadUser":3.4185769179806544,"loadSystem":4.710480985822181,"loadNice":0,"loadIdle":91.30117927653372,"loadIrq":0.5697628196634424,"rawLoad":2626,"rawLoadUser":1032,"rawLoadSystem":1422,"rawLoadNice":0,"rawLoadIdle":27562,"rawLoadIrq":172},{"load":6.506529850746269,"loadUser":4.007862473347548,"loadSystem":2.4986673773987205,"loadNice":0,"loadIdle":93.49347014925374,"loadIrq":0,"rawLoad":1953,"rawLoadUser":1203,"rawLoadSystem":750,"rawLoadNice":0,"rawLoadIdle":28063,"rawLoadIrq":0},{"load":7.01964701964702,"loadUser":4.055944055944056,"loadSystem":2.9137529137529135,"loadNice":0,"loadIdle":92.98035298035298,"loadIrq":0.04995004995004995,"rawLoad":2108,"rawLoadUser":1218,"rawLoadSystem":875,"rawLoadNice":0,"rawLoadIdle":27922,"rawLoadIrq":15},{"load":7.796136839655573,"loadUser":4.88380597759234,"loadSystem":2.7028824096545763,"loadNice":0,"loadIdle":92.20386316034443,"loadIrq":0.2094484524086572,"rawLoad":2345,"rawLoadUser":1469,"rawLoadSystem":813,"rawLoadNice":0,"rawLoadIdle":27734,"rawLoadIrq":63}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":7,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":224108239,"rx_dropped":0,"rx_errors":0,"tx_bytes":22745922,"tx_dropped":0,"tx_errors":0,"rx_sec":1337.0228371395233,"tx_sec":138.32305384230705,"ms":29995}]', '{"total":10685313024,"free":4440055808,"used":6245257216,"active":6245257216,"available":4440055808,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":57671680,"swapfree":2492465152}'), (158, '2022-03-29 22:32:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53554176000,"available":73721974784,"use":42.08,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":28.41569043905353,"currentLoadUser":14.725550061394484,"currentLoadSystem":13.352470713171606,"currentLoadNice":0,"currentLoadIdle":71.58430956094647,"currentLoadIrq":0.337669664487439,"rawCurrentLoad":34250,"rawCurrentLoadUser":17749,"rawCurrentLoadSystem":16094,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":86282,"rawCurrentLoadIrq":407,"cpus":[{"load":25.128526232533616,"loadUser":11.017005009227525,"loadSystem":13.080015818613235,"loadNice":0,"loadIdle":74.87147376746638,"loadIrq":1.0315054046928551,"rawLoad":7625,"rawLoadUser":3343,"rawLoadSystem":3969,"rawLoadNice":0,"rawLoadIdle":22719,"rawLoadIrq":313},{"load":35.77728225779612,"loadUser":19.552700768795553,"loadSystem":16.171331580523844,"loadNice":0,"loadIdle":64.22271774220388,"loadIrq":0.0532499084767198,"rawLoad":10750,"rawLoadUser":5875,"rawLoadSystem":4859,"rawLoadNice":0,"rawLoadIdle":19297,"rawLoadIrq":16},{"load":28.17323044172432,"loadUser":15.124401277275146,"loadSystem":12.942389568919637,"loadNice":0,"loadIdle":71.82676955827569,"loadIrq":0.10643959552953698,"rawLoad":8470,"rawLoadUser":4547,"rawLoadSystem":3891,"rawLoadNice":0,"rawLoadIdle":21594,"rawLoadIrq":32},{"load":24.620141636466403,"loadUser":13.246001928383816,"loadSystem":11.221198922764904,"loadNice":0,"loadIdle":75.37985836353359,"loadIrq":0.1529407853176846,"rawLoad":7405,"rawLoadUser":3984,"rawLoadSystem":3375,"rawLoadNice":0,"rawLoadIdle":22672,"rawLoadIrq":46}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":7,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":224152701,"rx_dropped":0,"rx_errors":0,"tx_bytes":22750629,"tx_dropped":0,"tx_errors":0,"rx_sec":1476.6522749916971,"tx_sec":156.326801727001,"ms":30110}]', '{"total":10685313024,"free":4892020736,"used":5793292288,"active":5793292288,"available":4892020736,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":57671680,"swapfree":2492465152}'), (159, '2022-03-29 22:32:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53570727936,"available":73705422848,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":28.661752716260963,"currentLoadUser":16.26262458195371,"currentLoadSystem":12.178665912380826,"currentLoadNice":0,"currentLoadIdle":71.33824728373904,"currentLoadIrq":0.22046222192642384,"rawCurrentLoad":34452,"rawCurrentLoadUser":19548,"rawCurrentLoadSystem":14639,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":85750,"rawCurrentLoadIrq":265,"cpus":[{"load":20.600901020272953,"loadUser":10.45779780045051,"loadSystem":9.470650589638268,"loadNice":0,"loadIdle":79.39909897972704,"loadIrq":0.6724526301841792,"rawLoad":6219,"rawLoadUser":3157,"rawLoadSystem":2859,"rawLoadNice":0,"rawLoadIdle":23969,"rawLoadIrq":203},{"load":46.229115356453434,"loadUser":26.938694002529456,"loadSystem":19.08407109099381,"loadNice":0,"loadIdle":53.77088464354656,"loadIrq":0.20635026293017375,"rawLoad":13890,"rawLoadUser":8094,"rawLoadSystem":5734,"rawLoadNice":0,"rawLoadIdle":16156,"rawLoadIrq":62},{"load":26.99106189967983,"loadUser":16.25867129135539,"loadSystem":10.73239060832444,"loadNice":0,"loadIdle":73.00893810032018,"loadIrq":0,"rawLoad":8093,"rawLoadUser":4875,"rawLoadSystem":3218,"rawLoadNice":0,"rawLoadIdle":21891,"rawLoadIrq":0},{"load":20.84445037353255,"loadUser":11.412753468516543,"loadSystem":9.43169690501601,"loadNice":0,"loadIdle":79.15554962646745,"loadIrq":0,"rawLoad":6250,"rawLoadUser":3422,"rawLoadSystem":2828,"rawLoadNice":0,"rawLoadIdle":23734,"rawLoadIrq":0}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":7,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":224189244,"rx_dropped":0,"rx_errors":0,"tx_bytes":22756351,"tx_dropped":0,"tx_errors":0,"rx_sec":1207.1950051204121,"tx_sec":189.02580027088632,"ms":30271}]', '{"total":10685313024,"free":4900896768,"used":5784416256,"active":5784416256,"available":4900896768,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":51380224,"swapfree":2498756608}'), (160, '2022-03-29 22:33:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53572280320,"available":73703870464,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":9.035783799970055,"currentLoadUser":5.3159987356723395,"currentLoadSystem":3.5367902713313706,"currentLoadNice":0,"currentLoadIdle":90.96421620002995,"currentLoadIrq":0.1829947929663456,"rawCurrentLoad":10863,"rawCurrentLoadUser":6391,"rawCurrentLoadSystem":4252,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":109359,"rawCurrentLoadIrq":220,"cpus":[{"load":10.151796367493041,"loadUser":5.230014583057139,"loadSystem":4.351716823545009,"loadNice":0,"loadIdle":89.84820363250697,"loadIrq":0.5700649608908922,"rawLoad":3063,"rawLoadUser":1578,"rawLoadSystem":1313,"rawLoadNice":0,"rawLoadIdle":27109,"rawLoadIrq":172},{"load":8.487330603003363,"loadUser":5.620484134119136,"loadSystem":2.7602970066260446,"loadNice":0,"loadIdle":91.51266939699664,"loadIrq":0.10654946225818268,"rawLoad":2549,"rawLoadUser":1688,"rawLoadSystem":829,"rawLoadNice":0,"rawLoadIdle":27484,"rawLoadIrq":32},{"load":8.596380120662644,"loadUser":4.739842005266491,"loadSystem":3.8565381153961535,"loadNice":0,"loadIdle":91.40361987933736,"loadIrq":0,"rawLoad":2579,"rawLoadUser":1422,"rawLoadSystem":1157,"rawLoadNice":0,"rawLoadIdle":27422,"rawLoadIrq":0},{"load":8.901918976545842,"loadUser":5.673640724946695,"loadSystem":3.174973347547974,"loadNice":0,"loadIdle":91.09808102345416,"loadIrq":0.053304904051172705,"rawLoad":2672,"rawLoadUser":1703,"rawLoadSystem":953,"rawLoadNice":0,"rawLoadIdle":27344,"rawLoadIrq":16}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":7,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":31,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":224231753,"rx_dropped":0,"rx_errors":0,"tx_bytes":22764699,"tx_dropped":0,"tx_errors":0,"rx_sec":1431.8579897601726,"tx_sec":281.19105362436,"ms":29688}]', '{"total":10685313024,"free":4924764160,"used":5760548864,"active":5760548864,"available":4924764160,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":51380224,"swapfree":2498756608}'), (161, '2022-03-29 22:33:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53572546560,"available":73703604224,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.955105838567109,"currentLoadUser":3.7251187983916525,"currentLoadSystem":3.0231283022629847,"currentLoadNice":0,"currentLoadIdle":93.0448941614329,"currentLoadIrq":0.20685873791247136,"rawCurrentLoad":8372,"rawCurrentLoadUser":4484,"rawCurrentLoadSystem":3639,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112000,"rawCurrentLoadIrq":249,"cpus":[{"load":8.722947298860069,"loadUser":3.3537089046753676,"loadSystem":4.596068065422105,"loadNice":0,"loadIdle":91.27705270113992,"loadIrq":0.7731703287625971,"rawLoad":2640,"rawLoadUser":1015,"rawLoadSystem":1391,"rawLoadNice":0,"rawLoadIdle":27625,"rawLoadIrq":234},{"load":6.54684639707106,"loadUser":3.6911299717091026,"loadSystem":2.805791313030454,"loadNice":0,"loadIdle":93.45315360292894,"loadIrq":0.04992511233150275,"rawLoad":1967,"rawLoadUser":1109,"rawLoadSystem":843,"rawLoadNice":0,"rawLoadIdle":28078,"rawLoadIrq":15},{"load":6.243548333388831,"loadUser":3.696180613366188,"loadSystem":2.5473677200226432,"loadNice":0,"loadIdle":93.75645166661117,"loadIrq":0,"rawLoad":1875,"rawLoadUser":1110,"rawLoadSystem":765,"rawLoadNice":0,"rawLoadIdle":28156,"rawLoadIrq":0},{"load":6.293496720055942,"loadUser":4.1623655555925545,"loadSystem":2.1311311644633877,"loadNice":0,"loadIdle":93.70650327994406,"loadIrq":0,"rawLoad":1890,"rawLoadUser":1250,"rawLoadSystem":640,"rawLoadNice":0,"rawLoadIdle":28141,"rawLoadIrq":0}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":5,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":224270999,"rx_dropped":0,"rx_errors":0,"tx_bytes":22770123,"tx_dropped":0,"tx_errors":0,"rx_sec":1308.9417336490678,"tx_sec":180.90251142313977,"ms":29983}]', '{"total":10685313024,"free":4904882176,"used":5780430848,"active":5780430848,"available":4904882176,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":51380224,"swapfree":2498756608}'), (162, '2022-03-29 22:34:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53572546560,"available":73703604224,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":8.217890156337102,"currentLoadUser":4.433850019552539,"currentLoadSystem":3.6276198320977797,"currentLoadNice":0,"currentLoadIdle":91.7821098436629,"currentLoadIrq":0.15642030468678497,"rawCurrentLoad":9877,"rawCurrentLoadUser":5329,"rawCurrentLoadSystem":4360,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":110312,"rawCurrentLoadIrq":188,"cpus":[{"load":9.800603828671909,"loadUser":4.668060117447995,"loadSystem":4.664742377492452,"loadNice":0,"loadIdle":90.19939617132809,"loadIrq":0.46780133373146215,"rawLoad":2954,"rawLoadUser":1407,"rawLoadSystem":1406,"rawLoadNice":0,"rawLoadIdle":27187,"rawLoadIrq":141},{"load":7.3425059133157875,"loadUser":4.3208848319285735,"loadSystem":2.9683179531598762,"loadNice":0,"loadIdle":92.65749408668421,"loadIrq":0.05330312822733784,"rawLoad":2204,"rawLoadUser":1297,"rawLoadSystem":891,"rawLoadNice":0,"rawLoadIdle":27813,"rawLoadIrq":16},{"load":7.916666666666666,"loadUser":4.2700000000000005,"loadSystem":3.646666666666667,"loadNice":0,"loadIdle":92.08333333333333,"loadIrq":0,"rawLoad":2375,"rawLoadUser":1281,"rawLoadSystem":1094,"rawLoadNice":0,"rawLoadIdle":27625,"rawLoadIrq":0},{"load":7.8052678898471575,"loadUser":4.475375445373114,"loadSystem":3.226665778695348,"loadNice":0,"loadIdle":92.19473211015284,"loadIrq":0.10322666577869534,"rawLoad":2344,"rawLoadUser":1344,"rawLoadSystem":969,"rawLoadNice":0,"rawLoadIdle":27687,"rawLoadIrq":31}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":5,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":224308855,"rx_dropped":0,"rx_errors":0,"tx_bytes":22774840,"tx_dropped":0,"tx_errors":0,"rx_sec":1261.5302585977074,"tx_sec":157.19141562250067,"ms":30008}]', '{"total":10685313024,"free":4964478976,"used":5720834048,"active":5720834048,"available":4964478976,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":52428800,"swapfree":2497708032}'), (163, '2022-03-29 22:34:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53572612096,"available":73703538688,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":7.352305235845918,"currentLoadUser":4.092375756769343,"currentLoadSystem":3.0528574279821705,"currentLoadNice":0,"currentLoadIdle":92.64769476415408,"currentLoadIrq":0.2070720510944049,"rawCurrentLoad":8841,"rawCurrentLoadUser":4921,"rawCurrentLoadSystem":3671,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":111407,"rawCurrentLoadIrq":249,"cpus":[{"load":8.93867690372969,"loadUser":4.444517986563855,"loadSystem":3.7727107257504056,"loadNice":0,"loadIdle":91.06132309627031,"loadIrq":0.7214481914154285,"rawLoad":2701,"rawLoadUser":1343,"rawLoadSystem":1140,"rawLoadNice":0,"rawLoadIdle":27516,"rawLoadIrq":218},{"load":7.1866666666666665,"loadUser":4.166666666666666,"loadSystem":3.02,"loadNice":0,"loadIdle":92.81333333333333,"loadIrq":0,"rawLoad":2156,"rawLoadUser":1250,"rawLoadSystem":906,"rawLoadNice":0,"rawLoadIdle":27844,"rawLoadIrq":0},{"load":6.7630115547267815,"loadUser":4.005860610702274,"loadSystem":2.6539242782458126,"loadNice":0,"loadIdle":93.23698844527321,"loadIrq":0.10322666577869534,"rawLoad":2031,"rawLoadUser":1203,"rawLoadSystem":797,"rawLoadNice":0,"rawLoadIdle":28000,"rawLoadIrq":31},{"load":6.510000000000001,"loadUser":3.75,"loadSystem":2.76,"loadNice":0,"loadIdle":93.49,"loadIrq":0,"rawLoad":1953,"rawLoadUser":1125,"rawLoadSystem":828,"rawLoadNice":0,"rawLoadIdle":28047,"rawLoadIrq":0}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":5,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":224340973,"rx_dropped":0,"rx_errors":0,"tx_bytes":22778360,"tx_dropped":0,"tx_errors":0,"rx_sec":1069.8867421718853,"tx_sec":117.25516322451699,"ms":30020}]', '{"total":10685313024,"free":4942569472,"used":5742743552,"active":5742743552,"available":4942569472,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":52428800,"swapfree":2497708032}'), (164, '2022-03-29 22:35:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53572608000,"available":73703542784,"use":42.09,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":13.698959300013257,"currentLoadUser":7.7281917009147545,"currentLoadSystem":5.451246188519157,"currentLoadNice":0,"currentLoadIdle":86.30104069998674,"currentLoadIrq":0.5195214105793451,"rawCurrentLoad":16533,"rawCurrentLoadUser":9327,"rawCurrentLoadSystem":6579,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":104155,"rawCurrentLoadIrq":627,"cpus":[{"load":15.485909928891232,"loadUser":7.973400052673163,"loadSystem":6.327363708190677,"loadNice":0,"loadIdle":84.51409007110877,"loadIrq":1.18514616802739,"rawLoad":4704,"rawLoadUser":2422,"rawLoadSystem":1922,"rawLoadNice":0,"rawLoadIdle":25672,"rawLoadIrq":360},{"load":12.277722277722278,"loadUser":7.542457542457543,"loadSystem":4.681984681984682,"loadNice":0,"loadIdle":87.72227772227772,"loadIrq":0.05328005328005328,"rawLoad":3687,"rawLoadUser":2265,"rawLoadSystem":1406,"rawLoadNice":0,"rawLoadIdle":26343,"rawLoadIrq":16},{"load":12.800106556558225,"loadUser":7.282474776064733,"loadSystem":5.464353501381906,"loadNice":0,"loadIdle":87.19989344344178,"loadIrq":0.0532782791115847,"rawLoad":3844,"rawLoadUser":2187,"rawLoadSystem":1641,"rawLoadNice":0,"rawLoadIdle":26187,"rawLoadIrq":16},{"load":14.207794783643516,"loadUser":8.108822848831444,"loadSystem":5.322138111136822,"loadNice":0,"loadIdle":85.79220521635649,"loadIrq":0.7768338236752504,"rawLoad":4298,"rawLoadUser":2453,"rawLoadSystem":1610,"rawLoadNice":0,"rawLoadIdle":25953,"rawLoadIrq":235}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":4,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":33,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":224407578,"rx_dropped":0,"rx_errors":0,"tx_bytes":22786697,"tx_dropped":0,"tx_errors":0,"rx_sec":2201.6726166865,"tx_sec":275.5850852836176,"ms":30252}]', '{"total":10685313024,"free":4740804608,"used":5944508416,"active":5944508416,"available":4740804608,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":52428800,"swapfree":2497708032}'), (165, '2022-03-29 22:35:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55198101504,"available":72078049280,"use":43.37,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":16.559284227634187,"currentLoadUser":10.249840377455492,"currentLoadSystem":5.817723492292512,"currentLoadNice":0,"currentLoadIdle":83.44071577236582,"currentLoadIrq":0.49172035788618296,"rawCurrentLoad":19970,"rawCurrentLoadUser":12361,"rawCurrentLoadSystem":7016,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":100627,"rawCurrentLoadIrq":593,"cpus":[{"load":18.568882434484124,"loadUser":9.852135454485445,"loadSystem":7.73648425638656,"loadNice":0,"loadIdle":81.43111756551588,"loadIrq":0.9802627236121196,"rawLoad":5626,"rawLoadUser":2985,"rawLoadSystem":2344,"rawLoadNice":0,"rawLoadIdle":24672,"rawLoadIrq":297},{"load":14.525102441949562,"loadUser":9.944364859912715,"loadSystem":4.5307658993237165,"loadNice":0,"loadIdle":85.47489755805043,"loadIrq":0.049971682713129226,"rawLoad":4360,"rawLoadUser":2985,"rawLoadSystem":1360,"rawLoadNice":0,"rawLoadIdle":25657,"rawLoadIrq":15},{"load":16.51983111140663,"loadUser":10.442501412945909,"loadSystem":5.818012566907145,"loadNice":0,"loadIdle":83.48016888859337,"loadIrq":0.2593171315535756,"rawLoad":4969,"rawLoadUser":3141,"rawLoadSystem":1750,"rawLoadNice":0,"rawLoadIdle":25110,"rawLoadIrq":78},{"load":16.604310830049997,"loadUser":10.760520478098202,"loadSystem":5.171671688242889,"loadNice":0,"loadIdle":83.39568916995,"loadIrq":0.672118663708903,"rawLoad":5015,"rawLoadUser":3250,"rawLoadSystem":1562,"rawLoadNice":0,"rawLoadIdle":25188,"rawLoadIrq":203}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":4,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":33,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":224443351,"rx_dropped":0,"rx_errors":0,"tx_bytes":22794493,"tx_dropped":0,"tx_errors":0,"rx_sec":1195.3419988639023,"tx_sec":260.5005513415979,"ms":29927}]', '{"total":10685313024,"free":4780896256,"used":5904416768,"active":5904416768,"available":4780896256,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3633315840,"swapused":52428800,"swapfree":3580887040}'), (166, '2022-03-29 22:36:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55197679616,"available":72078471168,"use":43.37,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":17.0925117417477,"currentLoadUser":10.439405966792354,"currentLoadSystem":5.981676258516901,"currentLoadNice":0,"currentLoadIdle":82.9074882582523,"currentLoadIrq":0.6714295164384468,"rawCurrentLoad":20671,"rawCurrentLoadUser":12625,"rawCurrentLoadSystem":7234,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":100265,"rawCurrentLoadIrq":812,"cpus":[{"load":19.516123730317872,"loadUser":10.427007659182802,"loadSystem":7.807106932710957,"loadNice":0,"loadIdle":80.48387626968213,"loadIrq":1.282009138424115,"rawLoad":5937,"rawLoadUser":3172,"rawLoadSystem":2375,"rawLoadNice":0,"rawLoadIdle":24484,"rawLoadIrq":390},{"load":14.90047519356661,"loadUser":9.500548300269166,"loadSystem":5.190575881434221,"loadNice":0,"loadIdle":85.0995248064334,"loadIrq":0.20935101186322402,"rawLoad":4484,"rawLoadUser":2859,"rawLoadSystem":1562,"rawLoadNice":0,"rawLoadIdle":25609,"rawLoadIrq":63},{"load":16.623445707826317,"loadUser":11.274020879047809,"loadSystem":5.193164439124942,"loadNice":0,"loadIdle":83.37655429217368,"loadIrq":0.1562603896535674,"rawLoad":5000,"rawLoadUser":3391,"rawLoadSystem":1562,"rawLoadNice":0,"rawLoadIdle":25078,"rawLoadIrq":47},{"load":17.301608225678883,"loadUser":10.555628789876087,"loadSystem":5.717769575533879,"loadNice":0,"loadIdle":82.69839177432112,"loadIrq":1.0282098602689165,"rawLoad":5250,"rawLoadUser":3203,"rawLoadSystem":1735,"rawLoadNice":0,"rawLoadIdle":25094,"rawLoadIrq":312}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":4,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":34,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":224485053,"rx_dropped":0,"rx_errors":0,"tx_bytes":22802722,"tx_dropped":0,"tx_errors":0,"rx_sec":1394.1095844616052,"tx_sec":275.09778357235984,"ms":29913}]', '{"total":10685313024,"free":4755562496,"used":5929750528,"active":5929750528,"available":4755562496,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3633315840,"swapused":52428800,"swapfree":3580887040}'), (167, '2022-03-29 22:36:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55198859264,"available":72077291520,"use":43.37,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":19.790377635851737,"currentLoadUser":12.043319740546647,"currentLoadSystem":7.409868197031734,"currentLoadNice":0,"currentLoadIdle":80.20962236414826,"currentLoadIrq":0.3371896982733562,"rawCurrentLoad":23829,"rawCurrentLoadUser":14501,"rawCurrentLoadSystem":8922,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":96578,"rawCurrentLoadIrq":406,"cpus":[{"load":21.790115277593745,"loadUser":11.95508148933351,"loadSystem":9.212269776069961,"loadNice":0,"loadIdle":78.20988472240626,"loadIrq":0.6227640121902742,"rawLoad":6578,"rawLoadUser":3609,"rawLoadSystem":2781,"rawLoadNice":0,"rawLoadIdle":23610,"rawLoadIrq":188},{"load":17.838125665601705,"loadUser":11.701277955271564,"loadSystem":5.980431309904153,"loadNice":0,"loadIdle":82.1618743343983,"loadIrq":0.1564164004259851,"rawLoad":5360,"rawLoadUser":3516,"rawLoadSystem":1797,"rawLoadNice":0,"rawLoadIdle":24688,"rawLoadIrq":47},{"load":19.916128602809028,"loadUser":11.805231977634294,"loadSystem":7.957798043000733,"loadNice":0,"loadIdle":80.08387139719098,"loadIrq":0.15309858217399985,"rawLoad":5984,"rawLoadUser":3547,"rawLoadSystem":2391,"rawLoadNice":0,"rawLoadIdle":24062,"rawLoadIrq":46},{"load":19.608298755186723,"loadUser":12.710373443983404,"loadSystem":6.48298755186722,"loadNice":0,"loadIdle":80.39170124481328,"loadIrq":0.4149377593360996,"rawLoad":5907,"rawLoadUser":3829,"rawLoadSystem":1953,"rawLoadNice":0,"rawLoadIdle":24218,"rawLoadIrq":125}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":7,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":29,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":224572002,"rx_dropped":0,"rx_errors":0,"tx_bytes":22832488,"tx_dropped":0,"tx_errors":0,"rx_sec":2875.2025395985584,"tx_sec":984.292847458748,"ms":30241}]', '{"total":10685313024,"free":4727156736,"used":5958156288,"active":5958156288,"available":4727156736,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3633315840,"swapused":52428800,"swapfree":3580887040}'), (168, '2022-03-29 22:37:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55198982144,"available":72077168640,"use":43.37,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.691705309962089,"currentLoadUser":6.558437787750836,"currentLoadSystem":4.6795026006453915,"currentLoadNice":0,"currentLoadIdle":88.30829469003791,"currentLoadIrq":0.45376492156586223,"rawCurrentLoad":14094,"rawCurrentLoadUser":7906,"rawCurrentLoadSystem":5641,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":106453,"rawCurrentLoadIrq":547,"cpus":[{"load":13.057261739647316,"loadUser":6.244633775840433,"loadSystem":5.884683970675649,"loadNice":0,"loadIdle":86.94273826035268,"loadIrq":0.9279439931312331,"rawLoad":3954,"rawLoadUser":1891,"rawLoadSystem":1782,"rawLoadNice":0,"rawLoadIdle":26328,"rawLoadIrq":281},{"load":10.199460557423995,"loadUser":6.556558223169391,"loadSystem":3.5396756684759083,"loadNice":0,"loadIdle":89.800539442576,"loadIrq":0.10322666577869534,"rawLoad":3063,"rawLoadUser":1969,"rawLoadSystem":1063,"rawLoadNice":0,"rawLoadIdle":26968,"rawLoadIrq":31},{"load":11.692502162198123,"loadUser":6.702814184019693,"loadSystem":4.7801210830949366,"loadNice":0,"loadIdle":88.30749783780188,"loadIrq":0.2095668950834941,"rawLoad":3515,"rawLoadUser":2015,"rawLoadSystem":1437,"rawLoadNice":0,"rawLoadIdle":26547,"rawLoadIrq":63},{"load":11.805647620310221,"loadUser":6.731406602147687,"loadSystem":4.504176057271643,"loadNice":0,"loadIdle":88.19435237968978,"loadIrq":0.5700649608908922,"rawLoad":3562,"rawLoadUser":2031,"rawLoadSystem":1359,"rawLoadNice":0,"rawLoadIdle":26610,"rawLoadIrq":172}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":7,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":224640968,"rx_dropped":0,"rx_errors":0,"tx_bytes":22839984,"tx_dropped":0,"tx_errors":0,"rx_sec":2311.580358639182,"tx_sec":251.24853360147478,"ms":29835}]', '{"total":10685313024,"free":4704575488,"used":5980737536,"active":5980737536,"available":4704575488,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3633315840,"swapused":52428800,"swapfree":3580887040}'), (169, '2022-03-29 22:37:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54585856000,"available":72690294784,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":17.376027578891538,"currentLoadUser":9.969172633253779,"currentLoadSystem":6.953560063643597,"currentLoadNice":0,"currentLoadIdle":82.62397242110846,"currentLoadIrq":0.453294881994166,"rawCurrentLoad":20968,"rawCurrentLoadUser":12030,"rawCurrentLoadSystem":8391,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":99704,"rawCurrentLoadIrq":547,"cpus":[{"load":19.30923112414725,"loadUser":9.781498203869097,"loadSystem":8.496193520746136,"loadNice":0,"loadIdle":80.69076887585275,"loadIrq":1.0315393995320172,"rawLoad":5859,"rawLoadUser":2968,"rawLoadSystem":2578,"rawLoadNice":0,"rawLoadIdle":24484,"rawLoadIrq":313},{"load":15.797352138912913,"loadUser":9.716585722839465,"loadSystem":5.97764619785776,"loadNice":0,"loadIdle":84.20264786108709,"loadIrq":0.10312021821568759,"rawLoad":4749,"rawLoadUser":2921,"rawLoadSystem":1797,"rawLoadNice":0,"rawLoadIdle":25313,"rawLoadIrq":31},{"load":17.438809737305302,"loadUser":10.172362259639335,"loadSystem":7.007405931387201,"loadNice":0,"loadIdle":82.5611902626947,"loadIrq":0.2590415462787686,"rawLoad":5251,"rawLoadUser":3063,"rawLoadSystem":2110,"rawLoadNice":0,"rawLoadIdle":24860,"rawLoadIrq":78},{"load":16.941902109033027,"loadUser":10.206923995224832,"loadSystem":6.320466905425123,"loadNice":0,"loadIdle":83.05809789096698,"loadIrq":0.41451120838307465,"rawLoad":5109,"rawLoadUser":3078,"rawLoadSystem":1906,"rawLoadNice":0,"rawLoadIdle":25047,"rawLoadIrq":125}]}', '{"ESTABLISHED":27,"CLOSE":0,"TIME_WAIT":11,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":224717657,"rx_dropped":0,"rx_errors":0,"tx_bytes":22855737,"tx_dropped":0,"tx_errors":0,"rx_sec":2536.2635182061713,"tx_sec":520.9842246254589,"ms":30237}]', '{"total":10685313024,"free":4660310016,"used":6025003008,"active":6025003008,"available":4660310016,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":52428800,"swapfree":3512729600}'), (170, '2022-03-29 22:38:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54586048512,"available":72690102272,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":18.01752012669922,"currentLoadUser":10.220898772601293,"currentLoadSystem":6.7787382869209445,"currentLoadNice":0,"currentLoadIdle":81.98247987330078,"currentLoadIrq":1.017883067176983,"rawCurrentLoad":21843,"rawCurrentLoadUser":12391,"rawCurrentLoadSystem":8218,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":99389,"rawCurrentLoadIrq":1234,"cpus":[{"load":19.80428857583818,"loadUser":9.647653761534167,"loadSystem":8.669096640725051,"loadNice":0,"loadIdle":80.19571142416181,"loadIrq":1.4875381735789577,"rawLoad":6031,"rawLoadUser":2938,"rawLoadSystem":2640,"rawLoadNice":0,"rawLoadIdle":24422,"rawLoadIrq":453},{"load":15.451215451215452,"loadUser":10.406260406260406,"loadSystem":4.941724941724942,"loadNice":0,"loadIdle":84.54878454878455,"loadIrq":0.10323010323010323,"rawLoad":4640,"rawLoadUser":3125,"rawLoadSystem":1484,"rawLoadNice":0,"rawLoadIdle":25390,"rawLoadIrq":31},{"load":17.81512047993106,"loadUser":10.35762818600643,"loadSystem":6.887408438566836,"loadNice":0,"loadIdle":82.18487952006895,"loadIrq":0.5700838553577939,"rawLoad":5375,"rawLoadUser":3125,"rawLoadSystem":2078,"rawLoadNice":0,"rawLoadIdle":24796,"rawLoadIrq":172},{"load":18.9580744325986,"loadUser":10.4748512002093,"loadSystem":6.5929753417489705,"loadNice":0,"loadIdle":81.04192556740139,"loadIrq":1.8902478906403297,"rawLoad":5797,"rawLoadUser":3203,"rawLoadSystem":2016,"rawLoadNice":0,"rawLoadIdle":24781,"rawLoadIrq":578}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":11,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":29,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":224780772,"rx_dropped":0,"rx_errors":0,"tx_bytes":22872895,"tx_dropped":0,"tx_errors":0,"rx_sec":2107.204861111111,"tx_sec":572.8498931623931,"ms":29952}]', '{"total":10685313024,"free":4690898944,"used":5994414080,"active":5994414080,"available":4690898944,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":52428800,"swapfree":3512729600}'), (171, '2022-03-29 22:38:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54586048512,"available":72690102272,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":8.892734715612209,"currentLoadUser":4.770858987586115,"currentLoadSystem":3.913036243218957,"currentLoadNice":0,"currentLoadIdle":91.1072652843878,"currentLoadIrq":0.2088394848071355,"rawCurrentLoad":10688,"rawCurrentLoadUser":5734,"rawCurrentLoadSystem":4703,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":109500,"rawCurrentLoadIrq":251,"cpus":[{"load":10.471134704711348,"loadUser":5.235567352355674,"loadSystem":4.7179827471798275,"loadNice":0,"loadIdle":89.52886529528865,"loadIrq":0.517584605175846,"rawLoad":3156,"rawLoadUser":1578,"rawLoadSystem":1422,"rawLoadNice":0,"rawLoadIdle":26984,"rawLoadIrq":156},{"load":8.22867042009528,"loadUser":4.737315521204651,"loadSystem":3.384748642435953,"loadNice":0,"loadIdle":91.77132957990473,"loadIrq":0.10660625645467568,"rawLoad":2470,"rawLoadUser":1422,"rawLoadSystem":1016,"rawLoadNice":0,"rawLoadIdle":27547,"rawLoadIrq":32},{"load":9.06,"loadUser":5.3100000000000005,"loadSystem":3.6966666666666668,"loadNice":0,"loadIdle":90.94,"loadIrq":0.05333333333333334,"rawLoad":2718,"rawLoadUser":1593,"rawLoadSystem":1109,"rawLoadNice":0,"rawLoadIdle":27282,"rawLoadIrq":16},{"load":7.8052678898471575,"loadUser":3.799407279144883,"loadSystem":3.8493556658119945,"loadNice":0,"loadIdle":92.19473211015284,"loadIrq":0.15650494489028002,"rawLoad":2344,"rawLoadUser":1141,"rawLoadSystem":1156,"rawLoadNice":0,"rawLoadIdle":27687,"rawLoadIrq":47}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":8,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":224828453,"rx_dropped":0,"rx_errors":0,"tx_bytes":22881528,"tx_dropped":0,"tx_errors":0,"rx_sec":1607.9654672377162,"tx_sec":291.1341179644555,"ms":29653}]', '{"total":10685313024,"free":4698374144,"used":5986938880,"active":5986938880,"available":4698374144,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":52428800,"swapfree":3512729600}'), (172, '2022-03-29 22:39:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54586048512,"available":72690102272,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":8.538583751320507,"currentLoadUser":4.4710070787479514,"currentLoadSystem":3.9378134903800563,"currentLoadNice":0,"currentLoadIdle":91.4614162486795,"currentLoadIrq":0.1297631821924987,"rawCurrentLoad":10265,"rawCurrentLoadUser":5375,"rawCurrentLoadSystem":4734,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":109954,"rawCurrentLoadIrq":156,"cpus":[{"load":9.475672809227099,"loadUser":4.245658226169959,"loadSystem":4.712978920853772,"loadNice":0,"loadIdle":90.52432719077291,"loadIrq":0.5170356622033674,"rawLoad":2859,"rawLoadUser":1281,"rawLoadSystem":1422,"rawLoadNice":0,"rawLoadIdle":27313,"rawLoadIrq":156},{"load":7.809168443496802,"loadUser":4.114472281449894,"loadSystem":3.6946961620469088,"loadNice":0,"loadIdle":92.1908315565032,"loadIrq":0,"rawLoad":2344,"rawLoadUser":1235,"rawLoadSystem":1109,"rawLoadNice":0,"rawLoadIdle":27672,"rawLoadIrq":0},{"load":8.172580376478427,"loadUser":4.47776111944028,"loadSystem":3.6948192570381475,"loadNice":0,"loadIdle":91.82741962352158,"loadIrq":0,"rawLoad":2453,"rawLoadUser":1344,"rawLoadSystem":1109,"rawLoadNice":0,"rawLoadIdle":27562,"rawLoadIrq":0},{"load":8.692030916844349,"loadUser":5.047308102345416,"loadSystem":3.644722814498934,"loadNice":0,"loadIdle":91.30796908315565,"loadIrq":0,"rawLoad":2609,"rawLoadUser":1515,"rawLoadSystem":1094,"rawLoadNice":0,"rawLoadIdle":27407,"rawLoadIrq":0}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":9,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":224871619,"rx_dropped":0,"rx_errors":0,"tx_bytes":22889292,"tx_dropped":0,"tx_errors":0,"rx_sec":1435.0398936170213,"tx_sec":258.1117021276596,"ms":30080}]', '{"total":10685313024,"free":4671733760,"used":6013579264,"active":6013579264,"available":4671733760,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":52428800,"swapfree":3512729600}'), (173, '2022-03-29 22:39:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54586785792,"available":72689364992,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":8.091639858018072,"currentLoadUser":4.7016966341637785,"currentLoadSystem":3.246963764682411,"currentLoadNice":0,"currentLoadIdle":91.90836014198193,"currentLoadIrq":0.14297945917188293,"rawCurrentLoad":9734,"rawCurrentLoadUser":5656,"rawCurrentLoadSystem":3906,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":110563,"rawCurrentLoadIrq":172,"cpus":[{"load":9.674535642154753,"loadUser":4.810780386054366,"loadSystem":4.294275403105652,"loadNice":0,"loadIdle":90.32546435784525,"loadIrq":0.5694798529947356,"rawLoad":2922,"rawLoadUser":1453,"rawLoadSystem":1297,"rawLoadNice":0,"rawLoadIdle":27281,"rawLoadIrq":172},{"load":7.282474776064733,"loadUser":4.57860211115181,"loadSystem":2.703872664912923,"loadNice":0,"loadIdle":92.71752522393527,"loadIrq":0,"rawLoad":2187,"rawLoadUser":1375,"rawLoadSystem":812,"rawLoadNice":0,"rawLoadIdle":27844,"rawLoadIrq":0},{"load":7.80500799147576,"loadUser":4.421949920085242,"loadSystem":3.383058071390517,"loadNice":0,"loadIdle":92.19499200852425,"loadIrq":0,"rawLoad":2344,"rawLoadUser":1328,"rawLoadSystem":1016,"rawLoadNice":0,"rawLoadIdle":27688,"rawLoadIrq":0},{"load":7.5954846658452935,"loadUser":4.994838666711066,"loadSystem":2.600645999134228,"loadNice":0,"loadIdle":92.4045153341547,"loadIrq":0,"rawLoad":2281,"rawLoadUser":1500,"rawLoadSystem":781,"rawLoadNice":0,"rawLoadIdle":27750,"rawLoadIrq":0}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":5,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":29,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":224918467,"rx_dropped":0,"rx_errors":0,"tx_bytes":22898148,"tx_dropped":0,"tx_errors":0,"rx_sec":1541.5597235932873,"tx_sec":291.4116485686081,"ms":30390}]', '{"total":10685313024,"free":4622897152,"used":6062415872,"active":6062415872,"available":4622897152,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":52428800,"swapfree":3512729600}'), (174, '2022-03-29 22:40:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54587326464,"available":72688824320,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.992590808283012,"currentLoadUser":6.748843352077813,"currentLoadSystem":4.867473482237044,"currentLoadNice":0,"currentLoadIdle":88.00740919171699,"currentLoadIrq":0.37627397396815376,"rawCurrentLoad":14438,"rawCurrentLoadUser":8125,"rawCurrentLoadSystem":5860,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":105953,"rawCurrentLoadIrq":453,"cpus":[{"load":12.843033275884927,"loadUser":6.472888771046002,"loadSystem":5.747050245260507,"loadNice":0,"loadIdle":87.15696672411507,"loadIrq":0.6230942595784171,"rawLoad":3875,"rawLoadUser":1953,"rawLoadSystem":1734,"rawLoadNice":0,"rawLoadIdle":26297,"rawLoadIrq":188},{"load":10.827558635394457,"loadUser":7.026252665245202,"loadSystem":3.6980277185501063,"loadNice":0,"loadIdle":89.17244136460555,"loadIrq":0.10327825159914712,"rawLoad":3250,"rawLoadUser":2109,"rawLoadSystem":1110,"rawLoadNice":0,"rawLoadIdle":26766,"rawLoadIrq":31},{"load":12.077294685990339,"loadUser":6.7166416791604195,"loadSystem":5.257371314342828,"loadNice":0,"loadIdle":87.92270531400966,"loadIrq":0.1032816924870898,"rawLoad":3625,"rawLoadUser":2016,"rawLoadSystem":1578,"rawLoadNice":0,"rawLoadIdle":26390,"rawLoadIrq":31},{"load":12.216774877434743,"loadUser":6.780840068901551,"loadSystem":4.763482178349013,"loadNice":0,"loadIdle":87.78322512256526,"loadIrq":0.6724526301841792,"rawLoad":3688,"rawLoadUser":2047,"rawLoadSystem":1438,"rawLoadNice":0,"rawLoadIdle":26500,"rawLoadIrq":203}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":5,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":27,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":224995428,"rx_dropped":0,"rx_errors":0,"tx_bytes":22938137,"tx_dropped":0,"tx_errors":0,"rx_sec":2597.3136242448786,"tx_sec":1349.5663325571193,"ms":29631}]', '{"total":10685313024,"free":4606091264,"used":6079221760,"active":6079221760,"available":4606091264,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":52428800,"swapfree":3512729600}'), (175, '2022-03-29 22:40:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54587396096,"available":72688754688,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":7.178940885674575,"currentLoadUser":3.966477192340022,"currentLoadSystem":3.08263355443295,"currentLoadNice":0,"currentLoadIdle":92.82105911432542,"currentLoadIrq":0.12983013890160375,"rawCurrentLoad":8626,"rawCurrentLoadUser":4766,"rawCurrentLoadSystem":3704,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":111531,"rawCurrentLoadIrq":156,"cpus":[{"load":7.731907403102062,"loadUser":4.151582583280747,"loadSystem":3.2183068185592347,"loadNice":0,"loadIdle":92.26809259689793,"loadIrq":0.3620180012620811,"rawLoad":2328,"rawLoadUser":1250,"rawLoadSystem":969,"rawLoadNice":0,"rawLoadIdle":27781,"rawLoadIrq":109},{"load":6.5633333333333335,"loadUser":3.9066666666666667,"loadSystem":2.6566666666666667,"loadNice":0,"loadIdle":93.43666666666667,"loadIrq":0,"rawLoad":1969,"rawLoadUser":1172,"rawLoadSystem":797,"rawLoadNice":0,"rawLoadIdle":28031,"rawLoadIrq":0},{"load":7.182835820895522,"loadUser":3.748001066098081,"loadSystem":3.384861407249467,"loadNice":0,"loadIdle":92.81716417910447,"loadIrq":0.04997334754797442,"rawLoad":2156,"rawLoadUser":1125,"rawLoadSystem":1016,"rawLoadNice":0,"rawLoadIdle":27860,"rawLoadIrq":15},{"load":7.235615343633457,"loadUser":4.0590037293553545,"loadSystem":3.0700586041555673,"loadNice":0,"loadIdle":92.76438465636654,"loadIrq":0.10655301012253596,"rawLoad":2173,"rawLoadUser":1219,"rawLoadSystem":922,"rawLoadNice":0,"rawLoadIdle":27859,"rawLoadIrq":32}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":5,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":225036243,"rx_dropped":0,"rx_errors":0,"tx_bytes":22944338,"tx_dropped":0,"tx_errors":0,"rx_sec":1359.865396148464,"tx_sec":206.6035849936696,"ms":30014}]', '{"total":10685313024,"free":4573724672,"used":6111588352,"active":6111588352,"available":4573724672,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":52428800,"swapfree":3512729600}'), (176, '2022-03-29 22:41:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54587691008,"available":72688459776,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.46265016108757,"currentLoadUser":3.512291772462767,"currentLoadSystem":2.8471291447790144,"currentLoadNice":0,"currentLoadIdle":93.53734983891243,"currentLoadIrq":0.10322924384578883,"rawCurrentLoad":7763,"rawCurrentLoadUser":4219,"rawCurrentLoadSystem":3420,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112358,"rawCurrentLoadIrq":124,"cpus":[{"load":7.274965072184153,"loadUser":3.482802208768545,"loadSystem":3.5859224269842325,"loadNice":0,"loadIdle":92.72503492781586,"loadIrq":0.20624043643137518,"rawLoad":2187,"rawLoadUser":1047,"rawLoadSystem":1078,"rawLoadNice":0,"rawLoadIdle":27875,"rawLoadIrq":62},{"load":5.883529450981699,"loadUser":3.593453115103837,"loadSystem":2.2900763358778624,"loadNice":0,"loadIdle":94.1164705490183,"loadIrq":0,"rawLoad":1765,"rawLoadUser":1078,"rawLoadSystem":687,"rawLoadNice":0,"rawLoadIdle":28234,"rawLoadIrq":0},{"load":6.246876561719141,"loadUser":3.331667499583542,"loadSystem":2.861902382142262,"loadNice":0,"loadIdle":93.75312343828087,"loadIrq":0.053306679993336666,"rawLoad":1875,"rawLoadUser":1000,"rawLoadSystem":859,"rawLoadNice":0,"rawLoadIdle":28140,"rawLoadIrq":16},{"load":6.443667831585954,"loadUser":3.6412048593776003,"loadSystem":2.6493592943917457,"loadNice":0,"loadIdle":93.55633216841404,"loadIrq":0.1531036778166084,"rawLoad":1936,"rawLoadUser":1094,"rawLoadSystem":796,"rawLoadNice":0,"rawLoadIdle":28109,"rawLoadIrq":46}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":4,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":225069294,"rx_dropped":0,"rx_errors":0,"tx_bytes":22954082,"tx_dropped":0,"tx_errors":0,"rx_sec":1102.6556348835657,"tx_sec":325.0817375058384,"ms":29974}]', '{"total":10685313024,"free":4575424512,"used":6109888512,"active":6109888512,"available":4575424512,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":52428800,"swapfree":3512729600}'), (177, '2022-03-29 22:41:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54587899904,"available":72688250880,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":13.3293618288778,"currentLoadUser":7.601294048535094,"currentLoadSystem":5.120758557351007,"currentLoadNice":0,"currentLoadIdle":86.67063817112219,"currentLoadIrq":0.6073092229917012,"rawCurrentLoad":16110,"rawCurrentLoadUser":9187,"rawCurrentLoadSystem":6189,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":104751,"rawCurrentLoadIrq":734,"cpus":[{"load":15.417502548755222,"loadUser":7.24504226000592,"loadSystem":6.939191633505443,"loadNice":0,"loadIdle":84.58249745124478,"loadIrq":1.2332686552438583,"rawLoad":4688,"rawLoadUser":2203,"rawLoadSystem":2110,"rawLoadNice":0,"rawLoadIdle":25719,"rawLoadIrq":375},{"load":11.07598096315772,"loadUser":6.969081771890704,"loadSystem":4.05697740207009,"loadNice":0,"loadIdle":88.92401903684228,"loadIrq":0.04992178919692482,"rawLoad":3328,"rawLoadUser":2094,"rawLoadSystem":1219,"rawLoadNice":0,"rawLoadIdle":26719,"rawLoadIrq":15},{"load":13.564847154309284,"loadUser":8.262648438279612,"loadSystem":5.199081927951302,"loadNice":0,"loadIdle":86.43515284569072,"loadIrq":0.10311678807836877,"rawLoad":4078,"rawLoadUser":2484,"rawLoadSystem":1563,"rawLoadNice":0,"rawLoadIdle":25985,"rawLoadIrq":31},{"load":13.23490640653836,"loadUser":7.929079883996836,"loadSystem":4.274321117848669,"loadNice":0,"loadIdle":86.76509359346164,"loadIrq":1.0315054046928551,"rawLoad":4016,"rawLoadUser":2406,"rawLoadSystem":1297,"rawLoadNice":0,"rawLoadIdle":26328,"rawLoadIrq":313}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":4,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":225107594,"rx_dropped":0,"rx_errors":0,"tx_bytes":22962157,"tx_dropped":0,"tx_errors":0,"rx_sec":1274.6696841614803,"tx_sec":268.74563184344527,"ms":30047}]', '{"total":10685313024,"free":4600418304,"used":6084894720,"active":6084894720,"available":4600418304,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":52428800,"swapfree":3512729600}'), (178, '2022-03-29 22:42:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54588157952,"available":72687992832,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":17.58462444918384,"currentLoadUser":10.115100868858038,"currentLoadSystem":7.053766296274781,"currentLoadNice":0,"currentLoadIdle":82.41537555081617,"currentLoadIrq":0.4157572840510194,"rawCurrentLoad":21190,"rawCurrentLoadUser":12189,"rawCurrentLoadSystem":8500,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":99313,"rawCurrentLoadIrq":501,"cpus":[{"load":18.87491727332892,"loadUser":9.774983454665783,"loadSystem":8.375248180013237,"loadNice":0,"loadIdle":81.12508272667108,"loadIrq":0.7246856386499008,"rawLoad":5704,"rawLoadUser":2954,"rawLoadSystem":2531,"rawLoadNice":0,"rawLoadIdle":24516,"rawLoadIrq":219},{"load":15.61001598295152,"loadUser":9.103622802344166,"loadSystem":6.399840170484817,"loadNice":0,"loadIdle":84.38998401704848,"loadIrq":0.10655301012253596,"rawLoad":4688,"rawLoadUser":2734,"rawLoadSystem":1922,"rawLoadNice":0,"rawLoadIdle":25344,"rawLoadIrq":32},{"load":17.363536573196285,"loadUser":9.929148787546154,"loadSystem":7.224827861490869,"loadNice":0,"loadIdle":82.63646342680372,"loadIrq":0.20955992415926553,"rawLoad":5220,"rawLoadUser":2985,"rawLoadSystem":2172,"rawLoadNice":0,"rawLoadIdle":24843,"rawLoadIrq":63},{"load":18.477540744666754,"loadUser":11.647012057771299,"loadSystem":6.211077249238108,"loadNice":0,"loadIdle":81.52245925533325,"loadIrq":0.6194514376573473,"rawLoad":5578,"rawLoadUser":3516,"rawLoadSystem":1875,"rawLoadNice":0,"rawLoadIdle":24610,"rawLoadIrq":187}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":6,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":36,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":225202024,"rx_dropped":0,"rx_errors":0,"tx_bytes":22986517,"tx_dropped":0,"tx_errors":0,"rx_sec":3143.9986682204094,"tx_sec":811.0537706009655,"ms":30035}]', '{"total":10685313024,"free":4566396928,"used":6118916096,"active":6118916096,"available":4566396928,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":52428800,"swapfree":3512729600}'), (179, '2022-03-29 22:42:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54588289024,"available":72687861760,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.599305768927346,"currentLoadUser":6.785361357238355,"currentLoadSystem":4.514993232077462,"currentLoadNice":0,"currentLoadIdle":88.40069423107265,"currentLoadIrq":0.29895117961152956,"rawCurrentLoad":13968,"rawCurrentLoadUser":8171,"rawCurrentLoadSystem":5437,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":106453,"rawCurrentLoadIrq":360,"cpus":[{"load":12.803583278035832,"loadUser":6.167883211678832,"loadSystem":6.220968812209688,"loadNice":0,"loadIdle":87.19641672196417,"loadIrq":0.41473125414731254,"rawLoad":3859,"rawLoadUser":1859,"rawLoadSystem":1875,"rawLoadNice":0,"rawLoadIdle":26281,"rawLoadIrq":125},{"load":10.254872563718141,"loadUser":6.766616691654173,"loadSystem":3.4882558720639683,"loadNice":0,"loadIdle":89.74512743628186,"loadIrq":0,"rawLoad":3078,"rawLoadUser":2031,"rawLoadSystem":1047,"rawLoadNice":0,"rawLoadIdle":26937,"rawLoadIrq":0},{"load":11.588996440807637,"loadUser":7.068489505372052,"loadSystem":4.364168579316768,"loadNice":0,"loadIdle":88.41100355919235,"loadIrq":0.15633835611881713,"rawLoad":3484,"rawLoadUser":2125,"rawLoadSystem":1312,"rawLoadNice":0,"rawLoadIdle":26579,"rawLoadIrq":47},{"load":11.743866503327483,"loadUser":7.138363738701453,"loadSystem":3.9830480415852727,"loadNice":0,"loadIdle":88.25613349667252,"loadIrq":0.6224547230407576,"rawLoad":3547,"rawLoadUser":2156,"rawLoadSystem":1203,"rawLoadNice":0,"rawLoadIdle":26656,"rawLoadIrq":188}]}', '{"ESTABLISHED":27,"CLOSE":0,"TIME_WAIT":6,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":225276337,"rx_dropped":0,"rx_errors":0,"tx_bytes":23006444,"tx_dropped":0,"tx_errors":0,"rx_sec":2479.0832666132906,"tx_sec":664.7651454496931,"ms":29976}]', '{"total":10685313024,"free":4556869632,"used":6128443392,"active":6128443392,"available":4556869632,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":52428800,"swapfree":3512729600}'), (180, '2022-03-29 22:43:19', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54588575744,"available":72687575040,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":13.085553648282211,"currentLoadUser":7.709530561982238,"currentLoadSystem":4.935691718287434,"currentLoadNice":0,"currentLoadIdle":86.91444635171779,"currentLoadIrq":0.4403313680125382,"rawCurrentLoad":15780,"rawCurrentLoadUser":9297,"rawCurrentLoadSystem":5952,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":104811,"rawCurrentLoadIrq":531,"cpus":[{"load":14.345629272481094,"loadUser":7.585614741917373,"loadSystem":5.881575905683432,"loadNice":0,"loadIdle":85.65437072751891,"loadIrq":0.8784386248802879,"rawLoad":4344,"rawLoadUser":2297,"rawLoadSystem":1781,"rawLoadNice":0,"rawLoadIdle":25937,"rawLoadIrq":266},{"load":11.03448275862069,"loadUser":7.392970181575878,"loadSystem":3.6415125770448107,"loadNice":0,"loadIdle":88.96551724137932,"loadIrq":0,"rawLoad":3312,"rawLoadUser":2219,"rawLoadSystem":1093,"rawLoadNice":0,"rawLoadIdle":26703,"rawLoadIrq":0},{"load":13.726077550341154,"loadUser":8.683641204859377,"loadSystem":4.939257779996672,"loadNice":0,"loadIdle":86.27392244965884,"loadIrq":0.10317856548510568,"rawLoad":4124,"rawLoadUser":2609,"rawLoadSystem":1484,"rawLoadNice":0,"rawLoadIdle":25921,"rawLoadIrq":31},{"load":13.223140495867769,"loadUser":7.180165289256199,"loadSystem":5.269421487603306,"loadNice":0,"loadIdle":86.77685950413223,"loadIrq":0.7735537190082644,"rawLoad":4000,"rawLoadUser":2172,"rawLoadSystem":1594,"rawLoadNice":0,"rawLoadIdle":26250,"rawLoadIrq":234}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":6,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":225337282,"rx_dropped":0,"rx_errors":0,"tx_bytes":23019162,"tx_dropped":0,"tx_errors":0,"rx_sec":1739.000171203561,"tx_sec":362.8944815385493,"ms":35046}]', '{"total":10685313024,"free":4543131648,"used":6142181376,"active":6142181376,"available":4543131648,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":52428800,"swapfree":3512729600}'), (181, '2022-03-29 22:43:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54588907520,"available":72687243264,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":27.089413418213386,"currentLoadUser":15.66946385019222,"currentLoadSystem":10.735397461865984,"currentLoadNice":0,"currentLoadIdle":72.91058658178662,"currentLoadIrq":0.6845521061551817,"rawCurrentLoad":32766,"rawCurrentLoadUser":18953,"rawCurrentLoadSystem":12985,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":88189,"rawCurrentLoadIrq":828,"cpus":[{"load":27.933236765867793,"loadUser":14.557545430603108,"loadSystem":12.243218330260733,"loadNice":0,"loadIdle":72.06676323413221,"loadIrq":1.1324730050039507,"rawLoad":8485,"rawLoadUser":4422,"rawLoadSystem":3719,"rawLoadNice":0,"rawLoadIdle":21891,"rawLoadIrq":344},{"load":25.92173941952857,"loadUser":15.376176069683167,"loadSystem":10.38930815519133,"loadNice":0,"loadIdle":74.07826058047142,"loadIrq":0.1562551946540776,"rawLoad":7797,"rawLoadUser":4625,"rawLoadSystem":3125,"rawLoadNice":0,"rawLoadIdle":22282,"rawLoadIrq":47},{"load":26.739549411842894,"loadUser":16.511596996078953,"loadSystem":10.02193128198312,"loadNice":0,"loadIdle":73.26045058815711,"loadIrq":0.2060211337808201,"rawLoad":8047,"rawLoadUser":4969,"rawLoadSystem":3016,"rawLoadNice":0,"rawLoadIdle":22047,"rawLoadIrq":62},{"load":27.747812931658228,"loadUser":16.236926922317963,"loadSystem":10.277576794053806,"loadNice":0,"loadIdle":72.25218706834178,"loadIrq":1.2333092152864567,"rawLoad":8437,"rawLoadUser":4937,"rawLoadSystem":3125,"rawLoadNice":0,"rawLoadIdle":21969,"rawLoadIrq":375}]}', '{"ESTABLISHED":30,"CLOSE":0,"TIME_WAIT":9,"LISTEN":34,"CLOSE_WAIT":7,"UNKNOWN":76,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":226627004,"rx_dropped":0,"rx_errors":0,"tx_bytes":23217942,"tx_dropped":0,"tx_errors":0,"rx_sec":50965.06757290761,"tx_sec":7855.054137358728,"ms":25306}]', '{"total":10685313024,"free":4368359424,"used":6316953600,"active":6316953600,"available":4368359424,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":60817408,"swapfree":3504340992}'), (182, '2022-03-29 22:44:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54585507840,"available":72690642944,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":22.878658616616356,"currentLoadUser":11.714956030975193,"currentLoadSystem":10.062016012600079,"currentLoadNice":0,"currentLoadIdle":77.12134138338365,"currentLoadIrq":1.1016865730410816,"rawCurrentLoad":27890,"rawCurrentLoadUser":14281,"rawCurrentLoadSystem":12266,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":94014,"rawCurrentLoadIrq":1343,"cpus":[{"load":24.28469008668448,"loadUser":10.692172326142215,"loadSystem":11.813204718764258,"loadNice":0,"loadIdle":75.71530991331552,"loadIrq":1.7793130417780096,"rawLoad":7452,"rawLoadUser":3281,"rawLoadSystem":3625,"rawLoadNice":0,"rawLoadIdle":23234,"rawLoadIrq":546},{"load":21.4271516597098,"loadUser":12.422977539256609,"loadSystem":8.851785595971643,"loadNice":0,"loadIdle":78.57284834029021,"loadIrq":0.15238852448154774,"rawLoad":6468,"rawLoadUser":3750,"rawLoadSystem":2672,"rawLoadNice":0,"rawLoadIdle":23718,"rawLoadIrq":46},{"load":21.86943032543402,"loadUser":11.551917618324643,"loadSystem":9.799326688230247,"loadNice":0,"loadIdle":78.13056967456598,"loadIrq":0.518186018879134,"rawLoad":6626,"rawLoadUser":3500,"rawLoadSystem":2969,"rawLoadNice":0,"rawLoadIdle":23672,"rawLoadIrq":157},{"load":23.895360187414592,"loadUser":12.201470683933104,"loadSystem":9.761176547146484,"loadNice":0,"loadIdle":76.1046398125854,"loadIrq":1.9327129563350036,"rawLoad":7344,"rawLoadUser":3750,"rawLoadSystem":3000,"rawLoadNice":0,"rawLoadIdle":23390,"rawLoadIrq":594}]}', '{"ESTABLISHED":35,"CLOSE":0,"TIME_WAIT":8,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":22,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":226683125,"rx_dropped":0,"rx_errors":0,"tx_bytes":23234056,"tx_dropped":0,"tx_errors":0,"rx_sec":1850.4072010287184,"tx_sec":531.3066701836526,"ms":30329}]', '{"total":10685313024,"free":4626116608,"used":6059196416,"active":6059196416,"available":4626116608,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":60817408,"swapfree":3504340992}'), (183, '2022-03-29 22:44:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54585769984,"available":72690380800,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":13.933721308874732,"currentLoadUser":8.049796688570307,"currentLoadSystem":5.609224577721743,"currentLoadNice":0,"currentLoadIdle":86.06627869112526,"currentLoadIrq":0.2747000425826814,"rawCurrentLoad":16688,"rawCurrentLoadUser":9641,"rawCurrentLoadSystem":6718,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":103079,"rawCurrentLoadIrq":329,"cpus":[{"load":14.762332435219372,"loadUser":7.796959717925689,"loadSystem":6.2867977247779665,"loadNice":0,"loadIdle":85.23766756478062,"loadIrq":0.6785749925157171,"rawLoad":4438,"rawLoadUser":2344,"rawLoadSystem":1890,"rawLoadNice":0,"rawLoadIdle":25625,"rawLoadIrq":204},{"load":12.75926669342968,"loadUser":7.6843302555867785,"loadSystem":4.967884383781613,"loadNice":0,"loadIdle":87.24073330657032,"loadIrq":0.1070520540612873,"rawLoad":3814,"rawLoadUser":2297,"rawLoadSystem":1485,"rawLoadNice":0,"rawLoadIdle":26078,"rawLoadIrq":32},{"load":15.03626215701347,"loadUser":8.773102503258581,"loadSystem":6.055947327963638,"loadNice":0,"loadIdle":84.96373784298653,"loadIrq":0.2072123257912503,"rawLoad":4499,"rawLoadUser":2625,"rawLoadSystem":1812,"rawLoadNice":0,"rawLoadIdle":25422,"rawLoadIrq":62},{"load":13.17118865210264,"loadUser":7.945535445451808,"loadSystem":5.121943059783882,"loadNice":0,"loadIdle":86.82881134789736,"loadIrq":0.10371014686694992,"rawLoad":3937,"rawLoadUser":2375,"rawLoadSystem":1531,"rawLoadNice":0,"rawLoadIdle":25954,"rawLoadIrq":31}]}', '{"ESTABLISHED":35,"CLOSE":0,"TIME_WAIT":8,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":226741561,"rx_dropped":0,"rx_errors":0,"tx_bytes":23255551,"tx_dropped":0,"tx_errors":0,"rx_sec":1969.9962916764994,"tx_sec":724.6401240602771,"ms":29663}]', '{"total":10685313024,"free":4636233728,"used":6049079296,"active":6049079296,"available":4636233728,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (184, '2022-03-29 22:45:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54586466304,"available":72689684480,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":30.49867202819768,"currentLoadUser":19.042536467512267,"currentLoadSystem":10.847998940932145,"currentLoadNice":0,"currentLoadIdle":69.50132797180231,"currentLoadIrq":0.6081366197532703,"rawCurrentLoad":36861,"rawCurrentLoadUser":23015,"rawCurrentLoadSystem":13111,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":84000,"rawCurrentLoadIrq":735,"cpus":[{"load":33.4704353262479,"loadUser":18.199466947451548,"loadSystem":14.089697607844428,"loadNice":0,"loadIdle":66.52956467375209,"loadIrq":1.1812707709519266,"rawLoad":10172,"rawLoadUser":5531,"rawLoadSystem":4282,"rawLoadNice":0,"rawLoadIdle":20219,"rawLoadIrq":359},{"load":27.63722198211377,"loadUser":18.91020313175305,"loadSystem":8.57076365570664,"loadNice":0,"loadIdle":72.36277801788623,"loadIrq":0.1562551946540776,"rawLoad":8313,"rawLoadUser":5688,"rawLoadSystem":2578,"rawLoadNice":0,"rawLoadIdle":21766,"rawLoadIrq":47},{"load":31.097946550404366,"loadUser":20.434652377941227,"loadSystem":10.61004426398642,"loadNice":0,"loadIdle":68.90205344959564,"loadIrq":0.0532499084767198,"rawLoad":9344,"rawLoadUser":6140,"rawLoadSystem":3188,"rawLoadNice":0,"rawLoadIdle":20703,"rawLoadIrq":16},{"load":29.765357237015554,"loadUser":18.639599261798047,"loadSystem":10.09425257052465,"loadNice":0,"loadIdle":70.23464276298445,"loadIrq":1.0315054046928551,"rawLoad":9032,"rawLoadUser":5656,"rawLoadSystem":3063,"rawLoadNice":0,"rawLoadIdle":21312,"rawLoadIrq":313}]}', '{"ESTABLISHED":32,"CLOSE":0,"TIME_WAIT":15,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":39,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":2}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":227083559,"rx_dropped":0,"rx_errors":0,"tx_bytes":23319779,"tx_dropped":0,"tx_errors":0,"rx_sec":11140.36287826965,"tx_sec":2092.185413205642,"ms":30699}]', '{"total":10685313024,"free":4401102848,"used":6284210176,"active":6284214272,"available":4401098752,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (185, '2022-03-29 22:45:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54582894592,"available":72693256192,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":27.829089767526394,"currentLoadUser":15.503197131668953,"currentLoadSystem":11.410538142524329,"currentLoadNice":0,"currentLoadIdle":72.1709102324736,"currentLoadIrq":0.915354493333113,"rawCurrentLoad":33686,"rawCurrentLoadUser":18766,"rawCurrentLoadSystem":13812,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":87360,"rawCurrentLoadIrq":1108,"cpus":[{"load":28.03984089937872,"loadUser":14.483416061273463,"loadSystem":12.119917162486441,"loadNice":0,"loadIdle":71.96015910062128,"loadIrq":1.436507675618816,"rawLoad":8530,"rawLoadUser":4406,"rawLoadSystem":3687,"rawLoadNice":0,"rawLoadIdle":21891,"rawLoadIrq":437},{"load":26.023207101772115,"loadUser":15.636532898892842,"loadSystem":10.077467832563087,"loadNice":0,"loadIdle":73.97679289822788,"loadIrq":0.3092063703161885,"rawLoad":7827,"rawLoadUser":4703,"rawLoadSystem":3031,"rawLoadNice":0,"rawLoadIdle":22250,"rawLoadIrq":93},{"load":28.504020735030238,"loadUser":15.783877184820893,"loadSystem":12.357945105336613,"loadNice":0,"loadIdle":71.49597926496976,"loadIrq":0.3621984448727321,"rawLoad":8578,"rawLoadUser":4750,"rawLoadSystem":3719,"rawLoadNice":0,"rawLoadIdle":21516,"rawLoadIrq":109},{"load":28.735141524922835,"loadUser":16.112825901359425,"loadSystem":11.082288040979838,"loadNice":0,"loadIdle":71.26485847507716,"loadIrq":1.5400275825835685,"rawLoad":8751,"rawLoadUser":4907,"rawLoadSystem":3375,"rawLoadNice":0,"rawLoadIdle":21703,"rawLoadIrq":469}]}', '{"ESTABLISHED":34,"CLOSE":0,"TIME_WAIT":18,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":227188325,"rx_dropped":0,"rx_errors":0,"tx_bytes":23337125,"tx_dropped":0,"tx_errors":0,"rx_sec":3556.936239559992,"tx_sec":588.9183133020982,"ms":29454}]', '{"total":10685313024,"free":4507209728,"used":6178103296,"active":6178103296,"available":4507209728,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (186, '2022-03-29 22:46:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54583152640,"available":72692998144,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":19.067067927773003,"currentLoadUser":11.12259408691051,"currentLoadSystem":7.207817977379456,"currentLoadNice":0,"currentLoadIdle":80.932932072227,"currentLoadIrq":0.7366558634830346,"rawCurrentLoad":23062,"rawCurrentLoadUser":13453,"rawCurrentLoadSystem":8718,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":97890,"rawCurrentLoadIrq":891,"cpus":[{"load":20.957827959109885,"loadUser":10.478913979554942,"loadSystem":9.14111034414752,"loadNice":0,"loadIdle":79.04217204089011,"loadIrq":1.337803635407422,"rawLoad":6376,"rawLoadUser":3188,"rawLoadSystem":2781,"rawLoadNice":0,"rawLoadIdle":24047,"rawLoadIrq":407},{"load":17.124770947859403,"loadUser":10.877894386140262,"loadSystem":6.246876561719141,"loadNice":0,"loadIdle":82.8752290521406,"loadIrq":0,"rawLoad":5140,"rawLoadUser":3265,"rawLoadSystem":1875,"rawLoadNice":0,"rawLoadIdle":24875,"rawLoadIrq":0},{"load":18.408440391399854,"loadUser":12.014910470611728,"loadSystem":6.290354789323038,"loadNice":0,"loadIdle":81.59155960860015,"loadIrq":0.10317513146508688,"rawLoad":5531,"rawLoadUser":3610,"rawLoadSystem":1890,"rawLoadNice":0,"rawLoadIdle":24515,"rawLoadIrq":31},{"load":19.742024419062624,"loadUser":11.126427727451754,"loadSystem":7.128790862544308,"loadNice":0,"loadIdle":80.25797558093738,"loadIrq":1.4868058290665616,"rawLoad":6015,"rawLoadUser":3390,"rawLoadSystem":2172,"rawLoadNice":0,"rawLoadIdle":24453,"rawLoadIrq":453}]}', '{"ESTABLISHED":31,"CLOSE":0,"TIME_WAIT":21,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":37,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":227376669,"rx_dropped":0,"rx_errors":0,"tx_bytes":23384157,"tx_dropped":0,"tx_errors":0,"rx_sec":6352.242833052277,"tx_sec":1586.239460370995,"ms":29650}]', '{"total":10685313024,"free":4553023488,"used":6132289536,"active":6132289536,"available":4553023488,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (187, '2022-03-29 22:46:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54585212928,"available":72690937856,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":22.314751449090146,"currentLoadUser":13.217021346767478,"currentLoadSystem":8.09181830924367,"currentLoadNice":0,"currentLoadIdle":77.68524855090986,"currentLoadIrq":1.0059117930789971,"rawCurrentLoad":27064,"rawCurrentLoadUser":16030,"rawCurrentLoadSystem":9814,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":94219,"rawCurrentLoadIrq":1220,"cpus":[{"load":23.599868377755843,"loadUser":12.800263244488319,"loadSystem":9.565646594274432,"loadNice":0,"loadIdle":76.40013162224416,"loadIrq":1.2339585389930898,"rawLoad":7172,"rawLoadUser":3890,"rawLoadSystem":2907,"rawLoadNice":0,"rawLoadIdle":23218,"rawLoadIrq":375},{"load":19.245834163181303,"loadUser":12.032795591847574,"loadSystem":6.847905463719046,"loadNice":0,"loadIdle":80.75416583681869,"loadIrq":0.365133107614685,"rawLoad":5798,"rawLoadUser":3625,"rawLoadSystem":2063,"rawLoadNice":0,"rawLoadIdle":24328,"rawLoadIrq":110},{"load":22.691476989533147,"loadUser":15.002492108323642,"loadSystem":7.426482804452567,"loadNice":0,"loadIdle":77.30852301046686,"loadIrq":0.2625020767569364,"rawLoad":6829,"rawLoadUser":4515,"rawLoadSystem":2235,"rawLoadNice":0,"rawLoadIdle":23266,"rawLoadIrq":79},{"load":23.686098069900886,"loadUser":13.041210224308816,"loadSystem":8.506129368805425,"loadNice":0,"loadIdle":76.31390193009912,"loadIrq":2.138758476786646,"rawLoad":7265,"rawLoadUser":4000,"rawLoadSystem":2609,"rawLoadNice":0,"rawLoadIdle":23407,"rawLoadIrq":656}]}', '{"ESTABLISHED":31,"CLOSE":0,"TIME_WAIT":24,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":227853771,"rx_dropped":0,"rx_errors":0,"tx_bytes":23450915,"tx_dropped":0,"tx_errors":0,"rx_sec":15736.073089481844,"tx_sec":2201.853623140605,"ms":30319}]', '{"total":10685313024,"free":4432961536,"used":6252351488,"active":6252351488,"available":4432961536,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (188, '2022-03-29 22:47:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54585540608,"available":72690610176,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":16.165413533834585,"currentLoadUser":8.773578683550982,"currentLoadSystem":6.427252341379765,"currentLoadNice":0,"currentLoadIdle":83.83458646616542,"currentLoadIrq":0.9645825089038387,"rawCurrentLoad":19608,"rawCurrentLoadUser":10642,"rawCurrentLoadSystem":7796,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":101688,"rawCurrentLoadIrq":1170,"cpus":[{"load":18.819127637927075,"loadUser":8.976336604417606,"loadSystem":8.408546391414225,"loadNice":0,"loadIdle":81.18087236207293,"loadIrq":1.4342446420952444,"rawLoad":5734,"rawLoadUser":2735,"rawLoadSystem":2562,"rawLoadNice":0,"rawLoadIdle":24735,"rawLoadIrq":437},{"load":12.21793250349464,"loadUser":7.228915662650602,"loadSystem":4.939093390135127,"loadNice":0,"loadIdle":87.78206749650536,"loadIrq":0.049923450708913,"rawLoad":3671,"rawLoadUser":2172,"rawLoadSystem":1484,"rawLoadNice":0,"rawLoadIdle":26375,"rawLoadIrq":15},{"load":15.188613516472579,"loadUser":9.17686871702996,"loadSystem":5.65011114428851,"loadNice":0,"loadIdle":84.81138648352741,"loadIrq":0.361633655154109,"rawLoad":4578,"rawLoadUser":2766,"rawLoadSystem":1703,"rawLoadNice":0,"rawLoadIdle":25563,"rawLoadIrq":109},{"load":18.358355091383814,"loadUser":9.689947780678851,"loadSystem":6.680809399477806,"loadNice":0,"loadIdle":81.64164490861619,"loadIrq":1.9875979112271542,"rawLoad":5625,"rawLoadUser":2969,"rawLoadSystem":2047,"rawLoadNice":0,"rawLoadIdle":25015,"rawLoadIrq":609}]}', '{"ESTABLISHED":28,"CLOSE":0,"TIME_WAIT":16,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":227897439,"rx_dropped":0,"rx_errors":0,"tx_bytes":23458625,"tx_dropped":0,"tx_errors":0,"rx_sec":1467.4866417985684,"tx_sec":259.0986994656719,"ms":29757}]', '{"total":10685313024,"free":4448755712,"used":6236557312,"active":6236557312,"available":4448755712,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (189, '2022-03-29 22:47:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54586277888,"available":72689872896,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":18.24018001919322,"currentLoadUser":10.23859161454714,"currentLoadSystem":7.276878784870446,"currentLoadNice":0,"currentLoadIdle":81.75981998080678,"currentLoadIrq":0.7247096197756379,"rawCurrentLoad":22048,"rawCurrentLoadUser":12376,"rawCurrentLoadSystem":8796,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":98828,"rawCurrentLoadIrq":876,"cpus":[{"load":20.298074386705355,"loadUser":9.891849116328146,"loadSystem":9.324716433658665,"loadNice":0,"loadIdle":79.70192561329465,"loadIrq":1.081508836718544,"rawLoad":6156,"rawLoadUser":3000,"rawLoadSystem":2828,"rawLoadNice":0,"rawLoadIdle":24172,"rawLoadIrq":328},{"load":16.009712936167382,"loadUser":10.032265575624521,"loadSystem":5.767887436383594,"loadNice":0,"loadIdle":83.99028706383261,"loadIrq":0.20955992415926553,"rawLoad":4813,"rawLoadUser":3016,"rawLoadSystem":1734,"rawLoadNice":0,"rawLoadIdle":25250,"rawLoadIrq":63},{"load":17.62904782507405,"loadUser":10.972809265484075,"loadSystem":6.499816953439612,"loadNice":0,"loadIdle":82.37095217492595,"loadIrq":0.1564216061503644,"rawLoad":5297,"rawLoadUser":3297,"rawLoadSystem":1953,"rawLoadNice":0,"rawLoadIdle":24750,"rawLoadIrq":47},{"load":18.9959918522899,"loadUser":10.063079045929431,"loadSystem":7.493922071095341,"loadNice":0,"loadIdle":81.0040081477101,"loadIrq":1.438990735265129,"rawLoad":5782,"rawLoadUser":3063,"rawLoadSystem":2281,"rawLoadNice":0,"rawLoadIdle":24656,"rawLoadIrq":438}]}', '{"ESTABLISHED":29,"CLOSE":0,"TIME_WAIT":23,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":29,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":228041524,"rx_dropped":0,"rx_errors":0,"tx_bytes":23494620,"tx_dropped":0,"tx_errors":0,"rx_sec":4785.764108014748,"tx_sec":1195.5691367456075,"ms":30107}]', '{"total":10685313024,"free":4402839552,"used":6282473472,"active":6282473472,"available":4402839552,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (190, '2022-03-29 22:48:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54587514880,"available":72688635904,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":15.957657791660468,"currentLoadUser":9.21794172575074,"currentLoadSystem":5.952203877237344,"currentLoadNice":0,"currentLoadIdle":84.04234220833953,"currentLoadIrq":0.7875121886723849,"rawCurrentLoad":19311,"rawCurrentLoadUser":11155,"rawCurrentLoadSystem":7203,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":101703,"rawCurrentLoadIrq":953,"cpus":[{"load":17.661404607322943,"loadUser":9.112480638038427,"loadSystem":7.467949774247767,"loadNice":0,"loadIdle":82.33859539267706,"loadIrq":1.0809741950367464,"rawLoad":5359,"rawLoadUser":2765,"rawLoadSystem":2266,"rawLoadNice":0,"rawLoadIdle":24984,"rawLoadIrq":328},{"load":13.461730366230915,"loadUser":8.834780294714433,"loadSystem":4.4706117153976646,"loadNice":0,"loadIdle":86.53826963376908,"loadIrq":0.15633835611881713,"rawLoad":4047,"rawLoadUser":2656,"rawLoadSystem":1344,"rawLoadNice":0,"rawLoadIdle":26016,"rawLoadIrq":47},{"load":15.817952463152304,"loadUser":10.011950604169433,"loadSystem":5.444164121630593,"loadNice":0,"loadIdle":84.18204753684769,"loadIrq":0.36183773735227726,"rawLoad":4765,"rawLoadUser":3016,"rawLoadSystem":1640,"rawLoadNice":0,"rawLoadIdle":25359,"rawLoadIrq":109},{"load":16.86130429077549,"loadUser":8.916152735861434,"loadSystem":6.406639548615667,"loadNice":0,"loadIdle":83.1386957092245,"loadIrq":1.538512006298386,"rawLoad":5140,"rawLoadUser":2718,"rawLoadSystem":1953,"rawLoadNice":0,"rawLoadIdle":25344,"rawLoadIrq":469}]}', '{"ESTABLISHED":28,"CLOSE":0,"TIME_WAIT":21,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":228092662,"rx_dropped":0,"rx_errors":0,"tx_bytes":23506910,"tx_dropped":0,"tx_errors":0,"rx_sec":1709.9578679863573,"tx_sec":410.9543235471143,"ms":29906}]', '{"total":10685313024,"free":4445458432,"used":6239854592,"active":6239854592,"available":4445458432,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (191, '2022-03-29 22:48:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54589050880,"available":72687099904,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":20.541957316921444,"currentLoadUser":12.234267561357962,"currentLoadSystem":7.8407139835604625,"currentLoadNice":0,"currentLoadIdle":79.45804268307856,"currentLoadIrq":0.4669757720030192,"rawCurrentLoad":24766,"rawCurrentLoadUser":14750,"rawCurrentLoadSystem":9453,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":95797,"rawCurrentLoadIrq":563,"cpus":[{"load":23.413262774929716,"loadUser":12.922110137258144,"loadSystem":9.71390772283777,"loadNice":0,"loadIdle":76.58673722507028,"loadIrq":0.7772449148338019,"rawLoad":7079,"rawLoadUser":3907,"rawLoadSystem":2937,"rawLoadNice":0,"rawLoadIdle":23156,"rawLoadIrq":235},{"load":18.104625220605374,"loadUser":11.185108720988312,"loadSystem":6.816289833838367,"loadNice":0,"loadIdle":81.89537477939463,"loadIrq":0.10322666577869534,"rawLoad":5437,"rawLoadUser":3359,"rawLoadSystem":2047,"rawLoadNice":0,"rawLoadIdle":24594,"rawLoadIrq":31},{"load":20.14421958595022,"loadUser":12.355032731864553,"loadSystem":7.476821852258,"loadNice":0,"loadIdle":79.85578041404978,"loadIrq":0.3123650018276676,"rawLoad":6062,"rawLoadUser":3718,"rawLoadSystem":2250,"rawLoadNice":0,"rawLoadIdle":24031,"rawLoadIrq":94},{"load":20.487352668520725,"loadUser":12.468547212289764,"loadSystem":7.346709045159582,"loadNice":0,"loadIdle":79.51264733147927,"loadIrq":0.6720964110713813,"rawLoad":6188,"rawLoadUser":3766,"rawLoadSystem":2219,"rawLoadNice":0,"rawLoadIdle":24016,"rawLoadIrq":203}]}', '{"ESTABLISHED":27,"CLOSE":0,"TIME_WAIT":24,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":228176278,"rx_dropped":0,"rx_errors":0,"tx_bytes":23536843,"tx_dropped":0,"tx_errors":0,"rx_sec":2772.1380499287206,"tx_sec":992.3747637834433,"ms":30163}]', '{"total":10685313024,"free":4409655296,"used":6275657728,"active":6275657728,"available":4409655296,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (192, '2022-03-29 22:49:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54589452288,"available":72686698496,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":15.47524094383516,"currentLoadUser":9.373546028580924,"currentLoadSystem":5.803423064140911,"currentLoadNice":0,"currentLoadIdle":84.52475905616484,"currentLoadIrq":0.2982718511133267,"rawCurrentLoad":18626,"rawCurrentLoadUser":11282,"rawCurrentLoadSystem":6985,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":101734,"rawCurrentLoadIrq":359,"cpus":[{"load":17.33858945903866,"loadUser":10.040746016497168,"loadSystem":6.678371484413821,"loadNice":0,"loadIdle":82.66141054096134,"loadIrq":0.6194719581276709,"rawLoad":5234,"rawLoadUser":3031,"rawLoadSystem":2016,"rawLoadNice":0,"rawLoadIdle":24953,"rawLoadIrq":187},{"load":14.578891257995735,"loadUser":10.257862473347549,"loadSystem":4.267723880597015,"loadNice":0,"loadIdle":85.42110874200426,"loadIrq":0.053304904051172705,"rawLoad":4376,"rawLoadUser":3079,"rawLoadSystem":1281,"rawLoadNice":0,"rawLoadIdle":25640,"rawLoadIrq":16},{"load":15.140516782099095,"loadUser":8.167954182205648,"loadSystem":6.869339371337241,"loadNice":0,"loadIdle":84.85948321790092,"loadIrq":0.10322322855620672,"rawLoad":4547,"rawLoadUser":2453,"rawLoadSystem":2063,"rawLoadNice":0,"rawLoadIdle":25485,"rawLoadIrq":31},{"load":14.834854771784231,"loadUser":9.025726141078838,"loadSystem":5.394190871369295,"loadNice":0,"loadIdle":85.16514522821576,"loadIrq":0.4149377593360996,"rawLoad":4469,"rawLoadUser":2719,"rawLoadSystem":1625,"rawLoadNice":0,"rawLoadIdle":25656,"rawLoadIrq":125}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":26,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":228249629,"rx_dropped":0,"rx_errors":0,"tx_bytes":23559148,"tx_dropped":0,"tx_errors":0,"rx_sec":2441.2900219663184,"tx_sec":742.3617120415363,"ms":30046}]', '{"total":10685313024,"free":4444729344,"used":6240583680,"active":6240583680,"available":4444729344,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (193, '2022-03-29 22:49:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54590894080,"available":72685256704,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":25.65949028664134,"currentLoadUser":15.182968720253614,"currentLoadSystem":9.907046427122909,"currentLoadNice":0,"currentLoadIdle":74.34050971335866,"currentLoadIrq":0.5694751392648142,"rawCurrentLoad":31000,"rawCurrentLoadUser":18343,"rawCurrentLoadSystem":11969,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":89813,"rawCurrentLoadIrq":688,"cpus":[{"load":27.362922566444364,"loadUser":14.06419396169388,"loadSystem":11.96162817438155,"loadNice":0,"loadIdle":72.63707743355565,"loadIrq":1.3371004303689344,"rawLoad":8329,"rawLoadUser":4281,"rawLoadSystem":3641,"rawLoadNice":0,"rawLoadIdle":22110,"rawLoadIrq":407},{"load":23.217076171160688,"loadUser":15.011470558898827,"loadSystem":8.052664826944177,"loadNice":0,"loadIdle":76.78292382883932,"loadIrq":0.1529407853176846,"rawLoad":6983,"rawLoadUser":4515,"rawLoadSystem":2422,"rawLoadNice":0,"rawLoadIdle":23094,"rawLoadIrq":46},{"load":25.28743271083937,"loadUser":15.421678739948163,"loadSystem":9.656409915597793,"loadNice":0,"loadIdle":74.71256728916063,"loadIrq":0.20934405529341396,"rawLoad":7610,"rawLoadUser":4641,"rawLoadSystem":2906,"rawLoadNice":0,"rawLoadIdle":22484,"rawLoadIrq":63},{"load":26.74568751448532,"loadUser":16.243419527861473,"loadSystem":9.93278813362911,"loadNice":0,"loadIdle":73.25431248551469,"loadIrq":0.5694798529947356,"rawLoad":8078,"rawLoadUser":4906,"rawLoadSystem":3000,"rawLoadNice":0,"rawLoadIdle":22125,"rawLoadIrq":172}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":21,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":26,"SYN_SENT":2,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":228367061,"rx_dropped":0,"rx_errors":0,"tx_bytes":23579603,"tx_dropped":0,"tx_errors":0,"rx_sec":3889.635984233712,"tx_sec":677.5197906660926,"ms":30191}]', '{"total":10685313024,"free":4580372480,"used":6104940544,"active":6104940544,"available":4580372480,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (194, '2022-03-29 22:50:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54591045632,"available":72685105152,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":9.76496829069361,"currentLoadUser":5.591990279141768,"currentLoadSystem":3.9923764502222148,"currentLoadNice":0,"currentLoadIdle":90.23503170930638,"currentLoadIrq":0.18060156132962696,"rawCurrentLoad":11733,"rawCurrentLoadUser":6719,"rawCurrentLoadSystem":4797,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":108421,"rawCurrentLoadIrq":217,"cpus":[{"load":10.613191912495857,"loadUser":5.9032151143520055,"loadSystem":4.090155783891283,"loadNice":0,"loadIdle":89.38680808750415,"loadIrq":0.6198210142525687,"rawLoad":3202,"rawLoadUser":1781,"rawLoadSystem":1234,"rawLoadNice":0,"rawLoadIdle":26968,"rawLoadIrq":187},{"load":9.381357345339335,"loadUser":5.629481407370352,"loadSystem":3.7518759379689848,"loadNice":0,"loadIdle":90.61864265466066,"loadIrq":0,"rawLoad":2813,"rawLoadUser":1688,"rawLoadSystem":1125,"rawLoadNice":0,"rawLoadIdle":27172,"rawLoadIrq":0},{"load":9.583333333333334,"loadUser":5.416666666666667,"loadSystem":4.116666666666666,"loadNice":0,"loadIdle":90.41666666666667,"loadIrq":0.05,"rawLoad":2875,"rawLoadUser":1625,"rawLoadSystem":1235,"rawLoadNice":0,"rawLoadIdle":27125,"rawLoadIrq":15},{"load":9.476982566085535,"loadUser":5.4168472282409414,"loadSystem":4.010133671122371,"loadNice":0,"loadIdle":90.52301743391446,"loadIrq":0.05000166672222407,"rawLoad":2843,"rawLoadUser":1625,"rawLoadSystem":1203,"rawLoadNice":0,"rawLoadIdle":27156,"rawLoadIrq":15}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":21,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":31,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":228454155,"rx_dropped":0,"rx_errors":0,"tx_bytes":23600019,"tx_dropped":0,"tx_errors":0,"rx_sec":2955.544997963893,"tx_sec":692.8193294421067,"ms":29468}]', '{"total":10685313024,"free":4660346880,"used":6024966144,"active":6024966144,"available":4660346880,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (195, '2022-03-29 22:50:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54591111168,"available":72685039616,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":5.956384218411853,"currentLoadUser":3.4068586648909607,"currentLoadSystem":2.4846012984851007,"currentLoadNice":0,"currentLoadIdle":94.04361578158816,"currentLoadIrq":0.06492425503579158,"rawCurrentLoad":7156,"rawCurrentLoadUser":4093,"rawCurrentLoadSystem":2985,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112984,"rawCurrentLoadIrq":78,"cpus":[{"load":7.21738552535389,"loadUser":3.894464012760018,"loadSystem":3.0637336346115505,"loadNice":0,"loadIdle":92.78261447464611,"loadIrq":0.25918787798232207,"rawLoad":2172,"rawLoadUser":1172,"rawLoadSystem":922,"rawLoadNice":0,"rawLoadIdle":27922,"rawLoadIrq":78},{"load":5.310501066098081,"loadUser":2.6019456289978677,"loadSystem":2.7085554371002134,"loadNice":0,"loadIdle":94.68949893390192,"loadIrq":0,"rawLoad":1594,"rawLoadUser":781,"rawLoadSystem":813,"rawLoadNice":0,"rawLoadIdle":28422,"rawLoadIrq":0},{"load":6.087159325648031,"loadUser":4.111414673152529,"loadSystem":1.9757446524955022,"loadNice":0,"loadIdle":93.91284067435197,"loadIrq":0,"rawLoad":1827,"rawLoadUser":1234,"rawLoadSystem":593,"rawLoadNice":0,"rawLoadIdle":28187,"rawLoadIrq":0},{"load":5.207222814498934,"loadUser":3.018390191897655,"loadSystem":2.1888326226012795,"loadNice":0,"loadIdle":94.79277718550107,"loadIrq":0,"rawLoad":1563,"rawLoadUser":906,"rawLoadSystem":657,"rawLoadNice":0,"rawLoadIdle":28453,"rawLoadIrq":0}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":15,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":228483600,"rx_dropped":0,"rx_errors":0,"tx_bytes":23603935,"tx_dropped":0,"tx_errors":0,"rx_sec":980.6174443001298,"tx_sec":130.4159589702601,"ms":30027}]', '{"total":10685313024,"free":4655923200,"used":6029389824,"active":6029389824,"available":4655923200,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (196, '2022-03-29 22:51:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54591111168,"available":72685039616,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.165963150752221,"currentLoadUser":3.617487157712449,"currentLoadSystem":2.4577266028923246,"currentLoadNice":0,"currentLoadIdle":93.83403684924778,"currentLoadIrq":0.09074939014744696,"rawCurrentLoad":7406,"rawCurrentLoadUser":4345,"rawCurrentLoadSystem":2952,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112705,"rawCurrentLoadIrq":109,"cpus":[{"load":7.1680297892147085,"loadUser":3.7934703105259655,"loadSystem":3.115233725646652,"loadNice":0,"loadIdle":92.83197021078529,"loadIrq":0.2593257530420906,"rawLoad":2156,"rawLoadUser":1141,"rawLoadSystem":937,"rawLoadNice":0,"rawLoadIdle":27922,"rawLoadIrq":78},{"load":5.676666666666667,"loadUser":3.3333333333333335,"loadSystem":2.3433333333333333,"loadNice":0,"loadIdle":94.32333333333334,"loadIrq":0,"rawLoad":1703,"rawLoadUser":1000,"rawLoadSystem":703,"rawLoadNice":0,"rawLoadIdle":28297,"rawLoadIrq":0},{"load":5.729809006366454,"loadUser":3.6465451151628283,"loadSystem":2.0832638912036265,"loadNice":0,"loadIdle":94.27019099363353,"loadIrq":0,"rawLoad":1719,"rawLoadUser":1094,"rawLoadSystem":625,"rawLoadNice":0,"rawLoadIdle":28282,"rawLoadIrq":0},{"load":6.086840703249867,"loadUser":3.696057538625466,"loadSystem":2.287559936068194,"loadNice":0,"loadIdle":93.91315929675014,"loadIrq":0.10322322855620672,"rawLoad":1828,"rawLoadUser":1110,"rawLoadSystem":687,"rawLoadNice":0,"rawLoadIdle":28204,"rawLoadIrq":31}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":12,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":228537524,"rx_dropped":0,"rx_errors":0,"tx_bytes":23611302,"tx_dropped":0,"tx_errors":0,"rx_sec":1794.9537314426468,"tx_sec":245.22335397110712,"ms":30042}]', '{"total":10685313024,"free":4634329088,"used":6050983936,"active":6050983936,"available":4634329088,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (197, '2022-03-29 22:51:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54591176704,"available":72684974080,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.666943866943867,"currentLoadUser":3.456133056133056,"currentLoadSystem":3.053638253638254,"currentLoadNice":0,"currentLoadIdle":93.33305613305613,"currentLoadIrq":0.15717255717255718,"rawCurrentLoad":8017,"rawCurrentLoadUser":4156,"rawCurrentLoadSystem":3672,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112233,"rawCurrentLoadIrq":189,"cpus":[{"load":7.771849004076492,"loadUser":3.469989725913897,"loadSystem":3.781526530341696,"loadNice":0,"loadIdle":92.22815099592351,"loadIrq":0.5203327478208994,"rawLoad":2345,"rawLoadUser":1047,"rawLoadSystem":1141,"rawLoadNice":0,"rawLoadIdle":27828,"rawLoadIrq":157},{"load":6.090288189238715,"loadUser":3.2283858070964517,"loadSystem":2.861902382142262,"loadNice":0,"loadIdle":93.90971181076128,"loadIrq":0,"rawLoad":1828,"rawLoadUser":969,"rawLoadSystem":859,"rawLoadNice":0,"rawLoadIdle":28187,"rawLoadIrq":0},{"load":6.506393180607352,"loadUser":3.90250399573788,"loadSystem":2.5506126798082045,"loadNice":0,"loadIdle":93.49360681939265,"loadIrq":0.05327650506126798,"rawLoad":1954,"rawLoadUser":1172,"rawLoadSystem":766,"rawLoadNice":0,"rawLoadIdle":28078,"rawLoadIrq":16},{"load":6.293706293706294,"loadUser":3.223443223443224,"loadSystem":3.016983016983017,"loadNice":0,"loadIdle":93.7062937062937,"loadIrq":0.05328005328005328,"rawLoad":1890,"rawLoadUser":968,"rawLoadSystem":906,"rawLoadNice":0,"rawLoadIdle":28140,"rawLoadIrq":16}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":6,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":228579692,"rx_dropped":0,"rx_errors":0,"tx_bytes":23614760,"tx_dropped":0,"tx_errors":0,"rx_sec":1407.194820796903,"tx_sec":115.39745044383635,"ms":29966}]', '{"total":10685313024,"free":4639944704,"used":6045368320,"active":6045368320,"available":4639944704,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (198, '2022-03-29 22:52:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54591176704,"available":72684974080,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.034547346514048,"currentLoadUser":3.446409989594173,"currentLoadSystem":2.4849115504682624,"currentLoadNice":0,"currentLoadIdle":93.96545265348595,"currentLoadIrq":0.1032258064516129,"rawCurrentLoad":7249,"rawCurrentLoadUser":4140,"rawCurrentLoadSystem":2985,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112876,"rawCurrentLoadIrq":124,"cpus":[{"load":6.848768816668328,"loadUser":3.269863423387499,"loadSystem":3.269863423387499,"loadNice":0,"loadIdle":93.15123118333167,"loadIrq":0.30904196989333066,"rawLoad":2061,"rawLoadUser":984,"rawLoadSystem":984,"rawLoadNice":0,"rawLoadIdle":28032,"rawLoadIrq":93},{"load":5.363333333333333,"loadUser":3.3833333333333333,"loadSystem":1.9800000000000002,"loadNice":0,"loadIdle":94.63666666666667,"loadIrq":0,"rawLoad":1609,"rawLoadUser":1015,"rawLoadSystem":594,"rawLoadNice":0,"rawLoadIdle":28391,"rawLoadIrq":0},{"load":5.783333333333333,"loadUser":3.2300000000000004,"loadSystem":2.5533333333333337,"loadNice":0,"loadIdle":94.21666666666667,"loadIrq":0,"rawLoad":1735,"rawLoadUser":969,"rawLoadSystem":766,"rawLoadNice":0,"rawLoadIdle":28265,"rawLoadIrq":0},{"load":6.140117208311135,"loadUser":3.90250399573788,"loadSystem":2.1343899840170484,"loadNice":0,"loadIdle":93.85988279168886,"loadIrq":0.10322322855620672,"rawLoad":1844,"rawLoadUser":1172,"rawLoadSystem":641,"rawLoadNice":0,"rawLoadIdle":28188,"rawLoadIrq":31}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":4,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":228626522,"rx_dropped":0,"rx_errors":0,"tx_bytes":23619704,"tx_dropped":0,"tx_errors":0,"rx_sec":1559.9600266489008,"tx_sec":164.6902065289807,"ms":30020}]', '{"total":10685313024,"free":4628062208,"used":6057250816,"active":6057250816,"available":4628062208,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (199, '2022-03-29 22:52:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54591832064,"available":72684318720,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.977865730963032,"currentLoadUser":4.040210865913891,"currentLoadSystem":2.7680308649161027,"currentLoadNice":0,"currentLoadIdle":93.02213426903697,"currentLoadIrq":0.16962400013303844,"rawCurrentLoad":8392,"rawCurrentLoadUser":4859,"rawCurrentLoadSystem":3329,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":111874,"rawCurrentLoadIrq":204,"cpus":[{"load":7.919480863461794,"loadUser":4.138524698715402,"loadSystem":3.158522050059595,"loadNice":0,"loadIdle":92.08051913653821,"loadIrq":0.6224341146867964,"rawLoad":2392,"rawLoadUser":1250,"rawLoadSystem":954,"rawLoadNice":0,"rawLoadIdle":27812,"rawLoadIrq":188},{"load":6.81992337164751,"loadUser":4.424454439446944,"loadSystem":2.3954689322005662,"loadNice":0,"loadIdle":93.1800766283525,"loadIrq":0,"rawLoad":2047,"rawLoadUser":1328,"rawLoadSystem":719,"rawLoadNice":0,"rawLoadIdle":27968,"rawLoadIrq":0},{"load":6.660003331667499,"loadUser":3.798100949525238,"loadSystem":2.861902382142262,"loadNice":0,"loadIdle":93.3399966683325,"loadIrq":0,"rawLoad":1999,"rawLoadUser":1140,"rawLoadSystem":859,"rawLoadNice":0,"rawLoadIdle":28016,"rawLoadIrq":0},{"load":6.506393180607352,"loadUser":3.7992807671816733,"loadSystem":2.653835908364411,"loadNice":0,"loadIdle":93.49360681939265,"loadIrq":0.05327650506126798,"rawLoad":1954,"rawLoadUser":1141,"rawLoadSystem":797,"rawLoadNice":0,"rawLoadIdle":28078,"rawLoadIrq":16}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":4,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":228661725,"rx_dropped":0,"rx_errors":0,"tx_bytes":23623220,"tx_dropped":0,"tx_errors":0,"rx_sec":1173.0814089106602,"tx_sec":117.16485054483655,"ms":30009}]', '{"total":10685313024,"free":4635058176,"used":6050254848,"active":6050254848,"available":4635058176,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (200, '2022-03-29 22:53:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54591832064,"available":72684318720,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.618944564674546,"currentLoadUser":3.9279174296653903,"currentLoadSystem":2.678541701348427,"currentLoadNice":0,"currentLoadIdle":93.38105543532545,"currentLoadIrq":0.012485433660729149,"rawCurrentLoad":7952,"rawCurrentLoadUser":4719,"rawCurrentLoadSystem":3218,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112188,"rawCurrentLoadIrq":15,"cpus":[{"load":6.965985488916994,"loadUser":4.003860746854823,"loadSystem":2.912201291353258,"loadNice":0,"loadIdle":93.034014511083,"loadIrq":0.049923450708913,"rawLoad":2093,"rawLoadUser":1203,"rawLoadSystem":875,"rawLoadNice":0,"rawLoadIdle":27953,"rawLoadIrq":15},{"load":6.1902700542772475,"loadUser":3.799407279144883,"loadSystem":2.3908627751323634,"loadNice":0,"loadIdle":93.80972994572275,"loadIrq":0,"rawLoad":1859,"rawLoadUser":1141,"rawLoadSystem":718,"rawLoadNice":0,"rawLoadIdle":28172,"rawLoadIrq":0},{"load":6.556339904102291,"loadUser":3.955780500799148,"loadSystem":2.6005594033031434,"loadNice":0,"loadIdle":93.44366009589771,"loadIrq":0,"rawLoad":1969,"rawLoadUser":1188,"rawLoadSystem":781,"rawLoadNice":0,"rawLoadIdle":28063,"rawLoadIrq":0},{"load":6.7630115547267815,"loadUser":3.95258233159069,"loadSystem":2.810429223136093,"loadNice":0,"loadIdle":93.23698844527321,"loadIrq":0,"rawLoad":2031,"rawLoadUser":1187,"rawLoadSystem":844,"rawLoadNice":0,"rawLoadIdle":28000,"rawLoadIrq":0}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":4,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":228693258,"rx_dropped":0,"rx_errors":0,"tx_bytes":23626819,"tx_dropped":0,"tx_errors":0,"rx_sec":1050.889822035593,"tx_sec":119.94267813104045,"ms":30006}]', '{"total":10685313024,"free":4626665472,"used":6058647552,"active":6058647552,"available":4626665472,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (201, '2022-03-29 22:53:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54591848448,"available":72684302336,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.23500599760096,"currentLoadUser":3.4886045581767293,"currentLoadSystem":2.654771424763428,"currentLoadNice":0,"currentLoadIdle":93.76499400239904,"currentLoadIrq":0.09163001466080234,"rawCurrentLoad":7485,"rawCurrentLoadUser":4188,"rawCurrentLoadSystem":3187,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112563,"rawCurrentLoadIrq":110,"cpus":[{"load":7.008041470060478,"loadUser":3.4259320794842827,"loadSystem":3.2165880241908686,"loadNice":0,"loadIdle":92.99195852993952,"loadIrq":0.36552136638532595,"rawLoad":2109,"rawLoadUser":1031,"rawLoadSystem":968,"rawLoadNice":0,"rawLoadIdle":27985,"rawLoadIrq":110},{"load":5.679506419876605,"loadUser":3.2816408204102054,"loadSystem":2.3978655994664,"loadNice":0,"loadIdle":94.3204935801234,"loadIrq":0,"rawLoad":1703,"rawLoadUser":984,"rawLoadSystem":719,"rawLoadNice":0,"rawLoadIdle":28282,"rawLoadIrq":0},{"load":6.256461564115392,"loadUser":3.8052359513089877,"loadSystem":2.451225612806403,"loadNice":0,"loadIdle":93.74353843588462,"loadIrq":0,"rawLoad":1876,"rawLoadUser":1141,"rawLoadSystem":735,"rawLoadNice":0,"rawLoadIdle":28109,"rawLoadIrq":0},{"load":5.993196371398079,"loadUser":3.4418356456776946,"loadSystem":2.551360725720384,"loadNice":0,"loadIdle":94.00680362860192,"loadIrq":0,"rawLoad":1797,"rawLoadUser":1032,"rawLoadSystem":765,"rawLoadNice":0,"rawLoadIdle":28187,"rawLoadIrq":0}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":4,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":228736344,"rx_dropped":0,"rx_errors":0,"tx_bytes":23630968,"tx_dropped":0,"tx_errors":0,"rx_sec":1435.434434968017,"tx_sec":138.22627931769725,"ms":30016}]', '{"total":10685313024,"free":4623118336,"used":6062194688,"active":6062194688,"available":4623118336,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (202, '2022-03-29 22:54:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54591823872,"available":72684326912,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":9.358253280905213,"currentLoadUser":4.173510527101687,"currentLoadSystem":5.042058633218854,"currentLoadNice":0,"currentLoadIdle":90.64174671909478,"currentLoadIrq":0.14268412058467309,"rawCurrentLoad":11281,"rawCurrentLoadUser":5031,"rawCurrentLoadSystem":6078,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":109265,"rawCurrentLoadIrq":172,"cpus":[{"load":10.641322314049587,"loadUser":4.495867768595041,"loadSystem":5.629752066115702,"loadNice":0,"loadIdle":89.35867768595041,"loadIrq":0.5157024793388431,"rawLoad":3219,"rawLoadUser":1360,"rawLoadSystem":1703,"rawLoadNice":0,"rawLoadIdle":27031,"rawLoadIrq":156},{"load":9.659732837110388,"loadUser":4.466006512926165,"loadSystem":5.193726324184223,"loadNice":0,"loadIdle":90.3402671628896,"loadIrq":0,"rawLoad":2907,"rawLoadUser":1344,"rawLoadSystem":1563,"rawLoadNice":0,"rawLoadIdle":27187,"rawLoadIrq":0},{"load":8.974358974358974,"loadUser":3.7863690713431644,"loadSystem":5.134847880961871,"loadNice":0,"loadIdle":91.02564102564102,"loadIrq":0.053142022053939156,"rawLoad":2702,"rawLoadUser":1140,"rawLoadSystem":1546,"rawLoadNice":0,"rawLoadIdle":27406,"rawLoadIrq":16},{"load":8.15112647039277,"loadUser":3.9443078354489263,"loadSystem":4.206818634943843,"loadNice":0,"loadIdle":91.84887352960723,"loadIrq":0,"rawLoad":2453,"rawLoadUser":1187,"rawLoadSystem":1266,"rawLoadNice":0,"rawLoadIdle":27641,"rawLoadIrq":0}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":4,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":228791887,"rx_dropped":0,"rx_errors":0,"tx_bytes":23639223,"tx_dropped":0,"tx_errors":0,"rx_sec":1843.2615405037666,"tx_sec":273.9521454883351,"ms":30133}]', '{"total":10685313024,"free":4525150208,"used":6160162816,"active":6160162816,"available":4525150208,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (203, '2022-03-29 22:54:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54591819776,"available":72684331008,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":10.669834521278814,"currentLoadUser":3.7130590638155976,"currentLoadSystem":6.786711683547997,"currentLoadNice":0,"currentLoadIdle":89.33016547872118,"currentLoadIrq":0.1700637739152182,"rawCurrentLoad":12799,"rawCurrentLoadUser":4454,"rawCurrentLoadSystem":8141,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":107156,"rawCurrentLoadIrq":204,"cpus":[{"load":11.630225294078555,"loadUser":3.7382867016681067,"loadSystem":7.373562836445803,"loadNice":0,"loadIdle":88.36977470592144,"loadIrq":0.5183757559646441,"rawLoad":3500,"rawLoadUser":1125,"rawLoadSystem":2219,"rawLoadNice":0,"rawLoadIdle":26594,"rawLoadIrq":156},{"load":9.960292302045447,"loadUser":4.067536454336147,"loadSystem":5.7859788448063,"loadNice":0,"loadIdle":90.03970769795455,"loadIrq":0.10677700290299975,"rawLoad":2985,"rawLoadUser":1219,"rawLoadSystem":1734,"rawLoadNice":0,"rawLoadIdle":26984,"rawLoadIrq":32},{"load":11.48373304829982,"loadUser":4.332286725900194,"loadSystem":7.151446322399625,"loadNice":0,"loadIdle":88.51626695170019,"loadIrq":0,"rawLoad":3438,"rawLoadUser":1297,"rawLoadSystem":2141,"rawLoadNice":0,"rawLoadIdle":26500,"rawLoadIrq":0},{"load":9.601388796154103,"loadUser":2.714161714629098,"loadSystem":6.833811844828737,"loadNice":0,"loadIdle":90.3986112038459,"loadIrq":0.05341523669626762,"rawLoad":2876,"rawLoadUser":813,"rawLoadSystem":2047,"rawLoadNice":0,"rawLoadIdle":27078,"rawLoadIrq":16}]}', '{"ESTABLISHED":20,"CLOSE":0,"TIME_WAIT":4,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":228836739,"rx_dropped":0,"rx_errors":0,"tx_bytes":23645629,"tx_dropped":0,"tx_errors":0,"rx_sec":1497.0627503337782,"tx_sec":213.8184245660881,"ms":29960}]', '{"total":10685313024,"free":5044006912,"used":5641306112,"active":5641306112,"available":5044006912,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (204, '2022-03-29 22:55:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54591803392,"available":72684347392,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.7043054562386715,"currentLoadUser":3.937106081519299,"currentLoadSystem":2.6507907471770906,"currentLoadNice":0,"currentLoadIdle":93.29569454376133,"currentLoadIrq":0.11640862754228128,"rawCurrentLoad":8063,"rawCurrentLoadUser":4735,"rawCurrentLoadSystem":3188,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112203,"rawCurrentLoadIrq":140,"cpus":[{"load":7.209448923393384,"loadUser":3.7324574499850702,"loadSystem":3.112040078298663,"loadNice":0,"loadIdle":92.79055107660662,"loadIrq":0.3649513951096513,"rawLoad":2173,"rawLoadUser":1125,"rawLoadSystem":938,"rawLoadNice":0,"rawLoadIdle":27968,"rawLoadIrq":110},{"load":6.499816953439612,"loadUser":3.900555795919726,"loadSystem":2.549339368322961,"loadNice":0,"loadIdle":93.5001830465604,"loadIrq":0.04992178919692482,"rawLoad":1953,"rawLoadUser":1172,"rawLoadSystem":766,"rawLoadNice":0,"rawLoadIdle":28094,"rawLoadIrq":15},{"load":6.553066861916331,"loadUser":3.953805704396446,"loadSystem":2.549339368322961,"loadNice":0,"loadIdle":93.44693313808366,"loadIrq":0.04992178919692482,"rawLoad":1969,"rawLoadUser":1188,"rawLoadSystem":766,"rawLoadNice":0,"rawLoadIdle":28078,"rawLoadIrq":15},{"load":6.553228330724918,"loadUser":4.1623655555925545,"loadSystem":2.3908627751323634,"loadNice":0,"loadIdle":93.44677166927508,"loadIrq":0,"rawLoad":1968,"rawLoadUser":1250,"rawLoadSystem":718,"rawLoadNice":0,"rawLoadIdle":28063,"rawLoadIrq":0}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":4,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":228876461,"rx_dropped":0,"rx_errors":0,"tx_bytes":23653101,"tx_dropped":0,"tx_errors":0,"rx_sec":1326.9417070319025,"tx_sec":249.60748287957242,"ms":29935}]', '{"total":10685313024,"free":5038198784,"used":5647114240,"active":5647114240,"available":5038198784,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (205, '2022-03-29 22:55:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54591803392,"available":72684347392,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.255983350676379,"currentLoadUser":3.5238293444328828,"currentLoadSystem":2.575650364203954,"currentLoadNice":0,"currentLoadIdle":93.74401664932363,"currentLoadIrq":0.15650364203954215,"rawCurrentLoad":7515,"rawCurrentLoadUser":4233,"rawCurrentLoadSystem":3094,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112610,"rawCurrentLoadIrq":188,"cpus":[{"load":6.692351124248564,"loadUser":3.527184562755322,"loadSystem":2.7500083031651665,"loadNice":0,"loadIdle":93.30764887575144,"loadIrq":0.4151582583280747,"rawLoad":2015,"rawLoadUser":1062,"rawLoadSystem":828,"rawLoadNice":0,"rawLoadIdle":28094,"rawLoadIrq":125},{"load":6.459784673844206,"loadUser":3.9065364487850402,"loadSystem":2.499916669444352,"loadNice":0,"loadIdle":93.54021532615579,"loadIrq":0.05333155561481284,"rawLoad":1938,"rawLoadUser":1172,"rawLoadSystem":750,"rawLoadNice":0,"rawLoadIdle":28063,"rawLoadIrq":16},{"load":5.623333333333334,"loadUser":3.2800000000000002,"loadSystem":2.29,"loadNice":0,"loadIdle":94.37666666666667,"loadIrq":0.05333333333333334,"rawLoad":1687,"rawLoadUser":984,"rawLoadSystem":687,"rawLoadNice":0,"rawLoadIdle":28313,"rawLoadIrq":16},{"load":6.246876561719141,"loadUser":3.3816425120772946,"loadSystem":2.761952357154756,"loadNice":0,"loadIdle":93.75312343828087,"loadIrq":0.1032816924870898,"rawLoad":1875,"rawLoadUser":1015,"rawLoadSystem":829,"rawLoadNice":0,"rawLoadIdle":28140,"rawLoadIrq":31}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":4,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":228915279,"rx_dropped":0,"rx_errors":0,"tx_bytes":23658623,"tx_dropped":0,"tx_errors":0,"rx_sec":1292.0383437624816,"tx_sec":183.79709759020105,"ms":30044}]', '{"total":10685313024,"free":5007876096,"used":5677436928,"active":5677436928,"available":5007876096,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (206, '2022-03-29 22:56:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54591799296,"available":72684351488,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.469072164948455,"currentLoadUser":3.3131027602261387,"currentLoadSystem":2.9231792484203525,"currentLoadNice":0,"currentLoadIdle":93.53092783505154,"currentLoadIrq":0.2327901563019621,"rawCurrentLoad":7781,"rawCurrentLoadUser":3985,"rawCurrentLoadSystem":3516,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112499,"rawCurrentLoadIrq":280,"cpus":[{"load":7.744663979382806,"loadUser":3.2544769708583887,"loadSystem":3.614617062049825,"loadNice":0,"loadIdle":92.2553360206172,"loadIrq":0.875569946474592,"rawLoad":2344,"rawLoadUser":985,"rawLoadSystem":1094,"rawLoadNice":0,"rawLoadIdle":27922,"rawLoadIrq":265},{"load":5.9368645621520715,"loadUser":3.333444448148272,"loadSystem":2.6034201140038,"loadNice":0,"loadIdle":94.06313543784793,"loadIrq":0,"rawLoad":1781,"rawLoadUser":1000,"rawLoadSystem":781,"rawLoadNice":0,"rawLoadIdle":28218,"rawLoadIrq":0},{"load":6.043333333333333,"loadUser":2.9166666666666665,"loadSystem":3.1266666666666665,"loadNice":0,"loadIdle":93.95666666666666,"loadIrq":0,"rawLoad":1813,"rawLoadUser":875,"rawLoadSystem":938,"rawLoadNice":0,"rawLoadIdle":28187,"rawLoadIrq":0},{"load":6.140263201732467,"loadUser":3.7481259370314843,"loadSystem":2.34216225220723,"loadNice":0,"loadIdle":93.85973679826753,"loadIrq":0.04997501249375312,"rawLoad":1843,"rawLoadUser":1125,"rawLoadSystem":703,"rawLoadNice":0,"rawLoadIdle":28172,"rawLoadIrq":15}]}', '{"ESTABLISHED":20,"CLOSE":0,"TIME_WAIT":5,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":228958083,"rx_dropped":0,"rx_errors":0,"tx_bytes":23663424,"tx_dropped":0,"tx_errors":0,"rx_sec":1429.1342526126004,"tx_sec":160.29514874294682,"ms":29951}]', '{"total":10685313024,"free":5001732096,"used":5683580928,"active":5683580928,"available":5001732096,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (207, '2022-03-29 22:56:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54589009920,"available":72687140864,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.441461614377296,"currentLoadUser":6.867696696771411,"currentLoadSystem":4.249496180927028,"currentLoadNice":0,"currentLoadIdle":88.55853838562271,"currentLoadIrq":0.32426873667885786,"rawCurrentLoad":13796,"rawCurrentLoadUser":8281,"rawCurrentLoadSystem":5124,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":106783,"rawCurrentLoadIrq":391,"cpus":[{"load":12.75414063274819,"loadUser":6.661377235611095,"loadSystem":5.421666831961387,"loadNice":0,"loadIdle":87.24585936725181,"loadIrq":0.6710965651757083,"rawLoad":3858,"rawLoadUser":2015,"rawLoadSystem":1640,"rawLoadNice":0,"rawLoadIdle":26391,"rawLoadIrq":203},{"load":10.341615939859627,"loadUser":6.755812793134417,"loadSystem":3.532581578684762,"loadNice":0,"loadIdle":89.65838406014038,"loadIrq":0.05322156804044839,"rawLoad":3109,"rawLoadUser":2031,"rawLoadSystem":1062,"rawLoadNice":0,"rawLoadIdle":26954,"rawLoadIrq":16},{"load":10.869275825346113,"loadUser":6.552848775292865,"loadSystem":4.316427050053248,"loadNice":0,"loadIdle":89.13072417465389,"loadIrq":0,"rawLoad":3266,"rawLoadUser":1969,"rawLoadSystem":1297,"rawLoadNice":0,"rawLoadIdle":26782,"rawLoadIrq":0},{"load":11.790595320824647,"loadUser":7.4985936000529465,"loadSystem":3.722823389258414,"loadNice":0,"loadIdle":88.20940467917535,"loadIrq":0.5691783315132863,"rawLoad":3563,"rawLoadUser":2266,"rawLoadSystem":1125,"rawLoadNice":0,"rawLoadIdle":26656,"rawLoadIrq":172}]}', '{"ESTABLISHED":20,"CLOSE":0,"TIME_WAIT":5,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":228988442,"rx_dropped":0,"rx_errors":0,"tx_bytes":23668726,"tx_dropped":0,"tx_errors":0,"rx_sec":998.0931715816812,"tx_sec":174.31041851596146,"ms":30417}]', '{"total":10685313024,"free":4911316992,"used":5773996032,"active":5773996032,"available":4911316992,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (208, '2022-03-29 22:57:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54589759488,"available":72686391296,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":25.71419072237784,"currentLoadUser":16.870444099043315,"currentLoadSystem":8.532054425613618,"currentLoadNice":0,"currentLoadIdle":74.28580927762216,"currentLoadIrq":0.31169219772090667,"rawCurrentLoad":30937,"rawCurrentLoadUser":20297,"rawCurrentLoadSystem":10265,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":89374,"rawCurrentLoadIrq":375,"cpus":[{"load":26.453343933220708,"loadUser":15.840206697803835,"loadSystem":9.93739441518434,"loadNice":0,"loadIdle":73.54665606677929,"loadIrq":0.6757428202325351,"rawLoad":7986,"rawLoadUser":4782,"rawLoadSystem":3000,"rawLoadNice":0,"rawLoadIdle":22203,"rawLoadIrq":204},{"load":24.477482582752756,"loadUser":16.250541684722826,"loadSystem":8.17693923130771,"loadNice":0,"loadIdle":75.52251741724724,"loadIrq":0.05000166672222407,"rawLoad":7343,"rawLoadUser":4875,"rawLoadSystem":2453,"rawLoadNice":0,"rawLoadIdle":22656,"rawLoadIrq":15},{"load":26.88300882010318,"loadUser":18.409053087036114,"loadSystem":8.267598602096855,"loadNice":0,"loadIdle":73.11699117989681,"loadIrq":0.20635713097021136,"rawLoad":8077,"rawLoadUser":5531,"rawLoadSystem":2484,"rawLoadNice":0,"rawLoadIdle":21968,"rawLoadIrq":62},{"load":25.038233925128,"loadUser":16.985836824256932,"loadSystem":7.7398763215639335,"loadNice":0,"loadIdle":74.961766074872,"loadIrq":0.3125207793071348,"rawLoad":7531,"rawLoadUser":5109,"rawLoadSystem":2328,"rawLoadNice":0,"rawLoadIdle":22547,"rawLoadIrq":94}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":7,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":33,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":229132255,"rx_dropped":0,"rx_errors":0,"tx_bytes":23700637,"tx_dropped":0,"tx_errors":0,"rx_sec":4811.730460385439,"tx_sec":1067.686027837259,"ms":29888}]', '{"total":10685313024,"free":4778622976,"used":5906690048,"active":5906690048,"available":4778622976,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (209, '2022-03-29 22:57:47', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54589833216,"available":72686317568,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":30.36356141797197,"currentLoadUser":22.10469909315746,"currentLoadSystem":7.859027205276174,"currentLoadNice":0,"currentLoadIdle":69.63643858202802,"currentLoadIrq":0.3998351195383347,"rawCurrentLoad":36831,"rawCurrentLoadUser":26813,"rawCurrentLoadSystem":9533,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":84469,"rawCurrentLoadIrq":485,"cpus":[{"load":32.289647468541574,"loadUser":21.868121036895882,"loadSystem":9.652725301442324,"loadNice":0,"loadIdle":67.71035253145841,"loadIrq":0.7688011302033708,"rawLoad":9828,"rawLoadUser":6656,"rawLoadSystem":2938,"rawLoadNice":0,"rawLoadIdle":20609,"rawLoadIrq":234},{"load":28.218951546221266,"loadUser":20.982305275343148,"loadSystem":7.134116090623449,"loadNice":0,"loadIdle":71.78104845377872,"loadIrq":0.10253018025467174,"rawLoad":8532,"rawLoadUser":6344,"rawLoadSystem":2157,"rawLoadNice":0,"rawLoadIdle":21703,"rawLoadIrq":31},{"load":31.062309829342503,"loadUser":23.04868368831856,"loadSystem":7.907792035983596,"loadNice":0,"loadIdle":68.93769017065749,"loadIrq":0.10583410504034925,"rawLoad":9392,"rawLoadUser":6969,"rawLoadSystem":2391,"rawLoadNice":0,"rawLoadIdle":20844,"rawLoadIrq":32},{"load":29.872992892866545,"loadUser":22.519083969465647,"loadSystem":6.735325085548828,"loadNice":0,"loadIdle":70.12700710713345,"loadIrq":0.6185838378520664,"rawLoad":9079,"rawLoadUser":6844,"rawLoadSystem":2047,"rawLoadNice":0,"rawLoadIdle":21313,"rawLoadIrq":188}]}', '{"ESTABLISHED":27,"CLOSE":0,"TIME_WAIT":7,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":229169325,"rx_dropped":0,"rx_errors":0,"tx_bytes":23708882,"tx_dropped":0,"tx_errors":0,"rx_sec":1185.7088024564996,"tx_sec":263.72185261003074,"ms":31264}]', '{"total":10685313024,"free":4748783616,"used":5936529408,"active":5936529408,"available":4748783616,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (210, '2022-03-29 22:58:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54589833216,"available":72686317568,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":27.11706231824886,"currentLoadUser":19.09876430053411,"currentLoadSystem":7.328372759617709,"currentLoadNice":0,"currentLoadIdle":72.88293768175114,"currentLoadIrq":0.6899252580970395,"rawCurrentLoad":32544,"rawCurrentLoadUser":22921,"rawCurrentLoadSystem":8795,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":87469,"rawCurrentLoadIrq":828,"cpus":[{"load":27.901341123356794,"loadUser":18.20475368476962,"loadSystem":8.607754614261054,"loadNice":0,"loadIdle":72.09865887664321,"loadIrq":1.0888328243261187,"rawLoad":8405,"rawLoadUser":5484,"rawLoadSystem":2593,"rawLoadNice":0,"rawLoadIdle":21719,"rawLoadIrq":328},{"load":25.339396776566574,"loadUser":18.23379923761118,"loadSystem":6.737778372232997,"loadNice":0,"loadIdle":74.66060322343341,"loadIrq":0.36781916672239684,"rawLoad":7578,"rawLoadUser":5453,"rawLoadSystem":2015,"rawLoadNice":0,"rawLoadIdle":22328,"rawLoadIrq":110},{"load":27.941324223852103,"loadUser":21.089118858635587,"loadSystem":6.644562778391775,"loadNice":0,"loadIdle":72.0586757761479,"loadIrq":0.20764258682474296,"rawLoad":8343,"rawLoadUser":6297,"rawLoadSystem":1984,"rawLoadNice":0,"rawLoadIdle":21516,"rawLoadIrq":62},{"load":27.28057362900013,"loadUser":18.878634975434867,"loadSystem":7.313105829239144,"loadNice":0,"loadIdle":72.71942637099986,"loadIrq":1.0888328243261187,"rawLoad":8218,"rawLoadUser":5687,"rawLoadSystem":2203,"rawLoadNice":0,"rawLoadIdle":21906,"rawLoadIrq":328}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":6,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":229220076,"rx_dropped":0,"rx_errors":0,"tx_bytes":23717197,"tx_dropped":0,"tx_errors":0,"rx_sec":1777.1824771509614,"tx_sec":291.17204188115,"ms":28557}]', '{"total":10685313024,"free":4749914112,"used":5935398912,"active":5935398912,"available":4749914112,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (211, '2022-03-29 22:58:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54589833216,"available":72686317568,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":7.687248143337663,"currentLoadUser":4.331102008192627,"currentLoadSystem":3.266227062310587,"currentLoadNice":0,"currentLoadIdle":92.31275185666233,"currentLoadIrq":0.089919072834449,"rawCurrentLoad":9233,"rawCurrentLoadUser":5202,"rawCurrentLoadSystem":3923,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":110875,"rawCurrentLoadIrq":108,"cpus":[{"load":8.261577845008146,"loadUser":4.31197845673061,"loadSystem":3.6902822567239606,"loadNice":0,"loadIdle":91.73842215499185,"loadIrq":0.2593171315535756,"rawLoad":2485,"rawLoadUser":1297,"rawLoadSystem":1110,"rawLoadNice":0,"rawLoadIdle":27594,"rawLoadIrq":78},{"load":7.12976844910878,"loadUser":4.21455938697318,"loadSystem":2.865234049641846,"loadNice":0,"loadIdle":92.87023155089122,"loadIrq":0.04997501249375312,"rawLoad":2140,"rawLoadUser":1265,"rawLoadSystem":860,"rawLoadNice":0,"rawLoadIdle":27875,"rawLoadIrq":15},{"load":7.5502516750558355,"loadUser":4.216807226907564,"loadSystem":3.333444448148272,"loadNice":0,"loadIdle":92.44974832494417,"loadIrq":0,"rawLoad":2265,"rawLoadUser":1265,"rawLoadSystem":1000,"rawLoadNice":0,"rawLoadIdle":27734,"rawLoadIrq":0},{"load":7.806096951524238,"loadUser":4.58104281192737,"loadSystem":3.175079127103115,"loadNice":0,"loadIdle":92.19390304847576,"loadIrq":0.04997501249375312,"rawLoad":2343,"rawLoadUser":1375,"rawLoadSystem":953,"rawLoadNice":0,"rawLoadIdle":27672,"rawLoadIrq":15}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":6,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":229258775,"rx_dropped":0,"rx_errors":0,"tx_bytes":23720741,"tx_dropped":0,"tx_errors":0,"rx_sec":1288.4634592974862,"tx_sec":117.99567171633095,"ms":30035}]', '{"total":10685313024,"free":4757086208,"used":5928226816,"active":5928226816,"available":4757086208,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (212, '2022-03-29 22:59:17', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54591967232,"available":72684183552,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":29.201826665342995,"currentLoadUser":17.981236970118136,"currentLoadSystem":10.600119130348457,"currentLoadNice":0,"currentLoadIdle":70.798173334657,"currentLoadIrq":0.6204705648764023,"rawCurrentLoad":35298,"rawCurrentLoadUser":21735,"rawCurrentLoadSystem":12813,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":85578,"rawCurrentLoadIrq":750,"cpus":[{"load":29.52757201646091,"loadUser":16.151440329218104,"loadSystem":12.243621399176954,"loadNice":0,"loadIdle":70.47242798353909,"loadIrq":1.1325102880658438,"rawLoad":8969,"rawLoadUser":4906,"rawLoadSystem":3719,"rawLoadNice":0,"rawLoadIdle":21406,"rawLoadIrq":344},{"load":26.69152903569526,"loadUser":18.210575386254664,"loadSystem":8.480953649440597,"loadNice":0,"loadIdle":73.30847096430475,"loadIrq":0,"rawLoad":8016,"rawLoadUser":5469,"rawLoadSystem":2547,"rawLoadNice":0,"rawLoadIdle":22016,"rawLoadIrq":0},{"load":30.22229595222296,"loadUser":18.248175182481752,"loadSystem":11.61247511612475,"loadNice":0,"loadIdle":69.77770404777705,"loadIrq":0.36164565361645656,"rawLoad":9109,"rawLoadUser":5500,"rawLoadSystem":3500,"rawLoadNice":0,"rawLoadIdle":21031,"rawLoadIrq":109},{"load":30.34719245606515,"loadUser":19.321441524613405,"loadSystem":10.046490157934649,"loadNice":0,"loadIdle":69.65280754393484,"loadIrq":0.9792607735170958,"rawLoad":9204,"rawLoadUser":5860,"rawLoadSystem":3047,"rawLoadNice":0,"rawLoadIdle":21125,"rawLoadIrq":297}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":6,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":56,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":234670365,"rx_dropped":0,"rx_errors":0,"tx_bytes":23862205,"tx_dropped":0,"tx_errors":0,"rx_sec":175986.66666666666,"tx_sec":4600.455284552845,"ms":30750}]', '{"total":10685313024,"free":4649746432,"used":6035566592,"active":6035566592,"available":4649746432,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (213, '2022-03-29 22:59:50', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54592688128,"available":72683462656,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":27.802457310830004,"currentLoadUser":16.74620999438518,"currentLoadSystem":10.552564653036958,"currentLoadNice":0,"currentLoadIdle":72.19754268917,"currentLoadIrq":0.5036826634078674,"rawCurrentLoad":33671,"rawCurrentLoadUser":20281,"rawCurrentLoadSystem":12780,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":87437,"rawCurrentLoadIrq":610,"cpus":[{"load":28.849755232118802,"loadUser":15.40230640339061,"loadSystem":12.422380655123698,"loadNice":0,"loadIdle":71.1502447678812,"loadIrq":1.0250681736044944,"rawLoad":8781,"rawLoadUser":4688,"rawLoadSystem":3781,"rawLoadNice":0,"rawLoadIdle":21656,"rawLoadIrq":312},{"load":25.905089681646697,"loadUser":17.062677874114765,"loadSystem":8.531338937057383,"loadNice":0,"loadIdle":74.0949103183533,"loadIrq":0.3110728704745516,"rawLoad":7828,"rawLoadUser":5156,"rawLoadSystem":2578,"rawLoadNice":0,"rawLoadIdle":22390,"rawLoadIrq":94},{"load":29.17825453582307,"loadUser":17.640047675804528,"loadSystem":11.276652099059726,"loadNice":0,"loadIdle":70.82174546417693,"loadIrq":0.2615547609588134,"rawLoad":8813,"rawLoadUser":5328,"rawLoadSystem":3406,"rawLoadNice":0,"rawLoadIdle":21391,"rawLoadIrq":79},{"load":27.270322985883833,"loadUser":16.889814539323613,"loadSystem":9.967271645343647,"loadNice":0,"loadIdle":72.72967701411616,"loadIrq":0.41323680121656914,"rawLoad":8249,"rawLoadUser":5109,"rawLoadSystem":3015,"rawLoadNice":0,"rawLoadIdle":22000,"rawLoadIrq":125}]}', '{"ESTABLISHED":31,"CLOSE":0,"TIME_WAIT":10,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":33,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":234832758,"rx_dropped":0,"rx_errors":0,"tx_bytes":23893980,"tx_dropped":0,"tx_errors":0,"rx_sec":4639.004742044221,"tx_sec":907.701536879392,"ms":35006}]', '{"total":10685313024,"free":4745486336,"used":5939826688,"active":5939826688,"available":4745486336,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (214, '2022-03-29 23:00:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54594777088,"available":72681373696,"use":42.89,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":31.64753539354001,"currentLoadUser":19.00117499157786,"currentLoadSystem":11.247052250149956,"currentLoadNice":0,"currentLoadIdle":68.35246460645999,"currentLoadIrq":1.3993081518121986,"rawCurrentLoad":38516,"rawCurrentLoadUser":23125,"rawCurrentLoadSystem":13688,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":83187,"rawCurrentLoadIrq":1703,"cpus":[{"load":34.26464377375654,"loadUser":16.750592898216432,"loadSystem":14.973522627594946,"loadNice":0,"loadIdle":65.73535622624345,"loadIrq":2.540528247945161,"rawLoad":10547,"rawLoadUser":5156,"rawLoadSystem":4609,"rawLoadNice":0,"rawLoadIdle":20234,"rawLoadIrq":782},{"load":28.206662677039695,"loadUser":18.28579027860895,"loadSystem":9.661546645388656,"loadNice":0,"loadIdle":71.7933373229603,"loadIrq":0.2593257530420906,"rawLoad":8484,"rawLoadUser":5500,"rawLoadSystem":2906,"rawLoadNice":0,"rawLoadIdle":21594,"rawLoadIrq":78},{"load":31.33037253082328,"loadUser":20.353307702505635,"loadSystem":10.410314198594724,"loadNice":0,"loadIdle":68.66962746917672,"loadIrq":0.5667506297229219,"rawLoad":9453,"rawLoadUser":6141,"rawLoadSystem":3141,"rawLoadNice":0,"rawLoadIdle":20719,"rawLoadIrq":171},{"load":32.70735524256651,"loadUser":20.631194574856547,"loadSystem":9.885237350026083,"loadNice":0,"loadIdle":67.2926447574335,"loadIrq":2.190923317683881,"rawLoad":10032,"rawLoadUser":6328,"rawLoadSystem":3032,"rawLoadNice":0,"rawLoadIdle":20640,"rawLoadIrq":672}]}', '{"ESTABLISHED":36,"CLOSE":0,"TIME_WAIT":18,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":33,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":235264935,"rx_dropped":0,"rx_errors":0,"tx_bytes":23947866,"tx_dropped":0,"tx_errors":0,"rx_sec":17099.6676426367,"tx_sec":2132.072485558281,"ms":25274}]', '{"total":10685313024,"free":4522283008,"used":6163030016,"active":6163030016,"available":4522283008,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (215, '2022-03-29 23:00:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54595387392,"available":72680763392,"use":42.9,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":22.161670456894768,"currentLoadUser":13.438081455447593,"currentLoadSystem":8.218317138722348,"currentLoadNice":0,"currentLoadIdle":77.83832954310523,"currentLoadIrq":0.5052718627248295,"rawCurrentLoad":26799,"rawCurrentLoadUser":16250,"rawCurrentLoadSystem":9938,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":94126,"rawCurrentLoadIrq":611,"cpus":[{"load":24.26938989952059,"loadUser":12.415446246798451,"loadSystem":10.62257831483549,"loadNice":0,"loadIdle":75.73061010047941,"loadIrq":1.2313653378866487,"rawLoad":7391,"rawLoadUser":3781,"rawLoadSystem":3235,"rawLoadNice":0,"rawLoadIdle":23063,"rawLoadIrq":375},{"load":20.81299192985952,"loadUser":13.596360134170238,"loadSystem":7.110358340805685,"loadNice":0,"loadIdle":79.18700807014048,"loadIrq":0.10627345488359735,"rawLoad":6267,"rawLoadUser":4094,"rawLoadSystem":2141,"rawLoadNice":0,"rawLoadIdle":23844,"rawLoadIrq":32},{"load":21.824817518248175,"loadUser":13.788984737889848,"loadSystem":7.826808228268082,"loadNice":0,"loadIdle":78.17518248175183,"loadIrq":0.20902455209024554,"rawLoad":6578,"rawLoadUser":4156,"rawLoadSystem":2359,"rawLoadNice":0,"rawLoadIdle":23562,"rawLoadIrq":63},{"load":21.71740569159497,"loadUser":13.960953011250826,"loadSystem":7.28987425545996,"loadNice":0,"loadIdle":78.28259430840502,"loadIrq":0.46657842488418266,"rawLoad":6563,"rawLoadUser":4219,"rawLoadSystem":2203,"rawLoadNice":0,"rawLoadIdle":23657,"rawLoadIrq":141}]}', '{"ESTABLISHED":32,"CLOSE":0,"TIME_WAIT":23,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":27,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":235373147,"rx_dropped":0,"rx_errors":0,"tx_bytes":23968649,"tx_dropped":0,"tx_errors":0,"rx_sec":3675.9290712684287,"tx_sec":705.9922549086216,"ms":29438}]', '{"total":10685313024,"free":4622913536,"used":6062399488,"active":6062399488,"available":4622913536,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (216, '2022-03-29 23:01:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54596976640,"available":72679174144,"use":42.9,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":26.655615347450144,"currentLoadUser":16.492011395631675,"currentLoadSystem":9.500524798827117,"currentLoadNice":0,"currentLoadIdle":73.34438465254985,"currentLoadIrq":0.6630791529913532,"rawCurrentLoad":31999,"rawCurrentLoadUser":19798,"rawCurrentLoadSystem":11405,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":88047,"rawCurrentLoadIrq":796,"cpus":[{"load":29.529159094663804,"loadUser":16.418304972740792,"loadSystem":11.614075664959524,"loadNice":0,"loadIdle":70.47084090533619,"loadIrq":1.496778456963489,"rawLoad":8937,"rawLoadUser":4969,"rawLoadSystem":3515,"rawLoadNice":0,"rawLoadIdle":21328,"rawLoadIrq":453},{"load":23.59836559715989,"loadUser":14.967512894366669,"loadSystem":8.47679013999598,"loadNice":0,"loadIdle":76.40163440284012,"loadIrq":0.15406256279724026,"rawLoad":7046,"rawLoadUser":4469,"rawLoadSystem":2531,"rawLoadNice":0,"rawLoadIdle":22812,"rawLoadIrq":46},{"load":26.073291427042932,"loadUser":16.249832820649992,"loadSystem":9.509161428380366,"loadNice":0,"loadIdle":73.92670857295707,"loadIrq":0.3142971780125719,"rawLoad":7798,"rawLoadUser":4860,"rawLoadSystem":2844,"rawLoadNice":0,"rawLoadIdle":22110,"rawLoadIrq":94},{"load":27.379643511577545,"loadUser":18.32417124770948,"loadSystem":8.379143761452607,"loadNice":0,"loadIdle":72.62035648842246,"loadIrq":0.6763285024154589,"rawLoad":8218,"rawLoadUser":5500,"rawLoadSystem":2515,"rawLoadNice":0,"rawLoadIdle":21797,"rawLoadIrq":203}]}', '{"ESTABLISHED":34,"CLOSE":0,"TIME_WAIT":31,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":235555608,"rx_dropped":0,"rx_errors":0,"tx_bytes":23994874,"tx_dropped":0,"tx_errors":0,"rx_sec":6196.882217090069,"tx_sec":890.6738214916452,"ms":29444}]', '{"total":10685313024,"free":4629127168,"used":6056185856,"active":6056185856,"available":4629127168,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (217, '2022-03-29 23:01:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54596911104,"available":72679239680,"use":42.9,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.442371752165223,"currentLoadUser":3.565956029313791,"currentLoadSystem":2.811459027315123,"currentLoadNice":0,"currentLoadIdle":93.55762824783478,"currentLoadIrq":0.06495669553630912,"rawCurrentLoad":7736,"rawCurrentLoadUser":4282,"rawCurrentLoadSystem":3376,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112344,"rawCurrentLoadIrq":78,"cpus":[{"load":7.178514376996806,"loadUser":3.381256656017039,"loadSystem":3.640841320553781,"loadNice":0,"loadIdle":92.8214856230032,"loadIrq":0.1564164004259851,"rawLoad":2157,"rawLoadUser":1016,"rawLoadSystem":1094,"rawLoadNice":0,"rawLoadIdle":27891,"rawLoadIrq":47},{"load":6.196488656428024,"loadUser":3.384748642435953,"loadSystem":2.7584368857647332,"loadNice":0,"loadIdle":93.80351134357198,"loadIrq":0.05330312822733784,"rawLoad":1860,"rawLoadUser":1016,"rawLoadSystem":828,"rawLoadNice":0,"rawLoadIdle":28157,"rawLoadIrq":16},{"load":6.140467781701872,"loadUser":3.435063636969414,"loadSystem":2.655427467181982,"loadNice":0,"loadIdle":93.85953221829813,"loadIrq":0.049976677550476446,"rawLoad":1843,"rawLoadUser":1031,"rawLoadSystem":797,"rawLoadNice":0,"rawLoadIdle":28171,"rawLoadIrq":15},{"load":6.253124895836805,"loadUser":4.0631978934035535,"loadSystem":2.1899270024332522,"loadNice":0,"loadIdle":93.7468751041632,"loadIrq":0,"rawLoad":1876,"rawLoadUser":1219,"rawLoadSystem":657,"rawLoadNice":0,"rawLoadIdle":28125,"rawLoadIrq":0}]}', '{"ESTABLISHED":28,"CLOSE":0,"TIME_WAIT":29,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":235603371,"rx_dropped":0,"rx_errors":0,"tx_bytes":24005326,"tx_dropped":0,"tx_errors":0,"rx_sec":1589.5038104429432,"tx_sec":347.8318746048121,"ms":30049}]', '{"total":10685313024,"free":4676263936,"used":6009049088,"active":6009049088,"available":4676263936,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (218, '2022-03-29 23:02:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54596976640,"available":72679174144,"use":42.9,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.531734132933534,"currentLoadUser":3.577377977677828,"currentLoadSystem":2.901882392137265,"currentLoadNice":0,"currentLoadIdle":93.46826586706646,"currentLoadIrq":0.05247376311844078,"rawCurrentLoad":7842,"rawCurrentLoadUser":4295,"rawCurrentLoadSystem":3484,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112218,"rawCurrentLoadIrq":63,"cpus":[{"load":7.228675075714714,"loadUser":3.587712583618997,"loadSystem":3.484540885945352,"loadNice":0,"loadIdle":92.77132492428528,"loadIrq":0.1564216061503644,"rawLoad":2172,"rawLoadUser":1078,"rawLoadSystem":1047,"rawLoadNice":0,"rawLoadIdle":27875,"rawLoadIrq":47},{"load":5.7239954687812356,"loadUser":3.0685680015992536,"loadSystem":2.6021190111281403,"loadNice":0,"loadIdle":94.27600453121876,"loadIrq":0.053308456053841546,"rawLoad":1718,"rawLoadUser":921,"rawLoadSystem":781,"rawLoadNice":0,"rawLoadIdle":28296,"rawLoadIrq":16},{"load":6.926666666666667,"loadUser":3.4366666666666665,"loadSystem":3.49,"loadNice":0,"loadIdle":93.07333333333332,"loadIrq":0,"rawLoad":2078,"rawLoadUser":1031,"rawLoadSystem":1047,"rawLoadNice":0,"rawLoadIdle":27922,"rawLoadIrq":0},{"load":6.246874895829861,"loadUser":4.216807226907564,"loadSystem":2.0300676689222974,"loadNice":0,"loadIdle":93.75312510417014,"loadIrq":0,"rawLoad":1874,"rawLoadUser":1265,"rawLoadSystem":609,"rawLoadNice":0,"rawLoadIdle":28125,"rawLoadIrq":0}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":22,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":235660987,"rx_dropped":0,"rx_errors":0,"tx_bytes":24014162,"tx_dropped":0,"tx_errors":0,"rx_sec":1922.8407422240023,"tx_sec":294.8871979708984,"ms":29964}]', '{"total":10685313024,"free":4661301248,"used":6024011776,"active":6024011776,"available":4661301248,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (219, '2022-03-29 23:02:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54597042176,"available":72679108608,"use":42.9,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.103481874432665,"currentLoadUser":3.5668185111468285,"currentLoadSystem":2.47253891188301,"currentLoadNice":0,"currentLoadIdle":93.89651812556733,"currentLoadIrq":0.06412445140282648,"rawCurrentLoad":7329,"rawCurrentLoadUser":4283,"rawCurrentLoadSystem":2969,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112750,"rawCurrentLoadIrq":77,"cpus":[{"load":6.912381079103187,"loadUser":3.6391457654181356,"loadSystem":3.0669948772536757,"loadNice":0,"loadIdle":93.0876189208968,"loadIrq":0.20624043643137518,"rawLoad":2078,"rawLoadUser":1094,"rawLoadSystem":922,"rawLoadNice":0,"rawLoadIdle":27984,"rawLoadIrq":62},{"load":5.780057967151947,"loadUser":3.594629709831096,"loadSystem":2.1354565746077223,"loadNice":0,"loadIdle":94.21994203284805,"loadIrq":0.049971682713129226,"rawLoad":1735,"rawLoadUser":1079,"rawLoadSystem":641,"rawLoadNice":0,"rawLoadIdle":28282,"rawLoadIrq":15},{"load":5.9366666666666665,"loadUser":3.386666666666667,"loadSystem":2.55,"loadNice":0,"loadIdle":94.06333333333333,"loadIrq":0,"rawLoad":1781,"rawLoadUser":1016,"rawLoadSystem":765,"rawLoadNice":0,"rawLoadIdle":28219,"rawLoadIrq":0},{"load":5.783333333333333,"loadUser":3.646666666666667,"loadSystem":2.1366666666666667,"loadNice":0,"loadIdle":94.21666666666667,"loadIrq":0,"rawLoad":1735,"rawLoadUser":1094,"rawLoadSystem":641,"rawLoadNice":0,"rawLoadIdle":28265,"rawLoadIrq":0}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":17,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":235697737,"rx_dropped":0,"rx_errors":0,"tx_bytes":24018121,"tx_dropped":0,"tx_errors":0,"rx_sec":1224.877512248775,"tx_sec":131.9534713195347,"ms":30003}]', '{"total":10685313024,"free":4660346880,"used":6024966144,"active":6024966144,"available":4660346880,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (220, '2022-03-29 23:03:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54597046272,"available":72679104512,"use":42.9,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.19878370396253,"currentLoadUser":3.59980366219915,"currentLoadSystem":2.482508464987812,"currentLoadNice":0,"currentLoadIdle":93.80121629603747,"currentLoadIrq":0.11647157677556759,"rawCurrentLoad":7451,"rawCurrentLoadUser":4327,"rawCurrentLoadSystem":2984,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112750,"rawCurrentLoadIrq":140,"cpus":[{"load":6.997742663656885,"loadUser":3.6283362103306334,"loadSystem":3.0075687159739743,"loadNice":0,"loadIdle":93.00225733634312,"loadIrq":0.36183773735227726,"rawLoad":2108,"rawLoadUser":1093,"rawLoadSystem":906,"rawLoadNice":0,"rawLoadIdle":28016,"rawLoadIrq":109},{"load":5.463934699317008,"loadUser":3.4349491920706314,"loadSystem":2.0289855072463765,"loadNice":0,"loadIdle":94.53606530068299,"loadIrq":0,"rawLoad":1640,"rawLoadUser":1031,"rawLoadSystem":609,"rawLoadNice":0,"rawLoadIdle":28375,"rawLoadIrq":0},{"load":6.400053278279112,"loadUser":3.6928507209217143,"loadSystem":2.6539242782458126,"loadNice":0,"loadIdle":93.59994672172088,"loadIrq":0.0532782791115847,"rawLoad":1922,"rawLoadUser":1109,"rawLoadSystem":797,"rawLoadNice":0,"rawLoadIdle":28109,"rawLoadIrq":16},{"load":5.930538443608271,"loadUser":3.642902334254604,"loadSystem":2.237687722686557,"loadNice":0,"loadIdle":94.06946155639173,"loadIrq":0.04994838666711065,"rawLoad":1781,"rawLoadUser":1094,"rawLoadSystem":672,"rawLoadNice":0,"rawLoadIdle":28250,"rawLoadIrq":15}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":7,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":235733255,"rx_dropped":0,"rx_errors":0,"tx_bytes":24025606,"tx_dropped":0,"tx_errors":0,"rx_sec":1182.7505827505827,"tx_sec":249.25074925074924,"ms":30030}]', '{"total":10685313024,"free":4660592640,"used":6024720384,"active":6024720384,"available":4660592640,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (221, '2022-03-29 23:03:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54597201920,"available":72678948864,"use":42.9,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.114446044842602,"currentLoadUser":3.6167148173742185,"currentLoadSystem":2.4586001049047117,"currentLoadNice":0,"currentLoadIdle":93.88555395515739,"currentLoadIrq":0.039131122563671336,"rawCurrentLoad":7344,"rawCurrentLoadUser":4344,"rawCurrentLoadSystem":2953,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112765,"rawCurrentLoadIrq":47,"cpus":[{"load":6.812360709177394,"loadUser":3.6922462828061073,"loadSystem":2.96377607025247,"loadNice":0,"loadIdle":93.18763929082262,"loadIrq":0.15633835611881713,"rawLoad":2048,"rawLoadUser":1110,"rawLoadSystem":891,"rawLoadNice":0,"rawLoadIdle":28015,"rawLoadIrq":47},{"load":5.9336998167582875,"loadUser":3.5382308845577213,"loadSystem":2.3954689322005662,"loadNice":0,"loadIdle":94.06630018324171,"loadIrq":0,"rawLoad":1781,"rawLoadUser":1062,"rawLoadSystem":719,"rawLoadNice":0,"rawLoadIdle":28234,"rawLoadIrq":0},{"load":5.986807036247335,"loadUser":3.748001066098081,"loadSystem":2.2388059701492535,"loadNice":0,"loadIdle":94.01319296375267,"loadIrq":0,"rawLoad":1797,"rawLoadUser":1125,"rawLoadSystem":672,"rawLoadNice":0,"rawLoadIdle":28219,"rawLoadIrq":0},{"load":5.723804764284524,"loadUser":3.4882558720639683,"loadSystem":2.2355488922205566,"loadNice":0,"loadIdle":94.27619523571548,"loadIrq":0,"rawLoad":1718,"rawLoadUser":1047,"rawLoadSystem":671,"rawLoadNice":0,"rawLoadIdle":28297,"rawLoadIrq":0}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":5,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":235769154,"rx_dropped":0,"rx_errors":0,"tx_bytes":24029398,"tx_dropped":0,"tx_errors":0,"rx_sec":1197.0722598286038,"tx_sec":126.44636366667778,"ms":29989}]', '{"total":10685313024,"free":4651929600,"used":6033391616,"active":6033399808,"available":4651909120,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (222, '2022-03-29 23:04:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54599790592,"available":72676360192,"use":42.9,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.80565041395279,"currentLoadUser":3.760557045526478,"currentLoadSystem":2.9926204794189672,"currentLoadNice":0,"currentLoadIdle":93.19434958604721,"currentLoadIrq":0.0524728890073462,"rawCurrentLoad":8171,"rawCurrentLoadUser":4515,"rawCurrentLoadSystem":3593,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":111891,"rawCurrentLoadIrq":63,"cpus":[{"load":7.2255874326033425,"loadUser":3.37815349796978,"loadSystem":3.6910071224123016,"loadNice":0,"loadIdle":92.77441256739665,"loadIrq":0.15642681222126073,"rawLoad":2171,"rawLoadUser":1015,"rawLoadSystem":1109,"rawLoadNice":0,"rawLoadIdle":27875,"rawLoadIrq":47},{"load":6.406666666666666,"loadUser":3.9066666666666667,"loadSystem":2.5,"loadNice":0,"loadIdle":93.59333333333333,"loadIrq":0,"rawLoad":1922,"rawLoadUser":1172,"rawLoadSystem":750,"rawLoadNice":0,"rawLoadIdle":28078,"rawLoadIrq":0},{"load":7.083333333333333,"loadUser":3.8033333333333337,"loadSystem":3.2800000000000002,"loadNice":0,"loadIdle":92.91666666666667,"loadIrq":0,"rawLoad":2125,"rawLoadUser":1141,"rawLoadSystem":984,"rawLoadNice":0,"rawLoadIdle":27875,"rawLoadIrq":0},{"load":6.506529850746269,"loadUser":3.9545575692963757,"loadSystem":2.4986673773987205,"loadNice":0,"loadIdle":93.49347014925374,"loadIrq":0.053304904051172705,"rawLoad":1953,"rawLoadUser":1187,"rawLoadSystem":750,"rawLoadNice":0,"rawLoadIdle":28063,"rawLoadIrq":16}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":4,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":235811970,"rx_dropped":0,"rx_errors":0,"tx_bytes":24034254,"tx_dropped":0,"tx_errors":0,"rx_sec":1427.81872144596,"tx_sec":161.9368392970287,"ms":29987}]', '{"total":10685313024,"free":4645621760,"used":6039691264,"active":6039691264,"available":4645621760,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":59768832,"swapfree":3505389568}'), (223, '2022-03-29 23:04:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54599790592,"available":72676360192,"use":42.9,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":7.14339236206509,"currentLoadUser":3.2786339302811567,"currentLoadSystem":3.773176478424124,"currentLoadNice":0,"currentLoadIdle":92.8566076379349,"currentLoadIrq":0.09158195335980884,"rawCurrentLoad":8580,"rawCurrentLoadUser":3938,"rawCurrentLoadSystem":4532,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":111531,"rawCurrentLoadIrq":110,"cpus":[{"load":7.791992025253365,"loadUser":3.0137896660574848,"loadSystem":4.465858115966107,"loadNice":0,"loadIdle":92.20800797474664,"loadIrq":0.3123442432297724,"rawLoad":2345,"rawLoadUser":907,"rawLoadSystem":1344,"rawLoadNice":0,"rawLoadIdle":27750,"rawLoadIrq":94},{"load":6.25,"loadUser":3.5933333333333333,"loadSystem":2.6566666666666667,"loadNice":0,"loadIdle":93.75,"loadIrq":0,"rawLoad":1875,"rawLoadUser":1078,"rawLoadSystem":797,"rawLoadNice":0,"rawLoadIdle":28125,"rawLoadIrq":0},{"load":7.290000000000001,"loadUser":3.2266666666666666,"loadSystem":4.0633333333333335,"loadNice":0,"loadIdle":92.71000000000001,"loadIrq":0,"rawLoad":2187,"rawLoadUser":968,"rawLoadSystem":1219,"rawLoadNice":0,"rawLoadIdle":27813,"rawLoadIrq":0},{"load":7.239472281449894,"loadUser":3.28158315565032,"loadSystem":3.904584221748401,"loadNice":0,"loadIdle":92.76052771855011,"loadIrq":0.053304904051172705,"rawLoad":2173,"rawLoadUser":985,"rawLoadSystem":1172,"rawLoadNice":0,"rawLoadIdle":27843,"rawLoadIrq":16}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":4,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":235851820,"rx_dropped":0,"rx_errors":0,"tx_bytes":24038236,"tx_dropped":0,"tx_errors":0,"rx_sec":1327.271516120437,"tx_sec":132.62723154809484,"ms":30024}]', '{"total":10685313024,"free":4781895680,"used":5903417344,"active":5903417344,"available":4781895680,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":61865984,"swapfree":3503292416}'), (224, '2022-03-29 23:05:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54599790592,"available":72676360192,"use":42.9,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.322537673799017,"currentLoadUser":3.447672966447423,"currentLoadSystem":2.784114561651819,"currentLoadNice":0,"currentLoadIdle":93.67746232620098,"currentLoadIrq":0.0907501456997752,"rawCurrentLoad":7594,"rawCurrentLoadUser":4141,"rawCurrentLoadSystem":3344,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112516,"rawCurrentLoadIrq":109,"cpus":[{"load":6.898269620379288,"loadUser":3.371085057623966,"loadSystem":3.1651665614932414,"loadNice":0,"loadIdle":93.1017303796207,"loadIrq":0.3620180012620811,"rawLoad":2077,"rawLoadUser":1015,"rawLoadSystem":953,"rawLoadNice":0,"rawLoadIdle":28032,"rawLoadIrq":109},{"load":5.833333333333333,"loadUser":3.283333333333333,"loadSystem":2.55,"loadNice":0,"loadIdle":94.16666666666667,"loadIrq":0,"rawLoad":1750,"rawLoadUser":985,"rawLoadSystem":765,"rawLoadNice":0,"rawLoadIdle":28250,"rawLoadIrq":0},{"load":6.306456451451618,"loadUser":3.439885337155428,"loadSystem":2.8665711142961903,"loadNice":0,"loadIdle":93.69354354854839,"loadIrq":0,"rawLoad":1892,"rawLoadUser":1032,"rawLoadSystem":860,"rawLoadNice":0,"rawLoadIdle":28109,"rawLoadIrq":0},{"load":6.25,"loadUser":3.6966666666666668,"loadSystem":2.5533333333333337,"loadNice":0,"loadIdle":93.75,"loadIrq":0,"rawLoad":1875,"rawLoadUser":1109,"rawLoadSystem":766,"rawLoadNice":0,"rawLoadIdle":28125,"rawLoadIrq":0}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":5,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":235886120,"rx_dropped":0,"rx_errors":0,"tx_bytes":24042308,"tx_dropped":0,"tx_errors":0,"rx_sec":1143.4857981064142,"tx_sec":135.75143352446995,"ms":29996}]', '{"total":10685313024,"free":4767322112,"used":5917990912,"active":5917990912,"available":4767322112,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":61865984,"swapfree":3503292416}'), (225, '2022-03-29 23:05:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54599778304,"available":72676372480,"use":42.9,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":7.082023387727265,"currentLoadUser":3.898231781359682,"currentLoadSystem":3.0407372290699803,"currentLoadNice":0,"currentLoadIdle":92.91797661227274,"currentLoadIrq":0.143054377297603,"rawCurrentLoad":8515,"rawCurrentLoadUser":4687,"rawCurrentLoadSystem":3656,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":111719,"rawCurrentLoadIrq":172,"cpus":[{"load":8.126014509557095,"loadUser":3.312684268062411,"loadSystem":4.243548547387949,"loadNice":0,"loadIdle":91.8739854904429,"loadIrq":0.5697816941067347,"rawLoad":2453,"rawLoadUser":1000,"rawLoadSystem":1281,"rawLoadNice":0,"rawLoadIdle":27734,"rawLoadIrq":172},{"load":6.246668443496802,"loadUser":3.591417910447761,"loadSystem":2.6552505330490406,"loadNice":0,"loadIdle":93.7533315565032,"loadIrq":0,"rawLoad":1875,"rawLoadUser":1078,"rawLoadSystem":797,"rawLoadNice":0,"rawLoadIdle":28141,"rawLoadIrq":0},{"load":7.233050141595869,"loadUser":4.527736131934033,"loadSystem":2.7053140096618358,"loadNice":0,"loadIdle":92.76694985840413,"loadIrq":0,"rawLoad":2171,"rawLoadUser":1359,"rawLoadSystem":812,"rawLoadNice":0,"rawLoadIdle":27844,"rawLoadIrq":0},{"load":6.7164179104477615,"loadUser":4.164445628997868,"loadSystem":2.5519722814498937,"loadNice":0,"loadIdle":93.28358208955224,"loadIrq":0,"rawLoad":2016,"rawLoadUser":1250,"rawLoadSystem":766,"rawLoadNice":0,"rawLoadIdle":28000,"rawLoadIrq":0}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":5,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":235924637,"rx_dropped":0,"rx_errors":0,"tx_bytes":24046049,"tx_dropped":0,"tx_errors":0,"rx_sec":1283.4721759413528,"tx_sec":124.6584471842719,"ms":30010}]', '{"total":10685313024,"free":4728598528,"used":5956714496,"active":5956714496,"available":4728598528,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":61865984,"swapfree":3503292416}'), (226, '2022-03-29 23:06:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54599860224,"available":72676290560,"use":42.9,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.877725623356304,"currentLoadUser":3.8225307100769,"currentLoadSystem":2.9253636938646426,"currentLoadNice":0,"currentLoadIdle":93.1222743766437,"currentLoadIrq":0.1298312194147608,"rawCurrentLoad":8264,"rawCurrentLoadUser":4593,"rawCurrentLoadSystem":3515,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":111892,"rawCurrentLoadIrq":156,"cpus":[{"load":7.571784232365145,"loadUser":3.47551867219917,"loadSystem":3.6813278008298758,"loadNice":0,"loadIdle":92.42821576763485,"loadIrq":0.4149377593360996,"rawLoad":2281,"rawLoadUser":1047,"rawLoadSystem":1109,"rawLoadNice":0,"rawLoadIdle":27844,"rawLoadIrq":125},{"load":6.3533333333333335,"loadUser":3.54,"loadSystem":2.8133333333333335,"loadNice":0,"loadIdle":93.64666666666666,"loadIrq":0,"rawLoad":1906,"rawLoadUser":1062,"rawLoadSystem":844,"rawLoadNice":0,"rawLoadIdle":28094,"rawLoadIrq":0},{"load":6.510000000000001,"loadUser":4.01,"loadSystem":2.5,"loadNice":0,"loadIdle":93.49,"loadIrq":0,"rawLoad":1953,"rawLoadUser":1203,"rawLoadSystem":750,"rawLoadNice":0,"rawLoadIdle":28047,"rawLoadIrq":0},{"load":7.072691552062868,"loadUser":4.26559222137125,"loadSystem":2.703872664912923,"loadNice":0,"loadIdle":92.92730844793712,"loadIrq":0.10322666577869534,"rawLoad":2124,"rawLoadUser":1281,"rawLoadSystem":812,"rawLoadNice":0,"rawLoadIdle":27907,"rawLoadIrq":31}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":5,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":235987996,"rx_dropped":0,"rx_errors":0,"tx_bytes":24060091,"tx_dropped":0,"tx_errors":0,"rx_sec":2110.4190260475652,"tx_sec":467.7236693091733,"ms":30022}]', '{"total":10685313024,"free":4694855680,"used":5990457344,"active":5990457344,"available":4694855680,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":61865984,"swapfree":3503292416}'), (227, '2022-03-29 23:06:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54599827456,"available":72676323328,"use":42.9,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.2609318518765305,"currentLoadUser":3.6447835285102697,"currentLoadSystem":2.5636754343589145,"currentLoadNice":0,"currentLoadIdle":93.73906814812347,"currentLoadIrq":0.0524728890073462,"rawCurrentLoad":7517,"rawCurrentLoadUser":4376,"rawCurrentLoadSystem":3078,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112545,"rawCurrentLoadIrq":63,"cpus":[{"load":6.812360709177394,"loadUser":3.795363070884476,"loadSystem":2.807437714133653,"loadNice":0,"loadIdle":93.18763929082262,"loadIrq":0.20955992415926553,"rawLoad":2048,"rawLoadUser":1141,"rawLoadSystem":844,"rawLoadNice":0,"rawLoadIdle":28015,"rawLoadIrq":63},{"load":6.043333333333333,"loadUser":3.6999999999999997,"loadSystem":2.3433333333333333,"loadNice":0,"loadIdle":93.95666666666666,"loadIrq":0,"rawLoad":1813,"rawLoadUser":1110,"rawLoadSystem":703,"rawLoadNice":0,"rawLoadIdle":28187,"rawLoadIrq":0},{"load":6.353545118170606,"loadUser":3.4367812260408677,"loadSystem":2.9167638921297376,"loadNice":0,"loadIdle":93.6464548818294,"loadIrq":0,"rawLoad":1906,"rawLoadUser":1031,"rawLoadSystem":875,"rawLoadNice":0,"rawLoadIdle":28093,"rawLoadIrq":0},{"load":5.833333333333333,"loadUser":3.646666666666667,"loadSystem":2.1866666666666665,"loadNice":0,"loadIdle":94.16666666666667,"loadIrq":0,"rawLoad":1750,"rawLoadUser":1094,"rawLoadSystem":656,"rawLoadNice":0,"rawLoadIdle":28250,"rawLoadIrq":0}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":5,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":22,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":236021749,"rx_dropped":0,"rx_errors":0,"tx_bytes":24063662,"tx_dropped":0,"tx_errors":0,"rx_sec":1126.2262262262263,"tx_sec":119.15248581915249,"ms":29970}]', '{"total":10685313024,"free":4727713792,"used":5957599232,"active":5957599232,"available":4727713792,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":61865984,"swapfree":3503292416}'), (228, '2022-03-29 23:07:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54599827456,"available":72676323328,"use":42.9,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":7.156333895755239,"currentLoadUser":3.6621146509521,"currentLoadSystem":3.337960153931828,"currentLoadNice":0,"currentLoadIdle":92.84366610424476,"currentLoadIrq":0.15625909087131068,"rawCurrentLoad":8610,"rawCurrentLoadUser":4406,"rawCurrentLoadSystem":4016,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":111703,"rawCurrentLoadIrq":188,"cpus":[{"load":8.339965512667463,"loadUser":3.9361984348056773,"loadSystem":3.9892558694787104,"loadNice":0,"loadIdle":91.66003448733254,"loadIrq":0.41451120838307465,"rawLoad":2515,"rawLoadUser":1187,"rawLoadSystem":1203,"rawLoadNice":0,"rawLoadIdle":27641,"rawLoadIrq":125},{"load":6.449895164242686,"loadUser":3.6908842812926417,"loadSystem":2.705760974473325,"loadNice":0,"loadIdle":93.55010483575731,"loadIrq":0.0532499084767198,"rawLoad":1938,"rawLoadUser":1109,"rawLoadSystem":813,"rawLoadNice":0,"rawLoadIdle":28109,"rawLoadIrq":16},{"load":6.712839637719766,"loadUser":3.436334576451785,"loadSystem":3.2765050612679807,"loadNice":0,"loadIdle":93.28716036228023,"loadIrq":0,"rawLoad":2016,"rawLoadUser":1032,"rawLoadSystem":984,"rawLoadNice":0,"rawLoadIdle":28016,"rawLoadIrq":0},{"load":7.11815945209123,"loadUser":3.5840148946073542,"loadSystem":3.3778841678303078,"loadNice":0,"loadIdle":92.88184054790877,"loadIrq":0.1562603896535674,"rawLoad":2141,"rawLoadUser":1078,"rawLoadSystem":1016,"rawLoadNice":0,"rawLoadIdle":27937,"rawLoadIrq":47}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":4,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":22,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":236064455,"rx_dropped":0,"rx_errors":0,"tx_bytes":24067665,"tx_dropped":0,"tx_errors":0,"rx_sec":1402.6340854599796,"tx_sec":131.4743652905048,"ms":30447}]', '{"total":10685313024,"free":4681875456,"used":6003437568,"active":6003437568,"available":4681875456,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":61865984,"swapfree":3503292416}'), (229, '2022-03-29 23:07:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":54607294464,"available":72668856320,"use":42.9,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":22.80785816962147,"currentLoadUser":14.650628686615006,"currentLoadSystem":7.344315384234093,"currentLoadNice":0,"currentLoadIdle":77.19214183037853,"currentLoadIrq":0.8129140987723675,"rawCurrentLoad":27608,"rawCurrentLoadUser":17734,"rawCurrentLoadSystem":8890,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":93438,"rawCurrentLoadIrq":984,"cpus":[{"load":24.961534684257046,"loadUser":13.605264019379973,"loadSystem":9.61796575768488,"loadNice":0,"loadIdle":75.03846531574295,"loadIrq":1.7383049071921957,"rawLoad":7625,"rawLoadUser":4156,"rawLoadSystem":2938,"rawLoadNice":0,"rawLoadIdle":22922,"rawLoadIrq":531},{"load":20.42445612401038,"loadUser":14.553256603020426,"loadSystem":5.714855964340363,"loadNice":0,"loadIdle":79.57554387598962,"loadIrq":0.15634355664959085,"rawLoad":6140,"rawLoadUser":4375,"rawLoadSystem":1718,"rawLoadNice":0,"rawLoadIdle":23922,"rawLoadIrq":47},{"load":23.135786928147876,"loadUser":15.52655116440852,"loadSystem":7.039454069632624,"loadNice":0,"loadIdle":76.86421307185212,"loadIrq":0.5697816941067347,"rawLoad":6984,"rawLoadUser":4687,"rawLoadSystem":2125,"rawLoadNice":0,"rawLoadIdle":23203,"rawLoadIrq":172},{"load":22.674380165289257,"loadUser":14.92892561983471,"loadSystem":6.971900826446281,"loadNice":0,"loadIdle":77.32561983471075,"loadIrq":0.7735537190082644,"rawLoad":6859,"rawLoadUser":4516,"rawLoadSystem":2109,"rawLoadNice":0,"rawLoadIdle":23391,"rawLoadIrq":234}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":6,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":40,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":236140291,"rx_dropped":0,"rx_errors":0,"tx_bytes":24091043,"tx_dropped":0,"tx_errors":0,"rx_sec":2556.5856454168493,"tx_sec":788.1198799851667,"ms":29663}]', '{"total":10685313024,"free":4632748032,"used":6052564992,"active":6052564992,"available":4632748032,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":3565158400,"swapused":61865984,"swapfree":3503292416}'), (230, '2022-03-29 23:08:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56225603584,"available":71050547200,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":15.133422890027695,"currentLoadUser":9.070102990198517,"currentLoadSystem":5.520175133091199,"currentLoadNice":0,"currentLoadIdle":84.86657710997231,"currentLoadIrq":0.5431447667379803,"rawCurrentLoad":18250,"rawCurrentLoadUser":10938,"rawCurrentLoadSystem":6657,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":102344,"rawCurrentLoadIrq":655,"cpus":[{"load":17.18239159869225,"loadUser":8.566427793005516,"loadSystem":7.635150754598594,"loadNice":0,"loadIdle":82.81760840130775,"loadIrq":0.980813051088141,"rawLoad":5203,"rawLoadUser":2594,"rawLoadSystem":2312,"rawLoadNice":0,"rawLoadIdle":25078,"rawLoadIrq":297},{"load":12.603333333333333,"loadUser":8.803333333333335,"loadSystem":3.75,"loadNice":0,"loadIdle":87.39666666666666,"loadIrq":0.05,"rawLoad":3781,"rawLoadUser":2641,"rawLoadSystem":1125,"rawLoadNice":0,"rawLoadIdle":26219,"rawLoadIrq":15},{"load":14.92611821086262,"loadUser":9.464856230031948,"loadSystem":5.254925452609158,"loadNice":0,"loadIdle":85.07388178913739,"loadIrq":0.20633652822151224,"rawLoad":4485,"rawLoadUser":2844,"rawLoadSystem":1579,"rawLoadNice":0,"rawLoadIdle":25563,"rawLoadIrq":62},{"load":15.79712539236742,"loadUser":9.44655542706096,"loadSystem":5.422104741450521,"loadNice":0,"loadIdle":84.20287460763258,"loadIrq":0.9284652238559392,"rawLoad":4781,"rawLoadUser":2859,"rawLoadSystem":1641,"rawLoadNice":0,"rawLoadIdle":25484,"rawLoadIrq":281}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":6,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":36,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":236387311,"rx_dropped":0,"rx_errors":0,"tx_bytes":24115196,"tx_dropped":0,"tx_errors":0,"rx_sec":8163.521596880267,"tx_sec":798.2087973825969,"ms":30259}]', '{"total":10685313024,"free":4618907648,"used":6066405376,"active":6066405376,"available":4618907648,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":61865984,"swapfree":4584374272}'), (231, '2022-03-29 23:08:47', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56225984512,"available":71050166272,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":28.439259855189057,"currentLoadUser":18.996995419245735,"currentLoadSystem":8.209237033510105,"currentLoadNice":0,"currentLoadIdle":71.56074014481094,"currentLoadIrq":1.233027402433218,"rawCurrentLoad":34643,"rawCurrentLoadUser":23141,"rawCurrentLoadSystem":10000,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":87171,"rawCurrentLoadIrq":1502,"cpus":[{"load":30.08961620884473,"loadUser":17.40372751477369,"loadSystem":10.351321514384052,"loadNice":0,"loadIdle":69.91038379115527,"loadIrq":2.3345671796869927,"rawLoad":9267,"rawLoadUser":5360,"rawLoadSystem":3188,"rawLoadNice":0,"rawLoadIdle":21531,"rawLoadIrq":719},{"load":25.84523414148124,"loadUser":19.770840252407837,"loadSystem":5.96811690468283,"loadNice":0,"loadIdle":74.15476585851877,"loadIrq":0.10627698439056792,"rawLoad":7782,"rawLoadUser":5953,"rawLoadSystem":1797,"rawLoadNice":0,"rawLoadIdle":22328,"rawLoadIrq":32},{"load":29.647261066481533,"loadUser":20.50646302357103,"loadSystem":8.57218420443651,"loadNice":0,"loadIdle":70.35273893351847,"loadIrq":0.5686138384739992,"rawLoad":8968,"rawLoadUser":6203,"rawLoadSystem":2593,"rawLoadNice":0,"rawLoadIdle":21281,"rawLoadIrq":172},{"load":28.137130182340087,"loadUser":18.348174968196496,"loadSystem":7.900316404083895,"loadNice":0,"loadIdle":71.86286981765991,"loadIrq":1.8886388100596927,"rawLoad":8626,"rawLoadUser":5625,"rawLoadSystem":2422,"rawLoadNice":0,"rawLoadIdle":22031,"rawLoadIrq":579}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":6,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":34,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":236619182,"rx_dropped":0,"rx_errors":0,"tx_bytes":24137912,"tx_dropped":0,"tx_errors":0,"rx_sec":7491.067101734889,"tx_sec":733.886860724324,"ms":30953}]', '{"total":10685313024,"free":4608696320,"used":6076616704,"active":6076616704,"available":4608696320,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":61865984,"swapfree":4584374272}'), (232, '2022-03-29 23:09:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56227164160,"available":71048986624,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":23.505900891289006,"currentLoadUser":14.094020320732728,"currentLoadSystem":8.25878568028495,"currentLoadNice":0,"currentLoadIdle":76.494099108711,"currentLoadIrq":1.153094890271326,"rawCurrentLoad":28641,"rawCurrentLoadUser":17173,"rawCurrentLoadSystem":10063,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":93205,"rawCurrentLoadIrq":1405,"cpus":[{"load":26.0650406504065,"loadUser":13.66829268292683,"loadSystem":10.315447154471546,"loadNice":0,"loadIdle":73.9349593495935,"loadIrq":2.08130081300813,"rawLoad":8015,"rawLoadUser":4203,"rawLoadSystem":3172,"rawLoadNice":0,"rawLoadIdle":22735,"rawLoadIrq":640},{"load":20.42664720323801,"loadUser":13.582376750049766,"loadSystem":6.741423926746733,"loadNice":0,"loadIdle":79.573352796762,"loadIrq":0.10284652644151018,"rawLoad":6157,"rawLoadUser":4094,"rawLoadSystem":2032,"rawLoadNice":0,"rawLoadIdle":23985,"rawLoadIrq":31},{"load":22.791466843062675,"loadUser":14.678352902265587,"loadSystem":7.6996857946088975,"loadNice":0,"loadIdle":77.20853315693732,"loadIrq":0.4134281461881925,"rawLoad":6891,"rawLoadUser":4438,"rawLoadSystem":2328,"rawLoadNice":0,"rawLoadIdle":23344,"rawLoadIrq":125},{"load":24.668771769914386,"loadUser":14.447084866043816,"loadSystem":8.239200494807774,"loadNice":0,"loadIdle":75.33122823008561,"loadIrq":1.9824864090627952,"rawLoad":7578,"rawLoadUser":4438,"rawLoadSystem":2531,"rawLoadNice":0,"rawLoadIdle":23141,"rawLoadIrq":609}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":10,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":38,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":236720294,"rx_dropped":0,"rx_errors":0,"tx_bytes":24158520,"tx_dropped":0,"tx_errors":0,"rx_sec":3452.217556079074,"tx_sec":703.6088633958141,"ms":29289}]', '{"total":10685313024,"free":4532195328,"used":6153117696,"active":6153117696,"available":4532195328,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":61865984,"swapfree":4584374272}'), (233, '2022-03-29 23:09:47', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56227557376,"available":71048593408,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":30.615605160761827,"currentLoadUser":18.980954331353676,"currentLoadSystem":10.290395248822445,"currentLoadNice":0,"currentLoadIdle":69.38439483923817,"currentLoadIrq":1.3442555805857055,"rawCurrentLoad":37374,"rawCurrentLoadUser":23171,"rawCurrentLoadSystem":12562,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":84701,"rawCurrentLoadIrq":1641,"cpus":[{"load":33.45209561443286,"loadUser":17.105007449633998,"loadSystem":13.866036146919738,"loadNice":0,"loadIdle":66.54790438556715,"loadIrq":2.4810520178791218,"rawLoad":10328,"rawLoadUser":5281,"rawLoadSystem":4281,"rawLoadNice":0,"rawLoadIdle":20546,"rawLoadIrq":766},{"load":27.3417301955585,"loadUser":19.005634736493203,"loadSystem":8.130593304607226,"loadNice":0,"loadIdle":72.6582698044415,"loadIrq":0.20550215445807093,"rawLoad":8249,"rawLoadUser":5734,"rawLoadSystem":2453,"rawLoadNice":0,"rawLoadIdle":21921,"rawLoadIrq":62},{"load":30.32066115702479,"loadUser":19.93719008264463,"loadSystem":9.917355371900827,"loadNice":0,"loadIdle":69.6793388429752,"loadIrq":0.46611570247933887,"rawLoad":9172,"rawLoadUser":6031,"rawLoadSystem":3000,"rawLoadNice":0,"rawLoadIdle":21078,"rawLoadIrq":141},{"load":31.269289496767488,"loadUser":19.898638770670217,"loadSystem":9.187485786686594,"loadNice":0,"loadIdle":68.73071050323252,"loadIrq":2.1831649394106756,"rawLoad":9625,"rawLoadUser":6125,"rawLoadSystem":2828,"rawLoadNice":0,"rawLoadIdle":21156,"rawLoadIrq":672}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":12,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":236797670,"rx_dropped":0,"rx_errors":0,"tx_bytes":24207416,"tx_dropped":0,"tx_errors":0,"rx_sec":2551.053377732353,"tx_sec":1612.080050113745,"ms":30331}]', '{"total":10685313024,"free":4573401088,"used":6111911936,"active":6111911936,"available":4573401088,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":62914560,"swapfree":4583325696}'), (234, '2022-03-29 23:10:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56218968064,"available":71057182720,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":22.397584516819723,"currentLoadUser":12.387715160335224,"currentLoadSystem":9.435272076412238,"currentLoadNice":0,"currentLoadIdle":77.60241548318028,"currentLoadIrq":0.5745972800722637,"rawCurrentLoad":26779,"rawCurrentLoadUser":14811,"rawCurrentLoadSystem":11281,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":92783,"rawCurrentLoadIrq":687,"cpus":[{"load":23.46242216376411,"loadUser":11.757850221437847,"loadSystem":10.665645499650362,"loadNice":0,"loadIdle":76.5375778362359,"loadIrq":1.0389264426759015,"rawLoad":7046,"rawLoadUser":3531,"rawLoadSystem":3203,"rawLoadNice":0,"rawLoadIdle":22985,"rawLoadIrq":312},{"load":20.32536721454741,"loadUser":11.86850862155894,"loadSystem":8.349299183220731,"loadNice":0,"loadIdle":79.67463278545259,"loadIrq":0.1075594097677389,"rawLoad":6047,"rawLoadUser":3531,"rawLoadSystem":2484,"rawLoadNice":0,"rawLoadIdle":23704,"rawLoadIrq":32},{"load":22.862129144851657,"loadUser":12.793663579003894,"loadSystem":9.806685461135721,"loadNice":0,"loadIdle":77.13787085514834,"loadIrq":0.2617801047120419,"rawLoad":6812,"rawLoadUser":3812,"rawLoadSystem":2922,"rawLoadNice":0,"rawLoadIdle":22984,"rawLoadIrq":78},{"load":22.92556029882604,"loadUser":13.130336179295623,"loadSystem":8.911419423692637,"loadNice":0,"loadIdle":77.07443970117396,"loadIrq":0.8838046958377801,"rawLoad":6874,"rawLoadUser":3937,"rawLoadSystem":2672,"rawLoadNice":0,"rawLoadIdle":23110,"rawLoadIrq":265}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":14,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":57,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":237368949,"rx_dropped":0,"rx_errors":0,"tx_bytes":24304698,"tx_dropped":0,"tx_errors":0,"rx_sec":19353.580865912325,"tx_sec":3295.683989430178,"ms":29518}]', '{"total":10685313024,"free":4548300800,"used":6137012224,"active":6137012224,"available":4548300800,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":62914560,"swapfree":4583325696}'), (235, '2022-03-29 23:10:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56219774976,"available":71056375808,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":20.815257360536123,"currentLoadUser":12.318104068023501,"currentLoadSystem":7.812125569134914,"currentLoadNice":0,"currentLoadIdle":79.18474263946388,"currentLoadIrq":0.6850277233777072,"rawCurrentLoad":25190,"rawCurrentLoadUser":14907,"rawCurrentLoadSystem":9454,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":95827,"rawCurrentLoadIrq":829,"cpus":[{"load":23.29123940782749,"loadUser":12.57212568828514,"loadSystem":9.789310560849353,"loadNice":0,"loadIdle":76.70876059217251,"loadIrq":0.9298031586930001,"rawLoad":7064,"rawLoadUser":3813,"rawLoadSystem":2969,"rawLoadNice":0,"rawLoadIdle":23265,"rawLoadIrq":282},{"load":17.757692563301656,"loadUser":11.474047982986642,"loadSystem":6.127467269223101,"loadNice":0,"loadIdle":82.24230743669835,"loadIrq":0.15617731109191202,"rawLoad":5344,"rawLoadUser":3453,"rawLoadSystem":1844,"rawLoadNice":0,"rawLoadIdle":24750,"rawLoadIrq":47},{"load":20.798569725864123,"loadUser":12.312938683618063,"loadSystem":7.969143159846379,"loadNice":0,"loadIdle":79.20143027413587,"loadIrq":0.5164878823996821,"rawLoad":6282,"rawLoadUser":3719,"rawLoadSystem":2407,"rawLoadNice":0,"rawLoadIdle":23922,"rawLoadIrq":156},{"load":21.388614675880223,"loadUser":12.90556103981573,"loadSystem":7.351102336294833,"loadNice":0,"loadIdle":78.61138532411978,"loadIrq":1.1319512997696612,"rawLoad":6500,"rawLoadUser":3922,"rawLoadSystem":2234,"rawLoadNice":0,"rawLoadIdle":23890,"rawLoadIrq":344}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":19,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":237471306,"rx_dropped":0,"rx_errors":0,"tx_bytes":24321010,"tx_dropped":0,"tx_errors":0,"rx_sec":3445.435572909654,"tx_sec":549.0776895112427,"ms":29708}]', '{"total":10685313024,"free":4528320512,"used":6156992512,"active":6156992512,"available":4528320512,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":62914560,"swapfree":4583325696}'), (236, '2022-03-29 23:11:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56219906048,"available":71056244736,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":16.172564724182724,"currentLoadUser":9.618646521980159,"currentLoadSystem":5.791873174525687,"currentLoadNice":0,"currentLoadIdle":83.82743527581728,"currentLoadIrq":0.7620450276768798,"rawCurrentLoad":19546,"rawCurrentLoadUser":11625,"rawCurrentLoadSystem":7000,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":101313,"rawCurrentLoadIrq":921,"cpus":[{"load":18.26152633652962,"loadUser":9.132405096545384,"loadSystem":7.592276369368187,"loadNice":0,"loadIdle":81.73847366347037,"loadIrq":1.5368448706160516,"rawLoad":5561,"rawLoadUser":2781,"rawLoadSystem":2312,"rawLoadNice":0,"rawLoadIdle":24891,"rawLoadIrq":468},{"load":13.437114570485683,"loadUser":8.646954898496617,"loadSystem":4.740158005266842,"loadNice":0,"loadIdle":86.56288542951431,"loadIrq":0.05000166672222407,"rawLoad":4031,"rawLoadUser":2594,"rawLoadSystem":1422,"rawLoadNice":0,"rawLoadIdle":25968,"rawLoadIrq":15},{"load":15.889682671540124,"loadUser":9.606246884864596,"loadSystem":5.91792656587473,"loadNice":0,"loadIdle":84.11031732845987,"loadIrq":0.36550922080079745,"rawLoad":4782,"rawLoadUser":2891,"rawLoadSystem":1781,"rawLoadNice":0,"rawLoadIdle":25313,"rawLoadIrq":110},{"load":17.061986606406492,"loadUser":11.081054333124401,"loadSystem":4.898888265760565,"loadNice":0,"loadIdle":82.93801339359351,"loadIrq":1.0820440075215254,"rawLoad":5172,"rawLoadUser":3359,"rawLoadSystem":1485,"rawLoadNice":0,"rawLoadIdle":25141,"rawLoadIrq":328}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":14,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":237514106,"rx_dropped":0,"rx_errors":0,"tx_bytes":24336574,"tx_dropped":0,"tx_errors":0,"rx_sec":1419.3805133647277,"tx_sec":516.1504278039398,"ms":30154}]', '{"total":10685313024,"free":4550529024,"used":6134784000,"active":6134784000,"available":4550529024,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":62914560,"swapfree":4583325696}'), (237, '2022-03-29 23:11:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56219971584,"available":71056179200,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":22.85412941554536,"currentLoadUser":14.24015952406457,"currentLoadSystem":7.5963447895122815,"currentLoadNice":0,"currentLoadIdle":77.14587058445464,"currentLoadIrq":1.0176251019685072,"rawCurrentLoad":27736,"rawCurrentLoadUser":17282,"rawCurrentLoadSystem":9219,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":93625,"rawCurrentLoadIrq":1235,"cpus":[{"load":24.517077953914036,"loadUser":12.511848341232227,"loadSystem":10.165059650269653,"loadNice":0,"loadIdle":75.48292204608596,"loadIrq":1.8401699624121588,"rawLoad":7501,"rawLoadUser":3828,"rawLoadSystem":3110,"rawLoadNice":0,"rawLoadIdle":23094,"rawLoadIrq":563},{"load":20.445713906141023,"loadUser":14.530539041482612,"loadSystem":5.656116111461689,"loadNice":0,"loadIdle":79.55428609385898,"loadIrq":0.25905875319671856,"rawLoad":6156,"rawLoadUser":4375,"rawLoadSystem":1703,"rawLoadNice":0,"rawLoadIdle":23953,"rawLoadIrq":78},{"load":22.913072329130724,"loadUser":15.345056403450563,"loadSystem":7.206370272063703,"loadNice":0,"loadIdle":77.08692767086927,"loadIrq":0.36164565361645656,"rawLoad":6906,"rawLoadUser":4625,"rawLoadSystem":2172,"rawLoadNice":0,"rawLoadIdle":23234,"rawLoadIrq":109},{"load":23.5049316774257,"loadUser":14.595143690402072,"loadSystem":7.320509879739162,"loadNice":0,"loadIdle":76.4950683225743,"loadIrq":1.5892781072844646,"rawLoad":7173,"rawLoadUser":4454,"rawLoadSystem":2234,"rawLoadNice":0,"rawLoadIdle":23344,"rawLoadIrq":485}]}', '{"ESTABLISHED":20,"CLOSE":0,"TIME_WAIT":18,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":237560957,"rx_dropped":0,"rx_errors":0,"tx_bytes":24348480,"tx_dropped":0,"tx_errors":0,"rx_sec":1564.8296593186371,"tx_sec":397.66199064796257,"ms":29940}]', '{"total":10685313024,"free":4520333312,"used":6164979712,"active":6164979712,"available":4520333312,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":62914560,"swapfree":4583325696}'), (238, '2022-03-29 23:12:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56220622848,"available":71055527936,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":22.314952806756086,"currentLoadUser":14.553734061930784,"currentLoadSystem":7.321576419937076,"currentLoadNice":0,"currentLoadIdle":77.68504719324392,"currentLoadIrq":0.4396423248882265,"rawCurrentLoad":26952,"rawCurrentLoadUser":17578,"rawCurrentLoadSystem":8843,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":93828,"rawCurrentLoadIrq":531,"cpus":[{"load":24.58681767300981,"loadUser":13.99223019687891,"loadSystem":9.567393165207084,"loadNice":0,"loadIdle":75.4131823269902,"loadIrq":1.0271943109238164,"rawLoad":7468,"rawLoadUser":4250,"rawLoadSystem":2906,"rawLoadNice":0,"rawLoadIdle":22906,"rawLoadIrq":312},{"load":18.867045870338956,"loadUser":13.358613578152545,"loadSystem":5.508432292186408,"loadNice":0,"loadIdle":81.13295412966104,"loadIrq":0,"rawLoad":5672,"rawLoadUser":4016,"rawLoadSystem":1656,"rawLoadNice":0,"rawLoadIdle":24391,"rawLoadIrq":0},{"load":23.35182171443754,"loadUser":15.463814806204123,"loadSystem":7.731907403102062,"loadNice":0,"loadIdle":76.64817828556245,"loadIrq":0.15609950513135606,"rawLoad":7031,"rawLoadUser":4656,"rawLoadSystem":2328,"rawLoadNice":0,"rawLoadIdle":23078,"rawLoadIrq":47},{"load":22.428391876695112,"loadUser":15.399880928755705,"loadSystem":6.45961500297678,"loadNice":0,"loadIdle":77.5716081233049,"loadIrq":0.5688959449626249,"rawLoad":6781,"rawLoadUser":4656,"rawLoadSystem":1953,"rawLoadNice":0,"rawLoadIdle":23453,"rawLoadIrq":172}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":19,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":237642139,"rx_dropped":0,"rx_errors":0,"tx_bytes":24365641,"tx_dropped":0,"tx_errors":0,"rx_sec":2701.8337937231668,"tx_sec":571.1385496056179,"ms":30047}]', '{"total":10685313024,"free":4444741632,"used":6240571392,"active":6240571392,"available":4444741632,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":62914560,"swapfree":4583325696}'), (239, '2022-03-29 23:12:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56221753344,"available":71054397440,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":26.060821243673054,"currentLoadUser":16.51404932746534,"currentLoadSystem":8.476661519787958,"currentLoadNice":0,"currentLoadIdle":73.93917875632694,"currentLoadIrq":1.070110396419754,"rawCurrentLoad":31562,"rawCurrentLoadUser":20000,"rawCurrentLoadSystem":10266,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":89547,"rawCurrentLoadIrq":1296,"cpus":[{"load":28.883020344287953,"loadUser":15.434272300469484,"loadSystem":11.104590505998956,"loadNice":0,"loadIdle":71.11697965571206,"loadIrq":2.3441575378195094,"rawLoad":8859,"rawLoadUser":4734,"rawLoadSystem":3406,"rawLoadNice":0,"rawLoadIdle":21813,"rawLoadIrq":719},{"load":22.633278945090073,"loadUser":15.920215777030403,"loadSystem":6.453331557390696,"loadNice":0,"loadIdle":77.36672105490993,"loadIrq":0.2597316106689754,"rawLoad":6797,"rawLoadUser":4781,"rawLoadSystem":1938,"rawLoadNice":0,"rawLoadIdle":23234,"rawLoadIrq":78},{"load":25.70258391049547,"loadUser":17.950852424080978,"loadSystem":7.49200852424081,"loadNice":0,"loadIdle":74.29741608950454,"loadIrq":0.2597229621736814,"rawLoad":7719,"rawLoadUser":5391,"rawLoadSystem":2250,"rawLoadNice":0,"rawLoadIdle":22313,"rawLoadIrq":78},{"load":26.953973793375912,"loadUser":16.770922499506156,"loadSystem":8.796997432014223,"loadNice":0,"loadIdle":73.04602620662408,"loadIrq":1.3860538618555343,"rawLoad":8187,"rawLoadUser":5094,"rawLoadSystem":2672,"rawLoadNice":0,"rawLoadIdle":22187,"rawLoadIrq":421}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":19,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":237750270,"rx_dropped":0,"rx_errors":0,"tx_bytes":24392185,"tx_dropped":0,"tx_errors":0,"rx_sec":3623.4501709000738,"tx_sec":889.4846189933651,"ms":29842}]', '{"total":10685313024,"free":4420132864,"used":6265180160,"active":6265180160,"available":4420132864,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":62914560,"swapfree":4583325696}'), (240, '2022-03-29 23:13:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56221364224,"available":71054786560,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.430042262759784,"currentLoadUser":6.253061766732815,"currentLoadSystem":4.86478407798268,"currentLoadNice":0,"currentLoadIdle":88.56995773724022,"currentLoadIrq":0.3121964180442887,"rawCurrentLoad":13766,"rawCurrentLoadUser":7531,"rawCurrentLoadSystem":5859,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":106671,"rawCurrentLoadIrq":376,"cpus":[{"load":12.491295553271215,"loadUser":6.840866133899261,"loadSystem":5.182876280797162,"loadNice":0,"loadIdle":87.50870444672879,"loadIrq":0.4675531385747919,"rawLoad":3767,"rawLoadUser":2063,"rawLoadSystem":1563,"rawLoadNice":0,"rawLoadIdle":26390,"rawLoadIrq":141},{"load":10.428775449201236,"loadUser":5.240957853133614,"loadSystem":4.875618585804909,"loadNice":0,"loadIdle":89.57122455079876,"loadIrq":0.31219901026271213,"rawLoad":3140,"rawLoadUser":1578,"rawLoadSystem":1468,"rawLoadNice":0,"rawLoadIdle":26969,"rawLoadIrq":94},{"load":11.176568480612413,"loadUser":6.2905641537693455,"loadSystem":4.782825761357963,"loadNice":0,"loadIdle":88.82343151938758,"loadIrq":0.10317856548510568,"rawLoad":3358,"rawLoadUser":1890,"rawLoadSystem":1437,"rawLoadNice":0,"rawLoadIdle":26687,"rawLoadIrq":31},{"load":11.621190997809201,"loadUser":6.638783774812454,"loadSystem":4.617274115382062,"loadNice":0,"loadIdle":88.37880900219079,"loadIrq":0.365133107614685,"rawLoad":3501,"rawLoadUser":2000,"rawLoadSystem":1391,"rawLoadNice":0,"rawLoadIdle":26625,"rawLoadIrq":110}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":18,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":237803197,"rx_dropped":0,"rx_errors":0,"tx_bytes":24408544,"tx_dropped":0,"tx_errors":0,"rx_sec":1759.2487950806049,"tx_sec":543.7593485125477,"ms":30085}]', '{"total":10685313024,"free":4550737920,"used":6134575104,"active":6134575104,"available":4550737920,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":62914560,"swapfree":4583325696}'), (241, '2022-03-29 23:13:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56221507584,"available":71054643200,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":10.589827918410737,"currentLoadUser":5.904923260912896,"currentLoadSystem":4.295395654773769,"currentLoadNice":0,"currentLoadIdle":89.41017208158927,"currentLoadIrq":0.38950900272407146,"rawCurrentLoad":12751,"rawCurrentLoadUser":7110,"rawCurrentLoadSystem":5172,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":107657,"rawCurrentLoadIrq":469,"cpus":[{"load":12.733536504571353,"loadUser":6.264078441764939,"loadSystem":5.7970054326222344,"loadNice":0,"loadIdle":87.26646349542865,"loadIrq":0.6724526301841792,"rawLoad":3844,"rawLoadUser":1891,"rawLoadSystem":1750,"rawLoadNice":0,"rawLoadIdle":26344,"rawLoadIrq":203},{"load":8.287477071869267,"loadUser":5.0558612639653155,"loadSystem":3.2316158079039523,"loadNice":0,"loadIdle":91.71252292813074,"loadIrq":0,"rawLoad":2485,"rawLoadUser":1516,"rawLoadSystem":969,"rawLoadNice":0,"rawLoadIdle":27500,"rawLoadIrq":0},{"load":10.09052183173589,"loadUser":5.980431309904153,"loadSystem":3.9004259850905223,"loadNice":0,"loadIdle":89.90947816826412,"loadIrq":0.20966453674121405,"rawLoad":3032,"rawLoadUser":1797,"rawLoadSystem":1172,"rawLoadNice":0,"rawLoadIdle":27016,"rawLoadIrq":63},{"load":11.229999668731573,"loadUser":6.313976214926956,"loadSystem":4.243548547387949,"loadNice":0,"loadIdle":88.77000033126843,"loadIrq":0.6724749064166694,"rawLoad":3390,"rawLoadUser":1906,"rawLoadSystem":1281,"rawLoadNice":0,"rawLoadIdle":26797,"rawLoadIrq":203}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":12,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":24,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":237858885,"rx_dropped":0,"rx_errors":0,"tx_bytes":24416170,"tx_dropped":0,"tx_errors":0,"rx_sec":1858.6829545075266,"tx_sec":254.53089015720437,"ms":29961}]', '{"total":10685313024,"free":4540182528,"used":6145130496,"active":6145130496,"available":4540182528,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":62914560,"swapfree":4583325696}'), (242, '2022-03-29 23:14:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56221900800,"available":71054249984,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":17.25707582241462,"currentLoadUser":9.964806767675098,"currentLoadSystem":6.428134758686781,"currentLoadNice":0,"currentLoadIdle":82.74292417758538,"currentLoadIrq":0.8641342960527402,"rawCurrentLoad":20889,"rawCurrentLoadUser":12062,"rawCurrentLoadSystem":7781,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":100157,"rawCurrentLoadIrq":1046,"cpus":[{"load":19.40116604631246,"loadUser":10.240785269607036,"loadSystem":7.977864883560065,"loadNice":0,"loadIdle":80.59883395368755,"loadIrq":1.1825158931453605,"rawLoad":5890,"rawLoadUser":3109,"rawLoadSystem":2422,"rawLoadNice":0,"rawLoadIdle":24469,"rawLoadIrq":359},{"load":14.144506939128698,"loadUser":9.152328019436217,"loadSystem":4.835757313542118,"loadNice":0,"loadIdle":85.8554930608713,"loadIrq":0.1564216061503644,"rawLoad":4250,"rawLoadUser":2750,"rawLoadSystem":1453,"rawLoadNice":0,"rawLoadIdle":25797,"rawLoadIrq":47},{"load":17.209688122096882,"loadUser":10.783012607830127,"loadSystem":5.962176509621766,"loadNice":0,"loadIdle":82.79031187790312,"loadIrq":0.46449900464499,"rawLoad":5187,"rawLoadUser":3250,"rawLoadSystem":1797,"rawLoadNice":0,"rawLoadIdle":24953,"rawLoadIrq":140},{"load":18.236065573770492,"loadUser":9.681967213114755,"loadSystem":6.914754098360655,"loadNice":0,"loadIdle":81.76393442622951,"loadIrq":1.639344262295082,"rawLoad":5562,"rawLoadUser":2953,"rawLoadSystem":2109,"rawLoadNice":0,"rawLoadIdle":24938,"rawLoadIrq":500}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":9,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":237905675,"rx_dropped":0,"rx_errors":0,"tx_bytes":24428753,"tx_dropped":0,"tx_errors":0,"rx_sec":1557.4861860062579,"tx_sec":418.84694760668395,"ms":30042}]', '{"total":10685313024,"free":4550832128,"used":6134468608,"active":6134456320,"available":4550860800,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":62914560,"swapfree":4583325696}'), (243, '2022-03-29 23:14:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56218218496,"available":71057932288,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":18.336842974524135,"currentLoadUser":9.793963417151822,"currentLoadSystem":7.690656096453198,"currentLoadNice":0,"currentLoadIdle":81.66315702547587,"currentLoadIrq":0.8522234609191132,"rawCurrentLoad":22205,"rawCurrentLoadUser":11860,"rawCurrentLoadSystem":9313,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":98890,"rawCurrentLoadIrq":1032,"cpus":[{"load":20.68148148148148,"loadUser":10.03127572016461,"loadSystem":9.465020576131687,"loadNice":0,"loadIdle":79.31851851851852,"loadIrq":1.1851851851851851,"rawLoad":6282,"rawLoadUser":3047,"rawLoadSystem":2875,"rawLoadNice":0,"rawLoadIdle":24093,"rawLoadIrq":360},{"load":15.75531667054947,"loadUser":9.984357839384964,"loadSystem":5.667787133490864,"loadNice":0,"loadIdle":84.24468332945054,"loadIrq":0.10317169767364463,"rawLoad":4734,"rawLoadUser":3000,"rawLoadSystem":1703,"rawLoadNice":0,"rawLoadIdle":25313,"rawLoadIrq":31},{"load":17.159351050064696,"loadUser":9.020934939119472,"loadSystem":7.723698616502439,"loadNice":0,"loadIdle":82.8406489499353,"loadIrq":0.41471749444278555,"rawLoad":5172,"rawLoadUser":2719,"rawLoadSystem":2328,"rawLoadNice":0,"rawLoadIdle":24969,"rawLoadIrq":125},{"load":19.707192453818944,"loadUser":10.133630289532295,"loadSystem":7.883532031966461,"loadNice":0,"loadIdle":80.29280754618105,"loadIrq":1.6900301323201885,"rawLoad":6017,"rawLoadUser":3094,"rawLoadSystem":2407,"rawLoadNice":0,"rawLoadIdle":24515,"rawLoadIrq":516}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":8,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":34,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":238004223,"rx_dropped":0,"rx_errors":0,"tx_bytes":24465893,"tx_dropped":0,"tx_errors":0,"rx_sec":3266.098830079873,"tx_sec":1230.901799622179,"ms":30173}]', '{"total":10685313024,"free":4531896320,"used":6153416704,"active":6153416704,"available":4531896320,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":62914560,"swapfree":4583325696}'), (244, '2022-03-29 23:15:17', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56218992640,"available":71057158144,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":25.359226180667697,"currentLoadUser":16.116567247800152,"currentLoadSystem":8.57364136703688,"currentLoadNice":0,"currentLoadIdle":74.6407738193323,"currentLoadIrq":0.6690175658306694,"rawCurrentLoad":30779,"rawCurrentLoadUser":19561,"rawCurrentLoadSystem":10406,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":90593,"rawCurrentLoadIrq":812,"cpus":[{"load":27.211888593642357,"loadUser":15.631663550175507,"loadSystem":10.455007709214973,"loadNice":0,"loadIdle":72.78811140635764,"loadIrq":1.125217334251878,"rawLoad":8295,"rawLoadUser":4765,"rawLoadSystem":3187,"rawLoadNice":0,"rawLoadIdle":22188,"rawLoadIrq":343},{"load":22.93040050352801,"loadUser":15.735250273296453,"loadSystem":7.039454069632624,"loadNice":0,"loadIdle":77.069599496472,"loadIrq":0.15569616059893332,"rawLoad":6922,"rawLoadUser":4750,"rawLoadSystem":2125,"rawLoadNice":0,"rawLoadIdle":23265,"rawLoadIrq":47},{"load":25.467768595041324,"loadUser":15.960330578512396,"loadSystem":9.143801652892563,"loadNice":0,"loadIdle":74.53223140495868,"loadIrq":0.36363636363636365,"rawLoad":7704,"rawLoadUser":4828,"rawLoadSystem":2766,"rawLoadNice":0,"rawLoadIdle":22546,"rawLoadIrq":110},{"load":25.80454485748063,"loadUser":17.135163536056744,"loadSystem":7.644818074346513,"loadNice":0,"loadIdle":74.19545514251938,"loadIrq":1.0245632470773676,"rawLoad":7858,"rawLoadUser":5218,"rawLoadSystem":2328,"rawLoadNice":0,"rawLoadIdle":22594,"rawLoadIrq":312}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":17,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":34,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":238160995,"rx_dropped":0,"rx_errors":0,"tx_bytes":24495330,"tx_dropped":0,"tx_errors":0,"rx_sec":5127.457072771873,"tx_sec":962.7800490596893,"ms":30575}]', '{"total":10685313024,"free":4513640448,"used":6171672576,"active":6171672576,"available":4513640448,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":62914560,"swapfree":4583325696}'), (245, '2022-03-29 23:15:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56219070464,"available":71057080320,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":13.575954643988661,"currentLoadUser":7.361180590295148,"currentLoadSystem":5.901283975320994,"currentLoadNice":0,"currentLoadIdle":86.42404535601133,"currentLoadIrq":0.3134900783725196,"rawCurrentLoad":16283,"rawCurrentLoadUser":8829,"rawCurrentLoadSystem":7078,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":103657,"rawCurrentLoadIrq":376,"cpus":[{"load":14.716317936134232,"loadUser":6.94366150479159,"loadSystem":6.890605829492323,"loadNice":0,"loadIdle":85.28368206386577,"loadIrq":0.8820506018503167,"rawLoad":4438,"rawLoadUser":2094,"rawLoadSystem":2078,"rawLoadNice":0,"rawLoadIdle":25719,"rawLoadIrq":266},{"load":12.86005821150179,"loadUser":7.370111404770667,"loadSystem":5.4899468067311235,"loadNice":0,"loadIdle":87.1399417884982,"loadIrq":0,"rawLoad":3844,"rawLoadUser":2203,"rawLoadSystem":1641,"rawLoadNice":0,"rawLoadIdle":26047,"rawLoadIrq":0},{"load":13.414389738793506,"loadUser":7.986505444585476,"loadSystem":5.27089317923709,"loadNice":0,"loadIdle":86.5856102612065,"loadIrq":0.15699111497093993,"rawLoad":4016,"rawLoadUser":2391,"rawLoadSystem":1578,"rawLoadNice":0,"rawLoadIdle":25922,"rawLoadIrq":47},{"load":13.303732389664152,"loadUser":7.147626360419309,"loadSystem":5.945783534753288,"loadNice":0,"loadIdle":86.69626761033585,"loadIrq":0.2103224944915537,"rawLoad":3985,"rawLoadUser":2141,"rawLoadSystem":1781,"rawLoadNice":0,"rawLoadIdle":25969,"rawLoadIrq":63}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":17,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":32,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":238214726,"rx_dropped":0,"rx_errors":0,"tx_bytes":24506808,"tx_dropped":0,"tx_errors":0,"rx_sec":1842.8164763178654,"tx_sec":393.6618993723634,"ms":29157}]', '{"total":10685313024,"free":4632977408,"used":6052335616,"active":6052335616,"available":4632977408,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (246, '2022-03-29 23:16:20', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56219144192,"available":71057006592,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.608061535387842,"currentLoadUser":3.251585834873383,"currentLoadSystem":3.2524182941245026,"currentLoadNice":0,"currentLoadIdle":93.39193846461215,"currentLoadIrq":0.10405740638995721,"rawCurrentLoad":7938,"rawCurrentLoadUser":3906,"rawCurrentLoadSystem":3907,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112188,"rawCurrentLoadIrq":125,"cpus":[{"load":6.858833699049138,"loadUser":3.274818804441785,"loadSystem":3.3246891415652637,"loadNice":0,"loadIdle":93.14116630095086,"loadIrq":0.2593257530420906,"rawLoad":2063,"rawLoadUser":985,"rawLoadSystem":1000,"rawLoadNice":0,"rawLoadIdle":28015,"rawLoadIrq":78},{"load":6.246668443496802,"loadUser":3.1216684434968016,"loadSystem":3.071695095948827,"loadNice":0,"loadIdle":93.7533315565032,"loadIrq":0.053304904051172705,"rawLoad":1875,"rawLoadUser":937,"rawLoadSystem":922,"rawLoadNice":0,"rawLoadIdle":28141,"rawLoadIrq":16},{"load":6.303123229225692,"loadUser":2.9165694476850774,"loadSystem":3.3865537815406155,"loadNice":0,"loadIdle":93.69687677077431,"loadIrq":0,"rawLoad":1891,"rawLoadUser":875,"rawLoadSystem":1016,"rawLoadNice":0,"rawLoadIdle":28110,"rawLoadIrq":0},{"load":7.022743165395758,"loadUser":3.6928507209217143,"loadSystem":3.226665778695348,"loadNice":0,"loadIdle":92.97725683460423,"loadIrq":0.10322666577869534,"rawLoad":2109,"rawLoadUser":1109,"rawLoadSystem":969,"rawLoadNice":0,"rawLoadIdle":27922,"rawLoadIrq":31}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":18,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":32,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":238307675,"rx_dropped":0,"rx_errors":0,"tx_bytes":24519727,"tx_dropped":0,"tx_errors":0,"rx_sec":2664.6694570265468,"tx_sec":370.36293790493664,"ms":34882}]', '{"total":10685313024,"free":4754423808,"used":5930889216,"active":5930889216,"available":4754423808,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (247, '2022-03-29 23:16:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56219176960,"available":71056973824,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":7.066785277807799,"currentLoadUser":3.4560736940996497,"currentLoadSystem":3.429469325994962,"currentLoadNice":0,"currentLoadIdle":92.9332147221922,"currentLoadIrq":0.18124225771318828,"rawCurrentLoad":8500,"rawCurrentLoadUser":4157,"rawCurrentLoadSystem":4125,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":111781,"rawCurrentLoadIrq":218,"cpus":[{"load":8.014825110030113,"loadUser":3.825407855984645,"loadSystem":3.5176544558059497,"loadNice":0,"loadIdle":91.98517488996988,"loadIrq":0.6717627982395182,"rawLoad":2422,"rawLoadUser":1156,"rawLoadSystem":1063,"rawLoadNice":0,"rawLoadIdle":27797,"rawLoadIrq":203},{"load":7.022743165395758,"loadUser":3.696180613366188,"loadSystem":3.276614165362459,"loadNice":0,"loadIdle":92.97725683460423,"loadIrq":0.04994838666711065,"rawLoad":2109,"rawLoadUser":1110,"rawLoadSystem":984,"rawLoadNice":0,"rawLoadIdle":27922,"rawLoadIrq":15},{"load":6.713310011660837,"loadUser":2.7053140096618358,"loadSystem":4.007996001999,"loadNice":0,"loadIdle":93.28668998833916,"loadIrq":0,"rawLoad":2015,"rawLoadUser":812,"rawLoadSystem":1203,"rawLoadNice":0,"rawLoadIdle":28000,"rawLoadIrq":0},{"load":6.509861407249468,"loadUser":3.59474946695096,"loadSystem":2.9151119402985075,"loadNice":0,"loadIdle":93.49013859275054,"loadIrq":0,"rawLoad":1954,"rawLoadUser":1079,"rawLoadSystem":875,"rawLoadNice":0,"rawLoadIdle":28062,"rawLoadIrq":0}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":14,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":28,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":238348136,"rx_dropped":0,"rx_errors":0,"tx_bytes":24525608,"tx_dropped":0,"tx_errors":0,"rx_sec":1609.0431877833453,"tx_sec":233.8741748190567,"ms":25146}]', '{"total":10685313024,"free":4728782848,"used":5956530176,"active":5956530176,"available":4728782848,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (248, '2022-03-29 23:17:15', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56219176960,"available":71056973824,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":5.9446498151663505,"currentLoadUser":3.498518000466247,"currentLoadSystem":2.3545475738502017,"currentLoadNice":0,"currentLoadIdle":94.05535018483366,"currentLoadIrq":0.09158424084990176,"rawCurrentLoad":7140,"rawCurrentLoadUser":4202,"rawCurrentLoadSystem":2828,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112968,"rawCurrentLoadIrq":110,"cpus":[{"load":6.901590886445913,"loadUser":3.736424324952672,"loadSystem":2.7998272941645355,"loadNice":0,"loadIdle":93.09840911355408,"loadIrq":0.3653392673287057,"rawLoad":2078,"rawLoadUser":1125,"rawLoadSystem":843,"rawLoadNice":0,"rawLoadIdle":28031,"rawLoadIrq":110},{"load":5.7299999999999995,"loadUser":3.4366666666666665,"loadSystem":2.2933333333333334,"loadNice":0,"loadIdle":94.27,"loadIrq":0,"rawLoad":1719,"rawLoadUser":1031,"rawLoadSystem":688,"rawLoadNice":0,"rawLoadIdle":28281,"rawLoadIrq":0},{"load":5.520184006133538,"loadUser":3.4367812260408677,"loadSystem":2.08340278009267,"loadNice":0,"loadIdle":94.47981599386647,"loadIrq":0,"rawLoad":1656,"rawLoadUser":1031,"rawLoadSystem":625,"rawLoadNice":0,"rawLoadIdle":28343,"rawLoadIrq":0},{"load":5.623333333333334,"loadUser":3.3833333333333333,"loadSystem":2.2399999999999998,"loadNice":0,"loadIdle":94.37666666666667,"loadIrq":0,"rawLoad":1687,"rawLoadUser":1015,"rawLoadSystem":672,"rawLoadNice":0,"rawLoadIdle":28313,"rawLoadIrq":0}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":8,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":32,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":238390072,"rx_dropped":0,"rx_errors":0,"tx_bytes":24535236,"tx_dropped":0,"tx_errors":0,"rx_sec":1394.9837003526045,"tx_sec":320.2714390260129,"ms":30062}]', '{"total":10685313024,"free":4720951296,"used":5964361728,"active":5964361728,"available":4720951296,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (249, '2022-03-29 23:17:47', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56219770880,"available":71056379904,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":14.268695242113624,"currentLoadUser":7.819777783293208,"currentLoadSystem":5.72584448139783,"currentLoadNice":0,"currentLoadIdle":85.73130475788638,"currentLoadIrq":0.723072977422584,"rawCurrentLoad":17247,"rawCurrentLoadUser":9452,"rawCurrentLoadSystem":6921,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":103626,"rawCurrentLoadIrq":874,"cpus":[{"load":15.20469765447168,"loadUser":7.524824332794511,"loadSystem":6.650611948668889,"loadNice":0,"loadIdle":84.79530234552833,"loadIrq":1.0292613730082802,"rawLoad":4609,"rawLoadUser":2281,"rawLoadSystem":2016,"rawLoadNice":0,"rawLoadIdle":25704,"rawLoadIrq":312},{"load":12.70031650841246,"loadUser":8.535732133933035,"loadSystem":4.11127769448609,"loadNice":0,"loadIdle":87.29968349158754,"loadIrq":0.053306679993336666,"rawLoad":3812,"rawLoadUser":2562,"rawLoadSystem":1234,"rawLoadNice":0,"rawLoadIdle":26203,"rawLoadIrq":16},{"load":13.132622204499386,"loadUser":6.905260359552055,"loadSystem":5.918319875053999,"loadNice":0,"loadIdle":86.86737779550062,"loadIrq":0.30904196989333066,"rawLoad":3952,"rawLoadUser":2078,"rawLoadSystem":1781,"rawLoadNice":0,"rawLoadIdle":26141,"rawLoadIrq":93},{"load":16.005516879022725,"loadUser":8.31144095625903,"loadSystem":6.206488900564823,"loadNice":0,"loadIdle":83.99448312097726,"loadIrq":1.4875870221988703,"rawLoad":4874,"rawLoadUser":2531,"rawLoadSystem":1890,"rawLoadNice":0,"rawLoadIdle":25578,"rawLoadIrq":453}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":12,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":36,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":238470699,"rx_dropped":0,"rx_errors":0,"tx_bytes":24555207,"tx_dropped":0,"tx_errors":0,"rx_sec":2605.156870981292,"tx_sec":645.2874083169085,"ms":30949}]', '{"total":10685313024,"free":4675608576,"used":6009704448,"active":6009704448,"available":4675608576,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (250, '2022-03-29 23:18:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56219836416,"available":71056314368,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":20.481499834819957,"currentLoadUser":12.092831185992733,"currentLoadSystem":7.601585728444003,"currentLoadNice":0,"currentLoadIdle":79.51850016518006,"currentLoadIrq":0.7870829203832178,"rawCurrentLoad":24799,"rawCurrentLoadUser":14642,"rawCurrentLoadSystem":9204,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":96281,"rawCurrentLoadIrq":953,"cpus":[{"load":22.9799220464446,"loadUser":11.208280108741935,"loadSystem":10.133962202351707,"loadNice":0,"loadIdle":77.0200779535554,"loadIrq":1.6376797353509547,"rawLoad":7016,"rawLoadUser":3422,"rawLoadSystem":3094,"rawLoadNice":0,"rawLoadIdle":23515,"rawLoadIrq":500},{"load":18.920267438379405,"loadUser":12.370688221401723,"loadSystem":6.446462428899312,"loadNice":0,"loadIdle":81.0797325616206,"loadIrq":0.10311678807836877,"rawLoad":5688,"rawLoadUser":3719,"rawLoadSystem":1938,"rawLoadNice":0,"rawLoadIdle":24375,"rawLoadIrq":31},{"load":19.524838012958963,"loadUser":12.51370659578003,"loadSystem":6.801794317993022,"loadNice":0,"loadIdle":80.47516198704103,"loadIrq":0.20933709918591129,"rawLoad":5876,"rawLoadUser":3766,"rawLoadSystem":2047,"rawLoadNice":0,"rawLoadIdle":24219,"rawLoadIrq":63},{"load":20.46329505445691,"loadUser":12.289822644861966,"loadSystem":6.99220163864302,"loadNice":0,"loadIdle":79.5367049455431,"loadIrq":1.1812707709519266,"rawLoad":6219,"rawLoadUser":3735,"rawLoadSystem":2125,"rawLoadNice":0,"rawLoadIdle":24172,"rawLoadIrq":359}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":12,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":38,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":2}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":238527088,"rx_dropped":0,"rx_errors":0,"tx_bytes":24570665,"tx_dropped":0,"tx_errors":0,"rx_sec":1940.5003613338379,"tx_sec":531.9522351078839,"ms":29059}]', '{"total":10685313024,"free":4659732480,"used":6025580544,"active":6025580544,"available":4659732480,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (251, '2022-03-29 23:18:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56220418048,"available":71055732736,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":20.11749131226212,"currentLoadUser":12.359755088532186,"currentLoadSystem":7.098295548568593,"currentLoadNice":0,"currentLoadIdle":79.88250868773787,"currentLoadIrq":0.6594406751613437,"rawCurrentLoad":24314,"rawCurrentLoadUser":14938,"rawCurrentLoadSystem":8579,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":96546,"rawCurrentLoadIrq":797,"cpus":[{"load":22.75327065939123,"loadUser":12.481099204523042,"loadSystem":8.937610939451712,"loadNice":0,"loadIdle":77.24672934060877,"loadIrq":1.3345605154164748,"rawLoad":6922,"rawLoadUser":3797,"rawLoadSystem":2719,"rawLoadNice":0,"rawLoadIdle":23500,"rawLoadIrq":406},{"load":17.619665369390948,"loadUser":11.798556364966903,"loadSystem":5.664770648305225,"loadNice":0,"loadIdle":82.38033463060906,"loadIrq":0.15633835611881713,"rawLoad":5297,"rawLoadUser":3547,"rawLoadSystem":1703,"rawLoadNice":0,"rawLoadIdle":24766,"rawLoadIrq":47},{"load":19.240497903215072,"loadUser":12.480862677228249,"loadSystem":6.656460094521734,"loadNice":0,"loadIdle":80.75950209678493,"loadIrq":0.10317513146508688,"rawLoad":5781,"rawLoadUser":3750,"rawLoadSystem":2000,"rawLoadNice":0,"rawLoadIdle":24265,"rawLoadIrq":31},{"load":20.818358666622704,"loadUser":12.674338092254938,"loadSystem":7.112005011704969,"loadNice":0,"loadIdle":79.1816413333773,"loadIrq":1.032015562662798,"rawLoad":6314,"rawLoadUser":3844,"rawLoadSystem":2157,"rawLoadNice":0,"rawLoadIdle":24015,"rawLoadIrq":313}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":17,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":34,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":238622466,"rx_dropped":0,"rx_errors":0,"tx_bytes":24592734,"tx_dropped":0,"tx_errors":0,"rx_sec":3170.8111702127662,"tx_sec":733.6768617021277,"ms":30080}]', '{"total":10685313024,"free":4628533248,"used":6056779776,"active":6056779776,"available":4628533248,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (252, '2022-03-29 23:19:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56221081600,"available":71055069184,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":17.251561143046192,"currentLoadUser":9.963194243414252,"currentLoadSystem":6.590298167983128,"currentLoadNice":0,"currentLoadIdle":82.74843885695381,"currentLoadIrq":0.6980687316488152,"rawCurrentLoad":20858,"rawCurrentLoadUser":12046,"rawCurrentLoadSystem":7968,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":100047,"rawCurrentLoadIrq":844,"cpus":[{"load":18.966086038532595,"loadUser":9.01953021905516,"loadSystem":8.966745843230402,"loadNice":0,"loadIdle":81.0339139614674,"loadIrq":0.9798099762470308,"rawLoad":5749,"rawLoadUser":2734,"rawLoadSystem":2718,"rawLoadNice":0,"rawLoadIdle":24563,"rawLoadIrq":297},{"load":15.125407491184884,"loadUser":9.563568624841993,"loadSystem":5.4054953096933005,"loadNice":0,"loadIdle":84.87459250881511,"loadIrq":0.15634355664959085,"rawLoad":4547,"rawLoadUser":2875,"rawLoadSystem":1625,"rawLoadNice":0,"rawLoadIdle":25515,"rawLoadIrq":47},{"load":16.171331580523844,"loadUser":10.243951143208973,"loadSystem":5.824208739641229,"loadNice":0,"loadIdle":83.82866841947614,"loadIrq":0.10317169767364463,"rawLoad":4859,"rawLoadUser":3078,"rawLoadSystem":1750,"rawLoadNice":0,"rawLoadIdle":25188,"rawLoadIrq":31},{"load":18.70817478021257,"loadUser":11.018895158115733,"loadSystem":6.150767615798451,"loadNice":0,"loadIdle":81.29182521978743,"loadIrq":1.538512006298386,"rawLoad":5703,"rawLoadUser":3359,"rawLoadSystem":1875,"rawLoadNice":0,"rawLoadIdle":24781,"rawLoadIrq":469}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":14,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":34,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":238659406,"rx_dropped":0,"rx_errors":0,"tx_bytes":24606042,"tx_dropped":0,"tx_errors":0,"rx_sec":1224.15164369035,"tx_sec":441.01272534464476,"ms":30176}]', '{"total":10685313024,"free":4655505408,"used":6029807616,"active":6029807616,"available":4655505408,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (253, '2022-03-29 23:19:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56221683712,"available":71054467072,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":20.002479338842974,"currentLoadUser":10.834710743801653,"currentLoadSystem":8.444628099173555,"currentLoadNice":0,"currentLoadIdle":79.99752066115703,"currentLoadIrq":0.7231404958677686,"rawCurrentLoad":24203,"rawCurrentLoadUser":13110,"rawCurrentLoadSystem":10218,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":96797,"rawCurrentLoadIrq":875,"cpus":[{"load":21.448742365534905,"loadUser":9.493005844880804,"loadSystem":10.570040060418991,"loadNice":0,"loadIdle":78.5512576344651,"loadIrq":1.3856964602351087,"rawLoad":6532,"rawLoadUser":2891,"rawLoadSystem":3219,"rawLoadNice":0,"rawLoadIdle":23922,"rawLoadIrq":422},{"load":18.3292350634678,"loadUser":11.0088389712235,"loadSystem":7.111052036950888,"loadNice":0,"loadIdle":81.67076493653221,"loadIrq":0.20934405529341396,"rawLoad":5516,"rawLoadUser":3313,"rawLoadSystem":2140,"rawLoadNice":0,"rawLoadIdle":24578,"rawLoadIrq":63},{"load":20.126141078838174,"loadUser":11.100414937759336,"loadSystem":8.71369294605809,"loadNice":0,"loadIdle":79.87385892116183,"loadIrq":0.3120331950207469,"rawLoad":6063,"rawLoadUser":3344,"rawLoadSystem":2625,"rawLoadNice":0,"rawLoadIdle":24062,"rawLoadIrq":94},{"load":20.087710620898868,"loadUser":11.74530946021697,"loadSystem":7.36637319879975,"loadNice":0,"loadIdle":79.91228937910113,"loadIrq":0.9760279618821511,"rawLoad":6092,"rawLoadUser":3562,"rawLoadSystem":2234,"rawLoadNice":0,"rawLoadIdle":24235,"rawLoadIrq":296}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":13,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":34,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":238733783,"rx_dropped":0,"rx_errors":0,"tx_bytes":24628543,"tx_dropped":0,"tx_errors":0,"rx_sec":2485.8622994652405,"tx_sec":752.0387700534759,"ms":29920}]', '{"total":10685313024,"free":4773543936,"used":5911769088,"active":5911769088,"available":4773543936,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (254, '2022-03-29 23:20:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56222777344,"available":71053373440,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":14.080101674493072,"currentLoadUser":7.517475303496711,"currentLoadSystem":5.493063521799771,"currentLoadNice":0,"currentLoadIdle":85.91989832550692,"currentLoadIrq":1.0695628491965898,"rawCurrentLoad":17061,"rawCurrentLoadUser":9109,"rawCurrentLoadSystem":6656,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":104110,"rawCurrentLoadIrq":1296,"cpus":[{"load":16.521082359122556,"loadUser":7.74661762774202,"loadSystem":7.185078155786155,"loadNice":0,"loadIdle":83.47891764087746,"loadIrq":1.589386575594378,"rawLoad":5031,"rawLoadUser":2359,"rawLoadSystem":2188,"rawLoadNice":0,"rawLoadIdle":25421,"rawLoadIrq":484},{"load":10.83577908217716,"loadUser":6.720250800426894,"loadSystem":4.065501600853789,"loadNice":0,"loadIdle":89.16422091782283,"loadIrq":0.05002668089647812,"rawLoad":3249,"rawLoadUser":2015,"rawLoadSystem":1219,"rawLoadNice":0,"rawLoadIdle":26735,"rawLoadIrq":15},{"load":13.430705394190873,"loadUser":8.142738589211618,"loadSystem":4.770124481327801,"loadNice":0,"loadIdle":86.56929460580913,"loadIrq":0.5178423236514523,"rawLoad":4046,"rawLoadUser":2453,"rawLoadSystem":1437,"rawLoadNice":0,"rawLoadIdle":26079,"rawLoadIrq":156},{"load":15.468801045409997,"loadUser":7.455080039202874,"loadSystem":5.919634106501143,"loadNice":0,"loadIdle":84.53119895459,"loadIrq":2.0940868997059785,"rawLoad":4735,"rawLoadUser":2282,"rawLoadSystem":1812,"rawLoadNice":0,"rawLoadIdle":25875,"rawLoadIrq":641}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":12,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":28,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":238785332,"rx_dropped":0,"rx_errors":0,"tx_bytes":24636362,"tx_dropped":0,"tx_errors":0,"rx_sec":1695.8581438957792,"tx_sec":257.2293318419581,"ms":30397}]', '{"total":10685313024,"free":4776984576,"used":5908328448,"active":5908328448,"available":4776984576,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (255, '2022-03-29 23:20:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56223068160,"available":71053082624,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":22.23504408321849,"currentLoadUser":12.790774901622196,"currentLoadSystem":8.963587759642685,"currentLoadNice":0,"currentLoadIdle":77.7649559167815,"currentLoadIrq":0.48068142195360886,"rawCurrentLoad":26783,"rawCurrentLoadUser":15407,"rawCurrentLoadSystem":10797,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":93671,"rawCurrentLoadIrq":579,"cpus":[{"load":23.515792955184388,"loadUser":11.473457913014718,"loadSystem":11.162559947081197,"loadNice":0,"loadIdle":76.4842070448156,"loadIrq":0.8797750950884735,"rawLoad":7110,"rawLoadUser":3469,"rawLoadSystem":3375,"rawLoadNice":0,"rawLoadIdle":23125,"rawLoadIrq":266},{"load":19.719623056175287,"loadUser":12.487096666777662,"loadSystem":7.022743165395758,"loadNice":0,"loadIdle":80.28037694382472,"loadIrq":0.20978322400186472,"rawLoad":5922,"rawLoadUser":3750,"rawLoadSystem":2109,"rawLoadNice":0,"rawLoadIdle":24109,"rawLoadIrq":63},{"load":23.650334297974254,"loadUser":12.683364933639357,"loadSystem":10.654292652097261,"loadNice":0,"loadIdle":76.34966570202575,"loadIrq":0.31267671223763427,"rawLoad":7110,"rawLoadUser":3813,"rawLoadSystem":3203,"rawLoadNice":0,"rawLoadIdle":22953,"rawLoadIrq":94},{"load":22.0448132780083,"loadUser":14.522821576763487,"loadSystem":7.004149377593361,"loadNice":0,"loadIdle":77.9551867219917,"loadIrq":0.5178423236514523,"rawLoad":6641,"rawLoadUser":4375,"rawLoadSystem":2110,"rawLoadNice":0,"rawLoadIdle":23484,"rawLoadIrq":156}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":11,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":238910006,"rx_dropped":0,"rx_errors":0,"tx_bytes":24668214,"tx_dropped":0,"tx_errors":0,"rx_sec":4205.991498549356,"tx_sec":1074.5563727143917,"ms":29642}]', '{"total":10685313024,"free":4772855808,"used":5912457216,"active":5912457216,"available":4772855808,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (256, '2022-03-29 23:21:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56219676672,"available":71056474112,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":21.662231961183284,"currentLoadUser":12.420195895906616,"currentLoadSystem":8.147226730152978,"currentLoadNice":0,"currentLoadIdle":78.33776803881672,"currentLoadIrq":1.0948093351236912,"rawCurrentLoad":26296,"rawCurrentLoadUser":15077,"rawCurrentLoadSystem":9890,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":95095,"rawCurrentLoadIrq":1329,"cpus":[{"load":24.066322192425925,"loadUser":11.80260317875597,"loadSystem":10.422525999084309,"loadNice":0,"loadIdle":75.93367780757407,"loadIrq":1.8411930145856497,"rawLoad":7359,"rawLoadUser":3609,"rawLoadSystem":3187,"rawLoadNice":0,"rawLoadIdle":23219,"rawLoadIrq":563},{"load":19.39627916264519,"loadUser":13.052883815355942,"loadSystem":6.240223649615602,"loadNice":0,"loadIdle":80.60372083735481,"loadIrq":0.10317169767364463,"rawLoad":5828,"rawLoadUser":3922,"rawLoadSystem":1875,"rawLoadNice":0,"rawLoadIdle":24219,"rawLoadIrq":31},{"load":21.584735656552272,"loadUser":12.524844308996952,"loadSystem":8.490128527891876,"loadNice":0,"loadIdle":78.41526434344773,"loadIrq":0.5697628196634424,"rawLoad":6516,"rawLoadUser":3781,"rawLoadSystem":2563,"rawLoadNice":0,"rawLoadIdle":23672,"rawLoadIrq":172},{"load":21.561253188566944,"loadUser":12.312773889724639,"loadSystem":7.407286284256655,"loadNice":0,"loadIdle":78.43874681143306,"loadIrq":1.8411930145856497,"rawLoad":6593,"rawLoadUser":3765,"rawLoadSystem":2265,"rawLoadNice":0,"rawLoadIdle":23985,"rawLoadIrq":563}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":17,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":34,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":239029670,"rx_dropped":0,"rx_errors":0,"tx_bytes":24687921,"tx_dropped":0,"tx_errors":0,"rx_sec":4013.684846045482,"tx_sec":660.9981887703764,"ms":29814}]', '{"total":10685313024,"free":4723785728,"used":5961527296,"active":5961527296,"available":4723785728,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (257, '2022-03-29 23:21:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56219938816,"available":71056211968,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":17.625296259899418,"currentLoadUser":10.490284326922284,"currentLoadSystem":6.4908789112500305,"currentLoadNice":0,"currentLoadIdle":82.37470374010059,"currentLoadIrq":0.6441330217271023,"rawCurrentLoad":21343,"rawCurrentLoadUser":12703,"rawCurrentLoadSystem":7860,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":99750,"rawCurrentLoadIrq":780,"cpus":[{"load":19.874428848492816,"loadUser":10.170605831497978,"loadSystem":8.576312415765425,"loadNice":0,"loadIdle":80.12557115150717,"loadIrq":1.127510601229414,"rawLoad":6046,"rawLoadUser":3094,"rawLoadSystem":2609,"rawLoadNice":0,"rawLoadIdle":24375,"rawLoadIrq":343},{"load":14.910735064330597,"loadUser":9.039529239668873,"loadSystem":5.871205824661724,"loadNice":0,"loadIdle":85.0892649356694,"loadIrq":0,"rawLoad":4485,"rawLoadUser":2719,"rawLoadSystem":1766,"rawLoadNice":0,"rawLoadIdle":25594,"rawLoadIrq":0},{"load":17.38350659271314,"loadUser":11.415191470988741,"loadSystem":5.8653558736590385,"loadNice":0,"loadIdle":82.61649340728687,"loadIrq":0.10295924806536251,"rawLoad":5234,"rawLoadUser":3437,"rawLoadSystem":1766,"rawLoadNice":0,"rawLoadIdle":24875,"rawLoadIrq":31},{"load":18.298123605826007,"loadUser":11.327253641254428,"loadSystem":5.639023750164021,"loadNice":0,"loadIdle":81.701876394174,"loadIrq":1.331846214407558,"rawLoad":5578,"rawLoadUser":3453,"rawLoadSystem":1719,"rawLoadNice":0,"rawLoadIdle":24906,"rawLoadIrq":406}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":14,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":239066474,"rx_dropped":0,"rx_errors":0,"tx_bytes":24702488,"tx_dropped":0,"tx_errors":0,"rx_sec":1218.5544482336193,"tx_sec":482.3030824752508,"ms":30203}]', '{"total":10685313024,"free":4739817472,"used":5945495552,"active":5945495552,"available":4739817472,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (258, '2022-03-29 23:22:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56222347264,"available":71053803520,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":24.731413129448985,"currentLoadUser":14.792051146849461,"currentLoadSystem":8.96058528868969,"currentLoadNice":0,"currentLoadIdle":75.26858687055102,"currentLoadIrq":0.9787766939098339,"rawCurrentLoad":30018,"rawCurrentLoadUser":17954,"rawCurrentLoadSystem":10876,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":91358,"rawCurrentLoadIrq":1188,"cpus":[{"load":27.04816123544039,"loadUser":13.650045805522836,"loadSystem":11.709854731056145,"loadNice":0,"loadIdle":72.95183876455962,"loadIrq":1.6882606988614057,"rawLoad":8267,"rawLoadUser":4172,"rawLoadSystem":3579,"rawLoadNice":0,"rawLoadIdle":22297,"rawLoadIrq":516},{"load":21.582853529470498,"loadUser":14.8733650614038,"loadSystem":6.709488468066696,"loadNice":0,"loadIdle":78.4171464705295,"loadIrq":0,"rawLoad":6485,"rawLoadUser":4469,"rawLoadSystem":2016,"rawLoadNice":0,"rawLoadIdle":23562,"rawLoadIrq":0},{"load":25.259217543975883,"loadUser":16.20233875509325,"loadSystem":8.589790307085831,"loadNice":0,"loadIdle":74.7407824560241,"loadIrq":0.4670884817967999,"rawLoad":7625,"rawLoadUser":4891,"rawLoadSystem":2593,"rawLoadNice":0,"rawLoadIdle":22562,"rawLoadIrq":141},{"load":24.98855386225391,"loadUser":14.461377460919616,"loadSystem":8.790633788998626,"loadNice":0,"loadIdle":75.01144613774609,"loadIrq":1.7365426123356662,"rawLoad":7641,"rawLoadUser":4422,"rawLoadSystem":2688,"rawLoadNice":0,"rawLoadIdle":22937,"rawLoadIrq":531}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":20,"LISTEN":34,"CLOSE_WAIT":4,"UNKNOWN":37,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":3}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":239195068,"rx_dropped":0,"rx_errors":0,"tx_bytes":24741149,"tx_dropped":0,"tx_errors":0,"rx_sec":4226.867830260001,"tx_sec":1270.7819741642836,"ms":30423}]', '{"total":10685313024,"free":4691353600,"used":5993959424,"active":5993959424,"available":4691353600,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (259, '2022-03-29 23:22:47', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56222806016,"available":71053344768,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":26.396056445020598,"currentLoadUser":16.152391647193852,"currentLoadSystem":9.327960762618797,"currentLoadNice":0,"currentLoadIdle":73.6039435549794,"currentLoadIrq":0.9157040352079532,"rawCurrentLoad":31968,"rawCurrentLoadUser":19562,"rawCurrentLoadSystem":11297,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":89141,"rawCurrentLoadIrq":1109,"cpus":[{"load":28.769063539642282,"loadUser":16.05784116736388,"loadSystem":11.52870647913304,"loadNice":0,"loadIdle":71.23093646035773,"loadIrq":1.1825158931453605,"rawLoad":8734,"rawLoadUser":4875,"rawLoadSystem":3500,"rawLoadNice":0,"rawLoadIdle":21625,"rawLoadIrq":359},{"load":22.592037314675995,"loadUser":14.679327003165085,"loadSystem":7.859403631517574,"loadNice":0,"loadIdle":77.40796268532401,"loadIrq":0.053306679993336666,"rawLoad":6781,"rawLoadUser":4406,"rawLoadSystem":2359,"rawLoadNice":0,"rawLoadIdle":23234,"rawLoadIrq":16},{"load":26.914668080031802,"loadUser":17.649397111435007,"loadSystem":8.645819530939445,"loadNice":0,"loadIdle":73.0853319199682,"loadIrq":0.6194514376573473,"rawLoad":8125,"rawLoadUser":5328,"rawLoadSystem":2610,"rawLoadNice":0,"rawLoadIdle":22063,"rawLoadIrq":187},{"load":27.26290634104822,"loadUser":16.214358202114774,"loadSystem":9.257864929452975,"loadNice":0,"loadIdle":72.73709365895178,"loadIrq":1.7906832094804728,"rawLoad":8328,"rawLoadUser":4953,"rawLoadSystem":2828,"rawLoadNice":0,"rawLoadIdle":22219,"rawLoadIrq":547}]}', '{"ESTABLISHED":29,"CLOSE":0,"TIME_WAIT":26,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":239408890,"rx_dropped":0,"rx_errors":0,"tx_bytes":24788055,"tx_dropped":0,"tx_errors":0,"rx_sec":7127.6375879195975,"tx_sec":1563.5854528484283,"ms":29999}]', '{"total":10685313024,"free":4608233472,"used":6077079552,"active":6077079552,"available":4608233472,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (260, '2022-03-29 23:23:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56223526912,"available":71052623872,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":21.334116712455728,"currentLoadUser":12.257952401443182,"currentLoadSystem":8.325609877197047,"currentLoadNice":0,"currentLoadIdle":78.66588328754428,"currentLoadIrq":0.7505544338154977,"rawCurrentLoad":25781,"rawCurrentLoadUser":14813,"rawCurrentLoadSystem":10061,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":95063,"rawCurrentLoadIrq":907,"cpus":[{"load":22.559968281239676,"loadUser":11.977136060265645,"loadSystem":9.65109363642371,"loadNice":0,"loadIdle":77.44003171876032,"loadIrq":0.9317385845503204,"rawLoad":6828,"rawLoadUser":3625,"rawLoadSystem":2921,"rawLoadNice":0,"rawLoadIdle":23438,"rawLoadIrq":282},{"load":19.239857556494826,"loadUser":11.545245781608813,"loadSystem":7.488268379538722,"loadNice":0,"loadIdle":80.76014244350517,"loadIrq":0.20634339534728927,"rawLoad":5781,"rawLoadUser":3469,"rawLoadSystem":2250,"rawLoadNice":0,"rawLoadIdle":24266,"rawLoadIrq":62},{"load":21.836409507369538,"loadUser":12.86349754348692,"loadSystem":8.504846633913159,"loadNice":0,"loadIdle":78.16359049263046,"loadIrq":0.46806532996945954,"rawLoad":6578,"rawLoadUser":3875,"rawLoadSystem":2562,"rawLoadNice":0,"rawLoadIdle":23546,"rawLoadIrq":141},{"load":21.685796033808007,"loadUser":12.641825895353042,"loadSystem":7.6561318117538715,"loadNice":0,"loadIdle":78.314203966192,"loadIrq":1.3878383267010885,"rawLoad":6594,"rawLoadUser":3844,"rawLoadSystem":2328,"rawLoadNice":0,"rawLoadIdle":23813,"rawLoadIrq":422}]}', '{"ESTABLISHED":28,"CLOSE":0,"TIME_WAIT":23,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":28,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":239461440,"rx_dropped":0,"rx_errors":0,"tx_bytes":24806228,"tx_dropped":0,"tx_errors":0,"rx_sec":1776.7183960509853,"tx_sec":614.4301315211144,"ms":29577}]', '{"total":10685313024,"free":4600123392,"used":6085189632,"active":6085189632,"available":4600123392,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (261, '2022-03-29 23:23:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56223584256,"available":71052566528,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":17.807592874302767,"currentLoadUser":10.403418206605318,"currentLoadSystem":6.845557245816604,"currentLoadNice":0,"currentLoadIdle":82.19240712569723,"currentLoadIrq":0.5586174218808448,"rawCurrentLoad":21422,"rawCurrentLoadUser":12515,"rawCurrentLoadSystem":8235,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":98875,"rawCurrentLoadIrq":672,"cpus":[{"load":20.453568713015308,"loadUser":9.34906939072366,"loadSystem":9.97057753975338,"loadNice":0,"loadIdle":79.5464312869847,"loadIrq":1.1339217825382657,"rawLoad":6187,"rawLoadUser":2828,"rawLoadSystem":3016,"rawLoadNice":0,"rawLoadIdle":24062,"rawLoadIrq":343},{"load":15.19617672615467,"loadUser":10.129670476572421,"loadSystem":5.013033888109083,"loadNice":0,"loadIdle":84.80382327384534,"loadIrq":0.05347236147316356,"rawLoad":4547,"rawLoadUser":3031,"rawLoadSystem":1500,"rawLoadNice":0,"rawLoadIdle":25375,"rawLoadIrq":16},{"load":17.58028977765908,"loadUser":11.213861253922682,"loadSystem":6.20952126594111,"loadNice":0,"loadIdle":82.41971022234092,"loadIrq":0.1569072577952861,"rawLoad":5266,"rawLoadUser":3359,"rawLoadSystem":1860,"rawLoadNice":0,"rawLoadIdle":24688,"rawLoadIrq":47},{"load":17.970303592734986,"loadUser":10.927349860798092,"loadSystem":6.1613416412567945,"loadNice":0,"loadIdle":82.02969640726502,"loadIrq":0.8816120906801008,"rawLoad":5422,"rawLoadUser":3297,"rawLoadSystem":1859,"rawLoadNice":0,"rawLoadIdle":24750,"rawLoadIrq":266}]}', '{"ESTABLISHED":30,"CLOSE":0,"TIME_WAIT":28,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":239541683,"rx_dropped":0,"rx_errors":0,"tx_bytes":24832738,"tx_dropped":0,"tx_errors":0,"rx_sec":2668.895097452272,"tx_sec":881.726867558039,"ms":30066}]', '{"total":10685313024,"free":4568993792,"used":6116319232,"active":6116319232,"available":4568993792,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (262, '2022-03-29 23:24:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56223920128,"available":71052230656,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":14.420888231677937,"currentLoadUser":8.579925897619086,"currentLoadSystem":5.581770149700102,"currentLoadNice":0,"currentLoadIdle":85.57911176832206,"currentLoadIrq":0.2591921843587486,"rawCurrentLoad":17359,"rawCurrentLoadUser":10328,"rawCurrentLoadSystem":6719,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":103015,"rawCurrentLoadIrq":312,"cpus":[{"load":15.099771666832126,"loadUser":8.067771931566234,"loadSystem":6.360236937026374,"loadNice":0,"loadIdle":84.90022833316787,"loadIrq":0.6717627982395182,"rawLoad":4563,"rawLoadUser":2438,"rawLoadSystem":1922,"rawLoadNice":0,"rawLoadIdle":25656,"rawLoadIrq":203},{"load":13.316683316683317,"loadUser":8.531468531468532,"loadSystem":4.735264735264735,"loadNice":0,"loadIdle":86.68331668331668,"loadIrq":0.04995004995004995,"rawLoad":3999,"rawLoadUser":2562,"rawLoadSystem":1422,"rawLoadNice":0,"rawLoadIdle":26031,"rawLoadIrq":15},{"load":14.709110867178923,"loadUser":8.315870006320061,"loadSystem":6.236902504740046,"loadNice":0,"loadIdle":85.29088913282108,"loadIrq":0.15633835611881713,"rawLoad":4422,"rawLoadUser":2500,"rawLoadSystem":1875,"rawLoadNice":0,"rawLoadIdle":25641,"rawLoadIrq":47},{"load":14.553256603020426,"loadUser":9.407225068192403,"loadSystem":4.989687978178431,"loadNice":0,"loadIdle":85.44674339697957,"loadIrq":0.15634355664959085,"rawLoad":4375,"rawLoadUser":2828,"rawLoadSystem":1500,"rawLoadNice":0,"rawLoadIdle":25687,"rawLoadIrq":47}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":32,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":239624387,"rx_dropped":0,"rx_errors":0,"tx_bytes":24855071,"tx_dropped":0,"tx_errors":0,"rx_sec":2777.7255323436552,"tx_sec":750.0839658762678,"ms":29774}]', '{"total":10685313024,"free":4604731392,"used":6080581632,"active":6080581632,"available":4604731392,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (263, '2022-03-29 23:24:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56223985664,"available":71052165120,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":7.177089226877892,"currentLoadUser":3.0693580057909275,"currentLoadSystem":4.00372749359337,"currentLoadNice":0,"currentLoadIdle":92.82291077312212,"currentLoadIrq":0.10400372749359338,"rawCurrentLoad":8626,"rawCurrentLoadUser":3689,"rawCurrentLoadSystem":4812,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":111562,"rawCurrentLoadIrq":125,"cpus":[{"load":8.344392833443928,"loadUser":2.850033178500332,"loadSystem":5.079628400796285,"loadNice":0,"loadIdle":91.65560716655608,"loadIrq":0.41473125414731254,"rawLoad":2515,"rawLoadUser":859,"rawLoadSystem":1531,"rawLoadNice":0,"rawLoadIdle":27625,"rawLoadIrq":125},{"load":6.040111940298507,"loadUser":3.28158315565032,"loadSystem":2.758528784648188,"loadNice":0,"loadIdle":93.95988805970148,"loadIrq":0,"rawLoad":1813,"rawLoadUser":985,"rawLoadSystem":828,"rawLoadNice":0,"rawLoadIdle":28203,"rawLoadIrq":0},{"load":7.236381809095452,"loadUser":3.1784107946026987,"loadSystem":4.057971014492753,"loadNice":0,"loadIdle":92.76361819090455,"loadIrq":0,"rawLoad":2172,"rawLoadUser":954,"rawLoadSystem":1218,"rawLoadNice":0,"rawLoadIdle":27843,"rawLoadIrq":0},{"load":7.082653163207516,"loadUser":2.9683179531598762,"loadSystem":4.11433521004764,"loadNice":0,"loadIdle":92.91734683679248,"loadIrq":0,"rawLoad":2126,"rawLoadUser":891,"rawLoadSystem":1235,"rawLoadNice":0,"rawLoadIdle":27891,"rawLoadIrq":0}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":22,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":22,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":239661266,"rx_dropped":0,"rx_errors":0,"tx_bytes":24858847,"tx_dropped":0,"tx_errors":0,"rx_sec":1229.8329276019608,"tx_sec":125.92123253409811,"ms":29987}]', '{"total":10685313024,"free":4792700928,"used":5892612096,"active":5892612096,"available":4792700928,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (264, '2022-03-29 23:25:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56224010240,"available":71052140544,"use":44.17,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":15.56264109282054,"currentLoadUser":8.251355314976848,"currentLoadSystem":6.230329395092853,"currentLoadNice":0,"currentLoadIdle":84.43735890717946,"currentLoadIrq":1.0809563827508364,"rawCurrentLoad":18889,"rawCurrentLoadUser":10015,"rawCurrentLoadSystem":7562,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":102485,"rawCurrentLoadIrq":1312,"cpus":[{"load":16.855695375061288,"loadUser":7.507762706324563,"loadSystem":7.455466579506455,"loadNice":0,"loadIdle":83.14430462493871,"loadIrq":1.8924660892302665,"rawLoad":5157,"rawLoadUser":2297,"rawLoadSystem":2281,"rawLoadNice":0,"rawLoadIdle":25438,"rawLoadIrq":579},{"load":13.482809168443497,"loadUser":8.485474413646056,"loadSystem":4.997334754797441,"loadNice":0,"loadIdle":86.5171908315565,"loadIrq":0,"rawLoad":4047,"rawLoadUser":2547,"rawLoadSystem":1500,"rawLoadNice":0,"rawLoadIdle":25969,"rawLoadIrq":0},{"load":15.045834994021522,"loadUser":8.509366281387006,"loadSystem":6.227580709445994,"loadNice":0,"loadIdle":84.95416500597848,"loadIrq":0.30888800318852133,"rawLoad":4530,"rawLoadUser":2562,"rawLoadSystem":1875,"rawLoadNice":0,"rawLoadIdle":25578,"rawLoadIrq":93},{"load":16.816180068504323,"loadUser":8.510846517696951,"loadSystem":6.217582776056108,"loadNice":0,"loadIdle":83.18381993149568,"loadIrq":2.0877507747512642,"rawLoad":5155,"rawLoadUser":2609,"rawLoadSystem":1906,"rawLoadNice":0,"rawLoadIdle":25500,"rawLoadIrq":640}]}', '{"ESTABLISHED":20,"CLOSE":0,"TIME_WAIT":44,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":239704235,"rx_dropped":0,"rx_errors":0,"tx_bytes":24876971,"tx_dropped":0,"tx_errors":0,"rx_sec":1419.8057097541634,"tx_sec":598.8633359767381,"ms":30264}]', '{"total":10685313024,"free":4737114112,"used":5948198912,"active":5948198912,"available":4737114112,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (265, '2022-03-29 23:25:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56224239616,"available":71051911168,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":14.503461902468992,"currentLoadUser":7.886828166769057,"currentLoadSystem":6.291198299765886,"currentLoadNice":0,"currentLoadIdle":85.496538097531,"currentLoadIrq":0.3254354359340495,"rawCurrentLoad":17470,"rawCurrentLoadUser":9500,"rawCurrentLoadSystem":7578,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":102984,"rawCurrentLoadIrq":392,"cpus":[{"load":15.693358080339387,"loadUser":7.042953731936895,"loadSystem":8.133368686199125,"loadNice":0,"loadIdle":84.3066419196606,"loadIrq":0.5170356622033674,"rawLoad":4735,"rawLoadUser":2125,"rawLoadSystem":2454,"rawLoadNice":0,"rawLoadIdle":25437,"rawLoadIrq":156},{"load":12.793290511531932,"loadUser":8.163876593337104,"loadSystem":4.522914101241389,"loadNice":0,"loadIdle":87.20670948846806,"loadIrq":0.1064998169534396,"rawLoad":3844,"rawLoadUser":2453,"rawLoadSystem":1359,"rawLoadNice":0,"rawLoadIdle":26203,"rawLoadIrq":32},{"load":14.353700745473908,"loadUser":7.331602768903088,"loadSystem":6.915601703940362,"loadNice":0,"loadIdle":85.6462992545261,"loadIrq":0.10649627263045794,"rawLoad":4313,"rawLoadUser":2203,"rawLoadSystem":2078,"rawLoadNice":0,"rawLoadIdle":25735,"rawLoadIrq":32},{"load":15.165468579189717,"loadUser":9.007188524861695,"loadSystem":5.588498360221288,"loadNice":0,"loadIdle":84.83453142081028,"loadIrq":0.5697816941067347,"rawLoad":4578,"rawLoadUser":2719,"rawLoadSystem":1687,"rawLoadNice":0,"rawLoadIdle":25609,"rawLoadIrq":172}]}', '{"ESTABLISHED":18,"CLOSE":0,"TIME_WAIT":41,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":239740372,"rx_dropped":0,"rx_errors":0,"tx_bytes":24884194,"tx_dropped":0,"tx_errors":0,"rx_sec":1187.5061614800695,"tx_sec":237.35664289704576,"ms":30431}]', '{"total":10685313024,"free":4772098048,"used":5913190400,"active":5913182208,"available":4772130816,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (266, '2022-03-29 23:26:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56224444416,"available":71051706368,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.952038847868025,"currentLoadUser":6.742666134504091,"currentLoadSystem":4.98985565090135,"currentLoadNice":0,"currentLoadIdle":88.04796115213198,"currentLoadIrq":0.2195170624625823,"rawCurrentLoad":14374,"rawCurrentLoadUser":8109,"rawCurrentLoadSystem":6001,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":105890,"rawCurrentLoadIrq":264,"cpus":[{"load":13.059491024917879,"loadUser":6.221175221473838,"loadSystem":6.37380138690733,"loadNice":0,"loadIdle":86.94050897508212,"loadIrq":0.46451441653671327,"rawLoad":3936,"rawLoadUser":1875,"rawLoadSystem":1921,"rawLoadNice":0,"rawLoadIdle":26203,"rawLoadIrq":140},{"load":11.03448275862069,"loadUser":6.973180076628352,"loadSystem":4.011327669498584,"loadNice":0,"loadIdle":88.96551724137932,"loadIrq":0.04997501249375312,"rawLoad":3312,"rawLoadUser":2093,"rawLoadSystem":1204,"rawLoadNice":0,"rawLoadIdle":26703,"rawLoadIrq":15},{"load":12.033333333333333,"loadUser":6.823333333333332,"loadSystem":5.21,"loadNice":0,"loadIdle":87.96666666666667,"loadIrq":0,"rawLoad":3610,"rawLoadUser":2047,"rawLoadSystem":1563,"rawLoadNice":0,"rawLoadIdle":26390,"rawLoadIrq":0},{"load":11.67718365991365,"loadUser":6.954500166057788,"loadSystem":4.36067751577549,"loadNice":0,"loadIdle":88.32281634008635,"loadIrq":0.36200597808037194,"rawLoad":3516,"rawLoadUser":2094,"rawLoadSystem":1313,"rawLoadNice":0,"rawLoadIdle":26594,"rawLoadIrq":109}]}', '{"ESTABLISHED":20,"CLOSE":0,"TIME_WAIT":34,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":2}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":239836535,"rx_dropped":0,"rx_errors":0,"tx_bytes":24908713,"tx_dropped":0,"tx_errors":0,"rx_sec":3225.6473903126257,"tx_sec":822.4540453508654,"ms":29812}]', '{"total":10685313024,"free":4776693760,"used":5908619264,"active":5908619264,"available":4776693760,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (267, '2022-03-29 23:26:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56224882688,"available":71051268096,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":19.544792035507538,"currentLoadUser":10.961882097184594,"currentLoadSystem":7.5017086767842285,"currentLoadNice":0,"currentLoadIdle":80.45520796449246,"currentLoadIrq":1.0812012615387148,"rawCurrentLoad":23735,"rawCurrentLoadUser":13312,"rawCurrentLoadSystem":9110,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":97704,"rawCurrentLoadIrq":1313,"cpus":[{"load":21.92714992951051,"loadUser":10.858660371791089,"loadSystem":9.530835054588374,"loadNice":0,"loadIdle":78.0728500704895,"loadIrq":1.537654503131045,"rawLoad":6688,"rawLoadUser":3312,"rawLoadSystem":2907,"rawLoadNice":0,"rawLoadIdle":23813,"rawLoadIrq":469},{"load":16.564213324472504,"loadUser":10.02159827213823,"loadSystem":6.3332779531483645,"loadNice":0,"loadIdle":83.4357866755275,"loadIrq":0.20933709918591129,"rawLoad":4985,"rawLoadUser":3016,"rawLoadSystem":1906,"rawLoadNice":0,"rawLoadIdle":25110,"rawLoadIrq":63},{"load":18.59235016033588,"loadUser":11.517736123508215,"loadSystem":6.353929055505968,"loadNice":0,"loadIdle":81.40764983966412,"loadIrq":0.7206849813216966,"rawLoad":5624,"rawLoadUser":3484,"rawLoadSystem":1922,"rawLoadNice":0,"rawLoadIdle":24625,"rawLoadIrq":218},{"load":21.043341831731713,"loadUser":11.440151663724913,"loadSystem":7.76296005752762,"loadNice":0,"loadIdle":78.95665816826829,"loadIrq":1.840230110479179,"rawLoad":6438,"rawLoadUser":3500,"rawLoadSystem":2375,"rawLoadNice":0,"rawLoadIdle":24156,"rawLoadIrq":563}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":35,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":35,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":239995390,"rx_dropped":0,"rx_errors":0,"tx_bytes":24953001,"tx_dropped":0,"tx_errors":0,"rx_sec":5332.673134378461,"tx_sec":1486.7232871194065,"ms":29789}]', '{"total":10685313024,"free":4722208768,"used":5963104256,"active":5963104256,"available":4722208768,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (268, '2022-03-29 23:27:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56225013760,"available":71051137024,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":16.711541320471103,"currentLoadUser":9.330349031203026,"currentLoadSystem":6.542063793587605,"currentLoadNice":0,"currentLoadIdle":83.2884586795289,"currentLoadIrq":0.8391284956804703,"rawCurrentLoad":20234,"rawCurrentLoadUser":11297,"rawCurrentLoadSystem":7921,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":100844,"rawCurrentLoadIrq":1016,"cpus":[{"load":19.413582275984485,"loadUser":9.039510880284004,"loadSystem":9.039510880284004,"loadNice":0,"loadIdle":80.58641772401552,"loadIrq":1.3345605154164748,"rawLoad":5906,"rawLoadUser":2750,"rawLoadSystem":2750,"rawLoadNice":0,"rawLoadIdle":24516,"rawLoadIrq":406},{"load":14.7594970394518,"loadUser":8.731953961812254,"loadSystem":5.871199520989954,"loadNice":0,"loadIdle":85.2405029605482,"loadIrq":0.15634355664959085,"rawLoad":4437,"rawLoadUser":2625,"rawLoadSystem":1765,"rawLoadNice":0,"rawLoadIdle":25625,"rawLoadIrq":47},{"load":15.31052806376619,"loadUser":9.445366987711722,"loadSystem":5.552972434407174,"loadNice":0,"loadIdle":84.6894719362338,"loadIrq":0.31218864164729326,"rawLoad":4610,"rawLoadUser":2844,"rawLoadSystem":1672,"rawLoadNice":0,"rawLoadIdle":25500,"rawLoadIrq":94},{"load":17.32384201548353,"loadUser":10.097100118094739,"loadSystem":5.688229891090408,"loadNice":0,"loadIdle":82.67615798451646,"loadIrq":1.538512006298386,"rawLoad":5281,"rawLoadUser":3078,"rawLoadSystem":1734,"rawLoadNice":0,"rawLoadIdle":25203,"rawLoadIrq":469}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":11,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":36,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":240066701,"rx_dropped":0,"rx_errors":0,"tx_bytes":24975825,"tx_dropped":0,"tx_errors":0,"rx_sec":2383.468698820148,"tx_sec":762.8597212473679,"ms":29919}]', '{"total":10685313024,"free":4713672704,"used":5971640320,"active":5971640320,"available":4713672704,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (269, '2022-03-29 23:27:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56225079296,"available":71051071488,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":14.74748480924395,"currentLoadUser":8.72845900986154,"currentLoadSystem":5.5259487996812435,"currentLoadNice":0,"currentLoadIdle":85.25251519075606,"currentLoadIrq":0.4930769997011654,"rawCurrentLoad":17766,"rawCurrentLoadUser":10515,"rawCurrentLoadSystem":6657,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":102702,"rawCurrentLoadIrq":594,"cpus":[{"load":16.394790501874628,"loadUser":7.810958363480893,"loadSystem":7.143326974939157,"loadNice":0,"loadIdle":83.60520949812536,"loadIrq":1.4405051634545813,"rawLoad":4985,"rawLoadUser":2375,"rawLoadSystem":2172,"rawLoadNice":0,"rawLoadIdle":25421,"rawLoadIrq":438},{"load":13.14024491975041,"loadUser":8.705662517935199,"loadSystem":4.434582401815209,"loadNice":0,"loadIdle":86.85975508024958,"loadIrq":0,"rawLoad":3938,"rawLoadUser":2609,"rawLoadSystem":1329,"rawLoadNice":0,"rawLoadIdle":26031,"rawLoadIrq":0},{"load":14.729302015658838,"loadUser":9.265367316341829,"loadSystem":5.307346326836582,"loadNice":0,"loadIdle":85.27069798434115,"loadIrq":0.15658837248042645,"rawLoad":4421,"rawLoadUser":2781,"rawLoadSystem":1593,"rawLoadNice":0,"rawLoadIdle":25594,"rawLoadIrq":47},{"load":14.701775384001595,"loadUser":9.142895139304475,"loadSystem":5.196489128266507,"loadNice":0,"loadIdle":85.29822461599841,"loadIrq":0.3623911164306137,"rawLoad":4422,"rawLoadUser":2750,"rawLoadSystem":1563,"rawLoadNice":0,"rawLoadIdle":25656,"rawLoadIrq":109}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":9,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":22,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":240106017,"rx_dropped":0,"rx_errors":0,"tx_bytes":24987100,"tx_dropped":0,"tx_errors":0,"rx_sec":1314.5207128289144,"tx_sec":376.9768297168077,"ms":29909}]', '{"total":10685313024,"free":4734926848,"used":5950386176,"active":5950386176,"available":4734926848,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (270, '2022-03-29 23:28:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56225144832,"available":71051005952,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.851211791390757,"currentLoadUser":6.828737360729152,"currentLoadSystem":4.828056065603736,"currentLoadNice":0,"currentLoadIdle":88.14878820860925,"currentLoadIrq":0.19441836505786855,"rawCurrentLoad":14264,"rawCurrentLoadUser":8219,"rawCurrentLoadSystem":5811,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":106095,"rawCurrentLoadIrq":234,"cpus":[{"load":13.456123496869512,"loadUser":7.248153178520555,"loadSystem":5.691191572531222,"loadNice":0,"loadIdle":86.54387650313049,"loadIrq":0.5167787458177361,"rawLoad":4062,"rawLoadUser":2188,"rawLoadSystem":1718,"rawLoadNice":0,"rawLoadIdle":26125,"rawLoadIrq":156},{"load":10.553817479864207,"loadUser":6.137256207149038,"loadSystem":4.366637822006257,"loadNice":0,"loadIdle":89.44618252013579,"loadIrq":0.049923450708913,"rawLoad":3171,"rawLoadUser":1844,"rawLoadSystem":1312,"rawLoadNice":0,"rawLoadIdle":26875,"rawLoadIrq":15},{"load":12.273695420660276,"loadUser":7.072018104366347,"loadSystem":5.1484291799787005,"loadNice":0,"loadIdle":87.72630457933973,"loadIrq":0.05324813631522897,"rawLoad":3688,"rawLoadUser":2125,"rawLoadSystem":1547,"rawLoadNice":0,"rawLoadIdle":26360,"rawLoadIrq":16},{"load":11.114435800252677,"loadUser":6.855509009907573,"loadSystem":4.102666400691535,"loadNice":0,"loadIdle":88.88556419974732,"loadIrq":0.1562603896535674,"rawLoad":3343,"rawLoadUser":2062,"rawLoadSystem":1234,"rawLoadNice":0,"rawLoadIdle":26735,"rawLoadIrq":47}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":7,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":24,"SYN_SENT":2,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":240162685,"rx_dropped":0,"rx_errors":0,"tx_bytes":25001475,"tx_dropped":0,"tx_errors":0,"rx_sec":1885.163007318696,"tx_sec":478.21024617431806,"ms":30060}]', '{"total":10685313024,"free":4765724672,"used":5919588352,"active":5919588352,"available":4765724672,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (271, '2022-03-29 23:28:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56228274176,"available":71047876608,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":16.387253434454312,"currentLoadUser":10.240162325782523,"currentLoadSystem":5.939194358513788,"currentLoadNice":0,"currentLoadIdle":83.61274656554569,"currentLoadIrq":0.20789675015800155,"rawCurrentLoad":19706,"rawCurrentLoadUser":12314,"rawCurrentLoadSystem":7142,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":100546,"rawCurrentLoadIrq":250,"cpus":[{"load":17.55874457296258,"loadUser":10.25420077552779,"loadSystem":6.7344977297583934,"loadNice":0,"loadIdle":82.44125542703742,"loadIrq":0.5700460676763994,"rawLoad":5298,"rawLoadUser":3094,"rawLoadSystem":2032,"rawLoadNice":0,"rawLoadIdle":24875,"rawLoadIrq":172},{"load":15.73,"loadUser":11.043333333333333,"loadSystem":4.6866666666666665,"loadNice":0,"loadIdle":84.27,"loadIrq":0,"rawLoad":4719,"rawLoadUser":3313,"rawLoadSystem":1406,"rawLoadNice":0,"rawLoadIdle":25281,"rawLoadIrq":0},{"load":16.599513835703107,"loadUser":9.366987446305485,"loadSystem":7.129299723618927,"loadNice":0,"loadIdle":83.4004861642969,"loadIrq":0.10322666577869534,"rawLoad":4985,"rawLoadUser":2813,"rawLoadSystem":2141,"rawLoadNice":0,"rawLoadIdle":25046,"rawLoadIrq":31},{"load":15.654952076677317,"loadUser":10.296858359957401,"loadSystem":5.20167731629393,"loadNice":0,"loadIdle":84.34504792332268,"loadIrq":0.1564164004259851,"rawLoad":4704,"rawLoadUser":3094,"rawLoadSystem":1563,"rawLoadNice":0,"rawLoadIdle":25344,"rawLoadIrq":47}]}', '{"ESTABLISHED":27,"CLOSE":0,"TIME_WAIT":9,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":33,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":240262217,"rx_dropped":0,"rx_errors":0,"tx_bytes":25025783,"tx_dropped":0,"tx_errors":0,"rx_sec":3280.1212760348008,"tx_sec":801.0809385710519,"ms":30344}]', '{"total":10685313024,"free":4686499840,"used":5998813184,"active":5998813184,"available":4686499840,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (272, '2022-03-29 23:29:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56228798464,"available":71047352320,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":18.779529517083603,"currentLoadUser":11.008603968767096,"currentLoadSystem":7.239601465492947,"currentLoadNice":0,"currentLoadIdle":81.2204704829164,"currentLoadIrq":0.5313240828235606,"rawCurrentLoad":22656,"rawCurrentLoadUser":13281,"rawCurrentLoadSystem":8734,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":97986,"rawCurrentLoadIrq":641,"cpus":[{"load":20.678189300411525,"loadUser":10.2880658436214,"loadSystem":9.155555555555555,"loadNice":0,"loadIdle":79.32181069958848,"loadIrq":1.2345679012345678,"rawLoad":6281,"rawLoadUser":3125,"rawLoadSystem":2781,"rawLoadNice":0,"rawLoadIdle":24094,"rawLoadIrq":375},{"load":16.737626397019692,"loadUser":10.497605109100586,"loadSystem":6.03046833422033,"loadNice":0,"loadIdle":83.2623736029803,"loadIrq":0.20955295369877594,"rawLoad":5032,"rawLoadUser":3156,"rawLoadSystem":1813,"rawLoadNice":0,"rawLoadIdle":25032,"rawLoadIrq":63},{"load":18.616879659211925,"loadUser":11.54486155484558,"loadSystem":6.915601703940362,"loadNice":0,"loadIdle":81.38312034078807,"loadIrq":0.1564164004259851,"rawLoad":5594,"rawLoadUser":3469,"rawLoadSystem":2078,"rawLoadNice":0,"rawLoadIdle":24454,"rawLoadIrq":47},{"load":19.064831702868513,"loadUser":11.7095009119549,"loadSystem":6.8380036478195985,"loadNice":0,"loadIdle":80.93516829713148,"loadIrq":0.5173271430940142,"rawLoad":5749,"rawLoadUser":3531,"rawLoadSystem":2062,"rawLoadNice":0,"rawLoadIdle":24406,"rawLoadIrq":156}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":11,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":35,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":240337264,"rx_dropped":0,"rx_errors":0,"tx_bytes":25047503,"tx_dropped":0,"tx_errors":0,"rx_sec":2528.3673606899806,"tx_sec":731.7566201738427,"ms":29682}]', '{"total":10685313024,"free":4746059776,"used":5939253248,"active":5939253248,"available":4746059776,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (273, '2022-03-29 23:29:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56228515840,"available":71047634944,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":20.152194928488214,"currentLoadUser":12.161548058729727,"currentLoadSystem":7.397400622991183,"currentLoadNice":0,"currentLoadIdle":79.84780507151179,"currentLoadIrq":0.5932462467673036,"rawCurrentLoad":24390,"rawCurrentLoadUser":14719,"rawCurrentLoadSystem":8953,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":96639,"rawCurrentLoadIrq":718,"cpus":[{"load":22.880303327449827,"loadUser":12.35863241158397,"loadSystem":8.835065699156697,"loadNice":0,"loadIdle":77.11969667255018,"loadIrq":1.6866052167091587,"rawLoad":7000,"rawLoadUser":3781,"rawLoadSystem":2703,"rawLoadNice":0,"rawLoadIdle":23594,"rawLoadIrq":516},{"load":17.746113989637305,"loadUser":11.20964527700279,"loadSystem":6.433506044905009,"loadNice":0,"loadIdle":82.25388601036269,"loadIrq":0.1029626677295071,"rawLoad":5343,"rawLoadUser":3375,"rawLoadSystem":1937,"rawLoadNice":0,"rawLoadIdle":24765,"rawLoadIrq":31},{"load":19.104745447294963,"loadUser":12.14940848065931,"loadSystem":6.905489831184368,"loadNice":0,"loadIdle":80.89525455270504,"loadIrq":0.04984713545128273,"rawLoad":5749,"rawLoadUser":3656,"rawLoadSystem":2078,"rawLoadNice":0,"rawLoadIdle":24343,"rawLoadIrq":15},{"load":20.83016371754589,"loadUser":12.922110137258144,"loadSystem":7.392095253844881,"loadNice":0,"loadIdle":79.16983628245411,"loadIrq":0.5159583264428642,"rawLoad":6298,"rawLoadUser":3907,"rawLoadSystem":2235,"rawLoadNice":0,"rawLoadIdle":23937,"rawLoadIrq":156}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":14,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":31,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":240409867,"rx_dropped":0,"rx_errors":0,"tx_bytes":25062793,"tx_dropped":0,"tx_errors":0,"rx_sec":2405.745717220584,"tx_sec":506.64369263395076,"ms":30179}]', '{"total":10685313024,"free":4743901184,"used":5941411840,"active":5941411840,"available":4743901184,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (274, '2022-03-29 23:30:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56228491264,"available":71047659520,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":23.846808229473808,"currentLoadUser":14.813713587221356,"currentLoadSystem":8.142752132940196,"currentLoadNice":0,"currentLoadIdle":76.15319177052619,"currentLoadIrq":0.8903425093122558,"rawCurrentLoad":28873,"rawCurrentLoadUser":17936,"rawCurrentLoadSystem":9859,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":92204,"rawCurrentLoadIrq":1078,"cpus":[{"load":25.67602959470962,"loadUser":13.451843121849013,"loadSystem":10.433444640869508,"loadNice":0,"loadIdle":74.32397040529038,"loadIrq":1.7907418319910953,"rawLoad":7843,"rawLoadUser":4109,"rawLoadSystem":3187,"rawLoadNice":0,"rawLoadIdle":22703,"rawLoadIrq":547},{"load":21.644300889081283,"loadUser":14.931237721021612,"loadSystem":6.609836502280976,"loadNice":0,"loadIdle":78.35569911091872,"loadIrq":0.10322666577869534,"rawLoad":6500,"rawLoadUser":4484,"rawLoadSystem":1985,"rawLoadNice":0,"rawLoadIdle":23531,"rawLoadIrq":31},{"load":23.349307774227903,"loadUser":15.964456869009586,"loadSystem":7.2284345047923315,"loadNice":0,"loadIdle":76.6506922257721,"loadIrq":0.1564164004259851,"rawLoad":7016,"rawLoadUser":4797,"rawLoadSystem":2172,"rawLoadNice":0,"rawLoadIdle":23032,"rawLoadIrq":47},{"load":24.674898200446606,"loadUser":14.92841192696703,"loadSystem":8.258899251280704,"loadNice":0,"loadIdle":75.3251017995534,"loadIrq":1.4875870221988703,"rawLoad":7514,"rawLoadUser":4546,"rawLoadSystem":2515,"rawLoadNice":0,"rawLoadIdle":22938,"rawLoadIrq":453}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":17,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":36,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":240482754,"rx_dropped":0,"rx_errors":0,"tx_bytes":25082582,"tx_dropped":0,"tx_errors":0,"rx_sec":2413.3969073871726,"tx_sec":655.2432038674216,"ms":30201}]', '{"total":10685313024,"free":4756545536,"used":5928767488,"active":5928767488,"available":4756545536,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (275, '2022-03-29 23:30:47', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56225263616,"available":71050887168,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":25.747160665392794,"currentLoadUser":15.484196507597753,"currentLoadSystem":9.629335517118728,"currentLoadNice":0,"currentLoadIdle":74.25283933460722,"currentLoadIrq":0.6336286406763117,"rawCurrentLoad":31126,"rawCurrentLoadUser":18719,"rawCurrentLoadSystem":11641,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":89765,"rawCurrentLoadIrq":766,"cpus":[{"load":26.826059788864402,"loadUser":14.388134311178346,"loadSystem":11.204656822442201,"loadNice":0,"loadIdle":73.17394021113559,"loadIrq":1.2332686552438583,"rawLoad":8157,"rawLoadUser":4375,"rawLoadSystem":3407,"rawLoadNice":0,"rawLoadIdle":22250,"rawLoadIrq":375},{"load":24.19419286094832,"loadUser":15.350293020777835,"loadSystem":8.843899840170485,"loadNice":0,"loadIdle":75.80580713905167,"loadIrq":0,"rawLoad":7266,"rawLoadUser":4610,"rawLoadSystem":2656,"rawLoadNice":0,"rawLoadIdle":22766,"rawLoadIrq":0},{"load":26.08883282432612,"loadUser":15.973974239808792,"loadSystem":9.802815031204355,"loadNice":0,"loadIdle":73.91116717567388,"loadIrq":0.31204355331297307,"rawLoad":7859,"rawLoadUser":4812,"rawLoadSystem":2953,"rawLoadNice":0,"rawLoadIdle":22265,"rawLoadIrq":94},{"load":25.863888156159327,"loadUser":16.22922711685571,"loadSystem":8.655367976787128,"loadNice":0,"loadIdle":74.13611184384068,"loadIrq":0.9792930625164864,"rawLoad":7844,"rawLoadUser":4922,"rawLoadSystem":2625,"rawLoadNice":0,"rawLoadIdle":22484,"rawLoadIrq":297}]}', '{"ESTABLISHED":28,"CLOSE":0,"TIME_WAIT":19,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":240620842,"rx_dropped":0,"rx_errors":0,"tx_bytes":25114255,"tx_dropped":0,"tx_errors":0,"rx_sec":4588.098481576237,"tx_sec":1052.3640229923249,"ms":30097}]', '{"total":10685313024,"free":4615921664,"used":6069391360,"active":6069391360,"available":4615921664,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (276, '2022-03-29 23:31:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56226238464,"available":71049912320,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":23.40001163476801,"currentLoadUser":14.193585918606487,"currentLoadSystem":8.673719552227642,"currentLoadNice":0,"currentLoadIdle":76.59998836523198,"currentLoadIrq":0.5327061639338813,"rawCurrentLoad":28157,"rawCurrentLoadUser":17079,"rawCurrentLoadSystem":10437,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":92172,"rawCurrentLoadIrq":641,"cpus":[{"load":25.1928616362613,"loadUser":14.435652087540973,"loadSystem":9.826838393537066,"loadNice":0,"loadIdle":74.8071383637387,"loadIrq":0.93037115518326,"rawLoad":7609,"rawLoadUser":4360,"rawLoadSystem":2968,"rawLoadNice":0,"rawLoadIdle":22594,"rawLoadIrq":281},{"load":22.053523758675922,"loadUser":13.294180459156433,"loadSystem":8.60250934329952,"loadNice":0,"loadIdle":77.94647624132408,"loadIrq":0.15683395621996796,"rawLoad":6609,"rawLoadUser":3984,"rawLoadSystem":2578,"rawLoadNice":0,"rawLoadIdle":23359,"rawLoadIrq":47},{"load":22.878105719526427,"loadUser":14.330498582624646,"loadSystem":8.33750208437552,"loadNice":0,"loadIdle":77.12189428047357,"loadIrq":0.21010505252626313,"rawLoad":6860,"rawLoadUser":4297,"rawLoadSystem":2500,"rawLoadNice":0,"rawLoadIdle":23125,"rawLoadIrq":63},{"load":23.461372750472275,"loadUser":14.708514234580585,"loadSystem":7.924303184966693,"loadNice":0,"loadIdle":76.53862724952772,"loadIrq":0.8285553309249991,"rawLoad":7079,"rawLoadUser":4438,"rawLoadSystem":2391,"rawLoadNice":0,"rawLoadIdle":23094,"rawLoadIrq":250}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":18,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":36,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":241210613,"rx_dropped":0,"rx_errors":0,"tx_bytes":25164733,"tx_dropped":0,"tx_errors":0,"rx_sec":19953.682714754545,"tx_sec":1707.8187908109755,"ms":29557}]', '{"total":10685313024,"free":4870615040,"used":5814697984,"active":5814697984,"available":4870615040,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (277, '2022-03-29 23:31:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56226525184,"available":71049625600,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":12.931470083912492,"currentLoadUser":6.950737651278568,"currentLoadSystem":5.385144258248357,"currentLoadNice":0,"currentLoadIdle":87.06852991608751,"currentLoadIrq":0.5955881743855667,"rawCurrentLoad":15611,"rawCurrentLoadUser":8391,"rawCurrentLoadSystem":6501,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":105110,"rawCurrentLoadIrq":719,"cpus":[{"load":14.47836982326563,"loadUser":6.54180954893168,"loadSystem":6.855051437615405,"loadNice":0,"loadIdle":85.52163017673438,"loadIrq":1.081508836718544,"rawLoad":4391,"rawLoadUser":1984,"rawLoadSystem":2079,"rawLoadNice":0,"rawLoadIdle":25937,"rawLoadIrq":328},{"load":11.146295123495884,"loadUser":7.1364287857071425,"loadSystem":4.00986633778874,"loadNice":0,"loadIdle":88.85370487650411,"loadIrq":0,"rawLoad":3344,"rawLoadUser":2141,"rawLoadSystem":1203,"rawLoadNice":0,"rawLoadIdle":26657,"rawLoadIrq":0},{"load":12.573556301738757,"loadUser":6.546095282422954,"loadSystem":5.768143887762226,"loadNice":0,"loadIdle":87.42644369826125,"loadIrq":0.2593171315535756,"rawLoad":3782,"rawLoadUser":1969,"rawLoadSystem":1735,"rawLoadNice":0,"rawLoadIdle":26297,"rawLoadIrq":78},{"load":13.505756606076602,"loadUser":7.577606967307755,"loadSystem":4.895589351103487,"loadNice":0,"loadIdle":86.4942433939234,"loadIrq":1.0325602876653581,"rawLoad":4094,"rawLoadUser":2297,"rawLoadSystem":1484,"rawLoadNice":0,"rawLoadIdle":26219,"rawLoadIrq":313}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":16,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":35,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":241250242,"rx_dropped":0,"rx_errors":0,"tx_bytes":25178867,"tx_dropped":0,"tx_errors":0,"rx_sec":1305.9482616576042,"tx_sec":465.77689899489206,"ms":30345}]', '{"total":10685313024,"free":4829130752,"used":5856182272,"active":5856182272,"available":4829130752,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (278, '2022-03-29 23:32:17', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56227241984,"available":71048908800,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":21.52792709349829,"currentLoadUser":12.469195018276244,"currentLoadSystem":8.296257091348142,"currentLoadNice":0,"currentLoadIdle":78.47207290650171,"currentLoadIrq":0.7624749838739022,"rawCurrentLoad":26032,"rawCurrentLoadUser":15078,"rawCurrentLoadSystem":10032,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":94890,"rawCurrentLoadIrq":922,"cpus":[{"load":24.448607961082075,"loadUser":11.557045656246919,"loadSystem":11.504453867139992,"loadNice":0,"loadIdle":75.55139203891792,"loadIrq":1.387108437695165,"rawLoad":7438,"rawLoadUser":3516,"rawLoadSystem":3500,"rawLoadNice":0,"rawLoadIdle":22985,"rawLoadIrq":422},{"load":18.598311057916085,"loadUser":12.57064964425826,"loadSystem":5.768335660615732,"loadNice":0,"loadIdle":81.40168894208392,"loadIrq":0.2593257530420906,"rawLoad":5594,"rawLoadUser":3781,"rawLoadSystem":1735,"rawLoadNice":0,"rawLoadIdle":24484,"rawLoadIrq":78},{"load":21.4238168142182,"loadUser":11.90840710909938,"loadSystem":9.358982892897558,"loadNice":0,"loadIdle":78.5761831857818,"loadIrq":0.15642681222126073,"rawLoad":6437,"rawLoadUser":3578,"rawLoadSystem":2812,"rawLoadNice":0,"rawLoadIdle":23609,"rawLoadIrq":47},{"load":21.60658436213992,"loadUser":13.837037037037037,"loadSystem":6.534979423868313,"loadNice":0,"loadIdle":78.39341563786009,"loadIrq":1.2345679012345678,"rawLoad":6563,"rawLoadUser":4203,"rawLoadSystem":1985,"rawLoadNice":0,"rawLoadIdle":23812,"rawLoadIrq":375}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":15,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":36,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":241330129,"rx_dropped":0,"rx_errors":0,"tx_bytes":25201275,"tx_dropped":0,"tx_errors":0,"rx_sec":2642.6397618260007,"tx_sec":741.2504134965266,"ms":30230}]', '{"total":10685313024,"free":4810665984,"used":5874647040,"active":5874647040,"available":4810665984,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (279, '2022-03-29 23:32:50', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56227241984,"available":71048908800,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":9.538683924135812,"currentLoadUser":5.022721042094157,"currentLoadSystem":4.204431226271672,"currentLoadNice":0,"currentLoadIdle":90.46131607586419,"currentLoadIrq":0.31153165576998165,"rawCurrentLoad":11482,"rawCurrentLoadUser":6046,"rawCurrentLoadSystem":5061,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":108891,"rawCurrentLoadIrq":375,"cpus":[{"load":11.19550858652576,"loadUser":4.075297225891678,"loadSystem":6.19220607661823,"loadNice":0,"loadIdle":88.80449141347424,"loadIrq":0.9280052840158521,"rawLoad":3390,"rawLoadUser":1234,"rawLoadSystem":1875,"rawLoadNice":0,"rawLoadIdle":26890,"rawLoadIrq":281},{"load":8.588752665245202,"loadUser":4.477611940298507,"loadSystem":4.057835820895522,"loadNice":0,"loadIdle":91.41124733475479,"loadIrq":0.053304904051172705,"rawLoad":2578,"rawLoadUser":1344,"rawLoadSystem":1218,"rawLoadNice":0,"rawLoadIdle":27438,"rawLoadIrq":16},{"load":9.166666666666666,"loadUser":5.676666666666667,"loadSystem":3.49,"loadNice":0,"loadIdle":90.83333333333333,"loadIrq":0,"rawLoad":2750,"rawLoadUser":1703,"rawLoadSystem":1047,"rawLoadNice":0,"rawLoadIdle":27250,"rawLoadIrq":0},{"load":9.189746317784353,"loadUser":5.8682714366459425,"loadSystem":3.0621405060345115,"loadNice":0,"loadIdle":90.81025368221565,"loadIrq":0.2593343751039,"rawLoad":2764,"rawLoadUser":1765,"rawLoadSystem":921,"rawLoadNice":0,"rawLoadIdle":27313,"rawLoadIrq":78}]}', '{"ESTABLISHED":19,"CLOSE":0,"TIME_WAIT":10,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":28,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":241394997,"rx_dropped":0,"rx_errors":0,"tx_bytes":25210472,"tx_dropped":0,"tx_errors":0,"rx_sec":1898.8349628241906,"tx_sec":269.21725894268485,"ms":34162}]', '{"total":10685313024,"free":4920946688,"used":5764366336,"active":5764366336,"available":4920946688,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (280, '2022-03-29 23:33:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56227241984,"available":71048908800,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":7.099764506170271,"currentLoadUser":3.7321195276809265,"currentLoadSystem":3.2769424080284257,"currentLoadNice":0,"currentLoadIdle":92.90023549382973,"currentLoadIrq":0.09070257046091884,"rawCurrentLoad":8532,"rawCurrentLoadUser":4485,"rawCurrentLoadSystem":3938,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":111641,"rawCurrentLoadIrq":109,"cpus":[{"load":7.156846473029045,"loadUser":3.2165975103734437,"loadSystem":3.5784232365145225,"loadNice":0,"loadIdle":92.84315352697095,"loadIrq":0.3618257261410789,"rawLoad":2156,"rawLoadUser":969,"rawLoadSystem":1078,"rawLoadNice":0,"rawLoadIdle":27969,"rawLoadIrq":109},{"load":7.442945194069632,"loadUser":4.21455938697318,"loadSystem":3.2283858070964517,"loadNice":0,"loadIdle":92.55705480593038,"loadIrq":0,"rawLoad":2234,"rawLoadUser":1265,"rawLoadSystem":969,"rawLoadNice":0,"rawLoadIdle":27781,"rawLoadIrq":0},{"load":7.029350034980178,"loadUser":3.8011793317120297,"loadSystem":3.228170703268148,"loadNice":0,"loadIdle":92.97064996501983,"loadIrq":0,"rawLoad":2110,"rawLoadUser":1141,"rawLoadSystem":969,"rawLoadNice":0,"rawLoadIdle":27907,"rawLoadIrq":0},{"load":6.769722814498934,"loadUser":3.6980277185501063,"loadSystem":3.071695095948827,"loadNice":0,"loadIdle":93.23027718550107,"loadIrq":0,"rawLoad":2032,"rawLoadUser":1110,"rawLoadSystem":922,"rawLoadNice":0,"rawLoadIdle":27984,"rawLoadIrq":0}]}', '{"ESTABLISHED":20,"CLOSE":0,"TIME_WAIT":8,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":30,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":241434146,"rx_dropped":0,"rx_errors":0,"tx_bytes":25215783,"tx_dropped":0,"tx_errors":0,"rx_sec":1556.8678915135608,"tx_sec":211.20655372623875,"ms":25146}]', '{"total":10685313024,"free":4886024192,"used":5799288832,"active":5799288832,"available":4886024192,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (281, '2022-03-29 23:33:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56227241984,"available":71048908800,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.2043704474505725,"currentLoadUser":3.329032258064516,"currentLoadSystem":2.7704474505723207,"currentLoadNice":0,"currentLoadIdle":93.79562955254943,"currentLoadIrq":0.10489073881373569,"rawCurrentLoad":7453,"rawCurrentLoadUser":3999,"rawCurrentLoadSystem":3328,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112672,"rawCurrentLoadIrq":126,"cpus":[{"load":6.954500166057788,"loadUser":3.5802059116572567,"loadSystem":3.008967120557954,"loadNice":0,"loadIdle":93.04549983394222,"loadIrq":0.3653271338425772,"rawLoad":2094,"rawLoadUser":1078,"rawLoadSystem":906,"rawLoadNice":0,"rawLoadIdle":28016,"rawLoadIrq":110},{"load":5.886666666666667,"loadUser":3.5933333333333333,"loadSystem":2.2933333333333334,"loadNice":0,"loadIdle":94.11333333333334,"loadIrq":0,"rawLoad":1766,"rawLoadUser":1078,"rawLoadSystem":688,"rawLoadNice":0,"rawLoadIdle":28234,"rawLoadIrq":0},{"load":5.9868662288742955,"loadUser":3.020100670022334,"loadSystem":2.9667655588519617,"loadNice":0,"loadIdle":94.0131337711257,"loadIrq":0,"rawLoad":1796,"rawLoadUser":906,"rawLoadSystem":890,"rawLoadNice":0,"rawLoadIdle":28203,"rawLoadIrq":0},{"load":5.986807036247335,"loadUser":3.1216684434968016,"loadSystem":2.8118336886993602,"loadNice":0,"loadIdle":94.01319296375267,"loadIrq":0.053304904051172705,"rawLoad":1797,"rawLoadUser":937,"rawLoadSystem":844,"rawLoadNice":0,"rawLoadIdle":28219,"rawLoadIrq":16}]}', '{"ESTABLISHED":20,"CLOSE":0,"TIME_WAIT":7,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":26,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":241466236,"rx_dropped":0,"rx_errors":0,"tx_bytes":25219642,"tx_dropped":0,"tx_errors":0,"rx_sec":1069.1321006163585,"tx_sec":128.56904880892887,"ms":30015}]', '{"total":10685313024,"free":4886720512,"used":5798592512,"active":5798592512,"available":4886720512,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (282, '2022-03-29 23:34:17', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56227377152,"available":71048773632,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":7.293994500427836,"currentLoadUser":3.946898390835154,"currentLoadSystem":3.2440829754180758,"currentLoadNice":0,"currentLoadIdle":92.70600549957216,"currentLoadIrq":0.10301313417460728,"rawCurrentLoad":8780,"rawCurrentLoadUser":4751,"rawCurrentLoadSystem":3905,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":111593,"rawCurrentLoadIrq":124,"cpus":[{"load":8.188453881884538,"loadUser":3.991373589913736,"loadSystem":3.93828798938288,"loadNice":0,"loadIdle":91.81154611811546,"loadIrq":0.258792302587923,"rawLoad":2468,"rawLoadUser":1203,"rawLoadSystem":1187,"rawLoadNice":0,"rawLoadIdle":27672,"rawLoadIrq":78},{"load":6.905608937061541,"loadUser":4.209196395917146,"loadSystem":2.6465405459321074,"loadNice":0,"loadIdle":93.09439106293846,"loadIrq":0.04987199521228845,"rawLoad":2077,"rawLoadUser":1266,"rawLoadSystem":796,"rawLoadNice":0,"rawLoadIdle":28000,"rawLoadIrq":15},{"load":7.174932641452949,"loadUser":3.951701427003293,"loadSystem":3.223231214449656,"loadNice":0,"loadIdle":92.82506735854706,"loadIrq":0,"rawLoad":2157,"rawLoadUser":1188,"rawLoadSystem":969,"rawLoadNice":0,"rawLoadIdle":27906,"rawLoadIrq":0},{"load":6.905260359552055,"loadUser":3.6353969361645566,"loadSystem":3.1668494334230552,"loadNice":0,"loadIdle":93.09473964044794,"loadIrq":0.10301398996444355,"rawLoad":2078,"rawLoadUser":1094,"rawLoadSystem":953,"rawLoadNice":0,"rawLoadIdle":28015,"rawLoadIrq":31}]}', '{"ESTABLISHED":19,"CLOSE":0,"TIME_WAIT":5,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":26,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":241520481,"rx_dropped":0,"rx_errors":0,"tx_bytes":25224442,"tx_dropped":0,"tx_errors":0,"rx_sec":1766.8230082730765,"tx_sec":156.34160641000585,"ms":30702}]', '{"total":10685313024,"free":4878352384,"used":5806960640,"active":5806960640,"available":4878352384,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (283, '2022-03-29 23:34:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56230105088,"available":71046045696,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":24.222031860039866,"currentLoadUser":13.140207238521985,"currentLoadSystem":9.820766683689438,"currentLoadNice":0,"currentLoadIdle":75.77796813996014,"currentLoadIrq":1.2610579378284434,"rawCurrentLoad":29407,"rawCurrentLoadUser":15953,"rawCurrentLoadSystem":11923,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":91999,"rawCurrentLoadIrq":1531,"cpus":[{"load":27.896842173729226,"loadUser":13.161403622882045,"loadSystem":12.195518553448894,"loadNice":0,"loadIdle":72.10315782627077,"loadIrq":2.5399199973982896,"rawLoad":8578,"rawLoadUser":4047,"rawLoadSystem":3750,"rawLoadNice":0,"rawLoadIdle":22171,"rawLoadIrq":781},{"load":20.241742141715505,"loadUser":12.123734683004795,"loadSystem":7.908231220031967,"loadNice":0,"loadIdle":79.7582578582845,"loadIrq":0.20977623867874268,"rawLoad":6079,"rawLoadUser":3641,"rawLoadSystem":2375,"rawLoadNice":0,"rawLoadIdle":23953,"rawLoadIrq":63},{"load":22.326709643118228,"loadUser":12.563966239117432,"loadSystem":9.347378214926563,"loadNice":0,"loadIdle":77.67329035688178,"loadIrq":0.41536518907423403,"rawLoad":6719,"rawLoadUser":3781,"rawLoadSystem":2813,"rawLoadNice":0,"rawLoadIdle":23375,"rawLoadIrq":125},{"load":26.304411909207037,"loadUser":14.68671186662736,"loadSystem":9.7769480200452,"loadNice":0,"loadIdle":73.69558809079297,"loadIrq":1.8407520225344733,"rawLoad":8031,"rawLoadUser":4484,"rawLoadSystem":2985,"rawLoadNice":0,"rawLoadIdle":22500,"rawLoadIrq":562}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":6,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":30,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":241578744,"rx_dropped":0,"rx_errors":0,"tx_bytes":25250350,"tx_dropped":0,"tx_errors":0,"rx_sec":1958.28851841893,"tx_sec":870.7986017746706,"ms":29752}]', '{"total":10685313024,"free":5013110784,"used":5672202240,"active":5672202240,"available":5013110784,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (284, '2022-03-29 23:35:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56233467904,"available":71042682880,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":23.689848384970336,"currentLoadUser":13.454185893210283,"currentLoadSystem":9.115029663810152,"currentLoadNice":0,"currentLoadIdle":76.31015161502967,"currentLoadIrq":1.1206328279499012,"rawCurrentLoad":28750,"rawCurrentLoadUser":16328,"rawCurrentLoadSystem":11062,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":92610,"rawCurrentLoadIrq":1360,"cpus":[{"load":25.448944815834317,"loadUser":12.134617905361122,"loadSystem":11.623410669812557,"loadNice":0,"loadIdle":74.55105518416568,"loadIrq":1.6909162406606373,"rawLoad":7766,"rawLoadUser":3703,"rawLoadSystem":3547,"rawLoadNice":0,"rawLoadIdle":22750,"rawLoadIrq":516},{"load":20.156666666666666,"loadUser":13.436666666666666,"loadSystem":6.72,"loadNice":0,"loadIdle":79.84333333333333,"loadIrq":0,"rawLoad":6047,"rawLoadUser":4031,"rawLoadSystem":2016,"rawLoadNice":0,"rawLoadIdle":23953,"rawLoadIrq":0},{"load":23.935535216872264,"loadUser":14.507892293407615,"loadSystem":8.910332935402574,"loadNice":0,"loadIdle":76.06446478312773,"loadIrq":0.5173099880620772,"rawLoad":7218,"rawLoadUser":4375,"rawLoadSystem":2687,"rawLoadNice":0,"rawLoadIdle":22938,"rawLoadIrq":156},{"load":25.1531543274244,"loadUser":13.748044838373305,"loadSystem":9.163190823774766,"loadNice":0,"loadIdle":74.8468456725756,"loadIrq":2.2419186652763297,"rawLoad":7719,"rawLoadUser":4219,"rawLoadSystem":2812,"rawLoadNice":0,"rawLoadIdle":22969,"rawLoadIrq":688}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":10,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":28,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":241623364,"rx_dropped":0,"rx_errors":0,"tx_bytes":25269847,"tx_dropped":0,"tx_errors":0,"rx_sec":1489.418519260298,"tx_sec":650.8111355898258,"ms":29958}]', '{"total":10685313024,"free":4942966784,"used":5742346240,"active":5742346240,"available":4942966784,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (285, '2022-03-29 23:35:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56233992192,"available":71042158592,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":22.25714120742702,"currentLoadUser":13.416314039906627,"currentLoadSystem":7.822952496432489,"currentLoadNice":0,"currentLoadIdle":77.74285879257297,"currentLoadIrq":1.017874671087905,"rawCurrentLoad":26983,"rawCurrentLoadUser":16265,"rawCurrentLoadSystem":9484,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":94250,"rawCurrentLoadIrq":1234,"cpus":[{"load":25.255737704918037,"loadUser":13.934426229508196,"loadSystem":9.681967213114755,"loadNice":0,"loadIdle":74.74426229508197,"loadIrq":1.639344262295082,"rawLoad":7703,"rawLoadUser":4250,"rawLoadSystem":2953,"rawLoadNice":0,"rawLoadIdle":22797,"rawLoadIrq":500},{"load":19.19682994239286,"loadUser":12.330591721887384,"loadSystem":6.7630115547267815,"loadNice":0,"loadIdle":80.80317005760715,"loadIrq":0.10322666577869534,"rawLoad":5765,"rawLoadUser":3703,"rawLoadSystem":2031,"rawLoadNice":0,"rawLoadIdle":24266,"rawLoadIrq":31},{"load":20.95339264373921,"loadUser":12.81038374717833,"loadSystem":7.728057362900014,"loadNice":0,"loadIdle":79.0466073562608,"loadIrq":0.4149515336608684,"rawLoad":6312,"rawLoadUser":3859,"rawLoadSystem":2328,"rawLoadNice":0,"rawLoadIdle":23812,"rawLoadIrq":125},{"load":23.556151481457256,"loadUser":14.562757538099286,"loadSystem":7.103146052717641,"loadNice":0,"loadIdle":76.44384851854275,"loadIrq":1.8902478906403297,"rawLoad":7203,"rawLoadUser":4453,"rawLoadSystem":2172,"rawLoadNice":0,"rawLoadIdle":23375,"rawLoadIrq":578}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":16,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":21,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":241676620,"rx_dropped":0,"rx_errors":0,"tx_bytes":25287165,"tx_dropped":0,"tx_errors":0,"rx_sec":1792.829489984851,"tx_sec":582.999495034506,"ms":29705}]', '{"total":10685313024,"free":4930928640,"used":5754384384,"active":5754384384,"available":4930928640,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (286, '2022-03-29 23:36:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56235536384,"available":71040614400,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":19.511811154104283,"currentLoadUser":12.0787796935977,"currentLoadSystem":6.966550944146623,"currentLoadNice":0,"currentLoadIdle":80.48818884589572,"currentLoadIrq":0.4664805163599605,"rawCurrentLoad":23549,"rawCurrentLoadUser":14578,"rawCurrentLoadSystem":8408,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":97142,"rawCurrentLoadIrq":563,"cpus":[{"load":21.415362261409417,"loadUser":11.815600026418334,"loadSystem":8.774189287365433,"loadNice":0,"loadIdle":78.58463773859057,"loadIrq":0.8255729476256521,"rawLoad":6485,"rawLoadUser":3578,"rawLoadSystem":2657,"rawLoadNice":0,"rawLoadIdle":23797,"rawLoadIrq":250},{"load":17.994542066027687,"loadUser":11.648029818956337,"loadSystem":6.293264110756123,"loadNice":0,"loadIdle":82.00545793397231,"loadIrq":0.05324813631522897,"rawLoad":5407,"rawLoadUser":3500,"rawLoadSystem":1891,"rawLoadNice":0,"rawLoadIdle":24641,"rawLoadIrq":16},{"load":18.99368980405181,"loadUser":12.195283958817669,"loadSystem":6.539355695782133,"loadNice":0,"loadIdle":81.00631019594819,"loadIrq":0.2590501494520093,"rawLoad":5719,"rawLoadUser":3672,"rawLoadSystem":1969,"rawLoadNice":0,"rawLoadIdle":24391,"rawLoadIrq":78},{"load":19.629103170143136,"loadUser":12.654127136293013,"loadSystem":6.251033023701696,"loadNice":0,"loadIdle":80.37089682985686,"loadIrq":0.7239430101484249,"rawLoad":5938,"rawLoadUser":3828,"rawLoadSystem":1891,"rawLoadNice":0,"rawLoadIdle":24313,"rawLoadIrq":219}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":20,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":30,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":241752410,"rx_dropped":0,"rx_errors":0,"tx_bytes":25311970,"tx_dropped":0,"tx_errors":0,"rx_sec":2502.063319137698,"tx_sec":818.8900993694497,"ms":30291}]', '{"total":10685313024,"free":5019598848,"used":5665714176,"active":5665714176,"available":5019598848,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (287, '2022-03-29 23:36:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56231841792,"available":71044308992,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":16.71314046706169,"currentLoadUser":9.829208783548275,"currentLoadSystem":6.521270062573653,"currentLoadNice":0,"currentLoadIdle":83.28685953293831,"currentLoadIrq":0.3626616209397666,"rawCurrentLoad":20139,"rawCurrentLoadUser":11844,"rawCurrentLoadSystem":7858,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":100359,"rawCurrentLoadIrq":437,"cpus":[{"load":18.310045692338257,"loadUser":10.035759221243627,"loadSystem":7.6551221773392495,"loadNice":0,"loadIdle":81.68995430766175,"loadIrq":0.6191642937553804,"rawLoad":5530,"rawLoadUser":3031,"rawLoadSystem":2312,"rawLoadNice":0,"rawLoadIdle":24672,"rawLoadIrq":187},{"load":15.132958365227811,"loadUser":8.476719805637833,"loadSystem":6.553066861916331,"loadNice":0,"loadIdle":84.86704163477219,"loadIrq":0.10317169767364463,"rawLoad":4547,"rawLoadUser":2547,"rawLoadSystem":1969,"rawLoadNice":0,"rawLoadIdle":25500,"rawLoadIrq":31},{"load":16.286503945922547,"loadUser":9.886450667643436,"loadSystem":6.346774999167527,"loadNice":0,"loadIdle":83.71349605407745,"loadIrq":0.0532782791115847,"rawLoad":4891,"rawLoadUser":2969,"rawLoadSystem":1906,"rawLoadNice":0,"rawLoadIdle":25140,"rawLoadIrq":16},{"load":17.11231716195645,"loadUser":10.910715467602092,"loadSystem":5.529816665563572,"loadNice":0,"loadIdle":82.88768283804356,"loadIrq":0.6717850287907869,"rawLoad":5171,"rawLoadUser":3297,"rawLoadSystem":1671,"rawLoadNice":0,"rawLoadIdle":25047,"rawLoadIrq":203}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":20,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":241798830,"rx_dropped":0,"rx_errors":0,"tx_bytes":25327807,"tx_dropped":0,"tx_errors":0,"rx_sec":1552.923859226549,"tx_sec":529.8073063026897,"ms":29892}]', '{"total":10685313024,"free":5053751296,"used":5631561728,"active":5631561728,"available":5053751296,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (288, '2022-03-29 23:37:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56232120320,"available":71044030464,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":19.07869735472465,"currentLoadUser":10.88181352543661,"currentLoadSystem":7.435189927796045,"currentLoadNice":0,"currentLoadIdle":80.92130264527535,"currentLoadIrq":0.7616939014919948,"rawCurrentLoad":23094,"rawCurrentLoadUser":13172,"rawCurrentLoadSystem":9000,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":97952,"rawCurrentLoadIrq":922,"cpus":[{"load":21.54250082047916,"loadUser":10.308500164095832,"loadSystem":9.796521168362323,"loadNice":0,"loadIdle":78.45749917952084,"loadIrq":1.4374794880210044,"rawLoad":6564,"rawLoadUser":3141,"rawLoadSystem":2985,"rawLoadNice":0,"rawLoadIdle":23906,"rawLoadIrq":438},{"load":15.496239100046596,"loadUser":9.725088198096254,"loadSystem":5.717899221194169,"loadNice":0,"loadIdle":84.5037608999534,"loadIrq":0.05325168075617386,"rawLoad":4656,"rawLoadUser":2922,"rawLoadSystem":1718,"rawLoadNice":0,"rawLoadIdle":25390,"rawLoadIrq":16},{"load":19.6449900464499,"loadUser":12.130059721300597,"loadSystem":7.153284671532846,"loadNice":0,"loadIdle":80.35500995355011,"loadIrq":0.36164565361645656,"rawLoad":5921,"rawLoadUser":3656,"rawLoadSystem":2156,"rawLoadNice":0,"rawLoadIdle":24219,"rawLoadIrq":109},{"load":19.588680487002303,"loadUser":11.362290227048371,"loadSystem":7.0450806186245485,"loadNice":0,"loadIdle":80.4113195129977,"loadIrq":1.1813096413293847,"rawLoad":5953,"rawLoadUser":3453,"rawLoadSystem":2141,"rawLoadNice":0,"rawLoadIdle":24437,"rawLoadIrq":359}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":19,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":25,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":241847180,"rx_dropped":0,"rx_errors":0,"tx_bytes":25345423,"tx_dropped":0,"tx_errors":0,"rx_sec":1603.7016153106238,"tx_sec":584.2979866662243,"ms":30149}]', '{"total":10685313024,"free":4956135424,"used":5729177600,"active":5729177600,"available":4956135424,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (289, '2022-03-29 23:37:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56232103936,"available":71044046848,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":8.029184921124086,"currentLoadUser":4.306941413602972,"currentLoadSystem":3.514017757491963,"currentLoadNice":0,"currentLoadIdle":91.97081507887592,"currentLoadIrq":0.2082257500291516,"rawCurrentLoad":9640,"rawCurrentLoadUser":5171,"rawCurrentLoadSystem":4219,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":110422,"rawCurrentLoadIrq":250,"cpus":[{"load":9.102046222104496,"loadUser":3.6719422554797694,"loadSystem":4.60234421561486,"loadNice":0,"loadIdle":90.8979537778955,"loadIrq":0.8277597510098669,"rawLoad":2749,"rawLoadUser":1109,"rawLoadSystem":1390,"rawLoadNice":0,"rawLoadIdle":27453,"rawLoadIrq":250},{"load":7.721840154904186,"loadUser":4.850771182479803,"loadSystem":2.871068972424384,"loadNice":0,"loadIdle":92.27815984509581,"loadIrq":0,"rawLoad":2313,"rawLoadUser":1453,"rawLoadSystem":860,"rawLoadNice":0,"rawLoadIdle":27641,"rawLoadIrq":0},{"load":7.511768437218308,"loadUser":3.7024671986111577,"loadSystem":3.809301238607151,"loadNice":0,"loadIdle":92.48823156278169,"loadIrq":0,"rawLoad":2250,"rawLoadUser":1109,"rawLoadSystem":1141,"rawLoadNice":0,"rawLoadIdle":27703,"rawLoadIrq":0},{"load":7.7721764097085435,"loadUser":5.007845624812206,"loadSystem":2.764330784896338,"loadNice":0,"loadIdle":92.22782359029146,"loadIrq":0,"rawLoad":2328,"rawLoadUser":1500,"rawLoadSystem":828,"rawLoadNice":0,"rawLoadIdle":27625,"rawLoadIrq":0}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":13,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":23,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":241900740,"rx_dropped":0,"rx_errors":0,"tx_bytes":25356837,"tx_dropped":0,"tx_errors":0,"rx_sec":1808.4208393827869,"tx_sec":385.38677111118614,"ms":29617}]', '{"total":10685313024,"free":5055729664,"used":5629583360,"active":5629583360,"available":5055729664,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (290, '2022-03-29 23:38:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56232103936,"available":71044046848,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.3682402933814535,"currentLoadUser":3.509267960050893,"currentLoadSystem":2.7034668573756995,"currentLoadNice":0,"currentLoadIdle":93.63175970661854,"currentLoadIrq":0.15550547595486183,"rawCurrentLoad":7658,"rawCurrentLoadUser":4220,"rawCurrentLoadSystem":3251,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112595,"rawCurrentLoadIrq":187,"cpus":[{"load":6.939979451827794,"loadUser":3.055712060451397,"loadSystem":3.3672488648791967,"loadNice":0,"loadIdle":93.0600205481722,"loadIrq":0.5170185264971995,"rawLoad":2094,"rawLoadUser":922,"rawLoadSystem":1016,"rawLoadNice":0,"rawLoadIdle":28079,"rawLoadIrq":156},{"load":6.506746626686656,"loadUser":3.8514076295185737,"loadSystem":2.6553389971680827,"loadNice":0,"loadIdle":93.49325337331335,"loadIrq":0,"rawLoad":1953,"rawLoadUser":1156,"rawLoadSystem":797,"rawLoadNice":0,"rawLoadIdle":28062,"rawLoadIrq":0},{"load":5.6767831562114806,"loadUser":3.1781990205550192,"loadSystem":2.4985841356564613,"loadNice":0,"loadIdle":94.32321684378852,"loadIrq":0,"rawLoad":1704,"rawLoadUser":954,"rawLoadSystem":750,"rawLoadNice":0,"rawLoadIdle":28313,"rawLoadIrq":0},{"load":6.346512247071352,"loadUser":3.9536741214057507,"loadSystem":2.2896698615548456,"loadNice":0,"loadIdle":93.65348775292864,"loadIrq":0.10316826411075612,"rawLoad":1907,"rawLoadUser":1188,"rawLoadSystem":688,"rawLoadNice":0,"rawLoadIdle":28141,"rawLoadIrq":31}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":9,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":26,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":241956810,"rx_dropped":0,"rx_errors":0,"tx_bytes":25366857,"tx_dropped":0,"tx_errors":0,"rx_sec":1870.7460296276524,"tx_sec":334.3120245562525,"ms":29972}]', '{"total":10685313024,"free":5075615744,"used":5609697280,"active":5609697280,"available":5075615744,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (291, '2022-03-29 23:38:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56232103936,"available":71044046848,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.116075518209149,"currentLoadUser":3.3703373668562673,"currentLoadSystem":2.6799470339865255,"currentLoadNice":0,"currentLoadIdle":93.88392448179084,"currentLoadIrq":0.0657911173663566,"rawCurrentLoad":7344,"rawCurrentLoadUser":4047,"rawCurrentLoadSystem":3218,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112733,"rawCurrentLoadIrq":79,"cpus":[{"load":6.96560441753709,"loadUser":3.6391457654181356,"loadSystem":3.11689175703546,"loadNice":0,"loadIdle":93.03439558246292,"loadIrq":0.2095668950834941,"rawLoad":2094,"rawLoadUser":1094,"rawLoadSystem":937,"rawLoadNice":0,"rawLoadIdle":27968,"rawLoadIrq":63},{"load":5.676666666666667,"loadUser":3.4366666666666665,"loadSystem":2.2399999999999998,"loadNice":0,"loadIdle":94.32333333333334,"loadIrq":0,"rawLoad":1703,"rawLoadUser":1031,"rawLoadSystem":672,"rawLoadNice":0,"rawLoadIdle":28297,"rawLoadIrq":0},{"load":5.883529450981699,"loadUser":3.4367812260408677,"loadSystem":2.446748224940831,"loadNice":0,"loadIdle":94.1164705490183,"loadIrq":0,"rawLoad":1765,"rawLoadUser":1031,"rawLoadSystem":734,"rawLoadNice":0,"rawLoadIdle":28234,"rawLoadIrq":0},{"load":5.936833688699361,"loadUser":2.9684168443496803,"loadSystem":2.9151119402985075,"loadNice":0,"loadIdle":94.06316631130063,"loadIrq":0.053304904051172705,"rawLoad":1782,"rawLoadUser":891,"rawLoadSystem":875,"rawLoadNice":0,"rawLoadIdle":28234,"rawLoadIrq":16}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":7,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":242001822,"rx_dropped":0,"rx_errors":0,"tx_bytes":25373991,"tx_dropped":0,"tx_errors":0,"rx_sec":1498.9510140197808,"tx_sec":237.57034866295913,"ms":30029}]', '{"total":10685313024,"free":5076815872,"used":5608497152,"active":5608497152,"available":5076815872,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (292, '2022-03-29 23:39:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56232103936,"available":71044046848,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.3559145778391555,"currentLoadUser":3.5090638336813558,"currentLoadSystem":2.730381105296873,"currentLoadNice":0,"currentLoadIdle":93.64408542216086,"currentLoadIrq":0.11646963886092693,"rawCurrentLoad":7640,"rawCurrentLoadUser":4218,"rawCurrentLoadSystem":3282,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112563,"rawCurrentLoadIrq":140,"cpus":[{"load":7.1992306671972415,"loadUser":3.263032232391564,"loadSystem":3.4719458814166333,"loadNice":0,"loadIdle":92.80076933280276,"loadIrq":0.4642525533890436,"rawLoad":2171,"rawLoadUser":984,"rawLoadSystem":1047,"rawLoadNice":0,"rawLoadIdle":27985,"rawLoadIrq":140},{"load":6.143390191897654,"loadUser":3.6980277185501063,"loadSystem":2.4453624733475476,"loadNice":0,"loadIdle":93.85660980810235,"loadIrq":0,"rawLoad":1844,"rawLoadUser":1110,"rawLoadSystem":734,"rawLoadNice":0,"rawLoadIdle":28172,"rawLoadIrq":0},{"load":5.936833688699361,"loadUser":3.591417910447761,"loadSystem":2.345415778251599,"loadNice":0,"loadIdle":94.06316631130063,"loadIrq":0,"rawLoad":1782,"rawLoadUser":1078,"rawLoadSystem":704,"rawLoadNice":0,"rawLoadIdle":28234,"rawLoadIrq":0},{"load":6.140263201732467,"loadUser":3.4849242045643845,"loadSystem":2.6553389971680827,"loadNice":0,"loadIdle":93.85973679826753,"loadIrq":0,"rawLoad":1843,"rawLoadUser":1046,"rawLoadSystem":797,"rawLoadNice":0,"rawLoadIdle":28172,"rawLoadIrq":0}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":4,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":30,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":242048514,"rx_dropped":0,"rx_errors":0,"tx_bytes":25384359,"tx_dropped":0,"tx_errors":0,"rx_sec":1553.0867482703566,"tx_sec":344.86428951569985,"ms":30064}]', '{"total":10685313024,"free":5073977344,"used":5611335680,"active":5611335680,"available":5073977344,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (293, '2022-03-29 23:39:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56232103936,"available":71044046848,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.48566366381354,"currentLoadUser":3.1717116262820353,"currentLoadSystem":3.184188855339006,"currentLoadNice":0,"currentLoadIdle":93.51433633618646,"currentLoadIrq":0.1297631821924987,"rawCurrentLoad":7797,"rawCurrentLoadUser":3813,"rawCurrentLoadSystem":3828,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112422,"rawCurrentLoadIrq":156,"cpus":[{"load":7.568015925680159,"loadUser":3.1619110816191105,"loadSystem":3.991373589913736,"loadNice":0,"loadIdle":92.43198407431984,"loadIrq":0.41473125414731254,"rawLoad":2281,"rawLoadUser":953,"rawLoadSystem":1203,"rawLoadNice":0,"rawLoadIdle":27859,"rawLoadIrq":125},{"load":5.930538443608271,"loadUser":3.3298924444740434,"loadSystem":2.5506976124671175,"loadNice":0,"loadIdle":94.06946155639173,"loadIrq":0.04994838666711065,"rawLoad":1781,"rawLoadUser":1000,"rawLoadSystem":766,"rawLoadNice":0,"rawLoadIdle":28250,"rawLoadIrq":15},{"load":6.403251599147121,"loadUser":3.228278251599147,"loadSystem":3.174973347547974,"loadNice":0,"loadIdle":93.59674840085287,"loadIrq":0,"rawLoad":1922,"rawLoadUser":969,"rawLoadSystem":953,"rawLoadNice":0,"rawLoadIdle":28094,"rawLoadIrq":0},{"load":6.036893979754928,"loadUser":2.9668353755993606,"loadSystem":3.0167820990942995,"loadNice":0,"loadIdle":93.96310602024506,"loadIrq":0.05327650506126798,"rawLoad":1813,"rawLoadUser":891,"rawLoadSystem":906,"rawLoadNice":0,"rawLoadIdle":28219,"rawLoadIrq":16}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":5,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":25,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":242097855,"rx_dropped":0,"rx_errors":0,"tx_bytes":25422976,"tx_dropped":0,"tx_errors":0,"rx_sec":1643.056943056943,"tx_sec":1285.947385947386,"ms":30030}]', '{"total":10685313024,"free":5074161664,"used":5611151360,"active":5611151360,"available":5074161664,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (294, '2022-03-29 23:40:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56232108032,"available":71044042752,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.3866805411030185,"currentLoadUser":3.6162330905306974,"currentLoadSystem":2.6663891779396462,"currentLoadNice":0,"currentLoadIdle":93.61331945889698,"currentLoadIrq":0.10405827263267431,"rawCurrentLoad":7672,"rawCurrentLoadUser":4344,"rawCurrentLoadSystem":3203,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112453,"rawCurrentLoadIrq":125,"cpus":[{"load":6.8015011125502305,"loadUser":3.633223738832984,"loadSystem":2.8029623725548802,"loadNice":0,"loadIdle":93.19849888744976,"loadIrq":0.3653150011623659,"rawLoad":2048,"rawLoadUser":1094,"rawLoadSystem":844,"rawLoadNice":0,"rawLoadIdle":28063,"rawLoadIrq":110},{"load":6.093333333333333,"loadUser":3.75,"loadSystem":2.3433333333333333,"loadNice":0,"loadIdle":93.90666666666667,"loadIrq":0,"rawLoad":1828,"rawLoadUser":1125,"rawLoadSystem":703,"rawLoadNice":0,"rawLoadIdle":28172,"rawLoadIrq":0},{"load":6.143538117937265,"loadUser":3.4367812260408677,"loadSystem":2.7067568918963962,"loadNice":0,"loadIdle":93.85646188206273,"loadIrq":0,"rawLoad":1843,"rawLoadUser":1031,"rawLoadSystem":812,"rawLoadNice":0,"rawLoadIdle":28156,"rawLoadIrq":0},{"load":6.506746626686656,"loadUser":3.6448442445443945,"loadSystem":2.811927369648509,"loadNice":0,"loadIdle":93.49325337331335,"loadIrq":0.04997501249375312,"rawLoad":1953,"rawLoadUser":1094,"rawLoadSystem":844,"rawLoadNice":0,"rawLoadIdle":28062,"rawLoadIrq":15}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":5,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":25,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":242150278,"rx_dropped":0,"rx_errors":0,"tx_bytes":25430366,"tx_dropped":0,"tx_errors":0,"rx_sec":1750.5259291414834,"tx_sec":246.76929241660267,"ms":29947}]', '{"total":10685313024,"free":5068881920,"used":5616431104,"active":5616431104,"available":5068881920,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (295, '2022-03-29 23:40:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56232108032,"available":71044042752,"use":44.18,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.5541153650841215,"currentLoadUser":3.51140081416548,"currentLoadSystem":2.9386545457572653,"currentLoadNice":0,"currentLoadIdle":93.44588463491587,"currentLoadIrq":0.10406000516137626,"rawCurrentLoad":7873,"rawCurrentLoadUser":4218,"rawCurrentLoadSystem":3530,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112250,"rawCurrentLoadIrq":125,"cpus":[{"load":7.054603427660422,"loadUser":3.8395110933971037,"loadSystem":2.8530623090208582,"loadNice":0,"loadIdle":92.94539657233958,"loadIrq":0.3620300252424605,"rawLoad":2124,"rawLoadUser":1156,"rawLoadSystem":859,"rawLoadNice":0,"rawLoadIdle":27984,"rawLoadIrq":109},{"load":6.25,"loadUser":3.3333333333333335,"loadSystem":2.9166666666666665,"loadNice":0,"loadIdle":93.75,"loadIrq":0,"rawLoad":1875,"rawLoadUser":1000,"rawLoadSystem":875,"rawLoadNice":0,"rawLoadIdle":28125,"rawLoadIrq":0},{"load":6.456666666666666,"loadUser":3.4366666666666665,"loadSystem":3.02,"loadNice":0,"loadIdle":93.54333333333334,"loadIrq":0,"rawLoad":1937,"rawLoadUser":1031,"rawLoadSystem":906,"rawLoadNice":0,"rawLoadIdle":28063,"rawLoadIrq":0},{"load":6.4534399466933206,"loadUser":3.4349491920706314,"loadSystem":2.965184074629352,"loadNice":0,"loadIdle":93.54656005330668,"loadIrq":0.053306679993336666,"rawLoad":1937,"rawLoadUser":1031,"rawLoadSystem":890,"rawLoadNice":0,"rawLoadIdle":28078,"rawLoadIrq":16}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":5,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":242180417,"rx_dropped":0,"rx_errors":0,"tx_bytes":25434268,"tx_dropped":0,"tx_errors":0,"rx_sec":1004.5663622425172,"tx_sec":130.0579961335911,"ms":30002}]', '{"total":10685313024,"free":5131186176,"used":5554126848,"active":5554126848,"available":5131186176,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4646240256,"swapused":60817408,"swapfree":4585422848}'), (296, '2022-03-29 23:41:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55600431104,"available":71675719680,"use":43.68,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.711219487836748,"currentLoadUser":3.862446632322711,"currentLoadSystem":2.7705418743810184,"currentLoadNice":0,"currentLoadIdle":93.28878051216324,"currentLoadIrq":0.07823098113301763,"rawCurrentLoad":8064,"rawCurrentLoadUser":4641,"rawCurrentLoadSystem":3329,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112093,"rawCurrentLoadIrq":94,"cpus":[{"load":7.373562836445803,"loadUser":3.791453445869609,"loadSystem":3.3229215125938723,"loadNice":0,"loadIdle":92.6264371635542,"loadIrq":0.25918787798232207,"rawLoad":2219,"rawLoadUser":1141,"rawLoadSystem":1000,"rawLoadNice":0,"rawLoadIdle":27875,"rawLoadIrq":78},{"load":6.036981509245377,"loadUser":4.21455938697318,"loadSystem":1.8224221222721972,"loadNice":0,"loadIdle":93.96301849075462,"loadIrq":0,"rawLoad":1812,"rawLoadUser":1265,"rawLoadSystem":547,"rawLoadNice":0,"rawLoadIdle":28203,"rawLoadIrq":0},{"load":6.509861407249468,"loadUser":3.28158315565032,"loadSystem":3.228278251599147,"loadNice":0,"loadIdle":93.49013859275054,"loadIrq":0,"rawLoad":1954,"rawLoadUser":985,"rawLoadSystem":969,"rawLoadNice":0,"rawLoadIdle":28062,"rawLoadIrq":0},{"load":6.922615876398508,"loadUser":4.162226957911561,"loadSystem":2.707112413425679,"loadNice":0,"loadIdle":93.07738412360149,"loadIrq":0.05327650506126798,"rawLoad":2079,"rawLoadUser":1250,"rawLoadSystem":813,"rawLoadNice":0,"rawLoadIdle":27953,"rawLoadIrq":16}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":5,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":242217628,"rx_dropped":0,"rx_errors":0,"tx_bytes":25438018,"tx_dropped":0,"tx_errors":0,"rx_sec":1239.3338884263114,"tx_sec":124.89592006661117,"ms":30025}]', '{"total":10685313024,"free":5167783936,"used":5517529088,"active":5517529088,"available":5167783936,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (297, '2022-03-29 23:41:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55600390144,"available":71675760640,"use":43.68,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.600462720229029,"currentLoadUser":3.9406120224036485,"currentLoadSystem":7.5291904892683865,"currentLoadNice":0,"currentLoadIdle":88.39953727977097,"currentLoadIrq":0.1306602085569953,"rawCurrentLoad":13939,"rawCurrentLoadUser":4735,"rawCurrentLoadSystem":9047,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":106220,"rawCurrentLoadIrq":157,"cpus":[{"load":11.926879437329971,"loadUser":3.3707119633733664,"loadSystem":8.088381660141994,"loadNice":0,"loadIdle":88.07312056267003,"loadIrq":0.4677858138146108,"rawLoad":3595,"rawLoadUser":1016,"rawLoadSystem":2438,"rawLoadNice":0,"rawLoadIdle":26547,"rawLoadIrq":141},{"load":10.26,"loadUser":3.543333333333333,"loadSystem":6.716666666666667,"loadNice":0,"loadIdle":89.74,"loadIrq":0,"rawLoad":3078,"rawLoadUser":1063,"rawLoadSystem":2015,"rawLoadNice":0,"rawLoadIdle":26922,"rawLoadIrq":0},{"load":11.193656927740946,"loadUser":4.164306892760769,"loadSystem":6.97604690675284,"loadNice":0,"loadIdle":88.80634307225905,"loadIrq":0.05330312822733784,"rawLoad":3360,"rawLoadUser":1250,"rawLoadSystem":2094,"rawLoadNice":0,"rawLoadIdle":26657,"rawLoadIrq":16},{"load":13.020000000000001,"loadUser":4.6866666666666665,"loadSystem":8.333333333333332,"loadNice":0,"loadIdle":86.98,"loadIrq":0,"rawLoad":3906,"rawLoadUser":1406,"rawLoadSystem":2500,"rawLoadNice":0,"rawLoadIdle":26094,"rawLoadIrq":0}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":4,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":242257284,"rx_dropped":0,"rx_errors":0,"tx_bytes":25441900,"tx_dropped":0,"tx_errors":0,"rx_sec":1322.9250066720042,"tx_sec":129.50360288230584,"ms":29976}]', '{"total":10685313024,"free":5457027072,"used":5228285952,"active":5228285952,"available":5457027072,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (298, '2022-03-29 23:42:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55600390144,"available":71675760640,"use":43.68,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.272857237848262,"currentLoadUser":3.415286920672917,"currentLoadSystem":2.649777245827515,"currentLoadNice":0,"currentLoadIdle":93.72714276215174,"currentLoadIrq":0.20779307134782898,"rawCurrentLoad":7547,"rawCurrentLoadUser":4109,"rawCurrentLoadSystem":3188,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112765,"rawCurrentLoadIrq":250,"cpus":[{"load":7.949776970097472,"loadUser":3.664298694862052,"loadSystem":3.459441599207005,"loadNice":0,"loadIdle":92.05022302990253,"loadIrq":0.8260366760284157,"rawLoad":2406,"rawLoadUser":1109,"rawLoadSystem":1047,"rawLoadNice":0,"rawLoadIdle":27859,"rawLoadIrq":250},{"load":5.467084221748401,"loadUser":3.018390191897655,"loadSystem":2.4486940298507465,"loadNice":0,"loadIdle":94.5329157782516,"loadIrq":0,"rawLoad":1641,"rawLoadUser":906,"rawLoadSystem":735,"rawLoadNice":0,"rawLoadIdle":28375,"rawLoadIrq":0},{"load":5.570548059303682,"loadUser":3.5915375645510577,"loadSystem":1.9790104947526237,"loadNice":0,"loadIdle":94.42945194069632,"loadIrq":0,"rawLoad":1672,"rawLoadUser":1078,"rawLoadSystem":594,"rawLoadNice":0,"rawLoadIdle":28343,"rawLoadIrq":0},{"load":6.090085287846482,"loadUser":3.384861407249467,"loadSystem":2.7052238805970146,"loadNice":0,"loadIdle":93.90991471215352,"loadIrq":0,"rawLoad":1828,"rawLoadUser":1016,"rawLoadSystem":812,"rawLoadNice":0,"rawLoadIdle":28188,"rawLoadIrq":0}]}', '{"ESTABLISHED":20,"CLOSE":0,"TIME_WAIT":4,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":242302659,"rx_dropped":0,"rx_errors":0,"tx_bytes":25449041,"tx_dropped":0,"tx_errors":0,"rx_sec":1509.3304061470913,"tx_sec":237.53451086052624,"ms":30063}]', '{"total":10685313024,"free":5449023488,"used":5236289536,"active":5236289536,"available":5449023488,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (299, '2022-03-29 23:42:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55600365568,"available":71675785216,"use":43.68,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.6893942543549665,"currentLoadUser":3.7151290899264127,"currentLoadSystem":2.8054712509874027,"currentLoadNice":0,"currentLoadIdle":93.31060574564503,"currentLoadIrq":0.1687939134411508,"rawCurrentLoad":8045,"rawCurrentLoadUser":4468,"rawCurrentLoadSystem":3374,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112220,"rawCurrentLoadIrq":203,"cpus":[{"load":7.90919319610828,"loadUser":4.083658746442518,"loadSystem":3.1537494208749752,"loadNice":0,"loadIdle":92.09080680389172,"loadIrq":0.6717850287907869,"rawLoad":2390,"rawLoadUser":1234,"rawLoadSystem":953,"rawLoadNice":0,"rawLoadIdle":27828,"rawLoadIrq":203},{"load":5.670498084291188,"loadUser":3.0184907546226887,"loadSystem":2.652007329668499,"loadNice":0,"loadIdle":94.32950191570882,"loadIrq":0,"rawLoad":1702,"rawLoadUser":906,"rawLoadSystem":796,"rawLoadNice":0,"rawLoadIdle":28313,"rawLoadIrq":0},{"load":6.609808102345416,"loadUser":3.6946961620469088,"loadSystem":2.9151119402985075,"loadNice":0,"loadIdle":93.39019189765459,"loadIrq":0,"rawLoad":1984,"rawLoadUser":1109,"rawLoadSystem":875,"rawLoadNice":0,"rawLoadIdle":28032,"rawLoadIrq":0},{"load":6.559834754797442,"loadUser":4.0611673773987205,"loadSystem":2.4986673773987205,"loadNice":0,"loadIdle":93.44016524520255,"loadIrq":0,"rawLoad":1969,"rawLoadUser":1219,"rawLoadSystem":750,"rawLoadNice":0,"rawLoadIdle":28047,"rawLoadIrq":0}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":4,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":22,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":242371958,"rx_dropped":0,"rx_errors":0,"tx_bytes":25462242,"tx_dropped":0,"tx_errors":0,"rx_sec":2310.891023075897,"tx_sec":440.2094171001734,"ms":29988}]', '{"total":10685313024,"free":5459959808,"used":5225353216,"active":5225353216,"available":5459959808,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (300, '2022-03-29 23:43:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55600431104,"available":71675719680,"use":43.68,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.278541661467821,"currentLoadUser":3.4062835325530907,"currentLoadSystem":2.6909223999534184,"currentLoadNice":0,"currentLoadIdle":93.72145833853219,"currentLoadIrq":0.18133572896131228,"rawCurrentLoad":7548,"rawCurrentLoadUser":4095,"rawCurrentLoadSystem":3235,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112671,"rawCurrentLoadIrq":218,"cpus":[{"load":7.247913078044256,"loadUser":3.1601961044123494,"loadSystem":3.4682655359745596,"loadNice":0,"loadIdle":92.75208692195575,"loadIrq":0.6194514376573473,"rawLoad":2188,"rawLoadUser":954,"rawLoadSystem":1047,"rawLoadNice":0,"rawLoadIdle":28000,"rawLoadIrq":187},{"load":5.993270480061299,"loadUser":3.594629709831096,"loadSystem":2.345337642002865,"loadNice":0,"loadIdle":94.0067295199387,"loadIrq":0.05330312822733784,"rawLoad":1799,"rawLoadUser":1079,"rawLoadSystem":704,"rawLoadNice":0,"rawLoadIdle":28218,"rawLoadIrq":16},{"load":5.877257279936029,"loadUser":3.435063636969414,"loadSystem":2.3922169654161394,"loadNice":0,"loadIdle":94.12274272006397,"loadIrq":0.049976677550476446,"rawLoad":1764,"rawLoadUser":1031,"rawLoadSystem":718,"rawLoadNice":0,"rawLoadIdle":28250,"rawLoadIrq":15},{"load":5.99,"loadUser":3.4366666666666665,"loadSystem":2.5533333333333337,"loadNice":0,"loadIdle":94.01,"loadIrq":0,"rawLoad":1797,"rawLoadUser":1031,"rawLoadSystem":766,"rawLoadNice":0,"rawLoadIdle":28203,"rawLoadIrq":0}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":4,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":242413991,"rx_dropped":0,"rx_errors":0,"tx_bytes":25470537,"tx_dropped":0,"tx_errors":0,"rx_sec":1399.7002997002996,"tx_sec":276.2237762237762,"ms":30030}]', '{"total":10685313024,"free":5464621056,"used":5220691968,"active":5220691968,"available":5464621056,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (301, '2022-03-29 23:43:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55600431104,"available":71675719680,"use":43.68,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":6.262006336851034,"currentLoadUser":3.364684945404951,"currentLoadSystem":2.7418107427088794,"currentLoadNice":0,"currentLoadIdle":93.73799366314897,"currentLoadIrq":0.15551064873720363,"rawCurrentLoad":7530,"rawCurrentLoadUser":4046,"rawCurrentLoadSystem":3297,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":112719,"rawCurrentLoadIrq":187,"cpus":[{"load":7.047113470471135,"loadUser":3.264764432647645,"loadSystem":3.367617783676178,"loadNice":0,"loadIdle":92.95288652952887,"loadIrq":0.41473125414731254,"rawLoad":2124,"rawLoadUser":984,"rawLoadSystem":1015,"rawLoadNice":0,"rawLoadIdle":28016,"rawLoadIrq":125},{"load":5.567216391804098,"loadUser":2.8085957021489256,"loadSystem":2.7586206896551726,"loadNice":0,"loadIdle":94.4327836081959,"loadIrq":0,"rawLoad":1671,"rawLoadUser":843,"rawLoadSystem":828,"rawLoadNice":0,"rawLoadIdle":28344,"rawLoadIrq":0},{"load":6.196517164452436,"loadUser":3.7991542636433255,"loadSystem":2.3440881696800187,"loadNice":0,"loadIdle":93.80348283554757,"loadIrq":0.05327473112909134,"rawLoad":1861,"rawLoadUser":1141,"rawLoadSystem":704,"rawLoadNice":0,"rawLoadIdle":28172,"rawLoadIrq":16},{"load":6.233990885200093,"loadUser":3.5860417151791357,"loadSystem":2.494926981803666,"loadNice":0,"loadIdle":93.76600911479991,"loadIrq":0.1530221882172915,"rawLoad":1874,"rawLoadUser":1078,"rawLoadSystem":750,"rawLoadNice":0,"rawLoadIdle":28187,"rawLoadIrq":46}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":5,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":242458442,"rx_dropped":0,"rx_errors":0,"tx_bytes":25478070,"tx_dropped":0,"tx_errors":0,"rx_sec":1482.1940646882294,"tx_sec":251.18372790930312,"ms":29990}]', '{"total":10685313024,"free":5457833984,"used":5227479040,"active":5227479040,"available":5457833984,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (302, '2022-03-29 23:44:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55600594944,"available":71675555840,"use":43.69,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":7.599996668859667,"currentLoadUser":3.8916046935767286,"currentLoadSystem":3.643434738796959,"currentLoadNice":0,"currentLoadIdle":92.40000333114034,"currentLoadIrq":0.06495723648598006,"rawCurrentLoad":9126,"rawCurrentLoadUser":4673,"rawCurrentLoadSystem":4375,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":110953,"rawCurrentLoadIrq":78,"cpus":[{"load":8.15546246425959,"loadUser":4.155861426956579,"loadSystem":3.7402752842609215,"loadNice":0,"loadIdle":91.84453753574041,"loadIrq":0.2593257530420906,"rawLoad":2453,"rawLoadUser":1250,"rawLoadSystem":1125,"rawLoadNice":0,"rawLoadIdle":27625,"rawLoadIrq":78},{"load":7.136666666666666,"loadUser":3.8033333333333337,"loadSystem":3.3333333333333335,"loadNice":0,"loadIdle":92.86333333333333,"loadIrq":0,"rawLoad":2141,"rawLoadUser":1141,"rawLoadSystem":1000,"rawLoadNice":0,"rawLoadIdle":27859,"rawLoadIrq":0},{"load":7.553333333333333,"loadUser":3.8033333333333337,"loadSystem":3.75,"loadNice":0,"loadIdle":92.44666666666667,"loadIrq":0,"rawLoad":2266,"rawLoadUser":1141,"rawLoadSystem":1125,"rawLoadNice":0,"rawLoadIdle":27734,"rawLoadIrq":0},{"load":7.553081563947868,"loadUser":3.8032065597813407,"loadSystem":3.749875004166528,"loadNice":0,"loadIdle":92.44691843605213,"loadIrq":0,"rawLoad":2266,"rawLoadUser":1141,"rawLoadSystem":1125,"rawLoadNice":0,"rawLoadIdle":27735,"rawLoadIrq":0}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":6,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":242518238,"rx_dropped":0,"rx_errors":0,"tx_bytes":25486775,"tx_dropped":0,"tx_errors":0,"rx_sec":1994.9289384132915,"tx_sec":290.4183625809034,"ms":29974}]', '{"total":10685313024,"free":5457334272,"used":5227978752,"active":5227978752,"available":5457334272,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (303, '2022-03-29 23:44:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55601053696,"available":71675097088,"use":43.69,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":14.92796820665673,"currentLoadUser":8.253022023513827,"currentLoadSystem":6.234475906607054,"currentLoadNice":0,"currentLoadIdle":85.07203179334327,"currentLoadIrq":0.4404702765358503,"rawCurrentLoad":18030,"rawCurrentLoadUser":9968,"rawCurrentLoadSystem":7530,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":102750,"rawCurrentLoadIrq":532,"cpus":[{"load":16.635360026363486,"loadUser":8.393475037073653,"loadSystem":7.312572087658594,"loadNice":0,"loadIdle":83.36463997363651,"loadIrq":0.9293129016312407,"rawLoad":5048,"rawLoadUser":2547,"rawLoadSystem":2219,"rawLoadNice":0,"rawLoadIdle":25297,"rawLoadIrq":282},{"load":13.387578877449352,"loadUser":8.146795084689472,"loadSystem":5.084689471936234,"loadNice":0,"loadIdle":86.61242112255064,"loadIrq":0.15609432082364663,"rawLoad":4031,"rawLoadUser":2453,"rawLoadSystem":1531,"rawLoadNice":0,"rawLoadIdle":26079,"rawLoadIrq":47},{"load":14.741459524126013,"loadUser":8.670078426159776,"loadSystem":5.968363684700253,"loadNice":0,"loadIdle":85.25854047587399,"loadIrq":0.10301741326598432,"rawLoad":4436,"rawLoadUser":2609,"rawLoadSystem":1796,"rawLoadNice":0,"rawLoadIdle":25656,"rawLoadIrq":31},{"load":14.93401250289419,"loadUser":7.8027321139152575,"loadSystem":6.5623656269639135,"loadNice":0,"loadIdle":85.06598749710581,"loadIrq":0.5689147620150167,"rawLoad":4515,"rawLoadUser":2359,"rawLoadSystem":1984,"rawLoadNice":0,"rawLoadIdle":25718,"rawLoadIrq":172}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":7,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":33,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":242587159,"rx_dropped":0,"rx_errors":0,"tx_bytes":25511595,"tx_dropped":0,"tx_errors":0,"rx_sec":2279.133597883598,"tx_sec":820.7671957671959,"ms":30240}]', '{"total":10685313024,"free":5325328384,"used":5359984640,"active":5359984640,"available":5325328384,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (304, '2022-03-29 23:45:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55601381376,"available":71674769408,"use":43.69,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":15.5292531275751,"currentLoadUser":9.572086132128083,"currentLoadSystem":5.736592836750152,"currentLoadNice":0,"currentLoadIdle":84.4707468724249,"currentLoadIrq":0.22057415869686453,"rawCurrentLoad":18657,"rawCurrentLoadUser":11500,"rawCurrentLoadSystem":6892,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":101484,"rawCurrentLoadIrq":265,"cpus":[{"load":16.73354335931023,"loadUser":8.237439893881612,"loadSystem":7.875974133642845,"loadNice":0,"loadIdle":83.26645664068977,"loadIrq":0.6201293317857735,"rawLoad":5046,"rawLoadUser":2484,"rawLoadSystem":2375,"rawLoadNice":0,"rawLoadIdle":25109,"rawLoadIrq":187},{"load":14.591115261472787,"loadUser":9.224919957310565,"loadSystem":5.3161686232657415,"loadNice":0,"loadIdle":85.4088847385272,"loadIrq":0.05002668089647812,"rawLoad":4375,"rawLoadUser":2766,"rawLoadSystem":1594,"rawLoadNice":0,"rawLoadIdle":25609,"rawLoadIrq":15},{"load":16.042798573380885,"loadUser":10.676310789640345,"loadSystem":5.263157894736842,"loadNice":0,"loadIdle":83.95720142661911,"loadIrq":0.10332988900369987,"rawLoad":4813,"rawLoadUser":3203,"rawLoadSystem":1579,"rawLoadNice":0,"rawLoadIdle":25188,"rawLoadIrq":31},{"load":14.742841905269824,"loadUser":10.156328122395921,"loadSystem":4.479850671644278,"loadNice":0,"loadIdle":85.25715809473017,"loadIrq":0.10666311122962568,"rawLoad":4423,"rawLoadUser":3047,"rawLoadSystem":1344,"rawLoadNice":0,"rawLoadIdle":25578,"rawLoadIrq":32}]}', '{"ESTABLISHED":27,"CLOSE":0,"TIME_WAIT":14,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":31,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":242649550,"rx_dropped":0,"rx_errors":0,"tx_bytes":25535461,"tx_dropped":0,"tx_errors":0,"rx_sec":2075.2727514635444,"tx_sec":793.839808408728,"ms":30064}]', '{"total":10685313024,"free":5280931840,"used":5404381184,"active":5404381184,"available":5280931840,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (305, '2022-03-29 23:45:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55601438720,"available":71674712064,"use":43.69,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":15.984834028855168,"currentLoadUser":10.047041059294964,"currentLoadSystem":5.651564301892428,"currentLoadNice":0,"currentLoadIdle":84.01516597114484,"currentLoadIrq":0.2862286676677756,"rawCurrentLoad":19267,"rawCurrentLoadUser":12110,"rawCurrentLoadSystem":6812,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":101266,"rawCurrentLoadIrq":345,"cpus":[{"load":17.287497523281157,"loadUser":9.751667657354204,"loadSystem":6.75979129515884,"loadNice":0,"loadIdle":82.71250247671884,"loadIrq":0.776038570768113,"rawLoad":5235,"rawLoadUser":2953,"rawLoadSystem":2047,"rawLoadNice":0,"rawLoadIdle":25047,"rawLoadIrq":235},{"load":14.300928545279062,"loadUser":9.30874962558658,"loadSystem":4.992178919692482,"loadNice":0,"loadIdle":85.69907145472094,"loadIrq":0,"rawLoad":4297,"rawLoadUser":2797,"rawLoadSystem":1500,"rawLoadNice":0,"rawLoadIdle":25750,"rawLoadIrq":0},{"load":16.885534758469365,"loadUser":10.442501412945909,"loadSystem":6.336646830014296,"loadNice":0,"loadIdle":83.11446524153064,"loadIrq":0.10638651550915922,"rawLoad":5079,"rawLoadUser":3141,"rawLoadSystem":1906,"rawLoadNice":0,"rawLoadIdle":25000,"rawLoadIrq":32},{"load":15.455601659751036,"loadUser":10.685477178423236,"loadSystem":4.511203319502075,"loadNice":0,"loadIdle":84.54439834024896,"loadIrq":0.25892116182572616,"rawLoad":4656,"rawLoadUser":3219,"rawLoadSystem":1359,"rawLoadNice":0,"rawLoadIdle":25469,"rawLoadIrq":78}]}', '{"ESTABLISHED":30,"CLOSE":0,"TIME_WAIT":18,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":32,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":243033997,"rx_dropped":0,"rx_errors":0,"tx_bytes":25568530,"tx_dropped":0,"tx_errors":0,"rx_sec":12825.58798999166,"tx_sec":1103.2193494578814,"ms":29975}]', '{"total":10685313024,"free":5210456064,"used":5474856960,"active":5474856960,"available":5210456064,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (306, '2022-03-29 23:46:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55602831360,"available":71673319424,"use":43.69,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":21.485678416862136,"currentLoadUser":13.32964419042585,"currentLoadSystem":7.162443423965113,"currentLoadNice":0,"currentLoadIdle":78.51432158313787,"currentLoadIrq":0.9935908024711751,"rawCurrentLoad":26014,"rawCurrentLoadUser":16139,"rawCurrentLoadSystem":8672,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":95062,"rawCurrentLoadIrq":1203,"cpus":[{"load":24.257441990219565,"loadUser":13.3840953099872,"loadSystem":9.23233450392202,"loadNice":0,"loadIdle":75.74255800978044,"loadIrq":1.6410121763103482,"rawLoad":7391,"rawLoadUser":4078,"rawLoadSystem":2813,"rawLoadNice":0,"rawLoadIdle":23078,"rawLoadIrq":500},{"load":18.22727424247475,"loadUser":11.820394013133772,"loadSystem":6.300210007000233,"loadNice":0,"loadIdle":81.77272575752525,"loadIrq":0.10667022234074469,"rawLoad":5468,"rawLoadUser":3546,"rawLoadSystem":1890,"rawLoadNice":0,"rawLoadIdle":24531,"rawLoadIrq":32},{"load":21.418138361439386,"loadUser":14.470189881821804,"loadSystem":6.430088965608817,"loadNice":0,"loadIdle":78.58186163856061,"loadIrq":0.5178595140087638,"rawLoad":6452,"rawLoadUser":4359,"rawLoadSystem":1937,"rawLoadNice":0,"rawLoadIdle":23672,"rawLoadIrq":156},{"load":21.98858417530508,"loadUser":13.633381446004462,"loadSystem":6.665791890827975,"loadNice":0,"loadIdle":78.01141582469492,"loadIrq":1.6894108384726416,"rawLoad":6703,"rawLoadUser":4156,"rawLoadSystem":2032,"rawLoadNice":0,"rawLoadIdle":23781,"rawLoadIrq":515}]}', '{"ESTABLISHED":27,"CLOSE":0,"TIME_WAIT":22,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":29,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":243101930,"rx_dropped":0,"rx_errors":0,"tx_bytes":25587738,"tx_dropped":0,"tx_errors":0,"rx_sec":2275.507469685804,"tx_sec":643.3978696322101,"ms":29854}]', '{"total":10685313024,"free":5197066240,"used":5488234496,"active":5488226304,"available":5197090816,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (307, '2022-03-29 23:46:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55603269632,"available":71672881152,"use":43.69,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":15.820843412553929,"currentLoadUser":9.572973557112812,"currentLoadSystem":6.000980905591994,"currentLoadNice":0,"currentLoadIdle":84.17915658744607,"currentLoadIrq":0.2468889498491234,"rawCurrentLoad":19032,"rawCurrentLoadUser":11516,"rawCurrentLoadSystem":7219,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":101265,"rawCurrentLoadIrq":297,"cpus":[{"load":17.05374917053749,"loadUser":9.124087591240876,"loadSystem":7.465162574651625,"loadNice":0,"loadIdle":82.94625082946251,"loadIrq":0.46449900464499,"rawLoad":5140,"rawLoadUser":2750,"rawLoadSystem":2250,"rawLoadNice":0,"rawLoadIdle":25000,"rawLoadIrq":140},{"load":14.896666666666667,"loadUser":10.156666666666666,"loadSystem":4.74,"loadNice":0,"loadIdle":85.10333333333332,"loadIrq":0,"rawLoad":4469,"rawLoadUser":3047,"rawLoadSystem":1422,"rawLoadNice":0,"rawLoadIdle":25531,"rawLoadIrq":0},{"load":15.783333333333333,"loadUser":9.426666666666666,"loadSystem":6.356666666666666,"loadNice":0,"loadIdle":84.21666666666667,"loadIrq":0,"rawLoad":4735,"rawLoadUser":2828,"rawLoadSystem":1907,"rawLoadNice":0,"rawLoadIdle":25265,"rawLoadIrq":0},{"load":15.545312862685282,"loadUser":9.586497330636337,"loadSystem":5.438206718174884,"loadNice":0,"loadIdle":84.45468713731472,"loadIrq":0.5206088138740591,"rawLoad":4688,"rawLoadUser":2891,"rawLoadSystem":1640,"rawLoadNice":0,"rawLoadIdle":25469,"rawLoadIrq":157}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":25,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":27,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":243149598,"rx_dropped":0,"rx_errors":0,"tx_bytes":25608071,"tx_dropped":0,"tx_errors":0,"rx_sec":1588.7744558877446,"tx_sec":677.6988967769889,"ms":30003}]', '{"total":10685313024,"free":5231853568,"used":5453459456,"active":5453459456,"available":5231853568,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (308, '2022-03-29 23:47:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55604711424,"available":71671439360,"use":43.69,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":16.287123779150885,"currentLoadUser":9.693708059265164,"currentLoadSystem":6.255398312404492,"currentLoadNice":0,"currentLoadIdle":83.71287622084911,"currentLoadIrq":0.3380174074812305,"rawCurrentLoad":19611,"rawCurrentLoadUser":11672,"rawCurrentLoadSystem":7532,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":100797,"rawCurrentLoadIrq":407,"cpus":[{"load":17.883247891516454,"loadUser":9.250868199106996,"loadSystem":7.855134777575658,"loadNice":0,"loadIdle":82.11675210848355,"loadIrq":0.7772449148338019,"rawLoad":5407,"rawLoadUser":2797,"rawLoadSystem":2375,"rawLoadNice":0,"rawLoadIdle":24828,"rawLoadIrq":235},{"load":14.97936634717785,"loadUser":9.77768903088392,"loadSystem":5.045260915867945,"loadNice":0,"loadIdle":85.02063365282216,"loadIrq":0.1564164004259851,"rawLoad":4501,"rawLoadUser":2938,"rawLoadSystem":1516,"rawLoadNice":0,"rawLoadIdle":25547,"rawLoadIrq":47},{"load":16.068159882850203,"loadUser":9.152328019436217,"loadSystem":6.759410257263621,"loadNice":0,"loadIdle":83.9318401171498,"loadIrq":0.1564216061503644,"rawLoad":4828,"rawLoadUser":2750,"rawLoadSystem":2031,"rawLoadNice":0,"rawLoadIdle":25219,"rawLoadIrq":47},{"load":16.20785956513066,"loadUser":10.595784294168494,"loadSystem":5.352749517920074,"loadNice":0,"loadIdle":83.79214043486934,"loadIrq":0.2593257530420906,"rawLoad":4875,"rawLoadUser":3187,"rawLoadSystem":1610,"rawLoadNice":0,"rawLoadIdle":25203,"rawLoadIrq":78}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":23,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":32,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":243210786,"rx_dropped":0,"rx_errors":0,"tx_bytes":25631314,"tx_dropped":0,"tx_errors":0,"rx_sec":2025.5561440677968,"tx_sec":769.431938559322,"ms":30208}]', '{"total":10685313024,"free":5252816896,"used":5432496128,"active":5432496128,"available":5252816896,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (309, '2022-03-29 23:47:47', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55605194752,"available":71670956032,"use":43.69,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":15.938965968803357,"currentLoadUser":8.88325293815373,"currentLoadSystem":6.5650537901768695,"currentLoadNice":0,"currentLoadIdle":84.06103403119664,"currentLoadIrq":0.4906592404727568,"rawCurrentLoad":19231,"rawCurrentLoadUser":10718,"rawCurrentLoadSystem":7921,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":101423,"rawCurrentLoadIrq":592,"cpus":[{"load":16.86874710130524,"loadUser":8.126283707679056,"loadSystem":8.175975617836082,"loadNice":0,"loadIdle":83.13125289869477,"loadIrq":0.5664877757901015,"rawLoad":5092,"rawLoadUser":2453,"rawLoadSystem":2468,"rawLoadNice":0,"rawLoadIdle":25094,"rawLoadIrq":171},{"load":14.159115138592751,"loadUser":9.00519722814499,"loadSystem":5.1539179104477615,"loadNice":0,"loadIdle":85.84088486140725,"loadIrq":0,"rawLoad":4250,"rawLoadUser":2703,"rawLoadSystem":1547,"rawLoadNice":0,"rawLoadIdle":25766,"rawLoadIrq":0},{"load":15.254575044006774,"loadUser":8.406124414626856,"loadSystem":6.539572885183833,"loadNice":0,"loadIdle":84.74542495599322,"loadIrq":0.30887774419608754,"rawLoad":4593,"rawLoadUser":2531,"rawLoadSystem":1969,"rawLoadNice":0,"rawLoadIdle":25516,"rawLoadIrq":93},{"load":17.45377846620308,"loadUser":9.98912434498896,"loadSystem":6.383679926177373,"loadNice":0,"loadIdle":82.54622153379692,"loadIrq":1.0809741950367464,"rawLoad":5296,"rawLoadUser":3031,"rawLoadSystem":1937,"rawLoadNice":0,"rawLoadIdle":25047,"rawLoadIrq":328}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":22,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":28,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":243260808,"rx_dropped":0,"rx_errors":0,"tx_bytes":25646224,"tx_dropped":0,"tx_errors":0,"rx_sec":1652.4726636054309,"tx_sec":492.55062601169436,"ms":30271}]', '{"total":10685313024,"free":5274554368,"used":5410758656,"active":5410758656,"available":5274554368,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (310, '2022-03-29 23:48:16', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55601737728,"available":71674413056,"use":43.69,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":21.37182028410968,"currentLoadUser":12.492566897918731,"currentLoadSystem":8.09134456557648,"currentLoadNice":0,"currentLoadIdle":78.62817971589033,"currentLoadIrq":0.7879088206144698,"rawCurrentLoad":25877,"rawCurrentLoadUser":15126,"rawCurrentLoadSystem":9797,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":95203,"rawCurrentLoadIrq":954,"cpus":[{"load":23.219274890707688,"loadUser":12.68776912204582,"loadSystem":9.246293922361373,"loadNice":0,"loadIdle":76.78072510929232,"loadIrq":1.2852118463004962,"rawLoad":7064,"rawLoadUser":3860,"rawLoadSystem":2813,"rawLoadNice":0,"rawLoadIdle":23359,"rawLoadIrq":391},{"load":19.073913911250084,"loadUser":11.95529239571552,"loadSystem":7.015501297318874,"loadNice":0,"loadIdle":80.92608608874991,"loadIrq":0.10312021821568759,"rawLoad":5734,"rawLoadUser":3594,"rawLoadSystem":2109,"rawLoadNice":0,"rawLoadIdle":24328,"rawLoadIrq":31},{"load":20.821426197913205,"loadUser":12.617132983318935,"loadSystem":7.994949159300857,"loadNice":0,"loadIdle":79.17857380208679,"loadIrq":0.20934405529341396,"rawLoad":6266,"rawLoadUser":3797,"rawLoadSystem":2406,"rawLoadNice":0,"rawLoadIdle":23828,"rawLoadIrq":63},{"load":22.336972558276777,"loadUser":12.70450149175437,"loadSystem":8.094816563391365,"loadNice":0,"loadIdle":77.66302744172322,"loadIrq":1.537654503131045,"rawLoad":6813,"rawLoadUser":3875,"rawLoadSystem":2469,"rawLoadNice":0,"rawLoadIdle":23688,"rawLoadIrq":469}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":22,"LISTEN":34,"CLOSE_WAIT":1,"UNKNOWN":30,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":243318415,"rx_dropped":0,"rx_errors":0,"tx_bytes":25666771,"tx_dropped":0,"tx_errors":0,"rx_sec":1947.1691735676864,"tx_sec":694.5073516984959,"ms":29585}]', '{"total":10685313024,"free":5214310400,"used":5471002624,"active":5471002624,"available":5214310400,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (311, '2022-03-29 23:48:46', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55602589696,"available":71673561088,"use":43.69,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":18.614438865967422,"currentLoadUser":11.11994830243078,"currentLoadSystem":6.860698248579146,"currentLoadNice":0,"currentLoadIdle":81.38556113403259,"currentLoadIrq":0.6337923149574987,"rawCurrentLoad":22468,"rawCurrentLoadUser":13422,"rawCurrentLoadSystem":8281,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":98234,"rawCurrentLoadIrq":765,"cpus":[{"load":20.42379034919797,"loadUser":10.984223381081259,"loadSystem":8.40649547824939,"loadNice":0,"loadIdle":79.57620965080203,"loadIrq":1.0330714898673181,"rawLoad":6188,"rawLoadUser":3328,"rawLoadSystem":2547,"rawLoadNice":0,"rawLoadIdle":24110,"rawLoadIrq":313},{"load":16.135265700483092,"loadUser":10.721306013659838,"loadSystem":5.3106779943361655,"loadNice":0,"loadIdle":83.86473429951691,"loadIrq":0.1032816924870898,"rawLoad":4843,"rawLoadUser":3218,"rawLoadSystem":1594,"rawLoadNice":0,"rawLoadIdle":25172,"rawLoadIrq":31},{"load":18.60820969995343,"loadUser":10.604750182955227,"loadSystem":7.743995742132926,"loadNice":0,"loadIdle":81.39179030004658,"loadIrq":0.25946377486527844,"rawLoad":5594,"rawLoadUser":3188,"rawLoadSystem":2328,"rawLoadNice":0,"rawLoadIdle":24468,"rawLoadIrq":78},{"load":19.26666007188314,"loadUser":12.160780822369507,"loadSystem":5.974873874765061,"loadNice":0,"loadIdle":80.73333992811686,"loadIrq":1.1310053747485738,"rawLoad":5843,"rawLoadUser":3688,"rawLoadSystem":1812,"rawLoadNice":0,"rawLoadIdle":24484,"rawLoadIrq":343}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":32,"LISTEN":34,"CLOSE_WAIT":2,"UNKNOWN":30,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":243371867,"rx_dropped":0,"rx_errors":0,"tx_bytes":25681758,"tx_dropped":0,"tx_errors":0,"rx_sec":1787.5727376095244,"tx_sec":501.2039328473012,"ms":29902}]', '{"total":10685313024,"free":5210722304,"used":5474590720,"active":5474590720,"available":5210722304,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (312, '2022-03-29 23:49:20', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55603048448,"available":71673102336,"use":43.69,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":15.028604593317304,"currentLoadUser":9.379819252134979,"currentLoadSystem":5.195257441339856,"currentLoadNice":0,"currentLoadIdle":84.97139540668269,"currentLoadIrq":0.4535278998424675,"rawCurrentLoad":18126,"rawCurrentLoadUser":11313,"rawCurrentLoadSystem":6266,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":102484,"rawCurrentLoadIrq":547,"cpus":[{"load":16.07997096763551,"loadUser":8.350103922668337,"loadSystem":6.753323875820659,"loadNice":0,"loadIdle":83.92002903236448,"loadIrq":0.9765431691465145,"rawLoad":4874,"rawLoadUser":2531,"rawLoadSystem":2047,"rawLoadNice":0,"rawLoadIdle":25437,"rawLoadIrq":296},{"load":13.78862546616942,"loadUser":9.210175812466701,"loadSystem":4.525173148641449,"loadNice":0,"loadIdle":86.21137453383058,"loadIrq":0.05327650506126798,"rawLoad":4141,"rawLoadUser":2766,"rawLoadSystem":1359,"rawLoadNice":0,"rawLoadIdle":25891,"rawLoadIrq":16},{"load":14.517847629195524,"loadUser":10.145844432605221,"loadSystem":4.318726691529036,"loadNice":0,"loadIdle":85.48215237080447,"loadIrq":0.05327650506126798,"rawLoad":4360,"rawLoadUser":3047,"rawLoadSystem":1297,"rawLoadNice":0,"rawLoadIdle":25672,"rawLoadIrq":16},{"load":15.71357698032082,"loadUser":9.819745328261948,"loadSystem":5.169505539937159,"loadNice":0,"loadIdle":84.28642301967918,"loadIrq":0.7243261121217133,"rawLoad":4751,"rawLoadUser":2969,"rawLoadSystem":1563,"rawLoadNice":0,"rawLoadIdle":25484,"rawLoadIrq":219}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":29,"LISTEN":34,"CLOSE_WAIT":3,"UNKNOWN":34,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":243444049,"rx_dropped":0,"rx_errors":0,"tx_bytes":25706941,"tx_dropped":0,"tx_errors":0,"rx_sec":2073.837844049877,"tx_sec":723.5246796529334,"ms":34806}]', '{"total":10685313024,"free":5270335488,"used":5414977536,"active":5414977536,"available":5270335488,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (313, '2022-03-30 01:28:48', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55611400192,"available":71664750592,"use":43.69,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":40.185904264458266,"currentLoadUser":20.884162056286726,"currentLoadSystem":19.059482492010584,"currentLoadNice":0,"currentLoadIdle":59.81409573554174,"currentLoadIrq":0.24225971616095668,"rawCurrentLoad":23389,"rawCurrentLoadUser":12155,"rawCurrentLoadSystem":11093,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":34813,"rawCurrentLoadIrq":141,"cpus":[{"load":40.900370015074685,"loadUser":21.94737563382212,"loadSystem":18.411676031245715,"loadNice":0,"loadIdle":59.099629984925315,"loadIrq":0.5413183500068521,"rawLoad":5969,"rawLoadUser":3203,"rawLoadSystem":2687,"rawLoadNice":0,"rawLoadIdle":8625,"rawLoadIrq":79},{"load":40.16911865805032,"loadUser":19.65488794170219,"loadSystem":20.301113708235942,"loadNice":0,"loadIdle":59.830881341949684,"loadIrq":0.2131170081121958,"rawLoad":5843,"rawLoadUser":2859,"rawLoadSystem":2953,"rawLoadNice":0,"rawLoadIdle":8703,"rawLoadIrq":31},{"load":39.82502066685037,"loadUser":20.880407825847342,"loadSystem":18.944612841003032,"loadNice":0,"loadIdle":60.17497933314962,"loadIrq":0,"rawLoad":5781,"rawLoadUser":3031,"rawLoadSystem":2750,"rawLoadNice":0,"rawLoadIdle":8735,"rawLoadIrq":0},{"load":39.84600577478344,"loadUser":21.05046060772721,"loadSystem":18.58242815894404,"loadNice":0,"loadIdle":60.15399422521656,"loadIrq":0.2131170081121958,"rawLoad":5796,"rawLoadUser":3062,"rawLoadSystem":2703,"rawLoadNice":0,"rawLoadIdle":8750,"rawLoadIrq":31}]}', '{"ESTABLISHED":13,"CLOSE":0,"TIME_WAIT":0,"LISTEN":31,"CLOSE_WAIT":1,"UNKNOWN":18,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":1,"FIN_WAIT1":1,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":243754755,"rx_dropped":0,"rx_errors":0,"tx_bytes":25843823,"tx_dropped":0,"tx_errors":0,"rx_sec":52.19524036309177,"tx_sec":22.994692382447482,"ms":5952765}]', '{"total":10685313024,"free":4878139392,"used":5807173632,"active":5807173632,"available":4878139392,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (314, '2022-03-30 01:29:02', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55615729664,"available":71660421120,"use":43.7,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":96.52023469234241,"currentLoadUser":48.44892432676395,"currentLoadSystem":47.55378366180232,"currentLoadNice":0,"currentLoadIdle":3.4797653076575896,"currentLoadIrq":0.5175267037761396,"rawCurrentLoad":64157,"rawCurrentLoadUser":32204,"rawCurrentLoadSystem":31609,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":2313,"rawCurrentLoadIrq":344,"cpus":[{"load":97.01207123222181,"loadUser":46.77901278833513,"loadSystem":49.019959364168756,"loadNice":0,"loadIdle":2.9879287677781763,"loadIrq":1.2130990797179395,"rawLoad":16234,"rawLoadUser":7828,"rawLoadSystem":8203,"rawLoadNice":0,"rawLoadIdle":500,"rawLoadIrq":203},{"load":96.5201685731487,"loadUser":47.3208910295003,"loadSystem":48.72968091511138,"loadNice":0,"loadIdle":3.4798314268512947,"loadIrq":0.4695966285370259,"rawLoad":16032,"rawLoadUser":7860,"rawLoadSystem":8094,"rawLoadNice":0,"rawLoadIdle":578,"rawLoadIrq":78},{"load":96.04294848594522,"loadUser":51.085776330076,"loadSystem":44.67366389190494,"loadNice":0,"loadIdle":3.957051514054771,"loadIrq":0.28350826396429,"rawLoad":15922,"rawLoadUser":8469,"rawLoadSystem":7406,"rawLoadNice":0,"rawLoadIdle":656,"rawLoadIrq":47},{"load":96.50108774474256,"loadUser":48.628233019095966,"loadSystem":47.77616630408509,"loadNice":0,"loadIdle":3.498912255257433,"loadIrq":0.09668842156151801,"rawLoad":15969,"rawLoadUser":8047,"rawLoadSystem":7906,"rawLoadNice":0,"rawLoadIdle":579,"rawLoadIrq":16}]}', '{"ESTABLISHED":20,"CLOSE":0,"TIME_WAIT":25,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":40,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":3}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":244374643,"rx_dropped":0,"rx_errors":0,"tx_bytes":25953218,"tx_dropped":0,"tx_errors":0,"rx_sec":22716.505423629435,"tx_sec":4008.905013192612,"ms":27288}]', '{"total":10685313024,"free":4854005760,"used":5831307264,"active":5831307264,"available":4854005760,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (315, '2022-03-30 01:29:32', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55565475840,"available":71710674944,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":42.014917324173865,"currentLoadUser":21.77862956417851,"currentLoadSystem":19.74346848528594,"currentLoadNice":0,"currentLoadIdle":57.985082675826135,"currentLoadIrq":0.49281927470941084,"rawCurrentLoad":50641,"rawCurrentLoadUser":26250,"rawCurrentLoadSystem":23797,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":69890,"rawCurrentLoadIrq":594,"cpus":[{"load":44.89641066244391,"loadUser":21.031274742676167,"loadSystem":22.783056215360254,"loadNice":0,"loadIdle":55.10358933755608,"loadIrq":1.0820797044074955,"rawLoad":13609,"rawLoadUser":6375,"rawLoadSystem":6906,"rawLoadNice":0,"rawLoadIdle":16703,"rawLoadIrq":328},{"load":39.418244749891834,"loadUser":20.957167104869036,"loadSystem":18.251406130395715,"loadNice":0,"loadIdle":60.58175525010816,"loadIrq":0.20967151462708425,"rawLoad":11844,"rawLoadUser":6297,"rawLoadSystem":5484,"rawLoadNice":0,"rawLoadIdle":18203,"rawLoadIrq":63},{"load":42.06882779737736,"loadUser":21.839845570125807,"loadSystem":20.022631964321373,"loadNice":0,"loadIdle":57.93117220262265,"loadIrq":0.20635026293017375,"rawLoad":12640,"rawLoadUser":6562,"rawLoadSystem":6016,"rawLoadNice":0,"rawLoadIdle":17406,"rawLoadIrq":62},{"load":41.651729403173334,"loadUser":23.28885348204209,"loadSystem":17.89484166500697,"loadNice":0,"loadIdle":58.34827059682666,"loadIrq":0.468034256124278,"rawLoad":12548,"rawLoadUser":7016,"rawLoadSystem":5391,"rawLoadNice":0,"rawLoadIdle":17578,"rawLoadIrq":141}]}', '{"ESTABLISHED":20,"CLOSE":0,"TIME_WAIT":32,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":25,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":251385265,"rx_dropped":0,"rx_errors":0,"tx_bytes":26178878,"tx_dropped":0,"tx_errors":0,"rx_sec":229608.0306553565,"tx_sec":7390.692038122686,"ms":30533}]', '{"total":10685313024,"free":4902522880,"used":5782790144,"active":5782790144,"available":4902522880,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (316, '2022-03-30 01:30:02', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55566327808,"available":71709822976,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":30.053360910031024,"currentLoadUser":17.437849017580145,"currentLoadSystem":12.15139607032058,"currentLoadNice":0,"currentLoadIdle":69.94663908996898,"currentLoadIrq":0.4641158221302999,"rawCurrentLoad":36327,"rawCurrentLoadUser":21078,"rawCurrentLoadSystem":14688,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":84548,"rawCurrentLoadIrq":561,"cpus":[{"load":33.53728364362137,"loadUser":16.768641821810686,"loadSystem":15.185027647809443,"loadNice":0,"loadIdle":66.46271635637862,"loadIrq":1.5836141740012435,"rawLoad":10250,"rawLoadUser":5125,"rawLoadSystem":4641,"rawLoadNice":0,"rawLoadIdle":20313,"rawLoadIrq":484},{"load":27.15249393546672,"loadUser":15.99042966802911,"loadSystem":11.112218788422556,"loadNice":0,"loadIdle":72.84750606453329,"loadIrq":0.04984547901505334,"rawLoad":8171,"rawLoadUser":4812,"rawLoadSystem":3344,"rawLoadNice":0,"rawLoadIdle":21922,"rawLoadIrq":15},{"load":30.998504735005817,"loadUser":19.056321648114306,"loadSystem":11.889018109320485,"loadNice":0,"loadIdle":69.00149526499419,"loadIrq":0.053164977571025084,"rawLoad":9329,"rawLoadUser":5735,"rawLoadSystem":3578,"rawLoadNice":0,"rawLoadIdle":20766,"rawLoadIrq":16},{"load":28.472314433674146,"loadUser":17.945823927765236,"loadSystem":10.37378834152171,"loadNice":0,"loadIdle":71.52768556632584,"loadIrq":0.15270216438719958,"rawLoad":8577,"rawLoadUser":5406,"rawLoadSystem":3125,"rawLoadNice":0,"rawLoadIdle":21547,"rawLoadIrq":46}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":33,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":27,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":251425099,"rx_dropped":0,"rx_errors":0,"tx_bytes":26191586,"tx_dropped":0,"tx_errors":0,"rx_sec":1329.8390865994525,"tx_sec":424.25051746010547,"ms":29954}]', '{"total":10685313024,"free":4890959872,"used":5794353152,"active":5794353152,"available":4890959872,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (317, '2022-03-30 01:30:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55566999552,"available":71709151232,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":23.83703481392557,"currentLoadUser":13.663798852874484,"currentLoadSystem":9.847272242230225,"currentLoadNice":0,"currentLoadIdle":76.16296518607443,"currentLoadIrq":0.32596371882086167,"rawCurrentLoad":28593,"rawCurrentLoadUser":16390,"rawCurrentLoadSystem":11812,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":91359,"rawCurrentLoadIrq":391,"cpus":[{"load":26.48036153386057,"loadUser":13.501030105668905,"loadSystem":12.30477836113511,"loadNice":0,"loadIdle":73.51963846613943,"loadIrq":0.674553067056556,"rawLoad":7969,"rawLoadUser":4063,"rawLoadSystem":3703,"rawLoadNice":0,"rawLoadIdle":22125,"rawLoadIrq":203},{"load":20.887641200454514,"loadUser":12.428982019918456,"loadSystem":8.355056480181807,"loadNice":0,"loadIdle":79.11235879954549,"loadIrq":0.1036027003542544,"rawLoad":6250,"rawLoadUser":3719,"rawLoadSystem":2500,"rawLoadNice":0,"rawLoadIdle":23672,"rawLoadIrq":31},{"load":24.763080619327283,"loadUser":14.752402562733582,"loadSystem":9.750400427122264,"loadNice":0,"loadIdle":75.23691938067272,"loadIrq":0.26027762947143623,"rawLoad":7421,"rawLoadUser":4421,"rawLoadSystem":2922,"rawLoadNice":0,"rawLoadIdle":22547,"rawLoadIrq":78},{"load":23.201414842498664,"loadUser":13.971569674319273,"loadSystem":8.966230646022424,"loadNice":0,"loadIdle":76.79858515750134,"loadIrq":0.26361452215696746,"rawLoad":6953,"rawLoadUser":4187,"rawLoadSystem":2687,"rawLoadNice":0,"rawLoadIdle":23015,"rawLoadIrq":79}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":35,"LISTEN":32,"CLOSE_WAIT":3,"UNKNOWN":31,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":2}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":251484100,"rx_dropped":0,"rx_errors":0,"tx_bytes":26217219,"tx_dropped":0,"tx_errors":0,"rx_sec":2040.5685826935048,"tx_sec":886.5255585529501,"ms":28914}]', '{"total":10685313024,"free":4921671680,"used":5763645440,"active":5763653632,"available":4921655296,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (318, '2022-03-30 01:31:01', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55566934016,"available":71709216768,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":13.736569638450097,"currentLoadUser":6.803885560439743,"currentLoadSystem":6.64766542299926,"currentLoadNice":0,"currentLoadIdle":86.26343036154991,"currentLoadIrq":0.28501865501109325,"rawCurrentLoad":16531,"rawCurrentLoadUser":8188,"rawCurrentLoadSystem":8000,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":103812,"rawCurrentLoadIrq":343,"cpus":[{"load":15.252498510821363,"loadUser":6.41008670328943,"loadSystem":8.117678205043353,"loadNice":0,"loadIdle":84.74750148917863,"loadIrq":0.724733602488583,"rawLoad":4609,"rawLoadUser":1937,"rawLoadSystem":2453,"rawLoadNice":0,"rawLoadIdle":25609,"rawLoadIrq":219},{"load":12.553333333333333,"loadUser":6.303333333333333,"loadSystem":6.25,"loadNice":0,"loadIdle":87.44666666666666,"loadIrq":0,"rawLoad":3766,"rawLoadUser":1891,"rawLoadSystem":1875,"rawLoadNice":0,"rawLoadIdle":26234,"rawLoadIrq":0},{"load":13.73580633345543,"loadUser":6.19359994672172,"loadSystem":7.438979720955014,"loadNice":0,"loadIdle":86.26419366654457,"loadIrq":0.10322666577869534,"rawLoad":4125,"rawLoadUser":1860,"rawLoadSystem":2234,"rawLoadNice":0,"rawLoadIdle":25906,"rawLoadIrq":31},{"load":13.3946966172659,"loadUser":8.307303781484682,"loadSystem":4.778361135109989,"loadNice":0,"loadIdle":86.6053033827341,"loadIrq":0.30903170067123015,"rawLoad":4031,"rawLoadUser":2500,"rawLoadSystem":1438,"rawLoadNice":0,"rawLoadIdle":26063,"rawLoadIrq":93}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":13,"LISTEN":32,"CLOSE_WAIT":3,"UNKNOWN":27,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":2}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":251517395,"rx_dropped":0,"rx_errors":0,"tx_bytes":26222240,"tx_dropped":0,"tx_errors":0,"rx_sec":1110.9072103032931,"tx_sec":167.52861099062426,"ms":29971}]', '{"total":10685313024,"free":4963012608,"used":5722300416,"active":5722300416,"available":4963012608,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (319, '2022-03-30 01:31:32', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55567396864,"available":71708753920,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":26.957700605930345,"currentLoadUser":14.970530127055245,"currentLoadSystem":11.288655958866174,"currentLoadNice":0,"currentLoadIdle":73.04229939406966,"currentLoadIrq":0.6985145200089278,"rawCurrentLoad":32611,"rawCurrentLoadUser":18110,"rawCurrentLoadSystem":13656,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":88360,"rawCurrentLoadIrq":845,"cpus":[{"load":29.969509196419793,"loadUser":14.753614635585718,"loadSystem":13.678240057703025,"loadNice":0,"loadIdle":70.03049080358022,"loadIrq":1.537654503131045,"rawLoad":9141,"rawLoadUser":4500,"rawLoadSystem":4172,"rawLoadNice":0,"rawLoadIdle":21360,"rawLoadIrq":469},{"load":23.712849868539287,"loadUser":14.404100242952708,"loadSystem":9.25549971710986,"loadNice":0,"loadIdle":76.2871501314607,"loadIrq":0.0532499084767198,"rawLoad":7125,"rawLoadUser":4328,"rawLoadSystem":2781,"rawLoadNice":0,"rawLoadIdle":22922,"rawLoadIrq":16},{"load":27.918562556046368,"loadUser":15.673054568401474,"loadSystem":11.986449234448171,"loadNice":0,"loadIdle":72.08143744395363,"loadIrq":0.25905875319671856,"rawLoad":8406,"rawLoadUser":4719,"rawLoadSystem":3609,"rawLoadNice":0,"rawLoadIdle":21703,"rawLoadIrq":78},{"load":26.18921950254008,"loadUser":15.052451012733389,"loadSystem":10.206505245101273,"loadNice":0,"loadIdle":73.81078049745992,"loadIrq":0.9302632447054167,"rawLoad":7939,"rawLoadUser":4563,"rawLoadSystem":3094,"rawLoadNice":0,"rawLoadIdle":22375,"rawLoadIrq":282}]}', '{"ESTABLISHED":19,"CLOSE":0,"TIME_WAIT":7,"LISTEN":32,"CLOSE_WAIT":4,"UNKNOWN":26,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":2}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":251555775,"rx_dropped":0,"rx_errors":0,"tx_bytes":26285445,"tx_dropped":0,"tx_errors":0,"rx_sec":1246.1848171959218,"tx_sec":2052.243652185207,"ms":30798}]', '{"total":10685313024,"free":4938854400,"used":5746458624,"active":5746458624,"available":4938854400,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (320, '2022-03-30 01:32:01', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55567908864,"available":71708241920,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":32.32713261797241,"currentLoadUser":21.517172805236772,"currentLoadSystem":10.292911298007208,"currentLoadNice":0,"currentLoadIdle":67.67286738202759,"currentLoadIrq":0.5170485147284253,"rawCurrentLoad":39014,"rawCurrentLoadUser":25968,"rawCurrentLoadSystem":12422,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":81671,"rawCurrentLoadIrq":624,"cpus":[{"load":36.92120093596546,"loadUser":22.657614606334246,"loadSystem":13.182612134594471,"loadNice":0,"loadIdle":63.07879906403454,"loadIrq":1.0809741950367464,"rawLoad":11203,"rawLoadUser":6875,"rawLoadSystem":4000,"rawLoadNice":0,"rawLoadIdle":19140,"rawLoadIrq":328},{"load":28.324795422792892,"loadUser":19.02069057281618,"loadSystem":9.147761293327124,"loadNice":0,"loadIdle":71.67520457720711,"loadIrq":0.15634355664959085,"rawLoad":8515,"rawLoadUser":5718,"rawLoadSystem":2750,"rawLoadNice":0,"rawLoadIdle":21547,"rawLoadIrq":47},{"load":31.720304855726027,"loadUser":21.060338802542685,"loadSystem":10.556794355509702,"loadNice":0,"loadIdle":68.27969514427397,"loadIrq":0.10317169767364463,"rawLoad":9531,"rawLoadUser":6328,"rawLoadSystem":3172,"rawLoadNice":0,"rawLoadIdle":20516,"rawLoadIrq":31},{"load":32.29914332021301,"loadUser":23.308967022789666,"loadSystem":8.269109913008963,"loadNice":0,"loadIdle":67.700856679787,"loadIrq":0.7210663844143816,"rawLoad":9765,"rawLoadUser":7047,"rawLoadSystem":2500,"rawLoadNice":0,"rawLoadIdle":20468,"rawLoadIrq":218}]}', '{"ESTABLISHED":18,"CLOSE":0,"TIME_WAIT":7,"LISTEN":32,"CLOSE_WAIT":4,"UNKNOWN":26,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":2}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":251586354,"rx_dropped":0,"rx_errors":0,"tx_bytes":26344687,"tx_dropped":0,"tx_errors":0,"rx_sec":1039.1477214802733,"tx_sec":2013.1851700818977,"ms":29427}]', '{"total":10685313024,"free":4932907008,"used":5752406016,"active":5752406016,"available":4932907008,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (321, '2022-03-30 01:32:32', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55568433152,"available":71707717632,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":16.099876941497325,"currentLoadUser":8.471912728240264,"currentLoadSystem":7.405960022616158,"currentLoadNice":0,"currentLoadIdle":83.90012305850267,"currentLoadIrq":0.222004190640902,"rawCurrentLoad":19363,"rawCurrentLoadUser":10189,"rawCurrentLoadSystem":8907,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":100905,"rawCurrentLoadIrq":267,"cpus":[{"load":17.215181474354722,"loadUser":7.8296065290956145,"loadSystem":8.917789131444497,"loadNice":0,"loadIdle":82.78481852564528,"loadIrq":0.4677858138146108,"rawLoad":5189,"rawLoadUser":2360,"rawLoadSystem":2688,"rawLoadNice":0,"rawLoadIdle":24953,"rawLoadIrq":141},{"load":14.841589765799382,"loadUser":8.591797981144019,"loadSystem":6.196488656428024,"loadNice":0,"loadIdle":85.15841023420062,"loadIrq":0.05330312822733784,"rawLoad":4455,"rawLoadUser":2579,"rawLoadSystem":1860,"rawLoadNice":0,"rawLoadIdle":25562,"rawLoadIrq":16},{"load":15.520517350578352,"loadUser":8.17693923130771,"loadSystem":7.343578119270642,"loadNice":0,"loadIdle":84.47948264942164,"loadIrq":0,"rawLoad":4656,"rawLoadUser":2453,"rawLoadSystem":2203,"rawLoadNice":0,"rawLoadIdle":25343,"rawLoadIrq":0},{"load":16.815011624045166,"loadUser":9.289272666888076,"loadSystem":7.160411823314513,"loadNice":0,"loadIdle":83.18498837595483,"loadIrq":0.3653271338425772,"rawLoad":5063,"rawLoadUser":2797,"rawLoadSystem":2156,"rawLoadNice":0,"rawLoadIdle":25047,"rawLoadIrq":110}]}', '{"ESTABLISHED":18,"CLOSE":0,"TIME_WAIT":6,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":26,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":251607383,"rx_dropped":0,"rx_errors":0,"tx_bytes":26346856,"tx_dropped":0,"tx_errors":0,"rx_sec":684.4040877432793,"tx_sec":70.59168131224371,"ms":30726}]', '{"total":10685313024,"free":4936101888,"used":5749211136,"active":5749211136,"available":4936101888,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (322, '2022-03-30 01:33:02', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55568523264,"available":71707627520,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":28.003140106598355,"currentLoadUser":17.791182911209354,"currentLoadSystem":9.735156798743958,"currentLoadNice":0,"currentLoadIdle":71.99685989340165,"currentLoadIrq":0.47680039664504403,"rawCurrentLoad":33888,"rawCurrentLoadUser":21530,"rawCurrentLoadSystem":11781,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":87127,"rawCurrentLoadIrq":577,"cpus":[{"load":30.442199186458467,"loadUser":19.065739404277654,"loadSystem":10.146306259021125,"loadNice":0,"loadIdle":69.55780081354152,"loadIrq":1.2301535231596903,"rawLoad":9280,"rawLoadUser":5812,"rawLoadSystem":3093,"rawLoadNice":0,"rawLoadIdle":21204,"rawLoadIrq":375},{"load":25.464745717700172,"loadUser":15.30009294914354,"loadSystem":10.114858584517329,"loadNice":0,"loadIdle":74.53525428229982,"loadIrq":0.049794184039304204,"rawLoad":7671,"rawLoadUser":4609,"rawLoadSystem":3047,"rawLoadNice":0,"rawLoadIdle":22453,"rawLoadIrq":15},{"load":27.47227280251614,"loadUser":17.381228273464657,"loadSystem":9.77983777520278,"loadNice":0,"loadIdle":72.52772719748386,"loadIrq":0.31120675384870056,"rawLoad":8298,"rawLoadUser":5250,"rawLoadSystem":2954,"rawLoadNice":0,"rawLoadIdle":21907,"rawLoadIrq":94},{"load":28.604065955896964,"loadUser":19.39937752466724,"loadSystem":8.89676180385405,"loadNice":0,"loadIdle":71.39593404410304,"loadIrq":0.3079266273756705,"rawLoad":8639,"rawLoadUser":5859,"rawLoadSystem":2687,"rawLoadNice":0,"rawLoadIdle":21563,"rawLoadIrq":93}]}', '{"ESTABLISHED":18,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":27,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":251639158,"rx_dropped":0,"rx_errors":0,"tx_bytes":26403381,"tx_dropped":0,"tx_errors":0,"rx_sec":1061.5728985700923,"tx_sec":1888.4471468662302,"ms":29932}]', '{"total":10685313024,"free":4889026560,"used":5796286464,"active":5796286464,"available":4889026560,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (323, '2022-03-30 01:33:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55569817600,"available":71706333184,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":33.33804150949667,"currentLoadUser":18.65517871682813,"currentLoadSystem":14.05889097525715,"currentLoadNice":0,"currentLoadIdle":66.66195849050334,"currentLoadIrq":0.6239718174113893,"rawCurrentLoad":40125,"rawCurrentLoadUser":22453,"rawCurrentLoadSystem":16921,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":80233,"rawCurrentLoadIrq":751,"cpus":[{"load":35.67699729068922,"loadUser":17.451926253882245,"loadSystem":16.986056961607083,"loadNice":0,"loadIdle":64.32300270931077,"loadIrq":1.2390140751998944,"rawLoad":10798,"rawLoadUser":5282,"rawLoadSystem":5141,"rawLoadNice":0,"rawLoadIdle":19468,"rawLoadIrq":375},{"load":31.55715811965812,"loadUser":19.40438034188034,"loadSystem":11.995860042735043,"loadNice":0,"loadIdle":68.44284188034187,"loadIrq":0.15691773504273504,"rawLoad":9452,"rawLoadUser":5812,"rawLoadSystem":3593,"rawLoadNice":0,"rawLoadIdle":20500,"rawLoadIrq":47},{"load":33.83641512577044,"loadUser":17.8544061302682,"loadSystem":15.615525570548058,"loadNice":0,"loadIdle":66.16358487422956,"loadIrq":0.36648342495418956,"rawLoad":10156,"rawLoadUser":5359,"rawLoadSystem":4687,"rawLoadNice":0,"rawLoadIdle":19859,"rawLoadIrq":110},{"load":32.262240663900414,"loadUser":19.91701244813278,"loadSystem":11.618257261410788,"loadNice":0,"loadIdle":67.73775933609959,"loadIrq":0.7269709543568464,"rawLoad":9719,"rawLoadUser":6000,"rawLoadSystem":3500,"rawLoadNice":0,"rawLoadIdle":20406,"rawLoadIrq":219}]}', '{"ESTABLISHED":21,"CLOSE":0,"TIME_WAIT":7,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":34,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":1,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":251687770,"rx_dropped":0,"rx_errors":0,"tx_bytes":26422803,"tx_dropped":0,"tx_errors":0,"rx_sec":1667.8789542304262,"tx_sec":666.3693131132917,"ms":29146}]', '{"total":10685313024,"free":4857294848,"used":5828018176,"active":5828018176,"available":4857294848,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":60817408,"swapfree":4494196736}'), (324, '2022-03-30 01:34:03', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55570833408,"available":71705317376,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":29.981026233294838,"currentLoadUser":14.462134961227521,"currentLoadSystem":15.146015508991917,"currentLoadNice":0,"currentLoadIdle":70.01897376670516,"currentLoadIrq":0.3728757630754001,"rawCurrentLoad":36343,"rawCurrentLoadUser":17531,"rawCurrentLoadSystem":18360,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":84877,"rawCurrentLoadIrq":452,"cpus":[{"load":30.15195772752634,"loadUser":13.229840165414029,"loadSystem":16.052381108667827,"loadNice":0,"loadIdle":69.84804227247366,"loadIrq":0.8697364534444845,"rawLoad":9187,"rawLoadUser":4031,"rawLoadSystem":4891,"rawLoadNice":0,"rawLoadIdle":21282,"rawLoadIrq":265},{"load":28.593646591661155,"loadUser":14.063534083388484,"loadSystem":14.42753143613501,"loadNice":0,"loadIdle":71.40635340833884,"loadIrq":0.10258107213765719,"rawLoad":8641,"rawLoadUser":4250,"rawLoadSystem":4360,"rawLoadNice":0,"rawLoadIdle":21579,"rawLoadIrq":31},{"load":31.472919418758256,"loadUser":14.963672391017175,"loadSystem":16.202113606340816,"loadNice":0,"loadIdle":68.52708058124173,"loadIrq":0.30713342140026423,"rawLoad":9530,"rawLoadUser":4531,"rawLoadSystem":4906,"rawLoadNice":0,"rawLoadIdle":20750,"rawLoadIrq":93},{"load":29.70149747115798,"loadUser":15.599484314568112,"loadSystem":13.89375557832799,"loadNice":0,"loadIdle":70.29850252884202,"loadIrq":0.20825757826187563,"rawLoad":8985,"rawLoadUser":4719,"rawLoadSystem":4203,"rawLoadNice":0,"rawLoadIdle":21266,"rawLoadIrq":63}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":7,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":34,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":251832963,"rx_dropped":0,"rx_errors":0,"tx_bytes":26464186,"tx_dropped":0,"tx_errors":0,"rx_sec":4544.666332790785,"tx_sec":1295.3236509327658,"ms":31948}]', '{"total":10685313024,"free":5084438528,"used":5600874496,"active":5600874496,"available":5084438528,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (325, '2022-03-30 01:34:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55572242432,"available":71703908352,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":37.740354614059754,"currentLoadUser":22.85521728639537,"currentLoadSystem":14.209523492557432,"currentLoadNice":0,"currentLoadIdle":62.259645385940246,"currentLoadIrq":0.6756138351069583,"rawCurrentLoad":45359,"rawCurrentLoadUser":27469,"rawCurrentLoadSystem":17078,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":74828,"rawCurrentLoadIrq":812,"cpus":[{"load":39.84586888932989,"loadUser":21.39644109280942,"loadSystem":17.156181782099623,"loadNice":0,"loadIdle":60.15413111067011,"loadIrq":1.2932460144208509,"rawLoad":12047,"rawLoadUser":6469,"rawLoadSystem":5187,"rawLoadNice":0,"rawLoadIdle":18187,"rawLoadIrq":391},{"load":35.248312278591,"loadUser":22.665597219437203,"loadSystem":12.322037296972127,"loadNice":0,"loadIdle":64.751687721409,"loadIrq":0.2606777621816723,"rawLoad":10547,"rawLoadUser":6782,"rawLoadSystem":3687,"rawLoadNice":0,"rawLoadIdle":19375,"rawLoadIrq":78},{"load":37.64431097764431,"loadUser":22.105438772105437,"loadSystem":15.121788455121788,"loadNice":0,"loadIdle":62.35568902235569,"loadIrq":0.41708375041708373,"rawLoad":11282,"rawLoadUser":6625,"rawLoadSystem":4532,"rawLoadNice":0,"rawLoadIdle":18688,"rawLoadIrq":125},{"load":38.19899537606866,"loadUser":25.258640763780317,"loadSystem":12.215162502910747,"loadNice":0,"loadIdle":61.80100462393134,"loadIrq":0.7251921093775988,"rawLoad":11483,"rawLoadUser":7593,"rawLoadSystem":3672,"rawLoadNice":0,"rawLoadIdle":18578,"rawLoadIrq":218}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":11,"LISTEN":32,"CLOSE_WAIT":3,"UNKNOWN":36,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":251892220,"rx_dropped":0,"rx_errors":0,"tx_bytes":26482555,"tx_dropped":0,"tx_errors":0,"rx_sec":2083.94584139265,"tx_sec":645.9996483207315,"ms":28435}]', '{"total":10685313024,"free":5043236864,"used":5642076160,"active":5642076160,"available":5043236864,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (326, '2022-03-30 01:35:03', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55568580608,"available":71707570176,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":28.626389049419615,"currentLoadUser":16.77014018460116,"currentLoadSystem":11.390618034113237,"currentLoadNice":0,"currentLoadIdle":71.37361095058039,"currentLoadIrq":0.46563083070521605,"rawCurrentLoad":34674,"rawCurrentLoadUser":20313,"rawCurrentLoadSystem":13797,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":86452,"rawCurrentLoadIrq":564,"cpus":[{"load":31.618953603158932,"loadUser":17.788746298124384,"loadSystem":13.007568279039159,"loadNice":0,"loadIdle":68.38104639684106,"loadIrq":0.8226390259953932,"rawLoad":9609,"rawLoadUser":5406,"rawLoadSystem":3953,"rawLoadNice":0,"rawLoadIdle":20781,"rawLoadIrq":250},{"load":25.51760691688475,"loadUser":15.423857952098585,"loadSystem":9.938052804187233,"loadNice":0,"loadIdle":74.48239308311526,"loadIrq":0.15569616059893332,"rawLoad":7703,"rawLoadUser":4656,"rawLoadSystem":3000,"rawLoadNice":0,"rawLoadIdle":22484,"rawLoadIrq":47},{"load":28.45412707346952,"loadUser":16.038141906433136,"loadSystem":12.207396616230175,"loadNice":0,"loadIdle":71.54587292653048,"loadIrq":0.20858855080621133,"rawLoad":8594,"rawLoadUser":4844,"rawLoadSystem":3687,"rawLoadNice":0,"rawLoadIdle":21609,"rawLoadIrq":63},{"load":28.89342911751137,"loadUser":17.817834310947077,"loadSystem":10.40334805246161,"loadNice":0,"loadIdle":71.10657088248863,"loadIrq":0.6722467541026824,"rawLoad":8768,"rawLoadUser":5407,"rawLoadSystem":3157,"rawLoadNice":0,"rawLoadIdle":21578,"rawLoadIrq":204}]}', '{"ESTABLISHED":28,"CLOSE":0,"TIME_WAIT":17,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":33,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":251962866,"rx_dropped":0,"rx_errors":0,"tx_bytes":26504287,"tx_dropped":0,"tx_errors":0,"rx_sec":2269.386443944748,"tx_sec":698.1047221329907,"ms":31130}]', '{"total":10685313024,"free":5099716608,"used":5585596416,"active":5585596416,"available":5099716608,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (327, '2022-03-30 01:35:32', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55569137664,"available":71707013120,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":34.563143965244606,"currentLoadUser":20.597732909432896,"currentLoadSystem":13.368676864690315,"currentLoadNice":0,"currentLoadIdle":65.4368560347554,"currentLoadIrq":0.5967341911213943,"rawCurrentLoad":41529,"rawCurrentLoadUser":24749,"rawCurrentLoadSystem":16063,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":78625,"rawCurrentLoadIrq":717,"cpus":[{"load":36.347992984546146,"loadUser":20.47387405274827,"loadSystem":14.68612462358119,"loadNice":0,"loadIdle":63.65200701545385,"loadIrq":1.1879943082166848,"rawLoad":10984,"rawLoadUser":6187,"rawLoadSystem":4438,"rawLoadNice":0,"rawLoadIdle":19235,"rawLoadIrq":359},{"load":31.08740720925567,"loadUser":19.4877282150739,"loadSystem":11.442519895673108,"loadNice":0,"loadIdle":68.91259279074433,"loadIrq":0.15715909850866047,"rawLoad":9297,"rawLoadUser":5828,"rawLoadSystem":3422,"rawLoadNice":0,"rawLoadIdle":20609,"rawLoadIrq":47},{"load":36.08702928870293,"loadUser":21.49623430962343,"loadSystem":14.540585774058579,"loadNice":0,"loadIdle":63.91297071129707,"loadIrq":0.05020920502092051,"rawLoad":10781,"rawLoadUser":6422,"rawLoadSystem":4344,"rawLoadNice":0,"rawLoadIdle":19094,"rawLoadIrq":15},{"load":34.711812694833185,"loadUser":20.932546262519068,"loadSystem":12.797638787557206,"loadNice":0,"loadIdle":65.28818730516682,"loadIrq":0.9816276447569146,"rawLoad":10467,"rawLoadUser":6312,"rawLoadSystem":3859,"rawLoadNice":0,"rawLoadIdle":19687,"rawLoadIrq":296}]}', '{"ESTABLISHED":27,"CLOSE":0,"TIME_WAIT":16,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":30,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":252021444,"rx_dropped":0,"rx_errors":0,"tx_bytes":26526992,"tx_dropped":0,"tx_errors":0,"rx_sec":1998.3625012792959,"tx_sec":774.5710094497323,"ms":29313}]', '{"total":10685313024,"free":5133615104,"used":5551697920,"active":5551697920,"available":5133615104,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (328, '2022-03-30 01:36:02', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55569530880,"available":71706619904,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":30.295454732968658,"currentLoadUser":17.52019339455294,"currentLoadSystem":12.349529302079981,"currentLoadNice":0,"currentLoadIdle":69.70454526703135,"currentLoadIrq":0.42573203633573425,"rawCurrentLoad":36719,"rawCurrentLoadUser":21235,"rawCurrentLoadSystem":14968,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":84484,"rawCurrentLoadIrq":516,"cpus":[{"load":32.20366839786996,"loadUser":16.0771809874433,"loadSystem":15.304713694037208,"loadNice":0,"loadIdle":67.79633160213004,"loadIrq":0.821773716389455,"rawLoad":9797,"rawLoadUser":4891,"rawLoadSystem":4656,"rawLoadNice":0,"rawLoadIdle":20625,"rawLoadIrq":250},{"load":27.41780617819422,"loadUser":16.65728570009602,"loadSystem":10.657881667384036,"loadNice":0,"loadIdle":72.58219382180579,"loadIrq":0.10263881071416747,"rawLoad":8281,"rawLoadUser":5031,"rawLoadSystem":3219,"rawLoadNice":0,"rawLoadIdle":21922,"rawLoadIrq":31},{"load":30.336707018588342,"loadUser":17.933452404577626,"loadSystem":12.194879936495337,"loadNice":0,"loadIdle":69.66329298141164,"loadIrq":0.20837467751538005,"rawLoad":9172,"rawLoadUser":5422,"rawLoadSystem":3687,"rawLoadNice":0,"rawLoadIdle":21062,"rawLoadIrq":63},{"load":31.205510150276826,"loadUser":19.414052201423676,"loadSystem":11.22462430793567,"loadNice":0,"loadIdle":68.79448984972318,"loadIrq":0.5668336409174796,"rawLoad":9469,"rawLoadUser":5891,"rawLoadSystem":3406,"rawLoadNice":0,"rawLoadIdle":20875,"rawLoadIrq":172}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":19,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":28,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":252064123,"rx_dropped":0,"rx_errors":0,"tx_bytes":26542689,"tx_dropped":0,"tx_errors":0,"rx_sec":1412.9779837775204,"tx_sec":519.6821718258567,"ms":30205}]', '{"total":10685313024,"free":5172330496,"used":5512982528,"active":5512982528,"available":5172330496,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (329, '2022-03-30 01:36:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55569596416,"available":71706554368,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":19.534650988241182,"currentLoadUser":10.085897756650821,"currentLoadSystem":9.056792594445835,"currentLoadNice":0,"currentLoadIdle":80.46534901175882,"currentLoadIrq":0.39196063714452506,"rawCurrentLoad":23424,"rawCurrentLoadUser":12094,"rawCurrentLoadSystem":10860,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":96486,"rawCurrentLoadIrq":470,"cpus":[{"load":21.454219030520647,"loadUser":9.142895139304475,"loadSystem":11.583216969213378,"loadNice":0,"loadIdle":78.54578096947935,"loadIrq":0.7281069220027927,"rawLoad":6453,"rawLoadUser":2750,"rawLoadSystem":3484,"rawLoadNice":0,"rawLoadIdle":23625,"rawLoadIrq":219},{"load":17.940822064533403,"loadUser":10.61721783371268,"loadSystem":7.270049538090776,"loadNice":0,"loadIdle":82.0591779354666,"loadIrq":0.053554692729950455,"rawLoad":5360,"rawLoadUser":3172,"rawLoadSystem":2172,"rawLoadNice":0,"rawLoadIdle":24516,"rawLoadIrq":16},{"load":18.968169051758725,"loadUser":9.666310017386651,"loadSystem":9.144710445365789,"loadNice":0,"loadIdle":81.03183094824126,"loadIrq":0.15714858900628595,"rawLoad":5673,"rawLoadUser":2891,"rawLoadSystem":2735,"rawLoadNice":0,"rawLoadIdle":24235,"rawLoadIrq":47},{"load":19.761714589989353,"loadUser":10.91919595314164,"loadSystem":8.216853035143771,"loadNice":0,"loadIdle":80.23828541001065,"loadIrq":0.6256656017039404,"rawLoad":5938,"rawLoadUser":3281,"rawLoadSystem":2469,"rawLoadNice":0,"rawLoadIdle":24110,"rawLoadIrq":188}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":15,"LISTEN":32,"CLOSE_WAIT":3,"UNKNOWN":22,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":252087154,"rx_dropped":0,"rx_errors":0,"tx_bytes":26548571,"tx_dropped":0,"tx_errors":0,"rx_sec":791.3073355093626,"tx_sec":202.0958598179007,"ms":29105}]', '{"total":10685313024,"free":5195259904,"used":5490040832,"active":5490032640,"available":5195284480,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (330, '2022-03-30 01:37:02', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55569793024,"available":71706357760,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":24.436115165185086,"currentLoadUser":14.433793286453497,"currentLoadSystem":9.664820220246781,"currentLoadNice":0,"currentLoadIdle":75.56388483481491,"currentLoadIrq":0.3375016584848083,"rawCurrentLoad":29468,"rawCurrentLoadUser":17406,"rawCurrentLoadSystem":11655,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":91124,"rawCurrentLoadIrq":407,"cpus":[{"load":26.870647258804503,"loadUser":14.595504505396573,"loadSystem":11.4499785457306,"loadNice":0,"loadIdle":73.1293527411955,"loadIrq":0.8251642076773279,"rawLoad":8141,"rawLoadUser":4422,"rawLoadSystem":3469,"rawLoadNice":0,"rawLoadIdle":22156,"rawLoadIrq":250},{"load":22.140908788503758,"loadUser":13.721641939990686,"loadSystem":8.36604351007917,"loadNice":0,"loadIdle":77.85909121149625,"loadIrq":0.05322333843390326,"rawLoad":6656,"rawLoadUser":4125,"rawLoadSystem":2515,"rawLoadNice":0,"rawLoadIdle":23406,"rawLoadIrq":16},{"load":24.713388495663445,"loadUser":13.81052071910411,"loadSystem":10.746685275645499,"loadNice":0,"loadIdle":75.28661150433655,"loadIrq":0.1561825009138338,"rawLoad":7437,"rawLoadUser":4156,"rawLoadSystem":3234,"rawLoadNice":0,"rawLoadIdle":22656,"rawLoadIrq":47},{"load":24.00132714001327,"loadUser":15.603848706038487,"loadSystem":8.085600530856004,"loadNice":0,"loadIdle":75.99867285998673,"loadIrq":0.311877903118779,"rawLoad":7234,"rawLoadUser":4703,"rawLoadSystem":2437,"rawLoadNice":0,"rawLoadIdle":22906,"rawLoadIrq":94}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":13,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":29,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":252148438,"rx_dropped":0,"rx_errors":0,"tx_bytes":26562923,"tx_dropped":0,"tx_errors":0,"rx_sec":1964.3566895313802,"tx_sec":460.02948906981214,"ms":31198}]', '{"total":10685313024,"free":5118169088,"used":5567143936,"active":5567143936,"available":5118169088,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (331, '2022-03-30 01:37:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55570120704,"available":71706030080,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":32.166606014490355,"currentLoadUser":18.377609422039896,"currentLoadSystem":13.040493598438482,"currentLoadNice":0,"currentLoadIdle":67.83339398550964,"currentLoadIrq":0.7485029940119761,"rawCurrentLoad":38892,"rawCurrentLoadUser":22220,"rawCurrentLoadSystem":15767,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":82016,"rawCurrentLoadIrq":905,"cpus":[{"load":34.86114767043959,"loadUser":16.760989734140562,"loadSystem":16.81363516714925,"loadNice":0,"loadIdle":65.13885232956042,"loadIrq":1.2865227691497763,"rawLoad":10595,"rawLoadUser":5094,"rawLoadSystem":5110,"rawLoadNice":0,"rawLoadIdle":19797,"rawLoadIrq":391},{"load":28.994536247334757,"loadUser":18.533448827292112,"loadSystem":10.41111407249467,"loadNice":0,"loadIdle":71.00546375266525,"loadIrq":0.04997334754797442,"rawLoad":8703,"rawLoadUser":5563,"rawLoadSystem":3125,"rawLoadNice":0,"rawLoadIdle":21313,"rawLoadIrq":15},{"load":32.96779982055627,"loadUser":19.938191606021334,"loadSystem":12.720566244641612,"loadNice":0,"loadIdle":67.03220017944372,"loadIrq":0.30904196989333066,"rawLoad":9921,"rawLoadUser":6000,"rawLoadSystem":3828,"rawLoadNice":0,"rawLoadIdle":20172,"rawLoadIrq":93},{"load":31.811753872463576,"loadUser":18.29512941099089,"loadSystem":12.181405597395337,"loadNice":0,"loadIdle":68.18824612753642,"loadIrq":1.3352188640773506,"rawLoad":9673,"rawLoadUser":5563,"rawLoadSystem":3704,"rawLoadNice":0,"rawLoadIdle":20734,"rawLoadIrq":406}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":13,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":27,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":252181924,"rx_dropped":0,"rx_errors":0,"tx_bytes":26576866,"tx_dropped":0,"tx_errors":0,"rx_sec":1157.7637174566955,"tx_sec":482.0730906199219,"ms":28923}]', '{"total":10685313024,"free":5131440128,"used":5553872896,"active":5553872896,"available":5131440128,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (332, '2022-03-30 01:38:01', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55569678336,"available":71706472448,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":25.466194179108193,"currentLoadUser":14.6642655003859,"currentLoadSystem":10.386150692548362,"currentLoadNice":0,"currentLoadIdle":74.53380582089181,"currentLoadIrq":0.41577798617392964,"rawCurrentLoad":30686,"rawCurrentLoadUser":17670,"rawCurrentLoadSystem":12515,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":89811,"rawCurrentLoadIrq":501,"cpus":[{"load":26.838356525753476,"loadUser":13.49666952450043,"loadSystem":12.260106839016025,"loadNice":0,"loadIdle":73.16164347424652,"loadIrq":1.0815801622370245,"rawLoad":8139,"rawLoadUser":4093,"rawLoadSystem":3718,"rawLoadNice":0,"rawLoadIdle":22187,"rawLoadIrq":328},{"load":22.491337953091683,"loadUser":13.845948827292112,"loadSystem":8.5920842217484,"loadNice":0,"loadIdle":77.50866204690831,"loadIrq":0.053304904051172705,"rawLoad":6751,"rawLoadUser":4156,"rawLoadSystem":2579,"rawLoadNice":0,"rawLoadIdle":23265,"rawLoadIrq":16},{"load":26.882327543259493,"loadUser":15.619914311335481,"loadSystem":10.897073964595304,"loadNice":0,"loadIdle":73.11767245674051,"loadIrq":0.3653392673287057,"rawLoad":8094,"rawLoadUser":4703,"rawLoadSystem":3281,"rawLoadNice":0,"rawLoadIdle":22015,"rawLoadIrq":110},{"load":25.634027824003198,"loadUser":15.702589362976768,"loadSystem":9.775011648805165,"loadNice":0,"loadIdle":74.3659721759968,"loadIrq":0.15642681222126073,"rawLoad":7702,"rawLoadUser":4718,"rawLoadSystem":2937,"rawLoadNice":0,"rawLoadIdle":22344,"rawLoadIrq":47}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":16,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":29,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":252229131,"rx_dropped":0,"rx_errors":0,"tx_bytes":26599002,"tx_dropped":0,"tx_errors":0,"rx_sec":1572.5707052200273,"tx_sec":737.3996468903028,"ms":30019}]', '{"total":10685313024,"free":5114150912,"used":5571162112,"active":5571162112,"available":5114150912,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (333, '2022-03-30 01:38:32', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55570239488,"available":71705911296,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":36.3127566565108,"currentLoadUser":21.940819976155783,"currentLoadSystem":13.93230891508809,"currentLoadNice":0,"currentLoadIdle":63.68724334348921,"currentLoadIrq":0.4396277652669227,"rawCurrentLoad":43860,"rawCurrentLoadUser":26501,"rawCurrentLoadSystem":16828,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":76924,"rawCurrentLoadIrq":531,"cpus":[{"load":38.253487759936824,"loadUser":21.492498025796262,"loadSystem":15.681758357462492,"loadNice":0,"loadIdle":61.746512240063176,"loadIrq":1.0792313766780732,"rawLoad":11626,"rawLoadUser":6532,"rawLoadSystem":4766,"rawLoadNice":0,"rawLoadIdle":18766,"rawLoadIrq":328},{"load":34.9045643153527,"loadUser":21.888796680497926,"loadSystem":12.809958506224067,"loadNice":0,"loadIdle":65.09543568464731,"loadIrq":0.20580912863070538,"rawLoad":10515,"rawLoadUser":6594,"rawLoadSystem":3859,"rawLoadNice":0,"rawLoadIdle":19610,"rawLoadIrq":62},{"load":36.47577676824618,"loadUser":20.9304639055609,"loadSystem":15.233610770302086,"loadNice":0,"loadIdle":63.524223231753815,"loadIrq":0.31170209238319463,"rawLoad":11000,"rawLoadUser":6312,"rawLoadSystem":4594,"rawLoadNice":0,"rawLoadIdle":19157,"rawLoadIrq":94},{"load":35.599468615078045,"loadUser":23.457323148455664,"loadSystem":11.986051145798736,"loadNice":0,"loadIdle":64.40053138492196,"loadIrq":0.15609432082364663,"rawLoad":10719,"rawLoadUser":7063,"rawLoadSystem":3609,"rawLoadNice":0,"rawLoadIdle":19391,"rawLoadIrq":47}]}', '{"ESTABLISHED":28,"CLOSE":0,"TIME_WAIT":16,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":27,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":252310811,"rx_dropped":0,"rx_errors":0,"tx_bytes":26685009,"tx_dropped":0,"tx_errors":0,"rx_sec":2638.9247867666063,"tx_sec":2778.721891961747,"ms":30952}]', '{"total":10685313024,"free":5160591360,"used":5524721664,"active":5524721664,"available":5160591360,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (334, '2022-03-30 01:39:01', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55570501632,"available":71705649152,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":25.132867016542882,"currentLoadUser":14.632422047191703,"currentLoadSystem":10.046326715627158,"currentLoadNice":0,"currentLoadIdle":74.86713298345713,"currentLoadIrq":0.4541182537240192,"rawCurrentLoad":30218,"rawCurrentLoadUser":17593,"rawCurrentLoadSystem":12079,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":90015,"rawCurrentLoadIrq":546,"cpus":[{"load":27.1149459486264,"loadUser":14.615359185427618,"loadSystem":11.415253396806506,"loadNice":0,"loadIdle":72.8850540513736,"loadIrq":1.0843333663922774,"rawLoad":8202,"rawLoadUser":4421,"rawLoadSystem":3453,"rawLoadNice":0,"rawLoadIdle":22047,"rawLoadIrq":328},{"load":23.290555444154805,"loadUser":14.36067107813649,"loadSystem":8.929884366018314,"loadNice":0,"loadIdle":76.7094445558452,"loadIrq":0,"rawLoad":6969,"rawLoadUser":4297,"rawLoadSystem":2672,"rawLoadNice":0,"rawLoadIdle":22953,"rawLoadIrq":0},{"load":24.793333333333333,"loadUser":13.906666666666666,"loadSystem":10.626666666666667,"loadNice":0,"loadIdle":75.20666666666666,"loadIrq":0.26,"rawLoad":7438,"rawLoadUser":4172,"rawLoadSystem":3188,"rawLoadNice":0,"rawLoadIdle":22562,"rawLoadIrq":78},{"load":25.31102388397312,"loadUser":15.644335040915442,"loadSystem":9.200984631761028,"loadNice":0,"loadIdle":74.68897611602688,"loadIrq":0.46570421129665357,"rawLoad":7609,"rawLoadUser":4703,"rawLoadSystem":2766,"rawLoadNice":0,"rawLoadIdle":22453,"rawLoadIrq":140}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":14,"LISTEN":32,"CLOSE_WAIT":3,"UNKNOWN":29,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":252354788,"rx_dropped":0,"rx_errors":0,"tx_bytes":26695416,"tx_dropped":0,"tx_errors":0,"rx_sec":1521.116530040469,"tx_sec":359.9667946456366,"ms":28911}]', '{"total":10685313024,"free":5123985408,"used":5561327616,"active":5561327616,"available":5123985408,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (335, '2022-03-30 01:39:33', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55571075072,"available":71705075712,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":28.188122536432182,"currentLoadUser":16.39407271716197,"currentLoadSystem":11.461212606924978,"currentLoadNice":0,"currentLoadIdle":71.81187746356782,"currentLoadIrq":0.3328372123452348,"rawCurrentLoad":34469,"rawCurrentLoadUser":20047,"rawCurrentLoadSystem":14015,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":87813,"rawCurrentLoadIrq":407,"cpus":[{"load":29.83902502606882,"loadUser":16.090980187695518,"loadSystem":13.034410844629823,"loadNice":0,"loadIdle":70.16097497393118,"loadIrq":0.7136339937434828,"rawLoad":9157,"rawLoadUser":4938,"rawLoadSystem":4000,"rawLoadNice":0,"rawLoadIdle":21531,"rawLoadIrq":219},{"load":25.154098360655734,"loadUser":14.80327868852459,"loadSystem":10.245901639344263,"loadNice":0,"loadIdle":74.84590163934426,"loadIrq":0.10491803278688526,"rawLoad":7672,"rawLoadUser":4515,"rawLoadSystem":3125,"rawLoadNice":0,"rawLoadIdle":22828,"rawLoadIrq":32},{"load":29.26453221362026,"loadUser":16.30035428421467,"loadSystem":12.914971788479201,"loadNice":0,"loadIdle":70.73546778637973,"loadIrq":0.049206140926387615,"rawLoad":8921,"rawLoadUser":4969,"rawLoadSystem":3937,"rawLoadNice":0,"rawLoadIdle":21563,"rawLoadIrq":15},{"load":28.484155504737014,"loadUser":18.376347598823912,"loadSystem":9.64717412610258,"loadNice":0,"loadIdle":71.51584449526298,"loadIrq":0.4606337798105194,"rawLoad":8719,"rawLoadUser":5625,"rawLoadSystem":2953,"rawLoadNice":0,"rawLoadIdle":21891,"rawLoadIrq":141}]}', '{"ESTABLISHED":28,"CLOSE":0,"TIME_WAIT":15,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":32,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":252404207,"rx_dropped":0,"rx_errors":0,"tx_bytes":26718253,"tx_dropped":0,"tx_errors":0,"rx_sec":1544.2472345478407,"tx_sec":713.6116492719204,"ms":32002}]', '{"total":10685313024,"free":5111103488,"used":5574209536,"active":5574209536,"available":5111103488,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (336, '2022-03-30 01:40:02', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55571206144,"available":71704944640,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":23.082041218532336,"currentLoadUser":12.55421828809177,"currentLoadSystem":10.120185626573909,"currentLoadNice":0,"currentLoadIdle":76.91795878146766,"currentLoadIrq":0.40763730386665886,"rawCurrentLoad":27406,"rawCurrentLoadUser":14906,"rawCurrentLoadSystem":12016,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":91327,"rawCurrentLoadIrq":484,"cpus":[{"load":24.48904252105917,"loadUser":12.481122260630265,"loadSystem":11.222606302647918,"loadNice":0,"loadIdle":75.51095747894084,"loadIrq":0.7853139577809847,"rawLoad":7297,"rawLoadUser":3719,"rawLoadSystem":3344,"rawLoadNice":0,"rawLoadIdle":22500,"rawLoadIrq":234},{"load":21.48818977460886,"loadUser":11.82712127868077,"loadSystem":9.556313993174061,"loadNice":0,"loadIdle":78.51181022539114,"loadIrq":0.10475450275402966,"rawLoad":6359,"rawLoadUser":3500,"rawLoadSystem":2828,"rawLoadNice":0,"rawLoadIdle":23234,"rawLoadIrq":31},{"load":23.62050971282362,"loadUser":12.887587112412888,"loadSystem":10.258223075110259,"loadNice":0,"loadIdle":76.37949028717638,"loadIrq":0.4746995253004747,"rawLoad":7016,"rawLoadUser":3828,"rawLoadSystem":3047,"rawLoadNice":0,"rawLoadIdle":22687,"rawLoadIrq":141},{"load":22.719298245614038,"loadUser":13.019568151147098,"loadSystem":9.436572199730096,"loadNice":0,"loadIdle":77.28070175438596,"loadIrq":0.2631578947368421,"rawLoad":6734,"rawLoadUser":3859,"rawLoadSystem":2797,"rawLoadNice":0,"rawLoadIdle":22906,"rawLoadIrq":78}]}', '{"ESTABLISHED":27,"CLOSE":0,"TIME_WAIT":11,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":28,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":252446063,"rx_dropped":0,"rx_errors":0,"tx_bytes":26730182,"tx_dropped":0,"tx_errors":0,"rx_sec":1488.107512354677,"tx_sec":424.11206314217657,"ms":28127}]', '{"total":10685313024,"free":5207273472,"used":5478039552,"active":5478039552,"available":5207273472,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (337, '2022-03-30 01:40:34', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55572774912,"available":71703375872,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":55.81074986675413,"currentLoadUser":36.079701529252596,"currentLoadSystem":19.10294780861793,"currentLoadNice":0,"currentLoadIdle":44.18925013324587,"currentLoadIrq":0.6281005288836047,"rawCurrentLoad":68064,"rawCurrentLoadUser":44001,"rawCurrentLoadSystem":23297,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":53891,"rawCurrentLoadIrq":766,"cpus":[{"load":57.53576433017239,"loadUser":34.67266269104181,"loadSystem":21.58894645941278,"loadNice":0,"loadIdle":42.464235669827616,"loadIrq":1.2741551797177957,"rawLoad":17656,"rawLoadUser":10640,"rawLoadSystem":6625,"rawLoadNice":0,"rawLoadIdle":13031,"rawLoadIrq":391},{"load":54.37187253094549,"loadUser":36.16341848828022,"loadSystem":17.951672372925994,"loadNice":0,"loadIdle":45.62812746905452,"loadIrq":0.25678166973926786,"rawLoad":16516,"rawLoadUser":10985,"rawLoadSystem":5453,"rawLoadNice":0,"rawLoadIdle":13860,"rawLoadIrq":78},{"load":55.2133324567747,"loadUser":36.72342383801197,"loadSystem":18.079021760568008,"loadNice":0,"loadIdle":44.78666754322529,"loadIrq":0.4108868581947275,"rawLoad":16797,"rawLoadUser":11172,"rawLoadSystem":5500,"rawLoadNice":0,"rawLoadIdle":13625,"rawLoadIrq":125},{"load":56.10436494913029,"loadUser":36.770594026911716,"loadSystem":18.76928126025599,"loadNice":0,"loadIdle":43.89563505086971,"loadIrq":0.5644896619625862,"rawLoad":17095,"rawLoadUser":11204,"rawLoadSystem":5719,"rawLoadNice":0,"rawLoadIdle":13375,"rawLoadIrq":172}]}', '{"ESTABLISHED":38,"CLOSE":0,"TIME_WAIT":13,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":34,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":258718291,"rx_dropped":0,"rx_errors":0,"tx_bytes":27009129,"tx_dropped":0,"tx_errors":0,"rx_sec":195548.80748246296,"tx_sec":8696.710833982852,"ms":32075}]', '{"total":10685313024,"free":4891332608,"used":5793980416,"active":5793980416,"available":4891332608,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (338, '2022-03-30 01:41:02', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55572905984,"available":71703244800,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":37.991689057258725,"currentLoadUser":21.329750838604163,"currentLoadSystem":16.010246824986233,"currentLoadNice":0,"currentLoadIdle":62.008310942741275,"currentLoadIrq":0.65169139366833,"rawCurrentLoad":45530,"rawCurrentLoadUser":25562,"rawCurrentLoadSystem":19187,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":74312,"rawCurrentLoadIrq":781,"cpus":[{"load":40.87879290333278,"loadUser":19.741336428452993,"loadSystem":19.84413861714475,"loadNice":0,"loadIdle":59.12120709666722,"loadIrq":1.2933178577350357,"rawLoad":12327,"rawLoadUser":5953,"rawLoadSystem":5984,"rawLoadNice":0,"rawLoadIdle":17828,"rawLoadIrq":390},{"load":34.80022773703071,"loadUser":22.030208647309017,"loadSystem":12.455206135503532,"loadNice":0,"loadIdle":65.19977226296929,"loadIrq":0.3148129542181587,"rawLoad":10391,"rawLoadUser":6578,"rawLoadSystem":3719,"rawLoadNice":0,"rawLoadIdle":19468,"rawLoadIrq":94},{"load":38.469795055848124,"loadUser":22.22184952872908,"loadSystem":16.090296179519,"loadNice":0,"loadIdle":61.530204944151876,"loadIrq":0.15764934760004026,"rawLoad":11469,"rawLoadUser":6625,"rawLoadSystem":4797,"rawLoadNice":0,"rawLoadIdle":18344,"rawLoadIrq":47},{"load":37.791104447776114,"loadUser":21.342662002332165,"loadSystem":15.615525570548058,"loadNice":0,"loadIdle":62.208895552223886,"loadIrq":0.8329168748958855,"rawLoad":11343,"rawLoadUser":6406,"rawLoadSystem":4687,"rawLoadNice":0,"rawLoadIdle":18672,"rawLoadIrq":250}]}', '{"ESTABLISHED":38,"CLOSE":0,"TIME_WAIT":11,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":31,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":258969576,"rx_dropped":0,"rx_errors":0,"tx_bytes":27038980,"tx_dropped":0,"tx_errors":0,"rx_sec":8673.673673673673,"tx_sec":1030.375202788996,"ms":28971}]', '{"total":10685313024,"free":5084733440,"used":5600579584,"active":5600579584,"available":5084733440,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (339, '2022-03-30 01:41:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55569575936,"available":71706574848,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":37.54505456262895,"currentLoadUser":21.47787251319529,"currentLoadSystem":15.290793540315029,"currentLoadNice":0,"currentLoadIdle":62.454945437371045,"currentLoadIrq":0.7763885091186292,"rawCurrentLoad":45312,"rawCurrentLoadUser":25921,"rawCurrentLoadSystem":18454,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":75375,"rawCurrentLoadIrq":937,"cpus":[{"load":39.90772779700115,"loadUser":19.103641456582633,"loadSystem":19.462843961113858,"loadNice":0,"loadIdle":60.09227220299884,"loadIrq":1.341242379304663,"rawLoad":12110,"rawLoadUser":5797,"rawLoadSystem":5906,"rawLoadNice":0,"rawLoadIdle":18235,"rawLoadIrq":407},{"load":34.424480816027206,"loadUser":21.56071869062302,"loadSystem":12.657088569618988,"loadNice":0,"loadIdle":65.5755191839728,"loadIrq":0.20667355578519284,"rawLoad":10327,"rawLoadUser":6468,"rawLoadSystem":3797,"rawLoadNice":0,"rawLoadIdle":19672,"rawLoadIrq":62},{"load":37.29124304143471,"loadUser":22.030734357811927,"loadSystem":15.053835127837594,"loadNice":0,"loadIdle":62.70875695856528,"loadIrq":0.20667355578519284,"rawLoad":11187,"rawLoadUser":6609,"rawLoadSystem":4516,"rawLoadNice":0,"rawLoadIdle":18812,"rawLoadIrq":62},{"load":38.5183232269971,"loadUser":23.223701555496966,"loadSystem":13.956630635380964,"loadNice":0,"loadIdle":61.4816767730029,"loadIrq":1.337991036119167,"rawLoad":11688,"rawLoadUser":7047,"rawLoadSystem":4235,"rawLoadNice":0,"rawLoadIdle":18656,"rawLoadIrq":406}]}', '{"ESTABLISHED":41,"CLOSE":0,"TIME_WAIT":14,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":32,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":259031935,"rx_dropped":0,"rx_errors":0,"tx_bytes":27063327,"tx_dropped":0,"tx_errors":0,"rx_sec":2160.21754945093,"tx_sec":843.4198219420099,"ms":28867}]', '{"total":10685313024,"free":5033472000,"used":5651841024,"active":5651841024,"available":5033472000,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (340, '2022-03-30 01:42:02', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55570427904,"available":71705722880,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":27.812352390344152,"currentLoadUser":15.369635295385049,"currentLoadSystem":11.9894259693552,"currentLoadNice":0,"currentLoadIdle":72.18764760965584,"currentLoadIrq":0.4532911256039047,"rawCurrentLoad":33562,"rawCurrentLoadUser":18547,"rawCurrentLoadSystem":14468,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":87111,"rawCurrentLoadIrq":547,"cpus":[{"load":29.75206611570248,"loadUser":14.87603305785124,"loadSystem":14.155371900826447,"loadNice":0,"loadIdle":70.24793388429752,"loadIrq":0.7206611570247934,"rawLoad":9000,"rawLoadUser":4500,"rawLoadSystem":4282,"rawLoadNice":0,"rawLoadIdle":21250,"rawLoadIrq":218},{"load":24.075614870036944,"loadUser":14.976536759077444,"loadSystem":9.045828202482777,"loadNice":0,"loadIdle":75.92438512996306,"loadIrq":0.0532499084767198,"rawLoad":7234,"rawLoadUser":4500,"rawLoadSystem":2718,"rawLoadNice":0,"rawLoadIdle":22813,"rawLoadIrq":16},{"load":28.34132055378062,"loadUser":15.13245473908413,"loadSystem":13.155617678381256,"loadNice":0,"loadIdle":71.65867944621938,"loadIrq":0.05324813631522897,"rawLoad":8516,"rawLoadUser":4547,"rawLoadSystem":3953,"rawLoadNice":0,"rawLoadIdle":21532,"rawLoadIrq":16},{"load":29.05565813769454,"loadUser":16.486415193880244,"loadSystem":11.58994988129781,"loadNice":0,"loadIdle":70.94434186230546,"loadIrq":0.9792930625164864,"rawLoad":8812,"rawLoadUser":5000,"rawLoadSystem":3515,"rawLoadNice":0,"rawLoadIdle":21516,"rawLoadIrq":297}]}', '{"ESTABLISHED":37,"CLOSE":0,"TIME_WAIT":13,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":28,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":259069169,"rx_dropped":0,"rx_errors":0,"tx_bytes":27074080,"tx_dropped":0,"tx_errors":0,"rx_sec":1209.8781478472788,"tx_sec":349.40698619008936,"ms":30775}]', '{"total":10685313024,"free":5089796096,"used":5595516928,"active":5595516928,"available":5089796096,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (341, '2022-03-30 01:42:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55571148800,"available":71705001984,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":28.719815193365573,"currentLoadUser":15.878911768127505,"currentLoadSystem":12.451180801382726,"currentLoadNice":0,"currentLoadIdle":71.28018480663442,"currentLoadIrq":0.38972262385534556,"rawCurrentLoad":34562,"rawCurrentLoadUser":19109,"rawCurrentLoadSystem":14984,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":85780,"rawCurrentLoadIrq":469,"cpus":[{"load":30.8640747737894,"loadUser":16.313678698087568,"loadSystem":13.877564548738855,"loadNice":0,"loadIdle":69.1359252262106,"loadIrq":0.6728315269629778,"rawLoad":9312,"rawLoadUser":4922,"rawLoadSystem":4187,"rawLoadNice":0,"rawLoadIdle":20859,"rawLoadIrq":203},{"load":26.266466566616643,"loadUser":15.424378856094714,"loadSystem":10.788727697181924,"loadNice":0,"loadIdle":73.73353343338336,"loadIrq":0.053360013340003336,"rawLoad":7876,"rawLoadUser":4625,"rawLoadSystem":3235,"rawLoadNice":0,"rawLoadIdle":22109,"rawLoadIrq":16},{"load":29.275111495706586,"loadUser":16.641150236304334,"loadSystem":12.374359315715902,"loadNice":0,"loadIdle":70.72488850429342,"loadIrq":0.2596019436863476,"rawLoad":8796,"rawLoadUser":5000,"rawLoadSystem":3718,"rawLoadNice":0,"rawLoadIdle":21250,"rawLoadIrq":78},{"load":28.460517584605178,"loadUser":15.136031851360318,"loadSystem":12.753815527538157,"loadNice":0,"loadIdle":71.53948241539483,"loadIrq":0.570670205706702,"rawLoad":8578,"rawLoadUser":4562,"rawLoadSystem":3844,"rawLoadNice":0,"rawLoadIdle":21562,"rawLoadIrq":172}]}', '{"ESTABLISHED":32,"CLOSE":0,"TIME_WAIT":14,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":32,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":259132800,"rx_dropped":0,"rx_errors":0,"tx_bytes":27101364,"tx_dropped":0,"tx_errors":0,"rx_sec":2179.6663583735826,"tx_sec":934.607611413695,"ms":29193}]', '{"total":10685313024,"free":5068099584,"used":5617213440,"active":5617213440,"available":5068099584,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (342, '2022-03-30 01:43:02', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55571345408,"available":71704805376,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":23.611972640580934,"currentLoadUser":12.781513369558924,"currentLoadSystem":10.494669544864319,"currentLoadNice":0,"currentLoadIdle":76.38802735941907,"currentLoadIrq":0.3357897261576889,"rawCurrentLoad":28549,"rawCurrentLoadUser":15454,"rawCurrentLoadSystem":12689,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":92360,"rawCurrentLoadIrq":406,"cpus":[{"load":25.52946213892823,"loadUser":12.660979546128257,"loadSystem":12.094463291722935,"loadNice":0,"loadIdle":74.47053786107178,"loadIrq":0.7740193010770396,"rawLoad":7751,"rawLoadUser":3844,"rawLoadSystem":3672,"rawLoadNice":0,"rawLoadIdle":22610,"rawLoadIrq":235},{"load":21.473858921161828,"loadUser":12.760165975103735,"loadSystem":8.71369294605809,"loadNice":0,"loadIdle":78.52614107883818,"loadIrq":0,"rawLoad":6469,"rawLoadUser":3844,"rawLoadSystem":2625,"rawLoadNice":0,"rawLoadIdle":23656,"rawLoadIrq":0},{"load":24.04416884968664,"loadUser":12.48797957356501,"loadSystem":11.4533939052293,"loadNice":0,"loadIdle":75.95583115031336,"loadIrq":0.10279537089233014,"rawLoad":7251,"rawLoadUser":3766,"rawLoadSystem":3454,"rawLoadNice":0,"rawLoadIdle":22906,"rawLoadIrq":31},{"load":23.38597766470627,"loadUser":13.216150135465538,"loadSystem":9.707262274499438,"loadNice":0,"loadIdle":76.61402233529373,"loadIrq":0.4625652547412939,"rawLoad":7078,"rawLoadUser":4000,"rawLoadSystem":2938,"rawLoadNice":0,"rawLoadIdle":23188,"rawLoadIrq":140}]}', '{"ESTABLISHED":29,"CLOSE":0,"TIME_WAIT":14,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":29,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":259180120,"rx_dropped":0,"rx_errors":0,"tx_bytes":27112760,"tx_dropped":0,"tx_errors":0,"rx_sec":1543.9329178766027,"tx_sec":371.82289797383277,"ms":30649}]', '{"total":10685313024,"free":5072334848,"used":5612978176,"active":5612978176,"available":5072334848,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (343, '2022-03-30 01:43:32', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55572291584,"available":71703859200,"use":43.66,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":37.054653442414114,"currentLoadUser":21.18389597068385,"currentLoadSystem":14.979030350155927,"currentLoadNice":0,"currentLoadIdle":62.94534655758588,"currentLoadIrq":0.8917271215743369,"rawCurrentLoad":44795,"rawCurrentLoadUser":25609,"rawCurrentLoadSystem":18108,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":76094,"rawCurrentLoadIrq":1078,"cpus":[{"load":40.75700475176143,"loadUser":19.50843847288219,"loadSystem":19.406849090611175,"loadNice":0,"loadIdle":59.24299524823857,"loadIrq":1.841717188268065,"rawLoad":12437,"rawLoadUser":5953,"rawLoadSystem":5922,"rawLoadNice":0,"rawLoadIdle":18078,"rawLoadIrq":562},{"load":34.23318594368164,"loadUser":20.83180956813724,"loadSystem":12.985804049336746,"loadNice":0,"loadIdle":65.76681405631835,"loadIrq":0.41557232620765316,"rawLoad":10297,"rawLoadUser":6266,"rawLoadSystem":3906,"rawLoadNice":0,"rawLoadIdle":19782,"rawLoadIrq":125},{"load":35.0995140784131,"loadUser":21.4238168142182,"loadSystem":13.36284363975238,"loadNice":0,"loadIdle":64.9004859215869,"loadIrq":0.31285362444252146,"rawLoad":10546,"rawLoadUser":6437,"rawLoadSystem":4015,"rawLoadNice":0,"rawLoadIdle":19500,"rawLoadIrq":94},{"load":38.06737412807035,"loadUser":22.985883830870442,"loadSystem":14.09963965750934,"loadNice":0,"loadIdle":61.932625871929645,"loadIrq":0.9818506396905683,"rawLoad":11515,"rawLoadUser":6953,"rawLoadSystem":4265,"rawLoadNice":0,"rawLoadIdle":18734,"rawLoadIrq":297}]}', '{"ESTABLISHED":29,"CLOSE":0,"TIME_WAIT":13,"LISTEN":32,"CLOSE_WAIT":3,"UNKNOWN":28,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":259225355,"rx_dropped":0,"rx_errors":0,"tx_bytes":27129291,"tx_dropped":0,"tx_errors":0,"rx_sec":1511.1578806708092,"tx_sec":552.2482795483396,"ms":29934}]', '{"total":10685313024,"free":5096734720,"used":5588578304,"active":5588578304,"available":5096734720,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (344, '2022-03-30 01:44:03', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55535030272,"available":71741120512,"use":43.63,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":48.07950819672131,"currentLoadUser":27.049180327868854,"currentLoadSystem":19.544262295081968,"currentLoadNice":0,"currentLoadIdle":51.92049180327869,"currentLoadIrq":1.4860655737704918,"rawCurrentLoad":58657,"rawCurrentLoadUser":33000,"rawCurrentLoadSystem":23844,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":63343,"rawCurrentLoadIrq":1813,"cpus":[{"load":53.56441290159052,"loadUser":25.44515556682086,"loadSystem":23.316012926937457,"loadNice":0,"loadIdle":46.43558709840948,"loadIrq":4.803244407832203,"rawLoad":16906,"rawLoadUser":8031,"rawLoadSystem":7359,"rawLoadNice":0,"rawLoadIdle":14656,"rawLoadIrq":1516},{"load":44.45549807666799,"loadUser":26.840429765220854,"loadSystem":17.2536145377371,"loadNice":0,"loadIdle":55.544501923332,"loadIrq":0.3614537737100411,"rawLoad":13406,"rawLoadUser":8094,"rawLoadSystem":5203,"rawLoadNice":0,"rawLoadIdle":16750,"rawLoadIrq":109},{"load":46.44258261852517,"loadUser":26.338187379480015,"loadSystem":20.001329875656626,"loadNice":0,"loadIdle":53.557417381474835,"loadIrq":0.10306536338852317,"rawLoad":13969,"rawLoadUser":7922,"rawLoadSystem":6016,"rawLoadNice":0,"rawLoadIdle":16109,"rawLoadIrq":31},{"load":47.59634485498609,"loadUser":29.641769302079197,"loadSystem":17.434776850748246,"loadNice":0,"loadIdle":52.40365514501391,"loadIrq":0.5197987021586544,"rawLoad":14376,"rawLoadUser":8953,"rawLoadSystem":5266,"rawLoadNice":0,"rawLoadIdle":15828,"rawLoadIrq":157}]}', '{"ESTABLISHED":30,"CLOSE":0,"TIME_WAIT":14,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":53,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":259764401,"rx_dropped":0,"rx_errors":0,"tx_bytes":27227290,"tx_dropped":0,"tx_errors":0,"rx_sec":17171.44495412844,"tx_sec":3121.782619775739,"ms":31392}]', '{"total":10685313024,"free":5100486656,"used":5584826368,"active":5584826368,"available":5100486656,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (345, '2022-03-30 01:44:32', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55535362048,"available":71740788736,"use":43.63,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":39.17491639903321,"currentLoadUser":21.612091514088007,"currentLoadSystem":16.735920272820582,"currentLoadNice":0,"currentLoadIdle":60.82508360096679,"currentLoadIrq":0.8269046121246234,"rawCurrentLoad":47328,"rawCurrentLoadUser":26110,"rawCurrentLoadSystem":20219,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":73484,"rawCurrentLoadIrq":999,"cpus":[{"load":43.660635408827666,"loadUser":19.173510453816707,"loadSystem":22.494519517063118,"loadNice":0,"loadIdle":56.339364591172334,"loadIrq":1.9926054379478455,"rawLoad":13344,"rawLoadUser":5860,"rawLoadSystem":6875,"rawLoadNice":0,"rawLoadIdle":17219,"rawLoadIrq":609},{"load":34.65297001634259,"loadUser":20.63502651502518,"loadSystem":13.91455157922823,"loadNice":0,"loadIdle":65.34702998365741,"loadIrq":0.10339192208918388,"rawLoad":10390,"rawLoadUser":6187,"rawLoadSystem":4172,"rawLoadNice":0,"rawLoadIdle":19593,"rawLoadIrq":31},{"load":39.12623622257001,"loadUser":22.060537444640538,"loadSystem":16.805967167260498,"loadNice":0,"loadIdle":60.87376377742999,"loadIrq":0.2597316106689754,"rawLoad":11750,"rawLoadUser":6625,"rawLoadSystem":5047,"rawLoadNice":0,"rawLoadIdle":18281,"rawLoadIrq":78},{"load":39.173143707623616,"loadUser":24.600628410782203,"loadSystem":13.643128824210352,"loadNice":0,"loadIdle":60.826856292376384,"loadIrq":0.9293864726310568,"rawLoad":11844,"rawLoadUser":7438,"rawLoadSystem":4125,"rawLoadNice":0,"rawLoadIdle":18391,"rawLoadIrq":281}]}', '{"ESTABLISHED":30,"CLOSE":0,"TIME_WAIT":11,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":26,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":259798257,"rx_dropped":0,"rx_errors":0,"tx_bytes":27237810,"tx_dropped":0,"tx_errors":0,"rx_sec":1169.0204067539105,"tx_sec":363.2471254445634,"ms":28961}]', '{"total":10685313024,"free":5129048064,"used":5556264960,"active":5556264960,"available":5129048064,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (346, '2022-03-30 01:45:06', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55537098752,"available":71739052032,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":29.958819776450213,"currentLoadUser":17.65943872266735,"currentLoadSystem":11.729320816313002,"currentLoadNice":0,"currentLoadIdle":70.04118022354979,"currentLoadIrq":0.5700602374698606,"rawCurrentLoad":36157,"rawCurrentLoadUser":21313,"rawCurrentLoadSystem":14156,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":84532,"rawCurrentLoadIrq":688,"cpus":[{"load":32.32436349263858,"loadUser":16.211587233622083,"loadSystem":14.927044563749547,"loadNice":0,"loadIdle":67.67563650736142,"loadIrq":1.1857316952669543,"rawLoad":9814,"rawLoadUser":4922,"rawLoadSystem":4532,"rawLoadNice":0,"rawLoadIdle":20547,"rawLoadIrq":360},{"load":26.638252530633988,"loadUser":17.32485348961108,"loadSystem":9.210175812466701,"loadNice":0,"loadIdle":73.36174746936601,"loadIrq":0.10322322855620672,"rawLoad":8000,"rawLoadUser":5203,"rawLoadSystem":2766,"rawLoadNice":0,"rawLoadIdle":22032,"rawLoadIrq":31},{"load":29.83401523467385,"loadUser":17.257093437115394,"loadSystem":12.367361873399195,"loadNice":0,"loadIdle":70.16598476532614,"loadIrq":0.20955992415926553,"rawLoad":8969,"rawLoadUser":5188,"rawLoadSystem":3718,"rawLoadNice":0,"rawLoadIdle":21094,"rawLoadIrq":63},{"load":31.00585452981841,"loadUser":19.845863791221515,"loadSystem":10.386002050739258,"loadNice":0,"loadIdle":68.99414547018159,"loadIrq":0.773988687857639,"rawLoad":9374,"rawLoadUser":6000,"rawLoadSystem":3140,"rawLoadNice":0,"rawLoadIdle":20859,"rawLoadIrq":234}]}', '{"ESTABLISHED":29,"CLOSE":0,"TIME_WAIT":9,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":31,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":259864469,"rx_dropped":0,"rx_errors":0,"tx_bytes":27258650,"tx_dropped":0,"tx_errors":0,"rx_sec":1855.5094720322836,"tx_sec":584.0152449276987,"ms":35684}]', '{"total":10685313024,"free":5139591168,"used":5545721856,"active":5545721856,"available":5139591168,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (347, '2022-03-30 01:45:32', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55537430528,"available":71738720256,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":33.10561619761887,"currentLoadUser":18.408785261090895,"currentLoadSystem":13.962525680057425,"currentLoadNice":0,"currentLoadIdle":66.89438380238113,"currentLoadIrq":0.7343052564705495,"rawCurrentLoad":40125,"rawCurrentLoadUser":22312,"rawCurrentLoadSystem":16923,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":81078,"rawCurrentLoadIrq":890,"cpus":[{"load":36.40296257455594,"loadUser":16.28105132070525,"loadSystem":18.689781739529394,"loadNice":0,"loadIdle":63.59703742544406,"loadIrq":1.432129514321295,"rawLoad":11108,"rawLoadUser":4968,"rawLoadSystem":5703,"rawLoadNice":0,"rawLoadIdle":19406,"rawLoadIrq":437},{"load":29.616597510373445,"loadUser":18.413278008298757,"loadSystem":11.047302904564315,"loadNice":0,"loadIdle":70.38340248962656,"loadIrq":0.15601659751037344,"rawLoad":8922,"rawLoadUser":5547,"rawLoadSystem":3328,"rawLoadNice":0,"rawLoadIdle":21203,"rawLoadIrq":47},{"load":33.26590841264051,"loadUser":19.63723182014126,"loadSystem":13.370030175415327,"loadNice":0,"loadIdle":66.73409158735949,"loadIrq":0.25864641708392744,"rawLoad":10032,"rawLoadUser":5922,"rawLoadSystem":4032,"rawLoadNice":0,"rawLoadIdle":20125,"rawLoadIrq":78},{"load":33.094353273917186,"loadUser":19.32120893215378,"loadSystem":12.694445357976782,"loadNice":0,"loadIdle":66.90564672608281,"loadIrq":1.078698983786628,"rawLoad":10063,"rawLoadUser":5875,"rawLoadSystem":3860,"rawLoadNice":0,"rawLoadIdle":20344,"rawLoadIrq":328}]}', '{"ESTABLISHED":30,"CLOSE":0,"TIME_WAIT":6,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":26,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":259892522,"rx_dropped":0,"rx_errors":0,"tx_bytes":27262910,"tx_dropped":0,"tx_errors":0,"rx_sec":1147.2681171274332,"tx_sec":174.21887780140682,"ms":24452}]', '{"total":10685313024,"free":5107175424,"used":5578137600,"active":5578137600,"available":5107175424,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (348, '2022-03-30 01:46:03', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55533813760,"available":71742337024,"use":43.63,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":32.32707845967514,"currentLoadUser":18.833474358336236,"currentLoadSystem":13.039005856685415,"currentLoadNice":0,"currentLoadIdle":67.67292154032486,"currentLoadIrq":0.4545982446534933,"rawCurrentLoad":38969,"rawCurrentLoadUser":22703,"rawCurrentLoadSystem":15718,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":81577,"rawCurrentLoadIrq":548,"cpus":[{"load":37.33315756517154,"loadUser":19.671752957848597,"loadSystem":16.527699963747818,"loadNice":0,"loadIdle":62.66684243482846,"loadIrq":1.1337046435751243,"rawLoad":11328,"rawLoadUser":5969,"rawLoadSystem":5015,"rawLoadNice":0,"rawLoadIdle":19015,"rawLoadIrq":344},{"load":28.617095667809927,"loadUser":17.741666944157704,"loadSystem":10.768872165429057,"loadNice":0,"loadIdle":71.38290433219007,"loadIrq":0.1065565582231694,"rawLoad":8594,"rawLoadUser":5328,"rawLoadSystem":3234,"rawLoadNice":0,"rawLoadIdle":21437,"rawLoadIrq":32},{"load":30.99144673345093,"loadUser":18.354577828069356,"loadSystem":12.480447299231203,"loadNice":0,"loadIdle":69.00855326654907,"loadIrq":0.1564216061503644,"rawLoad":9312,"rawLoadUser":5515,"rawLoadSystem":3750,"rawLoadNice":0,"rawLoadIdle":20735,"rawLoadIrq":47},{"load":32.315352697095435,"loadUser":19.555186721991703,"loadSystem":12.345228215767635,"loadNice":0,"loadIdle":67.68464730290457,"loadIrq":0.4149377593360996,"rawLoad":9735,"rawLoadUser":5891,"rawLoadSystem":3719,"rawLoadNice":0,"rawLoadIdle":20390,"rawLoadIrq":125}]}', '{"ESTABLISHED":29,"CLOSE":0,"TIME_WAIT":9,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":39,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":259950130,"rx_dropped":0,"rx_errors":0,"tx_bytes":27287501,"tx_dropped":0,"tx_errors":0,"rx_sec":1898.434667984841,"tx_sec":810.3806228373703,"ms":30345}]', '{"total":10685313024,"free":5041504256,"used":5643808768,"active":5643808768,"available":5041504256,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (349, '2022-03-30 01:46:34', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55533871104,"available":71742279680,"use":43.63,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":38.11551353532692,"currentLoadUser":22.33843670474292,"currentLoadSystem":15.120693773008409,"currentLoadNice":0,"currentLoadIdle":61.88448646467308,"currentLoadIrq":0.6563830575755829,"rawCurrentLoad":46281,"rawCurrentLoadUser":27124,"rawCurrentLoadSystem":18360,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":75142,"rawCurrentLoadIrq":797,"cpus":[{"load":44.00639665807252,"loadUser":23.20093991710453,"loadSystem":19.225873829183122,"loadNice":0,"loadIdle":55.993603341927475,"loadIrq":1.5795829117848634,"rawLoad":13484,"rawLoadUser":7109,"rawLoadSystem":5891,"rawLoadNice":0,"rawLoadIdle":17157,"rawLoadIrq":484},{"load":33.90420034450775,"loadUser":21.01497283688883,"loadSystem":12.786537697098185,"loadNice":0,"loadIdle":66.09579965549224,"loadIrq":0.10268981052073672,"rawLoad":10235,"rawLoadUser":6344,"rawLoadSystem":3860,"rawLoadNice":0,"rawLoadIdle":19953,"rawLoadIrq":31},{"load":37.24795550110916,"loadUser":20.69330861172731,"loadSystem":16.39903320862166,"loadNice":0,"loadIdle":62.75204449889083,"loadIrq":0.1556136807601894,"rawLoad":11250,"rawLoadUser":6250,"rawLoadSystem":4953,"rawLoadNice":0,"rawLoadIdle":18953,"rawLoadIrq":47},{"load":37.221545852390506,"loadUser":24.418413346056397,"loadSystem":12.029877266295944,"loadNice":0,"loadIdle":62.77845414760949,"loadIrq":0.7732552400381691,"rawLoad":11312,"rawLoadUser":7421,"rawLoadSystem":3656,"rawLoadNice":0,"rawLoadIdle":19079,"rawLoadIrq":235}]}', '{"ESTABLISHED":31,"CLOSE":0,"TIME_WAIT":12,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":35,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":260018273,"rx_dropped":0,"rx_errors":0,"tx_bytes":27308378,"tx_dropped":0,"tx_errors":0,"rx_sec":2181.064558461095,"tx_sec":668.2136798642896,"ms":31243}]', '{"total":10685313024,"free":5017247744,"used":5668065280,"active":5668065280,"available":5017247744,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (350, '2022-03-30 01:47:03', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55534264320,"available":71741886464,"use":43.63,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":39.8821833161689,"currentLoadUser":24.11287332646756,"currentLoadSystem":15.049227600411946,"currentLoadNice":0,"currentLoadIdle":60.1178166838311,"currentLoadIrq":0.7200823892893924,"rawCurrentLoad":48407,"rawCurrentLoadUser":29267,"rawCurrentLoadSystem":18266,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":72968,"rawCurrentLoadIrq":874,"cpus":[{"load":41.653361139170386,"loadUser":21.43764866890417,"loadSystem":18.381178924044445,"loadNice":0,"loadIdle":58.346638860829614,"loadIrq":1.8345335462217733,"rawLoad":12783,"rawLoadUser":6579,"rawLoadSystem":5641,"rawLoadNice":0,"rawLoadIdle":17906,"rawLoadIrq":563},{"load":37.737226277372265,"loadUser":23.58659588586596,"loadSystem":14.100862641008627,"loadNice":0,"loadIdle":62.26277372262774,"loadIrq":0.04976775049767751,"rawLoad":11374,"rawLoadUser":7109,"rawLoadSystem":4250,"rawLoadNice":0,"rawLoadIdle":18766,"rawLoadIrq":15},{"load":40.353607257557194,"loadUser":24.52405390193027,"loadSystem":15.571300864152567,"loadNice":0,"loadIdle":59.6463927424428,"loadIrq":0.2582524914743568,"rawLoad":12188,"rawLoadUser":7407,"rawLoadSystem":4703,"rawLoadNice":0,"rawLoadIdle":18015,"rawLoadIrq":78},{"load":39.75216689186962,"loadUser":26.9320765909765,"loadSystem":12.101637939557722,"loadNice":0,"loadIdle":60.24783310813038,"loadIrq":0.7184523613353987,"rawLoad":12062,"rawLoadUser":8172,"rawLoadSystem":3672,"rawLoadNice":0,"rawLoadIdle":18281,"rawLoadIrq":218}]}', '{"ESTABLISHED":29,"CLOSE":0,"TIME_WAIT":19,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":43,"SYN_SENT":2,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":260133276,"rx_dropped":0,"rx_errors":0,"tx_bytes":27334254,"tx_dropped":0,"tx_errors":0,"rx_sec":3901.1838936191866,"tx_sec":877.7774008616303,"ms":29479}]', '{"total":10685313024,"free":4956938240,"used":5728374784,"active":5728374784,"available":4956938240,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (351, '2022-03-30 01:47:32', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55534944256,"available":71741206528,"use":43.63,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":36.55084518379393,"currentLoadUser":21.629326536088005,"currentLoadSystem":14.384055540649316,"currentLoadNice":0,"currentLoadIdle":63.44915481620607,"currentLoadIrq":0.5374631070566139,"rawCurrentLoad":43592,"rawCurrentLoadUser":25796,"rawCurrentLoadSystem":17155,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":75672,"rawCurrentLoadIrq":641,"cpus":[{"load":38.71527198745956,"loadUser":20.478271020244808,"loadSystem":17.143047727045328,"loadNice":0,"loadIdle":61.284728012540434,"loadIrq":1.0939532401694294,"rawLoad":11608,"rawLoadUser":6140,"rawLoadSystem":5140,"rawLoadNice":0,"rawLoadIdle":18375,"rawLoadIrq":328},{"load":34.65102955548816,"loadUser":21.538098608162304,"loadSystem":13.059009874296498,"loadNice":0,"loadIdle":65.34897044451185,"loadIrq":0.053921073029353284,"rawLoad":10282,"rawLoadUser":6391,"rawLoadSystem":3875,"rawLoadNice":0,"rawLoadIdle":19391,"rawLoadIrq":16},{"load":35.83844236340362,"loadUser":21.62972444923533,"loadSystem":14.104291585259043,"loadNice":0,"loadIdle":64.16155763659638,"loadIrq":0.10442632890925016,"rawLoad":10639,"rawLoadUser":6421,"rawLoadSystem":4187,"rawLoadNice":0,"rawLoadIdle":19047,"rawLoadIrq":31},{"load":36.972795936100525,"loadUser":22.872802620145713,"loadSystem":13.211015306463473,"loadNice":0,"loadIdle":63.02720406389947,"loadIrq":0.8889780094913442,"rawLoad":11063,"rawLoadUser":6844,"rawLoadSystem":3953,"rawLoadNice":0,"rawLoadIdle":18859,"rawLoadIrq":266}]}', '{"ESTABLISHED":27,"CLOSE":0,"TIME_WAIT":21,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":35,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":260201816,"rx_dropped":0,"rx_errors":0,"tx_bytes":27350645,"tx_dropped":0,"tx_errors":0,"rx_sec":2411.088050093221,"tx_sec":576.599711541844,"ms":28427}]', '{"total":10685313024,"free":4994981888,"used":5690331136,"active":5690331136,"available":4994981888,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (352, '2022-03-30 01:48:03', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55539089408,"available":71737061376,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":40.89057498127834,"currentLoadUser":24.66321584634249,"currentLoadSystem":15.494128393558103,"currentLoadNice":0,"currentLoadIdle":59.10942501872166,"currentLoadIrq":0.7332307413777497,"rawCurrentLoad":49689,"rawCurrentLoadUser":29970,"rawCurrentLoadSystem":18828,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":71828,"rawCurrentLoadIrq":891,"cpus":[{"load":44.62023260346956,"loadUser":23.045935936586318,"loadSystem":19.54388928594633,"loadNice":0,"loadIdle":55.37976739653045,"loadIrq":2.030407380936911,"rawLoad":13735,"rawLoadUser":7094,"rawLoadSystem":6016,"rawLoadNice":0,"rawLoadIdle":17047,"rawLoadIrq":625},{"load":38.60056375393799,"loadUser":24.354170121041285,"loadSystem":14.2463936328967,"loadNice":0,"loadIdle":61.39943624606201,"loadIrq":0,"rawLoad":11640,"rawLoadUser":7344,"rawLoadSystem":4296,"rawLoadNice":0,"rawLoadIdle":18515,"rawLoadIrq":0},{"load":40.20836778567885,"loadUser":25.0140565569704,"loadSystem":14.936332065487019,"loadNice":0,"loadIdle":59.791632214321154,"loadIrq":0.2579791632214321,"rawLoad":12157,"rawLoadUser":7563,"rawLoadSystem":4516,"rawLoadNice":0,"rawLoadIdle":18078,"rawLoadIrq":78},{"load":40.062613280606364,"loadUser":26.261328060636018,"loadSystem":13.181743285549514,"loadNice":0,"loadIdle":59.937386719393636,"loadIrq":0.6195419344208272,"rawLoad":12157,"rawLoadUser":7969,"rawLoadSystem":4000,"rawLoadNice":0,"rawLoadIdle":18188,"rawLoadIrq":188}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":19,"LISTEN":32,"CLOSE_WAIT":3,"UNKNOWN":35,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":2}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":260285761,"rx_dropped":0,"rx_errors":0,"tx_bytes":27362519,"tx_dropped":0,"tx_errors":0,"rx_sec":2706.0700815576542,"tx_sec":382.772960252732,"ms":31021}]', '{"total":10685313024,"free":4990267392,"used":5695045632,"active":5695045632,"available":4990267392,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (353, '2022-03-30 01:48:34', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55539548160,"available":71736602624,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":39.688134585857924,"currentLoadUser":23.642502187515475,"currentLoadSystem":15.516501295999735,"currentLoadNice":0,"currentLoadIdle":60.31186541414208,"currentLoadIrq":0.5291311023427053,"rawCurrentLoad":48079,"rawCurrentLoadUser":28641,"rawCurrentLoadSystem":18797,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":73063,"rawCurrentLoadIrq":641,"cpus":[{"load":40.92356165282746,"loadUser":22.1536643801897,"loadSystem":17.640880895336245,"loadNice":0,"loadIdle":59.076438347172534,"loadIrq":1.1290163773015196,"rawLoad":12469,"rawLoadUser":6750,"rawLoadSystem":5375,"rawLoadNice":0,"rawLoadIdle":18000,"rawLoadIrq":344},{"load":37.597772769455126,"loadUser":22.215961818904944,"loadSystem":15.226037385655575,"loadNice":0,"loadIdle":62.402227230544874,"loadIrq":0.15577356489460428,"rawLoad":11344,"rawLoadUser":6703,"rawLoadSystem":4594,"rawLoadNice":0,"rawLoadIdle":18828,"rawLoadIrq":47},{"load":40.54949789546946,"loadUser":25.323965134391674,"loadSystem":15.069764358863885,"loadNice":0,"loadIdle":59.45050210453054,"loadIrq":0.15576840221389984,"rawLoad":12235,"rawLoadUser":7641,"rawLoadSystem":4547,"rawLoadNice":0,"rawLoadIdle":17938,"rawLoadIrq":47},{"load":39.66961223951464,"loadUser":24.88459509364284,"loadSystem":14.115668689000263,"loadNice":0,"loadIdle":60.33038776048536,"loadIrq":0.6693484568715378,"rawLoad":12031,"rawLoadUser":7547,"rawLoadSystem":4281,"rawLoadNice":0,"rawLoadIdle":18297,"rawLoadIrq":203}]}', '{"ESTABLISHED":29,"CLOSE":0,"TIME_WAIT":23,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":35,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":260389729,"rx_dropped":0,"rx_errors":0,"tx_bytes":27387990,"tx_dropped":0,"tx_errors":0,"rx_sec":3406.776328724032,"tx_sec":834.6221901828429,"ms":30518}]', '{"total":10685313024,"free":4947877888,"used":5737435136,"active":5737435136,"available":4947877888,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (354, '2022-03-30 01:49:04', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55539892224,"available":71736258560,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":38.33021131157777,"currentLoadUser":22.926320286568732,"currentLoadSystem":14.915869729534325,"currentLoadNice":0,"currentLoadIdle":61.66978868842223,"currentLoadIrq":0.4880212954747116,"rawCurrentLoad":46654,"rawCurrentLoadUser":27905,"rawCurrentLoadSystem":18155,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":75062,"rawCurrentLoadIrq":594,"cpus":[{"load":39.65292275574113,"loadUser":21.662969728601254,"loadSystem":16.76670146137787,"loadNice":0,"loadIdle":60.34707724425887,"loadIrq":1.2232515657620042,"rawLoad":12156,"rawLoadUser":6641,"rawLoadSystem":5140,"rawLoadNice":0,"rawLoadIdle":18500,"rawLoadIrq":375},{"load":36.6174868798891,"loadUser":22.124302736244513,"loadSystem":14.440373634353238,"loadNice":0,"loadIdle":63.38251312011091,"loadIrq":0.05281050929134898,"rawLoad":11094,"rawLoadUser":6703,"rawLoadSystem":4375,"rawLoadNice":0,"rawLoadIdle":19203,"rawLoadIrq":16},{"load":38.26957266082834,"loadUser":22.940672943965236,"loadSystem":15.019424507802725,"loadNice":0,"loadIdle":61.730427339171655,"loadIrq":0.30947520906038056,"rawLoad":11624,"rawLoadUser":6968,"rawLoadSystem":4562,"rawLoadNice":0,"rawLoadIdle":18750,"rawLoadIrq":94},{"load":38.76402645694166,"loadUser":24.98601467636316,"loadSystem":13.419329362598308,"loadNice":0,"loadIdle":61.23597354305834,"loadIrq":0.3586824179801902,"rawLoad":11780,"rawLoadUser":7593,"rawLoadSystem":4078,"rawLoadNice":0,"rawLoadIdle":18609,"rawLoadIrq":109}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":28,"LISTEN":32,"CLOSE_WAIT":4,"UNKNOWN":38,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":3}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":260518057,"rx_dropped":0,"rx_errors":0,"tx_bytes":27413025,"tx_dropped":0,"tx_errors":0,"rx_sec":4170.555736106598,"tx_sec":813.6171595710107,"ms":30770}]', '{"total":10685313024,"free":4942159872,"used":5743153152,"active":5743153152,"available":4942159872,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (355, '2022-03-30 01:49:32', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55540154368,"available":71735996416,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":40.29363103096746,"currentLoadUser":22.144325417383893,"currentLoadSystem":17.3797148921236,"currentLoadNice":0,"currentLoadIdle":59.70636896903254,"currentLoadIrq":0.7695907214599663,"rawCurrentLoad":48221,"rawCurrentLoadUser":26501,"rawCurrentLoadSystem":20799,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":71453,"rawCurrentLoadIrq":921,"cpus":[{"load":44.50855551134102,"loadUser":21.14007162753681,"loadSystem":21.816553919617988,"loadNice":0,"loadIdle":55.49144448865897,"loadIrq":1.5519299641862316,"rawLoad":13422,"rawLoadUser":6375,"rawLoadSystem":6579,"rawLoadNice":0,"rawLoadIdle":16734,"rawLoadIrq":468},{"load":36.79267433669875,"loadUser":21.279307684567137,"loadSystem":15.094086472344278,"loadNice":0,"loadIdle":63.20732566330124,"loadIrq":0.4192801797873411,"rawLoad":10969,"rawLoadUser":6344,"rawLoadSystem":4500,"rawLoadNice":0,"rawLoadIdle":18844,"rawLoadIrq":125},{"load":40.81008403361345,"loadUser":22.58487394957983,"loadSystem":18.016806722689076,"loadNice":0,"loadIdle":59.18991596638655,"loadIrq":0.20840336134453782,"rawLoad":12141,"rawLoadUser":6719,"rawLoadSystem":5360,"rawLoadNice":0,"rawLoadIdle":17609,"rawLoadIrq":62},{"load":39.02186613253213,"loadUser":23.578701385411453,"loadSystem":14.555166082457019,"loadNice":0,"loadIdle":60.97813386746787,"loadIrq":0.8879986646636622,"rawLoad":11689,"rawLoadUser":7063,"rawLoadSystem":4360,"rawLoadNice":0,"rawLoadIdle":18266,"rawLoadIrq":266}]}', '{"ESTABLISHED":31,"CLOSE":0,"TIME_WAIT":32,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":260691751,"rx_dropped":0,"rx_errors":0,"tx_bytes":27454601,"tx_dropped":0,"tx_errors":0,"rx_sec":6171.617396247869,"tx_sec":1477.259806708357,"ms":28144}]', '{"total":10685313024,"free":4938874880,"used":5746438144,"active":5746438144,"available":4938874880,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (356, '2022-03-30 01:50:01', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55540658176,"available":71735492608,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":33.5927074993328,"currentLoadUser":20.276220976781424,"currentLoadSystem":12.821924206031493,"currentLoadNice":0,"currentLoadIdle":66.4072925006672,"currentLoadIrq":0.4945623165198826,"rawCurrentLoad":40279,"rawCurrentLoadUser":24312,"rawCurrentLoadSystem":15374,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":79625,"rawCurrentLoadIrq":593,"cpus":[{"load":34.42214394895993,"loadUser":18.691433508340534,"loadSystem":14.846813318269422,"loadNice":0,"loadIdle":65.57785605104007,"loadIrq":0.8838971223499701,"rawLoad":10359,"rawLoadUser":5625,"rawLoadSystem":4468,"rawLoadNice":0,"rawLoadIdle":19735,"rawLoadIrq":266},{"load":31.69311106647921,"loadUser":20.291892615652408,"loadSystem":11.247238401285399,"loadNice":0,"loadIdle":68.30688893352078,"loadIrq":0.15398004954140723,"rawLoad":9468,"rawLoadUser":6062,"rawLoadSystem":3360,"rawLoadNice":0,"rawLoadIdle":20406,"rawLoadIrq":46},{"load":33.87307216218929,"loadUser":20.594827874611088,"loadSystem":13.06747850523569,"loadNice":0,"loadIdle":66.12692783781071,"loadIrq":0.21076578234251112,"rawLoad":10125,"rawLoadUser":6156,"rawLoadSystem":3906,"rawLoadNice":0,"rawLoadIdle":19766,"rawLoadIrq":63},{"load":34.371775669828594,"loadUser":21.531036778166087,"loadSystem":12.115160592444667,"loadNice":0,"loadIdle":65.62822433017142,"loadIrq":0.7255782992178399,"rawLoad":10327,"rawLoadUser":6469,"rawLoadSystem":3640,"rawLoadNice":0,"rawLoadIdle":19718,"rawLoadIrq":218}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":39,"LISTEN":32,"CLOSE_WAIT":4,"UNKNOWN":38,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":3}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":260786181,"rx_dropped":0,"rx_errors":0,"tx_bytes":27474077,"tx_dropped":0,"tx_errors":0,"rx_sec":3202.8626666214427,"tx_sec":660.5840653936167,"ms":29483}]', '{"total":10685313024,"free":4967391232,"used":5717921792,"active":5717921792,"available":4967391232,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (357, '2022-03-30 01:50:32', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55540899840,"available":71735250944,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":32.065217391304344,"currentLoadUser":19.055500658761527,"currentLoadSystem":12.596343873517787,"currentLoadNice":0,"currentLoadIdle":67.93478260869566,"currentLoadIrq":0.4133728590250329,"rawCurrentLoad":38940,"rawCurrentLoadUser":23141,"rawCurrentLoadSystem":15297,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":82500,"rawCurrentLoadIrq":502,"cpus":[{"load":34.84972364849397,"loadUser":18.95542401151192,"loadSystem":14.769271020701835,"loadNice":0,"loadIdle":65.15027635150604,"loadIrq":1.1250286162802108,"rawLoad":10656,"rawLoadUser":5796,"rawLoadSystem":4516,"rawLoadNice":0,"rawLoadIdle":19921,"rawLoadIrq":344},{"load":28.552548980738095,"loadUser":18.12204711401857,"loadSystem":10.324776158852876,"loadNice":0,"loadIdle":71.4474510192619,"loadIrq":0.10572570786665345,"rawLoad":8642,"rawLoadUser":5485,"rawLoadSystem":3125,"rawLoadNice":0,"rawLoadIdle":21625,"rawLoadIrq":32},{"load":32.81817581401493,"loadUser":19.093851132686083,"loadSystem":13.569116967175221,"loadNice":0,"loadIdle":67.18182418598508,"loadIrq":0.1552077141536226,"rawLoad":9938,"rawLoadUser":5782,"rawLoadSystem":4109,"rawLoadNice":0,"rawLoadIdle":20344,"rawLoadIrq":47},{"load":32.01161179652966,"loadUser":20.05014184865079,"loadSystem":11.70086428712806,"loadNice":0,"loadIdle":67.98838820347034,"loadIrq":0.2606056607508082,"rawLoad":9704,"rawLoadUser":6078,"rawLoadSystem":3547,"rawLoadNice":0,"rawLoadIdle":20610,"rawLoadIrq":79}]}', '{"ESTABLISHED":27,"CLOSE":0,"TIME_WAIT":36,"LISTEN":32,"CLOSE_WAIT":3,"UNKNOWN":34,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":260915422,"rx_dropped":0,"rx_errors":0,"tx_bytes":27493166,"tx_dropped":0,"tx_errors":0,"rx_sec":4240.051179423247,"tx_sec":626.2589810045602,"ms":30481}]', '{"total":10685313024,"free":4903890944,"used":5781422080,"active":5781422080,"available":4903890944,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (358, '2022-03-30 01:51:03', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55541796864,"available":71734353920,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":34.23217474010913,"currentLoadUser":19.136811894074654,"currentLoadSystem":14.482971516294283,"currentLoadNice":0,"currentLoadIdle":65.76782525989087,"currentLoadIrq":0.6123913297401926,"rawCurrentLoad":41030,"rawCurrentLoadUser":22937,"rawCurrentLoadSystem":17359,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":78828,"rawCurrentLoadIrq":734,"cpus":[{"load":36.93881605085419,"loadUser":18.159846377963184,"loadSystem":17.381803734604688,"loadNice":0,"loadIdle":63.06118394914581,"loadIrq":1.3971659382863197,"rawLoad":11157,"rawLoadUser":5485,"rawLoadSystem":5250,"rawLoadNice":0,"rawLoadIdle":19047,"rawLoadIrq":422},{"load":32.28230242855226,"loadUser":18.71058634107071,"loadSystem":13.467731114987252,"loadNice":0,"loadIdle":67.71769757144774,"loadIrq":0.10398497249429758,"rawLoad":9624,"rawLoadUser":5578,"rawLoadSystem":4015,"rawLoadNice":0,"rawLoadIdle":20188,"rawLoadIrq":31},{"load":34.795693171938744,"loadUser":19.59138634387748,"loadSystem":14.786330502240352,"loadNice":0,"loadIdle":65.20430682806125,"loadIrq":0.41797632582090555,"rawLoad":10406,"rawLoadUser":5859,"rawLoadSystem":4422,"rawLoadNice":0,"rawLoadIdle":19500,"rawLoadIrq":125},{"load":32.88014430785676,"loadUser":20.09286477819348,"loadSystem":12.266167824692678,"loadNice":0,"loadIdle":67.11985569214323,"loadIrq":0.521111704970604,"rawLoad":9843,"rawLoadUser":6015,"rawLoadSystem":3672,"rawLoadNice":0,"rawLoadIdle":20093,"rawLoadIrq":156}]}', '{"ESTABLISHED":29,"CLOSE":0,"TIME_WAIT":28,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":39,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":261039952,"rx_dropped":0,"rx_errors":0,"tx_bytes":27518821,"tx_dropped":0,"tx_errors":0,"rx_sec":4052.5236747046765,"tx_sec":834.879104429041,"ms":30729}]', '{"total":10685313024,"free":4938612736,"used":5746700288,"active":5746700288,"available":4938612736,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (359, '2022-03-30 01:51:33', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55537881088,"available":71738269696,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":39.79751608804361,"currentLoadUser":23.825060458253063,"currentLoadSystem":15.47403369266713,"currentLoadNice":0,"currentLoadIdle":60.202483911956385,"currentLoadIrq":0.4984219371234168,"rawCurrentLoad":48547,"rawCurrentLoadUser":29063,"rawCurrentLoadSystem":18876,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":73438,"rawCurrentLoadIrq":608,"cpus":[{"load":42.11400110680687,"loadUser":21.20837266838113,"loadSystem":19.684885575702335,"loadNice":0,"loadIdle":57.88599889319313,"loadIrq":1.220742862723396,"rawLoad":12937,"rawLoadUser":6515,"rawLoadSystem":6047,"rawLoadNice":0,"rawLoadIdle":17782,"rawLoadIrq":375},{"load":36.72757201646091,"loadUser":23.456790123456788,"loadSystem":13.168724279835391,"loadNice":0,"loadIdle":63.27242798353909,"loadIrq":0.10205761316872428,"rawLoad":11156,"rawLoadUser":7125,"rawLoadSystem":4000,"rawLoadNice":0,"rawLoadIdle":19219,"rawLoadIrq":31},{"load":40.597250542656056,"loadUser":24.564230743932118,"loadSystem":15.829112675129908,"loadNice":0,"loadIdle":59.40274945734395,"loadIrq":0.20390712359402752,"rawLoad":12344,"rawLoadUser":7469,"rawLoadSystem":4813,"rawLoadNice":0,"rawLoadIdle":18062,"rawLoadIrq":62},{"load":39.724454649827784,"loadUser":26.091520419878627,"loadSystem":13.173691979662127,"loadNice":0,"loadIdle":60.27554535017221,"loadIrq":0.4592422502870264,"rawLoad":12110,"rawLoadUser":7954,"rawLoadSystem":4016,"rawLoadNice":0,"rawLoadIdle":18375,"rawLoadIrq":140}]}', '{"ESTABLISHED":23,"CLOSE":0,"TIME_WAIT":24,"LISTEN":32,"CLOSE_WAIT":4,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":1,"FIN_WAIT2":3}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":261078756,"rx_dropped":0,"rx_errors":0,"tx_bytes":27533579,"tx_dropped":0,"tx_errors":0,"rx_sec":1283.83788254756,"tx_sec":488.27129859387924,"ms":30225}]', '{"total":10685313024,"free":4984414208,"used":5700898816,"active":5700898816,"available":4984414208,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (360, '2022-03-30 01:52:03', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55538208768,"available":71737942016,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":33.81981921772401,"currentLoadUser":19.435765484285977,"currentLoadSystem":13.587909976441495,"currentLoadNice":0,"currentLoadIdle":66.18018078227598,"currentLoadIrq":0.7961437569965414,"rawCurrentLoad":40483,"rawCurrentLoadUser":23265,"rawCurrentLoadSystem":16265,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":79219,"rawCurrentLoadIrq":953,"cpus":[{"load":37.254383937122284,"loadUser":17.545655691687855,"loadSystem":17.750404544103564,"loadNice":0,"loadIdle":62.74561606287771,"loadIrq":1.9583237013308676,"rawLoad":11281,"rawLoadUser":5313,"rawLoadSystem":5375,"rawLoadNice":0,"rawLoadIdle":19000,"rawLoadIrq":593},{"load":30.651457029409784,"loadUser":18.453462547950735,"loadSystem":12.093680597617604,"loadNice":0,"loadIdle":69.34854297059022,"loadIrq":0.10431388384144288,"rawLoad":9109,"rawLoadUser":5484,"rawLoadSystem":3594,"rawLoadNice":0,"rawLoadIdle":20609,"rawLoadIrq":31},{"load":32.42079773996099,"loadUser":19.54664693616735,"loadSystem":12.716082599044864,"loadNice":0,"loadIdle":67.57920226003901,"loadIrq":0.15806820474877245,"rawLoad":9640,"rawLoadUser":5812,"rawLoadSystem":3781,"rawLoadNice":0,"rawLoadIdle":20094,"rawLoadIrq":47},{"load":34.87937535453302,"loadUser":22.20961660382395,"loadSystem":11.72878641262638,"loadNice":0,"loadIdle":65.12062464546699,"loadIrq":0.9409723380826854,"rawLoad":10453,"rawLoadUser":6656,"rawLoadSystem":3515,"rawLoadNice":0,"rawLoadIdle":19516,"rawLoadIrq":282}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":14,"LISTEN":32,"CLOSE_WAIT":5,"UNKNOWN":30,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":3}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":261108834,"rx_dropped":0,"rx_errors":0,"tx_bytes":27542086,"tx_dropped":0,"tx_errors":0,"rx_sec":1029.6453512255237,"tx_sec":291.21593865534714,"ms":29212}]', '{"total":10685313024,"free":4945735680,"used":5739544576,"active":5739544576,"available":4945768448,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":62914560,"swapfree":4492099584}'), (361, '2022-03-30 01:52:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55538634752,"available":71737516032,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":36.88417212503109,"currentLoadUser":21.23372854655501,"currentLoadSystem":15.092446729126937,"currentLoadNice":0,"currentLoadIdle":63.11582787496891,"currentLoadIrq":0.5579968493491418,"rawCurrentLoad":44486,"rawCurrentLoadUser":25610,"rawCurrentLoadSystem":18203,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":76124,"rawCurrentLoadIrq":673,"cpus":[{"load":39.043469650460445,"loadUser":19.133907647621875,"loadSystem":18.87645641482655,"loadNice":0,"loadIdle":60.95653034953956,"loadIrq":1.0331055880120144,"rawLoad":11829,"rawLoadUser":5797,"rawLoadSystem":5719,"rawLoadNice":0,"rawLoadIdle":18468,"rawLoadIrq":313},{"load":35.18943551874397,"loadUser":21.933938728669794,"loadSystem":12.992715297874463,"loadNice":0,"loadIdle":64.81056448125602,"loadIrq":0.2627814921997139,"rawLoad":10579,"rawLoadUser":6594,"rawLoadSystem":3906,"rawLoadNice":0,"rawLoadIdle":19484,"rawLoadIrq":79},{"load":37.1570906675523,"loadUser":21.79674526735304,"loadSystem":14.945200929923613,"loadNice":0,"loadIdle":62.8429093324477,"loadIrq":0.41514447027565593,"rawLoad":11188,"rawLoadUser":6563,"rawLoadSystem":4500,"rawLoadNice":0,"rawLoadIdle":18922,"rawLoadIrq":125},{"load":36.13138686131387,"loadUser":22.0836098208361,"loadSystem":13.530192435301924,"loadNice":0,"loadIdle":63.868613138686136,"loadIrq":0.517584605175846,"rawLoad":10890,"rawLoadUser":6656,"rawLoadSystem":4078,"rawLoadNice":0,"rawLoadIdle":19250,"rawLoadIrq":156}]}', '{"ESTABLISHED":24,"CLOSE":0,"TIME_WAIT":21,"LISTEN":32,"CLOSE_WAIT":4,"UNKNOWN":34,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":3}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":261214371,"rx_dropped":0,"rx_errors":0,"tx_bytes":27571179,"tx_dropped":0,"tx_errors":0,"rx_sec":3632.818147395959,"tx_sec":1001.4457333654608,"ms":29051}]', '{"total":10685313024,"free":5084528640,"used":5600784384,"active":5600784384,"available":5084528640,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":66060288,"swapfree":4488953856}'), (362, '2022-03-30 01:53:02', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55540858880,"available":71735291904,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":55.237247043689074,"currentLoadUser":34.91827882506226,"currentLoadSystem":19.585044447742977,"currentLoadNice":0,"currentLoadIdle":44.76275295631092,"currentLoadIrq":0.7339237708838421,"rawCurrentLoad":66984,"rawCurrentLoadUser":42344,"rawCurrentLoadSystem":23750,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":54282,"rawCurrentLoadIrq":890,"cpus":[{"load":58.090757620307755,"loadUser":32.97722891959881,"loadSystem":23.427750008167532,"loadNice":0,"loadIdle":41.909242379692245,"loadIrq":1.685778692541409,"rawLoad":17781,"rawLoadUser":10094,"rawLoadSystem":7171,"rawLoadNice":0,"rawLoadIdle":12828,"rawLoadIrq":516},{"load":52.97311614355714,"loadUser":33.7802940007946,"loadSystem":18.831942789034564,"loadNice":0,"loadIdle":47.02688385644285,"loadIrq":0.360879353727983,"rawLoad":16000,"rawLoadUser":10203,"rawLoadSystem":5688,"rawLoadNice":0,"rawLoadIdle":14204,"rawLoadIrq":109},{"load":55.1007556675063,"loadUser":36.043351451677054,"loadSystem":18.798886384727563,"loadNice":0,"loadIdle":44.8992443324937,"loadIrq":0.2585178311016837,"rawLoad":16625,"rawLoadUser":10875,"rawLoadSystem":5672,"rawLoadNice":0,"rawLoadIdle":13547,"rawLoadIrq":78},{"load":54.74720121528351,"loadUser":36.8944222449721,"loadSystem":17.23523001221888,"loadNice":0,"loadIdle":45.25279878471649,"loadIrq":0.6175489580925332,"rawLoad":16578,"rawLoadUser":11172,"rawLoadSystem":5219,"rawLoadNice":0,"rawLoadIdle":13703,"rawLoadIrq":187}]}', '{"ESTABLISHED":103,"CLOSE":0,"TIME_WAIT":26,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":86,"SYN_SENT":2,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":264455065,"rx_dropped":0,"rx_errors":0,"tx_bytes":28366059,"tx_dropped":0,"tx_errors":0,"rx_sec":104602.62741680384,"tx_sec":25657.015590200444,"ms":30981}]', '{"total":10685313024,"free":4836093952,"used":5849219072,"active":5849219072,"available":4836093952,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":66060288,"swapfree":4488953856}'), (363, '2022-03-30 01:53:34', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55542034432,"available":71734116352,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":42.92174256838568,"currentLoadUser":25.18553295938455,"currentLoadSystem":16.937244145724712,"currentLoadNice":0,"currentLoadIdle":57.07825743161432,"currentLoadIrq":0.7989654632764174,"rawCurrentLoad":52110,"rawCurrentLoadUser":30577,"rawCurrentLoadSystem":20563,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":69297,"rawCurrentLoadIrq":970,"cpus":[{"load":45.401059031182584,"loadUser":23.746486239131855,"loadSystem":20.072563247695626,"loadNice":0,"loadIdle":54.59894096881741,"loadIrq":1.582009544355102,"rawLoad":13890,"rawLoadUser":7265,"rawLoadSystem":6141,"rawLoadNice":0,"rawLoadIdle":16704,"rawLoadIrq":484},{"load":39.93974108532265,"loadUser":24.573717842598416,"loadSystem":15.054795881203853,"loadNice":0,"loadIdle":60.06025891467735,"loadIrq":0.3112273615203788,"rawLoad":12063,"rawLoadUser":7422,"rawLoadSystem":4547,"rawLoadNice":0,"rawLoadIdle":18140,"rawLoadIrq":94},{"load":42.865179694221986,"loadUser":25.59401681117215,"loadSystem":16.907141438877492,"loadNice":0,"loadIdle":57.134820305778014,"loadIrq":0.3640214441723476,"rawLoad":12953,"rawLoadUser":7734,"rawLoadSystem":5109,"rawLoadNice":0,"rawLoadIdle":17265,"rawLoadIrq":110},{"load":43.445643590418534,"loadUser":26.836009476177942,"loadSystem":15.681758357462492,"loadNice":0,"loadIdle":56.554356409581466,"loadIrq":0.9278757567780994,"rawLoad":13204,"rawLoadUser":8156,"rawLoadSystem":4766,"rawLoadNice":0,"rawLoadIdle":17188,"rawLoadIrq":282}]}', '{"ESTABLISHED":108,"CLOSE":0,"TIME_WAIT":26,"LISTEN":32,"CLOSE_WAIT":3,"UNKNOWN":39,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":264873547,"rx_dropped":0,"rx_errors":0,"tx_bytes":28678294,"tx_dropped":0,"tx_errors":0,"rx_sec":13521.664674141328,"tx_sec":10088.694303531616,"ms":30949}]', '{"total":10685313024,"free":4776685568,"used":5908627456,"active":5908627456,"available":4776685568,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":66060288,"swapfree":4488953856}'), (364, '2022-03-30 01:54:03', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55544832000,"available":71731318784,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":35.41483921153241,"currentLoadUser":20.1709670478807,"currentLoadSystem":14.649707883020804,"currentLoadNice":0,"currentLoadIdle":64.58516078846759,"currentLoadIrq":0.5941642806309065,"rawCurrentLoad":42796,"rawCurrentLoadUser":24375,"rawCurrentLoadSystem":17703,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":78046,"rawCurrentLoadIrq":718,"cpus":[{"load":37.65573770491804,"loadUser":18.0327868852459,"loadSystem":18.085245901639343,"loadNice":0,"loadIdle":62.34426229508196,"loadIrq":1.5377049180327869,"rawLoad":11485,"rawLoadUser":5500,"rawLoadSystem":5516,"rawLoadNice":0,"rawLoadIdle":19015,"rawLoadIrq":469},{"load":32.15413771320278,"loadUser":19.376932539814476,"loadSystem":12.620939588389799,"loadNice":0,"loadIdle":67.84586228679721,"loadIrq":0.15626558499850382,"rawLoad":9671,"rawLoadUser":5828,"rawLoadSystem":3796,"rawLoadNice":0,"rawLoadIdle":20406,"rawLoadIrq":47},{"load":36.56431535269709,"loadUser":20.175933609958506,"loadSystem":16.07966804979253,"loadNice":0,"loadIdle":63.43568464730291,"loadIrq":0.3087136929460581,"rawLoad":11015,"rawLoadUser":6078,"rawLoadSystem":4844,"rawLoadNice":0,"rawLoadIdle":19110,"rawLoadIrq":93},{"load":35.252156602521566,"loadUser":23.12209688122097,"loadSystem":11.768414067684141,"loadNice":0,"loadIdle":64.74784339747843,"loadIrq":0.36164565361645656,"rawLoad":10625,"rawLoadUser":6969,"rawLoadSystem":3547,"rawLoadNice":0,"rawLoadIdle":19515,"rawLoadIrq":109}]}', '{"ESTABLISHED":97,"CLOSE":0,"TIME_WAIT":31,"LISTEN":32,"CLOSE_WAIT":7,"UNKNOWN":35,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":3}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":264957224,"rx_dropped":0,"rx_errors":0,"tx_bytes":28706869,"tx_dropped":0,"tx_errors":0,"rx_sec":2817.028009695664,"tx_sec":961.9916509561002,"ms":29704}]', '{"total":10685313024,"free":4823154688,"used":5862158336,"active":5862158336,"available":4823154688,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":66060288,"swapfree":4488953856}'), (365, '2022-03-30 01:54:32', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55545552896,"available":71730597888,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":30.02958085433518,"currentLoadUser":17.05244334514339,"currentLoadSystem":12.572698709806806,"currentLoadNice":0,"currentLoadIdle":69.97041914566482,"currentLoadIrq":0.40443879938498567,"rawCurrentLoad":35937,"rawCurrentLoadUser":20407,"rawCurrentLoadSystem":15046,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":83735,"rawCurrentLoadIrq":484,"cpus":[{"load":32.38126868150116,"loadUser":16.555961474593158,"loadSystem":14.789106609099967,"loadNice":0,"loadIdle":67.61873131849883,"loadIrq":1.0362005978080373,"rawLoad":9750,"rawLoadUser":4985,"rawLoadSystem":4453,"rawLoadNice":0,"rawLoadIdle":20360,"rawLoadIrq":312},{"load":27.081936435563897,"loadUser":15.663135309105538,"loadSystem":11.3148719324125,"loadNice":0,"loadIdle":72.9180635644361,"loadIrq":0.10392919404586295,"rawLoad":8078,"rawLoadUser":4672,"rawLoadSystem":3375,"rawLoadNice":0,"rawLoadIdle":21750,"rawLoadIrq":31},{"load":31.09709031110515,"loadUser":18.092425411954224,"loadSystem":13.004664899150923,"loadNice":0,"loadIdle":68.90290968889485,"loadIrq":0,"rawLoad":9266,"rawLoadUser":5391,"rawLoadSystem":3875,"rawLoadNice":0,"rawLoadIdle":20531,"rawLoadIrq":0},{"load":29.53869793232455,"loadUser":17.9009252764138,"loadSystem":11.166783578848916,"loadNice":0,"loadIdle":70.46130206767545,"loadIrq":0.47098907706182985,"rawLoad":8843,"rawLoadUser":5359,"rawLoadSystem":3343,"rawLoadNice":0,"rawLoadIdle":21094,"rawLoadIrq":141}]}', '{"ESTABLISHED":63,"CLOSE":0,"TIME_WAIT":35,"LISTEN":32,"CLOSE_WAIT":6,"UNKNOWN":27,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":265006680,"rx_dropped":0,"rx_errors":0,"tx_bytes":28726160,"tx_dropped":0,"tx_errors":0,"rx_sec":1706.5562456866805,"tx_sec":665.6659765355417,"ms":28980}]', '{"total":10685313024,"free":4871753728,"used":5813559296,"active":5813559296,"available":4871753728,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":66060288,"swapfree":4488953856}'), (366, '2022-03-30 01:55:03', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55546277888,"available":71729872896,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":33.527872978029436,"currentLoadUser":20.126988857431414,"currentLoadSystem":12.844583519594696,"currentLoadNice":0,"currentLoadIdle":66.47212702197056,"currentLoadIrq":0.5563006010033279,"rawCurrentLoad":40501,"rawCurrentLoadUser":24313,"rawCurrentLoadSystem":15516,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":80297,"rawCurrentLoadIrq":672,"cpus":[{"load":34.59933633406709,"loadUser":19.302165127969246,"loadSystem":13.963268390445837,"loadNice":0,"loadIdle":65.40066366593291,"loadIrq":1.3339028156520025,"rawLoad":10531,"rawLoadUser":5875,"rawLoadSystem":4250,"rawLoadNice":0,"rawLoadIdle":19906,"rawLoadIrq":406},{"load":32.05226237574387,"loadUser":18.44143754779082,"loadSystem":13.454569633298979,"loadNice":0,"loadIdle":67.94773762425612,"loadIrq":0.1562551946540776,"rawLoad":9641,"rawLoadUser":5547,"rawLoadSystem":4047,"rawLoadNice":0,"rawLoadIdle":20438,"rawLoadIrq":47},{"load":33.71286307053942,"loadUser":20.434854771784234,"loadSystem":12.96597510373444,"loadNice":0,"loadIdle":66.28713692946057,"loadIrq":0.3120331950207469,"rawLoad":10156,"rawLoadUser":6156,"rawLoadSystem":3906,"rawLoadNice":0,"rawLoadIdle":19969,"rawLoadIrq":94},{"load":33.733461551215306,"loadUser":22.33312332128527,"loadSystem":10.985840766654507,"loadNice":0,"loadIdle":66.2665384487847,"loadIrq":0.4144974632755248,"rawLoad":10173,"rawLoadUser":6735,"rawLoadSystem":3313,"rawLoadNice":0,"rawLoadIdle":19984,"rawLoadIrq":125}]}', '{"ESTABLISHED":64,"CLOSE":0,"TIME_WAIT":32,"LISTEN":32,"CLOSE_WAIT":3,"UNKNOWN":39,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":2}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":265131992,"rx_dropped":0,"rx_errors":0,"tx_bytes":28761751,"tx_dropped":0,"tx_errors":0,"rx_sec":4093.424362199066,"tx_sec":1162.6106556038285,"ms":30613}]', '{"total":10685313024,"free":4855926784,"used":5829386240,"active":5829386240,"available":4855926784,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":66060288,"swapfree":4488953856}'), (367, '2022-03-30 01:55:32', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55546994688,"available":71729156096,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":31.153559293942156,"currentLoadUser":18.152813458191762,"currentLoadSystem":12.443855142123146,"currentLoadNice":0,"currentLoadIdle":68.84644070605785,"currentLoadIrq":0.5568906936272479,"rawCurrentLoad":37593,"rawCurrentLoadUser":21905,"rawCurrentLoadSystem":15016,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":83077,"rawCurrentLoadIrq":672,"cpus":[{"load":34.24152681803225,"loadUser":16.913458374465286,"loadSystem":16.04146100691017,"loadNice":0,"loadIdle":65.75847318196774,"loadIrq":1.286607436656795,"rawLoad":10406,"rawLoadUser":5140,"rawLoadSystem":4875,"rawLoadNice":0,"rawLoadIdle":19984,"rawLoadIrq":391},{"load":29.071121909009218,"loadUser":17.732219522747695,"loadSystem":11.18248078011116,"loadNice":0,"loadIdle":70.92887809099078,"loadIrq":0.1564216061503644,"rawLoad":8735,"rawLoadUser":5328,"rawLoadSystem":3360,"rawLoadNice":0,"rawLoadIdle":21312,"rawLoadIrq":47},{"load":30.473274312720495,"loadUser":18.408440391399854,"loadSystem":11.90840710909938,"loadNice":0,"loadIdle":69.5267256872795,"loadIrq":0.15642681222126073,"rawLoad":9156,"rawLoadUser":5531,"rawLoadSystem":3578,"rawLoadNice":0,"rawLoadIdle":20890,"rawLoadIrq":47},{"load":30.79471295590817,"loadUser":19.5647132871766,"loadSystem":10.610527710603902,"loadNice":0,"loadIdle":69.20528704409182,"loadIrq":0.6194719581276709,"rawLoad":9296,"rawLoadUser":5906,"rawLoadSystem":3203,"rawLoadNice":0,"rawLoadIdle":20891,"rawLoadIrq":187}]}', '{"ESTABLISHED":63,"CLOSE":0,"TIME_WAIT":33,"LISTEN":32,"CLOSE_WAIT":4,"UNKNOWN":32,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":3}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":265249118,"rx_dropped":0,"rx_errors":0,"tx_bytes":28786707,"tx_dropped":0,"tx_errors":0,"rx_sec":4004.9923063771585,"tx_sec":853.3424517011455,"ms":29245}]', '{"total":10685313024,"free":4817866752,"used":5867446272,"active":5867446272,"available":4817866752,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":63963136,"swapfree":4491051008}'), (368, '2022-03-30 01:56:03', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55543504896,"available":71732645888,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":41.24866067749114,"currentLoadUser":24.40451660759911,"currentLoadSystem":16.007582625896315,"currentLoadNice":0,"currentLoadIdle":58.751339322508855,"currentLoadIrq":0.8365614439957142,"rawCurrentLoad":50047,"rawCurrentLoadUser":29610,"rawCurrentLoadSystem":19422,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":71283,"rawCurrentLoadIrq":1015,"cpus":[{"load":44.476801256462274,"loadUser":22.7504744453897,"loadSystem":20.142660820626922,"loadNice":0,"loadIdle":55.523198743537726,"loadIrq":1.5836659904456516,"rawLoad":13593,"rawLoadUser":6953,"rawLoadSystem":6156,"rawLoadNice":0,"rawLoadIdle":16969,"rawLoadIrq":484},{"load":37.53027437709432,"loadUser":24.780199727945323,"loadSystem":12.544374771905378,"loadNice":0,"loadIdle":62.46972562290568,"loadIrq":0.20569987724362165,"rawLoad":11312,"rawLoadUser":7469,"rawLoadSystem":3781,"rawLoadNice":0,"rawLoadIdle":18829,"rawLoadIrq":62},{"load":40.490329429718344,"loadUser":23.016952526291345,"loadSystem":17.2643731546296,"loadNice":0,"loadIdle":59.509670570281656,"loadIrq":0.20900374879739905,"rawLoad":12205,"rawLoadUser":6938,"rawLoadSystem":5204,"rawLoadNice":0,"rawLoadIdle":17938,"rawLoadIrq":63},{"load":42.438656344311774,"loadUser":27.063377509513188,"loadSystem":14.043432620391025,"loadNice":0,"loadIdle":57.56134365568823,"loadIrq":1.331846214407558,"rawLoad":12937,"rawLoadUser":8250,"rawLoadSystem":4281,"rawLoadNice":0,"rawLoadIdle":17547,"rawLoadIrq":406}]}', '{"ESTABLISHED":65,"CLOSE":0,"TIME_WAIT":40,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":34,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":265343399,"rx_dropped":0,"rx_errors":0,"tx_bytes":28819362,"tx_dropped":0,"tx_errors":0,"rx_sec":3044.4652544562127,"tx_sec":1054.4755877034358,"ms":30968}]', '{"total":10685313024,"free":4797431808,"used":5887881216,"active":5887881216,"available":4797431808,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":63963136,"swapfree":4491051008}'), (369, '2022-03-30 01:56:32', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55544815616,"available":71731335168,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":31.6686471169906,"currentLoadUser":18.943353581014268,"currentLoadSystem":12.230873420140764,"currentLoadNice":0,"currentLoadIdle":68.3313528830094,"currentLoadIrq":0.49442011583557,"rawCurrentLoad":38111,"rawCurrentLoadUser":22797,"rawCurrentLoadSystem":14719,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":82232,"rawCurrentLoadIrq":595,"cpus":[{"load":34.129580070704066,"loadUser":19.205735619651765,"loadSystem":13.83685201704827,"loadNice":0,"loadIdle":65.87041992929593,"loadIrq":1.086992434004031,"rawLoad":10330,"rawLoadUser":5813,"rawLoadSystem":4188,"rawLoadNice":0,"rawLoadIdle":19937,"rawLoadIrq":329},{"load":28.588121390177946,"loadUser":17.527459686842718,"loadSystem":11.007244683337229,"loadNice":0,"loadIdle":71.41187860982205,"loadIrq":0.05341701999799686,"rawLoad":8563,"rawLoadUser":5250,"rawLoadSystem":3297,"rawLoadNice":0,"rawLoadIdle":21390,"rawLoadIrq":16},{"load":31.28107585010178,"loadUser":18.820702773050353,"loadSystem":12.3569259518804,"loadNice":0,"loadIdle":68.71892414989821,"loadIrq":0.10344712517102146,"rawLoad":9374,"rawLoadUser":5640,"rawLoadSystem":3703,"rawLoadNice":0,"rawLoadIdle":20593,"rawLoadIrq":31},{"load":32.643586682583894,"loadUser":20.208250431091656,"loadSystem":11.709112614405095,"loadNice":0,"loadIdle":67.35641331741611,"loadIrq":0.7262236370871468,"rawLoad":9844,"rawLoadUser":6094,"rawLoadSystem":3531,"rawLoadNice":0,"rawLoadIdle":20312,"rawLoadIrq":219}]}', '{"ESTABLISHED":61,"CLOSE":0,"TIME_WAIT":25,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":26,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":265376955,"rx_dropped":0,"rx_errors":0,"tx_bytes":28826326,"tx_dropped":0,"tx_errors":0,"rx_sec":1153.1667754905666,"tx_sec":239.3209388638785,"ms":29099}]', '{"total":10685313024,"free":4858318848,"used":5826994176,"active":5826994176,"available":4858318848,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":63963136,"swapfree":4491051008}'), (370, '2022-03-30 01:57:04', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55545798656,"available":71730352128,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":35.94578084498671,"currentLoadUser":21.553104723538443,"currentLoadSystem":13.968366656210273,"currentLoadNice":0,"currentLoadIdle":64.05421915501329,"currentLoadIrq":0.42430946523799307,"rawCurrentLoad":43544,"rawCurrentLoadUser":26109,"rawCurrentLoadSystem":16921,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":77594,"rawCurrentLoadIrq":514,"cpus":[{"load":37.54109138724523,"loadUser":19.362261669953977,"loadSystem":17.307692307692307,"loadNice":0,"loadIdle":62.45890861275477,"loadIrq":0.8711374095989481,"rawLoad":11420,"rawLoadUser":5890,"rawLoadSystem":5265,"rawLoadNice":0,"rawLoadIdle":19000,"rawLoadIrq":265},{"load":33.332229105243975,"loadUser":20.70427667539007,"loadSystem":12.525259217543978,"loadNice":0,"loadIdle":66.66777089475602,"loadIrq":0.10269321230993475,"rawLoad":10062,"rawLoadUser":6250,"rawLoadSystem":3781,"rawLoadNice":0,"rawLoadIdle":20125,"rawLoadIrq":31},{"load":36.716160678775026,"loadUser":22.99482964337797,"loadSystem":13.671616067877501,"loadNice":0,"loadIdle":63.283839321224974,"loadIrq":0.04971496751955455,"rawLoad":11078,"rawLoadUser":6938,"rawLoadSystem":4125,"rawLoadNice":0,"rawLoadIdle":19094,"rawLoadIrq":15},{"load":36.180374847656374,"loadUser":23.159524358509834,"loadSystem":12.35218551335683,"loadNice":0,"loadIdle":63.81962515234362,"loadIrq":0.6686649757897164,"rawLoad":10984,"rawLoadUser":7031,"rawLoadSystem":3750,"rawLoadNice":0,"rawLoadIdle":19375,"rawLoadIrq":203}]}', '{"ESTABLISHED":53,"CLOSE":0,"TIME_WAIT":31,"LISTEN":32,"CLOSE_WAIT":3,"UNKNOWN":31,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":2}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":265500376,"rx_dropped":0,"rx_errors":0,"tx_bytes":28861894,"tx_dropped":0,"tx_errors":0,"rx_sec":3849.9282550377443,"tx_sec":1109.4890510948906,"ms":32058}]', '{"total":10685313024,"free":4804222976,"used":5881090048,"active":5881090048,"available":4804222976,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":63963136,"swapfree":4491051008}'), (371, '2022-03-30 01:57:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55542390784,"available":71733760000,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":29.446411463323198,"currentLoadUser":16.336901736993376,"currentLoadSystem":12.613820968884076,"currentLoadNice":0,"currentLoadIdle":70.5535885366768,"currentLoadIrq":0.495688757445745,"rawCurrentLoad":35346,"rawCurrentLoadUser":19610,"rawCurrentLoadSystem":15141,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":84689,"rawCurrentLoadIrq":595,"cpus":[{"load":32.85402618008727,"loadUser":15.549385164617217,"loadSystem":16.012164484992727,"loadNice":0,"loadIdle":67.14597381991273,"loadIrq":1.2924765304773238,"rawLoad":9939,"rawLoadUser":4704,"rawLoadSystem":4844,"rawLoadNice":0,"rawLoadIdle":20313,"rawLoadIrq":391},{"load":26.202510460251045,"loadUser":15.009205020920502,"loadSystem":11.139748953974896,"loadNice":0,"loadIdle":73.79748953974895,"loadIrq":0.05355648535564853,"rawLoad":7828,"rawLoadUser":4484,"rawLoadSystem":3328,"rawLoadNice":0,"rawLoadIdle":22047,"rawLoadIrq":16},{"load":29.764053204999662,"loadUser":16.813715660717868,"loadSystem":12.739790120981217,"loadNice":0,"loadIdle":70.23594679500033,"loadIrq":0.21054742330058152,"rawLoad":8906,"rawLoadUser":5031,"rawLoadSystem":3812,"rawLoadNice":0,"rawLoadIdle":21016,"rawLoadIrq":63},{"load":28.923497632228372,"loadUser":17.978389915293803,"loadSystem":10.528246515040351,"loadNice":0,"loadIdle":71.07650236777162,"loadIrq":0.41686120189421727,"rawLoad":8673,"rawLoadUser":5391,"rawLoadSystem":3157,"rawLoadNice":0,"rawLoadIdle":21313,"rawLoadIrq":125}]}', '{"ESTABLISHED":50,"CLOSE":0,"TIME_WAIT":38,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":30,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":265534114,"rx_dropped":0,"rx_errors":0,"tx_bytes":28876373,"tx_dropped":0,"tx_errors":0,"rx_sec":1226.524157487185,"tx_sec":526.3751045188498,"ms":27507}]', '{"total":10685313024,"free":4927954944,"used":5757358080,"active":5757358080,"available":4927954944,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":63963136,"swapfree":4491051008}'), (372, '2022-03-30 01:58:02', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55541661696,"available":71734489088,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":18.943770380547235,"currentLoadUser":9.646102660023505,"currentLoadSystem":8.715839306109611,"currentLoadNice":0,"currentLoadIdle":81.05622961945276,"currentLoadIrq":0.5818284144141161,"rawCurrentLoad":22889,"rawCurrentLoadUser":11655,"rawCurrentLoadSystem":10531,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":97937,"rawCurrentLoadIrq":703,"cpus":[{"load":21.590049030899337,"loadUser":9.61203066899207,"loadSystem":10.796669847642239,"loadNice":0,"loadIdle":78.40995096910066,"loadIrq":1.1813485142650302,"rawLoad":6561,"rawLoadUser":2921,"rawLoadSystem":3281,"rawLoadNice":0,"rawLoadIdle":23828,"rawLoadIrq":359},{"load":16.517604814309937,"loadUser":8.727599162150481,"loadSystem":7.637064866841772,"loadNice":0,"loadIdle":83.48239518569007,"loadIrq":0.1529407853176846,"rawLoad":4968,"rawLoadUser":2625,"rawLoadSystem":2297,"rawLoadNice":0,"rawLoadIdle":25109,"rawLoadIrq":46},{"load":18.566959531416398,"loadUser":9.621272630457934,"loadSystem":8.892438764643238,"loadNice":0,"loadIdle":81.4330404685836,"loadIrq":0.05324813631522897,"rawLoad":5579,"rawLoadUser":2891,"rawLoadSystem":2672,"rawLoadNice":0,"rawLoadIdle":24469,"rawLoadIrq":16},{"load":19.071654790182105,"loadUser":10.616257587754024,"loadSystem":7.525072578516759,"loadNice":0,"loadIdle":80.92834520981789,"loadIrq":0.9303246239113222,"rawLoad":5781,"rawLoadUser":3218,"rawLoadSystem":2281,"rawLoadNice":0,"rawLoadIdle":24531,"rawLoadIrq":282}]}', '{"ESTABLISHED":48,"CLOSE":0,"TIME_WAIT":28,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":37,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":265593252,"rx_dropped":0,"rx_errors":0,"tx_bytes":28931546,"tx_dropped":0,"tx_errors":0,"rx_sec":1899.4058133932872,"tx_sec":1772.0571703870241,"ms":31135}]', '{"total":10685313024,"free":5038538752,"used":5646774272,"active":5646774272,"available":5038538752,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":63963136,"swapfree":4491051008}'), (373, '2022-03-30 01:58:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55537201152,"available":71738949632,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":35.620118196470635,"currentLoadUser":20.780262015952392,"currentLoadSystem":14.025705665991653,"currentLoadNice":0,"currentLoadIdle":64.37988180352936,"currentLoadIrq":0.8141505145265941,"rawCurrentLoad":43095,"rawCurrentLoadUser":25141,"rawCurrentLoadSystem":16969,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":77890,"rawCurrentLoadIrq":985,"cpus":[{"load":38.23847793997048,"loadUser":19.73429555519108,"loadSystem":16.91323601771363,"loadNice":0,"loadIdle":61.76152206002953,"loadIrq":1.5909463670657702,"rawLoad":11657,"rawLoadUser":6016,"rawLoadSystem":5156,"rawLoadNice":0,"rawLoadIdle":18828,"rawLoadIrq":485},{"load":32.5210279597061,"loadUser":20.15359553176635,"loadSystem":12.104790717776522,"loadNice":0,"loadIdle":67.4789720402939,"loadIrq":0.2626417101632368,"rawLoad":9782,"rawLoadUser":6062,"rawLoadSystem":3641,"rawLoadNice":0,"rawLoadIdle":20297,"rawLoadIrq":79},{"load":35.238348690994975,"loadUser":21.310002993912377,"loadSystem":13.722098399920164,"loadNice":0,"loadIdle":64.76165130900502,"loadIrq":0.2062472971624364,"rawLoad":10593,"rawLoadUser":6406,"rawLoadSystem":4125,"rawLoadNice":0,"rawLoadIdle":19468,"rawLoadIrq":62},{"load":36.43939393939394,"loadUser":21.926877470355734,"loadSystem":13.330039525691701,"loadNice":0,"loadIdle":63.56060606060606,"loadIrq":1.1824769433465085,"rawLoad":11063,"rawLoadUser":6657,"rawLoadSystem":4047,"rawLoadNice":0,"rawLoadIdle":19297,"rawLoadIrq":359}]}', '{"ESTABLISHED":40,"CLOSE":0,"TIME_WAIT":35,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":32,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":265684788,"rx_dropped":0,"rx_errors":0,"tx_bytes":28965075,"tx_dropped":0,"tx_errors":0,"rx_sec":3171.5057861548057,"tx_sec":1161.70050585545,"ms":28862}]', '{"total":10685313024,"free":5175111680,"used":5510201344,"active":5510201344,"available":5175111680,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":63963136,"swapfree":4491051008}'), (374, '2022-03-30 01:59:03', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55537143808,"available":71739006976,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":25.167010309278346,"currentLoadUser":13.518350515463917,"currentLoadSystem":11.288247422680413,"currentLoadNice":0,"currentLoadIdle":74.83298969072165,"currentLoadIrq":0.36041237113402064,"rawCurrentLoad":30515,"rawCurrentLoadUser":16391,"rawCurrentLoadSystem":13687,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":90735,"rawCurrentLoadIrq":437,"cpus":[{"load":27.679186485156638,"loadUser":12.60948007216664,"loadSystem":14.147941610628179,"loadNice":0,"loadIdle":72.32081351484337,"loadIrq":0.9217648023618173,"rawLoad":8438,"rawLoadUser":3844,"rawLoadSystem":4313,"rawLoadNice":0,"rawLoadIdle":22047,"rawLoadIrq":281},{"load":22.11748362770391,"loadUser":13.02507111199312,"loadSystem":8.989878944234968,"loadNice":0,"loadIdle":77.8825163722961,"loadIrq":0.10253357147582193,"rawLoad":6687,"rawLoadUser":3938,"rawLoadSystem":2718,"rawLoadNice":0,"rawLoadIdle":23547,"rawLoadIrq":31},{"load":26.524007661316958,"loadUser":15.068357440063403,"loadSystem":11.198071461594346,"loadNice":0,"loadIdle":73.47599233868306,"loadIrq":0.25757875965920346,"rawLoad":8032,"rawLoadUser":4563,"rawLoadSystem":3391,"rawLoadNice":0,"rawLoadIdle":22250,"rawLoadIrq":78},{"load":24.324771066812126,"loadUser":13.37564878177791,"loadSystem":10.793745247776785,"loadNice":0,"loadIdle":75.67522893318788,"loadIrq":0.15537703725743002,"rawLoad":7358,"rawLoadUser":4046,"rawLoadSystem":3265,"rawLoadNice":0,"rawLoadIdle":22891,"rawLoadIrq":47}]}', '{"ESTABLISHED":34,"CLOSE":0,"TIME_WAIT":28,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":37,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":265759404,"rx_dropped":0,"rx_errors":0,"tx_bytes":29011913,"tx_dropped":0,"tx_errors":0,"rx_sec":2356.7909033480732,"tx_sec":1479.4061907770056,"ms":31660}]', '{"total":10685313024,"free":5317582848,"used":5367730176,"active":5367730176,"available":5317582848,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":63963136,"swapfree":4491051008}'), (375, '2022-03-30 01:59:32', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55537340416,"available":71738810368,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":23.455406797116375,"currentLoadUser":14.18661174047374,"currentLoadSystem":8.90875386199794,"currentLoadNice":0,"currentLoadIdle":76.54459320288363,"currentLoadIrq":0.3600411946446962,"rawCurrentLoad":28469,"rawCurrentLoadUser":17219,"rawCurrentLoadSystem":10813,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":92906,"rawCurrentLoadIrq":437,"cpus":[{"load":25.34491233819433,"loadUser":13.92757660167131,"loadSystem":10.49647714238899,"loadNice":0,"loadIdle":74.65508766180568,"loadIrq":0.9208585941340325,"rawLoad":7734,"rawLoadUser":4250,"rawLoadSystem":3203,"rawLoadNice":0,"rawLoadIdle":22781,"rawLoadIrq":281},{"load":21.759550190176945,"loadUser":13.127170497767487,"loadSystem":8.632379692409458,"loadNice":0,"loadIdle":78.24044980982305,"loadIrq":0,"rawLoad":6579,"rawLoadUser":3969,"rawLoadSystem":2610,"rawLoadNice":0,"rawLoadIdle":23656,"rawLoadIrq":0},{"load":23.398347107438017,"loadUser":14.46280991735537,"loadSystem":8.882644628099174,"loadNice":0,"loadIdle":76.60165289256199,"loadIrq":0.05289256198347107,"rawLoad":7078,"rawLoadUser":4375,"rawLoadSystem":2687,"rawLoadNice":0,"rawLoadIdle":23172,"rawLoadIrq":16},{"load":23.302057613168724,"loadUser":15.22633744855967,"loadSystem":7.614814814814815,"loadNice":0,"loadIdle":76.69794238683127,"loadIrq":0.4609053497942387,"rawLoad":7078,"rawLoadUser":4625,"rawLoadSystem":2313,"rawLoadNice":0,"rawLoadIdle":23297,"rawLoadIrq":140}]}', '{"ESTABLISHED":32,"CLOSE":0,"TIME_WAIT":24,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":29,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":265811332,"rx_dropped":0,"rx_errors":0,"tx_bytes":29030928,"tx_dropped":0,"tx_errors":0,"rx_sec":1768.303480215215,"tx_sec":647.5175372880202,"ms":29366}]', '{"total":10685313024,"free":5298552832,"used":5386760192,"active":5386760192,"available":5298552832,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":63963136,"swapfree":4491051008}'), (376, '2022-03-30 02:00:04', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":55538327552,"available":71737823232,"use":43.64,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":22.952589814845815,"currentLoadUser":13.732547627816654,"currentLoadSystem":8.984832758562963,"currentLoadNice":0,"currentLoadIdle":77.04741018515419,"currentLoadIrq":0.2352094284662002,"rawCurrentLoad":27421,"rawCurrentLoadUser":16406,"rawCurrentLoadSystem":10734,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":92047,"rawCurrentLoadIrq":281,"cpus":[{"load":24.960894598462406,"loadUser":13.988085332978335,"loadSystem":10.140779445535328,"loadNice":0,"loadIdle":75.03910540153758,"loadIrq":0.832029819948747,"rawLoad":7500,"rawLoadUser":4203,"rawLoadSystem":3047,"rawLoadNice":0,"rawLoadIdle":22547,"rawLoadIrq":250},{"load":21.394771285699903,"loadUser":13.58190421854549,"loadSystem":7.812867067154411,"loadNice":0,"loadIdle":78.6052287143001,"loadIrq":0,"rawLoad":6375,"rawLoadUser":4047,"rawLoadSystem":2328,"rawLoadNice":0,"rawLoadIdle":23422,"rawLoadIrq":0},{"load":22.83760225291672,"loadUser":12.937508381386618,"loadSystem":9.796164677484242,"loadNice":0,"loadIdle":77.16239774708328,"loadIrq":0.10392919404586295,"rawLoad":6812,"rawLoadUser":3859,"rawLoadSystem":2922,"rawLoadNice":0,"rawLoadIdle":23016,"rawLoadIrq":31},{"load":22.600349040139616,"loadUser":14.421398845482617,"loadSystem":8.178950194657,"loadNice":0,"loadIdle":77.3996509598604,"loadIrq":0,"rawLoad":6734,"rawLoadUser":4297,"rawLoadSystem":2437,"rawLoadNice":0,"rawLoadIdle":23062,"rawLoadIrq":0}]}', '{"ESTABLISHED":30,"CLOSE":0,"TIME_WAIT":30,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":33,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":265847598,"rx_dropped":0,"rx_errors":0,"tx_bytes":29045350,"tx_dropped":0,"tx_errors":0,"rx_sec":1139.9742243736837,"tx_sec":453.33668626033386,"ms":31813}]', '{"total":10685313024,"free":5276512256,"used":5408800768,"active":5408800768,"available":5276512256,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":4555014144,"swapused":63963136,"swapfree":4491051008}'), (377, '2022-03-30 02:04:05', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56494469120,"available":70781681664,"use":44.39,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":49.02279185756539,"currentLoadUser":32.51754335092502,"currentLoadSystem":16.077745834748676,"currentLoadNice":0,"currentLoadIdle":50.97720814243461,"currentLoadIrq":0.4275026718916993,"rawCurrentLoad":59171,"rawCurrentLoadUser":39249,"rawCurrentLoadSystem":19406,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":61530,"rawCurrentLoadIrq":516,"cpus":[{"load":49.616258770051715,"loadUser":29.437728515432,"loadSystem":19.147534503771535,"loadNice":0,"loadIdle":50.383741229948285,"loadIrq":1.0309957508481835,"rawLoad":15063,"rawLoadUser":8937,"rawLoadSystem":5813,"rawLoadNice":0,"rawLoadIdle":15296,"rawLoadIrq":313},{"load":46.12827077168601,"loadUser":31.116800212787183,"loadSystem":14.90840176879343,"loadNice":0,"loadIdle":53.87172922831399,"loadIrq":0.10306879010539614,"rawLoad":13874,"rawLoadUser":9359,"rawLoadSystem":4484,"rawLoadNice":0,"rawLoadIdle":16203,"rawLoadIrq":31},{"load":51.99933576884755,"loadUser":36.53271338425772,"loadSystem":15.257389571570906,"loadNice":0,"loadIdle":48.00066423115244,"loadIrq":0.2092328130189306,"rawLoad":15657,"rawLoadUser":11000,"rawLoadSystem":4594,"rawLoadNice":0,"rawLoadIdle":14453,"rawLoadIrq":63},{"load":48.34024208257337,"loadUser":33.00613496932515,"loadSystem":14.97264135300945,"loadNice":0,"loadIdle":51.65975791742663,"loadIrq":0.36146576023876636,"rawLoad":14577,"rawLoadUser":9953,"rawLoadSystem":4515,"rawLoadNice":0,"rawLoadIdle":15578,"rawLoadIrq":109}]}', '{"ESTABLISHED":50,"CLOSE":0,"TIME_WAIT":1,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":26,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":278440187,"rx_dropped":0,"rx_errors":0,"tx_bytes":29914611,"tx_dropped":0,"tx_errors":0,"rx_sec":1197.2916471652782,"tx_sec":358.9815594870355,"ms":32049}]', '{"total":10685313024,"free":4615016448,"used":6070296576,"active":6070296576,"available":4615016448,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":5478809600,"swapused":62914560,"swapfree":5415895040}'), (378, '2022-03-30 02:06:35', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56491044864,"available":70785105920,"use":44.38,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":55.82144844714306,"currentLoadUser":36.14638968029172,"currentLoadSystem":19.040459835037503,"currentLoadNice":0,"currentLoadIdle":44.178551552856945,"currentLoadIrq":0.6345989318138399,"rawCurrentLoad":67204,"rawCurrentLoadUser":43517,"rawCurrentLoadSystem":22923,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":53187,"rawCurrentLoadIrq":764,"cpus":[{"load":58.640329218107,"loadUser":34.97942386831276,"loadSystem":22.120164609053496,"loadNice":0,"loadIdle":41.359670781893,"loadIrq":1.5407407407407407,"rawLoad":17812,"rawLoadUser":10625,"rawLoadSystem":6719,"rawLoadNice":0,"rawLoadIdle":12563,"rawLoadIrq":468},{"load":53.77465351812367,"loadUser":33.52545309168444,"loadSystem":19.886060767590617,"loadNice":0,"loadIdle":46.225346481876336,"loadIrq":0.3631396588486141,"rawLoad":16141,"rawLoadUser":10063,"rawLoadSystem":5969,"rawLoadNice":0,"rawLoadIdle":13875,"rawLoadIrq":109},{"load":56.07323906083245,"loadUser":38.25040021344717,"loadSystem":17.562700106723586,"loadNice":0,"loadIdle":43.92676093916756,"loadIrq":0.26013874066168624,"rawLoad":16813,"rawLoadUser":11469,"rawLoadSystem":5266,"rawLoadNice":0,"rawLoadIdle":13171,"rawLoadIrq":78},{"load":54.76412579957356,"loadUser":37.846481876332625,"loadSystem":16.554504264392325,"loadNice":0,"loadIdle":45.23587420042644,"loadIrq":0.3631396588486141,"rawLoad":16438,"rawLoadUser":11360,"rawLoadSystem":4969,"rawLoadNice":0,"rawLoadIdle":13578,"rawLoadIrq":109}]}', '{"ESTABLISHED":41,"CLOSE":0,"TIME_WAIT":6,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":28,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":279093306,"rx_dropped":0,"rx_errors":0,"tx_bytes":30054849,"tx_dropped":0,"tx_errors":0,"rx_sec":1666.6897028334483,"tx_sec":623.8424326192121,"ms":28940}]', '{"total":10685313024,"free":4675448832,"used":6009864192,"active":6009864192,"available":4675448832,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":5478809600,"swapused":62914560,"swapfree":5415895040}'), (379, '2022-03-30 02:07:02', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56491380736,"available":70784770048,"use":44.38,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":47.275303710824204,"currentLoadUser":27.139234632149428,"currentLoadSystem":19.059615161509523,"currentLoadNice":0,"currentLoadIdle":52.724696289175796,"currentLoadIrq":1.0764539171652552,"rawCurrentLoad":57049,"rawCurrentLoadUser":32750,"rawCurrentLoadSystem":23000,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":63625,"rawCurrentLoadIrq":1299,"cpus":[{"load":50.56095736724009,"loadUser":23.169978212090665,"loadSystem":24.441481577834868,"loadNice":0,"loadIdle":49.43904263275991,"loadIrq":2.949497577314559,"rawLoad":15548,"rawLoadUser":7125,"rawLoadSystem":7516,"rawLoadNice":0,"rawLoadIdle":15203,"rawLoadIrq":907},{"load":45.22273836179527,"loadUser":27.570764963406074,"loadSystem":17.38796243692143,"loadNice":0,"loadIdle":54.77726163820472,"loadIrq":0.26401096146776726,"rawLoad":13532,"rawLoadUser":8250,"rawLoadSystem":5203,"rawLoadNice":0,"rawLoadIdle":16391,"rawLoadIrq":79},{"load":46.86528237536363,"loadUser":28.003477446751596,"loadSystem":18.651151904236464,"loadNice":0,"loadIdle":53.13471762463637,"loadIrq":0.21065302437556424,"rawLoad":14016,"rawLoadUser":8375,"rawLoadSystem":5578,"rawLoadNice":0,"rawLoadIdle":15891,"rawLoadIrq":63},{"load":46.36626457980261,"loadUser":29.907287409032,"loadSystem":15.62821918718639,"loadNice":0,"loadIdle":53.63373542019739,"loadIrq":0.8307579835842223,"rawLoad":13953,"rawLoadUser":9000,"rawLoadSystem":4703,"rawLoadNice":0,"rawLoadIdle":16140,"rawLoadIrq":250}]}', '{"ESTABLISHED":43,"CLOSE":0,"TIME_WAIT":11,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":38,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":279148330,"rx_dropped":0,"rx_errors":0,"tx_bytes":30075479,"tx_dropped":0,"tx_errors":0,"rx_sec":1957.8707657272987,"tx_sec":734.0592086535725,"ms":28104}]', '{"total":10685313024,"free":4665978880,"used":6019334144,"active":6019334144,"available":4665978880,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":5478809600,"swapused":62914560,"swapfree":5415895040}'), (380, '2022-03-30 02:07:32', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56492646400,"available":70783504384,"use":44.39,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":24.193468252128117,"currentLoadUser":15.11211950581299,"currentLoadSystem":8.759232883972045,"currentLoadNice":0,"currentLoadIdle":75.80653174787189,"currentLoadIrq":0.32211586234308237,"rawCurrentLoad":29217,"rawCurrentLoadUser":18250,"rawCurrentLoadSystem":10578,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":91547,"rawCurrentLoadIrq":389,"cpus":[{"load":25.35959356030615,"loadUser":13.81631037212985,"loadSystem":10.824096067564001,"loadNice":0,"loadIdle":74.64040643969385,"loadIrq":0.7191871206122987,"rawLoad":7687,"rawLoadUser":4188,"rawLoadSystem":3281,"rawLoadNice":0,"rawLoadIdle":22625,"rawLoadIrq":218},{"load":23.60834329746247,"loadUser":16.08542580045171,"loadSystem":7.473096851335194,"loadNice":0,"loadIdle":76.39165670253753,"loadIrq":0.04982064567556796,"rawLoad":7108,"rawLoadUser":4843,"rawLoadSystem":2250,"rawLoadNice":0,"rawLoadIdle":23000,"rawLoadIrq":15},{"load":23.495435684647305,"loadUser":14.575933609958506,"loadSystem":8.816597510373445,"loadNice":0,"loadIdle":76.5045643153527,"loadIrq":0.10290456431535269,"rawLoad":7078,"rawLoadUser":4391,"rawLoadSystem":2656,"rawLoadNice":0,"rawLoadIdle":23047,"rawLoadIrq":31},{"load":24.302591085078923,"loadUser":15.976703398524108,"loadSystem":7.912240643303882,"loadNice":0,"loadIdle":75.69740891492107,"loadIrq":0.4136470432509348,"rawLoad":7344,"rawLoadUser":4828,"rawLoadSystem":2391,"rawLoadNice":0,"rawLoadIdle":22875,"rawLoadIrq":125}]}', '{"ESTABLISHED":45,"CLOSE":0,"TIME_WAIT":15,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":39,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":279187922,"rx_dropped":0,"rx_errors":0,"tx_bytes":30089311,"tx_dropped":0,"tx_errors":0,"rx_sec":1307.9184698226024,"tx_sec":456.9389845066235,"ms":30271}]', '{"total":10685313024,"free":4644720640,"used":6040592384,"active":6040592384,"available":4644720640,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":5478809600,"swapused":62914560,"swapfree":5415895040}'), (381, '2022-03-30 02:08:02', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56492974080,"available":70783176704,"use":44.39,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":26.625502465708013,"currentLoadUser":14.969955658696282,"currentLoadSystem":10.956031660519663,"currentLoadNice":0,"currentLoadIdle":73.37449753429199,"currentLoadIrq":0.6995151464920641,"rawCurrentLoad":32125,"rawCurrentLoadUser":18062,"rawCurrentLoadSystem":13219,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":88530,"rawCurrentLoadIrq":844,"cpus":[{"load":31.04700290467388,"loadUser":13.407710588856613,"loadSystem":16.503828888302085,"loadNice":0,"loadIdle":68.95299709532611,"loadIrq":1.1354634275151836,"rawLoad":9406,"rawLoadUser":4062,"rawLoadSystem":5000,"rawLoadNice":0,"rawLoadIdle":20890,"rawLoadIrq":344},{"load":21.93836712913554,"loadUser":14.384338313767342,"loadSystem":7.4506403415154745,"loadNice":0,"loadIdle":78.06163287086446,"loadIrq":0.10338847385272146,"rawLoad":6578,"rawLoadUser":4313,"rawLoadSystem":2234,"rawLoadNice":0,"rawLoadIdle":23406,"rawLoadIrq":31},{"load":26.535912890013652,"loadUser":14.568279444573939,"loadSystem":11.707901834770738,"loadNice":0,"loadIdle":73.46408710998634,"loadIrq":0.2597316106689754,"rawLoad":7969,"rawLoadUser":4375,"rawLoadSystem":3516,"rawLoadNice":0,"rawLoadIdle":22062,"rawLoadIrq":78},{"load":26.931189032428154,"loadUser":17.50593197996309,"loadSystem":8.136699182704984,"loadNice":0,"loadIdle":73.06881096757184,"loadIrq":1.2885578697600844,"rawLoad":8172,"rawLoadUser":5312,"rawLoadSystem":2469,"rawLoadNice":0,"rawLoadIdle":22172,"rawLoadIrq":391}]}', '{"ESTABLISHED":35,"CLOSE":0,"TIME_WAIT":116,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":38,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":279225575,"rx_dropped":0,"rx_errors":0,"tx_bytes":30099556,"tx_dropped":0,"tx_errors":0,"rx_sec":1256.6918096255256,"tx_sec":341.93311527935384,"ms":29962}]', '{"total":10685313024,"free":4652470272,"used":6032842752,"active":6032842752,"available":4652470272,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":5478809600,"swapused":62914560,"swapfree":5415895040}'), (382, '2022-03-30 02:08:32', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56493039616,"available":70783111168,"use":44.39,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":42.03151646333465,"currentLoadUser":23.558638331365604,"currentLoadSystem":17.5242686606323,"currentLoadNice":0,"currentLoadIdle":57.968483536665346,"currentLoadIrq":0.948609471336744,"rawCurrentLoad":51265,"rawCurrentLoadUser":28734,"rawCurrentLoadSystem":21374,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":70703,"rawCurrentLoadIrq":1157,"cpus":[{"load":45.416625932805424,"loadUser":21.641085801805325,"loadSystem":22.19832502362564,"loadNice":0,"loadIdle":54.583374067194576,"loadIrq":1.5772151073744582,"rawLoad":13937,"rawLoadUser":6641,"rawLoadSystem":6812,"rawLoadNice":0,"rawLoadIdle":16750,"rawLoadIrq":484},{"load":37.46243519038341,"loadUser":22.908754664641194,"loadSystem":14.29279085895446,"loadNice":0,"loadIdle":62.53756480961658,"loadIrq":0.2608896667877547,"rawLoad":11344,"rawLoadUser":6937,"rawLoadSystem":4328,"rawLoadNice":0,"rawLoadIdle":18937,"rawLoadIrq":79},{"load":43.254020564197205,"loadUser":24.818745056683365,"loadSystem":17.970603743738465,"loadNice":0,"loadIdle":56.745979435802795,"loadIrq":0.46467176377537567,"rawLoad":13125,"rawLoadUser":7531,"rawLoadSystem":5453,"rawLoadNice":0,"rawLoadIdle":17219,"rawLoadIrq":141},{"load":41.94611169102296,"loadUser":24.87278183716075,"loadSystem":15.59564196242171,"loadNice":0,"loadIdle":58.05388830897703,"loadIrq":1.477687891440501,"rawLoad":12859,"rawLoadUser":7625,"rawLoadSystem":4781,"rawLoadNice":0,"rawLoadIdle":17797,"rawLoadIrq":453}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":127,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":34,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":279272800,"rx_dropped":0,"rx_errors":0,"tx_bytes":30110876,"tx_dropped":0,"tx_errors":0,"rx_sec":1553.3517531741331,"tx_sec":372.3439247417933,"ms":30402}]', '{"total":10685313024,"free":4691030016,"used":5994283008,"active":5994283008,"available":4691030016,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":5478809600,"swapused":62914560,"swapfree":5415895040}'), (383, '2022-03-30 02:09:02', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56493301760,"available":70782849024,"use":44.39,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":27.771892802629054,"currentLoadUser":15.87358517319899,"currentLoadSystem":11.364489411215187,"currentLoadNice":0,"currentLoadIdle":72.22810719737095,"currentLoadIrq":0.5338182182148785,"rawCurrentLoad":33296,"rawCurrentLoadUser":19031,"rawCurrentLoadSystem":13625,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":86595,"rawCurrentLoadIrq":640,"cpus":[{"load":30.617734971770176,"loadUser":14.320823646629027,"loadSystem":15.31052806376619,"loadNice":0,"loadIdle":69.38226502822982,"loadIrq":0.9863832613749586,"rawLoad":9219,"rawLoadUser":4312,"rawLoadSystem":4610,"rawLoadNice":0,"rawLoadIdle":20891,"rawLoadIrq":297},{"load":24.173615995177332,"loadUser":14.913426437590008,"loadSystem":9.106132154459292,"loadNice":0,"loadIdle":75.82638400482267,"loadIrq":0.1540574031280351,"rawLoad":7218,"rawLoadUser":4453,"rawLoadSystem":2719,"rawLoadNice":0,"rawLoadIdle":22641,"rawLoadIrq":46},{"load":26.606670904285572,"loadUser":15.787360744036667,"loadSystem":10.558362048777225,"loadNice":0,"loadIdle":73.39332909571444,"loadIrq":0.26094811147168046,"rawLoad":7953,"rawLoadUser":4719,"rawLoadSystem":3156,"rawLoadNice":0,"rawLoadIdle":21938,"rawLoadIrq":78},{"load":29.65602211048583,"loadUser":18.47091338949752,"loadSystem":10.455862275648496,"loadNice":0,"loadIdle":70.34397788951416,"loadIrq":0.7292464453398155,"rawLoad":8906,"rawLoadUser":5547,"rawLoadSystem":3140,"rawLoadNice":0,"rawLoadIdle":21125,"rawLoadIrq":219}]}', '{"ESTABLISHED":28,"CLOSE":0,"TIME_WAIT":127,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":29,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":279312116,"rx_dropped":0,"rx_errors":0,"tx_bytes":30115827,"tx_dropped":0,"tx_errors":0,"rx_sec":1311.5388464489442,"tx_sec":165.15995596624077,"ms":29977}]', '{"total":10685313024,"free":4608307200,"used":6077005824,"active":6077005824,"available":4608307200,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":5478809600,"swapused":62914560,"swapfree":5415895040}'), (384, '2022-03-30 02:09:35', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56494166016,"available":70781984768,"use":44.39,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":34.61557572545382,"currentLoadUser":20.39386511196502,"currentLoadSystem":13.65194779382536,"currentLoadNice":0,"currentLoadIdle":65.38442427454618,"currentLoadIrq":0.5697628196634424,"rawCurrentLoad":41799,"rawCurrentLoadUser":24626,"rawCurrentLoadSystem":16485,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":78953,"rawCurrentLoadIrq":688,"cpus":[{"load":39.200105076508834,"loadUser":20.522755631444145,"loadSystem":17.239114730413082,"loadNice":0,"loadIdle":60.79989492349117,"loadIrq":1.4382347146516057,"rawLoad":11938,"rawLoadUser":6250,"rawLoadSystem":5250,"rawLoadNice":0,"rawLoadIdle":18516,"rawLoadIrq":438},{"load":31.413072417465386,"loadUser":19.086128860489882,"loadSystem":12.220447284345049,"loadNice":0,"loadIdle":68.58692758253461,"loadIrq":0.10649627263045794,"rawLoad":9439,"rawLoadUser":5735,"rawLoadSystem":3672,"rawLoadNice":0,"rawLoadIdle":20609,"rawLoadIrq":32},{"load":33.85362931407462,"loadUser":20.64432389256831,"loadSystem":13.106133723832661,"loadNice":0,"loadIdle":66.14637068592538,"loadIrq":0.10317169767364463,"rawLoad":10172,"rawLoadUser":6203,"rawLoadSystem":3938,"rawLoadNice":0,"rawLoadIdle":19875,"rawLoadIrq":31},{"load":33.9370261232328,"loadUser":21.31576333476807,"loadSystem":12.002118994801842,"loadNice":0,"loadIdle":66.0629738767672,"loadIrq":0.6191437936628812,"rawLoad":10250,"rawLoadUser":6438,"rawLoadSystem":3625,"rawLoadNice":0,"rawLoadIdle":19953,"rawLoadIrq":187}]}', '{"ESTABLISHED":27,"CLOSE":0,"TIME_WAIT":123,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":41,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":279808273,"rx_dropped":0,"rx_errors":0,"tx_bytes":30218488,"tx_dropped":0,"tx_errors":0,"rx_sec":15478.785798964247,"tx_sec":3202.7516066637545,"ms":32054}]', '{"total":10685313024,"free":4598202368,"used":6087110656,"active":6087110656,"available":4598202368,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":5478809600,"swapused":62914560,"swapfree":5415895040}'), (385, '2022-03-30 02:10:05', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56496340992,"available":70779809792,"use":44.39,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":39.05764012970684,"currentLoadUser":24.026371517437628,"currentLoadSystem":14.295049963602674,"currentLoadNice":0,"currentLoadIdle":60.94235987029316,"currentLoadIrq":0.7362186486665343,"rawCurrentLoad":47216,"rawCurrentLoadUser":29045,"rawCurrentLoadSystem":17281,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":73672,"rawCurrentLoadIrq":890,"cpus":[{"load":41.05567037365089,"loadUser":21.32336056162451,"loadSystem":18.14453957943772,"loadNice":0,"loadIdle":58.94432962634911,"loadIrq":1.5877702325886562,"rawLoad":12515,"rawLoadUser":6500,"rawLoadSystem":5531,"rawLoadNice":0,"rawLoadIdle":17968,"rawLoadIrq":484},{"load":37.66774333189038,"loadUser":24.088441943325233,"loadSystem":13.476074722786455,"loadNice":0,"loadIdle":62.33225666810962,"loadIrq":0.10322666577869534,"rawLoad":11312,"rawLoadUser":7234,"rawLoadSystem":4047,"rawLoadNice":0,"rawLoadIdle":18719,"rawLoadIrq":31},{"load":38.491205904844236,"loadUser":24.570269641254114,"loadSystem":13.661601888486219,"loadNice":0,"loadIdle":61.50879409515577,"loadIrq":0.2593343751039,"rawLoad":11577,"rawLoadUser":7390,"rawLoadSystem":4109,"rawLoadNice":0,"rawLoadIdle":18500,"rawLoadIrq":78},{"load":38.98735848433839,"loadUser":26.144502756048453,"loadSystem":11.862560649569264,"loadNice":0,"loadIdle":61.01264151566161,"loadIrq":0.9802950787206653,"rawLoad":11812,"rawLoadUser":7921,"rawLoadSystem":3594,"rawLoadNice":0,"rawLoadIdle":18485,"rawLoadIrq":297}]}', '{"ESTABLISHED":33,"CLOSE":0,"TIME_WAIT":31,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":57,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":279979525,"rx_dropped":0,"rx_errors":0,"tx_bytes":30300446,"tx_dropped":0,"tx_errors":0,"rx_sec":5791.801948051948,"tx_sec":2771.8479437229435,"ms":29568}]', '{"total":10685313024,"free":4628865024,"used":6056448000,"active":6056448000,"available":4628865024,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":5478809600,"swapused":62914560,"swapfree":5415895040}'), (386, '2022-03-30 02:10:34', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56496861184,"available":70779289600,"use":44.39,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":51.073497391232905,"currentLoadUser":30.646234747956125,"currentLoadSystem":19.69434287827123,"currentLoadNice":0,"currentLoadIdle":48.9265026087671,"currentLoadIrq":0.7329197650055461,"rawCurrentLoad":62159,"rawCurrentLoadUser":37298,"rawCurrentLoadSystem":23969,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":59546,"rawCurrentLoadIrq":892,"cpus":[{"load":53.17228391453991,"loadUser":28.20962400155854,"loadSystem":23.033963244366518,"loadNice":0,"loadIdle":46.8277160854601,"loadIrq":1.928696668614845,"rawLoad":16376,"rawLoadUser":8688,"rawLoadSystem":7094,"rawLoadNice":0,"rawLoadIdle":14422,"rawLoadIrq":594},{"load":49.30427327881826,"loadUser":30.65484041150092,"loadSystem":18.237272487470324,"loadNice":0,"loadIdle":50.69572672118174,"loadIrq":0.41216037984700604,"rawLoad":14953,"rawLoadUser":9297,"rawLoadSystem":5531,"rawLoadNice":0,"rawLoadIdle":15375,"rawLoadIrq":125},{"load":51.08645399907535,"loadUser":30.54619906214913,"loadSystem":20.27937388547652,"loadNice":0,"loadIdle":48.91354600092464,"loadIrq":0.2608810514497061,"rawLoad":15470,"rawLoadUser":9250,"rawLoadSystem":6141,"rawLoadNice":0,"rawLoadIdle":14812,"rawLoadIrq":79},{"load":50.69808891969502,"loadUser":33.21450968742779,"loadSystem":17.173317490180544,"loadNice":0,"loadIdle":49.30191108030498,"loadIrq":0.3102617420866753,"rawLoad":15360,"rawLoadUser":10063,"rawLoadSystem":5203,"rawLoadNice":0,"rawLoadIdle":14937,"rawLoadIrq":94}]}', '{"ESTABLISHED":36,"CLOSE":0,"TIME_WAIT":36,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":33,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":280298451,"rx_dropped":0,"rx_errors":0,"tx_bytes":30373855,"tx_dropped":0,"tx_errors":0,"rx_sec":10496.165871318084,"tx_sec":2415.9618232680596,"ms":30385}]', '{"total":10685313024,"free":4482760704,"used":6202552320,"active":6202552320,"available":4482760704,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":5478809600,"swapused":62914560,"swapfree":5415895040}'), (387, '2022-03-30 02:11:02', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56496918528,"available":70779232256,"use":44.39,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":27.83563703177851,"currentLoadUser":16.32605336785401,"currentLoadSystem":11.105357664843195,"currentLoadNice":0,"currentLoadIdle":72.16436296822148,"currentLoadIrq":0.4042259990813046,"rawCurrentLoad":33329,"rawCurrentLoadUser":19548,"rawCurrentLoadSystem":13297,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":86406,"rawCurrentLoadIrq":484,"cpus":[{"load":29.723907063073813,"loadUser":16.519174041297934,"loadSystem":12.014848695767459,"loadNice":0,"loadIdle":70.27609293692618,"loadIrq":1.1898843260084186,"rawLoad":8968,"rawLoadUser":4984,"rawLoadSystem":3625,"rawLoadNice":0,"rawLoadIdle":21203,"rawLoadIrq":359},{"load":26.10270687284071,"loadUser":15.3054036829571,"loadSystem":10.797303189883607,"loadNice":0,"loadIdle":73.89729312715929,"loadIrq":0,"rawLoad":7782,"rawLoadUser":4563,"rawLoadSystem":3219,"rawLoadNice":0,"rawLoadIdle":22031,"rawLoadIrq":0},{"load":28.166465621230397,"loadUser":17.279855247285887,"loadSystem":10.782736898539069,"loadNice":0,"loadIdle":71.8335343787696,"loadIrq":0.10387347540544163,"rawLoad":8406,"rawLoadUser":5157,"rawLoadSystem":3218,"rawLoadNice":0,"rawLoadIdle":21438,"rawLoadIrq":31},{"load":27.328050289229942,"loadUser":16.19687698532116,"loadSystem":10.816865616745245,"loadNice":0,"loadIdle":72.67194971077005,"loadIrq":0.3143076871635403,"rawLoad":8173,"rawLoadUser":4844,"rawLoadSystem":3235,"rawLoadNice":0,"rawLoadIdle":21734,"rawLoadIrq":94}]}', '{"ESTABLISHED":33,"CLOSE":0,"TIME_WAIT":57,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":33,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":280346036,"rx_dropped":0,"rx_errors":0,"tx_bytes":30381489,"tx_dropped":0,"tx_errors":0,"rx_sec":1722.7210194772283,"tx_sec":276.37390485844617,"ms":27622}]', '{"total":10685313024,"free":4593897472,"used":6091415552,"active":6091415552,"available":4593897472,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":5478809600,"swapused":62914560,"swapfree":5415895040}'), (388, '2022-03-30 02:11:31', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56496971776,"available":70779179008,"use":44.39,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":14.88310286117686,"currentLoadUser":7.44819567293717,"currentLoadSystem":7.097711889041153,"currentLoadNice":0,"currentLoadIdle":85.11689713882313,"currentLoadIrq":0.3371952991985383,"rawCurrentLoad":17920,"rawCurrentLoadUser":8968,"rawCurrentLoadSystem":8546,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":102485,"rawCurrentLoadIrq":406,"cpus":[{"load":15.455601659751036,"loadUser":7.263070539419088,"loadSystem":7.7775933609958505,"loadNice":0,"loadIdle":84.54439834024896,"loadIrq":0.4149377593360996,"rawLoad":4656,"rawLoadUser":2188,"rawLoadSystem":2343,"rawLoadNice":0,"rawLoadIdle":25469,"rawLoadIrq":125},{"load":13.636515075795435,"loadUser":8.065967016491754,"loadSystem":5.517241379310345,"loadNice":0,"loadIdle":86.36348492420457,"loadIrq":0.053306679993336666,"rawLoad":4093,"rawLoadUser":2421,"rawLoadSystem":1656,"rawLoadNice":0,"rawLoadIdle":25922,"rawLoadIrq":16},{"load":14.636666666666667,"loadUser":7.290000000000001,"loadSystem":7.346666666666667,"loadNice":0,"loadIdle":85.36333333333333,"loadIrq":0,"rawLoad":4391,"rawLoadUser":2187,"rawLoadSystem":2204,"rawLoadNice":0,"rawLoadIdle":25609,"rawLoadIrq":0},{"load":15.79382124566331,"loadUser":7.176606641334875,"loadSystem":7.741615727738312,"loadNice":0,"loadIdle":84.20617875433669,"loadIrq":0.8755988765901206,"rawLoad":4780,"rawLoadUser":2172,"rawLoadSystem":2343,"rawLoadNice":0,"rawLoadIdle":25485,"rawLoadIrq":265}]}', '{"ESTABLISHED":31,"CLOSE":0,"TIME_WAIT":53,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":29,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":280414973,"rx_dropped":0,"rx_errors":0,"tx_bytes":30394492,"tx_dropped":0,"tx_errors":0,"rx_sec":2307.9009039169737,"tx_sec":435.319718781386,"ms":29870}]', '{"total":10685313024,"free":4739977216,"used":5945335808,"active":5945335808,"available":4739977216,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":5478809600,"swapused":62914560,"swapfree":5415895040}'), (389, '2022-03-30 02:12:02', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56496906240,"available":70779244544,"use":44.39,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":12.044189716753884,"currentLoadUser":6.16496386743085,"currentLoadSystem":5.710607193288479,"currentLoadNice":0,"currentLoadIdle":87.95581028324612,"currentLoadIrq":0.16861865603455437,"rawCurrentLoad":14500,"rawCurrentLoadUser":7422,"rawCurrentLoadSystem":6875,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":105890,"rawCurrentLoadIrq":203,"cpus":[{"load":14.29471032745592,"loadUser":6.317115206151398,"loadSystem":7.563303725308233,"loadNice":0,"loadIdle":85.70528967254408,"loadIrq":0.414291395996288,"rawLoad":4313,"rawLoadUser":1906,"rawLoadSystem":2282,"rawLoadNice":0,"rawLoadIdle":25859,"rawLoadIrq":125},{"load":10.453622657836057,"loadUser":5.461443738143576,"loadSystem":4.992178919692482,"loadNice":0,"loadIdle":89.54637734216394,"loadIrq":0,"rawLoad":3141,"rawLoadUser":1641,"rawLoadSystem":1500,"rawLoadNice":0,"rawLoadIdle":26906,"rawLoadIrq":0},{"load":11.542301803900685,"loadUser":6.240431338614124,"loadSystem":5.3018704652865605,"loadNice":0,"loadIdle":88.45769819609932,"loadIrq":0,"rawLoad":3468,"rawLoadUser":1875,"rawLoadSystem":1593,"rawLoadNice":0,"rawLoadIdle":26578,"rawLoadIrq":0},{"load":11.877178423236515,"loadUser":6.639004149377594,"loadSystem":4.979253112033195,"loadNice":0,"loadIdle":88.12282157676349,"loadIrq":0.25892116182572616,"rawLoad":3578,"rawLoadUser":2000,"rawLoadSystem":1500,"rawLoadNice":0,"rawLoadIdle":26547,"rawLoadIrq":78}]}', '{"ESTABLISHED":31,"CLOSE":0,"TIME_WAIT":44,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":30,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":280439308,"rx_dropped":0,"rx_errors":0,"tx_bytes":30397392,"tx_dropped":0,"tx_errors":0,"rx_sec":806.8366433473691,"tx_sec":96.15065813467723,"ms":30161}]', '{"total":10685313024,"free":4740886528,"used":5944426496,"active":5944426496,"available":4740886528,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":5478809600,"swapused":62914560,"swapfree":5415895040}'), (390, '2022-03-30 02:12:33', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56497954816,"available":70778195968,"use":44.39,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":12.340085952501683,"currentLoadUser":6.2610661767761995,"currentLoadSystem":5.8321349304649255,"currentLoadNice":0,"currentLoadIdle":87.65991404749832,"currentLoadIrq":0.2468848452605591,"rawCurrentLoad":14845,"rawCurrentLoadUser":7532,"rawCurrentLoadSystem":7016,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":105454,"rawCurrentLoadIrq":297,"cpus":[{"load":14.099173553719007,"loadUser":5.474380165289256,"loadSystem":7.798347107438016,"loadNice":0,"loadIdle":85.90082644628099,"loadIrq":0.8264462809917356,"rawLoad":4265,"rawLoadUser":1656,"rawLoadSystem":2359,"rawLoadNice":0,"rawLoadIdle":25985,"rawLoadIrq":250},{"load":11.400586353944563,"loadUser":6.87300106609808,"loadSystem":4.477611940298507,"loadNice":0,"loadIdle":88.59941364605544,"loadIrq":0.04997334754797442,"rawLoad":3422,"rawLoadUser":2063,"rawLoadSystem":1344,"rawLoadNice":0,"rawLoadIdle":26594,"rawLoadIrq":15},{"load":12.032932235592147,"loadUser":6.1997933402219925,"loadSystem":5.833138895370155,"loadNice":0,"loadIdle":87.96706776440786,"loadIrq":0,"rawLoad":3610,"rawLoadUser":1860,"rawLoadSystem":1750,"rawLoadNice":0,"rawLoadIdle":26391,"rawLoadIrq":0},{"load":11.814064997336175,"loadUser":6.503063399041023,"loadSystem":5.204448588172616,"loadNice":0,"loadIdle":88.18593500266383,"loadIrq":0.10655301012253596,"rawLoad":3548,"rawLoadUser":1953,"rawLoadSystem":1563,"rawLoadNice":0,"rawLoadIdle":26484,"rawLoadIrq":32}]}', '{"ESTABLISHED":30,"CLOSE":0,"TIME_WAIT":29,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":27,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":280484934,"rx_dropped":0,"rx_errors":0,"tx_bytes":30407575,"tx_dropped":0,"tx_errors":0,"rx_sec":1478.3876612014776,"tx_sec":329.9526926317154,"ms":30862}]', '{"total":10685313024,"free":4742742016,"used":5942571008,"active":5942571008,"available":4742742016,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":5478809600,"swapused":62914560,"swapfree":5415895040}'), (391, '2022-03-30 02:13:04', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56498036736,"available":70778114048,"use":44.39,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":26.24568368041601,"currentLoadUser":13.262686493713142,"currentLoadSystem":12.380147800624995,"currentLoadNice":0,"currentLoadIdle":73.75431631958399,"currentLoadIrq":0.6028493860778701,"rawCurrentLoad":31999,"rawCurrentLoadUser":16170,"rawCurrentLoadSystem":15094,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":89922,"rawCurrentLoadIrq":735,"cpus":[{"load":29.603828249617504,"loadUser":12.05442885510596,"loadSystem":16.175656759660146,"loadNice":0,"loadIdle":70.39617175038249,"loadIrq":1.3737426348513948,"rawLoad":9094,"rawLoadUser":3703,"rawLoadSystem":4969,"rawLoadNice":0,"rawLoadIdle":21625,"rawLoadIrq":422},{"load":22.88532594352072,"loadUser":12.935471100554235,"loadSystem":9.897070467141726,"loadNice":0,"loadIdle":77.11467405647929,"loadIrq":0.052784375824755876,"rawLoad":6937,"rawLoadUser":3921,"rawLoadSystem":3000,"rawLoadNice":0,"rawLoadIdle":23375,"rawLoadIrq":16},{"load":26.939782823297136,"loadUser":14.034221783481406,"loadSystem":12.596248766041462,"loadNice":0,"loadIdle":73.06021717670286,"loadIrq":0.30931227377426784,"rawLoad":8187,"rawLoadUser":4265,"rawLoadSystem":3828,"rawLoadNice":0,"rawLoadIdle":22203,"rawLoadIrq":94},{"load":25.511475409836066,"loadUser":14.036065573770493,"loadSystem":10.809836065573771,"loadNice":0,"loadIdle":74.48852459016393,"loadIrq":0.6655737704918033,"rawLoad":7781,"rawLoadUser":4281,"rawLoadSystem":3297,"rawLoadNice":0,"rawLoadIdle":22719,"rawLoadIrq":203}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":9,"LISTEN":32,"CLOSE_WAIT":2,"UNKNOWN":35,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":280546537,"rx_dropped":0,"rx_errors":0,"tx_bytes":30423368,"tx_dropped":0,"tx_errors":0,"rx_sec":1981.1223669400226,"tx_sec":507.89515999356814,"ms":31095}]', '{"total":10685313024,"free":4725829632,"used":5959483392,"active":5959483392,"available":4725829632,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":5478809600,"swapused":62914560,"swapfree":5415895040}'), (392, '2022-04-02 17:49:11', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":62830739456,"available":64445411328,"use":49.37,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":85.89354847442944,"currentLoadUser":32.42548122478816,"currentLoadSystem":52.792592793134254,"currentLoadNice":0,"currentLoadIdle":14.106451525570565,"currentLoadIrq":0.6754744565070254,"rawCurrentLoad":63453,"rawCurrentLoadUser":23954,"rawCurrentLoadSystem":39000,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":10421,"rawCurrentLoadIrq":499,"cpus":[{"load":87.55346449957229,"loadUser":27.651839178785288,"loadSystem":57.97690333618477,"loadNice":0,"loadIdle":12.446535500427716,"loadIrq":1.924721984602224,"rawLoad":16376,"rawLoadUser":5172,"rawLoadSystem":10844,"rawLoadNice":0,"rawLoadIdle":2328,"rawLoadIrq":360},{"load":85.56913882097255,"loadUser":33.27900027166531,"loadSystem":51.9532735669655,"loadNice":0,"loadIdle":14.430861179027438,"loadIrq":0.33686498234175494,"rawLoad":15749,"rawLoadUser":6125,"rawLoadSystem":9562,"rawLoadNice":0,"rawLoadIdle":2656,"rawLoadIrq":62},{"load":84.42725638651342,"loadUser":36.17299417179585,"loadSystem":48.1725584182145,"loadNice":0,"loadIdle":15.572743613486573,"loadIrq":0.0817037965030775,"rawLoad":15500,"rawLoadUser":6641,"rawLoadSystem":8844,"rawLoadNice":0,"rawLoadIdle":2859,"rawLoadIrq":15},{"load":85.99369770726936,"loadUser":32.68499402368793,"loadSystem":52.97185700315114,"loadNice":0,"loadIdle":14.006302292730632,"loadIrq":0.3368466804302945,"rawLoad":15828,"rawLoadUser":6016,"rawLoadSystem":9750,"rawLoadNice":0,"rawLoadIdle":2578,"rawLoadIrq":62}]}', '{"ESTABLISHED":12,"CLOSE":0,"TIME_WAIT":5,"LISTEN":31,"CLOSE_WAIT":0,"UNKNOWN":44,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":281357722,"rx_dropped":0,"rx_errors":0,"tx_bytes":30531187,"tx_dropped":0,"tx_errors":0,"rx_sec":2.572184523368486,"tx_sec":0.34188300218207535,"ms":315368121}]', '{"total":10685313024,"free":3225206784,"used":7460106240,"active":7460106240,"available":3225206784,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":5478809600,"swapused":65011712,"swapfree":5413797888}'), (393, '2022-04-02 17:49:23', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56649555968,"available":70626594816,"use":44.51,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":99.87611148209328,"currentLoadUser":51.55080307876146,"currentLoadSystem":47.50202087653323,"currentLoadNice":0,"currentLoadIdle":0.12388851790672337,"currentLoadIrq":0.8232875267985801,"rawCurrentLoad":113671,"rawCurrentLoadUser":58671,"rawCurrentLoadSystem":54063,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":141,"rawCurrentLoadIrq":937,"cpus":[{"load":100,"loadUser":46.260108986151124,"loadSystem":51.681649370032275,"loadNice":0,"loadIdle":0,"loadIrq":2.058241643816598,"rawLoad":28811,"rawLoadUser":13328,"rawLoadSystem":14890,"rawLoadNice":0,"rawLoadIdle":0,"rawLoadIrq":593},{"load":99.83382243750663,"loadUser":53.809709012481,"loadSystem":45.80136477742814,"loadNice":0,"loadIdle":0.16617756249337057,"loadIrq":0.2227486475974967,"rawLoad":28236,"rawLoadUser":15219,"rawLoadSystem":12954,"rawLoadNice":0,"rawLoadIdle":47,"rawLoadIrq":63},{"load":99.8871053095784,"loadUser":54.07655671194214,"loadSystem":45.36955371317693,"loadNice":0,"loadIdle":0.11289469042159112,"loadIrq":0.44099488445934026,"rawLoad":28313,"rawLoadUser":15328,"rawLoadSystem":12860,"rawLoadNice":0,"rawLoadIdle":32,"rawLoadIrq":125},{"load":99.78148239523492,"loadUser":52.14816903394072,"loadSystem":47.08349487188524,"loadNice":0,"loadIdle":0.21851760476509358,"loadIrq":0.5498184894089452,"rawLoad":28311,"rawLoadUser":14796,"rawLoadSystem":13359,"rawLoadNice":0,"rawLoadIdle":62,"rawLoadIrq":156}]}', '{"ESTABLISHED":50,"CLOSE":0,"TIME_WAIT":51,"LISTEN":32,"CLOSE_WAIT":0,"UNKNOWN":38,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":341432547,"rx_dropped":0,"rx_errors":0,"tx_bytes":31053181,"tx_dropped":0,"tx_errors":0,"rx_sec":5885072.981974921,"tx_sec":51135.775862068964,"ms":10208}]', '{"total":10685313024,"free":3218042880,"used":7467270144,"active":7467270144,"available":3218042880,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":5478809600,"swapused":53477376,"swapfree":5425332224}'), (394, '2022-04-02 17:49:52', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":56582148096,"available":70694002688,"use":44.46,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":98.1298084112926,"currentLoadUser":49.928548877552714,"currentLoadSystem":47.59060168491717,"currentLoadNice":0,"currentLoadIdle":1.8701915887073994,"currentLoadIrq":0.6106578488227181,"rawCurrentLoad":118111,"rawCurrentLoadUser":60095,"rawCurrentLoadSystem":57281,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":2251,"rawCurrentLoadIrq":735,"cpus":[{"load":98.45444059976933,"loadUser":49.896193771626294,"loadSystem":47.114845938375346,"loadNice":0,"loadIdle":1.5455594002306805,"loadIrq":1.4434008897676718,"rawLoad":29876,"rawLoadUser":15141,"rawLoadSystem":14297,"rawLoadNice":0,"rawLoadIdle":469,"rawLoadIrq":438},{"load":97.96456338216156,"loadUser":48.59354666488705,"loadSystem":49.16413627414995,"loadNice":0,"loadIdle":2.035436617838433,"loadIrq":0.20688044312456205,"rawLoad":29359,"rawLoadUser":14563,"rawLoadSystem":14734,"rawLoadNice":0,"rawLoadIdle":610,"rawLoadIrq":62},{"load":98.43833422317138,"loadUser":51.66844634276562,"loadSystem":46.5596636412173,"loadNice":0,"loadIdle":1.561665776828617,"loadIrq":0.2102242391884677,"rawLoad":29500,"rawLoadUser":15484,"rawLoadSystem":13953,"rawLoadNice":0,"rawLoadIdle":468,"rawLoadIrq":63},{"load":97.65957446808511,"loadUser":49.55784574468085,"loadSystem":47.52992021276596,"loadNice":0,"loadIdle":2.3404255319148937,"loadIrq":0.5718085106382979,"rawLoad":29376,"rawLoadUser":14907,"rawLoadSystem":14297,"rawLoadNice":0,"rawLoadIdle":704,"rawLoadIrq":172}]}', '{"ESTABLISHED":67,"CLOSE":0,"TIME_WAIT":79,"LISTEN":32,"CLOSE_WAIT":0,"UNKNOWN":41,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":342417329,"rx_dropped":0,"rx_errors":0,"tx_bytes":31618427,"tx_dropped":0,"tx_errors":0,"rx_sec":33044.158110193945,"tx_sec":18966.71364337964,"ms":29802}]', '{"total":10685313024,"free":3524288512,"used":7161024512,"active":7161024512,"available":3524288512,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":5478809600,"swapused":51380224,"swapfree":5427429376}'), (395, '2022-04-02 17:50:23', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53961465856,"available":73314684928,"use":42.4,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":57.508008431675215,"currentLoadUser":23.19789540075354,"currentLoadSystem":34.154923733173995,"currentLoadNice":0,"currentLoadIdle":42.491991568324785,"currentLoadIrq":0.15518929774768045,"rawCurrentLoad":69296,"rawCurrentLoadUser":27953,"rawCurrentLoadSystem":41156,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":51202,"rawCurrentLoadIrq":187,"cpus":[{"load":55.262110152621105,"loadUser":20.21897810218978,"loadSystem":34.83742534837425,"loadNice":0,"loadIdle":44.737889847378895,"loadIrq":0.20570670205706704,"rawLoad":16656,"rawLoadUser":6094,"rawLoadSystem":10500,"rawLoadNice":0,"rawLoadIdle":13484,"rawLoadIrq":62},{"load":57.46912760589563,"loadUser":21.109414420395698,"loadSystem":36.20369140884345,"loadNice":0,"loadIdle":42.53087239410437,"loadIrq":0.15602177665648653,"rawLoad":17312,"rawLoadUser":6359,"rawLoadSystem":10906,"rawLoadNice":0,"rawLoadIdle":12812,"rawLoadIrq":47},{"load":60.96347168308947,"loadUser":26.180285989184167,"loadSystem":34.57748581666169,"loadNice":0,"loadIdle":39.03652831691052,"loadIrq":0.20569987724362165,"rawLoad":18375,"rawLoadUser":7891,"rawLoadSystem":10422,"rawLoadNice":0,"rawLoadIdle":11766,"rawLoadIrq":62},{"load":56.335360382813285,"loadUser":25.284949988369387,"loadSystem":30.997241883494503,"loadNice":0,"loadIdle":43.66463961718672,"loadIrq":0.05316851094939023,"rawLoad":16953,"rawLoadUser":7609,"rawLoadSystem":9328,"rawLoadNice":0,"rawLoadIdle":13140,"rawLoadIrq":16}]}', '{"ESTABLISHED":67,"CLOSE":0,"TIME_WAIT":88,"LISTEN":32,"CLOSE_WAIT":0,"UNKNOWN":39,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":354944691,"rx_dropped":0,"rx_errors":0,"tx_bytes":31710315,"tx_dropped":0,"tx_errors":0,"rx_sec":409739.05933145806,"tx_sec":3005.4294498593576,"ms":30574}]', '{"total":10685313024,"free":4045168640,"used":6640144384,"active":6640144384,"available":4045168640,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2753560576,"swapused":49283072,"swapfree":2704277504}'), (396, '2022-04-02 17:50:52', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53968990208,"available":73307160576,"use":42.4,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":17.694852542895475,"currentLoadUser":8.801593320055666,"currentLoadSystem":8.736593861717818,"currentLoadNice":0,"currentLoadIdle":82.30514745710452,"currentLoadIrq":0.15666536112199067,"rawCurrentLoad":21234,"rawCurrentLoadUser":10562,"rawCurrentLoadSystem":10484,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":98767,"rawCurrentLoadIrq":188,"cpus":[{"load":18.751246758428085,"loadUser":9.192765476427954,"loadSystem":9.142895139304475,"loadNice":0,"loadIdle":81.24875324157192,"loadIrq":0.41558614269565797,"rawLoad":5640,"rawLoadUser":2765,"rawLoadSystem":2750,"rawLoadNice":0,"rawLoadIdle":24438,"rawLoadIrq":125},{"load":17.257833094197338,"loadUser":8.445393573359137,"loadSystem":8.7590510193867,"loadNice":0,"loadIdle":82.74216690580266,"loadIrq":0.05338850145149988,"rawLoad":5172,"rawLoadUser":2531,"rawLoadSystem":2625,"rawLoadNice":0,"rawLoadIdle":24797,"rawLoadIrq":16},{"load":17.77837098334946,"loadUser":8.498782074810638,"loadSystem":9.226200407087322,"loadNice":0,"loadIdle":82.22162901665054,"loadIrq":0.05338850145149988,"rawLoad":5328,"rawLoadUser":2547,"rawLoadSystem":2765,"rawLoadNice":0,"rawLoadIdle":24641,"rawLoadIrq":16},{"load":16.988494247123562,"loadUser":9.067867266966816,"loadSystem":7.8172419543104885,"loadNice":0,"loadIdle":83.01150575287643,"loadIrq":0.10338502584625647,"rawLoad":5094,"rawLoadUser":2719,"rawLoadSystem":2344,"rawLoadNice":0,"rawLoadIdle":24891,"rawLoadIrq":31}]}', '{"ESTABLISHED":66,"CLOSE":0,"TIME_WAIT":86,"LISTEN":32,"CLOSE_WAIT":0,"UNKNOWN":39,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":354976310,"rx_dropped":0,"rx_errors":0,"tx_bytes":31720788,"tx_dropped":0,"tx_errors":0,"rx_sec":1067.7044641048153,"tx_sec":353.65030053353144,"ms":29614}]', '{"total":10685313024,"free":4617064448,"used":6068248576,"active":6068248576,"available":4617064448,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2753560576,"swapused":17825792,"swapfree":2735734784}'), (397, '2022-04-02 17:51:22', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53968822272,"available":73307328512,"use":42.4,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":22.199235626453973,"currentLoadUser":11.773845131272848,"currentLoadSystem":10.230142904619475,"currentLoadNice":0,"currentLoadIdle":77.80076437354603,"currentLoadIrq":0.1952475905616484,"rawCurrentLoad":26719,"rawCurrentLoadUser":14171,"rawCurrentLoadSystem":12313,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":93641,"rawCurrentLoadIrq":235,"cpus":[{"load":24.769184949865977,"loadUser":11.684701677752408,"loadSystem":12.462358119064165,"loadNice":0,"loadIdle":75.23081505013403,"loadIrq":0.622125153049406,"rawLoad":7485,"rawLoadUser":3531,"rawLoadSystem":3766,"rawLoadNice":0,"rawLoadIdle":22734,"rawLoadIrq":188},{"load":21.62126201643216,"loadUser":11.642218008848086,"loadSystem":9.875927219505705,"loadNice":0,"loadIdle":78.37873798356783,"loadIrq":0.10311678807836877,"rawLoad":6500,"rawLoadUser":3500,"rawLoadSystem":2969,"rawLoadNice":0,"rawLoadIdle":23563,"rawLoadIrq":31},{"load":22.58000066597849,"loadUser":11.757850221437847,"loadSystem":10.822150444540641,"loadNice":0,"loadIdle":77.41999933402151,"loadIrq":0,"rawLoad":6781,"rawLoadUser":3531,"rawLoadSystem":3250,"rawLoadNice":0,"rawLoadIdle":23250,"rawLoadIrq":0},{"load":19.81229407261956,"loadUser":12.01118248078011,"loadSystem":7.747861683362732,"loadNice":0,"loadIdle":80.18770592738043,"loadIrq":0.0532499084767198,"rawLoad":5953,"rawLoadUser":3609,"rawLoadSystem":2328,"rawLoadNice":0,"rawLoadIdle":24094,"rawLoadIrq":16}]}', '{"ESTABLISHED":48,"CLOSE":0,"TIME_WAIT":55,"LISTEN":32,"CLOSE_WAIT":0,"UNKNOWN":20,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":355024426,"rx_dropped":0,"rx_errors":0,"tx_bytes":31732783,"tx_dropped":0,"tx_errors":0,"rx_sec":1615.2270972506628,"tx_sec":402.66541340763365,"ms":29789}]', '{"total":10685313024,"free":4620759040,"used":6064553984,"active":6064553984,"available":4620759040,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2753560576,"swapused":17825792,"swapfree":2735734784}'), (398, '2022-04-02 17:51:52', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53933162496,"available":73342988288,"use":42.37,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":14.906387619356826,"currentLoadUser":8.234892568450672,"currentLoadSystem":6.516653763226027,"currentLoadNice":0,"currentLoadIdle":85.09361238064317,"currentLoadIrq":0.15484128768012786,"rawCurrentLoad":17906,"rawCurrentLoadUser":9892,"rawCurrentLoadSystem":7828,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":102217,"rawCurrentLoadIrq":186,"cpus":[{"load":16.511596996078953,"loadUser":8.985179770053833,"loadSystem":7.164218781152389,"loadNice":0,"loadIdle":83.48840300392105,"loadIrq":0.3621984448727321,"rawLoad":4969,"rawLoadUser":2704,"rawLoadSystem":2156,"rawLoadNice":0,"rawLoadIdle":25125,"rawLoadIrq":109},{"load":13.73580633345543,"loadUser":7.751989610735572,"loadSystem":5.827311777829576,"loadNice":0,"loadIdle":86.26419366654457,"loadIrq":0.15650494489028002,"rawLoad":4125,"rawLoadUser":2328,"rawLoadSystem":1750,"rawLoadNice":0,"rawLoadIdle":25906,"rawLoadIrq":47},{"load":15.363845461515385,"loadUser":8.490283009433648,"loadSystem":6.823560785359511,"loadNice":0,"loadIdle":84.63615453848462,"loadIrq":0.05000166672222407,"rawLoad":4609,"rawLoadUser":2547,"rawLoadSystem":2047,"rawLoadNice":0,"rawLoadIdle":25390,"rawLoadIrq":15},{"load":14.010467015567185,"loadUser":7.710257008566952,"loadSystem":6.250208340278009,"loadNice":0,"loadIdle":85.98953298443281,"loadIrq":0.05000166672222407,"rawLoad":4203,"rawLoadUser":2313,"rawLoadSystem":1875,"rawLoadNice":0,"rawLoadIdle":25796,"rawLoadIrq":15}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":37,"LISTEN":32,"CLOSE_WAIT":0,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":355067788,"rx_dropped":0,"rx_errors":0,"tx_bytes":31741756,"tx_dropped":0,"tx_errors":0,"rx_sec":1447.1848613289724,"tx_sec":299.4693455261489,"ms":29963}]', '{"total":10685313024,"free":4638109696,"used":6047203328,"active":6047203328,"available":4638109696,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2753560576,"swapused":17825792,"swapfree":2735734784}'), (399, '2022-04-02 17:52:22', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53897416704,"available":73378734080,"use":42.35,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.68752288082005,"currentLoadUser":6.409125703065198,"currentLoadSystem":5.174393450261258,"currentLoadNice":0,"currentLoadIdle":88.31247711917996,"currentLoadIrq":0.10400372749359338,"rawCurrentLoad":14047,"rawCurrentLoadUser":7703,"rawCurrentLoadSystem":6219,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":106141,"rawCurrentLoadIrq":125,"cpus":[{"load":12.544790975447908,"loadUser":6.323822163238221,"loadSystem":5.806237558062375,"loadNice":0,"loadIdle":87.45520902455209,"loadIrq":0.41473125414731254,"rawLoad":3781,"rawLoadUser":1906,"rawLoadSystem":1750,"rawLoadNice":0,"rawLoadIdle":26359,"rawLoadIrq":125},{"load":10.517723880597014,"loadUser":5.883528784648187,"loadSystem":4.634195095948828,"loadNice":0,"loadIdle":89.48227611940298,"loadIrq":0,"rawLoad":3157,"rawLoadUser":1766,"rawLoadSystem":1391,"rawLoadNice":0,"rawLoadIdle":26859,"rawLoadIrq":0},{"load":12.180170575692964,"loadUser":6.193363539445629,"loadSystem":5.986807036247335,"loadNice":0,"loadIdle":87.81982942430704,"loadIrq":0,"rawLoad":3656,"rawLoadUser":1859,"rawLoadSystem":1797,"rawLoadNice":0,"rawLoadIdle":26360,"rawLoadIrq":0},{"load":11.50386460554371,"loadUser":7.236140724946695,"loadSystem":4.267723880597015,"loadNice":0,"loadIdle":88.49613539445629,"loadIrq":0,"rawLoad":3453,"rawLoadUser":2172,"rawLoadSystem":1281,"rawLoadNice":0,"rawLoadIdle":26563,"rawLoadIrq":0}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":29,"LISTEN":32,"CLOSE_WAIT":0,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":355089382,"rx_dropped":0,"rx_errors":0,"tx_bytes":31745904,"tx_dropped":0,"tx_errors":0,"rx_sec":718.6740772789296,"tx_sec":138.0503877258961,"ms":30047}]', '{"total":10685313024,"free":4670631936,"used":6014681088,"active":6014681088,"available":4670631936,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2753560576,"swapused":17825792,"swapfree":2735734784}'), (400, '2022-04-02 17:52:52', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53897539584,"available":73378611200,"use":42.35,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.5071232191952,"currentLoadUser":6.209281013080063,"currentLoadSystem":5.272015329500958,"currentLoadNice":0,"currentLoadIdle":88.49287678080479,"currentLoadIrq":0.02582687661417979,"rawCurrentLoad":13812,"rawCurrentLoadUser":7453,"rawCurrentLoadSystem":6328,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":106218,"rawCurrentLoadIrq":31,"cpus":[{"load":13.10978655389431,"loadUser":6.293496720055942,"loadSystem":6.713063168059671,"loadNice":0,"loadIdle":86.89021344610569,"loadIrq":0.10322666577869534,"rawLoad":3937,"rawLoadUser":1890,"rawLoadSystem":2016,"rawLoadNice":0,"rawLoadIdle":26094,"rawLoadIrq":31},{"load":10.416666666666668,"loadUser":5.626666666666667,"loadSystem":4.79,"loadNice":0,"loadIdle":89.58333333333334,"loadIrq":0,"rawLoad":3125,"rawLoadUser":1688,"rawLoadSystem":1437,"rawLoadNice":0,"rawLoadIdle":26875,"rawLoadIrq":0},{"load":11.093703123437448,"loadUser":6.720224007466916,"loadSystem":4.373479115970532,"loadNice":0,"loadIdle":88.90629687656255,"loadIrq":0,"rawLoad":3328,"rawLoadUser":2016,"rawLoadSystem":1312,"rawLoadNice":0,"rawLoadIdle":26671,"rawLoadIrq":0},{"load":11.406666666666666,"loadUser":6.196666666666667,"loadSystem":5.21,"loadNice":0,"loadIdle":88.59333333333333,"loadIrq":0,"rawLoad":3422,"rawLoadUser":1859,"rawLoadSystem":1563,"rawLoadNice":0,"rawLoadIdle":26578,"rawLoadIrq":0}]}', '{"ESTABLISHED":25,"CLOSE":0,"TIME_WAIT":27,"LISTEN":32,"CLOSE_WAIT":0,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":355118614,"rx_dropped":0,"rx_errors":0,"tx_bytes":31749356,"tx_dropped":0,"tx_errors":0,"rx_sec":973.8805970149255,"tx_sec":115.00533049040513,"ms":30016}]', '{"total":10685313024,"free":4679213056,"used":6006099968,"active":6006099968,"available":4679213056,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2753560576,"swapused":17825792,"swapfree":2735734784}'), (401, '2022-04-02 17:53:22', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53898063872,"available":73378086912,"use":42.35,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":11.26982276119403,"currentLoadUser":6.2075226545842215,"currentLoadSystem":5.009828091684435,"currentLoadNice":0,"currentLoadIdle":88.73017723880598,"currentLoadIrq":0.05247201492537314,"rawCurrentLoad":13531,"rawCurrentLoadUser":7453,"rawCurrentLoadSystem":6015,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":106533,"rawCurrentLoadIrq":63,"cpus":[{"load":12.786481721717728,"loadUser":6.602800785018129,"loadSystem":5.974121012540333,"loadNice":0,"loadIdle":87.21351827828228,"loadIrq":0.20955992415926553,"rawLoad":3844,"rawLoadUser":1985,"rawLoadSystem":1796,"rawLoadNice":0,"rawLoadIdle":26219,"rawLoadIrq":63},{"load":10.206666666666667,"loadUser":6.3533333333333335,"loadSystem":3.8533333333333335,"loadNice":0,"loadIdle":89.79333333333334,"loadIrq":0,"rawLoad":3062,"rawLoadUser":1906,"rawLoadSystem":1156,"rawLoadNice":0,"rawLoadIdle":26938,"rawLoadIrq":0},{"load":11.71960934635512,"loadUser":6.196460117996066,"loadSystem":5.523149228359054,"loadNice":0,"loadIdle":88.28039065364489,"loadIrq":0,"rawLoad":3516,"rawLoadUser":1859,"rawLoadSystem":1657,"rawLoadNice":0,"rawLoadIdle":26485,"rawLoadIrq":0},{"load":10.363333333333333,"loadUser":5.676666666666667,"loadSystem":4.6866666666666665,"loadNice":0,"loadIdle":89.63666666666667,"loadIrq":0,"rawLoad":3109,"rawLoadUser":1703,"rawLoadSystem":1406,"rawLoadNice":0,"rawLoadIdle":26891,"rawLoadIrq":0}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":13,"LISTEN":32,"CLOSE_WAIT":0,"UNKNOWN":24,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":355151820,"rx_dropped":0,"rx_errors":0,"tx_bytes":31754770,"tx_dropped":0,"tx_errors":0,"rx_sec":1107.4942467398191,"tx_sec":180.56898909381982,"ms":29983}]', '{"total":10685313024,"free":4688166912,"used":5997146112,"active":5997146112,"available":4688166912,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2753560576,"swapused":17825792,"swapfree":2735734784}'), (402, '2022-04-02 17:53:52', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53898473472,"available":73377677312,"use":42.35,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":12.300416413853865,"currentLoadUser":6.844646879389591,"currentLoadSystem":5.299510443592962,"currentLoadNice":0,"currentLoadIdle":87.69958358614613,"currentLoadIrq":0.15625909087131068,"rawCurrentLoad":14799,"rawCurrentLoadUser":8235,"rawCurrentLoadSystem":6376,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":105514,"rawCurrentLoadIrq":188,"cpus":[{"load":13.406433232848578,"loadUser":6.41666942723689,"loadSystem":6.472985059793951,"loadNice":0,"loadIdle":86.59356676715142,"loadIrq":0.5167787458177361,"rawLoad":4047,"rawLoadUser":1937,"rawLoadSystem":1954,"rawLoadNice":0,"rawLoadIdle":26140,"rawLoadIrq":156},{"load":11.29166527921148,"loadUser":6.556558223169391,"loadSystem":4.73510705604209,"loadNice":0,"loadIdle":88.70833472078851,"loadIrq":0,"rawLoad":3391,"rawLoadUser":1969,"rawLoadSystem":1422,"rawLoadNice":0,"rawLoadIdle":26640,"rawLoadIrq":0},{"load":12.899361022364216,"loadUser":7.022097976570819,"loadSystem":5.824014909478168,"loadNice":0,"loadIdle":87.10063897763578,"loadIrq":0.05324813631522897,"rawLoad":3876,"rawLoadUser":2110,"rawLoadSystem":1750,"rawLoadNice":0,"rawLoadIdle":26172,"rawLoadIrq":16},{"load":11.598495690085532,"loadUser":7.385096681865077,"loadSystem":4.160149099743735,"loadNice":0,"loadIdle":88.40150430991447,"loadIrq":0.0532499084767198,"rawLoad":3485,"rawLoadUser":2219,"rawLoadSystem":1250,"rawLoadNice":0,"rawLoadIdle":26562,"rawLoadIrq":16}]}', '{"ESTABLISHED":22,"CLOSE":0,"TIME_WAIT":4,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":20,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":355236011,"rx_dropped":0,"rx_errors":0,"tx_bytes":31764356,"tx_dropped":0,"tx_errors":0,"rx_sec":2774.551805958344,"tx_sec":315.91088847877666,"ms":30344}]', '{"total":10685313024,"free":4647596032,"used":6037712896,"active":6037704704,"available":4647620608,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2753560576,"swapused":17825792,"swapfree":2735734784}'), (403, '2022-04-02 18:32:57', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53902426112,"available":73373724672,"use":42.35,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":52.959572845156366,"currentLoadUser":27.251461988304094,"currentLoadSystem":25.34706331045004,"currentLoadNice":0,"currentLoadIdle":47.04042715484363,"currentLoadIrq":0.3610475464022375,"rawCurrentLoad":20829,"rawCurrentLoadUser":10718,"rawCurrentLoadSystem":9969,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":18501,"rawCurrentLoadIrq":142,"cpus":[{"load":55.046427129592246,"loadUser":26.180863948324586,"loadSystem":27.75534921275737,"loadNice":0,"loadIdle":44.95357287040775,"loadIrq":1.1102139685102947,"rawLoad":5454,"rawLoadUser":2594,"rawLoadSystem":2750,"rawLoadNice":0,"rawLoadIdle":4454,"rawLoadIrq":110},{"load":50.794944965348556,"loadUser":25.1528740317978,"loadSystem":25.4790052996331,"loadNice":0,"loadIdle":49.205055034651444,"loadIrq":0.16306563391765186,"rawLoad":4984,"rawLoadUser":2468,"rawLoadSystem":2500,"rawLoadNice":0,"rawLoadIdle":4828,"rawLoadIrq":16},{"load":52.868643635993074,"loadUser":29.297870172220524,"loadSystem":23.40772444716193,"loadNice":0,"loadIdle":47.13135636400693,"loadIrq":0.16304901661061857,"rawLoad":5188,"rawLoadUser":2875,"rawLoadSystem":2297,"rawLoadNice":0,"rawLoadIdle":4625,"rawLoadIrq":16},{"load":53.1080943145861,"loadUser":28.386240685924264,"loadSystem":24.721853628661837,"loadNice":0,"loadIdle":46.8919056854139,"loadIrq":0,"rawLoad":5203,"rawLoadUser":2781,"rawLoadSystem":2422,"rawLoadNice":0,"rawLoadIdle":4594,"rawLoadIrq":0}]}', '{"ESTABLISHED":16,"CLOSE":0,"TIME_WAIT":0,"LISTEN":31,"CLOSE_WAIT":0,"UNKNOWN":20,"SYN_SENT":2,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":355728444,"rx_dropped":0,"rx_errors":0,"tx_bytes":31912720,"tx_dropped":0,"tx_errors":0,"rx_sec":209.9985713889724,"tx_sec":63.269984029408064,"ms":2344935}]', '{"total":10685313024,"free":4567195648,"used":6118117376,"active":6118117376,"available":4567195648,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2753560576,"swapused":17825792,"swapfree":2735734784}'), (404, '2022-04-02 18:33:27', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53861941248,"available":73414209536,"use":42.32,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":90.7641095729606,"currentLoadUser":55.01203223128716,"currentLoadSystem":34.58658594870161,"currentLoadNice":0,"currentLoadIdle":9.2358904270394,"currentLoadIrq":1.1654913929718353,"rawCurrentLoad":108248,"rawCurrentLoadUser":65609,"rawCurrentLoadSystem":41249,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":11015,"rawCurrentLoadIrq":1390,"cpus":[{"load":91.89894319682959,"loadUser":48.65918097754293,"loadSystem":40.55812417437252,"loadNice":0,"loadIdle":8.101056803170408,"loadIrq":2.6816380449141346,"rawLoad":27827,"rawLoadUser":14734,"rawLoadSystem":12281,"rawLoadNice":0,"rawLoadIdle":2453,"rawLoadIrq":812},{"load":90.305503102239,"loadUser":53.321418937145936,"loadSystem":36.35352036687348,"loadNice":0,"loadIdle":9.694496897760994,"loadIrq":0.6305637982195845,"rawLoad":26781,"rawLoadUser":15813,"rawLoadSystem":10781,"rawLoadNice":0,"rawLoadIdle":2875,"rawLoadIrq":187},{"load":89.67981125716211,"loadUser":57.18907987866532,"loadSystem":31.80653859116953,"loadNice":0,"loadIdle":10.320188742837884,"loadIrq":0.6841927873272666,"rawLoad":26608,"rawLoadUser":16968,"rawLoadSystem":9437,"rawLoadNice":0,"rawLoadIdle":3062,"rawLoadIrq":203},{"load":91.14880129480393,"loadUser":61.010891189263916,"loadSystem":29.503995683986915,"loadNice":0,"loadIdle":8.851198705196076,"loadIrq":0.6339144215530903,"rawLoad":27032,"rawLoadUser":18094,"rawLoadSystem":8750,"rawLoadNice":0,"rawLoadIdle":2625,"rawLoadIrq":188}]}', '{"ESTABLISHED":31,"CLOSE":0,"TIME_WAIT":20,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":31,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":3}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":387254003,"rx_dropped":0,"rx_errors":0,"tx_bytes":32065596,"tx_dropped":0,"tx_errors":0,"rx_sec":1051447.787079345,"tx_sec":5098.755961711637,"ms":29983}]', '{"total":10685313024,"free":4395474944,"used":6289838080,"active":6289838080,"available":4395474944,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":17825792,"swapfree":2532311040}'), (405, '2022-04-02 18:33:57', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53862146048,"available":73414004736,"use":42.32,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":38.171477249949895,"currentLoadUser":21.14067615420592,"currentLoadSystem":16.36517004075633,"currentLoadNice":0,"currentLoadIdle":61.828522750050105,"currentLoadIrq":0.6656310549876395,"rawCurrentLoad":45705,"rawCurrentLoadUser":25313,"rawCurrentLoadSystem":19595,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":74031,"rawCurrentLoadIrq":797,"cpus":[{"load":41.903853114408875,"loadUser":19.025369352768912,"loadSystem":20.719949985192983,"loadNice":0,"loadIdle":58.096146885591125,"loadIrq":2.1585337764469745,"rawLoad":12735,"rawLoadUser":5782,"rawLoadSystem":6297,"rawLoadNice":0,"rawLoadIdle":17656,"rawLoadIrq":656},{"load":34.87613861718934,"loadUser":20.42956539275991,"loadSystem":14.39279351954556,"loadNice":0,"loadIdle":65.12386138281066,"loadIrq":0.05377970488386945,"rawLoad":10376,"rawLoadUser":6078,"rawLoadSystem":4282,"rawLoadNice":0,"rawLoadIdle":19375,"rawLoadIrq":16},{"load":38.87918877174132,"loadUser":22.03680075213216,"loadSystem":16.684574575246796,"loadNice":0,"loadIdle":61.120811228258674,"loadIrq":0.15781344436236652,"rawLoad":11579,"rawLoadUser":6563,"rawLoadSystem":4969,"rawLoadNice":0,"rawLoadIdle":18203,"rawLoadIrq":47},{"load":36.948208774989936,"loadUser":23.1114987253455,"loadSystem":13.57507044143298,"loadNice":0,"loadIdle":63.05179122501007,"loadIrq":0.2616396082114585,"rawLoad":11015,"rawLoadUser":6890,"rawLoadSystem":4047,"rawLoadNice":0,"rawLoadIdle":18797,"rawLoadIrq":78}]}', '{"ESTABLISHED":31,"CLOSE":0,"TIME_WAIT":20,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":21,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":387302865,"rx_dropped":0,"rx_errors":0,"tx_bytes":32078612,"tx_dropped":0,"tx_errors":0,"rx_sec":1717.3485168002248,"tx_sec":457.4722339378602,"ms":28452}]', '{"total":10685313024,"free":4486848512,"used":6198464512,"active":6198464512,"available":4486848512,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":17825792,"swapfree":2532311040}'), (406, '2022-04-02 18:34:25', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53867520000,"available":73408630784,"use":42.32,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":50.54203008887639,"currentLoadUser":30.786481521325364,"currentLoadSystem":19.16138428692011,"currentLoadNice":0,"currentLoadIdle":49.45796991112362,"currentLoadIrq":0.5941642806309065,"rawCurrentLoad":61076,"rawCurrentLoadUser":37203,"rawCurrentLoadSystem":23155,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":59766,"rawCurrentLoadIrq":718,"cpus":[{"load":52.40419259744513,"loadUser":28.60792662954471,"loadSystem":22.158532590894204,"loadNice":0,"loadIdle":47.59580740255486,"loadIrq":1.6377333770062235,"rawLoad":15999,"rawLoadUser":8734,"rawLoadSystem":6765,"rawLoadNice":0,"rawLoadIdle":14531,"rawLoadIrq":500},{"load":49.11427810335642,"loadUser":29.39531166755461,"loadSystem":19.71896643580181,"loadNice":0,"loadIdle":50.885721896643574,"loadIrq":0,"rawLoad":14750,"rawLoadUser":8828,"rawLoadSystem":5922,"rawLoadNice":0,"rawLoadIdle":15282,"rawLoadIrq":0},{"load":48.88239396858082,"loadUser":30.30655285794945,"loadSystem":18.316782357434654,"loadNice":0,"loadIdle":51.11760603141917,"loadIrq":0.25905875319671856,"rawLoad":14718,"rawLoadUser":9125,"rawLoadSystem":5515,"rawLoadNice":0,"rawLoadIdle":15391,"rawLoadIrq":78},{"load":51.7351098737198,"loadUser":34.85466176129396,"loadSystem":16.41642636969275,"loadNice":0,"loadIdle":48.2648901262802,"loadIrq":0.4640217427330881,"rawLoad":15609,"rawLoadUser":10516,"rawLoadSystem":4953,"rawLoadNice":0,"rawLoadIdle":14562,"rawLoadIrq":140}]}', '{"ESTABLISHED":36,"CLOSE":0,"TIME_WAIT":23,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":25,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":388225524,"rx_dropped":0,"rx_errors":0,"tx_bytes":32291326,"tx_dropped":0,"tx_errors":0,"rx_sec":32035.658484080417,"tx_sec":7385.646331724593,"ms":28801}]', '{"total":10685313024,"free":4346355712,"used":6338957312,"active":6338957312,"available":4346355712,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":16777216,"swapfree":2533359616}'), (407, '2022-04-02 18:34:56', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53868847104,"available":73407303680,"use":42.32,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":46.93016780486198,"currentLoadUser":27.056371559670815,"currentLoadSystem":18.882783731907637,"currentLoadNice":0,"currentLoadIdle":53.06983219513802,"currentLoadIrq":0.9910125132835219,"rawCurrentLoad":56969,"rawCurrentLoadUser":32844,"rawCurrentLoadSystem":22922,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":64422,"rawCurrentLoadIrq":1203,"cpus":[{"load":50.831047280942386,"loadUser":24.96046474100371,"loadSystem":22.84331127965144,"loadNice":0,"loadIdle":49.16895271905761,"loadIrq":3.0272712602872356,"rawLoad":15750,"rawLoadUser":7734,"rawLoadSystem":7078,"rawLoadNice":0,"rawLoadIdle":15235,"rawLoadIrq":938},{"load":43.803709479412056,"loadUser":25.611334151763497,"loadSystem":17.883805036663457,"loadNice":0,"loadIdle":56.196290520587944,"loadIrq":0.30857029098510236,"rawLoad":13202,"rawLoadUser":7719,"rawLoadSystem":5390,"rawLoadNice":0,"rawLoadIdle":16937,"rawLoadIrq":93},{"load":46.00431965442765,"loadUser":28.14088719056322,"loadSystem":17.70726034224954,"loadNice":0,"loadIdle":53.99568034557235,"loadIrq":0.1561721216148862,"rawLoad":13845,"rawLoadUser":8469,"rawLoadSystem":5329,"rawLoadNice":0,"rawLoadIdle":16250,"rawLoadIrq":47},{"load":46.97070131247514,"loadUser":29.57046268063105,"loadSystem":16.985947235847807,"loadNice":0,"loadIdle":53.029298687524864,"loadIrq":0.414291395996288,"rawLoad":14172,"rawLoadUser":8922,"rawLoadSystem":5125,"rawLoadNice":0,"rawLoadIdle":16000,"rawLoadIrq":125}]}', '{"ESTABLISHED":47,"CLOSE":0,"TIME_WAIT":30,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":21,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":0,"FIN_WAIT2":1}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":389623101,"rx_dropped":0,"rx_errors":0,"tx_bytes":35015072,"tx_dropped":0,"tx_errors":0,"rx_sec":43989.07809008215,"tx_sec":85730.57190519656,"ms":31771}]', '{"total":10685313024,"free":4255100928,"used":6430212096,"active":6430212096,"available":4255100928,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":16777216,"swapfree":2533359616}'), (408, '2022-04-02 20:59:50', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53808021504,"available":73468129280,"use":42.28,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":83.78623188405797,"currentLoadUser":46.625258799171846,"currentLoadSystem":36.95910973084886,"currentLoadNice":0,"currentLoadIdle":16.213768115942027,"currentLoadIrq":0.20186335403726707,"rawCurrentLoad":32375,"rawCurrentLoadUser":18016,"rawCurrentLoadSystem":14281,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":6265,"rawCurrentLoadIrq":78,"cpus":[{"load":84.8706585592085,"loadUser":45.25404514067814,"loadSystem":38.977635782747605,"loadNice":0,"loadIdle":15.129341440791508,"loadIrq":0.6389776357827476,"rawLoad":8235,"rawLoadUser":4391,"rawLoadSystem":3782,"rawLoadNice":0,"rawLoadIdle":1468,"rawLoadIrq":62},{"load":82.97894409293642,"loadUser":46.18815475573073,"loadSystem":36.79078933720568,"loadNice":0,"loadIdle":17.02105590706358,"loadIrq":0,"rawLoad":8000,"rawLoadUser":4453,"rawLoadSystem":3547,"rawLoadNice":0,"rawLoadIdle":1641,"rawLoadIrq":0},{"load":83.63070539419087,"loadUser":45.871369294605806,"loadSystem":37.75933609958506,"loadNice":0,"loadIdle":16.369294605809127,"loadIrq":0,"rawLoad":8062,"rawLoadUser":4422,"rawLoadSystem":3640,"rawLoadNice":0,"rawLoadIdle":1578,"rawLoadIrq":0},{"load":83.65782932891467,"loadUser":49.19221209610605,"loadSystem":34.299917149958574,"loadNice":0,"loadIdle":16.342170671085334,"loadIrq":0.16570008285004142,"rawLoad":8078,"rawLoadUser":4750,"rawLoadSystem":3312,"rawLoadNice":0,"rawLoadIdle":1578,"rawLoadIrq":16}]}', '{"ESTABLISHED":17,"CLOSE":0,"TIME_WAIT":0,"LISTEN":31,"CLOSE_WAIT":0,"UNKNOWN":20,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":6,"FIN_WAIT2":0}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":405833022,"rx_dropped":0,"rx_errors":0,"tx_bytes":35162465,"tx_dropped":0,"tx_errors":0,"rx_sec":1864.4346939747297,"tx_sec":16.952866263137086,"ms":8694282}]', '{"total":10685313024,"free":4099391488,"used":6585921536,"active":6585921536,"available":4099391488,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":16777216,"swapfree":2533359616}'), (409, '2022-04-02 21:00:17', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53851746304,"available":73424404480,"use":42.31,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":98.80467932086121,"currentLoadUser":56.058992216304794,"currentLoadSystem":42.03468523829032,"currentLoadNice":0,"currentLoadIdle":1.1953206791387865,"currentLoadIrq":0.7110018662661023,"rawCurrentLoad":108532,"rawCurrentLoadUser":61578,"rawCurrentLoadSystem":46173,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":1313,"rawCurrentLoadIrq":781,"cpus":[{"load":99.32330285796559,"loadUser":51.57296090994169,"loadSystem":45.89302426031243,"loadNice":0,"loadIdle":0.6766971420344108,"loadIrq":1.8573176877114679,"rawLoad":27594,"rawLoadUser":14328,"rawLoadSystem":12750,"rawLoadNice":0,"rawLoadIdle":188,"rawLoadIrq":516},{"load":98.63093716914315,"loadUser":54.13456974918769,"loadSystem":44.04001314300318,"loadNice":0,"loadIdle":1.3690628308568507,"loadIrq":0.45635427695228364,"rawLoad":27016,"rawLoadUser":14828,"rawLoadSystem":12063,"rawLoadNice":0,"rawLoadIdle":375,"rawLoadIrq":125},{"load":98.51515927294005,"loadUser":59.71546648136634,"loadSystem":38.51442782430603,"loadNice":0,"loadIdle":1.4848407270599422,"loadIrq":0.28526496726767364,"rawLoad":26937,"rawLoadUser":16328,"rawLoadSystem":10531,"rawLoadNice":0,"rawLoadIdle":406,"rawLoadIrq":78},{"load":98.74126385890446,"loadUser":58.889823996487245,"loadSystem":39.62457462768488,"loadNice":0,"loadIdle":1.2587361410955396,"loadIrq":0.2268652347323356,"rawLoad":26985,"rawLoadUser":16094,"rawLoadSystem":10829,"rawLoadNice":0,"rawLoadIdle":344,"rawLoadIrq":62}]}', '{"ESTABLISHED":82,"CLOSE":0,"TIME_WAIT":23,"LISTEN":32,"CLOSE_WAIT":1,"UNKNOWN":44,"SYN_SENT":1,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":2,"FIN_WAIT2":3}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":412405953,"rx_dropped":0,"rx_errors":0,"tx_bytes":35672152,"tx_dropped":0,"tx_errors":0,"rx_sec":252455.48471347365,"tx_sec":19576.240589952373,"ms":26036}]', '{"total":10685313024,"free":3643707392,"used":7041605632,"active":7041605632,"available":3643707392,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":16777216,"swapfree":2533359616}'), (410, '2022-04-02 21:00:45', '[{"fs":"C:","type":"NTFS","size":127276150784,"used":53849780224,"available":73426370560,"use":42.31,"mount":"C:"}]', '{"avgLoad":0,"currentLoad":38.501240364284165,"currentLoadUser":20.94134492116611,"currentLoadSystem":16.934718545527197,"currentLoadNice":0,"currentLoadIdle":61.49875963571583,"currentLoadIrq":0.6251768975908629,"rawCurrentLoad":46250,"rawCurrentLoadUser":25156,"rawCurrentLoadSystem":20343,"rawCurrentLoadNice":0,"rawCurrentLoadIdle":73876,"rawCurrentLoadIrq":751,"cpus":[{"load":40.39005459448793,"loadUser":17.575478523975534,"loadSystem":20.96625665986976,"loadNice":0,"loadIdle":59.609945405512065,"loadIrq":1.8483194106426362,"rawLoad":12281,"rawLoadUser":5344,"rawLoadSystem":6375,"rawLoadNice":0,"rawLoadIdle":18125,"rawLoadIrq":562},{"load":36.41037625613461,"loadUser":20.291790471739056,"loadSystem":15.751343771909324,"loadNice":0,"loadIdle":63.58962374386539,"loadIrq":0.3672420124862284,"rawLoad":10906,"rawLoadUser":6078,"rawLoadSystem":4718,"rawLoadNice":0,"rawLoadIdle":19047,"rawLoadIrq":110},{"load":41.24318356695996,"loadUser":24.044026630089324,"loadSystem":17.041918972265897,"loadNice":0,"loadIdle":58.75681643304005,"loadIrq":0.15723796460473052,"rawLoad":12328,"rawLoadUser":7187,"rawLoadSystem":5094,"rawLoadNice":0,"rawLoadIdle":17563,"rawLoadIrq":47},{"load":35.93185165350114,"loadUser":21.913910831436606,"loadSystem":13.910831436604632,"loadNice":0,"loadIdle":64.06814834649886,"loadIrq":0.10710938545990091,"rawLoad":10735,"rawLoadUser":6547,"rawLoadSystem":4156,"rawLoadNice":0,"rawLoadIdle":19141,"rawLoadIrq":32}]}', '{"ESTABLISHED":26,"CLOSE":0,"TIME_WAIT":61,"LISTEN":32,"CLOSE_WAIT":0,"UNKNOWN":27,"SYN_SENT":0,"SYN_RECV":0,"LAST_ACK":0,"FIN_WAIT1":3,"FIN_WAIT2":2}', '[{"iface":"Wi-Fi","operstate":"up","rx_bytes":413526962,"rx_dropped":0,"rx_errors":0,"tx_bytes":35708137,"tx_dropped":0,"tx_errors":0,"rx_sec":39202.97254764819,"tx_sec":1258.43678964854,"ms":28595}]', '{"total":10685313024,"free":4327833600,"used":6357479424,"active":6357479424,"available":4327833600,"buffers":0,"cached":0,"slab":0,"buffcache":0,"swaptotal":2550136832,"swapused":16777216,"swapfree":2533359616}'); /*!40000 ALTER TABLE `server_data` ENABLE KEYS */; -- Volcando estructura para tabla healtyserver.usuarios CREATE TABLE IF NOT EXISTS `usuarios` ( `iduser` int(11) NOT NULL AUTO_INCREMENT, `nombre` text COLLATE utf8mb3_spanish_ci DEFAULT NULL, `usuario` text COLLATE utf8mb3_spanish_ci DEFAULT NULL, `password` text COLLATE utf8mb3_spanish_ci DEFAULT NULL, `level` int(11) NOT NULL, PRIMARY KEY (`iduser`), KEY `iduser` (`iduser`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_spanish_ci; -- Volcando datos para la tabla healtyserver.usuarios: ~0 rows (aproximadamente) /*!40000 ALTER TABLE `usuarios` DISABLE KEYS */; INSERT INTO `usuarios` (`iduser`, `nombre`, `usuario`, `password`, `level`) VALUES (1, 'Administrador', 'admin', '<KEY>', 1); /*!40000 ALTER TABLE `usuarios` ENABLE KEYS */; /*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; /*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;
<gh_stars>1-10 SET QUOTED_IDENTIFIER OFF; GO USE [IndexDatastore]; GO IF SCHEMA_ID(N'dbo') IS NULL EXECUTE(N'CREATE SCHEMA [dbo]'); GO -- -------------------------------------------------- -- Creating all tables -- -------------------------------------------------- -- Creating table 'Associations' if it doesn't exist CREATE TABLE [dbo].[Associations] ( [indexId] bigint IDENTITY(1,1), [xId] uniqueidentifier NOT NULL, [xIdTarget] uniqueidentifier NOT NULL, [ExternalName] nvarchar(120) NOT NULL, [AssociationType] varchar(15) NOT NULL, [Details] nvarchar(240) NULL ); GO -- Create a type for passing Associations lists as parameters to stored procedures CREATE TYPE [dbo].[AssociationListParam] AS TABLE ( [ExternalName] nvarchar(120) NULL, [TargetEntityId] uniqueidentifier NOT NULL, [AssociationType] varchar(15) NOT NULL, [Details] nvarchar(240) NULL ); GO -- Creating new version of AzureKeyFields table 'AzureKeyFieldsVersioned' CREATE TABLE [dbo].[AzureKeyFieldsVersioned] ( [indexId] bigint IDENTITY(1,1), [xId] uniqueidentifier NOT NULL, [StorageAccountName] varchar(120) NOT NULL, [TableName] varchar(120) NULL, [Partition] varchar(120) NULL, [RowId] uniqueidentifier NOT NULL, [LocalVersion] int NOT NULL, [VersionTimestamp] datetime NULL ); GO -- Creating table 'EntityId' CREATE TABLE [dbo].[EntityId] ( [xId] uniqueidentifier NOT NULL, [StorageType] varchar(20) NOT NULL, [Version] int NOT NULL, [CreateDate] datetime NOT NULL, [LastModifiedDate] datetime NOT NULL, [WriteLock] bit NOT NULL, [HomeStorageAccountName] varchar(120) NOT NULL, [LastModifiedUser] nvarchar(120) NULL, [SchemaVersion] int NULL, [ExternalName] nvarchar(120) NULL, [EntityCategory] nvarchar(120) NULL, [ExternalType] nvarchar(120) NULL, [Active] bit NOT NULL CONSTRAINT DF_EntityId_Active DEFAULT 1 ); GO -- Create a type for passing EntityId lists as parameters to stored procedures CREATE TYPE [dbo].[EntityIdListParam] AS TABLE ( [ExternalEntityId] uniqueidentifier NOT NULL ); GO -- Creating table 'S3KeyFields' CREATE TABLE [dbo].[S3KeyFields] ( [xId] uniqueidentifier NOT NULL, [StorageAccountName] varchar(120) NOT NULL, [TBDS3] varchar(max) NULL, [LocalVersion] int NOT NULL ); GO -- Creating table 'StorageAccount' CREATE TABLE [dbo].[StorageAccount] ( [StorageAccountName] varchar(120) NOT NULL, [StorageAddress] varchar(750) NOT NULL, [StorageType] varchar(20) NULL ); GO -- Creating table 'XmlKeyFields' CREATE TABLE [dbo].[XmlKeyFields] ( [xId] uniqueidentifier NOT NULL, [StorageAccountName] varchar(120) NOT NULL, [TableName] varchar(120) NULL, [Partition] varchar(120) NULL, [RowId] uniqueidentifier NOT NULL, [LocalVersion] int NOT NULL ); GO -- Creating table 'UserAccess' CREATE TABLE [dbo].[UserAccess] ( [xId] uniqueidentifier NOT NULL, [AccessDescriptor] varchar(240) NOT NULL, ); GO -- -------------------------------------------------- -- Creating all PRIMARY KEY constraints -- -------------------------------------------------- -- Creating primary key on [indexId] in table 'Associations' ALTER TABLE [dbo].[Associations] ADD CONSTRAINT [PK_Associations_New] PRIMARY KEY CLUSTERED ([indexId] ASC) GO -- Creating primary key clustered index on [indexId] in table 'AzureKeyFieldsVersioned' ALTER TABLE [dbo].[AzureKeyFieldsVersioned] ADD CONSTRAINT [PK_AzureKeyFieldsVersioned] PRIMARY KEY CLUSTERED ([indexId] ASC); GO -- Creating non-clustered index on [xId], [StorageAccountName], [LocalVersion] in table 'AzureKeyFieldsVersioned' ALTER TABLE [dbo].[AzureKeyFieldsVersioned] ADD CONSTRAINT [UK_AzureKeyFieldsVersioned] UNIQUE NONCLUSTERED ([xId], [StorageAccountName], [LocalVersion]); GO -- Creating primary key on [xId] in table 'EntityId' ALTER TABLE [dbo].[EntityId] ADD CONSTRAINT [PK_EntityId] PRIMARY KEY CLUSTERED ([xId] ASC); GO -- Creating primary key on [xId] in table 'S3KeyFields' ALTER TABLE [dbo].[S3KeyFields] ADD CONSTRAINT [PK_S3KeyFields] PRIMARY KEY CLUSTERED ([xId] ASC); GO -- Creating primary key on [StorageAccountName] in table 'StorageAccount' ALTER TABLE [dbo].[StorageAccount] ADD CONSTRAINT [PK_StorageAccount] PRIMARY KEY CLUSTERED ([StorageAccountName] ASC); GO -- Creating primary key on [xId] in table 'XmlKeyFields' ALTER TABLE [dbo].[XmlKeyFields] ADD CONSTRAINT [PK_XmlKeyFields] PRIMARY KEY CLUSTERED ([xId] ASC); GO -- -------------------------------------------------- -- Creating Indexes -- -------------------------------------------------- -- Creating clustered index on [xId] in table 'UserAccess' IF OBJECT_ID(N'[dbo].[IX_UserAccess]', 'U') IS NULL CREATE CLUSTERED INDEX IX_UserAccess ON [dbo].[UserAccess] (xId); GO -- Creating non-clustered indexs on table Associations on [xId] and [xIdTarget] CREATE NONCLUSTERED INDEX [IX_Associations_xId] ON [dbo].[Associations] ([xId]); GO CREATE NONCLUSTERED INDEX [IX_Associations_xIdTarget] ON [dbo].[Associations] ([xIdTarget]); GO -- -------------------------------------------------- -- Script has ended -- --------------------------------------------------
<reponame>teaey/test-load create database if not exists `test_load`; use test_load; DROP TABLE IF EXISTS `player`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `player` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `account` varchar(64) NOT NULL, `logical_server_id` int(11) NOT NULL DEFAULT '1', `nickname` varchar(64) NOT NULL DEFAULT '', `avatar_id` int(11) NOT NULL DEFAULT '1', `level` int(11) NOT NULL DEFAULT '1', `exp` int(11) NOT NULL DEFAULT '0', `vip_level` int(11) NOT NULL DEFAULT '0', `unlocked_bag` int(11) NOT NULL DEFAULT '24', `unlocked_bag_bought` int(11) NOT NULL DEFAULT '0', `unlocked_guaji_bag` int(11) NOT NULL DEFAULT '12' COMMENT '已解锁挂机背包格数', `unlocked_guaji_bag_bought` int(11) NOT NULL DEFAULT '0', `game_level_id_` int(11) NOT NULL DEFAULT '1', `power_upper` int(11) NOT NULL DEFAULT '50', `energy_upper` int(11) NOT NULL DEFAULT '5', `power` int(11) NOT NULL DEFAULT '0' COMMENT '体力值', `energy` int(11) NOT NULL DEFAULT '0' COMMENT '精力值', `soul` int(11) NOT NULL DEFAULT '0' COMMENT '魂力', `coin` int(11) NOT NULL DEFAULT '0', `yuanbao` int(11) NOT NULL DEFAULT '0', `yuanbao_recharged` int(11) NOT NULL DEFAULT '0', `yuanbao_consumed` int(11) NOT NULL DEFAULT '0', `buff_atk_start` datetime DEFAULT NULL COMMENT '攻击加成状态开始时间', `buff_atk_duration_sec` int(11) DEFAULT '0' COMMENT '攻击加成状态持续时间', `buff_atk_rate` float DEFAULT NULL COMMENT '攻击上升百分比', `buff_def_start` datetime DEFAULT NULL COMMENT '防御加成状态开始时间', `buff_def_duration_sec` int(11) DEFAULT '0', `buff_def_rate` float DEFAULT NULL, `buff_exp_start` datetime DEFAULT NULL, `buff_exp_duration_sec` int(11) DEFAULT '0', `buff_exp_rate` float DEFAULT NULL, `buff_hp_start` datetime DEFAULT NULL, `buff_hp_duration_sec` int(11) DEFAULT '0', `buff_hp_rate` float DEFAULT NULL, `fighting` int(11) NOT NULL DEFAULT '0', `arena_ranking` int(11) NOT NULL DEFAULT '0', `status` int(11) NOT NULL DEFAULT '1', `created` datetime DEFAULT NULL, `is_first_steal` tinyint(1) NOT NULL DEFAULT '1', `last_bonus_npc_id_` int(11) DEFAULT NULL, `ver` int(11) NOT NULL DEFAULT '0', `total_points` int(11) NOT NULL DEFAULT '0', `current_credits` int(11) NOT NULL DEFAULT '0', `daily_fighting_cnt` int(11) NOT NULL DEFAULT '0', `daily_stealing_times` int(11) NOT NULL DEFAULT '0' COMMENT '化缘陌生人次数', `daily_yuanbao_from_monster` int(11) NOT NULL DEFAULT '0', `daily_used_pantao_times` int(11) NOT NULL DEFAULT '0', `daily_used_renshenguo_times` int(11) NOT NULL DEFAULT '0', `src_channel` varchar(255) NOT NULL DEFAULT '''''', `last_login_bonus_time` datetime DEFAULT NULL COMMENT '实际是上次领奖时间,待修改为last_login_bonus_time', `is_first_rob_fabao_frag` tinyint(1) NOT NULL DEFAULT '1', `has_generated_fabao_from_frag` int(11) NOT NULL DEFAULT '0', `guaji_num` int(11) NOT NULL DEFAULT '0', `daily_guaji_times` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_nickname` (`nickname`,`logical_server_id`), UNIQUE KEY `idx_player` (`logical_server_id`,`account`) ) ENGINE=InnoDB AUTO_INCREMENT=500001 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `player_all_in_one` -- DROP TABLE IF EXISTS `player_all_in_one`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `player_all_in_one` ( `id` int(11) NOT NULL AUTO_INCREMENT, `daily_guaji_times` int(11) NOT NULL DEFAULT '0', `guaji_num` int(11) NOT NULL DEFAULT '0', `has_generated_fabao_from_frag` int(11) NOT NULL DEFAULT '0', `is_first_rob_fabao_frag` tinyint(1) NOT NULL DEFAULT '1', `last_login_bonus_time` datetime DEFAULT NULL COMMENT '实际是上次领奖时间,待修改为last_login_bonus_time', `src_channel` varchar(255) NOT NULL DEFAULT '''''', `daily_used_renshenguo_times` int(11) NOT NULL DEFAULT '0', `daily_used_pantao_times` int(11) NOT NULL DEFAULT '0', `daily_yuanbao_from_monster` int(11) NOT NULL DEFAULT '0', `daily_stealing_times` int(11) NOT NULL DEFAULT '0' COMMENT '化缘陌生人次数', `daily_fighting_cnt` int(11) NOT NULL DEFAULT '0', `current_credits` int(11) NOT NULL DEFAULT '0', `total_points` int(11) NOT NULL DEFAULT '0', `ver` int(11) NOT NULL DEFAULT '0', `last_bonus_npc_id_` int(11) DEFAULT NULL, `is_first_steal` tinyint(1) NOT NULL DEFAULT '1', `created` datetime DEFAULT NULL, `status` int(11) NOT NULL DEFAULT '1', `arena_ranking` int(11) NOT NULL DEFAULT '0', `fighting` int(11) NOT NULL DEFAULT '0', `buff_hp_rate` float DEFAULT NULL, `buff_hp_duration_sec` int(11) DEFAULT '0', `buff_hp_start` datetime DEFAULT NULL, `buff_exp_rate` float DEFAULT NULL, `buff_exp_duration_sec` int(11) DEFAULT '0', `buff_exp_start` datetime DEFAULT NULL, `buff_def_rate` float DEFAULT NULL, `buff_def_duration_sec` int(11) DEFAULT '0', `buff_def_start` datetime DEFAULT NULL COMMENT '防御加成状态开始时间', `buff_atk_rate` float DEFAULT NULL COMMENT '攻击上升百分比', `buff_atk_duration_sec` int(11) DEFAULT '0' COMMENT '攻击加成状态持续时间', `buff_atk_start` datetime DEFAULT NULL COMMENT '攻击加成状态开始时间', `yuanbao_consumed` int(11) NOT NULL DEFAULT '0', `yuanbao_recharged` int(11) NOT NULL DEFAULT '0', `yuanbao` int(11) NOT NULL DEFAULT '0', `coin` int(11) NOT NULL DEFAULT '0', `soul` int(11) NOT NULL DEFAULT '0' COMMENT '魂力', `energy` int(11) NOT NULL DEFAULT '0' COMMENT '精力值', `power` int(11) NOT NULL DEFAULT '0' COMMENT '体力值', `energy_upper` int(11) NOT NULL DEFAULT '5', `power_upper` int(11) NOT NULL DEFAULT '50', `game_level_id_` int(11) NOT NULL DEFAULT '1', `unlocked_guaji_bag_bought` int(11) NOT NULL DEFAULT '0', `unlocked_guaji_bag` int(11) NOT NULL DEFAULT '12' COMMENT '已解锁挂机背包格数', `unlocked_bag_bought` int(11) NOT NULL DEFAULT '0', `unlocked_bag` int(11) NOT NULL DEFAULT '24', `vip_level` int(11) NOT NULL DEFAULT '0', `exp` int(11) NOT NULL DEFAULT '0', `level` int(11) NOT NULL DEFAULT '1', `avatar_id` int(11) NOT NULL DEFAULT '1', `nickname` varchar(64) NOT NULL DEFAULT '', `logical_server_id` int(11) NOT NULL DEFAULT '1', `account` varchar(64) NOT NULL, `bag_blob` blob, `wuxing_raffle_info_blob` blob, `task_level_battle_again_blob` blob, `wuxing_card_blob` blob, `friend_blob` blob, `msg_blob` blob, `recharge_blob` blob, `event_sys_blob` blob, `guaji_blob` blob, PRIMARY KEY (`id`), UNIQUE KEY `id_UNIQUE` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=500000 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `player_bag` -- DROP TABLE IF EXISTS `player_bag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `player_bag` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `player_id_` int(10) unsigned NOT NULL DEFAULT '0', `bag_type` int(11) NOT NULL DEFAULT '0', `cell_id` int(11) unsigned NOT NULL DEFAULT '0', `item_type` int(11) NOT NULL DEFAULT '0', `item_id_` int(11) unsigned NOT NULL DEFAULT '0', `item_amt` int(11) NOT NULL DEFAULT '0', `equip_enh_level` int(11) DEFAULT NULL, `equip_grade` int(11) DEFAULT NULL, `equip_coin_selling` int(11) NOT NULL DEFAULT '0', `bag_sort_num` int(11) NOT NULL DEFAULT '102400', PRIMARY KEY (`id`), UNIQUE KEY `idx_id` (`id`), KEY `idx_pid_bag` (`player_id_`) ) ENGINE=InnoDB AUTO_INCREMENT=10000001 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `player_event_sys` -- DROP TABLE IF EXISTS `player_event_sys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `player_event_sys` ( `id` int(11) NOT NULL AUTO_INCREMENT, `type` int(11) NOT NULL, `player_id_` int(11) NOT NULL, `other_player_id_` int(11) DEFAULT NULL, `other_player_name` varchar(63) DEFAULT NULL, `event_content` varchar(127) NOT NULL, `event_time` datetime NOT NULL, `ref_process_id_` int(11) NOT NULL DEFAULT '0', `is_processed` tinyint(1) NOT NULL DEFAULT '0', `is_read` tinyint(1) NOT NULL DEFAULT '0', `item_type` int(11) DEFAULT NULL, `item_id_` int(11) DEFAULT NULL, `item_amt` int(11) DEFAULT NULL, `guaji_num` int(11) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `idx_id` (`id`), KEY `player_id_idx` (`player_id_`) ) ENGINE=InnoDB AUTO_INCREMENT=5000001 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `player_friend` -- DROP TABLE IF EXISTS `player_friend`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `player_friend` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `player_id_` int(10) unsigned NOT NULL DEFAULT '0', `friend_id_` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'NPC也存储到player', `establish_time` datetime NOT NULL, `is_allow_guaji_stolen` tinyint(1) NOT NULL DEFAULT '0' COMMENT '在本次挂机中,是否允许被friend_id_偷', `logical_server_id` int(11) NOT NULL DEFAULT '1', PRIMARY KEY (`id`), UNIQUE KEY `idx_id` (`id`), KEY `player_id_idx` (`player_id_`) ) ENGINE=InnoDB AUTO_INCREMENT=5000001 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `player_guaji` -- DROP TABLE IF EXISTS `player_guaji`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `player_guaji` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `player_id_` int(11) unsigned NOT NULL DEFAULT '0', `logical_server_id` int(11) NOT NULL DEFAULT '1', `guaji_start_time` datetime DEFAULT NULL COMMENT '挂机开始时间', `guaji_timeout_time` datetime DEFAULT NULL, `guaji_zone_id_` int(11) DEFAULT '0' COMMENT '挂机地点', `guaji_duration_sec` int(11) DEFAULT '0' COMMENT '挂机时长', `guaji_last_view_time` datetime DEFAULT NULL, `guaji_monster_cnt` int(11) DEFAULT '0', `guaji_coin_got` int(11) DEFAULT '0', `guaji_exp_got` int(11) DEFAULT '0', `guaji_drop_cnt` int(11) DEFAULT '0', `guaji_yuanbao_got` int(11) DEFAULT '0', `guaji_status` int(11) NOT NULL DEFAULT '4', `guaji_stolen_times` int(11) DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_id` (`id`), KEY `player_id_idx` (`player_id_`) ) ENGINE=InnoDB AUTO_INCREMENT=500001 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `player_msg` -- DROP TABLE IF EXISTS `player_msg`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `player_msg` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `player_id_` int(10) unsigned NOT NULL DEFAULT '0', `from_type` int(11) unsigned NOT NULL DEFAULT '0', `content` varchar(1023) NOT NULL DEFAULT '', `msg_time` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `idx_id` (`id`), KEY `player_id_idx` (`player_id_`) ) ENGINE=InnoDB AUTO_INCREMENT=500001 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `player_recharge` -- DROP TABLE IF EXISTS `player_recharge`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `player_recharge` ( `id` int(11) NOT NULL AUTO_INCREMENT, `player_id_` int(11) NOT NULL, `total_amount` int(11) NOT NULL, `last_op_time` datetime NOT NULL, `ver` int(11) NOT NULL DEFAULT '0', `add_time` datetime DEFAULT NULL, `modify_time` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `idx_id` (`id`) USING BTREE, KEY `player_id__UNIQUE` (`player_id_`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=500001 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `player_task_level_battle_again` -- DROP TABLE IF EXISTS `player_task_level_battle_again`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `player_task_level_battle_again` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `player_id_` int(10) unsigned NOT NULL, `task_level_id_` int(11) NOT NULL, `level_type` int(11) NOT NULL, `remaining_fight_cnt` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_id` (`id`), KEY `idx_pid_lvl_btlagn` (`player_id_`) ) ENGINE=InnoDB AUTO_INCREMENT=34999931 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `player_wuxing_card` -- DROP TABLE IF EXISTS `player_wuxing_card`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `player_wuxing_card` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(45) NOT NULL, `player_id_` int(11) NOT NULL, `tpl_id` int(11) NOT NULL, `cur_exp` int(11) NOT NULL DEFAULT '0', `upgrade_exp` int(11) NOT NULL DEFAULT '0', `level` int(11) NOT NULL DEFAULT '1', `card_grade` int(11) NOT NULL, `wuxing_type` int(11) NOT NULL, `buf_type` int(11) NOT NULL, `buf_value` float NOT NULL, `grow_rate` float NOT NULL, `star_add_rate` float NOT NULL DEFAULT '0', `star_level` int(11) NOT NULL DEFAULT '0', `equipped_wuxing_type` int(11) DEFAULT NULL, `is_equipped` tinyint(1) NOT NULL, `is_ex` tinyint(1) NOT NULL, `base_exp` int(11) NOT NULL, `used_exp` int(11) NOT NULL, `create_dt` datetime DEFAULT NULL, `last_update_dt` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id_UNIQUE` (`id`), KEY `idx_pid_card` (`player_id_`) ) ENGINE=InnoDB AUTO_INCREMENT=29999999 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `player_wuxing_raffle_info` -- DROP TABLE IF EXISTS `player_wuxing_raffle_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `player_wuxing_raffle_info` ( `id` int(11) NOT NULL AUTO_INCREMENT, `player_id_` int(11) DEFAULT NULL, `raffle_type` int(11) DEFAULT NULL, `remain_time_span` int(11) DEFAULT NULL, `daily_remain_free_times` int(11) DEFAULT NULL, `is_first_yb` tinyint(1) DEFAULT NULL, `req_yb_amt` int(11) DEFAULT NULL, `card_cnt_yb` int(11) DEFAULT NULL, `accumulate_times` int(11) DEFAULT NULL, `total_compensate_times` int(11) DEFAULT NULL, `round_start_dt` datetime DEFAULT NULL, `create_dt` datetime DEFAULT NULL, `last_update_dt` datetime DEFAULT NULL, `logical_server_id` int(11) DEFAULT '1', PRIMARY KEY (`id`), UNIQUE KEY `id_UNIQUE` (`id`), KEY `idx_pid_raffle` (`player_id_`) ) ENGINE=InnoDB AUTO_INCREMENT=500000 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2013-08-05 12:55:26
insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (1,"夏效雷","<EMAIL>","123","初心夏效雷",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (2,"夏效雷2","<EMAIL>","123","初心夏效雷",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (3,"夏效雷3","<EMAIL>","123","初心夏效雷",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (4,"夏效雷4","<EMAIL>","123","初心夏效雷",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (5,"夏效雷5","<EMAIL>","123","初心夏效雷",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (6,"夏效雷6","<EMAIL>","123","初心夏效雷",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (7,"夏效雷7","<EMAIL>","123","初心夏效雷",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (8,"夏效雷8","<EMAIL>","123","初心夏效雷",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (9,"夏效雷9","<EMAIL>","123","初心夏效雷",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (10,"夏效雷10","<EMAIL>","123","初心夏效雷",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (11,"夏效雷11","<EMAIL>","123","初心夏效雷",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (12,"夏效雷12","<EMAIL>","123","初心夏效雷",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (13,"夏效雷13","<EMAIL>","123","初心夏效雷",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (14,"夏效雷14","<EMAIL>","123","初心夏效雷",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (15,"夏效雷15","<EMAIL>","123","初心夏效雷",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (16,"贺湧钧","<EMAIL>","123","初心贺湧钧",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (17,"贺湧钧2","<EMAIL>","123","初心贺湧钧",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (18,"贺湧钧3","<EMAIL>","123","初心贺湧钧",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (19,"贺湧钧4","<EMAIL>","123","初心贺湧钧",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (20,"贺湧钧5","<EMAIL>","123","初心贺湧钧",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (21,"贺湧钧6","<EMAIL>","123","初心贺湧钧",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (22,"贺湧钧7","<EMAIL>","123","初心贺湧钧",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (23,"贺湧钧8","<EMAIL>","123","初心贺湧钧",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (24,"贺湧钧9","<EMAIL>","123","初心贺湧钧",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (25,"贺湧钧10","<EMAIL>","123","初心贺湧钧",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (26,"贺湧钧11","<EMAIL>","123","初心贺湧钧",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (27,"贺湧钧12","<EMAIL>","123","初心贺湧钧",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (28,"贺湧钧13","<EMAIL>","123","初心贺湧钧",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (29,"贺湧钧14","<EMAIL>","123","初心贺湧钧",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (30,"贺湧钧15","<EMAIL>","123","初心贺湧钧",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (31,"高子彭","<EMAIL>","123","初心高子彭",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (32,"高子彭1","<EMAIL>","123","初心高子彭",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (33,"高子彭2","<EMAIL>","123","初心高子彭",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (34,"高子彭3","<EMAIL>","123","初心高子彭",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (35,"高子彭4","<EMAIL>","123","初心高子彭",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (36,"高子彭5","<EMAIL>","123","初心高子彭",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (37,"高子彭6","<EMAIL>","123","初心高子彭",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (38,"高子彭7","<EMAIL>","123","初心高子彭",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (39,"高子彭8","<EMAIL>","123","初心高子彭",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (40,"高子彭9","<EMAIL>","123","初心高子彭",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (41,"高子彭10","<EMAIL>","123","初心高子彭",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (42,"高子彭11","<EMAIL>","123","初心高子彭",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (43,"高子彭12","<EMAIL>","123","初心高子彭",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (44,"高子彭13","<EMAIL>","123","初心高子彭",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (45,"高子彭14","<EMAIL>","123","初心高子彭",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (46,"李宏渺","<EMAIL>","123","初心李宏渺",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (47,"李宏渺2","<EMAIL>","123","初心李宏渺",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (48,"李宏渺3","<EMAIL>","123","初心李宏渺",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (49,"李宏渺4","<EMAIL>","123","初心李宏渺",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (50,"李宏渺5","<EMAIL>","123","初心李宏渺",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (51,"李宏渺6","<EMAIL>","123","初心李宏渺",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (52,"李宏渺7","<EMAIL>","123","初心李宏渺",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (53,"李宏渺8","<EMAIL>","123","初心李宏渺",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (54,"李宏渺9","<EMAIL>","123","初心李宏渺",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (55,"李宏渺10","<EMAIL>","123","初心李宏渺",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (56,"李宏渺11","<EMAIL>","123","初心李宏渺",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (57,"李宏渺12","<EMAIL>","123","初心李宏渺",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (58,"李宏渺13","<EMAIL>","123","初心李宏渺",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (59,"李宏渺14","<EMAIL>","123","初心李宏渺",100,1,now() ,"110",1,null ); insert into user(id, nickname, email, password, signature, ex, sex, create_time, phone, status, avatar) VALUES (60,"李宏渺15","<EMAIL>","123","初心李宏渺",100,1,now() ,"110",1,null ); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (1,"小雷c位出道!我不是水军01",null,1,1,0,now(),100,1,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (2,"小雷c位出道!我不是水军02",null,2,1,0,now(),100,1,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (3,"小雷c位出道!我不是水军03",null,3,1,0,now(),100,1,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (4,"小雷c位出道!我不是水军04",null,4,1,0,now(),100,1,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (5,"小雷c位出道!我不是水军05",null,5,1,0,now(),100,1,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (6,"小雷c位出道!我不是水军06",null,6,1,0,now(),100,1,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (7,"小雷c位出道!我不是水军07",null,7,1,0,now(),100,1,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (8,"小雷c位出道!我不是水军08",null,8,1,0,now(),100,1,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (9,"小雷c位出道!我不是水军09",null,9,1,0,now(),100,1,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (10,"小雷c位出道!我不是水军10",null,10,1,0,now(),100,1,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (11,"小雷c位出道!我不是水军11",null,11,1,0,now(),100,1,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (12,"小雷c位出道!我不是水军12",null,12,1,0,now(),100,1,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (13,"小雷c位出道!我不是水军13",null,13,1,0,now(),100,1,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (14,"小雷c位出道!我不是水军14",null,14,1,0,now(),100,1,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (15,"小雷c位出道!我不是水军15",null,15,1,0,now(),100,1,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (16,"湧钧c位出道!我不是水军1",null,16,1,0,now(),100,2,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (17,"湧钧c位出道!我不是水军2",null,17,1,0,now(),100,2,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (18,"湧钧c位出道!我不是水军3",null,18,1,0,now(),100,2,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (19,"湧钧c位出道!我不是水军4",null,19,1,0,now(),100,2,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (20,"湧钧c位出道!我不是水军5",null,20,1,0,now(),100,2,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (21,"湧钧c位出道!我不是水军6",null,21,1,0,now(),100,2,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (22,"湧钧c位出道!我不是水军7",null,22,1,0,now(),100,2,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (23,"湧钧c位出道!我不是水军8",null,23,1,0,now(),100,2,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (24,"湧钧c位出道!我不是水军9",null,24,1,0,now(),100,2,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (25,"湧钧c位出道!我不是水军10",null,25,1,0,now(),100,2,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (26,"湧钧c位出道!我不是水军11",null,26,1,0,now(),100,2,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (27,"湧钧c位出道!我不是水军12",null,27,1,0,now(),100,2,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (28,"湧钧c位出道!我不是水军13",null,28,1,0,now(),100,2,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (29,"湧钧c位出道!我不是水军14",null,29,1,0,now(),100,2,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (30,"湧钧c位出道!我不是水军15",null,30,1,0,now(),100,2,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (31,"子彭c位出道!我不是水军1",null,31,1,0,now(),100,3,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (32,"子彭c位出道!我不是水军2",null,32,1,0,now(),100,3,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (33,"子彭c位出道!我不是水军3",null,33,1,0,now(),100,3,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (34,"子彭c位出道!我不是水军4",null,34,1,0,now(),100,3,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (35,"子彭c位出道!我不是水军5",null,35,1,0,now(),100,3,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (36,"子彭c位出道!我不是水军6",null,36,1,0,now(),100,3,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (37,"子彭c位出道!我不是水军7",null,37,1,0,now(),100,3,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (38,"子彭c位出道!我不是水军8",null,38,1,0,now(),100,3,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (39,"子彭c位出道!我不是水军9",null,39,1,0,now(),100,3,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (40,"子彭c位出道!我不是水军10",null,40,1,0,now(),100,3,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (41,"子彭c位出道!我不是水军11",null,41,1,0,now(),100,3,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (42,"子彭c位出道!我不是水军12",null,42,1,0,now(),100,3,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (43,"子彭c位出道!我不是水军13",null,43,1,0,now(),100,3,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (44,"子彭c位出道!我不是水军14",null,44,1,0,now(),100,3,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (45,"子彭c位出道!我不是水军15",null,45,1,0,now(),100,3,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (46,"宏渺c位出道!我不是水军1",null,46,1,0,now(),100,4,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (47,"宏渺c位出道!我不是水军2",null,47,1,0,now(),100,4,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (48,"宏渺c位出道!我不是水军3",null,48,1,0,now(),100,4,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (49,"宏渺c位出道!我不是水军4",null,49,1,0,now(),100,4,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (50,"宏渺c位出道!我不是水军5",null,50,1,0,now(),100,4,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (51,"宏渺c位出道!我不是水军6",null,51,1,0,now(),100,4,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (52,"宏渺c位出道!我不是水军7",null,52,1,0,now(),100,4,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (53,"宏渺c位出道!我不是水军8",null,53,1,0,now(),100,4,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (54,"宏渺c位出道!我不是水军9",null,54,1,0,now(),100,4,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (55,"宏渺c位出道!我不是水军10",null,55,1,0,now(),100,4,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (56,"宏渺c位出道!我不是水军11",null,56,1,0,now(),100,4,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (57,"宏渺c位出道!我不是水军12",null,57,1,0,now(),100,4,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (58,"宏渺c位出道!我不是水军13",null,58,1,0,now(),100,4,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (59,"宏渺c位出道!我不是水军14",null,59,1,0,now(),100,4,now(),"5毛一条",1); insert into post(id, title, content, user_id, type, topping, create_time, view, section_id, last_modify, brief, comment_num) VALUES (60,"宏渺c位出道!我不是水军15",null,60,1,0,now(),100,4,now(),"5毛一条",1); insert into section(id, title, announcement, partition_id) VALUES (1,"夏效雷粉丝",null ,1); insert into section(id, title, announcement, partition_id) VALUES (2,"贺湧钧粉丝",null ,1); insert into section(id, title, announcement, partition_id) VALUES (3,"高子彭粉丝",null ,1); insert into section(id, title, announcement, partition_id) VALUES (4,"李宏渺粉丝",null ,1); insert into bbs_partition (id, title) values (1,"大工101"); insert into comment (id,content, post_id, comment_id, user_id) values (1,"为小雷打call啊啊啊啊啊啊啊啊!",1,null ,2,now()); insert into comment (id,content, post_id, comment_id, user_id) values (2,"为小雷打call啊啊啊啊啊啊啊啊!",2,null ,3,now()); insert into comment (id,content, post_id, comment_id, user_id) values (3,"为小雷打call啊啊啊啊啊啊啊啊!",3,null ,4,now()); insert into comment (id,content, post_id, comment_id, user_id) values (4,"为小雷打call啊啊啊啊啊啊啊啊!",4,null ,5,now()); insert into comment (id,content, post_id, comment_id, user_id) values (5,"为小雷打call啊啊啊啊啊啊啊啊!",5,null ,6,now()); insert into comment (id,content, post_id, comment_id, user_id) values (6,"为小雷打call啊啊啊啊啊啊啊啊!",6,null ,7,now()); insert into comment (id,content, post_id, comment_id, user_id) values (7,"为小雷打call啊啊啊啊啊啊啊啊!",7,null ,8,now()); insert into comment (id,content, post_id, comment_id, user_id) values (8,"为小雷打call啊啊啊啊啊啊啊啊!",8,null ,9,now()); insert into comment (id,content, post_id, comment_id, user_id) values (9,"为小雷打call啊啊啊啊啊啊啊啊!",9,null ,10,now()); insert into comment (id,content, post_id, comment_id, user_id) values (10,"为小雷打call啊啊啊啊啊啊啊啊!",10,null ,11,now()); insert into comment (id,content, post_id, comment_id, user_id) values (11,"为小雷打call啊啊啊啊啊啊啊啊!",11,null ,12,now()); insert into comment (id,content, post_id, comment_id, user_id) values (12,"为小雷打call啊啊啊啊啊啊啊啊!",12,null ,13,now()); insert into comment (id,content, post_id, comment_id, user_id) values (13,"为小雷打call啊啊啊啊啊啊啊啊!",13,null ,14,now()); insert into comment (id,content, post_id, comment_id, user_id) values (14,"为小雷打call啊啊啊啊啊啊啊啊!",14,null ,15,now()); insert into comment (id,content, post_id, comment_id, user_id) values (15,"为小雷打call啊啊啊啊啊啊啊啊!",15,null ,1,now()); insert into comment (id,content, post_id, comment_id, user_id) values (16,"为小雷打call啊啊啊啊啊啊啊啊!",2,1 ,null ,now()); insert into comment (id,content, post_id, comment_id, user_id) values (17,"为小雷打call啊啊啊啊啊啊啊啊!",3,2 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (18,"为小雷打call啊啊啊啊啊啊啊啊!",4,3 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (19,"为小雷打call啊啊啊啊啊啊啊啊!",5,4 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (20,"为小雷打call啊啊啊啊啊啊啊啊!",6,5 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (21,"为小雷打call啊啊啊啊啊啊啊啊!",7,6 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (22,"为小雷打call啊啊啊啊啊啊啊啊!",8,7 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (23,"为小雷打call啊啊啊啊啊啊啊啊!",9,8 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (24,"为小雷打call啊啊啊啊啊啊啊啊!",10,9 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (25,"为小雷打call啊啊啊啊啊啊啊啊!",11,10 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (26,"为小雷打call啊啊啊啊啊啊啊啊!",12,11 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (27,"为小雷打call啊啊啊啊啊啊啊啊!",13,12 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (28,"为小雷打call啊啊啊啊啊啊啊啊!",14,13 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (29,"为小雷打call啊啊啊啊啊啊啊啊!",15,14 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (30,"为小雷打call啊啊啊啊啊啊啊啊!",1,15 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (31,"为湧钧打call啊啊啊啊啊啊啊啊!",16,null ,17,now()); insert into comment (id,content, post_id, comment_id, user_id) values (32,"为湧钧打call啊啊啊啊啊啊啊啊!",17,null ,18,now()); insert into comment (id,content, post_id, comment_id, user_id) values (33,"为湧钧打call啊啊啊啊啊啊啊啊!",18,null ,19,now()); insert into comment (id,content, post_id, comment_id, user_id) values (34,"为湧钧打call啊啊啊啊啊啊啊啊!",19,null ,20,now()); insert into comment (id,content, post_id, comment_id, user_id) values (35,"为湧钧打call啊啊啊啊啊啊啊啊!",20,null ,21,now()); insert into comment (id,content, post_id, comment_id, user_id) values (36,"为湧钧打call啊啊啊啊啊啊啊啊!",21,null ,22,now()); insert into comment (id,content, post_id, comment_id, user_id) values (37,"为湧钧打call啊啊啊啊啊啊啊啊!",22,null ,23,now()); insert into comment (id,content, post_id, comment_id, user_id) values (38,"为湧钧打call啊啊啊啊啊啊啊啊!",23,null ,24,now()); insert into comment (id,content, post_id, comment_id, user_id) values (39,"为湧钧打call啊啊啊啊啊啊啊啊!",24,null ,25,now()); insert into comment (id,content, post_id, comment_id, user_id) values (40,"为湧钧打call啊啊啊啊啊啊啊啊!",25,null ,26,now()); insert into comment (id,content, post_id, comment_id, user_id) values (41,"为湧钧打call啊啊啊啊啊啊啊啊!",26,null ,27,now()); insert into comment (id,content, post_id, comment_id, user_id) values (42,"为湧钧打call啊啊啊啊啊啊啊啊!",27,null ,28,now()); insert into comment (id,content, post_id, comment_id, user_id) values (43,"为湧钧打call啊啊啊啊啊啊啊啊!",28,null ,29,now()); insert into comment (id,content, post_id, comment_id, user_id) values (44,"为湧钧打call啊啊啊啊啊啊啊啊!",29,null ,30,now()); insert into comment (id,content, post_id, comment_id, user_id) values (45,"为湧钧打call啊啊啊啊啊啊啊啊!",30,null ,16,now()); insert into comment (id,content, post_id, comment_id, user_id) values (46,"为湧钧打call啊啊啊啊啊啊啊啊!",17,16 ,null ,now()); insert into comment (id,content, post_id, comment_id, user_id) values (47,"为湧钧打call啊啊啊啊啊啊啊啊!",18,17 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (48,"为湧钧打call啊啊啊啊啊啊啊啊!",19,18,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (49,"为湧钧打call啊啊啊啊啊啊啊啊!",20,19,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (50,"为湧钧打call啊啊啊啊啊啊啊啊!",21,20,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (51,"为湧钧打call啊啊啊啊啊啊啊啊!",22,21,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (52,"为湧钧打call啊啊啊啊啊啊啊啊!",23,22,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (53,"为湧钧打call啊啊啊啊啊啊啊啊!",24,23,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (54,"为湧钧打call啊啊啊啊啊啊啊啊!",25,24,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (55,"为湧钧打call啊啊啊啊啊啊啊啊!",26,25,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (56,"为湧钧打call啊啊啊啊啊啊啊啊!",27,26 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (57,"为湧钧打call啊啊啊啊啊啊啊啊!",28,27 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (58,"为湧钧打call啊啊啊啊啊啊啊啊!",29,28 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (59,"为湧钧打call啊啊啊啊啊啊啊啊!",30,29 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (60,"为湧钧打call啊啊啊啊啊啊啊啊!",16,30 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (61,"为子彭打call啊啊啊啊啊啊啊啊!",31,null ,32,now()); insert into comment (id,content, post_id, comment_id, user_id) values (62,"为子彭打call啊啊啊啊啊啊啊啊!",32,null ,33,now()); insert into comment (id,content, post_id, comment_id, user_id) values (63,"为子彭打call啊啊啊啊啊啊啊啊!",33,null ,34,now()); insert into comment (id,content, post_id, comment_id, user_id) values (64,"为子彭打call啊啊啊啊啊啊啊啊!",34,null ,35,now()); insert into comment (id,content, post_id, comment_id, user_id) values (65,"为子彭打call啊啊啊啊啊啊啊啊!",35,null ,36,now()); insert into comment (id,content, post_id, comment_id, user_id) values (66,"为子彭打call啊啊啊啊啊啊啊啊!",36,null ,37,now()); insert into comment (id,content, post_id, comment_id, user_id) values (67,"为子彭打call啊啊啊啊啊啊啊啊!",38,null ,38,now()); insert into comment (id,content, post_id, comment_id, user_id) values (68,"为子彭打call啊啊啊啊啊啊啊啊!",39,null ,39,now()); insert into comment (id,content, post_id, comment_id, user_id) values (69,"为子彭打call啊啊啊啊啊啊啊啊!",40,null ,40,now()); insert into comment (id,content, post_id, comment_id, user_id) values (70,"为子彭打call啊啊啊啊啊啊啊啊!",41,null ,41,now()); insert into comment (id,content, post_id, comment_id, user_id) values (71,"为子彭打call啊啊啊啊啊啊啊啊!",42,null ,42,now()); insert into comment (id,content, post_id, comment_id, user_id) values (72,"为子彭打call啊啊啊啊啊啊啊啊!",43,null ,43,now()); insert into comment (id,content, post_id, comment_id, user_id) values (73,"为子彭打call啊啊啊啊啊啊啊啊!",44,null ,44,now()); insert into comment (id,content, post_id, comment_id, user_id) values (74,"为子彭打call啊啊啊啊啊啊啊啊!",45,null ,45,now()); insert into comment (id,content, post_id, comment_id, user_id) values (75,"为子彭打call啊啊啊啊啊啊啊啊!",46,null ,31,now()); insert into comment (id,content, post_id, comment_id, user_id,time) values (76,"为子彭打call啊啊啊啊啊啊啊啊!",32,31 ,null ,now()); insert into comment (id,content, post_id, comment_id, user_id) values (77,"为子彭打call啊啊啊啊啊啊啊啊!",33,32 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (78,"为子彭打call啊啊啊啊啊啊啊啊!",34,33,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (79,"为子彭打call啊啊啊啊啊啊啊啊!",35,34,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (70,"为子彭打call啊啊啊啊啊啊啊啊!",36,35,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (81,"为子彭打call啊啊啊啊啊啊啊啊!",37,36,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (82,"为子彭打call啊啊啊啊啊啊啊啊!",38,37,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (83,"为子彭打call啊啊啊啊啊啊啊啊!",39,38,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (84,"为子彭打call啊啊啊啊啊啊啊啊!",40,39,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (85,"为子彭打call啊啊啊啊啊啊啊啊!",41,40,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (86,"为子彭打call啊啊啊啊啊啊啊啊!",42,41 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (87,"为子彭打call啊啊啊啊啊啊啊啊!",43,42 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (88,"为子彭打call啊啊啊啊啊啊啊啊!",44,43 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (89,"为子彭打call啊啊啊啊啊啊啊啊!",45,44 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (90,"为子彭打call啊啊啊啊啊啊啊啊!",31,45 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (91,"为宏渺打call啊啊啊啊啊啊啊啊!",46,null ,47,now()); insert into comment (id,content, post_id, comment_id, user_id) values (92,"为宏渺打call啊啊啊啊啊啊啊啊!",47,null ,48,now()); insert into comment (id,content, post_id, comment_id, user_id) values (93,"为宏渺打call啊啊啊啊啊啊啊啊!",48,null ,49,now()); insert into comment (id,content, post_id, comment_id, user_id) values (94,"为宏渺打call啊啊啊啊啊啊啊啊!",49,null ,50,now()); insert into comment (id,content, post_id, comment_id, user_id) values (95,"为宏渺打call啊啊啊啊啊啊啊啊!",50,null ,51,now()); insert into comment (id,content, post_id, comment_id, user_id) values (96,"为宏渺打call啊啊啊啊啊啊啊啊!",51,null ,52,now()); insert into comment (id,content, post_id, comment_id, user_id) values (97,"为宏渺打call啊啊啊啊啊啊啊啊!",52,null ,53,now()); insert into comment (id,content, post_id, comment_id, user_id) values (98,"为宏渺打call啊啊啊啊啊啊啊啊!",53,null ,54,now()); insert into comment (id,content, post_id, comment_id, user_id) values (99,"为宏渺打call啊啊啊啊啊啊啊啊!",54,null ,55,now()); insert into comment (id,content, post_id, comment_id, user_id) values (100,"为宏渺打call啊啊啊啊啊啊啊啊!",55,null ,56,now()); insert into comment (id,content, post_id, comment_id, user_id) values (101,"为宏渺打call啊啊啊啊啊啊啊啊!",56,null ,57,now()); insert into comment (id,content, post_id, comment_id, user_id) values (102,"为宏渺打call啊啊啊啊啊啊啊啊!",57,null ,58,now()); insert into comment (id,content, post_id, comment_id, user_id) values (103,"为宏渺打call啊啊啊啊啊啊啊啊!",58,null ,59,now()); insert into comment (id,content, post_id, comment_id, user_id) values (104,"为宏渺打call啊啊啊啊啊啊啊啊!",59,null ,60,now()); insert into comment (id,content, post_id, comment_id, user_id) values (105,"为宏渺打call啊啊啊啊啊啊啊啊!",60,null ,46,now()); insert into comment (id,content, post_id, comment_id, user_id) values (106,"为宏渺打call啊啊啊啊啊啊啊啊!",47,46 ,null ,now()); insert into comment (id,content, post_id, comment_id, user_id) values (107,"为宏渺打call啊啊啊啊啊啊啊啊!",48,47 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (108,"为宏渺打call啊啊啊啊啊啊啊啊!",49,48,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (109,"为宏渺打call啊啊啊啊啊啊啊啊!",50,49,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (110,"为宏渺打call啊啊啊啊啊啊啊啊!",51,50,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (111,"为宏渺打call啊啊啊啊啊啊啊啊!",52,51,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (112,"为宏渺打call啊啊啊啊啊啊啊啊!",53,52,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (113,"为宏渺打call啊啊啊啊啊啊啊啊!",54,53,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (114,"为宏渺打call啊啊啊啊啊啊啊啊!",55,54,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (115,"为宏渺打call啊啊啊啊啊啊啊啊!",56,55,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (116,"为宏渺打call啊啊啊啊啊啊啊啊!",57,56 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (117,"为宏渺打call啊啊啊啊啊啊啊啊!",58,57 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (118,"为宏渺打call啊啊啊啊啊啊啊啊!",59,58 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (119,"为宏渺打call啊啊啊啊啊啊啊啊!",60,59 ,null,now()); insert into comment (id,content, post_id, comment_id, user_id) values (120,"为宏渺打call啊啊啊啊啊啊啊啊!",46,60 ,null,now()); insert into user_fans(fllow_id, fllowed_id) values (1,2); insert into user_fans(fllow_id, fllowed_id) values (1,3); insert into user_fans(fllow_id, fllowed_id) values (1,4); insert into user_fans(fllow_id, fllowed_id) values (1,5); insert into user_fans(fllow_id, fllowed_id) values (1,6); insert into user_fans(fllow_id, fllowed_id) values (1,7); insert into user_fans(fllow_id, fllowed_id) values (1,8); insert into user_fans(fllow_id, fllowed_id) values (1,9); insert into user_fans(fllow_id, fllowed_id) values (1,10); insert into user_fans(fllow_id, fllowed_id) values (1,11); insert into user_fans(fllow_id, fllowed_id) values (1,12); insert into user_fans(fllow_id, fllowed_id) values (1,13); insert into user_fans(fllow_id, fllowed_id) values (1,14); insert into user_fans(fllow_id, fllowed_id) values (1,15); insert into user_black (black_id, blacked_id) values (1,16); insert into user_black (black_id, blacked_id) values (1,17); insert into user_black (black_id, blacked_id) values (1,18); insert into user_black (black_id, blacked_id) values (1,19); insert into user_black (black_id, blacked_id) values (1,20); insert into user_black (black_id, blacked_id) values (1,21); insert into user_black (black_id, blacked_id) values (1,22); insert into user_black (black_id, blacked_id) values (1,23); insert into user_black (black_id, blacked_id) values (1,24); insert into user_black (black_id, blacked_id) values (1,25); insert into user_black (black_id, blacked_id) values (1,26); insert into user_black (black_id, blacked_id) values (1,27); insert into user_black (black_id, blacked_id) values (1,28); insert into user_black (black_id, blacked_id) values (1,29); insert into user_black (black_id, blacked_id) values (1,30); insert into user_collection (user_id, post_id) values (1,1); insert into user_collection (user_id, post_id) values (1,2); insert into user_collection (user_id, post_id) values (1,3); insert into user_collection (user_id, post_id) values (1,4); insert into user_collection (user_id, post_id) values (1,5); insert into user_collection (user_id, post_id) values (1,6); insert into user_collection (user_id, post_id) values (1,7); insert into user_collection (user_id, post_id) values (1,8); insert into user_collection (user_id, post_id) values (1,9); insert into user_collection (user_id, post_id) values (1,10); insert into user_collection (user_id, post_id) values (1,11); insert into user_collection (user_id, post_id) values (1,12); insert into user_collection (user_id, post_id) values (1,13); insert into user_collection (user_id, post_id) values (1,14); insert into user_collection (user_id, post_id) values (1,15); insert into user_report(user_id, post_id, reason) VALUES (1,16,"贺湧钧粉丝破坏论坛风气"); insert into user_report(user_id, post_id, reason) VALUES (1,17,"贺湧钧粉丝破坏论坛风气"); insert into user_report(user_id, post_id, reason) VALUES (1,18,"贺湧钧粉丝破坏论坛风气"); insert into user_report(user_id, post_id, reason) VALUES (1,19,"贺湧钧粉丝破坏论坛风气"); insert into user_report(user_id, post_id, reason) VALUES (1,20,"贺湧钧粉丝破坏论坛风气"); insert into user_report(user_id, post_id, reason) VALUES (1,21,"贺湧钧粉丝破坏论坛风气"); insert into user_report(user_id, post_id, reason) VALUES (1,22,"贺湧钧粉丝破坏论坛风气"); insert into user_report(user_id, post_id, reason) VALUES (1,23,"贺湧钧粉丝破坏论坛风气"); insert into user_report(user_id, post_id, reason) VALUES (1,24,"贺湧钧粉丝破坏论坛风气"); insert into user_report(user_id, post_id, reason) VALUES (1,25,"贺湧钧粉丝破坏论坛风气"); insert into user_report(user_id, post_id, reason) VALUES (1,26,"贺湧钧粉丝破坏论坛风气"); insert into user_report(user_id, post_id, reason) VALUES (1,27,"贺湧钧粉丝破坏论坛风气"); insert into user_report(user_id, post_id, reason) VALUES (1,28,"贺湧钧粉丝破坏论坛风气"); insert into user_report(user_id, post_id, reason) VALUES (1,29,"贺湧钧粉丝破坏论坛风气"); insert into user_word (user_id, word) values (1,"call"); insert into user_word (user_id, word) values (2,"call"); insert into user_word (user_id, word) values (3,"call"); insert into user_word (user_id, word) values (4,"call"); insert into user_word (user_id, word) values (5,"call"); insert into user_word (user_id, word) values (6,"call"); insert into user_word (user_id, word) values (7,"call"); insert into user_word (user_id, word) values (8,"call"); insert into user_word (user_id, word) values (9,"call"); insert into user_word (user_id, word) values (10,"call"); insert into user_word (user_id, word) values (11,"call"); insert into user_word (user_id, word) values (12,"call"); insert into user_like (user_id, post_id) values (1,1); insert into user_like (user_id, post_id) values (1,2); insert into user_like (user_id, post_id) values (1,3); insert into user_like (user_id, post_id) values (1,4); insert into user_like (user_id, post_id) values (1,5); insert into user_like (user_id, post_id) values (1,6); insert into user_like (user_id, post_id) values (1,7); insert into user_like (user_id, post_id) values (1,8); insert into user_like (user_id, post_id) values (1,9); insert into user_like (user_id, post_id) values (1,10); insert into user_like (user_id, post_id) values (1,11); insert into user_like (user_id, post_id) values (1,12); insert into user_like (user_id, post_id) values (1,13); insert into user_like (user_id, post_id) values (1,14); insert into user_like (user_id, post_id) values (1,15); insert into user_unlike (user_id, post_id) values (1,1); insert into user_unlike (user_id, post_id) values (1,2); insert into user_unlike (user_id, post_id) values (1,3); insert into user_unlike (user_id, post_id) values (1,4); insert into user_unlike (user_id, post_id) values (1,5); insert into user_unlike (user_id, post_id) values (1,6); insert into user_unlike (user_id, post_id) values (1,7); insert into user_unlike (user_id, post_id) values (1,8); insert into user_unlike (user_id, post_id) values (1,9); insert into user_unlike (user_id, post_id) values (1,10); insert into user_unlike (user_id, post_id) values (1,11); insert into user_unlike (user_id, post_id) values (1,12); insert into user_unlike (user_id, post_id) values (1,13); insert into user_unlike (user_id, post_id) values (1,14); insert into user_unlike (user_id, post_id) values (1,15); insert into mask_word (word) values ("骂人的话"); insert into admin_section(user_id, partition_id) VALUES (1,1); insert into admin_section(user_id, partition_id) VALUES (16,2); insert into admin_section(user_id, partition_id) VALUES (31,3); insert into admin_section(user_id, partition_id) VALUES (46,4); insert into admin_partition(user_id, partition_id) VALUES (1,1);
select -- Required Columns vm.id as resource, case when managed_disk_id is null then 'alarm' else 'ok' end as status, case when managed_disk_id is null then vm.name || ' VM not utilizing managed disks.' else vm.name || ' VM utilizing managed disks.' end as reason, -- Additional Dimensions resource_group, sub.display_name as subscription from azure_compute_virtual_machine as vm, azure_subscription as sub where sub.subscription_id = vm.subscription_id;
<reponame>jonathansantilli/cassandra /* # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. */ create keyspace foo with replication = {'class':'SimpleStrategy', 'replication_factor':1}; use foo ; create table atable ( pk int primary key, val int); insert into atable (pk, val) VALUES ( 1,1); insert into atable (pk, val) VALUES ( 2,2); insert into atable (pk, val) VALUES ( 3,3); insert into atable (pk, val) VALUES ( 4,4); insert into atable (pk, val) VALUES ( 5,5); insert into atable (pk, val) VALUES ( 6,6); insert into atable (pk, val) VALUES ( 7,7); insert into atable (pk, val) VALUES ( 8,8); insert into atable (pk, val) VALUES ( 9,9); insert into atable (pk, val) VALUES ( 10,10); [ {"key": "5", "cells": [["","",1428529571195019], ["val","5",1428529571195019]]}, {"key": "10", "cells": [["","",1428529588242944], ["val","10",1428529588242944]]}, {"key": "1", "cells": [["","",1428529563371015], ["val","1",1428529563371015]]}, {"key": "8", "cells": [["","",1428529582362836], ["val","8",1428529582362836]]}, {"key": "2", "cells": [["","",1428529565275080], ["val","2",1428529565275080]]}, {"key": "4", "cells": [["","",1428529569331171], ["val","4",1428529569331171]]}, {"key": "7", "cells": [["","",1428529575898967], ["val","7",1428529575898967]]}, {"key": "6", "cells": [["","",1428529573027018], ["val","6",1428529573027018]]}, {"key": "9", "cells": [["","",1428529585667042], ["val","9",1428529585667042]]}, {"key": "3", "cells": [["","",1428529567379095], ["val","3",1428529567379095]]} ] SSTable: test/data/legacy-sstables/ka/foo/foo-atable-ka-1 Partitioner: org.apache.cassandra.dht.Murmur3Partitioner Bloom Filter FP chance: 0,010000 Minimum timestamp: 1428529563371015 Maximum timestamp: 1428529588242944 SSTable max local deletion time: 2147483647 Compression ratio: 0.4 Estimated droppable tombstones: 0.0 SSTable Level: 0 Repaired at: 0 CommitLogPosition(segmentId=1428529465658, position=6481) Estimated tombstone drop times:%n
-- hypothetical hash indexes, pg10+ -- Remove all the hypothetical indexes if any SELECT hypopg_reset(); -- Create normal index SELECT COUNT(*) AS NB FROM hypopg_create_index('CREATE INDEX ON hypo USING hash (id)'); -- Should use hypothetical index using a regular Index Scan SELECT COUNT(*) FROM do_explain('SELECT val FROM hypo WHERE id = 1') e WHERE e ~ 'Index Scan.*<\d+>hash_hypo.*'; -- Deparse the index DDL SELECT hypopg_get_indexdef(indexrelid) FROM hypopg();
select fd.dim_date , fd.website_id , max(case when fsp.website_id is not null then 1 else 0 end) as has_active_subscription , max(item_charge_net_eur_monthly) as item_charge_net_eur_monthly from blah_foo fd left join _finance_service_period_monthly fsp on to_date(fd.dim_date, 'YYYYMM') between to_date(service_start_at, 'YYYYMM') and dateadd(month, -1, to_date(service_end_at, 'YYYYMM')) and fd.website_id = fsp.website_id group by 1,2 ;
<reponame>mat8392/yiihermo<gh_stars>0 -- -------------------------------------------------------- -- Host: 127.0.0.1 -- Server version: 5.6.25 - MySQL Community Server (GPL) -- Server OS: Win32 -- HeidiSQL Version: 9.2.0.4947 -- -------------------------------------------------------- /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET NAMES utf8mb4 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -- Dumping database structure for yii2advanced DROP DATABASE IF EXISTS `yii2advanced`; CREATE DATABASE IF NOT EXISTS `yii2advanced` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `yii2advanced`; -- Dumping structure for table yii2advanced.addtocart DROP TABLE IF EXISTS `addtocart`; CREATE TABLE IF NOT EXISTS `addtocart` ( `id` int(11) NOT NULL AUTO_INCREMENT, `productname` varchar(255) DEFAULT NULL, `quantitybeli` decimal(65,0) DEFAULT NULL, `price` double(11,0) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `image` varchar(255) DEFAULT NULL, `is_buy` int(11) DEFAULT NULL, `usevoucher` int(11) DEFAULT NULL, `priceretail` double DEFAULT NULL, `checkoutid` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1; -- Dumping data for table yii2advanced.addtocart: ~4 rows (approximately) DELETE FROM `addtocart`; /*!40000 ALTER TABLE `addtocart` DISABLE KEYS */; INSERT INTO `addtocart` (`id`, `productname`, `quantitybeli`, `price`, `description`, `image`, `is_buy`, `usevoucher`, `priceretail`, `checkoutid`) VALUES (6, 'SECRET KEY', 12, 50, 'Secret Key Starting Treatment Essence 155ml', 'themes/images/secretkey.png', 1, NULL, 90, 2); /*!40000 ALTER TABLE `addtocart` ENABLE KEYS */; -- Dumping structure for table yii2advanced.checkout DROP TABLE IF EXISTS `checkout`; CREATE TABLE IF NOT EXISTS `checkout` ( `id` int(11) NOT NULL AUTO_INCREMENT, `voucher` varchar(255) DEFAULT NULL, `shipping` varchar(255) DEFAULT NULL, `shippingfee` double DEFAULT NULL, `discount` double DEFAULT NULL, `discounttype` int(11) DEFAULT NULL, `totalprice` double DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; -- Dumping data for table yii2advanced.checkout: ~0 rows (approximately) DELETE FROM `checkout`; /*!40000 ALTER TABLE `checkout` DISABLE KEYS */; INSERT INTO `checkout` (`id`, `voucher`, `shipping`, `shippingfee`, `discount`, `discounttype`, `totalprice`) VALUES (2, '1', '1', 10, 5, NULL, 610); /*!40000 ALTER TABLE `checkout` ENABLE KEYS */; -- Dumping structure for table yii2advanced.country DROP TABLE IF EXISTS `country`; CREATE TABLE IF NOT EXISTS `country` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `fee` double(255,0) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; -- Dumping data for table yii2advanced.country: ~2 rows (approximately) DELETE FROM `country`; /*!40000 ALTER TABLE `country` DISABLE KEYS */; INSERT INTO `country` (`id`, `name`, `fee`, `description`) VALUES (1, 'Malaysia', 10, 'Buy 2 free shipping / Minimum purchase > MYR 150, otherwise the shipping fee is MYR 10'), (2, 'Brunei', 25, 'Minimum purchase > MYR 300, otherwise the shipping fee is MYR 25'), (3, 'Singapore', 20, 'Minimum purchase > MYR 300, otherwise the shipping fee is MYR 20'); /*!40000 ALTER TABLE `country` ENABLE KEYS */; -- Dumping structure for table yii2advanced.migration DROP TABLE IF EXISTS `migration`; CREATE TABLE IF NOT EXISTS `migration` ( `version` varchar(180) NOT NULL, `apply_time` int(11) DEFAULT NULL, PRIMARY KEY (`version`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- Dumping data for table yii2advanced.migration: ~2 rows (approximately) DELETE FROM `migration`; /*!40000 ALTER TABLE `migration` DISABLE KEYS */; INSERT INTO `migration` (`version`, `apply_time`) VALUES ('m000000_000000_base', 1485360524), ('m130524_201442_init', 1485360532); /*!40000 ALTER TABLE `migration` ENABLE KEYS */; -- Dumping structure for table yii2advanced.productlist DROP TABLE IF EXISTS `productlist`; CREATE TABLE IF NOT EXISTS `productlist` ( `id` int(11) NOT NULL AUTO_INCREMENT, `productname` varchar(255) DEFAULT NULL, `quantity` decimal(65,0) DEFAULT NULL, `price` double(11,0) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `image` varchar(255) DEFAULT NULL, `priceretail` double(11,0) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; -- Dumping data for table yii2advanced.productlist: ~4 rows (approximately) DELETE FROM `productlist`; /*!40000 ALTER TABLE `productlist` DISABLE KEYS */; INSERT INTO `productlist` (`id`, `productname`, `quantity`, `price`, `description`, `image`, `priceretail`) VALUES (1, 'SECRET KEY', 30, 50, 'Secret Key Starting Treatment Essence 155ml', 'themes/images/secretkey.png', 90), (2, 'POBLING', 30, 100, 'Pobling Pore Sonic Cleanser_Color [#Gold]', 'themes/images/pobling.png', 180), (3, 'LABIOTTE', 30, 150, 'Labiotte Chateau Wine Lipstick [Melting] 3.7g [8 Colors To Choose]', 'themes/images/labiotte.png', 200), (4, 'BIOTHERM', 30, 250, 'Biotherm Skin Regenerating Treatment', 'themes/images/biotherm.png', 300); /*!40000 ALTER TABLE `productlist` ENABLE KEYS */; -- Dumping structure for table yii2advanced.student DROP TABLE IF EXISTS `student`; CREATE TABLE IF NOT EXISTS `student` ( `id` int(11) NOT NULL AUTO_INCREMENT, `full_name` varchar(255) DEFAULT NULL, `address` varchar(255) DEFAULT NULL, `phone` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1; -- Dumping data for table yii2advanced.student: ~5 rows (approximately) DELETE FROM `student`; /*!40000 ALTER TABLE `student` DISABLE KEYS */; INSERT INTO `student` (`id`, `full_name`, `address`, `phone`) VALUES (1, 'Jojohn', '<NAME>', '011111'), (3, 'Jaja', 'adasd', '123123123123'), (4, 'Juju', 'nfna', 'asdasd123'), (5, 'nanaz', 'teman tapi mesra', '01293123'), (6, 'asdadasjdl', 'laksjdklajdklajd', '901283901380'); /*!40000 ALTER TABLE `student` ENABLE KEYS */; -- Dumping structure for table yii2advanced.user DROP TABLE IF EXISTS `user`; CREATE TABLE IF NOT EXISTS `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `auth_key` varchar(32) COLLATE utf8_unicode_ci NOT NULL, `password_hash` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `password_reset_token` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `status` smallint(6) NOT NULL DEFAULT '10', `created_at` int(11) NOT NULL, `updated_at` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `username` (`username`), UNIQUE KEY `email` (`email`), UNIQUE KEY `password_reset_token` (`<PASSWORD>`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- Dumping data for table yii2advanced.user: ~0 rows (approximately) DELETE FROM `user`; /*!40000 ALTER TABLE `user` DISABLE KEYS */; /*!40000 ALTER TABLE `user` ENABLE KEYS */; -- Dumping structure for table yii2advanced.voucher DROP TABLE IF EXISTS `voucher`; CREATE TABLE IF NOT EXISTS `voucher` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `discount` double(255,0) DEFAULT NULL, `type` int(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; -- Dumping data for table yii2advanced.voucher: ~2 rows (approximately) DELETE FROM `voucher`; /*!40000 ALTER TABLE `voucher` DISABLE KEYS */; INSERT INTO `voucher` (`id`, `name`, `description`, `discount`, `type`) VALUES (1, 'OFF5PC', '5% discount, with minimum purchase of 2 quantities of the product', 5, 1), (2, 'GIVEME15', ' RM15 discount with minimum purchase of MYR 100', 15, 2); /*!40000 ALTER TABLE `voucher` ENABLE KEYS */; /*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; /*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
-- -- PostgreSQL database dump -- -- Dumped from database version 9.3.14 -- Dumped by pg_dump version 9.3.14 -- Started on 2021-04-05 09:48:05 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 search_path = public, pg_catalog; ALTER TABLE ONLY public.activity DROP CONSTRAINT activity_id; ALTER TABLE public.activity ALTER COLUMN id DROP DEFAULT; DROP SEQUENCE public.activity_id2_seq; DROP TABLE public.activity; DROP EXTENSION plpgsql; DROP SCHEMA public; -- -- TOC entry 6 (class 2615 OID 2200) -- Name: public; Type: SCHEMA; Schema: -; Owner: - -- CREATE SCHEMA public; -- -- TOC entry 1939 (class 0 OID 0) -- Dependencies: 6 -- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: - -- COMMENT ON SCHEMA public IS 'standard public schema'; -- -- TOC entry 1 (class 3079 OID 11750) -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; -- -- TOC entry 1940 (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; SET default_tablespace = ''; SET default_with_oids = false; -- -- TOC entry 171 (class 1259 OID 16859) -- Name: activity; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE activity ( id integer NOT NULL, account_id text, ship_id text, date timestamp without time zone ); -- -- TOC entry 172 (class 1259 OID 16864) -- Name: activity_id2_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE activity_id2_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- TOC entry 1941 (class 0 OID 0) -- Dependencies: 172 -- Name: activity_id2_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE activity_id2_seq OWNED BY activity.id; -- -- TOC entry 1824 (class 2604 OID 16866) -- Name: id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY activity ALTER COLUMN id SET DEFAULT nextval('activity_id2_seq'::regclass); -- -- TOC entry 1826 (class 2606 OID 16872) -- Name: activity_id; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY activity ADD CONSTRAINT activity_id PRIMARY KEY (id); -- Completed on 2021-04-05 09:48:11 -- -- PostgreSQL database dump complete --
<filename>database/u1554969.sql -- phpMyAdmin SQL Dump -- version 4.5.1 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Feb 28, 2017 at 08:38 PM -- Server version: 10.1.16-MariaDB -- PHP Version: 5.6.24 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `u1554969` -- -- -------------------------------------------------------- -- -- Table structure for table `pl_members` -- CREATE TABLE `pl_members` ( `member_id` int(10) UNSIGNED NOT NULL, `member_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `member_last_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `member_date_joined` date NOT NULL, `member_mobile_number` varchar(11) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `pl_members` -- INSERT INTO `pl_members` (`member_id`, `member_name`, `member_last_name`, `member_date_joined`, `member_mobile_number`, `created_at`, `updated_at`) VALUES (1, 'Mike', 'Smith', '2017-01-24', '2147483647', NULL, NULL), (2, 'Luke', 'Morris', '2017-01-24', '2147483647', NULL, NULL), (3, 'Tony', 'Winston', '2017-01-24', '2147483647', NULL, NULL), (4, 'James', 'Car', '2017-01-24', '2147483647', NULL, NULL), (5, 'James', 'Jones', '2017-01-24', '2147483647', NULL, NULL), (6, 'Mamadu', 'Jordan', '2017-01-24', '2147483647', NULL, NULL), (7, 'Jacub', 'Allan', '2017-01-24', '2147483647', NULL, NULL), (8, 'Tim', 'Whitiker', '2017-01-24', '2147483647', NULL, NULL), (9, 'Callum', 'Fudge', '2017-01-24', '2147483647', NULL, NULL), (10, 'Luke', 'Right', '2017-01-24', '2147483647', NULL, NULL), (11, 'Jakub', 'Chruslicki', '2017-01-27', '2147483647', NULL, NULL), (12, 'Una', 'Davidson', '2017-02-28', '07542658741', '2017-02-28 18:03:48', '2017-02-28 18:03:48'), (13, 'Joseph', 'Turner', '2017-02-28', '07562145987', '2017-02-28 18:04:07', '2017-02-28 18:04:07'), (14, 'Lucas', 'Young', '2017-02-28', '07841987541', '2017-02-28 18:04:26', '2017-02-28 18:04:26'), (15, 'Frank', 'Arnold', '2017-02-28', '07425487542', '2017-02-28 18:04:49', '2017-02-28 19:27:22'); -- -------------------------------------------------------- -- -- Table structure for table `pl_results` -- CREATE TABLE `pl_results` ( `result_id` int(10) UNSIGNED NOT NULL, `result_member_id` int(10) UNSIGNED NOT NULL, `result_match_status` int(10) UNSIGNED NOT NULL, `result_match_id` int(10) UNSIGNED NOT NULL, `result_score` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `pl_results` -- INSERT INTO `pl_results` (`result_id`, `result_member_id`, `result_match_status`, `result_match_id`, `result_score`, `created_at`, `updated_at`) VALUES (5, 1, 1, 1, 350, NULL, NULL), (6, 2, 2, 1, 320, NULL, NULL), (7, 1, 1, 2, 410, NULL, NULL), (8, 3, 2, 2, 390, NULL, NULL), (9, 6, 1, 3, 330, NULL, NULL), (10, 3, 2, 3, 300, NULL, NULL), (11, 9, 1, 4, 420, NULL, NULL), (12, 10, 2, 4, 350, NULL, NULL), (13, 3, 1, 5, 540, NULL, NULL), (14, 8, 2, 5, 490, NULL, NULL), (15, 11, 1, 6, 500, NULL, NULL), (16, 7, 2, 6, 340, NULL, NULL), (17, 4, 1, 7, 450, NULL, NULL), (18, 1, 2, 7, 380, NULL, NULL), (19, 11, 1, 8, 410, NULL, NULL), (20, 4, 2, 8, 390, NULL, NULL), (21, 7, 1, 9, 330, NULL, NULL), (22, 11, 2, 9, 200, NULL, NULL), (23, 7, 1, 10, 500, NULL, NULL), (24, 3, 2, 10, 300, NULL, NULL), (25, 5, 1, 11, 360, NULL, NULL), (26, 10, 2, 11, 340, NULL, NULL), (27, 6, 1, 12, 450, NULL, NULL), (28, 9, 2, 12, 410, NULL, NULL), (29, 9, 1, 13, 340, NULL, NULL), (30, 5, 2, 13, 250, NULL, NULL), (31, 10, 1, 14, 600, NULL, NULL), (32, 7, 2, 14, 500, NULL, NULL), (33, 4, 1, 15, 430, NULL, NULL), (34, 2, 2, 15, 250, NULL, NULL), (35, 1, 1, 16, 350, '2017-02-25 17:43:52', '2017-02-25 17:43:52'), (36, 2, 2, 16, 200, '2017-02-25 17:43:52', '2017-02-25 17:43:52'), (38, 1, 2, 17, 280, '2017-02-26 13:20:05', '2017-02-26 13:20:05'), (40, 2, 2, 18, 200, '2017-02-26 16:45:12', '2017-02-26 16:45:12'), (41, 1, 1, 19, 350, '2017-02-26 17:12:51', '2017-02-26 17:12:51'), (42, 2, 2, 19, 280, '2017-02-26 17:12:51', '2017-02-26 17:12:51'), (43, 12, 1, 20, 300, '2017-02-28 19:36:57', '2017-02-28 19:36:57'), (44, 14, 2, 20, 280, '2017-02-28 19:36:57', '2017-02-28 19:36:57'); -- -------------------------------------------------------- -- -- Table structure for table `pl_status` -- CREATE TABLE `pl_status` ( `status_id` int(10) UNSIGNED NOT NULL, `status_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status_description` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `pl_status` -- INSERT INTO `pl_status` (`status_id`, `status_name`, `status_description`) VALUES (1, 'Win', 'Player has scored more points then his opponent.'), (2, 'Loss', 'Player has scored less points then his opponent.'), (3, 'Draw', 'Both players have same score.'); -- -- Indexes for dumped tables -- -- -- Indexes for table `pl_members` -- ALTER TABLE `pl_members` ADD PRIMARY KEY (`member_id`); -- -- Indexes for table `pl_results` -- ALTER TABLE `pl_results` ADD PRIMARY KEY (`result_id`), ADD KEY `fk_ess_members_esss_results` (`result_member_id`); -- -- Indexes for table `pl_status` -- ALTER TABLE `pl_status` ADD PRIMARY KEY (`status_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `pl_members` -- ALTER TABLE `pl_members` MODIFY `member_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19; -- -- AUTO_INCREMENT for table `pl_results` -- ALTER TABLE `pl_results` MODIFY `result_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=45; -- -- AUTO_INCREMENT for table `pl_status` -- ALTER TABLE `pl_status` MODIFY `status_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- Constraints for dumped tables -- -- -- Constraints for table `pl_results` -- ALTER TABLE `pl_results` ADD CONSTRAINT `fk_pl_members_pl_results` FOREIGN KEY (`result_member_id`) REFERENCES `pl_members` (`member_id`) ON DELETE CASCADE; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-- ===================================================================================================== -- Generated by Data Dictionary Version 1.0.0.0 -- Date: 21 July 2015 10:40 -- Profile: 1516 Test Harness Validation -- Rulebase Version: DCSS 1516 Validation FD 1516, Drop 000, Version 1516.04 -- ===================================================================================================== use [Intrajob_1516] GO if not exists(select schema_id from sys.schemas where name='Rulebase') exec('create schema Rulebase') GO if object_id('[Rulebase].[VALFD_Cases]','u') is not null drop table [Rulebase].[VALFD_Cases] create table [Rulebase].[VALFD_Cases] ( [Learner_Id] [int] primary key, [CaseData] [xml] not null ) GO if object_id('[Rulebase].[VALFD_global]','u') is not null drop table [Rulebase].[VALFD_global] create table [Rulebase].[VALFD_global] ( [UKPRN] int, [RulebaseVersion] varchar(10), ) GO if object_id('[Rulebase].[VALFD_ValidationError]','u') is not null drop table [Rulebase].[VALFD_ValidationError] create table [Rulebase].[VALFD_ValidationError] ( [AimSeqNumber] bigint, [ErrorString] varchar(2000), [FieldValues] varchar(2000), [LearnRefNumber] varchar(100), [RuleId] varchar(50) ) GO
INSERT INTO machines (name, cpu_count, total_disk_space) VALUES ('Ubuntu VM', 4, 17179869184), ('Windows VM', 2, 21474836480); INSERT INTO disks (machine_id, capacity) VALUES (1, 17179869184), (2, 17179869184), (2, 4294967296), (NULL, 8589934592);
-- DB versioning CREATE TABLE DBVERSION ( VALUE INTEGER NOT NULL, UPDATED TIMESTAMP NOT NULL ); -- Accounts CREATE TABLE ACCOUNT ( ID INTEGER NOT NULL AUTO_INCREMENT, IDENTIFIER VARCHAR(80) NOT NULL, NAME VARCHAR(80) NOT NULL, ADMIN BOOLEAN NOT NULL DEFAULT FALSE, AUTH_MODE VARCHAR(10) NOT NULL, AUTH_CREDENTIALS VARCHAR(400) NULL, CONSTRAINT PK_ACCOUNT PRIMARY KEY (ID), CONSTRAINT UQ_ACCOUNT_IDENTIFIER UNIQUE (IDENTIFIER), CONSTRAINT UQ_ACCOUNT_NAME UNIQUE (NAME) ); -- Group of projects CREATE TABLE PROJECT_GROUP ( ID INTEGER NOT NULL AUTO_INCREMENT, NAME VARCHAR(80) NOT NULL, DESCRIPTION VARCHAR(1000) NULL, CONSTRAINT PK_PROJECTGROUP PRIMARY KEY (ID), CONSTRAINT UQ_PROJECTGROUP UNIQUE (NAME) ); -- Project CREATE TABLE PROJECT ( ID INTEGER NOT NULL AUTO_INCREMENT, NAME VARCHAR(80) NOT NULL, PROJECT_GROUP INTEGER NULL, DESCRIPTION VARCHAR(1000) NULL, CONSTRAINT PK_PROJECT PRIMARY KEY (ID), CONSTRAINT UQ_PROJECT UNIQUE (NAME), CONSTRAINT FK_PROJECT_PROJECT_GROUP FOREIGN KEY (PROJECT_GROUP) REFERENCES PROJECT_GROUP (ID) ON DELETE SET NULL ); -- Branch CREATE TABLE BRANCH ( ID INTEGER NOT NULL AUTO_INCREMENT, PROJECT INTEGER NOT NULL, NAME VARCHAR(80) NOT NULL, DESCRIPTION VARCHAR(1000) NULL, CONSTRAINT PK_BRANCH PRIMARY KEY (ID), CONSTRAINT UQ_BRANCH UNIQUE (PROJECT, NAME), CONSTRAINT FK_BRANCH_PROJECT FOREIGN KEY (PROJECT) REFERENCES PROJECT (ID) ON DELETE CASCADE ); -- Build CREATE TABLE BUILD ( ID INTEGER NOT NULL AUTO_INCREMENT, BRANCH INTEGER NOT NULL, NAME VARCHAR(80) NOT NULL, DESCRIPTION VARCHAR(1000) NULL, CONSTRAINT PK_BUILD PRIMARY KEY (ID), CONSTRAINT UQ_BUILD UNIQUE (BRANCH, NAME), CONSTRAINT FK_BUILD_BRANCH FOREIGN KEY (BRANCH) REFERENCES BRANCH (ID) ON DELETE CASCADE ); -- Promotion level CREATE TABLE PROMOTION_LEVEL ( ID INTEGER NOT NULL AUTO_INCREMENT, BRANCH INTEGER NOT NULL, NAME VARCHAR(80) NOT NULL, DESCRIPTION VARCHAR(1000) NULL, CONSTRAINT PK_PROMOTION_LEVEL PRIMARY KEY (ID), CONSTRAINT UQ_PROMOTION_LEVEL UNIQUE (BRANCH, NAME), CONSTRAINT FK_PROMOTION_LEVEL_BRANCH FOREIGN KEY (BRANCH) REFERENCES BRANCH (ID) ON DELETE CASCADE ); -- Validation stamp CREATE TABLE VALIDATION_STAMP ( ID INTEGER NOT NULL AUTO_INCREMENT, PROMOTION_LEVEL INTEGER NOT NULL, NAME VARCHAR(80) NOT NULL, DESCRIPTION VARCHAR(1000) NULL, CONSTRAINT PK_VALIDATION_STAMP PRIMARY KEY (ID), CONSTRAINT UQ_VALIDATION_STAMP UNIQUE (PROMOTION_LEVEL, NAME), CONSTRAINT FK_VALIDATION_STAMP_PROMOTION_LEVEL FOREIGN KEY (PROMOTION_LEVEL) REFERENCES PROMOTION_LEVEL (ID) ON DELETE CASCADE ); -- Validation run CREATE TABLE VALIDATION_RUN ( ID INTEGER NOT NULL AUTO_INCREMENT, VALIDATION_STAMP INTEGER NOT NULL, BUILD INTEGER NOT NULL, DESCRIPTION VARCHAR(1000) NULL, STATUS VARCHAR(20) NOT NULL, CONSTRAINT PK_VALIDATION_RUN PRIMARY KEY (ID), CONSTRAINT FK_VALIDATION_RUN_VALIDATION_STAMP FOREIGN KEY (VALIDATION_STAMP) REFERENCES VALIDATION_STAMP (ID) ON DELETE CASCADE, CONSTRAINT FK_VALIDATION_RUN_BUILD FOREIGN KEY (BUILD) REFERENCES BUILD (ID) ON DELETE CASCADE ); -- Comments CREATE TABLE COMMENT ( ID INTEGER NOT NULL AUTO_INCREMENT, CONTENT VARCHAR(1000) NOT NULL, CONSTRAINT PK_COMMENT PRIMARY KEY (ID), PROJECT_GROUP INTEGER NULL, PROJECT INTEGER NULL, BRANCH INTEGER NULL, BUILD INTEGER NULL, PROMOTION_LEVEL INTEGER NULL, VALIDATION_STAMP INTEGER NULL, VALIDATION_RUN INTEGER NULL, CONSTRAINT FK_COMMENT_PROJECT_GROUP FOREIGN KEY (PROJECT_GROUP) REFERENCES PROJECT_GROUP (ID) ON DELETE CASCADE, CONSTRAINT FK_COMMENT_PROJECT FOREIGN KEY (PROJECT) REFERENCES PROJECT (ID) ON DELETE CASCADE, CONSTRAINT FK_COMMENT_BRANCH FOREIGN KEY (BRANCH) REFERENCES BRANCH (ID) ON DELETE CASCADE, CONSTRAINT FK_COMMENT_BUILD FOREIGN KEY (BUILD) REFERENCES BUILD (ID) ON DELETE CASCADE, CONSTRAINT FK_COMMENT_PROMOTION_LEVEL FOREIGN KEY (PROMOTION_LEVEL) REFERENCES PROMOTION_LEVEL (ID) ON DELETE CASCADE, CONSTRAINT FK_COMMENT_VALIDATION_STAMP FOREIGN KEY (VALIDATION_STAMP) REFERENCES VALIDATION_STAMP (ID) ON DELETE CASCADE, CONSTRAINT FK_COMMENT_VALIDATION_RUN FOREIGN KEY (VALIDATION_RUN) REFERENCES VALIDATION_RUN (ID) ON DELETE CASCADE ); -- Properties CREATE TABLE PROPERTIES ( ID INTEGER NOT NULL AUTO_INCREMENT, NAME VARCHAR(20) NOT NULL, VALUE VARCHAR(300) NOT NULL, CONSTRAINT PK_PROPERTIES PRIMARY KEY (ID), PROJECT_GROUP INTEGER NULL, PROJECT INTEGER NULL, BRANCH INTEGER NULL, BUILD INTEGER NULL, PROMOTION_LEVEL INTEGER NULL, VALIDATION_STAMP INTEGER NULL, VALIDATION_RUN INTEGER NULL, CONSTRAINT FK_PROPERTIES_PROJECT_GROUP FOREIGN KEY (PROJECT_GROUP) REFERENCES PROJECT_GROUP (ID) ON DELETE CASCADE, CONSTRAINT FK_PROPERTIES_PROJECT FOREIGN KEY (PROJECT) REFERENCES PROJECT (ID) ON DELETE CASCADE, CONSTRAINT FK_PROPERTIES_BRANCH FOREIGN KEY (BRANCH) REFERENCES BRANCH (ID) ON DELETE CASCADE, CONSTRAINT FK_PROPERTIES_BUILD FOREIGN KEY (BUILD) REFERENCES BUILD (ID) ON DELETE CASCADE, CONSTRAINT FK_PROPERTIES_PROMOTION_LEVEL FOREIGN KEY (PROMOTION_LEVEL) REFERENCES PROMOTION_LEVEL (ID) ON DELETE CASCADE, CONSTRAINT FK_PROPERTIES_VALIDATION_STAMP FOREIGN KEY (VALIDATION_STAMP) REFERENCES VALIDATION_STAMP (ID) ON DELETE CASCADE, CONSTRAINT FK_PROPERTIES_VALIDATION_RUN FOREIGN KEY (VALIDATION_RUN) REFERENCES VALIDATION_RUN (ID) ON DELETE CASCADE ); -- Audit CREATE TABLE EVENTS ( ID INTEGER NOT NULL AUTO_INCREMENT, AUTHOR VARCHAR(80) NOT NULL, AUTHOR_ID INTEGER NULL, EVENT_TIMESTAMP TIMESTAMP NOT NULL, EVENT_TYPE VARCHAR(40) NOT NUll, CONSTRAINT PK_EVENT PRIMARY KEY (ID), CONSTRAINT FK_EVENT_AUTHOR_ID FOREIGN KEY (AUTHOR_ID) REFERENCES ACCOUNT (ID) ON DELETE SET NULL, ACCOUNT INTEGER NULL, PROJECT_GROUP INTEGER NULL, PROJECT INTEGER NULL, BRANCH INTEGER NULL, BUILD INTEGER NULL, PROMOTION_LEVEL INTEGER NULL, VALIDATION_STAMP INTEGER NULL, VALIDATION_RUN INTEGER NULL, COMMENT INTEGER NULL, CONSTRAINT FK_EVENT_ACCOUNT FOREIGN KEY (ACCOUNT) REFERENCES ACCOUNT (ID) ON DELETE CASCADE, CONSTRAINT FK_EVENT_PROJECT_GROUP FOREIGN KEY (PROJECT_GROUP) REFERENCES PROJECT_GROUP (ID) ON DELETE CASCADE, CONSTRAINT FK_EVENT_PROJECT FOREIGN KEY (PROJECT) REFERENCES PROJECT (ID) ON DELETE CASCADE, CONSTRAINT FK_EVENT_BRANCH FOREIGN KEY (BRANCH) REFERENCES BRANCH (ID) ON DELETE CASCADE, CONSTRAINT FK_EVENT_BUILD FOREIGN KEY (BUILD) REFERENCES BUILD (ID) ON DELETE CASCADE, CONSTRAINT FK_EVENT_PROMOTION_LEVEL FOREIGN KEY (PROMOTION_LEVEL) REFERENCES PROMOTION_LEVEL (ID) ON DELETE CASCADE, CONSTRAINT FK_EVENT_VALIDATION_STAMP FOREIGN KEY (VALIDATION_STAMP) REFERENCES VALIDATION_STAMP (ID) ON DELETE CASCADE, CONSTRAINT FK_EVENT_VALIDATION_RUN FOREIGN KEY (VALIDATION_RUN) REFERENCES VALIDATION_RUN (ID) ON DELETE CASCADE, CONSTRAINT FK_EVENT_COMMENT FOREIGN KEY (COMMENT) REFERENCES COMMENT (ID) ON DELETE CASCADE ); -- @mysql -- See update 26 -- DB versioning CREATE TABLE DBVERSION ( VALUE INTEGER NOT NULL, UPDATED TIMESTAMP NOT NULL );
-- 7 - Afficher la liste des hôtels avec leur station Le résultat doit faire apparaître le nom de la station, le nom de l’hôtel, la catégorie, la ville) SELECT hotel.hot_nom, hotel.hot_sta_id, hotel.hot_categorie, hotel.hot_ville, station.sta_nom, station.sta_id From hotel, station -- ou SELECT cha_numero, hot_nom, hot_categorie, hot_ville, sta_nom, sta_id From hotel, station WHERE sta_id = hot_sta_id -- 8 - Afficher la liste des chambres et leur hôtel Le résultat doit faire apparaître le nom de l’hôtel, la catégorie, la ville, le numéro de la chambre) SELECT chambre.cha_numero, hotel.hot_nom, hotel.hot_categorie, hotel.hot_ville From chambre, hotel -- 9 - Afficher la liste des chambres de plus d'une place dans des hôtels situés sur la ville de Bretou -- Le résultat doit faire apparaître le nom de l’hôtel, la catégorie, la ville, le numéro de la chambre -- et sa capacité) SELECT chambre.cha_numero, chambre.cha_capacite, hotel.hot_nom, hotel.hot_categorie, hotel.hot_ville From chambre, hotel WHERE hotel.hot_ville = "bretou" and chambre.cha_capacite >1 --ou SELECT hot_nom, hot_categorie,hot_ville, cha_numero, cha_capacite FROM chambre JOIN hotel ON hot_id = cha_hot_id WHERE chambre.cha_capacite >1 AND hot_ville = "bretou" --10 - Afficher la liste des réservations avec le nom des clients Le résultat doit faire apparaître le nom du client, le nom de l’hôtel, la date de réservation SELECT reservation.res_cli_id, reservation.res_date, reservation.res_cha_id, client.cli_id, client.cli_nom, chambre.cha_id, chambre.cha_hot_id, hotel.hot_id, hotel.hot_nom from reservation, client, chambre, hotel where reservation.res_cli_id = client.cli_id --ou SELECT cli_nom, hot_nom, res_date from reservation JOIN client ON cli_id = res_cli_id JOIN chambre ON cha_id = res_cha_id JOIN hotel ON hot_id = cha_hot_id --11 - Afficher la liste des chambres avec le nom de l’hôtel et le nom de la station Le résultat doit faire apparaître le nom de la station, --le nom de l’hôtel, le numéro de la chambre et sa capacité) SELECT chambre.cha_numero, chambre.cha_capacite, chambre.cha_hot_id, hotel.hot_id, hotel.hot_sta_id, hotel.hot_nom, station.sta_id, station.sta_nom from chambre, hotel, station where chambre.cha_hot_id = hotel.hot_id and hotel.hot_sta_id = station.sta_id --ou SELECT cha_numero, cha_capacite, hot_id, hot_sta_id, hot_nom, sta_id, sta_nom from station join hotel on hot_sta_id = sta_id JOIN chambre ON cha_hot_id = hot_id --12 - Afficher les réservations avec le nom du client et le nom de l’hôtel Le résultat doit faire apparaître le nom du client, le nom de l’hôtel, --la date de début du séjour et la durée du séjour SELECT DATEDIFF( date1, date2 ); SELECT res_date_debut,DATEDIFF( res_date_fin, res_date_debut), hot_nom, cli_nom FROM `client` join reservation on res_cli_id = cli_id JOIN chambre ON cha_id = res_cha_id join hotel on hot_id = cha_hot_id
<reponame>R7L208/sqlfluff select SQL_BIG_RESULT * from table1;
CREATE OR REPLACE FUNCTION ts.insertaggregatesampleages(_aggregatedatasetid integer, _aggregatechronid integer) RETURNS void LANGUAGE plpgsql AS $function$ DECLARE _nrows int; _currentid int = 0; _sampleageid int; _count int; BEGIN CREATE TEMPORARY TABLE _sampleageids ( id SERIAL, sampleageid int ); INSERT INTO _sampleageids (sampleageid) SELECT ndb.sampleages.sampleageid FROM ndb.aggregatesamples INNER JOIN ndb.sampleages ON ndb.aggregatesamples.sampleid = ndb.sampleages.sampleid WHERE (ndb.aggregatesamples.aggregatedatasetid = _aggregatedatasetid); SELECT count(*) FROM _sampleageids INTO _nrows; WHILE _currentid < _nrows LOOP _currentid := _currentid + 1; _sampleageid := (SELECT sampleageid FROM _sampleageids WHERE id = _currentid); SELECT COUNT(*) FROM ndb.aggregatesampleages WHERE (sampleageid = _sampleageid) AND (aggregatedatasetid = _aggregatedatasetid) AND (aggregatechronid = _aggregatechronid) INTO _count; IF _count = 0 THEN INSERT INTO ndb.aggregatesampleages (aggregatedatasetid, aggregatechronid, sampleageid) VALUES (_aggregatedatasetid, _aggregatechronid, _sampleageid); END IF; END LOOP; DROP TABLE _sampleageids; END; $function$
<reponame>everdreamsoft/counterparty2mysql<filename>sql/storage.sql DROP TABLE IF EXISTS storage; CREATE TABLE storage ( contract_id INTEGER UNSIGNED, -- id of record in index_contracts `key` BLOB, `value` BLOB ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; CREATE INDEX contract_id ON storage (contract_id);
<filename>mamakriau_nsm.sql -- phpMyAdmin SQL Dump -- version 4.9.7 -- https://www.phpmyadmin.net/ -- -- Host: localhost:3306 -- Waktu pembuatan: 18 Sep 2021 pada 08.04 -- Versi server: 10.3.24-MariaDB-cll-lve -- Versi PHP: 7.3.30 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `mamakriau_nsm` -- -- -------------------------------------------------------- -- -- Struktur dari tabel `about` -- CREATE TABLE `about` ( `id` int(11) NOT NULL, `title` varchar(255) NOT NULL, `description` varchar(255) NOT NULL, `image` varchar(255) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `about` -- INSERT INTO `about` (`id`, `title`, `description`, `image`) VALUES (1, '<NAME>', 'test', ''); -- -------------------------------------------------------- -- -- Struktur dari tabel `banner` -- CREATE TABLE `banner` ( `id` int(11) NOT NULL, `title` varchar(255) NOT NULL, `sub` text DEFAULT NULL, `button` varchar(255) NOT NULL, `link` text DEFAULT NULL, `image` varchar(255) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `banner` -- INSERT INTO `banner` (`id`, `title`, `sub`, `button`, `link`, `image`) VALUES (1, '<NAME>', '<p>The full name of <NAME> is usually called Sadid. I like to type on the keyboard because of that I pursue programming. I prefer teamwork but I can also work individually. In terms of formal education, I haven&#39;t finished but that doesn&#39;t stop me from studying.</p>\r\n', 'Download My CV', 'test', 'default.png'); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_attrs` -- CREATE TABLE `bravo_attrs` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `service` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `display_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `hide_in_single` tinyint(4) DEFAULT NULL, `hide_in_filter_search` tinyint(4) DEFAULT NULL, `position` smallint(6) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_attrs` -- INSERT INTO `bravo_attrs` (`id`, `name`, `slug`, `service`, `create_user`, `update_user`, `created_at`, `updated_at`, `deleted_at`, `display_type`, `hide_in_single`, `hide_in_filter_search`, `position`) VALUES (1, 'Travel Styles', 'travel-styles', 'tour', NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL, NULL, NULL, NULL), (2, 'Facilities', 'facilities', 'tour', NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL, NULL, NULL, NULL), (3, 'Space Type', 'space-type', 'space', NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL, NULL, NULL), (4, 'Amenities', 'amenities', 'space', NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL, NULL, NULL), (5, 'Property type', 'property-type', 'hotel', NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL, NULL, NULL), (6, 'Facilities', 'facilities-1', 'hotel', NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL, NULL, NULL), (7, 'Hotel Service', 'hotel-service', 'hotel', NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL, NULL, NULL), (8, 'Room Amenities', 'room-amenities', 'hotel_room', NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL, NULL, NULL), (9, 'Car Type', 'car-type', 'car', NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, 1, NULL, NULL), (10, 'Car Features', 'car-features', 'car', NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, NULL, NULL, NULL), (11, 'Event Type', 'event-type', 'event', NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_attrs_translations` -- CREATE TABLE `bravo_attrs_translations` ( `id` bigint(20) UNSIGNED NOT NULL, `origin_id` bigint(20) DEFAULT NULL, `locale` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_bookings` -- CREATE TABLE `bravo_bookings` ( `id` bigint(20) UNSIGNED NOT NULL, `code` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vendor_id` int(11) DEFAULT NULL, `customer_id` int(11) DEFAULT NULL, `payment_id` int(11) DEFAULT NULL, `gateway` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `object_id` int(11) DEFAULT NULL, `object_model` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` datetime DEFAULT NULL, `end_date` datetime DEFAULT NULL, `total` decimal(10,2) DEFAULT NULL, `total_guests` int(11) DEFAULT NULL, `currency` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `deposit` decimal(10,2) DEFAULT NULL, `deposit_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `commission` decimal(10,2) DEFAULT NULL, `commission_type` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `first_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_notes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `buyer_fees` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `total_before_fees` decimal(10,2) DEFAULT NULL, `paid_vendor` tinyint(4) DEFAULT NULL, `object_child_id` bigint(20) DEFAULT NULL, `number` smallint(6) DEFAULT NULL, `paid` decimal(10,2) DEFAULT NULL, `pay_now` decimal(10,2) DEFAULT NULL, `wallet_credit_used` double DEFAULT NULL, `wallet_total_used` double DEFAULT NULL, `wallet_transaction_id` bigint(20) DEFAULT NULL, `is_refund_wallet` tinyint(4) DEFAULT NULL, `vendor_service_fee_amount` decimal(8,2) DEFAULT NULL, `vendor_service_fee` text COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_bookings` -- INSERT INTO `bravo_bookings` (`id`, `code`, `vendor_id`, `customer_id`, `payment_id`, `gateway`, `object_id`, `object_model`, `start_date`, `end_date`, `total`, `total_guests`, `currency`, `status`, `deposit`, `deposit_type`, `commission`, `commission_type`, `email`, `first_name`, `last_name`, `phone`, `address`, `address2`, `city`, `state`, `zip_code`, `country`, `customer_notes`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`, `buyer_fees`, `total_before_fees`, `paid_vendor`, `object_child_id`, `number`, `paid`, `pay_now`, `wallet_credit_used`, `wallet_total_used`, `wallet_transaction_id`, `is_refund_wallet`, `vendor_service_fee_amount`, `vendor_service_fee`) VALUES (1, '703f6536aa9c487030fadf9f8a79f714', 1, 18, NULL, NULL, 9, 'hotel', '2021-08-25 00:00:00', '2021-08-27 00:00:00', 800.00, 1, NULL, 'draft', NULL, NULL, 70.00, '{\"amount\":\"10\",\"type\":\"percent\"}', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 18, NULL, NULL, '2021-08-25 00:40:30', '2021-08-25 00:40:30', '[{\"name\":\"Service fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"100\",\"type\":\"one_time\"}]', 700.00, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.00, '\"\"'); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_booking_meta` -- CREATE TABLE `bravo_booking_meta` ( `id` bigint(20) UNSIGNED NOT NULL, `booking_id` int(11) DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `val` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_booking_meta` -- INSERT INTO `bravo_booking_meta` (`id`, `booking_id`, `name`, `val`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1, 1, 'duration', NULL, NULL, NULL, NULL, NULL), (2, 1, 'base_price', '550.00', NULL, NULL, NULL, NULL), (3, 1, 'sale_price', NULL, NULL, NULL, NULL, NULL), (4, 1, 'guests', '1', NULL, NULL, NULL, NULL), (5, 1, 'adults', '1', NULL, NULL, NULL, NULL), (6, 1, 'children', '0', NULL, NULL, NULL, NULL), (7, 1, 'extra_price', '[]', NULL, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_booking_payments` -- CREATE TABLE `bravo_booking_payments` ( `id` bigint(20) UNSIGNED NOT NULL, `booking_id` int(11) DEFAULT NULL, `payment_gateway` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` decimal(10,2) DEFAULT NULL, `currency` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `converted_amount` decimal(10,2) DEFAULT NULL, `converted_currency` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `exchange_rate` decimal(10,2) DEFAULT NULL, `status` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `logs` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `code` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `object_id` bigint(20) DEFAULT NULL, `object_model` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `wallet_transaction_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_booking_time_slots` -- CREATE TABLE `bravo_booking_time_slots` ( `id` bigint(20) UNSIGNED NOT NULL, `booking_id` int(11) DEFAULT NULL, `object_id` bigint(20) DEFAULT NULL, `object_model` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_time` time DEFAULT NULL, `end_time` time DEFAULT NULL, `duration` double(255,2) DEFAULT NULL, `duration_unit` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_cars` -- CREATE TABLE `bravo_cars` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) CHARACTER SET utf8 NOT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image_id` int(11) DEFAULT NULL, `banner_image_id` int(11) DEFAULT NULL, `location_id` int(11) DEFAULT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `map_lat` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `map_lng` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `map_zoom` int(11) DEFAULT NULL, `is_featured` tinyint(4) DEFAULT NULL, `gallery` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `faqs` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `number` tinyint(4) DEFAULT NULL, `price` decimal(12,2) DEFAULT NULL, `sale_price` decimal(12,2) DEFAULT NULL, `is_instant` tinyint(4) DEFAULT 0, `enable_extra_price` tinyint(4) DEFAULT NULL, `extra_price` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_by_days` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `passenger` tinyint(4) DEFAULT 0, `gear` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT '0', `baggage` tinyint(4) DEFAULT 0, `door` tinyint(4) DEFAULT 0, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `default_state` tinyint(4) DEFAULT 1, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `review_score` decimal(2,1) DEFAULT NULL, `ical_import_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `enable_service_fee` tinyint(4) DEFAULT NULL, `service_fee` text COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_cars` -- INSERT INTO `bravo_cars` (`id`, `title`, `slug`, `content`, `image_id`, `banner_image_id`, `location_id`, `address`, `map_lat`, `map_lng`, `map_zoom`, `is_featured`, `gallery`, `video`, `faqs`, `number`, `price`, `sale_price`, `is_instant`, `enable_extra_price`, `extra_price`, `discount_by_days`, `passenger`, `gear`, `baggage`, `door`, `status`, `default_state`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`, `review_score`, `ical_import_url`, `enable_service_fee`, `service_fee`) VALUES (1, 'BMW-X6-facelift', 'bmw-x6-facelift', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 142, 135, 1, 'Arrondissement de Paris', '21.054831', '105.796077', 12, 1, '154,155,156,157,158,159,160', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris. Auto Tech does not do any sort of transmission flush. Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission. We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]', 3, 500.00, 210.00, 0, 1, '[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 5, 'Auto', 4, 4, 'publish', 1, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 5.0, NULL, NULL, NULL), (2, '2019 <NAME>', '2019-honda-clarityt-1', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 143, 135, 1, 'Arrondissement de Paris', '21.039771', '105.777203', 12, 0, '154,155,156,157,158,159,160', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris. Auto Tech does not do any sort of transmission flush. Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission. We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]', 2, 300.00, 0.00, 1, 1, '[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 4, 'Auto', 9, 4, 'publish', 1, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 5.0, NULL, NULL, NULL), (3, '2019 Honda Clarity', '2019-honda-clarityt', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 143, 135, 3, 'Arrondissement de Paris', '21.031217', '105.773698', 12, 0, '154,155,156,157,158,159,160', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris. Auto Tech does not do any sort of transmission flush. Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission. We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]', 5, 300.00, 0.00, 1, 1, '[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 7, 'Auto', 10, 4, 'publish', 1, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4.5, NULL, NULL, NULL), (4, '2019 BMW M6 Gran Coupe', '2019-bmw-m6-gran-coupe', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including V<NAME> Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 144, 135, 1, 'Arrondissement de Paris', '21.020161', '105.789655', 12, 0, '154,155,156,157,158,159,160', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris. Auto Tech does not do any sort of transmission flush. Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission. We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]', 2, 300.00, 0.00, 0, 1, '[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 4, 'Auto', 4, 4, 'publish', 1, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4.0, NULL, NULL, NULL), (5, '2019 Audi S3', '2019-audi-s3', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 145, 135, 5, 'Arrondissement de Paris', '21.014873', '105.794117', 12, 0, '154,155,156,157,158,159,160', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris. Auto Tech does not do any sort of transmission flush. Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission. We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]', 4, 300.00, 0.00, 0, 1, '[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 3, 'Auto', 8, 4, 'publish', 1, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4.0, NULL, NULL, NULL), (6, 'Vinfast Fadil Plus', 'vinfast-fadil-plus', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 146, 135, 1, 'Arrondissement de Paris', '21.018398', '105.812820', 12, 0, '154,155,156,157,158,159,160', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris. Auto Tech does not do any sort of transmission flush. Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission. We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]', 2, 400.00, 0.00, 0, 1, '[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 3, 'Auto', 6, 4, 'publish', 1, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4.0, NULL, NULL, NULL), (7, '<NAME>', 'mercedes-benz', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 147, 135, 1, 'Arrondissement de Paris', '21.025769', '105.829635', 12, 1, '154,155,156,157,158,159,160', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris. Auto Tech does not do any sort of transmission flush. Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission. We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]', 1, 200.00, 0.00, 0, 1, '[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 4, 'Auto', 4, 4, 'publish', 1, 4, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4.3, NULL, NULL, NULL), (8, 'Vinfast Lux SA2.0 Plus', 'vinfast-lux-sa20-plus', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 148, 135, 1, 'Arrondissement de Paris', '21.017437', '105.831179', 12, 0, '154,155,156,157,158,159,160', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris. Auto Tech does not do any sort of transmission flush. Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission. We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]', 4, 600.00, 0.00, 0, 1, '[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 3, 'Auto', 8, 4, 'publish', 1, 4, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4.0, NULL, NULL, NULL), (9, 'Honda Civic', 'honda-civic', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 149, 135, 6, 'Arrondissement de Paris', '21.047879', '105.809731', 12, 1, '154,155,156,157,158,159,160', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris. Auto Tech does not do any sort of transmission flush. Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission. We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]', 3, 450.00, 0.00, 1, 1, '[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 3, 'Auto', 6, 4, 'publish', 1, 4, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4.7, NULL, NULL, NULL), (10, '<NAME>', 'toyota-prius-plus', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including V<NAME> Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 150, 135, 7, 'Arrondissement de Paris', '21.025449', '105.804412', 12, 0, '154,155,156,157,158,159,160', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris. Auto Tech does not do any sort of transmission flush. Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission. We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]', 4, 199.00, 0.00, 1, 1, '[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 10, 'Auto', 10, 4, 'publish', 1, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4.5, NULL, NULL, NULL); INSERT INTO `bravo_cars` (`id`, `title`, `slug`, `content`, `image_id`, `banner_image_id`, `location_id`, `address`, `map_lat`, `map_lng`, `map_zoom`, `is_featured`, `gallery`, `video`, `faqs`, `number`, `price`, `sale_price`, `is_instant`, `enable_extra_price`, `extra_price`, `discount_by_days`, `passenger`, `gear`, `baggage`, `door`, `status`, `default_state`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`, `review_score`, `ical_import_url`, `enable_service_fee`, `service_fee`) VALUES (11, 'Vinfast Lux V8 (SUV)', 'vinfast-lux-v8-suv', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including V<NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 151, 135, 8, 'Arrondissement de Paris', '21.020001', '105.836670', 12, 1, '154,155,156,157,158,159,160', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris. Auto Tech does not do any sort of transmission flush. Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission. We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]', 3, 250.00, 0.00, 0, 1, '[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 6, 'Auto', 9, 4, 'publish', 1, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4.3, NULL, NULL, NULL), (12, 'Vinfast Lux A2.0 Plus', 'vinfast-lux-a20-plus', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 152, 135, 3, 'Arrondissement de Paris', '21.051244', '105.777988', 12, 1, '154,155,156,157,158,159,160', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris. Auto Tech does not do any sort of transmission flush. Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission. We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]', 2, 350.00, 0.00, 1, 1, '[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 4, 'Auto', 6, 4, 'publish', 1, 4, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4.8, NULL, NULL, NULL), (13, 'Vinfast Fadil Standard', 'vinfast-fadil-standard', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 153, 135, 1, 'Arrondissement de Paris', '21.053326', '105.841475', 12, 0, '154,155,156,157,158,159,160', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"When should I check the transmission fluid?\",\"content\":\"You should check the transmission fluid regularly. Try to check it at least once a month or at the sign of any trouble, for instance if there is any hesitation when you shift gears in an automatic.\"},{\"title\":\"How do I check the transmission fluid?\",\"content\":\"It\\u2019s not hard to check your transmission fluid if the vehicle is an automatic. This link to the Dummies guide to checking your transmission fluid has step-by-step instructions and illustrations that show you where to locate the dipstick. What you want is clear, pink transmission fluid. If it is low, top it up. If it is dark, smells burnt or has bits in it then you need to get it changed by at a reliable auto repair shop.\"},{\"title\":\"Is it really that important to check the transmission fluid?\",\"content\":\"Yes, it can be. Often times the symptoms you\\u2019ll experience from low or dirty transmission fluid will be the same as transmission problems. If you check the fluid levels regularly and refill as necessary then you\\u2019ll know if there are any symptoms of trouble that it\\u2019s not because the fluid levels are low and you need to see a mechanic.\"},{\"title\":\"Are there different types of transmission fluid?\",\"content\":\"How do I know what to buy? Yes, there are many different types of transmission fluid, each designed for a certain transmission. Different vehicles require different transmission fluids and the age of the car can also be a factor because newer transmissions take different types of transmission fluids than older vehicles. Don\\u2019t guess! Find out which type of transmission fluid is required for your vehicle by checking your owner\\u2019s manual.\"},{\"title\":\"What is a transmission flush and should I get one?\",\"content\":\"A transmission flush is used by some auto repair shops with the goal of flushing out debris. Auto Tech does not do any sort of transmission flush. Flushing an older transmission can cause harmful sediment to get stuck in the solenoids of the transmission. We heavily favor regular maintenance to lengthen the life of your transmission. We service the transmission by changing fluid and the filter and do not recommend having your transmission flushed.\"},{\"title\":\"How do I know I have a fluid leak from the transmission?\",\"content\":\"Transmission fluid is slightly pink in color \\u2013 it will appear pink or red, or possibly more brownish if the transmission fluid is dirty and needs to be replaced. When you feel transmission fluid it will be slick and oily on your fingers. It smells much like oil unless it is dirty, in which case it will smell burnt. Usually transmission fluid leaks around the front or middle of your vehicle, so if you find puddles of reddish liquid there it is probably transmission fluid. Another clue is if in addition to the leak your transmission is not working well and you notice changes in the way it sounds when you shift gears, or if shifting gears is not working as well. In this case you likely have a leak of transmission fluid that is impacting how your transmission operates.\"}]', 4, 400.00, 0.00, 0, 1, '[{\"name\":\"Child Toddler Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Infant Child Seat\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"GPS Satellite\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 3, 'Auto', 8, 4, 'publish', 1, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4.0, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_car_dates` -- CREATE TABLE `bravo_car_dates` ( `id` bigint(20) UNSIGNED NOT NULL, `target_id` bigint(20) DEFAULT NULL, `start_date` timestamp NULL DEFAULT NULL, `end_date` timestamp NULL DEFAULT NULL, `price` decimal(12,2) DEFAULT NULL, `number` tinyint(4) DEFAULT NULL, `active` tinyint(4) DEFAULT 0, `note_to_customer` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `note_to_admin` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_instant` tinyint(4) DEFAULT 0, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_car_term` -- CREATE TABLE `bravo_car_term` ( `id` bigint(20) UNSIGNED NOT NULL, `term_id` int(11) DEFAULT NULL, `target_id` int(11) DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_car_term` -- INSERT INTO `bravo_car_term` (`id`, `term_id`, `target_id`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1, 62, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (2, 63, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (3, 65, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (4, 66, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (5, 68, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (6, 61, 2, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (7, 63, 2, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (8, 64, 2, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (9, 65, 2, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (10, 66, 2, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (11, 67, 2, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (12, 68, 2, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (13, 61, 3, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (14, 62, 3, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (15, 63, 3, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (16, 64, 3, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (17, 65, 3, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (18, 66, 3, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (19, 67, 3, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (20, 68, 3, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (21, 61, 4, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (22, 62, 4, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (23, 63, 4, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (24, 65, 4, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (25, 66, 4, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (26, 67, 4, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (27, 68, 4, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (28, 61, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (29, 62, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (30, 63, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (31, 64, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (32, 65, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (33, 66, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (34, 67, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (35, 68, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (36, 61, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (37, 62, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (38, 63, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (39, 64, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (40, 65, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (41, 66, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (42, 67, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (43, 62, 7, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (44, 64, 7, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (45, 65, 7, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (46, 68, 7, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (47, 61, 8, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (48, 62, 8, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (49, 63, 8, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (50, 64, 8, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (51, 65, 8, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (52, 67, 8, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (53, 61, 9, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (54, 62, 9, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (55, 65, 9, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (56, 67, 9, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (57, 68, 9, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (58, 61, 10, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (59, 63, 10, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (60, 64, 10, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (61, 65, 10, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (62, 67, 10, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (63, 68, 10, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (64, 61, 11, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (65, 62, 11, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (66, 63, 11, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (67, 64, 11, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (68, 65, 11, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (69, 66, 11, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (70, 67, 11, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (71, 68, 11, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (72, 61, 12, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (73, 62, 12, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (74, 64, 12, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (75, 66, 12, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (76, 67, 12, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (77, 68, 12, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (78, 61, 13, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (79, 62, 13, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (80, 63, 13, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (81, 64, 13, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (82, 65, 13, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (83, 66, 13, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (84, 68, 13, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (85, 69, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (86, 70, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (87, 71, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (88, 72, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (89, 73, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (90, 74, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (91, 69, 2, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (92, 70, 2, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (93, 71, 2, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (94, 72, 2, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (95, 73, 2, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (96, 74, 2, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (97, 69, 3, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (98, 70, 3, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (99, 71, 3, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (100, 72, 3, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (101, 73, 3, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (102, 74, 3, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (103, 69, 4, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (104, 70, 4, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (105, 71, 4, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (106, 72, 4, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (107, 73, 4, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (108, 74, 4, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (109, 69, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (110, 70, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (111, 71, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (112, 72, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (113, 73, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (114, 74, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (115, 69, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (116, 70, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (117, 71, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (118, 72, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (119, 73, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (120, 74, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (121, 69, 7, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (122, 70, 7, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (123, 71, 7, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (124, 72, 7, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (125, 73, 7, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (126, 74, 7, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (127, 69, 8, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (128, 70, 8, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (129, 71, 8, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (130, 72, 8, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (131, 73, 8, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (132, 74, 8, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (133, 69, 9, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (134, 70, 9, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (135, 71, 9, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (136, 72, 9, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (137, 73, 9, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (138, 74, 9, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (139, 69, 10, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (140, 70, 10, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (141, 71, 10, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (142, 72, 10, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (143, 73, 10, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (144, 74, 10, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (145, 69, 11, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (146, 70, 11, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (147, 71, 11, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (148, 72, 11, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (149, 73, 11, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (150, 74, 11, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (151, 69, 12, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (152, 70, 12, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (153, 71, 12, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (154, 72, 12, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (155, 73, 12, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (156, 74, 12, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (157, 69, 13, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (158, 70, 13, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (159, 71, 13, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (160, 72, 13, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (161, 73, 13, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (162, 74, 13, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_car_translations` -- CREATE TABLE `bravo_car_translations` ( `id` bigint(20) UNSIGNED NOT NULL, `origin_id` int(10) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `faqs` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_contact` -- CREATE TABLE `bravo_contact` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_contact` -- INSERT INTO `bravo_contact` (`id`, `name`, `email`, `message`, `status`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, '<NAME>', '<EMAIL>', 'Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with emeraldoffical.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out emeraldoffical.com.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=emeraldoffical.com', 'sent', NULL, NULL, NULL, '2021-08-24 12:29:47', '2021-08-24 12:29:47'); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_enquiries` -- CREATE TABLE `bravo_enquiries` ( `id` bigint(20) UNSIGNED NOT NULL, `object_id` int(11) DEFAULT NULL, `object_model` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vendor_id` bigint(20) DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `publish_date` datetime DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_events` -- CREATE TABLE `bravo_events` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) CHARACTER SET utf8 NOT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image_id` int(11) DEFAULT NULL, `banner_image_id` int(11) DEFAULT NULL, `location_id` int(11) DEFAULT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `map_lat` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `map_lng` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `map_zoom` int(11) DEFAULT NULL, `is_featured` tinyint(4) DEFAULT NULL, `gallery` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `faqs` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `ticket_types` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `duration` int(11) DEFAULT NULL, `start_time` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(12,2) DEFAULT NULL, `sale_price` decimal(12,2) DEFAULT NULL, `is_instant` tinyint(4) DEFAULT 0, `enable_extra_price` tinyint(4) DEFAULT NULL, `extra_price` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `review_score` decimal(2,1) DEFAULT NULL, `ical_import_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `default_state` tinyint(4) DEFAULT 1, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `end_time` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `duration_unit` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `enable_service_fee` tinyint(4) DEFAULT NULL, `service_fee` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `surrounding` text COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_events` -- INSERT INTO `bravo_events` (`id`, `title`, `slug`, `content`, `image_id`, `banner_image_id`, `location_id`, `address`, `map_lat`, `map_lng`, `map_zoom`, `is_featured`, `gallery`, `video`, `faqs`, `ticket_types`, `duration`, `start_time`, `price`, `sale_price`, `is_instant`, `enable_extra_price`, `extra_price`, `review_score`, `ical_import_url`, `status`, `default_state`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`, `end_time`, `duration_unit`, `enable_service_fee`, `service_fee`, `surrounding`) VALUES (1, 'Andante & Allegro Event Design', 'andante-allegro-event-design', '<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including V<NAME> Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 162, 180, 1, 'Arrondissement de Paris', '48.852754', '2.339155', 12, 0, '174,175,176,177,178,179', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience. Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening. One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website. We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very. There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks. The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES! Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]', '[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]', 1, '20:00', 2000.00, 0.00, 0, 1, '[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]', 4.8, NULL, 'publish', 1, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, NULL, NULL, NULL), (2, 'Painted Desert Event Designs', 'painted-desert-event-designs', '<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 163, 181, 1, 'Porte de Vanves', '48.853917', '2.307199', 12, 1, '174,175,176,177,178,179', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience. Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening. One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website. We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very. There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks. The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES! Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]', '[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]', 2, '19:00', 900.00, 709.00, 0, 1, '[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]', 4.3, NULL, 'publish', 1, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, NULL, NULL, NULL), (3, 'Bamboo Grove Event Planning', 'bamboo-grove-event-planning', '<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 164, 182, 1, 'Petit-Montrouge', '48.884900', '2.346377', 12, 1, '174,175,176,177,178,179', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience. Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening. One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website. We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very. There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks. The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES! Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]', '[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]', 4, '19:00', 1500.00, 524.00, 0, 1, '[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]', 4.5, NULL, 'publish', 1, 4, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, NULL, NULL, NULL), (4, 'Aspen Glade Weddings & Events', 'aspen-glade-weddings-events', '<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 165, 180, 2, 'New York', '40.707891', '-74.008825', 12, 1, '174,175,176,177,178,179', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience. Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening. One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website. We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very. There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks. The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES! Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]', '[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]', 1, '17:00', 850.00, 0.00, 0, 1, '[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]', 4.3, NULL, 'publish', 1, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, NULL, NULL, NULL), (5, 'Southwest States (Ex Los Angeles) ', 'southwest-states', '<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 166, 181, 2, 'Regal Cinemas Battery Park 11', '40.714578', '-73.983888', 12, 0, '174,175,176,177,178,179', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience. Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening. One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website. We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very. There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks. The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES! Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]', '[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]', 6, '18:00', 1900.00, 864.00, 0, 1, '[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]', 4.5, NULL, 'publish', 1, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, NULL, NULL, NULL), (6, 'Spanish Moss Event Design', 'spanish-moss-event-design', '<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 167, 182, 2, 'Prince St Station', '40.720161', '-74.009628', 12, 1, '174,175,176,177,178,179', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience. Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening. One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website. We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very. There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks. The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES! Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]', '[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]', 8, '19:00', 600.00, 0.00, 0, 1, '[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]', 4.3, NULL, 'publish', 1, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, NULL, NULL, NULL), (7, 'Eastern Discovery', 'eastern-discovery', '<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 168, 180, 2, 'Pier 36 New York', '40.708581', '-73.998817', 12, 0, '174,175,176,177,178,179', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience. Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening. One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website. We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very. There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks. The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES! Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]', '[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]', 6, '15:00', 2100.00, 440.00, 0, 1, '[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]', 4.3, NULL, 'publish', 1, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, NULL, NULL, NULL), (8, 'Pink Crescent Moon Events', 'pink-crescent-moon-events', '<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 169, 181, 3, 'Trimmer Springs Rd, Sanger', '36.822484', '-119.365266', 12, 0, '174,175,176,177,178,179', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience. Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening. One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website. We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very. There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks. The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES! Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]', '[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]', 4, '21:00', 700.00, 0.00, 0, 1, '[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]', 4.0, NULL, 'publish', 1, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, NULL, NULL, NULL), (9, 'Northern Lights Event Planners', 'northern-lights-event-planners', '<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 170, 182, 4, 'United States', '37.040023', '-95.643144', 12, 1, '174,175,176,177,178,179', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience. Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening. One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website. We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very. There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks. The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES! Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]', '[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]', 1, '20:00', 800.00, 600.00, 0, 1, '[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]', 4.0, NULL, 'publish', 1, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, NULL, NULL, NULL), (10, 'Origami Crane Wedding Planners', 'origami-crane-wedding-planners', '<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 171, 180, 5, 'Washington, DC, USA', '34.049345', '-118.248479', 12, 0, '174,175,176,177,178,179', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience. Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening. One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website. We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very. There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks. The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES! Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]', '[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]', 2, '18:00', 400.00, 0.00, 0, 1, '[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]', 5.0, NULL, 'publish', 1, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, NULL, NULL, NULL), (11, 'New York – Discover America', 'new-york-discover-america', '<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 172, 181, 6, 'New Jersey', '40.035329', '-74.417227', 12, 1, '174,175,176,177,178,179', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience. Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening. One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website. We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very. There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks. The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES! Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]', '[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]', 5, '14:00', 300.00, 0.00, 0, 1, '[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]', 4.8, NULL, 'publish', 1, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, NULL, NULL, NULL), (12, 'Event of Washington, D.C. Highlights', 'event-of-washington-dc-highlights', '<p>Start and end in San Francisco! With the in-depth cultural event Northern California Summer 2019, you have a 8 day event package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 173, 182, 7, 'Francisco Parnassus Campus', '37.782668', '-122.425058', 12, 1, '174,175,176,177,178,179', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Can children come to events?\",\"content\":\"Unless otherwise stated, children are always welcome, but please be aware that most of our events are aimed at an adult audience. Children must be supervised at all times.\"},{\"title\":\"Is there seating at events?\",\"content\":\"Yes, we always provide a variety of seating for all ticketholders unless it\\u2019s a dance event or art show opening. One of our crew will always be on hand to assist you in finding a seat if you need one.\"},{\"title\":\"Where can I park?\",\"content\":\"There is a wide choice of places to park, however most are not free so please do check before you come on the Southampton City Council website. We have no onsite parking.\"},{\"title\":\"Are you near public transport?\",\"content\":\"Very. There is a bus stop a few doors up and the train station is about 7 minutes gentle walk away.\"},{\"title\":\"Is it safe to come at night?\",\"content\":\"To our knowledge, none of our customers has had any bad experience, however we do recommend that if you are worried you stick to the roads rather than walk through the parks. The roads are well-lit and generally there are a lot of people about at night.\"},{\"title\":\"Can I come on my own?\",\"content\":\"YES! Many of our customers come alone to events, it\\u2019s never a problem and you will be welcomed warmly.\"}]', '[{\"code\":\"ticket_vip\",\"name\":\"Ticket Vip\",\"name_ja\":\"\\u30c1\\u30b1\\u30c3\\u30c8VIP\",\"name_egy\":null,\"price\":\"1000\",\"number\":\"10\"},{\"code\":\"ticket_group_tickets\",\"name\":\"Group Tickets\",\"name_ja\":\"\\u30b0\\u30eb\\u30fc\\u30d7\\u30c1\\u30b1\\u30c3\\u30c8\",\"name_egy\":null,\"price\":\"500\",\"number\":\"10\"}]', 6, '17:00', 2100.00, 525.00, 0, 1, '[{\"name\":\"Event service\",\"price\":\"100\",\"type\":\"one_time\"}]', 4.4, NULL, 'publish', 1, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_event_dates` -- CREATE TABLE `bravo_event_dates` ( `id` bigint(20) UNSIGNED NOT NULL, `target_id` bigint(20) DEFAULT NULL, `start_date` timestamp NULL DEFAULT NULL, `end_date` timestamp NULL DEFAULT NULL, `ticket_types` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active` tinyint(4) DEFAULT 0, `note_to_customer` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `note_to_admin` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_instant` tinyint(4) DEFAULT 0, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `price` decimal(8,2) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_event_term` -- CREATE TABLE `bravo_event_term` ( `id` bigint(20) UNSIGNED NOT NULL, `term_id` int(11) DEFAULT NULL, `target_id` int(11) DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_event_term` -- INSERT INTO `bravo_event_term` (`id`, `term_id`, `target_id`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1, 75, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (2, 76, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (3, 78, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (4, 79, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (5, 81, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (6, 82, 1, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (7, 76, 2, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (8, 77, 2, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (9, 78, 2, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (10, 79, 2, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (11, 80, 2, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (12, 81, 2, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (13, 75, 3, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (14, 77, 3, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (15, 78, 3, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (16, 79, 3, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (17, 80, 3, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (18, 75, 4, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (19, 77, 4, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (20, 80, 4, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (21, 82, 4, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (22, 76, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (23, 77, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (24, 78, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (25, 79, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (26, 80, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (27, 81, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (28, 82, 5, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (29, 75, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (30, 76, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (31, 77, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (32, 78, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (33, 80, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (34, 82, 6, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (35, 76, 7, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (36, 77, 7, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (37, 78, 7, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (38, 79, 7, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (39, 80, 7, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (40, 81, 7, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (41, 82, 7, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (42, 75, 8, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (43, 76, 8, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (44, 78, 8, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (45, 79, 8, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (46, 76, 9, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (47, 77, 9, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (48, 79, 9, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (49, 81, 9, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (50, 75, 10, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (51, 76, 10, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (52, 78, 10, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (53, 79, 10, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (54, 81, 10, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (55, 75, 11, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (56, 76, 11, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (57, 79, 11, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (58, 82, 11, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (59, 76, 12, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (60, 77, 12, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (61, 79, 12, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_event_translations` -- CREATE TABLE `bravo_event_translations` ( `id` bigint(20) UNSIGNED NOT NULL, `origin_id` int(10) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `faqs` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `surrounding` text COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_hotels` -- CREATE TABLE `bravo_hotels` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) CHARACTER SET utf8 NOT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image_id` int(11) DEFAULT NULL, `banner_image_id` int(11) DEFAULT NULL, `location_id` int(11) DEFAULT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `map_lat` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `map_lng` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `map_zoom` int(11) DEFAULT NULL, `is_featured` tinyint(4) DEFAULT NULL, `gallery` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `policy` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `star_rate` smallint(6) DEFAULT NULL, `price` decimal(12,2) DEFAULT NULL, `check_in_time` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `check_out_time` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `allow_full_day` smallint(6) DEFAULT NULL, `sale_price` decimal(12,2) DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `review_score` decimal(2,1) DEFAULT NULL, `ical_import_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `enable_extra_price` tinyint(4) DEFAULT NULL, `extra_price` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_day_before_booking` int(11) DEFAULT NULL, `min_day_stays` int(11) DEFAULT NULL, `enable_service_fee` tinyint(4) DEFAULT NULL, `service_fee` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `surrounding` text COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_hotels` -- INSERT INTO `bravo_hotels` (`id`, `title`, `slug`, `content`, `image_id`, `banner_image_id`, `location_id`, `address`, `map_lat`, `map_lng`, `map_zoom`, `is_featured`, `gallery`, `video`, `policy`, `star_rate`, `price`, `check_in_time`, `check_out_time`, `allow_full_day`, `sale_price`, `status`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`, `review_score`, `ical_import_url`, `enable_extra_price`, `extra_price`, `min_day_before_booking`, `min_day_stays`, `enable_service_fee`, `service_fee`, `surrounding`) VALUES (1, 'Hotel Stanford', 'hotel-stanford', '<p>Built in 1986, Hotel Stanford is a distinct addition to New York (NY) and a smart choice for travelers. The excitement of the city center is only 0 KM away. No less exceptional is the hotel’s easy access to the city’s myriad attractions and landmarks, such as Toto Music Studio, British Virgin Islands Tourist Board, L’Atelier Du Chocolat. Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including V<NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 67, 94, 1, 'Arrondissement de Paris', '19.148665', '72.839670', 12, 0, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', '[{\"title\":\"Guarantee Policy\",\"content\":\"- A valid credit card will be required upon booking;\\r\\n- For credit card reservations, the same card(s) must be presented upon check in at the respective hotels;\\r\\n- Management reserves the right to cancel any reservations without notice if we are notified of any fraud or illegal activities associated with the full payments received.\"},{\"title\":\"Children Policy\",\"content\":\"- Child under 5-year old: free of charge.\\r\\n- Child from 5-year old to under 12-year old: surcharge $10\\/person\\/room\\/night.\\r\\n- Child from 12-year old or extra Adult: surcharge $15\\/person\\/room\\/night.\"},{\"title\":\"Cancellation\\/Amendment Policy\",\"content\":\"- If cancellation\\/amendment is made 72 hours prior to your arrival date, no fee will be charged.\\r\\n- If cancellation\\/amendment is made within 72 hours, including reservations made within 72 hours of your arrival, 1st night\\u2019s room rate and tax will be charged\\r\\n- In case of no-show, 100% room rate and tax will be charged.\\r\\n- Early Bird\\/Long Stay\\/Last Min\\/Package Rates are Non - changeable & Non - refundable\"},{\"title\":\"Late check-out policy\",\"content\":\"- Late check-out is subject to room availability\\r\\n- 12:00 to 17:00 check-out: 50% room rate surcharge\\r\\n- After 17:00 check-out: 100% room rate surcharge\"}]', 5, 300.00, '12:00AM', '11:00AM', NULL, NULL, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:35', 4.2, NULL, 1, '[{\"name\":\"Service VIP \",\"price\":\"200\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL), (2, 'Hotel WBF Hommachi', 'hotel-wbf-homachi', '<p>Built in 1986, Hotel Stanford is a distinct addition to New York (NY) and a smart choice for travelers. The excitement of the city center is only 0 KM away. No less exceptional is the hotel’s easy access to the city’s myriad attractions and landmarks, such as Toto Music Studio, British Virgin Islands Tourist Board, L’Atelier Du Chocolat. Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 68, 93, 1, 'Porte de Vanves', '19.110390', '72.832764', 12, 0, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', '[{\"title\":\"Guarantee Policy\",\"content\":\"- A valid credit card will be required upon booking;\\r\\n- For credit card reservations, the same card(s) must be presented upon check in at the respective hotels;\\r\\n- Management reserves the right to cancel any reservations without notice if we are notified of any fraud or illegal activities associated with the full payments received.\"},{\"title\":\"Children Policy\",\"content\":\"- Child under 5-year old: free of charge.\\r\\n- Child from 5-year old to under 12-year old: surcharge $10\\/person\\/room\\/night.\\r\\n- Child from 12-year old or extra Adult: surcharge $15\\/person\\/room\\/night.\"},{\"title\":\"Cancellation\\/Amendment Policy\",\"content\":\"- If cancellation\\/amendment is made 72 hours prior to your arrival date, no fee will be charged.\\r\\n- If cancellation\\/amendment is made within 72 hours, including reservations made within 72 hours of your arrival, 1st night\\u2019s room rate and tax will be charged\\r\\n- In case of no-show, 100% room rate and tax will be charged.\\r\\n- Early Bird\\/Long Stay\\/Last Min\\/Package Rates are Non - changeable & Non - refundable\"},{\"title\":\"Late check-out policy\",\"content\":\"- Late check-out is subject to room availability\\r\\n- 12:00 to 17:00 check-out: 50% room rate surcharge\\r\\n- After 17:00 check-out: 100% room rate surcharge\"}]', 5, 350.00, '12:00AM', '11:00AM', NULL, NULL, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:35', 5.0, NULL, 1, '[{\"name\":\"Service VIP \",\"price\":\"200\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL), (3, 'Castello Casole Hotel', 'castello-casole-hotel', '<p>Built in 1986, Hotel Stanford is a distinct addition to New York (NY) and a smart choice for travelers. The excitement of the city center is only 0 KM away. No less exceptional is the hotel’s easy access to the city’s myriad attractions and landmarks, such as Toto Music Studio, British Virgin Islands Tourist Board, L’Atelier Du Chocolat. Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 69, 96, 1, 'Petit-Montrouge', '19.077946', '72.838255', 12, 0, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', '[{\"title\":\"Guarantee Policy\",\"content\":\"- A valid credit card will be required upon booking;\\r\\n- For credit card reservations, the same card(s) must be presented upon check in at the respective hotels;\\r\\n- Management reserves the right to cancel any reservations without notice if we are notified of any fraud or illegal activities associated with the full payments received.\"},{\"title\":\"Children Policy\",\"content\":\"- Child under 5-year old: free of charge.\\r\\n- Child from 5-year old to under 12-year old: surcharge $10\\/person\\/room\\/night.\\r\\n- Child from 12-year old or extra Adult: surcharge $15\\/person\\/room\\/night.\"},{\"title\":\"Cancellation\\/Amendment Policy\",\"content\":\"- If cancellation\\/amendment is made 72 hours prior to your arrival date, no fee will be charged.\\r\\n- If cancellation\\/amendment is made within 72 hours, including reservations made within 72 hours of your arrival, 1st night\\u2019s room rate and tax will be charged\\r\\n- In case of no-show, 100% room rate and tax will be charged.\\r\\n- Early Bird\\/Long Stay\\/Last Min\\/Package Rates are Non - changeable & Non - refundable\"},{\"title\":\"Late check-out policy\",\"content\":\"- Late check-out is subject to room availability\\r\\n- 12:00 to 17:00 check-out: 50% room rate surcharge\\r\\n- After 17:00 check-out: 100% room rate surcharge\"}]', 5, 350.00, '12:00AM', '11:00AM', NULL, NULL, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:35', 4.3, NULL, 1, '[{\"name\":\"Service VIP \",\"price\":\"200\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL), (4, 'Redac Gateway Hotel', 'redac-gateway-hotel', '<p>Built in 1986, Hotel Stanford is a distinct addition to New York (NY) and a smart choice for travelers. The excitement of the city center is only 0 KM away. No less exceptional is the hotel’s easy access to the city’s myriad attractions and landmarks, such as Toto Music Studio, British Virgin Islands Tourist Board, L’Atelier Du Chocolat. Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 70, 95, 1, 'Petit-Montrouge', '19.031217', '72.851982', 12, 0, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', '[{\"title\":\"Guarantee Policy\",\"content\":\"- A valid credit card will be required upon booking;\\r\\n- For credit card reservations, the same card(s) must be presented upon check in at the respective hotels;\\r\\n- Management reserves the right to cancel any reservations without notice if we are notified of any fraud or illegal activities associated with the full payments received.\"},{\"title\":\"Children Policy\",\"content\":\"- Child under 5-year old: free of charge.\\r\\n- Child from 5-year old to under 12-year old: surcharge $10\\/person\\/room\\/night.\\r\\n- Child from 12-year old or extra Adult: surcharge $15\\/person\\/room\\/night.\"},{\"title\":\"Cancellation\\/Amendment Policy\",\"content\":\"- If cancellation\\/amendment is made 72 hours prior to your arrival date, no fee will be charged.\\r\\n- If cancellation\\/amendment is made within 72 hours, including reservations made within 72 hours of your arrival, 1st night\\u2019s room rate and tax will be charged\\r\\n- In case of no-show, 100% room rate and tax will be charged.\\r\\n- Early Bird\\/Long Stay\\/Last Min\\/Package Rates are Non - changeable & Non - refundable\"},{\"title\":\"Late check-out policy\",\"content\":\"- Late check-out is subject to room availability\\r\\n- 12:00 to 17:00 check-out: 50% room rate surcharge\\r\\n- After 17:00 check-out: 100% room rate surcharge\"}]', 5, 500.00, '12:00AM', '11:00AM', NULL, NULL, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:35', 4.3, NULL, 1, '[{\"name\":\"Service VIP \",\"price\":\"200\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL), (5, 'Studio Allston Hotel', 'studio-allston-hotel', '<p>Built in 1986, Hotel Stanford is a distinct addition to New York (NY) and a smart choice for travelers. The excitement of the city center is only 0 KM away. No less exceptional is the hotel’s easy access to the city’s myriad attractions and landmarks, such as Toto Music Studio, British Virgin Islands Tourist Board, L’Atelier Du Chocolat. Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 71, 96, 5, 'New York', '18.972786', '72.819724', 12, 0, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', '[{\"title\":\"Guarantee Policy\",\"content\":\"- A valid credit card will be required upon booking;\\r\\n- For credit card reservations, the same card(s) must be presented upon check in at the respective hotels;\\r\\n- Management reserves the right to cancel any reservations without notice if we are notified of any fraud or illegal activities associated with the full payments received.\"},{\"title\":\"Children Policy\",\"content\":\"- Child under 5-year old: free of charge.\\r\\n- Child from 5-year old to under 12-year old: surcharge $10\\/person\\/room\\/night.\\r\\n- Child from 12-year old or extra Adult: surcharge $15\\/person\\/room\\/night.\"},{\"title\":\"Cancellation\\/Amendment Policy\",\"content\":\"- If cancellation\\/amendment is made 72 hours prior to your arrival date, no fee will be charged.\\r\\n- If cancellation\\/amendment is made within 72 hours, including reservations made within 72 hours of your arrival, 1st night\\u2019s room rate and tax will be charged\\r\\n- In case of no-show, 100% room rate and tax will be charged.\\r\\n- Early Bird\\/Long Stay\\/Last Min\\/Package Rates are Non - changeable & Non - refundable\"},{\"title\":\"Late check-out policy\",\"content\":\"- Late check-out is subject to room availability\\r\\n- 12:00 to 17:00 check-out: 50% room rate surcharge\\r\\n- After 17:00 check-out: 100% room rate surcharge\"}]', 5, 500.00, '12:00AM', '11:00AM', NULL, NULL, 'publish', 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:35', 4.4, NULL, 1, '[{\"name\":\"Service VIP \",\"price\":\"200\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL), (6, 'EnVision Hotel Boston', 'envision-hotel-biston', '<p>Built in 1986, Hotel Stanford is a distinct addition to New York (NY) and a smart choice for travelers. The excitement of the city center is only 0 KM away. No less exceptional is the hotel’s easy access to the city’s myriad attractions and landmarks, such as Toto Music Studio, British Virgin Islands Tourist Board, L’Atelier Du Chocolat. Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including V<NAME> Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 72, 96, 3, 'New York', '18.873011', '72.975724', 12, 0, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', '[{\"title\":\"Guarantee Policy\",\"content\":\"- A valid credit card will be required upon booking;\\r\\n- For credit card reservations, the same card(s) must be presented upon check in at the respective hotels;\\r\\n- Management reserves the right to cancel any reservations without notice if we are notified of any fraud or illegal activities associated with the full payments received.\"},{\"title\":\"Children Policy\",\"content\":\"- Child under 5-year old: free of charge.\\r\\n- Child from 5-year old to under 12-year old: surcharge $10\\/person\\/room\\/night.\\r\\n- Child from 12-year old or extra Adult: surcharge $15\\/person\\/room\\/night.\"},{\"title\":\"Cancellation\\/Amendment Policy\",\"content\":\"- If cancellation\\/amendment is made 72 hours prior to your arrival date, no fee will be charged.\\r\\n- If cancellation\\/amendment is made within 72 hours, including reservations made within 72 hours of your arrival, 1st night\\u2019s room rate and tax will be charged\\r\\n- In case of no-show, 100% room rate and tax will be charged.\\r\\n- Early Bird\\/Long Stay\\/Last Min\\/Package Rates are Non - changeable & Non - refundable\"},{\"title\":\"Late check-out policy\",\"content\":\"- Late check-out is subject to room availability\\r\\n- 12:00 to 17:00 check-out: 50% room rate surcharge\\r\\n- After 17:00 check-out: 100% room rate surcharge\"}]', 5, 700.00, '12:00AM', '11:00AM', NULL, NULL, 'publish', 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:35', 4.5, NULL, 1, '[{\"name\":\"Service VIP \",\"price\":\"200\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL), (7, 'Crowne Plaza Hotel', 'crowne-plaza-hotel', '<p>Built in 1986, Hotel Stanford is a distinct addition to New York (NY) and a smart choice for travelers. The excitement of the city center is only 0 KM away. No less exceptional is the hotel’s easy access to the city’s myriad attractions and landmarks, such as Toto Music Studio, British Virgin Islands Tourist Board, L’Atelier Du Chocolat. Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including V<NAME> Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 73, 95, 2, 'New York', '19.001355', '73.111444', 12, 0, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', '[{\"title\":\"Guarantee Policy\",\"content\":\"- A valid credit card will be required upon booking;\\r\\n- For credit card reservations, the same card(s) must be presented upon check in at the respective hotels;\\r\\n- Management reserves the right to cancel any reservations without notice if we are notified of any fraud or illegal activities associated with the full payments received.\"},{\"title\":\"Children Policy\",\"content\":\"- Child under 5-year old: free of charge.\\r\\n- Child from 5-year old to under 12-year old: surcharge $10\\/person\\/room\\/night.\\r\\n- Child from 12-year old or extra Adult: surcharge $15\\/person\\/room\\/night.\"},{\"title\":\"Cancellation\\/Amendment Policy\",\"content\":\"- If cancellation\\/amendment is made 72 hours prior to your arrival date, no fee will be charged.\\r\\n- If cancellation\\/amendment is made within 72 hours, including reservations made within 72 hours of your arrival, 1st night\\u2019s room rate and tax will be charged\\r\\n- In case of no-show, 100% room rate and tax will be charged.\\r\\n- Early Bird\\/Long Stay\\/Last Min\\/Package Rates are Non - changeable & Non - refundable\"},{\"title\":\"Late check-out policy\",\"content\":\"- Late check-out is subject to room availability\\r\\n- 12:00 to 17:00 check-out: 50% room rate surcharge\\r\\n- After 17:00 check-out: 100% room rate surcharge\"}]', 5, 900.00, '12:00AM', '11:00AM', NULL, NULL, 'publish', 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:35', 4.8, NULL, 1, '[{\"name\":\"Service VIP \",\"price\":\"200\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL), (8, 'Stewart Hotel', 'stewart-hotel', '<p>Built in 1986, Hotel Stanford is a distinct addition to New York (NY) and a smart choice for travelers. The excitement of the city center is only 0 KM away. No less exceptional is the hotel’s easy access to the city’s myriad attractions and landmarks, such as Toto Music Studio, British Virgin Islands Tourist Board, L’Atelier Du Chocolat. Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 74, 93, 5, 'New York', '19.080542', '73.010551', 12, 0, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', '[{\"title\":\"Guarantee Policy\",\"content\":\"- A valid credit card will be required upon booking;\\r\\n- For credit card reservations, the same card(s) must be presented upon check in at the respective hotels;\\r\\n- Management reserves the right to cancel any reservations without notice if we are notified of any fraud or illegal activities associated with the full payments received.\"},{\"title\":\"Children Policy\",\"content\":\"- Child under 5-year old: free of charge.\\r\\n- Child from 5-year old to under 12-year old: surcharge $10\\/person\\/room\\/night.\\r\\n- Child from 12-year old or extra Adult: surcharge $15\\/person\\/room\\/night.\"},{\"title\":\"Cancellation\\/Amendment Policy\",\"content\":\"- If cancellation\\/amendment is made 72 hours prior to your arrival date, no fee will be charged.\\r\\n- If cancellation\\/amendment is made within 72 hours, including reservations made within 72 hours of your arrival, 1st night\\u2019s room rate and tax will be charged\\r\\n- In case of no-show, 100% room rate and tax will be charged.\\r\\n- Early Bird\\/Long Stay\\/Last Min\\/Package Rates are Non - changeable & Non - refundable\"},{\"title\":\"Late check-out policy\",\"content\":\"- Late check-out is subject to room availability\\r\\n- 12:00 to 17:00 check-out: 50% room rate surcharge\\r\\n- After 17:00 check-out: 100% room rate surcharge\"}]', 5, 900.00, '12:00AM', '11:00AM', NULL, NULL, 'publish', 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:35', 4.5, NULL, 1, '[{\"name\":\"Service VIP \",\"price\":\"200\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL), (9, 'Parian Holiday Villas', 'parian-holiday-villas', '<p>Built in 1986, Hotel Stanford is a distinct addition to New York (NY) and a smart choice for travelers. The excitement of the city center is only 0 KM away. No less exceptional is the hotel’s easy access to the city’s myriad attractions and landmarks, such as Toto Music Studio, British Virgin Islands Tourist Board, L’Atelier Du Chocolat. Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 75, 94, 1, 'Regal Cinemas Battery Park', '19.161637', '72.997510', 12, 1, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', '[{\"title\":\"Guarantee Policy\",\"content\":\"- A valid credit card will be required upon booking;\\r\\n- For credit card reservations, the same card(s) must be presented upon check in at the respective hotels;\\r\\n- Management reserves the right to cancel any reservations without notice if we are notified of any fraud or illegal activities associated with the full payments received.\"},{\"title\":\"Children Policy\",\"content\":\"- Child under 5-year old: free of charge.\\r\\n- Child from 5-year old to under 12-year old: surcharge $10\\/person\\/room\\/night.\\r\\n- Child from 12-year old or extra Adult: surcharge $15\\/person\\/room\\/night.\"},{\"title\":\"Cancellation\\/Amendment Policy\",\"content\":\"- If cancellation\\/amendment is made 72 hours prior to your arrival date, no fee will be charged.\\r\\n- If cancellation\\/amendment is made within 72 hours, including reservations made within 72 hours of your arrival, 1st night\\u2019s room rate and tax will be charged\\r\\n- In case of no-show, 100% room rate and tax will be charged.\\r\\n- Early Bird\\/Long Stay\\/Last Min\\/Package Rates are Non - changeable & Non - refundable\"},{\"title\":\"Late check-out policy\",\"content\":\"- Late check-out is subject to room availability\\r\\n- 12:00 to 17:00 check-out: 50% room rate surcharge\\r\\n- After 17:00 check-out: 100% room rate surcharge\"}]', 5, 550.00, '12:00AM', '11:00AM', NULL, NULL, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:35', 4.3, NULL, 1, '[{\"name\":\"Service VIP \",\"price\":\"200\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL), (10, 'Dylan Hotel', 'dylan-hotel', '<p>Built in 1986, Hotel Stanford is a distinct addition to New York (NY) and a smart choice for travelers. The excitement of the city center is only 0 KM away. No less exceptional is the hotel’s easy access to the city’s myriad attractions and landmarks, such as Toto Music Studio, British Virgin Islands Tourist Board, L’Atelier Du Chocolat. Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 64, 93, 2, 'Regal Cinemas Battery', '19.229727', '72.984470', 12, 1, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', '[{\"title\":\"Guarantee Policy\",\"content\":\"- A valid credit card will be required upon booking;\\r\\n- For credit card reservations, the same card(s) must be presented upon check in at the respective hotels;\\r\\n- Management reserves the right to cancel any reservations without notice if we are notified of any fraud or illegal activities associated with the full payments received.\"},{\"title\":\"Children Policy\",\"content\":\"- Child under 5-year old: free of charge.\\r\\n- Child from 5-year old to under 12-year old: surcharge $10\\/person\\/room\\/night.\\r\\n- Child from 12-year old or extra Adult: surcharge $15\\/person\\/room\\/night.\"},{\"title\":\"Cancellation\\/Amendment Policy\",\"content\":\"- If cancellation\\/amendment is made 72 hours prior to your arrival date, no fee will be charged.\\r\\n- If cancellation\\/amendment is made within 72 hours, including reservations made within 72 hours of your arrival, 1st night\\u2019s room rate and tax will be charged\\r\\n- In case of no-show, 100% room rate and tax will be charged.\\r\\n- Early Bird\\/Long Stay\\/Last Min\\/Package Rates are Non - changeable & Non - refundable\"},{\"title\":\"Late check-out policy\",\"content\":\"- Late check-out is subject to room availability\\r\\n- 12:00 to 17:00 check-out: 50% room rate surcharge\\r\\n- After 17:00 check-out: 100% room rate surcharge\"}]', 5, 550.00, '12:00AM', '11:00AM', NULL, NULL, 'publish', 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:35', 4.3, NULL, 1, '[{\"name\":\"Service VIP \",\"price\":\"200\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL), (11, 'The May Fair Hotel', 'the-may-fair-hotel', '<p>Built in 1986, Hotel Stanford is a distinct addition to New York (NY) and a smart choice for travelers. The excitement of the city center is only 0 KM away. No less exceptional is the hotel’s easy access to the city’s myriad attractions and landmarks, such as Toto Music Studio, British Virgin Islands Tourist Board, L’Atelier Du Chocolat. Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 67, 95, 1, 'Paris Cinemas Battery', '19.277696', '72.887009', 12, 0, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', '[{\"title\":\"Guarantee Policy\",\"content\":\"- A valid credit card will be required upon booking;\\r\\n- For credit card reservations, the same card(s) must be presented upon check in at the respective hotels;\\r\\n- Management reserves the right to cancel any reservations without notice if we are notified of any fraud or illegal activities associated with the full payments received.\"},{\"title\":\"Children Policy\",\"content\":\"- Child under 5-year old: free of charge.\\r\\n- Child from 5-year old to under 12-year old: surcharge $10\\/person\\/room\\/night.\\r\\n- Child from 12-year old or extra Adult: surcharge $15\\/person\\/room\\/night.\"},{\"title\":\"Cancellation\\/Amendment Policy\",\"content\":\"- If cancellation\\/amendment is made 72 hours prior to your arrival date, no fee will be charged.\\r\\n- If cancellation\\/amendment is made within 72 hours, including reservations made within 72 hours of your arrival, 1st night\\u2019s room rate and tax will be charged\\r\\n- In case of no-show, 100% room rate and tax will be charged.\\r\\n- Early Bird\\/Long Stay\\/Last Min\\/Package Rates are Non - changeable & Non - refundable\"},{\"title\":\"Late check-out policy\",\"content\":\"- Late check-out is subject to room availability\\r\\n- 12:00 to 17:00 check-out: 50% room rate surcharge\\r\\n- After 17:00 check-out: 100% room rate surcharge\"}]', 4, 550.00, '12:00AM', '11:00AM', NULL, NULL, 'publish', 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:35', 4.2, NULL, 1, '[{\"name\":\"Service VIP \",\"price\":\"200\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_hotel_rooms` -- CREATE TABLE `bravo_hotel_rooms` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image_id` int(11) DEFAULT NULL, `gallery` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(12,2) DEFAULT NULL, `parent_id` bigint(20) DEFAULT NULL, `number` smallint(6) DEFAULT NULL, `beds` tinyint(4) DEFAULT NULL, `size` int(11) DEFAULT NULL, `adults` tinyint(4) DEFAULT NULL, `children` tinyint(4) DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `ical_import_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_day_stays` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_hotel_rooms` -- INSERT INTO `bravo_hotel_rooms` (`id`, `title`, `content`, `image_id`, `gallery`, `video`, `price`, `parent_id`, `number`, `beds`, `size`, `adults`, `children`, `status`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`, `ical_import_url`, `min_day_stays`) VALUES (1, 'Room Kerama Islands', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 67, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 1, 6, 4, 200, 9, 3, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (2, 'Room Sheraton Hotel', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 69, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 1, 8, 5, 200, 5, 2, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (3, 'Double Room With Town View', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 64, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 1, 7, 3, 200, 8, 3, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (4, 'Standard Double Room', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 63, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 1, 10, 4, 200, 5, 5, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (5, 'Room Kerama Islands', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 67, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 2, 6, 5, 200, 8, 1, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (6, 'Room Sheraton Hotel', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 69, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 2, 6, 3, 200, 6, 2, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (7, 'Double Room With Town View', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 64, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 2, 8, 3, 200, 6, 3, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (8, 'Standard Double Room', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 63, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 2, 7, 3, 200, 6, 2, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (9, 'Room Kerama Islands', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 67, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 3, 5, 3, 200, 7, 2, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (10, 'Room Sheraton Hotel', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 69, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 3, 8, 3, 200, 9, 5, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (11, 'Double Room With Town View', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 64, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 3, 9, 3, 200, 8, 2, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (12, 'Standard Double Room', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 63, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 3, 6, 2, 200, 7, 1, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (13, 'Room Kerama Islands', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 67, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 4, 10, 2, 200, 10, 2, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (14, 'Room Sheraton Hotel', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 69, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 4, 8, 2, 200, 7, 5, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (15, 'Double Room With Town View', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 64, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 4, 7, 3, 200, 8, 5, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (16, 'Standard Double Room', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 63, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 4, 9, 4, 200, 9, 2, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (17, 'Room Kerama Islands', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 67, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 5, 8, 5, 200, 8, 4, 'publish', 4, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (18, 'Room Sheraton Hotel', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 69, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 5, 5, 2, 200, 8, 3, 'publish', 4, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (19, 'Double Room With Town View', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 64, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 5, 9, 4, 200, 7, 3, 'publish', 4, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (20, 'Standard Double Room', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 63, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 5, 10, 5, 200, 9, 5, 'publish', 4, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (21, 'Room Kerama Islands', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 67, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 6, 5, 3, 200, 8, 2, 'publish', 5, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (22, 'Room Sheraton Hotel', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 69, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 6, 8, 4, 200, 8, 2, 'publish', 5, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (23, 'Double Room With Town View', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 64, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 6, 10, 2, 200, 7, 5, 'publish', 5, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (24, 'Standard Double Room', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 63, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 6, 10, 4, 200, 5, 2, 'publish', 5, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (25, 'Room Kerama Islands', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 67, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 7, 7, 5, 200, 6, 1, 'publish', 6, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (26, 'Room Sheraton Hotel', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 69, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 7, 5, 4, 200, 10, 4, 'publish', 6, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (27, 'Double Room With Town View', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 64, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 7, 5, 4, 200, 6, 4, 'publish', 6, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (28, 'Standard Double Room', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 63, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 7, 5, 4, 200, 6, 4, 'publish', 6, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (29, 'Room Kerama Islands', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 67, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 8, 6, 5, 200, 8, 5, 'publish', 6, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (30, 'Room Sheraton Hotel', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 69, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 8, 9, 3, 200, 6, 4, 'publish', 6, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (31, 'Double Room With Town View', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 64, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 8, 6, 4, 200, 8, 3, 'publish', 6, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (32, 'Standard Double Room', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 63, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 8, 10, 4, 200, 9, 1, 'publish', 6, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (33, 'Room Kerama Islands', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 67, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 9, 8, 5, 200, 8, 1, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (34, 'Room Sheraton Hotel', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 69, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 9, 9, 2, 200, 7, 3, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (35, 'Double Room With Town View', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 64, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 9, 7, 3, 200, 6, 4, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (36, 'Standard Double Room', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 63, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 9, 9, 3, 200, 10, 2, 'publish', 1, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (37, 'Room Kerama Islands', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 67, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 10, 7, 4, 200, 7, 3, 'publish', 5, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (38, 'Room Sheraton Hotel', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 69, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 10, 7, 5, 200, 5, 5, 'publish', 5, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (39, 'Double Room With Town View', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 64, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 10, 8, 2, 200, 10, 5, 'publish', 5, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (40, 'Standard Double Room', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 63, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 10, 8, 4, 200, 5, 2, 'publish', 5, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (41, 'Room Kerama Islands', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 67, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 11, 7, 3, 200, 9, 1, 'publish', 4, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (42, 'Room Sheraton Hotel', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 69, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 11, 8, 5, 200, 5, 1, 'publish', 4, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (43, 'Double Room With Town View', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 64, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 11, 6, 2, 200, 9, 4, 'publish', 4, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL), (44, 'Standard Double Room', 'Room Sheraton comprises of 1 Double Bed or 2 Twin Beds, 2 Bedside Tables, a Desk & Chair. The room is furnished with wall to wall carpeting, trendy furnishings and a balcony.Our ultramodern glass bathroom is equipped with hairdryer, magnifying shaving and make up mirror as well as all the amenities you could possible need during your stay.A Complimentary Bottle of Wine, Fresh Fruit and Mineral Water, are provided on arrival. Electric current: 220 Volts. Smoking rooms & inter-connecting rooms are also available.', 63, '97,98,99,100,101,102', 'https://www.youtube.com/watch?v=bhOiLfkChPo', 350.00, 11, 6, 2, 200, 5, 5, 'publish', 4, NULL, NULL, '2021-08-10 07:39:34', NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_hotel_room_bookings` -- CREATE TABLE `bravo_hotel_room_bookings` ( `id` bigint(20) UNSIGNED NOT NULL, `room_id` bigint(20) DEFAULT NULL, `parent_id` bigint(20) DEFAULT NULL, `booking_id` bigint(20) DEFAULT NULL, `start_date` timestamp NULL DEFAULT NULL, `end_date` timestamp NULL DEFAULT NULL, `number` smallint(6) DEFAULT NULL, `price` decimal(12,2) DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_hotel_room_bookings` -- INSERT INTO `bravo_hotel_room_bookings` (`id`, `room_id`, `parent_id`, `booking_id`, `start_date`, `end_date`, `number`, `price`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1, 33, 9, 1, '2021-08-24 17:00:00', '2021-08-26 17:00:00', 1, 700.00, 18, NULL, '2021-08-25 00:40:30', '2021-08-25 00:40:30'); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_hotel_room_dates` -- CREATE TABLE `bravo_hotel_room_dates` ( `id` bigint(20) UNSIGNED NOT NULL, `target_id` bigint(20) DEFAULT NULL, `start_date` timestamp NULL DEFAULT NULL, `end_date` timestamp NULL DEFAULT NULL, `price` decimal(12,2) DEFAULT NULL, `max_guests` tinyint(4) DEFAULT NULL, `active` tinyint(4) DEFAULT 0, `note_to_customer` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `note_to_admin` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_instant` tinyint(4) DEFAULT 0, `number` smallint(6) DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_hotel_room_term` -- CREATE TABLE `bravo_hotel_room_term` ( `id` bigint(20) UNSIGNED NOT NULL, `term_id` int(11) DEFAULT NULL, `target_id` int(11) DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_hotel_room_term` -- INSERT INTO `bravo_hotel_room_term` (`id`, `term_id`, `target_id`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1, 57, 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (2, 58, 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (3, 59, 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (4, 60, 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (5, 56, 2, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (6, 57, 2, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (7, 58, 2, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (8, 59, 2, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (9, 56, 3, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (10, 57, 3, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (11, 58, 3, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (12, 60, 3, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (13, 56, 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (14, 57, 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (15, 58, 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (16, 60, 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (17, 56, 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (18, 57, 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (19, 59, 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (20, 60, 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (21, 56, 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (22, 58, 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (23, 59, 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (24, 60, 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (25, 56, 7, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (26, 57, 7, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (27, 58, 7, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (28, 60, 7, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (29, 56, 8, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (30, 57, 8, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (31, 59, 8, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (32, 60, 8, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (33, 56, 9, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (34, 57, 9, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (35, 58, 9, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (36, 59, 9, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (37, 60, 9, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (38, 56, 10, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (39, 57, 10, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (40, 58, 10, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (41, 59, 10, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (42, 60, 10, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (43, 56, 11, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (44, 57, 11, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (45, 58, 11, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (46, 56, 12, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (47, 57, 12, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (48, 58, 12, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (49, 59, 12, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (50, 60, 12, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (51, 56, 13, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (52, 57, 13, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (53, 58, 13, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (54, 59, 13, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (55, 60, 13, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (56, 57, 14, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (57, 58, 14, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (58, 59, 14, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (59, 60, 14, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (60, 57, 15, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (61, 58, 15, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (62, 60, 15, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (63, 56, 16, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (64, 57, 16, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (65, 58, 16, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (66, 59, 16, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (67, 60, 16, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (68, 56, 17, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (69, 57, 17, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (70, 59, 17, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (71, 57, 18, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (72, 58, 18, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (73, 60, 18, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (74, 56, 19, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (75, 58, 19, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (76, 59, 19, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (77, 60, 19, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (78, 56, 20, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (79, 57, 20, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (80, 58, 20, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (81, 59, 20, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (82, 56, 21, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (83, 57, 21, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (84, 58, 21, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (85, 59, 21, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (86, 60, 21, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (87, 57, 22, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (88, 58, 22, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (89, 59, 22, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (90, 60, 22, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (91, 56, 23, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (92, 57, 23, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (93, 58, 23, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (94, 59, 23, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (95, 60, 23, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (96, 56, 24, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (97, 57, 24, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (98, 59, 24, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (99, 60, 24, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (100, 56, 25, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (101, 57, 25, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (102, 58, 25, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (103, 59, 25, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (104, 60, 25, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (105, 57, 26, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (106, 58, 26, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (107, 59, 26, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (108, 60, 26, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (109, 56, 27, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (110, 57, 27, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (111, 58, 27, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (112, 59, 27, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (113, 60, 27, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (114, 56, 28, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (115, 57, 28, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (116, 58, 28, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (117, 59, 28, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (118, 56, 29, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (119, 57, 29, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (120, 58, 29, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (121, 59, 29, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (122, 60, 29, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (123, 56, 30, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (124, 57, 30, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (125, 58, 30, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (126, 59, 30, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (127, 56, 31, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (128, 57, 31, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (129, 58, 31, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (130, 60, 31, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (131, 56, 32, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (132, 57, 32, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (133, 58, 32, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (134, 60, 32, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (135, 58, 33, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (136, 59, 33, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (137, 60, 33, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (138, 56, 34, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (139, 57, 34, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (140, 59, 34, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (141, 60, 34, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (142, 57, 35, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (143, 59, 35, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (144, 60, 35, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (145, 56, 36, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (146, 58, 36, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (147, 60, 36, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (148, 56, 37, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (149, 57, 37, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (150, 58, 37, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (151, 59, 37, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (152, 60, 37, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (153, 56, 38, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (154, 58, 38, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (155, 56, 39, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (156, 58, 39, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (157, 59, 39, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (158, 60, 39, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (159, 56, 40, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (160, 57, 40, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (161, 58, 40, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (162, 59, 40, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (163, 60, 40, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (164, 56, 41, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (165, 57, 41, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (166, 58, 41, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (167, 59, 41, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (168, 60, 41, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (169, 56, 42, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (170, 57, 42, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (171, 58, 42, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (172, 59, 42, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (173, 60, 42, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (174, 56, 43, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (175, 57, 43, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (176, 58, 43, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (177, 59, 43, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (178, 60, 43, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (179, 56, 44, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (180, 57, 44, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (181, 58, 44, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (182, 59, 44, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (183, 60, 44, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_hotel_room_translations` -- CREATE TABLE `bravo_hotel_room_translations` ( `id` bigint(20) UNSIGNED NOT NULL, `origin_id` int(10) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_hotel_term` -- CREATE TABLE `bravo_hotel_term` ( `id` bigint(20) UNSIGNED NOT NULL, `term_id` int(11) DEFAULT NULL, `target_id` int(11) DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_hotel_term` -- INSERT INTO `bravo_hotel_term` (`id`, `term_id`, `target_id`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1, 42, 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (2, 43, 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (3, 44, 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (4, 45, 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (5, 46, 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (6, 47, 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (7, 48, 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (8, 43, 2, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (9, 44, 2, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (10, 46, 2, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (11, 47, 2, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (12, 48, 2, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (13, 42, 3, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (14, 43, 3, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (15, 44, 3, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (16, 45, 3, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (17, 46, 3, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (18, 47, 3, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (19, 48, 3, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (20, 43, 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (21, 44, 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (22, 45, 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (23, 46, 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (24, 47, 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (25, 48, 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (26, 42, 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (27, 43, 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (28, 44, 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (29, 45, 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (30, 46, 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (31, 47, 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (32, 48, 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (33, 42, 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (34, 43, 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (35, 44, 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (36, 45, 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (37, 46, 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (38, 47, 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (39, 48, 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (40, 42, 7, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (41, 43, 7, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (42, 44, 7, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (43, 45, 7, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (44, 46, 7, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (45, 47, 7, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (46, 48, 7, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (47, 42, 8, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (48, 43, 8, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (49, 44, 8, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (50, 45, 8, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (51, 46, 8, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (52, 47, 8, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (53, 48, 8, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (54, 42, 9, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (55, 43, 9, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (56, 44, 9, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (57, 45, 9, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (58, 46, 9, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (59, 48, 9, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (60, 42, 10, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (61, 43, 10, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (62, 45, 10, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (63, 46, 10, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (64, 47, 10, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (65, 48, 10, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (66, 42, 11, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (67, 43, 11, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (68, 44, 11, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (69, 45, 11, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (70, 46, 11, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (71, 49, 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (72, 50, 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (73, 51, 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (74, 52, 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (75, 53, 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (76, 52, 2, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (77, 53, 2, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (78, 54, 2, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (79, 55, 2, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (80, 50, 3, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (81, 51, 3, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (82, 52, 3, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (83, 53, 3, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (84, 54, 3, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (85, 55, 3, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (86, 50, 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (87, 52, 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (88, 53, 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (89, 55, 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (90, 49, 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (91, 50, 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (92, 53, 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (93, 54, 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (94, 55, 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (95, 49, 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (96, 51, 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (97, 52, 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (98, 53, 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (99, 54, 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (100, 55, 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (101, 49, 7, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (102, 50, 7, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (103, 51, 7, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (104, 54, 7, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (105, 55, 7, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (106, 50, 8, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (107, 51, 8, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (108, 52, 8, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (109, 53, 8, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (110, 55, 8, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (111, 49, 9, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (112, 50, 9, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (113, 51, 9, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (114, 55, 9, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (115, 49, 10, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (116, 52, 10, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (117, 55, 10, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (118, 49, 11, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (119, 52, 11, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (120, 53, 11, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (121, 54, 11, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (122, 55, 11, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_hotel_translations` -- CREATE TABLE `bravo_hotel_translations` ( `id` bigint(20) UNSIGNED NOT NULL, `origin_id` int(10) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `policy` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `surrounding` text COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_locations` -- CREATE TABLE `bravo_locations` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image_id` int(11) DEFAULT NULL, `map_lat` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `map_lng` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `map_zoom` int(11) DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `_lft` int(10) UNSIGNED NOT NULL DEFAULT 0, `_rgt` int(10) UNSIGNED NOT NULL DEFAULT 0, `parent_id` int(10) UNSIGNED DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `origin_id` bigint(20) DEFAULT NULL, `lang` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `banner_image_id` int(11) DEFAULT NULL, `trip_ideas` text COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_locations` -- INSERT INTO `bravo_locations` (`id`, `name`, `content`, `slug`, `image_id`, `map_lat`, `map_lng`, `map_zoom`, `status`, `_lft`, `_rgt`, `parent_id`, `create_user`, `update_user`, `deleted_at`, `origin_id`, `lang`, `created_at`, `updated_at`, `banner_image_id`, `trip_ideas`) VALUES (1, 'Paris', 'New York, a city that doesnt sleep, as <NAME> sang. The Big Apple is one of the largest cities in the United States and one of the most popular in the whole country and the world. Millions of tourists visit it every year attracted by its various iconic symbols and its wide range of leisure and cultural offer. New York is the birth place of new trends and developments in many fields such as art, gastronomy, technology,...', 'paris', 106, '48.856613', '2.352222', 12, 'publish', 1, 2, NULL, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 111, '\"[{\\\"title\\\":\\\"Experiencing the best jazz in Harlem, birthplace of bebop\\\",\\\"link\\\":\\\"#\\\",\\\"content\\\":\\\"New Orleans might be the home of jazz, but New York City is where many of the genre\\u2019s greats became stars \\u2013 and Harlem was at the heart of it.The neighborhood experienced a rebirth during the...\\\",\\\"image_id\\\":\\\"112\\\"},{\\\"title\\\":\\\"Reflections from the road: transformative \\u2018Big Trip\\u2019 experiences\\\",\\\"link\\\":\\\"#\\\",\\\"content\\\":\\\"Whether it\\u2019s a gap year after finishing school, a well-earned sabbatical from work or an overseas adventure in celebration of your retirement, a big trip is a rite of passage for every traveller, with myriad life lessons to be ...\\\",\\\"image_id\\\":\\\"113\\\"}]\"'), (2, 'New York, United States', NULL, 'new-york-united-states', 107, '40.712776', '-74.005974', 12, 'publish', 3, 4, NULL, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL), (3, 'California', NULL, 'california', 108, '36.778259', '-119.417931', 12, 'publish', 5, 6, NULL, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL), (4, 'United States', NULL, 'united-states', 109, '37.090240', '-95.712891', 12, 'publish', 7, 8, NULL, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL), (5, 'Los Angeles', NULL, 'los-angeles', 110, '34.052235', '-118.243683', 12, 'publish', 9, 10, NULL, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL), (6, 'New Jersey', NULL, 'new-jersey', 106, '40.058323', '-74.405663', 12, 'publish', 11, 12, NULL, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL), (7, 'San Francisco', NULL, 'san-francisco', 107, '37.774929', '-122.419418', 12, 'publish', 13, 14, NULL, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL), (8, 'Virginia', NULL, 'virginia', 108, '37.431572', '-78.656891', 12, 'publish', 15, 16, NULL, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_location_translations` -- CREATE TABLE `bravo_location_translations` ( `id` bigint(20) UNSIGNED NOT NULL, `origin_id` bigint(20) DEFAULT NULL, `locale` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `trip_ideas` text COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_payouts` -- CREATE TABLE `bravo_payouts` ( `id` bigint(20) UNSIGNED NOT NULL, `vendor_id` bigint(20) DEFAULT NULL, `amount` decimal(10,2) DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payout_method` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_info` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `note_to_admin` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `note_to_vendor` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_process_by` int(11) DEFAULT NULL, `pay_date` timestamp NULL DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_review` -- CREATE TABLE `bravo_review` ( `id` bigint(20) UNSIGNED NOT NULL, `object_id` int(11) DEFAULT NULL, `object_model` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rate_number` int(11) DEFAULT NULL, `author_ip` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `publish_date` datetime DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `lang` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `vendor_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_review` -- INSERT INTO `bravo_review` (`id`, `object_id`, `object_model`, `title`, `content`, `rate_number`, `author_ip`, `status`, `publish_date`, `create_user`, `update_user`, `deleted_at`, `lang`, `created_at`, `updated_at`, `vendor_id`) VALUES (1, 1, 'tour', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 7, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 1), (2, 1, 'tour', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 12, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 1), (3, 1, 'tour', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 7, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 1), (4, 2, 'tour', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 11, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 1), (5, 2, 'tour', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 12, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 1), (6, 2, 'tour', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 15, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 1), (7, 3, 'tour', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 13, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 4), (8, 3, 'tour', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 9, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 4), (9, 3, 'tour', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 10, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 4), (10, 4, 'tour', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 8, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 1), (11, 4, 'tour', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 7, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 1), (12, 4, 'tour', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 15, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 1), (13, 4, 'tour', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 10, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 1), (14, 5, 'tour', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 11, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 4), (15, 5, 'tour', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 14, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 4), (16, 5, 'tour', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 10, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 4), (17, 6, 'tour', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 16, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 4), (18, 6, 'tour', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 12, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 4), (19, 6, 'tour', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 13, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 4), (20, 7, 'tour', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 13, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 4), (21, 7, 'tour', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 11, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 4), (22, 7, 'tour', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 15, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 4), (23, 7, 'tour', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 15, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 4), (24, 8, 'tour', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 9, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 5), (25, 8, 'tour', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 13, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 5), (26, 8, 'tour', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 12, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 5), (27, 8, 'tour', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 15, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 5), (28, 9, 'tour', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 9, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 6), (29, 9, 'tour', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 13, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 6), (30, 9, 'tour', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 10, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 6), (31, 10, 'tour', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 10, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 6), (32, 10, 'tour', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 14, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 6), (33, 10, 'tour', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 8, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 6), (34, 11, 'tour', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 8, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 5), (35, 11, 'tour', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 8, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 5), (36, 11, 'tour', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 13, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 5), (37, 11, 'tour', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 10, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 5), (38, 12, 'tour', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 8, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 1), (39, 13, 'tour', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 8, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 5), (40, 13, 'tour', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 12, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 5), (41, 13, 'tour', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 10, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 5), (42, 13, 'tour', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 11, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 5), (43, 14, 'tour', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 13, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 1), (44, 14, 'tour', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 13, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 1), (45, 14, 'tour', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 7, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 1), (46, 15, 'tour', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 10, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 5), (47, 15, 'tour', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 9, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 5), (48, 15, 'tour', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 12, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 5), (49, 15, 'tour', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 12, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 5), (50, 15, 'tour', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 8, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 5), (51, 16, 'tour', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 8, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 1), (52, 16, 'tour', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:33', 12, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 1), (53, 1, 'space', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 7, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (54, 1, 'space', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 8, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (55, 1, 'space', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 7, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (56, 1, 'space', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 15, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (57, 2, 'space', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 14, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (58, 2, 'space', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 15, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (59, 2, 'space', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 13, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (60, 3, 'space', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 7, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 5), (61, 3, 'space', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 14, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 5), (62, 3, 'space', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 15, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 5), (63, 4, 'space', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 12, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4), (64, 5, 'space', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 12, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 5), (65, 5, 'space', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 10, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 5), (66, 5, 'space', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 14, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 5), (67, 5, 'space', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 10, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 5), (68, 6, 'space', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 16, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4), (69, 6, 'space', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 7, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4), (70, 6, 'space', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 16, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4), (71, 6, 'space', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 12, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4), (72, 7, 'space', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 11, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4), (73, 7, 'space', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 15, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4), (74, 7, 'space', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 12, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4), (75, 7, 'space', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 14, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4), (76, 8, 'space', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 16, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 6), (77, 8, 'space', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 7, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 6), (78, 8, 'space', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 7, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 6), (79, 9, 'space', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 11, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4), (80, 9, 'space', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 10, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4), (81, 10, 'space', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 13, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (82, 10, 'space', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 11, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (83, 11, 'space', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 8, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 6), (84, 11, 'space', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 11, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 6), (85, 1, 'hotel', 'Nothing good this time', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 16, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (86, 1, 'hotel', 'Beautiful spot with a lovely view', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 10, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (87, 1, 'hotel', 'Beautiful spot with a lovely view', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 10, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (88, 1, 'hotel', 'Beautiful spot with a lovely view', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 16, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (89, 1, 'hotel', 'Beautiful spot with a lovely view', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 9, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (90, 2, 'hotel', 'Beautiful spot with a lovely view', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 16, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (91, 2, 'hotel', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 11, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (92, 2, 'hotel', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 7, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (93, 3, 'hotel', 'Beautiful spot with a lovely view', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 15, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (94, 3, 'hotel', 'Beautiful spot with a lovely view', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 9, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (95, 3, 'hotel', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 13, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (96, 4, 'hotel', 'Nothing good this time', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 12, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (97, 4, 'hotel', 'Beautiful spot with a lovely view', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 16, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (98, 4, 'hotel', 'Nothing good this time', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 11, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (99, 5, 'hotel', 'Nothing good this time', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 11, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4), (100, 5, 'hotel', 'Beautiful spot with a lovely view', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 10, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4), (101, 5, 'hotel', 'Good location, quality should be better', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 14, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4), (102, 5, 'hotel', 'Beautiful spot with a lovely view', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 12, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4), (103, 5, 'hotel', 'Beautiful spot with a lovely view', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 10, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4), (104, 6, 'hotel', 'Beautiful spot with a lovely view', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 8, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 5), (105, 6, 'hotel', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 15, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 5), (106, 7, 'hotel', 'Good location, quality should be better', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 15, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 6), (107, 7, 'hotel', 'Beautiful spot with a lovely view', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 9, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 6), (108, 7, 'hotel', 'Nothing good this time', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 10, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 6), (109, 7, 'hotel', 'Good location, quality should be better', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 7, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 6), (110, 8, 'hotel', 'Good location, quality should be better', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 7, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 6), (111, 8, 'hotel', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 14, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 6), (112, 8, 'hotel', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 7, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 6), (113, 8, 'hotel', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 7, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 6), (114, 9, 'hotel', 'Good location, quality should be better', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 8, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (115, 9, 'hotel', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 16, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (116, 9, 'hotel', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 9, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 1), (117, 10, 'hotel', 'Beautiful spot with a lovely view', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 14, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 5), (118, 10, 'hotel', 'Good location, quality should be better', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 11, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 5), (119, 10, 'hotel', 'Nothing good this time', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 8, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 5), (120, 11, 'hotel', 'Good location, quality should be better', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 10, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4), (121, 11, 'hotel', 'Good location, quality should be better', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 13, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4); INSERT INTO `bravo_review` (`id`, `object_id`, `object_model`, `title`, `content`, `rate_number`, `author_ip`, `status`, `publish_date`, `create_user`, `update_user`, `deleted_at`, `lang`, `created_at`, `updated_at`, `vendor_id`) VALUES (122, 11, 'hotel', 'Beautiful spot with a lovely view', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 12, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4), (123, 11, 'hotel', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 16, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4), (124, 11, 'hotel', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:34', 9, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4), (125, 1, 'car', 'Great Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 13, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (126, 1, 'car', 'Great Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 13, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (127, 1, 'car', 'Good Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 14, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (128, 2, 'car', 'Great Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 11, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (129, 2, 'car', 'Good Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 9, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (130, 3, 'car', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 9, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (131, 3, 'car', 'Good Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 13, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (132, 3, 'car', 'Great Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 8, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (133, 3, 'car', '<NAME>', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 14, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (134, 4, 'car', '<NAME>', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 8, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (135, 4, 'car', 'Good Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 11, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (136, 5, 'car', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 7, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (137, 5, 'car', 'Great Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 7, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (138, 5, 'car', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 8, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (139, 6, 'car', 'Great Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 9, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 5), (140, 6, 'car', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 16, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 5), (141, 7, 'car', 'Car was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 7, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4), (142, 7, 'car', 'Good Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 8, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4), (143, 7, 'car', 'Car was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 9, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4), (144, 8, 'car', 'Good Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 15, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4), (145, 8, 'car', '<NAME>', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 15, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4), (146, 8, 'car', 'Good Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 14, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4), (147, 9, 'car', 'Great Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 16, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4), (148, 9, 'car', 'Good Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 11, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4), (149, 9, 'car', 'Great Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 9, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4), (150, 10, 'car', 'Great Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 7, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 6), (151, 10, 'car', 'Good Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 15, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 6), (152, 10, 'car', 'Good Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 10, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 6), (153, 10, 'car', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 15, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 6), (154, 11, 'car', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 11, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 5), (155, 11, 'car', '<NAME>', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 13, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 5), (156, 11, 'car', '<NAME>', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 8, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 5), (157, 11, 'car', 'Good Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 13, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 5), (158, 12, 'car', 'Great Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 15, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4), (159, 12, 'car', 'Car was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 12, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4), (160, 12, 'car', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 14, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4), (161, 12, 'car', 'Great Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 8, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4), (162, 13, 'car', 'Car was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 15, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 5), (163, 13, 'car', 'Good Car', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 11, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 5), (164, 1, 'event', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 14, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (165, 1, 'event', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 15, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (166, 1, 'event', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 10, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (167, 1, 'event', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 10, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (168, 2, 'event', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 15, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (169, 2, 'event', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 15, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (170, 2, 'event', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 11, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (171, 3, 'event', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 11, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4), (172, 3, 'event', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 16, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 4), (173, 4, 'event', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 16, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (174, 4, 'event', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 13, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (175, 4, 'event', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 8, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (176, 5, 'event', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 15, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 6), (177, 5, 'event', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 13, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 6), (178, 6, 'event', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 11, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 6), (179, 6, 'event', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 16, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 6), (180, 6, 'event', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 7, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 6), (181, 7, 'event', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 14, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 6), (182, 7, 'event', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 13, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 6), (183, 7, 'event', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 15, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 6), (184, 8, 'event', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 12, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 6), (185, 8, 'event', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 15, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 6), (186, 9, 'event', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 13, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 6), (187, 9, 'event', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 10, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 6), (188, 10, 'event', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 14, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 6), (189, 10, 'event', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 9, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 6), (190, 10, 'event', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 13, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 6), (191, 10, 'event', 'Easy way to discover the city', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 11, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 6), (192, 11, 'event', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 8, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 5), (193, 11, 'event', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 12, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 5), (194, 11, 'event', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 8, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 5), (195, 11, 'event', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 11, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 5), (196, 12, 'event', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 11, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (197, 12, 'event', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 10, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (198, 12, 'event', 'Great Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 16, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (199, 12, 'event', 'Good Trip', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 4, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 11, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1), (200, 12, 'event', 'Trip was great', 'Eum eu sumo albucius perfecto, commodo torquatos consequuntur pro ut, id posse splendide ius. Cu nisl putent omittantur usu, mutat atomorum ex pro, ius nibh nonumy id. Nam at eius dissentias disputando, molestie mnesarchum complectitur per te', 5, '127.0.0.1', 'approved', '2021-08-10 14:39:35', 14, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', 1); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_review_meta` -- CREATE TABLE `bravo_review_meta` ( `id` bigint(20) UNSIGNED NOT NULL, `review_id` int(11) DEFAULT NULL, `object_id` int(11) DEFAULT NULL, `object_model` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `val` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_review_meta` -- INSERT INTO `bravo_review_meta` (`id`, `review_id`, `object_id`, `object_model`, `name`, `val`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1, 1, 1, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (2, 1, 1, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (3, 1, 1, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (4, 1, 1, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (5, 1, 1, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (6, 2, 1, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (7, 2, 1, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (8, 2, 1, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (9, 2, 1, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (10, 2, 1, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (11, 3, 1, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (12, 3, 1, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (13, 3, 1, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (14, 3, 1, 'tour', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (15, 3, 1, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (16, 4, 2, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (17, 4, 2, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (18, 4, 2, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (19, 4, 2, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (20, 4, 2, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (21, 5, 2, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (22, 5, 2, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (23, 5, 2, 'tour', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (24, 5, 2, 'tour', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (25, 5, 2, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (26, 6, 2, 'tour', 'Service', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (27, 6, 2, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (28, 6, 2, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (29, 6, 2, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (30, 6, 2, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (31, 7, 3, 'tour', 'Service', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (32, 7, 3, 'tour', 'Organization', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (33, 7, 3, 'tour', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (34, 7, 3, 'tour', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (35, 7, 3, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (36, 8, 3, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (37, 8, 3, 'tour', 'Organization', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (38, 8, 3, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (39, 8, 3, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (40, 8, 3, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (41, 9, 3, 'tour', 'Service', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (42, 9, 3, 'tour', 'Organization', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (43, 9, 3, 'tour', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (44, 9, 3, 'tour', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (45, 9, 3, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (46, 10, 4, 'tour', 'Service', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (47, 10, 4, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (48, 10, 4, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (49, 10, 4, 'tour', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (50, 10, 4, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (51, 11, 4, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (52, 11, 4, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (53, 11, 4, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (54, 11, 4, 'tour', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (55, 11, 4, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (56, 12, 4, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (57, 12, 4, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (58, 12, 4, 'tour', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (59, 12, 4, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (60, 12, 4, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (61, 13, 4, 'tour', 'Service', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (62, 13, 4, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (63, 13, 4, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (64, 13, 4, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (65, 13, 4, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (66, 14, 5, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (67, 14, 5, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (68, 14, 5, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (69, 14, 5, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (70, 14, 5, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (71, 15, 5, 'tour', 'Service', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (72, 15, 5, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (73, 15, 5, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (74, 15, 5, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (75, 15, 5, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (76, 16, 5, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (77, 16, 5, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (78, 16, 5, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (79, 16, 5, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (80, 16, 5, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (81, 17, 6, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (82, 17, 6, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (83, 17, 6, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (84, 17, 6, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (85, 17, 6, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (86, 18, 6, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (87, 18, 6, 'tour', 'Organization', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (88, 18, 6, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (89, 18, 6, 'tour', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (90, 18, 6, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (91, 19, 6, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (92, 19, 6, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (93, 19, 6, 'tour', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (94, 19, 6, 'tour', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (95, 19, 6, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (96, 20, 7, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (97, 20, 7, 'tour', 'Organization', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (98, 20, 7, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (99, 20, 7, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (100, 20, 7, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (101, 21, 7, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (102, 21, 7, 'tour', 'Organization', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (103, 21, 7, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (104, 21, 7, 'tour', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (105, 21, 7, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (106, 22, 7, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (107, 22, 7, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (108, 22, 7, 'tour', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (109, 22, 7, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (110, 22, 7, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (111, 23, 7, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (112, 23, 7, 'tour', 'Organization', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (113, 23, 7, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (114, 23, 7, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (115, 23, 7, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (116, 24, 8, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (117, 24, 8, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (118, 24, 8, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (119, 24, 8, 'tour', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (120, 24, 8, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (121, 25, 8, 'tour', 'Service', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (122, 25, 8, 'tour', 'Organization', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (123, 25, 8, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (124, 25, 8, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (125, 25, 8, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (126, 26, 8, 'tour', 'Service', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (127, 26, 8, 'tour', 'Organization', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (128, 26, 8, 'tour', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (129, 26, 8, 'tour', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (130, 26, 8, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (131, 27, 8, 'tour', 'Service', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (132, 27, 8, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (133, 27, 8, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (134, 27, 8, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (135, 27, 8, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (136, 28, 9, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (137, 28, 9, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (138, 28, 9, 'tour', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (139, 28, 9, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (140, 28, 9, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (141, 29, 9, 'tour', 'Service', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (142, 29, 9, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (143, 29, 9, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (144, 29, 9, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (145, 29, 9, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (146, 30, 9, 'tour', 'Service', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (147, 30, 9, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (148, 30, 9, 'tour', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (149, 30, 9, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (150, 30, 9, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (151, 31, 10, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (152, 31, 10, 'tour', 'Organization', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (153, 31, 10, 'tour', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (154, 31, 10, 'tour', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (155, 31, 10, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (156, 32, 10, 'tour', 'Service', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (157, 32, 10, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (158, 32, 10, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (159, 32, 10, 'tour', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (160, 32, 10, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (161, 33, 10, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (162, 33, 10, 'tour', 'Organization', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (163, 33, 10, 'tour', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (164, 33, 10, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (165, 33, 10, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (166, 34, 11, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (167, 34, 11, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (168, 34, 11, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (169, 34, 11, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (170, 34, 11, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (171, 35, 11, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (172, 35, 11, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (173, 35, 11, 'tour', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (174, 35, 11, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (175, 35, 11, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (176, 36, 11, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (177, 36, 11, 'tour', 'Organization', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (178, 36, 11, 'tour', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (179, 36, 11, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (180, 36, 11, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (181, 37, 11, 'tour', 'Service', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (182, 37, 11, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (183, 37, 11, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (184, 37, 11, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (185, 37, 11, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (186, 38, 12, 'tour', 'Service', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (187, 38, 12, 'tour', 'Organization', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (188, 38, 12, 'tour', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (189, 38, 12, 'tour', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (190, 38, 12, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (191, 39, 13, 'tour', 'Service', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (192, 39, 13, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (193, 39, 13, 'tour', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (194, 39, 13, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (195, 39, 13, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (196, 40, 13, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (197, 40, 13, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (198, 40, 13, 'tour', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (199, 40, 13, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (200, 40, 13, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (201, 41, 13, 'tour', 'Service', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (202, 41, 13, 'tour', 'Organization', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (203, 41, 13, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (204, 41, 13, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (205, 41, 13, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (206, 42, 13, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (207, 42, 13, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (208, 42, 13, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (209, 42, 13, 'tour', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (210, 42, 13, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (211, 43, 14, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (212, 43, 14, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (213, 43, 14, 'tour', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (214, 43, 14, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (215, 43, 14, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (216, 44, 14, 'tour', 'Service', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (217, 44, 14, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (218, 44, 14, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (219, 44, 14, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (220, 44, 14, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (221, 45, 14, 'tour', 'Service', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (222, 45, 14, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (223, 45, 14, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (224, 45, 14, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (225, 45, 14, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (226, 46, 15, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (227, 46, 15, 'tour', 'Organization', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (228, 46, 15, 'tour', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (229, 46, 15, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (230, 46, 15, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (231, 47, 15, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (232, 47, 15, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (233, 47, 15, 'tour', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (234, 47, 15, 'tour', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (235, 47, 15, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (236, 48, 15, 'tour', 'Service', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (237, 48, 15, 'tour', 'Organization', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (238, 48, 15, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (239, 48, 15, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (240, 48, 15, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (241, 49, 15, 'tour', 'Service', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (242, 49, 15, 'tour', 'Organization', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (243, 49, 15, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (244, 49, 15, 'tour', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (245, 49, 15, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (246, 50, 15, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (247, 50, 15, 'tour', 'Organization', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (248, 50, 15, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (249, 50, 15, 'tour', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (250, 50, 15, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (251, 51, 16, 'tour', 'Service', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (252, 51, 16, 'tour', 'Organization', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (253, 51, 16, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (254, 51, 16, 'tour', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (255, 51, 16, 'tour', 'Safety', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (256, 52, 16, 'tour', 'Service', '5', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (257, 52, 16, 'tour', 'Organization', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (258, 52, 16, 'tour', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (259, 52, 16, 'tour', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (260, 52, 16, 'tour', 'Safety', '4', 1, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (261, 53, 1, 'space', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (262, 53, 1, 'space', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (263, 53, 1, 'space', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (264, 53, 1, 'space', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (265, 53, 1, 'space', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (266, 54, 1, 'space', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (267, 54, 1, 'space', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (268, 54, 1, 'space', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (269, 54, 1, 'space', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (270, 54, 1, 'space', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (271, 55, 1, 'space', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (272, 55, 1, 'space', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (273, 55, 1, 'space', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (274, 55, 1, 'space', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (275, 55, 1, 'space', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (276, 56, 1, 'space', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (277, 56, 1, 'space', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (278, 56, 1, 'space', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (279, 56, 1, 'space', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (280, 56, 1, 'space', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (281, 57, 2, 'space', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (282, 57, 2, 'space', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (283, 57, 2, 'space', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (284, 57, 2, 'space', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (285, 57, 2, 'space', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (286, 58, 2, 'space', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (287, 58, 2, 'space', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (288, 58, 2, 'space', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (289, 58, 2, 'space', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (290, 58, 2, 'space', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (291, 59, 2, 'space', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (292, 59, 2, 'space', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (293, 59, 2, 'space', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (294, 59, 2, 'space', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (295, 59, 2, 'space', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (296, 60, 3, 'space', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (297, 60, 3, 'space', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (298, 60, 3, 'space', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (299, 60, 3, 'space', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (300, 60, 3, 'space', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (301, 61, 3, 'space', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (302, 61, 3, 'space', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (303, 61, 3, 'space', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (304, 61, 3, 'space', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (305, 61, 3, 'space', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (306, 62, 3, 'space', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (307, 62, 3, 'space', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (308, 62, 3, 'space', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (309, 62, 3, 'space', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (310, 62, 3, 'space', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (311, 63, 4, 'space', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (312, 63, 4, 'space', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (313, 63, 4, 'space', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (314, 63, 4, 'space', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (315, 63, 4, 'space', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (316, 64, 5, 'space', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (317, 64, 5, 'space', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (318, 64, 5, 'space', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (319, 64, 5, 'space', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (320, 64, 5, 'space', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (321, 65, 5, 'space', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (322, 65, 5, 'space', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (323, 65, 5, 'space', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (324, 65, 5, 'space', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (325, 65, 5, 'space', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (326, 66, 5, 'space', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (327, 66, 5, 'space', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (328, 66, 5, 'space', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (329, 66, 5, 'space', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (330, 66, 5, 'space', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (331, 67, 5, 'space', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (332, 67, 5, 'space', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (333, 67, 5, 'space', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (334, 67, 5, 'space', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (335, 67, 5, 'space', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (336, 68, 6, 'space', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (337, 68, 6, 'space', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (338, 68, 6, 'space', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (339, 68, 6, 'space', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (340, 68, 6, 'space', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (341, 69, 6, 'space', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (342, 69, 6, 'space', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (343, 69, 6, 'space', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (344, 69, 6, 'space', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (345, 69, 6, 'space', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (346, 70, 6, 'space', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (347, 70, 6, 'space', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (348, 70, 6, 'space', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (349, 70, 6, 'space', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (350, 70, 6, 'space', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (351, 71, 6, 'space', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (352, 71, 6, 'space', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (353, 71, 6, 'space', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (354, 71, 6, 'space', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (355, 71, 6, 'space', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (356, 72, 7, 'space', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (357, 72, 7, 'space', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (358, 72, 7, 'space', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (359, 72, 7, 'space', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (360, 72, 7, 'space', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (361, 73, 7, 'space', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (362, 73, 7, 'space', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (363, 73, 7, 'space', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (364, 73, 7, 'space', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (365, 73, 7, 'space', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (366, 74, 7, 'space', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (367, 74, 7, 'space', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (368, 74, 7, 'space', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (369, 74, 7, 'space', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (370, 74, 7, 'space', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (371, 75, 7, 'space', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (372, 75, 7, 'space', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (373, 75, 7, 'space', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (374, 75, 7, 'space', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (375, 75, 7, 'space', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (376, 76, 8, 'space', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (377, 76, 8, 'space', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (378, 76, 8, 'space', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (379, 76, 8, 'space', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (380, 76, 8, 'space', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (381, 77, 8, 'space', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (382, 77, 8, 'space', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (383, 77, 8, 'space', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (384, 77, 8, 'space', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (385, 77, 8, 'space', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (386, 78, 8, 'space', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (387, 78, 8, 'space', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (388, 78, 8, 'space', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (389, 78, 8, 'space', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (390, 78, 8, 'space', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (391, 79, 9, 'space', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (392, 79, 9, 'space', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (393, 79, 9, 'space', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (394, 79, 9, 'space', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (395, 79, 9, 'space', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (396, 80, 9, 'space', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (397, 80, 9, 'space', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (398, 80, 9, 'space', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (399, 80, 9, 'space', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (400, 80, 9, 'space', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (401, 81, 10, 'space', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (402, 81, 10, 'space', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (403, 81, 10, 'space', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (404, 81, 10, 'space', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (405, 81, 10, 'space', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (406, 82, 10, 'space', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (407, 82, 10, 'space', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (408, 82, 10, 'space', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (409, 82, 10, 'space', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (410, 82, 10, 'space', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (411, 83, 11, 'space', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (412, 83, 11, 'space', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (413, 83, 11, 'space', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (414, 83, 11, 'space', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (415, 83, 11, 'space', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (416, 84, 11, 'space', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (417, 84, 11, 'space', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (418, 84, 11, 'space', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (419, 84, 11, 'space', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (420, 84, 11, 'space', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (421, 85, 1, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (422, 85, 1, 'hotel', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (423, 85, 1, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (424, 85, 1, 'hotel', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (425, 85, 1, 'hotel', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (426, 86, 1, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (427, 86, 1, 'hotel', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (428, 86, 1, 'hotel', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (429, 86, 1, 'hotel', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (430, 86, 1, 'hotel', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (431, 87, 1, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (432, 87, 1, 'hotel', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (433, 87, 1, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (434, 87, 1, 'hotel', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (435, 87, 1, 'hotel', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (436, 88, 1, 'hotel', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (437, 88, 1, 'hotel', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (438, 88, 1, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (439, 88, 1, 'hotel', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (440, 88, 1, 'hotel', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (441, 89, 1, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (442, 89, 1, 'hotel', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (443, 89, 1, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (444, 89, 1, 'hotel', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (445, 89, 1, 'hotel', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (446, 90, 2, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (447, 90, 2, 'hotel', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (448, 90, 2, 'hotel', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (449, 90, 2, 'hotel', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (450, 90, 2, 'hotel', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (451, 91, 2, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (452, 91, 2, 'hotel', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (453, 91, 2, 'hotel', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (454, 91, 2, 'hotel', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (455, 91, 2, 'hotel', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (456, 92, 2, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (457, 92, 2, 'hotel', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (458, 92, 2, 'hotel', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (459, 92, 2, 'hotel', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (460, 92, 2, 'hotel', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (461, 93, 3, 'hotel', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (462, 93, 3, 'hotel', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (463, 93, 3, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (464, 93, 3, 'hotel', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (465, 93, 3, 'hotel', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (466, 94, 3, 'hotel', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (467, 94, 3, 'hotel', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (468, 94, 3, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (469, 94, 3, 'hotel', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (470, 94, 3, 'hotel', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (471, 95, 3, 'hotel', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (472, 95, 3, 'hotel', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (473, 95, 3, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (474, 95, 3, 'hotel', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (475, 95, 3, 'hotel', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (476, 96, 4, 'hotel', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (477, 96, 4, 'hotel', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (478, 96, 4, 'hotel', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (479, 96, 4, 'hotel', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (480, 96, 4, 'hotel', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (481, 97, 4, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (482, 97, 4, 'hotel', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (483, 97, 4, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (484, 97, 4, 'hotel', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (485, 97, 4, 'hotel', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (486, 98, 4, 'hotel', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (487, 98, 4, 'hotel', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (488, 98, 4, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (489, 98, 4, 'hotel', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (490, 98, 4, 'hotel', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (491, 99, 5, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (492, 99, 5, 'hotel', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (493, 99, 5, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (494, 99, 5, 'hotel', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (495, 99, 5, 'hotel', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (496, 100, 5, 'hotel', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (497, 100, 5, 'hotel', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (498, 100, 5, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (499, 100, 5, 'hotel', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (500, 100, 5, 'hotel', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (501, 101, 5, 'hotel', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (502, 101, 5, 'hotel', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (503, 101, 5, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (504, 101, 5, 'hotel', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (505, 101, 5, 'hotel', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (506, 102, 5, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (507, 102, 5, 'hotel', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (508, 102, 5, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (509, 102, 5, 'hotel', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (510, 102, 5, 'hotel', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (511, 103, 5, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (512, 103, 5, 'hotel', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (513, 103, 5, 'hotel', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (514, 103, 5, 'hotel', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (515, 103, 5, 'hotel', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (516, 104, 6, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (517, 104, 6, 'hotel', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (518, 104, 6, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (519, 104, 6, 'hotel', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (520, 104, 6, 'hotel', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (521, 105, 6, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (522, 105, 6, 'hotel', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (523, 105, 6, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (524, 105, 6, 'hotel', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (525, 105, 6, 'hotel', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (526, 106, 7, 'hotel', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (527, 106, 7, 'hotel', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (528, 106, 7, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (529, 106, 7, 'hotel', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (530, 106, 7, 'hotel', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (531, 107, 7, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (532, 107, 7, 'hotel', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (533, 107, 7, 'hotel', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (534, 107, 7, 'hotel', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (535, 107, 7, 'hotel', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (536, 108, 7, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (537, 108, 7, 'hotel', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'); INSERT INTO `bravo_review_meta` (`id`, `review_id`, `object_id`, `object_model`, `name`, `val`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (538, 108, 7, 'hotel', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (539, 108, 7, 'hotel', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (540, 108, 7, 'hotel', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (541, 109, 7, 'hotel', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (542, 109, 7, 'hotel', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (543, 109, 7, 'hotel', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (544, 109, 7, 'hotel', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (545, 109, 7, 'hotel', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (546, 110, 8, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (547, 110, 8, 'hotel', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (548, 110, 8, 'hotel', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (549, 110, 8, 'hotel', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (550, 110, 8, 'hotel', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (551, 111, 8, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (552, 111, 8, 'hotel', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (553, 111, 8, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (554, 111, 8, 'hotel', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (555, 111, 8, 'hotel', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (556, 112, 8, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (557, 112, 8, 'hotel', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (558, 112, 8, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (559, 112, 8, 'hotel', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (560, 112, 8, 'hotel', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (561, 113, 8, 'hotel', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (562, 113, 8, 'hotel', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (563, 113, 8, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (564, 113, 8, 'hotel', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (565, 113, 8, 'hotel', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (566, 114, 9, 'hotel', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (567, 114, 9, 'hotel', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (568, 114, 9, 'hotel', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (569, 114, 9, 'hotel', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (570, 114, 9, 'hotel', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (571, 115, 9, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (572, 115, 9, 'hotel', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (573, 115, 9, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (574, 115, 9, 'hotel', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (575, 115, 9, 'hotel', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (576, 116, 9, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (577, 116, 9, 'hotel', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (578, 116, 9, 'hotel', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (579, 116, 9, 'hotel', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (580, 116, 9, 'hotel', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (581, 117, 10, 'hotel', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (582, 117, 10, 'hotel', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (583, 117, 10, 'hotel', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (584, 117, 10, 'hotel', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (585, 117, 10, 'hotel', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (586, 118, 10, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (587, 118, 10, 'hotel', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (588, 118, 10, 'hotel', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (589, 118, 10, 'hotel', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (590, 118, 10, 'hotel', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (591, 119, 10, 'hotel', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (592, 119, 10, 'hotel', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (593, 119, 10, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (594, 119, 10, 'hotel', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (595, 119, 10, 'hotel', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (596, 120, 11, 'hotel', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (597, 120, 11, 'hotel', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (598, 120, 11, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (599, 120, 11, 'hotel', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (600, 120, 11, 'hotel', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (601, 121, 11, 'hotel', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (602, 121, 11, 'hotel', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (603, 121, 11, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (604, 121, 11, 'hotel', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (605, 121, 11, 'hotel', 'Rooms', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (606, 122, 11, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (607, 122, 11, 'hotel', 'Location', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (608, 122, 11, 'hotel', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (609, 122, 11, 'hotel', 'Clearness', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (610, 122, 11, 'hotel', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (611, 123, 11, 'hotel', 'Sleep', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (612, 123, 11, 'hotel', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (613, 123, 11, 'hotel', 'Service', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (614, 123, 11, 'hotel', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (615, 123, 11, 'hotel', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (616, 124, 11, 'hotel', 'Sleep', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (617, 124, 11, 'hotel', 'Location', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (618, 124, 11, 'hotel', 'Service', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (619, 124, 11, 'hotel', 'Clearness', '5', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (620, 124, 11, 'hotel', 'Rooms', '4', 1, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (621, 125, 1, 'car', 'Equipment', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (622, 125, 1, 'car', 'Comfortable', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (623, 125, 1, 'car', 'Climate Control', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (624, 125, 1, 'car', 'Facility', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (625, 125, 1, 'car', 'Aftercare', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (626, 126, 1, 'car', 'Equipment', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (627, 126, 1, 'car', 'Comfortable', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (628, 126, 1, 'car', 'Climate Control', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (629, 126, 1, 'car', 'Facility', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (630, 126, 1, 'car', 'Aftercare', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (631, 127, 1, 'car', 'Equipment', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (632, 127, 1, 'car', 'Comfortable', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (633, 127, 1, 'car', 'Climate Control', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (634, 127, 1, 'car', 'Facility', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (635, 127, 1, 'car', 'Aftercare', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (636, 128, 2, 'car', 'Equipment', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (637, 128, 2, 'car', 'Comfortable', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (638, 128, 2, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (639, 128, 2, 'car', 'Facility', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (640, 128, 2, 'car', 'Aftercare', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (641, 129, 2, 'car', 'Equipment', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (642, 129, 2, 'car', 'Comfortable', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (643, 129, 2, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (644, 129, 2, 'car', 'Facility', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (645, 129, 2, 'car', 'Aftercare', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (646, 130, 3, 'car', 'Equipment', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (647, 130, 3, 'car', 'Comfortable', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (648, 130, 3, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (649, 130, 3, 'car', 'Facility', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (650, 130, 3, 'car', 'Aftercare', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (651, 131, 3, 'car', 'Equipment', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (652, 131, 3, 'car', 'Comfortable', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (653, 131, 3, 'car', 'Climate Control', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (654, 131, 3, 'car', 'Facility', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (655, 131, 3, 'car', 'Aftercare', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (656, 132, 3, 'car', 'Equipment', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (657, 132, 3, 'car', 'Comfortable', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (658, 132, 3, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (659, 132, 3, 'car', 'Facility', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (660, 132, 3, 'car', 'Aftercare', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (661, 133, 3, 'car', 'Equipment', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (662, 133, 3, 'car', 'Comfortable', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (663, 133, 3, 'car', 'Climate Control', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (664, 133, 3, 'car', 'Facility', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (665, 133, 3, 'car', 'Aftercare', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (666, 134, 4, 'car', 'Equipment', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (667, 134, 4, 'car', 'Comfortable', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (668, 134, 4, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (669, 134, 4, 'car', 'Facility', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (670, 134, 4, 'car', 'Aftercare', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (671, 135, 4, 'car', 'Equipment', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (672, 135, 4, 'car', 'Comfortable', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (673, 135, 4, 'car', 'Climate Control', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (674, 135, 4, 'car', 'Facility', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (675, 135, 4, 'car', 'Aftercare', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (676, 136, 5, 'car', 'Equipment', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (677, 136, 5, 'car', 'Comfortable', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (678, 136, 5, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (679, 136, 5, 'car', 'Facility', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (680, 136, 5, 'car', 'Aftercare', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (681, 137, 5, 'car', 'Equipment', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (682, 137, 5, 'car', 'Comfortable', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (683, 137, 5, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (684, 137, 5, 'car', 'Facility', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (685, 137, 5, 'car', 'Aftercare', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (686, 138, 5, 'car', 'Equipment', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (687, 138, 5, 'car', 'Comfortable', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (688, 138, 5, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (689, 138, 5, 'car', 'Facility', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (690, 138, 5, 'car', 'Aftercare', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (691, 139, 6, 'car', 'Equipment', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (692, 139, 6, 'car', 'Comfortable', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (693, 139, 6, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (694, 139, 6, 'car', 'Facility', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (695, 139, 6, 'car', 'Aftercare', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (696, 140, 6, 'car', 'Equipment', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (697, 140, 6, 'car', 'Comfortable', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (698, 140, 6, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (699, 140, 6, 'car', 'Facility', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (700, 140, 6, 'car', 'Aftercare', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (701, 141, 7, 'car', 'Equipment', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (702, 141, 7, 'car', 'Comfortable', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (703, 141, 7, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (704, 141, 7, 'car', 'Facility', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (705, 141, 7, 'car', 'Aftercare', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (706, 142, 7, 'car', 'Equipment', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (707, 142, 7, 'car', 'Comfortable', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (708, 142, 7, 'car', 'Climate Control', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (709, 142, 7, 'car', 'Facility', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (710, 142, 7, 'car', 'Aftercare', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (711, 143, 7, 'car', 'Equipment', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (712, 143, 7, 'car', 'Comfortable', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (713, 143, 7, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (714, 143, 7, 'car', 'Facility', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (715, 143, 7, 'car', 'Aftercare', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (716, 144, 8, 'car', 'Equipment', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (717, 144, 8, 'car', 'Comfortable', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (718, 144, 8, 'car', 'Climate Control', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (719, 144, 8, 'car', 'Facility', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (720, 144, 8, 'car', 'Aftercare', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (721, 145, 8, 'car', 'Equipment', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (722, 145, 8, 'car', 'Comfortable', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (723, 145, 8, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (724, 145, 8, 'car', 'Facility', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (725, 145, 8, 'car', 'Aftercare', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (726, 146, 8, 'car', 'Equipment', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (727, 146, 8, 'car', 'Comfortable', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (728, 146, 8, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (729, 146, 8, 'car', 'Facility', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (730, 146, 8, 'car', 'Aftercare', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (731, 147, 9, 'car', 'Equipment', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (732, 147, 9, 'car', 'Comfortable', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (733, 147, 9, 'car', 'Climate Control', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (734, 147, 9, 'car', 'Facility', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (735, 147, 9, 'car', 'Aftercare', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (736, 148, 9, 'car', 'Equipment', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (737, 148, 9, 'car', 'Comfortable', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (738, 148, 9, 'car', 'Climate Control', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (739, 148, 9, 'car', 'Facility', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (740, 148, 9, 'car', 'Aftercare', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (741, 149, 9, 'car', 'Equipment', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (742, 149, 9, 'car', 'Comfortable', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (743, 149, 9, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (744, 149, 9, 'car', 'Facility', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (745, 149, 9, 'car', 'Aftercare', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (746, 150, 10, 'car', 'Equipment', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (747, 150, 10, 'car', 'Comfortable', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (748, 150, 10, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (749, 150, 10, 'car', 'Facility', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (750, 150, 10, 'car', 'Aftercare', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (751, 151, 10, 'car', 'Equipment', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (752, 151, 10, 'car', 'Comfortable', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (753, 151, 10, 'car', 'Climate Control', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (754, 151, 10, 'car', 'Facility', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (755, 151, 10, 'car', 'Aftercare', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (756, 152, 10, 'car', 'Equipment', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (757, 152, 10, 'car', 'Comfortable', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (758, 152, 10, 'car', 'Climate Control', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (759, 152, 10, 'car', 'Facility', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (760, 152, 10, 'car', 'Aftercare', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (761, 153, 10, 'car', 'Equipment', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (762, 153, 10, 'car', 'Comfortable', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (763, 153, 10, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (764, 153, 10, 'car', 'Facility', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (765, 153, 10, 'car', 'Aftercare', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (766, 154, 11, 'car', 'Equipment', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (767, 154, 11, 'car', 'Comfortable', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (768, 154, 11, 'car', 'Climate Control', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (769, 154, 11, 'car', 'Facility', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (770, 154, 11, 'car', 'Aftercare', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (771, 155, 11, 'car', 'Equipment', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (772, 155, 11, 'car', 'Comfortable', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (773, 155, 11, 'car', 'Climate Control', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (774, 155, 11, 'car', 'Facility', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (775, 155, 11, 'car', 'Aftercare', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (776, 156, 11, 'car', 'Equipment', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (777, 156, 11, 'car', 'Comfortable', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (778, 156, 11, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (779, 156, 11, 'car', 'Facility', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (780, 156, 11, 'car', 'Aftercare', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (781, 157, 11, 'car', 'Equipment', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (782, 157, 11, 'car', 'Comfortable', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (783, 157, 11, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (784, 157, 11, 'car', 'Facility', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (785, 157, 11, 'car', 'Aftercare', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (786, 158, 12, 'car', 'Equipment', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (787, 158, 12, 'car', 'Comfortable', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (788, 158, 12, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (789, 158, 12, 'car', 'Facility', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (790, 158, 12, 'car', 'Aftercare', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (791, 159, 12, 'car', 'Equipment', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (792, 159, 12, 'car', 'Comfortable', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (793, 159, 12, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (794, 159, 12, 'car', 'Facility', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (795, 159, 12, 'car', 'Aftercare', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (796, 160, 12, 'car', 'Equipment', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (797, 160, 12, 'car', 'Comfortable', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (798, 160, 12, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (799, 160, 12, 'car', 'Facility', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (800, 160, 12, 'car', 'Aftercare', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (801, 161, 12, 'car', 'Equipment', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (802, 161, 12, 'car', 'Comfortable', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (803, 161, 12, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (804, 161, 12, 'car', 'Facility', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (805, 161, 12, 'car', 'Aftercare', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (806, 162, 13, 'car', 'Equipment', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (807, 162, 13, 'car', 'Comfortable', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (808, 162, 13, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (809, 162, 13, 'car', 'Facility', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (810, 162, 13, 'car', 'Aftercare', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (811, 163, 13, 'car', 'Equipment', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (812, 163, 13, 'car', 'Comfortable', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (813, 163, 13, 'car', 'Climate Control', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (814, 163, 13, 'car', 'Facility', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (815, 163, 13, 'car', 'Aftercare', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (816, 164, 1, 'event', 'Service', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (817, 164, 1, 'event', 'Organization', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (818, 164, 1, 'event', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (819, 164, 1, 'event', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (820, 164, 1, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (821, 165, 1, 'event', 'Service', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (822, 165, 1, 'event', 'Organization', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (823, 165, 1, 'event', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (824, 165, 1, 'event', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (825, 165, 1, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (826, 166, 1, 'event', 'Service', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (827, 166, 1, 'event', 'Organization', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (828, 166, 1, 'event', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (829, 166, 1, 'event', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (830, 166, 1, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (831, 167, 1, 'event', 'Service', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (832, 167, 1, 'event', 'Organization', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (833, 167, 1, 'event', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (834, 167, 1, 'event', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (835, 167, 1, 'event', 'Safety', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (836, 168, 2, 'event', 'Service', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (837, 168, 2, 'event', 'Organization', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (838, 168, 2, 'event', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (839, 168, 2, 'event', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (840, 168, 2, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (841, 169, 2, 'event', 'Service', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (842, 169, 2, 'event', 'Organization', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (843, 169, 2, 'event', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (844, 169, 2, 'event', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (845, 169, 2, 'event', 'Safety', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (846, 170, 2, 'event', 'Service', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (847, 170, 2, 'event', 'Organization', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (848, 170, 2, 'event', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (849, 170, 2, 'event', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (850, 170, 2, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (851, 171, 3, 'event', 'Service', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (852, 171, 3, 'event', 'Organization', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (853, 171, 3, 'event', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (854, 171, 3, 'event', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (855, 171, 3, 'event', 'Safety', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (856, 172, 3, 'event', 'Service', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (857, 172, 3, 'event', 'Organization', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (858, 172, 3, 'event', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (859, 172, 3, 'event', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (860, 172, 3, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (861, 173, 4, 'event', 'Service', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (862, 173, 4, 'event', 'Organization', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (863, 173, 4, 'event', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (864, 173, 4, 'event', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (865, 173, 4, 'event', 'Safety', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (866, 174, 4, 'event', 'Service', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (867, 174, 4, 'event', 'Organization', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (868, 174, 4, 'event', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (869, 174, 4, 'event', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (870, 174, 4, 'event', 'Safety', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (871, 175, 4, 'event', 'Service', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (872, 175, 4, 'event', 'Organization', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (873, 175, 4, 'event', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (874, 175, 4, 'event', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (875, 175, 4, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (876, 176, 5, 'event', 'Service', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (877, 176, 5, 'event', 'Organization', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (878, 176, 5, 'event', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (879, 176, 5, 'event', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (880, 176, 5, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (881, 177, 5, 'event', 'Service', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (882, 177, 5, 'event', 'Organization', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (883, 177, 5, 'event', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (884, 177, 5, 'event', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (885, 177, 5, 'event', 'Safety', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (886, 178, 6, 'event', 'Service', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (887, 178, 6, 'event', 'Organization', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (888, 178, 6, 'event', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (889, 178, 6, 'event', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (890, 178, 6, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (891, 179, 6, 'event', 'Service', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (892, 179, 6, 'event', 'Organization', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (893, 179, 6, 'event', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (894, 179, 6, 'event', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (895, 179, 6, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (896, 180, 6, 'event', 'Service', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (897, 180, 6, 'event', 'Organization', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (898, 180, 6, 'event', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (899, 180, 6, 'event', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (900, 180, 6, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (901, 181, 7, 'event', 'Service', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (902, 181, 7, 'event', 'Organization', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (903, 181, 7, 'event', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (904, 181, 7, 'event', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (905, 181, 7, 'event', 'Safety', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (906, 182, 7, 'event', 'Service', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (907, 182, 7, 'event', 'Organization', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (908, 182, 7, 'event', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (909, 182, 7, 'event', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (910, 182, 7, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (911, 183, 7, 'event', 'Service', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (912, 183, 7, 'event', 'Organization', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (913, 183, 7, 'event', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (914, 183, 7, 'event', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (915, 183, 7, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (916, 184, 8, 'event', 'Service', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (917, 184, 8, 'event', 'Organization', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (918, 184, 8, 'event', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (919, 184, 8, 'event', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (920, 184, 8, 'event', 'Safety', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (921, 185, 8, 'event', 'Service', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (922, 185, 8, 'event', 'Organization', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (923, 185, 8, 'event', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (924, 185, 8, 'event', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (925, 185, 8, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (926, 186, 9, 'event', 'Service', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (927, 186, 9, 'event', 'Organization', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (928, 186, 9, 'event', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (929, 186, 9, 'event', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (930, 186, 9, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (931, 187, 9, 'event', 'Service', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (932, 187, 9, 'event', 'Organization', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (933, 187, 9, 'event', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (934, 187, 9, 'event', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (935, 187, 9, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (936, 188, 10, 'event', 'Service', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (937, 188, 10, 'event', 'Organization', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (938, 188, 10, 'event', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (939, 188, 10, 'event', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (940, 188, 10, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (941, 189, 10, 'event', 'Service', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (942, 189, 10, 'event', 'Organization', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (943, 189, 10, 'event', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (944, 189, 10, 'event', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (945, 189, 10, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (946, 190, 10, 'event', 'Service', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (947, 190, 10, 'event', 'Organization', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (948, 190, 10, 'event', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (949, 190, 10, 'event', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (950, 190, 10, 'event', 'Safety', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (951, 191, 10, 'event', 'Service', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (952, 191, 10, 'event', 'Organization', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (953, 191, 10, 'event', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (954, 191, 10, 'event', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (955, 191, 10, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (956, 192, 11, 'event', 'Service', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (957, 192, 11, 'event', 'Organization', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (958, 192, 11, 'event', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (959, 192, 11, 'event', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (960, 192, 11, 'event', 'Safety', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (961, 193, 11, 'event', 'Service', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (962, 193, 11, 'event', 'Organization', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (963, 193, 11, 'event', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (964, 193, 11, 'event', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (965, 193, 11, 'event', 'Safety', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (966, 194, 11, 'event', 'Service', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (967, 194, 11, 'event', 'Organization', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (968, 194, 11, 'event', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (969, 194, 11, 'event', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (970, 194, 11, 'event', 'Safety', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (971, 195, 11, 'event', 'Service', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (972, 195, 11, 'event', 'Organization', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (973, 195, 11, 'event', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (974, 195, 11, 'event', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (975, 195, 11, 'event', 'Safety', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (976, 196, 12, 'event', 'Service', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (977, 196, 12, 'event', 'Organization', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (978, 196, 12, 'event', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (979, 196, 12, 'event', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (980, 196, 12, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (981, 197, 12, 'event', 'Service', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (982, 197, 12, 'event', 'Organization', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (983, 197, 12, 'event', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (984, 197, 12, 'event', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (985, 197, 12, 'event', 'Safety', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (986, 198, 12, 'event', 'Service', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (987, 198, 12, 'event', 'Organization', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (988, 198, 12, 'event', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (989, 198, 12, 'event', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (990, 198, 12, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (991, 199, 12, 'event', 'Service', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (992, 199, 12, 'event', 'Organization', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (993, 199, 12, 'event', 'Friendliness', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (994, 199, 12, 'event', 'Area Expert', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (995, 199, 12, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (996, 200, 12, 'event', 'Service', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (997, 200, 12, 'event', 'Organization', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (998, 200, 12, 'event', 'Friendliness', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (999, 200, 12, 'event', 'Area Expert', '5', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (1000, 200, 12, 'event', 'Safety', '4', 1, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_seo` -- CREATE TABLE `bravo_seo` ( `id` bigint(20) UNSIGNED NOT NULL, `object_id` int(11) DEFAULT NULL, `object_model` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seo_index` tinyint(4) DEFAULT NULL, `seo_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seo_desc` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seo_image` int(11) DEFAULT NULL, `seo_share` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `origin_id` bigint(20) DEFAULT NULL, `lang` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_services` -- CREATE TABLE `bravo_services` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) CHARACTER SET utf8 NOT NULL, `category_id` int(11) DEFAULT NULL, `location_id` int(11) DEFAULT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `map_lat` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `map_lng` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_featured` tinyint(4) DEFAULT NULL, `star_rate` tinyint(4) DEFAULT NULL, `price` decimal(12,2) DEFAULT NULL, `sale_price` decimal(12,2) DEFAULT NULL, `min_people` int(11) DEFAULT NULL, `max_people` int(11) DEFAULT NULL, `max_guests` int(11) DEFAULT NULL, `review_score` int(11) DEFAULT NULL, `min_day_before_booking` int(11) DEFAULT NULL, `min_day_stays` int(11) DEFAULT NULL, `object_id` int(11) DEFAULT NULL, `object_model` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_service_translations` -- CREATE TABLE `bravo_service_translations` ( `id` bigint(20) UNSIGNED NOT NULL, `origin_id` bigint(20) DEFAULT NULL, `locale` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_spaces` -- CREATE TABLE `bravo_spaces` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) CHARACTER SET utf8 NOT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image_id` int(11) DEFAULT NULL, `banner_image_id` int(11) DEFAULT NULL, `location_id` int(11) DEFAULT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `map_lat` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `map_lng` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `map_zoom` int(11) DEFAULT NULL, `is_featured` tinyint(4) DEFAULT NULL, `gallery` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `faqs` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(12,2) DEFAULT NULL, `sale_price` decimal(12,2) DEFAULT NULL, `is_instant` tinyint(4) DEFAULT 0, `allow_children` tinyint(4) DEFAULT 0, `allow_infant` tinyint(4) DEFAULT 0, `max_guests` int(11) DEFAULT NULL, `bed` int(11) DEFAULT NULL, `bathroom` int(11) DEFAULT NULL, `square` int(11) DEFAULT NULL, `enable_extra_price` tinyint(4) DEFAULT NULL, `extra_price` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_by_days` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `default_state` tinyint(4) DEFAULT 1, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `review_score` decimal(2,1) DEFAULT NULL, `ical_import_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_day_before_booking` int(11) DEFAULT NULL, `min_day_stays` int(11) DEFAULT NULL, `enable_service_fee` tinyint(4) DEFAULT NULL, `service_fee` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `surrounding` text COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_spaces` -- INSERT INTO `bravo_spaces` (`id`, `title`, `slug`, `content`, `image_id`, `banner_image_id`, `location_id`, `address`, `map_lat`, `map_lng`, `map_zoom`, `is_featured`, `gallery`, `video`, `faqs`, `price`, `sale_price`, `is_instant`, `allow_children`, `allow_infant`, `max_guests`, `bed`, `bathroom`, `square`, `enable_extra_price`, `extra_price`, `discount_by_days`, `status`, `default_state`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`, `review_score`, `ical_import_url`, `min_day_before_booking`, `min_day_stays`, `enable_service_fee`, `service_fee`, `surrounding`) VALUES (1, 'LUXURY STUDIO', 'luxury-studio', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 63, 85, 2, 'Arrondissement de Paris', '51.528564', '-0.203010', 12, 1, '76,77,78,79,80,81,82', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Check-in time?\",\"content\":\"As a rough guide, the check-in time is after 12 a.m. Let us know your arrival time in case you schedule and early check in we\\u2018ll do our best to have your room available.\"},{\"title\":\"Check-out time?\",\"content\":\"As a rough guide, the check-out time is before 12pm. If you plan a late check out kindly let us know your departure time, we\\u2019ll our best to satisfy your needs.\"},{\"title\":\"Is Reception open 24 hours?\",\"content\":\"Yes, Reception service is available 24 hours.\"},{\"title\":\"Which languages are spoken at Reception?\",\"content\":\"Italian, English, French, German and Spanish.\"},{\"title\":\"Can I leave my luggage?\",\"content\":\"Yes, we can look after your luggage. If at check in your room is not ready yet or in case of early check out after .We will store your luggage free of charge on your check-in and check-out days.\"},{\"title\":\"Internet connection?\",\"content\":\"A wireless internet connection is available throughout the hotel.\\r\\n\\r\\nThe guest rooms feature hi-speed web connectivity (both wireless and cabled).\"}]', 300.00, 567.00, 1, 0, 0, 6, 10, 9, 159, 1, '[{\"name\":\"Lawn garden\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Clearning\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 'publish', 1, 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4.5, NULL, NULL, NULL, NULL, NULL, NULL), (2, 'LUXURY APARTMENT', 'luxury-apartment', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 64, 85, 3, 'Porte de Vanves', '51.519592', '-0.226346', 12, 0, '76,77,78,79,80,81,82', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Check-in time?\",\"content\":\"As a rough guide, the check-in time is after 12 a.m. Let us know your arrival time in case you schedule and early check in we\\u2018ll do our best to have your room available.\"},{\"title\":\"Check-out time?\",\"content\":\"As a rough guide, the check-out time is before 12pm. If you plan a late check out kindly let us know your departure time, we\\u2019ll our best to satisfy your needs.\"},{\"title\":\"Is Reception open 24 hours?\",\"content\":\"Yes, Reception service is available 24 hours.\"},{\"title\":\"Which languages are spoken at Reception?\",\"content\":\"Italian, English, French, German and Spanish.\"},{\"title\":\"Can I leave my luggage?\",\"content\":\"Yes, we can look after your luggage. If at check in your room is not ready yet or in case of early check out after .We will store your luggage free of charge on your check-in and check-out days.\"},{\"title\":\"Internet connection?\",\"content\":\"A wireless internet connection is available throughout the hotel.\\r\\n\\r\\nThe guest rooms feature hi-speed web connectivity (both wireless and cabled).\"}]', 900.00, 0.00, 1, 0, 0, 7, 8, 3, 143, 1, '[{\"name\":\"Lawn garden\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Clearning\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 'publish', 1, 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4.3, NULL, NULL, NULL, NULL, NULL, NULL), (3, 'BEAUTIFUL LOFT', 'beautiful-loft', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 65, 84, 3, 'Porte de Vanves', '51.461875', '-0.211246', 12, 0, '76,77,78,79,80,81,82', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Check-in time?\",\"content\":\"As a rough guide, the check-in time is after 12 a.m. Let us know your arrival time in case you schedule and early check in we\\u2018ll do our best to have your room available.\"},{\"title\":\"Check-out time?\",\"content\":\"As a rough guide, the check-out time is before 12pm. If you plan a late check out kindly let us know your departure time, we\\u2019ll our best to satisfy your needs.\"},{\"title\":\"Is Reception open 24 hours?\",\"content\":\"Yes, Reception service is available 24 hours.\"},{\"title\":\"Which languages are spoken at Reception?\",\"content\":\"Italian, English, French, German and Spanish.\"},{\"title\":\"Can I leave my luggage?\",\"content\":\"Yes, we can look after your luggage. If at check in your room is not ready yet or in case of early check out after .We will store your luggage free of charge on your check-in and check-out days.\"},{\"title\":\"Internet connection?\",\"content\":\"A wireless internet connection is available throughout the hotel.\\r\\n\\r\\nThe guest rooms feature hi-speed web connectivity (both wireless and cabled).\"}]', 650.00, 0.00, 1, 0, 0, 8, 7, 2, 185, 1, '[{\"name\":\"<NAME>\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Clearning\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 'publish', 1, 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4.7, NULL, NULL, NULL, NULL, NULL, NULL), (4, 'BEST OF WEST VILLAGE', 'best-of-west-village', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 66, 85, 4, 'Porte de Vanves', '51.427638', '-0.170752', 12, 1, '76,77,78,79,80,81,82', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Check-in time?\",\"content\":\"As a rough guide, the check-in time is after 12 a.m. Let us know your arrival time in case you schedule and early check in we\\u2018ll do our best to have your room available.\"},{\"title\":\"Check-out time?\",\"content\":\"As a rough guide, the check-out time is before 12pm. If you plan a late check out kindly let us know your departure time, we\\u2019ll our best to satisfy your needs.\"},{\"title\":\"Is Reception open 24 hours?\",\"content\":\"Yes, Reception service is available 24 hours.\"},{\"title\":\"Which languages are spoken at Reception?\",\"content\":\"Italian, English, French, German and Spanish.\"},{\"title\":\"Can I leave my luggage?\",\"content\":\"Yes, we can look after your luggage. If at check in your room is not ready yet or in case of early check out after .We will store your luggage free of charge on your check-in and check-out days.\"},{\"title\":\"Internet connection?\",\"content\":\"A wireless internet connection is available throughout the hotel.\\r\\n\\r\\nThe guest rooms feature hi-speed web connectivity (both wireless and cabled).\"}]', 800.00, 0.00, 0, 0, 0, 6, 6, 8, 164, 1, '[{\"name\":\"Lawn garden\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Clearning\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 'publish', 1, 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4.0, NULL, NULL, NULL, NULL, NULL, NULL), (5, 'DUPLEX GREENWICH', 'duplex-greenwich', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 67, 84, 1, 'Porte de Vanves', '51.442192', '-0.043778', 12, 1, '76,77,78,79,80,81,82', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Check-in time?\",\"content\":\"As a rough guide, the check-in time is after 12 a.m. Let us know your arrival time in case you schedule and early check in we\\u2018ll do our best to have your room available.\"},{\"title\":\"Check-out time?\",\"content\":\"As a rough guide, the check-out time is before 12pm. If you plan a late check out kindly let us know your departure time, we\\u2019ll our best to satisfy your needs.\"},{\"title\":\"Is Reception open 24 hours?\",\"content\":\"Yes, Reception service is available 24 hours.\"},{\"title\":\"Which languages are spoken at Reception?\",\"content\":\"Italian, English, French, German and Spanish.\"},{\"title\":\"Can I leave my luggage?\",\"content\":\"Yes, we can look after your luggage. If at check in your room is not ready yet or in case of early check out after .We will store your luggage free of charge on your check-in and check-out days.\"},{\"title\":\"Internet connection?\",\"content\":\"A wireless internet connection is available throughout the hotel.\\r\\n\\r\\nThe guest rooms feature hi-speed web connectivity (both wireless and cabled).\"}]', 220.00, 0.00, 0, 0, 0, 10, 3, 4, 168, 1, '[{\"name\":\"Lawn garden\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Clearning\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 'publish', 1, 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4.8, NULL, NULL, NULL, NULL, NULL, NULL), (6, 'THE MEATPACKING SUITES', 'the-meatpacking-suites', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including V<NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 68, 83, 1, '<NAME>', '51.475135', '0.003592', 12, 0, '76,77,78,79,80,81,82', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Check-in time?\",\"content\":\"As a rough guide, the check-in time is after 12 a.m. Let us know your arrival time in case you schedule and early check in we\\u2018ll do our best to have your room available.\"},{\"title\":\"Check-out time?\",\"content\":\"As a rough guide, the check-out time is before 12pm. If you plan a late check out kindly let us know your departure time, we\\u2019ll our best to satisfy your needs.\"},{\"title\":\"Is Reception open 24 hours?\",\"content\":\"Yes, Reception service is available 24 hours.\"},{\"title\":\"Which languages are spoken at Reception?\",\"content\":\"Italian, English, French, German and Spanish.\"},{\"title\":\"Can I leave my luggage?\",\"content\":\"Yes, we can look after your luggage. If at check in your room is not ready yet or in case of early check out after .We will store your luggage free of charge on your check-in and check-out days.\"},{\"title\":\"Internet connection?\",\"content\":\"A wireless internet connection is available throughout the hotel.\\r\\n\\r\\nThe guest rooms feature hi-speed web connectivity (both wireless and cabled).\"}]', 320.00, 0.00, 1, 0, 0, 6, 7, 6, 104, 1, '[{\"name\":\"Lawn garden\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Clearning\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 'publish', 1, 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4.3, NULL, NULL, NULL, NULL, NULL, NULL), (7, 'EAST VILLAGE', 'east-village', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 69, 83, 1, '<NAME>', '51.524292', '-0.022489', 12, 0, '76,77,78,79,80,81,82', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Check-in time?\",\"content\":\"As a rough guide, the check-in time is after 12 a.m. Let us know your arrival time in case you schedule and early check in we\\u2018ll do our best to have your room available.\"},{\"title\":\"Check-out time?\",\"content\":\"As a rough guide, the check-out time is before 12pm. If you plan a late check out kindly let us know your departure time, we\\u2019ll our best to satisfy your needs.\"},{\"title\":\"Is Reception open 24 hours?\",\"content\":\"Yes, Reception service is available 24 hours.\"},{\"title\":\"Which languages are spoken at Reception?\",\"content\":\"Italian, English, French, German and Spanish.\"},{\"title\":\"Can I leave my luggage?\",\"content\":\"Yes, we can look after your luggage. If at check in your room is not ready yet or in case of early check out after .We will store your luggage free of charge on your check-in and check-out days.\"},{\"title\":\"Internet connection?\",\"content\":\"A wireless internet connection is available throughout the hotel.\\r\\n\\r\\nThe guest rooms feature hi-speed web connectivity (both wireless and cabled).\"}]', 300.00, 260.00, 0, 0, 0, 10, 5, 5, 129, 1, '[{\"name\":\"Lawn garden\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Clearning\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 'publish', 1, 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4.8, NULL, NULL, NULL, NULL, NULL, NULL), (8, 'PARIS GREENWICH VILLA', 'paris-greenwich-villa', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 70, 83, 1, 'Porte de Vanves', '51.556749', '-0.091124', 12, 0, '76,77,78,79,80,81,82', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Check-in time?\",\"content\":\"As a rough guide, the check-in time is after 12 a.m. Let us know your arrival time in case you schedule and early check in we\\u2018ll do our best to have your room available.\"},{\"title\":\"Check-out time?\",\"content\":\"As a rough guide, the check-out time is before 12pm. If you plan a late check out kindly let us know your departure time, we\\u2019ll our best to satisfy your needs.\"},{\"title\":\"Is Reception open 24 hours?\",\"content\":\"Yes, Reception service is available 24 hours.\"},{\"title\":\"Which languages are spoken at Reception?\",\"content\":\"Italian, English, French, German and Spanish.\"},{\"title\":\"Can I leave my luggage?\",\"content\":\"Yes, we can look after your luggage. If at check in your room is not ready yet or in case of early check out after .We will store your luggage free of charge on your check-in and check-out days.\"},{\"title\":\"Internet connection?\",\"content\":\"A wireless internet connection is available throughout the hotel.\\r\\n\\r\\nThe guest rooms feature hi-speed web connectivity (both wireless and cabled).\"}]', 500.00, 0.00, 0, 0, 0, 5, 10, 8, 140, 1, '[{\"name\":\"Lawn garden\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Clearning\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 'publish', 1, 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4.7, NULL, NULL, NULL, NULL, NULL, NULL), (9, 'LUXURY SINGLE', 'luxury-single', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 71, 84, 1, 'Porte de Vanves', '51.569555', '0.012563', 12, 1, '76,77,78,79,80,81,82', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Check-in time?\",\"content\":\"As a rough guide, the check-in time is after 12 a.m. Let us know your arrival time in case you schedule and early check in we\\u2018ll do our best to have your room available.\"},{\"title\":\"Check-out time?\",\"content\":\"As a rough guide, the check-out time is before 12pm. If you plan a late check out kindly let us know your departure time, we\\u2019ll our best to satisfy your needs.\"},{\"title\":\"Is Reception open 24 hours?\",\"content\":\"Yes, Reception service is available 24 hours.\"},{\"title\":\"Which languages are spoken at Reception?\",\"content\":\"Italian, English, French, German and Spanish.\"},{\"title\":\"Can I leave my luggage?\",\"content\":\"Yes, we can look after your luggage. If at check in your room is not ready yet or in case of early check out after .We will store your luggage free of charge on your check-in and check-out days.\"},{\"title\":\"Internet connection?\",\"content\":\"A wireless internet connection is available throughout the hotel.\\r\\n\\r\\nThe guest rooms feature hi-speed web connectivity (both wireless and cabled).\"}]', 400.00, 350.00, 1, 0, 0, 10, 7, 2, 149, 1, '[{\"name\":\"Lawn garden\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Clearning\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 'publish', 1, 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4.5, NULL, NULL, NULL, NULL, NULL, NULL), (10, 'LILY DALE VILLAGE', 'lily-dale-village', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 72, 83, 1, 'Porte de Vanves', '51.517883', '-0.134314', 12, 1, '76,77,78,79,80,81,82', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Check-in time?\",\"content\":\"As a rough guide, the check-in time is after 12 a.m. Let us know your arrival time in case you schedule and early check in we\\u2018ll do our best to have your room available.\"},{\"title\":\"Check-out time?\",\"content\":\"As a rough guide, the check-out time is before 12pm. If you plan a late check out kindly let us know your departure time, we\\u2019ll our best to satisfy your needs.\"},{\"title\":\"Is Reception open 24 hours?\",\"content\":\"Yes, Reception service is available 24 hours.\"},{\"title\":\"Which languages are spoken at Reception?\",\"content\":\"Italian, English, French, German and Spanish.\"},{\"title\":\"Can I leave my luggage?\",\"content\":\"Yes, we can look after your luggage. If at check in your room is not ready yet or in case of early check out after .We will store your luggage free of charge on your check-in and check-out days.\"},{\"title\":\"Internet connection?\",\"content\":\"A wireless internet connection is available throughout the hotel.\\r\\n\\r\\nThe guest rooms feature hi-speed web connectivity (both wireless and cabled).\"}]', 250.00, 0.00, 1, 0, 0, 7, 7, 9, 187, 1, '[{\"name\":\"Lawn garden\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Clearning\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 'publish', 1, 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4.5, NULL, NULL, NULL, NULL, NULL, NULL), (11, 'STAY GREENWICH VILLAGE', 'stay-greenwich-village', '<p>Libero sem vitae sed donec conubia integer nisi integer rhoncus imperdiet orci odio libero est integer a integer tincidunt sollicitudin blandit fusce nibh leo vulputate lobortis egestas dapibus faucibus metus conubia maecenas cras potenti cum hac arcu rhoncus nullam eros dictum torquent integer cursus bibendum sem sociis molestie tellus purus</p><p>Quam fusce convallis ipsum malesuada amet velit aliquam urna nullam vehicula fermentum id morbi dis magnis porta sagittis euismod etiam</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 73, 84, 1, 'Porte de Vanves', '51.514892', '-0.176181', 12, 0, '76,77,78,79,80,81,82', 'https://www.youtube.com/watch?v=UfEiKK-iX70', '[{\"title\":\"Check-in time?\",\"content\":\"As a rough guide, the check-in time is after 12 a.m. Let us know your arrival time in case you schedule and early check in we\\u2018ll do our best to have your room available.\"},{\"title\":\"Check-out time?\",\"content\":\"As a rough guide, the check-out time is before 12pm. If you plan a late check out kindly let us know your departure time, we\\u2019ll our best to satisfy your needs.\"},{\"title\":\"Is Reception open 24 hours?\",\"content\":\"Yes, Reception service is available 24 hours.\"},{\"title\":\"Which languages are spoken at Reception?\",\"content\":\"Italian, English, French, German and Spanish.\"},{\"title\":\"Can I leave my luggage?\",\"content\":\"Yes, we can look after your luggage. If at check in your room is not ready yet or in case of early check out after .We will store your luggage free of charge on your check-in and check-out days.\"},{\"title\":\"Internet connection?\",\"content\":\"A wireless internet connection is available throughout the hotel.\\r\\n\\r\\nThe guest rooms feature hi-speed web connectivity (both wireless and cabled).\"}]', 300.00, 150.00, 0, 0, 0, 7, 7, 3, 163, 1, '[{\"name\":\"Lawn garden\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Clearning\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Breakfasts\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, 'publish', 1, 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', 4.5, NULL, NULL, NULL, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_space_dates` -- CREATE TABLE `bravo_space_dates` ( `id` bigint(20) UNSIGNED NOT NULL, `target_id` bigint(20) DEFAULT NULL, `start_date` timestamp NULL DEFAULT NULL, `end_date` timestamp NULL DEFAULT NULL, `price` decimal(12,2) DEFAULT NULL, `max_guests` tinyint(4) DEFAULT NULL, `active` tinyint(4) DEFAULT 0, `note_to_customer` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `note_to_admin` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_instant` tinyint(4) DEFAULT 0, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_space_term` -- CREATE TABLE `bravo_space_term` ( `id` bigint(20) UNSIGNED NOT NULL, `term_id` int(11) DEFAULT NULL, `target_id` int(11) DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_space_term` -- INSERT INTO `bravo_space_term` (`id`, `term_id`, `target_id`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1, 28, 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (2, 30, 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (3, 31, 1, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (4, 28, 2, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (5, 29, 2, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (6, 30, 2, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (7, 28, 3, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (8, 30, 3, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (9, 31, 3, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (10, 28, 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (11, 30, 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (12, 31, 4, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (13, 27, 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (14, 28, 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (15, 29, 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (16, 31, 5, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (17, 26, 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (18, 27, 6, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (19, 26, 7, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (20, 27, 7, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (21, 28, 7, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (22, 29, 7, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (23, 30, 7, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (24, 26, 8, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (25, 28, 8, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (26, 26, 9, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (27, 27, 9, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (28, 28, 9, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (29, 29, 9, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (30, 31, 9, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (31, 27, 10, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (32, 29, 10, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (33, 31, 10, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (34, 26, 11, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (35, 28, 11, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (36, 29, 11, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (37, 30, 11, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'), (38, 31, 11, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34'); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_space_translations` -- CREATE TABLE `bravo_space_translations` ( `id` bigint(20) UNSIGNED NOT NULL, `origin_id` int(10) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `faqs` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `surrounding` text COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_terms` -- CREATE TABLE `bravo_terms` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attr_id` int(11) DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `origin_id` bigint(20) DEFAULT NULL, `lang` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `image_id` int(11) DEFAULT NULL, `icon` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_terms` -- INSERT INTO `bravo_terms` (`id`, `name`, `content`, `attr_id`, `slug`, `create_user`, `update_user`, `origin_id`, `lang`, `created_at`, `updated_at`, `deleted_at`, `image_id`, `icon`) VALUES (1, 'Cultural', NULL, 1, 'cultural', NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL, NULL), (2, 'Nature & Adventure', NULL, 1, 'nature-adventure', NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL, NULL), (3, 'Marine', NULL, 1, 'marine', NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL, NULL), (4, 'Independent', NULL, 1, 'independent', NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL, NULL), (5, 'Activities', NULL, 1, 'activities', NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL, NULL), (6, 'Festival & Events', NULL, 1, 'festival-events', NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL, NULL), (7, 'Special Interest', NULL, 1, 'special-interest', NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL, NULL), (8, 'Wifi', NULL, 2, 'wifi', NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL, NULL), (9, 'Gymnasium', NULL, 2, 'gymnasium', NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL, NULL), (10, 'Mountain Bike', NULL, 2, 'mountain-bike', NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL, NULL), (11, 'Satellite Office', NULL, 2, 'satellite-office', NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL, NULL), (12, 'Staff Lounge', NULL, 2, 'staff-lounge', NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL, NULL), (13, 'Golf Cages', NULL, 2, 'golf-cages', NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL, NULL), (14, 'Aerobics Room', NULL, 2, 'aerobics-room', NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL, NULL), (15, 'Auditorium', NULL, 3, 'auditorium', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (16, 'Bar', NULL, 3, 'bar', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (17, 'Cafe', NULL, 3, 'cafe', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (18, 'Ballroom', NULL, 3, 'ballroom', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (19, 'Dance Studio', NULL, 3, 'dance-studio', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (20, 'Office', NULL, 3, 'office', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (21, 'Party Hall', NULL, 3, 'party-hall', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (22, 'Recording Studio', NULL, 3, 'recording-studio', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (23, 'Yoga Studio', NULL, 3, 'yoga-studio', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (24, 'Villa', NULL, 3, 'villa', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (25, 'Warehouse', NULL, 3, 'warehouse', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (26, 'Air Conditioning', NULL, 4, 'air-conditioning', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, 86, NULL), (27, 'Breakfast', NULL, 4, 'breakfast', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, 87, NULL), (28, 'Kitchen', NULL, 4, 'kitchen', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, 88, NULL), (29, 'Parking', NULL, 4, 'parking', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, 89, NULL), (30, 'Pool', NULL, 4, 'pool', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, 90, NULL), (31, 'Wi-Fi Internet', NULL, 4, 'wi-fi-internet', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, 91, NULL), (32, 'Apartments', NULL, 5, 'apartments', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (33, 'Hotels', NULL, 5, 'hotels', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (34, 'Homestays', NULL, 5, 'homestays', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (35, 'Villas', NULL, 5, 'villas', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (36, 'Boats', NULL, 5, 'boats', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (37, 'Motels', NULL, 5, 'motels', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (38, 'Resorts', NULL, 5, 'resorts', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (39, 'Lodges', NULL, 5, 'lodges', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (40, 'Holiday homes', NULL, 5, 'holiday-homes', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (41, 'Cruises', NULL, 5, 'cruises', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (42, 'Wake-up call', NULL, 6, 'wake-up-call', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, 'icofont-wall-clock'), (43, 'Car hire', NULL, 6, 'car-hire', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, 'icofont-car-alt-3'), (44, 'Bicycle hire', NULL, 6, 'bicycle-hire', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, 'icofont-bicycle-alt-2'), (45, 'Flat Tv', NULL, 6, 'flat-tv', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, 'icofont-imac'), (46, 'Laundry and dry cleaning', NULL, 6, 'laundry-and-dry-cleaning', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, 'icofont-recycle-alt'), (47, 'Internet – Wifi', NULL, 6, 'internet-wifi', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, 'icofont-wifi-alt'), (48, 'Coffee and tea', NULL, 6, 'coffee-and-tea', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, 'icofont-tea'), (49, 'Havana Lobby bar', NULL, 7, 'havana-lobby-bar', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (50, 'Fiesta Restaurant', NULL, 7, 'fiesta-restaurant', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (51, 'Hotel transport services', NULL, 7, 'hotel-transport-services', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (52, 'Free luggage deposit', NULL, 7, 'free-luggage-deposit', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (53, 'Laundry Services', NULL, 7, 'laundry-services', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (54, 'Pets welcome', NULL, 7, 'pets-welcome', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (55, 'Tickets', NULL, 7, 'tickets', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, NULL), (56, 'Wake-up call', NULL, 8, 'wake-up-call-1', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, 'icofont-wall-clock'), (57, 'Flat Tv', NULL, 8, 'flat-tv-1', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, 'icofont-imac'), (58, 'Laundry and dry cleaning', NULL, 8, 'laundry-and-dry-cleaning-1', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, 'icofont-recycle-alt'), (59, 'Internet – Wifi', NULL, 8, 'internet-wifi-1', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, 'icofont-wifi-alt'), (60, 'Coffee and tea', NULL, 8, 'coffee-and-tea-1', NULL, NULL, NULL, NULL, '2021-08-10 07:39:34', '2021-08-10 07:39:34', NULL, NULL, 'icofont-tea'), (61, 'Convertibles', NULL, 9, 'convertibles', NULL, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, 123, NULL), (62, 'Coupes', NULL, 9, 'coupes', NULL, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, 124, NULL), (63, 'Hatchbacks', NULL, 9, 'hatchbacks', NULL, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, 125, NULL), (64, 'Minivans', NULL, 9, 'minivans', NULL, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, 126, NULL), (65, 'Sedan', NULL, 9, 'sedan', NULL, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, 127, NULL), (66, 'SUVs', NULL, 9, 'suvs', NULL, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, 128, NULL), (67, 'Trucks', NULL, 9, 'trucks', NULL, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, 129, NULL), (68, 'Wagons', NULL, 9, 'wagons', NULL, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, 130, NULL), (69, 'Airbag', NULL, 10, 'airbag', NULL, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, 136, NULL), (70, 'FM Radio', NULL, 10, 'fm-radio', NULL, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, 137, NULL), (71, 'Power Windows', NULL, 10, 'power-windows', NULL, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, 141, NULL), (72, 'Sensor', NULL, 10, 'sensor', NULL, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, 138, NULL), (73, 'Speed Km', NULL, 10, 'speed-km', NULL, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, 139, NULL), (74, 'Steering Wheel', NULL, 10, 'steering-wheel', NULL, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, 140, NULL), (75, 'Field Day', NULL, 11, 'field-day', NULL, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, NULL), (76, 'Glastonbury', NULL, 11, 'glastonbury', NULL, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, NULL), (77, 'Green Man', NULL, 11, 'green-man', NULL, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, NULL), (78, 'Latitude', NULL, 11, 'latitude', NULL, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, NULL), (79, 'Boomtown', NULL, 11, 'boomtown', NULL, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, NULL), (80, 'Wilderness', NULL, 11, 'wilderness', NULL, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, NULL), (81, 'Exit Festival', NULL, 11, 'exit-festival', NULL, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, NULL), (82, 'Primavera Sound', NULL, 11, 'primavera-sound', NULL, NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35', NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_terms_translations` -- CREATE TABLE `bravo_terms_translations` ( `id` bigint(20) UNSIGNED NOT NULL, `origin_id` bigint(20) DEFAULT NULL, `locale` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_tours` -- CREATE TABLE `bravo_tours` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) CHARACTER SET utf8 NOT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image_id` int(11) DEFAULT NULL, `banner_image_id` int(11) DEFAULT NULL, `short_desc` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `category_id` int(11) DEFAULT NULL, `location_id` int(11) DEFAULT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `map_lat` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `map_lng` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `map_zoom` int(11) DEFAULT NULL, `is_featured` tinyint(4) DEFAULT NULL, `gallery` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(12,2) DEFAULT NULL, `sale_price` decimal(12,2) DEFAULT NULL, `duration` int(11) DEFAULT NULL, `min_people` int(11) DEFAULT NULL, `max_people` int(11) DEFAULT NULL, `faqs` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `publish_date` datetime DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `origin_id` bigint(20) DEFAULT NULL, `lang` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `default_state` tinyint(4) DEFAULT 1, `include` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `exclude` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `itinerary` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `review_score` decimal(2,1) DEFAULT NULL, `ical_import_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `enable_service_fee` tinyint(4) DEFAULT NULL, `service_fee` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `surrounding` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_day_before_booking` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_tours` -- INSERT INTO `bravo_tours` (`id`, `title`, `slug`, `content`, `image_id`, `banner_image_id`, `short_desc`, `category_id`, `location_id`, `address`, `map_lat`, `map_lng`, `map_zoom`, `is_featured`, `gallery`, `video`, `price`, `sale_price`, `duration`, `min_people`, `max_people`, `faqs`, `status`, `publish_date`, `create_user`, `update_user`, `deleted_at`, `origin_id`, `lang`, `created_at`, `updated_at`, `default_state`, `include`, `exclude`, `itinerary`, `review_score`, `ical_import_url`, `enable_service_fee`, `service_fee`, `surrounding`, `min_day_before_booking`) VALUES (1, 'American Parks Trail end Rapid City', 'american-parks-trail', '<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 21, 44, 'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 4, 1, 'Arrondissement de Paris', '48.852754', '2.339155', 12, 0, '37,38,39,40,41,42,43', 'https://www.youtube.com/watch?v=UfEiKK-iX70', 2000.00, 497.00, 6, 1, 14, '[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]', 'publish', NULL, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 1, '[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]', '[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]', '[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]', 4.7, NULL, NULL, NULL, NULL, NULL), (2, 'New York: Museum of Modern Art', 'new-york-museum-of-modern-art', '<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 22, 45, 'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 2, 1, '<NAME>', '48.853917', '2.307199', 12, 1, '37,38,39,40,41,42,43', 'https://www.youtube.com/watch?v=UfEiKK-iX70', 900.00, 577.00, 1, 1, 17, '[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]', 'publish', NULL, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 1, '[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]', '[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]', '[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]', 4.7, NULL, NULL, NULL, NULL, NULL), (3, 'Los Angeles to San Francisco Express ', 'los-angeles-to-san-francisco-express', '<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 23, 46, 'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 1, 1, 'Petit-Montrouge', '48.884900', '2.346377', 12, 1, '37,38,39,40,41,42,43', 'https://www.youtube.com/watch?v=UfEiKK-iX70', 1500.00, 177.00, 9, 1, 10, '[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]', 'publish', NULL, 4, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', 1, '[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]', '[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]', '[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]', 4.0, NULL, NULL, NULL, NULL, NULL), (4, 'Paris Vacation Travel ', 'paris-vacation-travel', '<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 24, 47, 'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 2, 2, 'New York', '40.707891', '-74.008825', 12, 1, '37,38,39,40,41,42,43', 'https://www.youtube.com/watch?v=UfEiKK-iX70', 850.00, 330.00, 8, 1, 18, '[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]', 'publish', NULL, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:34', 1, '[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]', '[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]', '[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]', 4.5, NULL, NULL, NULL, NULL, NULL), (5, 'Southwest States (Ex Los Angeles) ', 'southwest-states', '<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including V<NAME> Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 25, 48, 'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 3, 2, 'Regal Cinemas Battery Park 11', '40.714578', '-73.983888', 12, 0, '37,38,39,40,41,42,43', 'https://www.youtube.com/watch?v=UfEiKK-iX70', 1900.00, 1277.00, 1, 1, 11, '[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]', 'publish', NULL, 4, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:34', 1, '[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]', '[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]', '[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]', 4.7, NULL, NULL, NULL, NULL, NULL), (6, 'Eastern Discovery (Start New Orleans)', 'eastern-discovery-start-new-orleans', '<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 26, 49, 'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 3, 2, 'Prince St Station', '40.720161', '-74.009628', 12, 1, '37,38,39,40,41,42,43', 'https://www.youtube.com/watch?v=UfEiKK-iX70', 2100.00, 231.00, 5, 1, 16, '[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]', 'publish', NULL, 4, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:34', 1, '[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]', '[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]', '[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]', 4.7, NULL, NULL, NULL, NULL, NULL), (7, 'Eastern Discovery', 'eastern-discovery', '<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 27, 50, 'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 4, 2, 'Pier 36 New York', '40.708581', '-73.998817', 12, 0, '37,38,39,40,41,42,43', 'https://www.youtube.com/watch?v=UfEiKK-iX70', 2100.00, 1607.00, 6, 1, 17, '[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]', 'publish', NULL, 4, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:34', 1, '[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]', '[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]', '[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]', 4.8, NULL, NULL, NULL, NULL, NULL), (8, 'Pure Luxe in Punta Mita', 'pure-luxe-in-punta-mita', '<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 28, 51, 'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 3, 3, 'Trimmer Springs Rd, Sanger', '36.822484', '-119.365266', 12, 0, '37,38,39,40,41,42,43', 'https://www.youtube.com/watch?v=UfEiKK-iX70', 2100.00, 364.00, 3, 1, 13, '[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]', 'publish', NULL, 5, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:34', 1, '[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]', '[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]', '[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]', 4.3, NULL, NULL, NULL, NULL, NULL), (9, 'Tastes and Sounds of the South 2019', 'tastes-and-sounds-of-the-south-2019', '<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including V<NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 29, 52, 'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 2, 4, 'United States', '37.040023', '-95.643144', 12, 0, '37,38,39,40,41,42,43', 'https://www.youtube.com/watch?v=UfEiKK-iX70', 2100.00, 532.00, 6, 1, 19, '[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]', 'publish', NULL, 6, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:34', 1, '[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]', '[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]', '[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]', 4.7, NULL, NULL, NULL, NULL, NULL), (10, 'Giverny and Versailles Small Group Day Trip', 'giverny-and-versailles-small-group-day-trip', '<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 30, 53, 'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 4, 5, 'Washington, DC, USA', '34.049345', '-118.248479', 12, 0, '37,38,39,40,41,42,43', 'https://www.youtube.com/watch?v=UfEiKK-iX70', 2100.00, 624.00, 7, 1, 11, '[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]', 'publish', NULL, 6, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:34', 1, '[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]', '[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]', '[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]', 4.3, NULL, NULL, NULL, NULL, NULL), (11, 'Trip of New York – Discover America', 'trip-of-new-york-discover-america', '<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 31, 54, 'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 3, 6, 'New Jersey', '40.035329', '-74.417227', 12, 0, '37,38,39,40,41,42,43', 'https://www.youtube.com/watch?v=UfEiKK-iX70', 2100.00, 1078.00, 8, 1, 16, '[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]', 'publish', NULL, 5, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:34', 1, '[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]', '[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]', '[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]', 5.0, NULL, NULL, NULL, NULL, NULL), (12, 'Segway Tour of Washington, D.C. Highlights', 'segway-tour-of-washington-dc-highlights', '<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including V<NAME> Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 32, 55, 'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 4, 7, '<NAME>', '37.782668', '-122.425058', 12, 0, '37,38,39,40,41,42,43', 'https://www.youtube.com/watch?v=UfEiKK-iX70', 2100.00, 1498.00, 7, 1, 12, '[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]', 'publish', NULL, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:34', 1, '[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]', '[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]', '[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]', 4.0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `bravo_tours` (`id`, `title`, `slug`, `content`, `image_id`, `banner_image_id`, `short_desc`, `category_id`, `location_id`, `address`, `map_lat`, `map_lng`, `map_zoom`, `is_featured`, `gallery`, `video`, `price`, `sale_price`, `duration`, `min_people`, `max_people`, `faqs`, `status`, `publish_date`, `create_user`, `update_user`, `deleted_at`, `origin_id`, `lang`, `created_at`, `updated_at`, `default_state`, `include`, `exclude`, `itinerary`, `review_score`, `ical_import_url`, `enable_service_fee`, `service_fee`, `surrounding`, `min_day_before_booking`) VALUES (13, 'Hollywood Sign Small Group Tour in Luxury Van', 'hollywood-sign-small-group-tour-in-luxury-van', '<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including Vincent van Gogh\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 33, 56, 'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 2, 8, 'Virginia', '37.445688', '-78.673668', 12, 0, '37,38,39,40,41,42,43', 'https://www.youtube.com/watch?v=UfEiKK-iX70', 2100.00, 374.00, 9, 1, 16, '[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]', 'publish', NULL, 5, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:34', 1, '[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]', '[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]', '[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]', 4.5, NULL, NULL, NULL, NULL, NULL), (14, 'San Francisco Express Never Ceases', 'san-francisco-express', '<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 34, 57, 'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 4, 7, 'Comprehensive Cancer Center', '37.757522', '-122.447984', 12, 0, '37,38,39,40,41,42,43', 'https://www.youtube.com/watch?v=UfEiKK-iX70', 2100.00, 1155.00, 1, 1, 13, '[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]', 'publish', NULL, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:34', 1, '[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]', '[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]', '[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]', 5.0, NULL, NULL, NULL, NULL, NULL), (15, 'Cannes and Antibes Night Tour', 'cannes-and-antibes-night-tour', '<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 35, 58, 'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 2, 1, 'UCSF Helen Diller Family', '36.201066', '-88.112292', 12, 0, '37,38,39,40,41,42,43', 'https://www.youtube.com/watch?v=UfEiKK-iX70', 2100.00, 1071.00, 3, 1, 15, '[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]', 'publish', NULL, 5, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:34', 1, '[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]', '[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]', '[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]', 4.4, NULL, NULL, NULL, NULL, NULL), (16, 'River Cruise Tour on the Seine', 'river-cruise-tour-on-the-seine', '<p>Start and end in San Francisco! With the in-depth cultural tour Northern California Summer 2019, you have a 8 day tour package taking you through San Francisco, USA and 9 other destinations in USA. Northern California Summer 2019 includes accommodation as well as an expert guide, meals, transport and more.</p><h4>HIGHLIGHTS</h4><ul><li>Visit the Museum of Modern Art in Manhattan</li><li>See amazing works of contemporary art, including <NAME>\'s The Starry Night</li><li>Check out Campbell\'s Soup Cans by Warhol and The Dance (I) by Matisse</li><li>Behold masterpieces by Gauguin, Dali, Picasso, and Pollock</li><li>Enjoy free audio guides available in English, French, German, Italian, Spanish, Portuguese</li></ul>', 36, 59, 'From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of \'The City\'. Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 4, 1, 'Nevada, US', '36.401066', '-88.312292', 12, 0, '37,38,39,40,41,42,43', 'https://www.youtube.com/watch?v=UfEiKK-iX70', 2100.00, 960.00, 8, 1, 11, '[{\"title\":\"When and where does the tour end?\",\"content\":\"Your tour will conclude in San Francisco on Day 8 of the trip. There are no activities planned for this day so you\'re free to depart at any time. We highly recommend booking post-accommodation to give yourself time to fully experience the wonders of this iconic city!\"},{\"title\":\"When and where does the tour start?\",\"content\":\"Day 1 of this tour is an arrivals day, which gives you a chance to settle into your hotel and explore Los Angeles. The only planned activity for this day is an evening welcome meeting at 7pm, where you can get to know your guides and fellow travellers. Please be aware that the meeting point is subject to change until your final documents are released.\"},{\"title\":\"Do you arrange airport transfers?\",\"content\":\"Airport transfers are not included in the price of this tour, however you can book for an arrival transfer in advance. In this case a tour operator representative will be at the airport to greet you. To arrange this please contact our customer service team once you have a confirmed booking.\"},{\"title\":\"What is the age range\",\"content\":\"This tour has an age range of 12-70 years old, this means children under the age of 12 will not be eligible to participate in this tour. However, if you are over 70 years please contact us as you may be eligible to join the tour if you fill out G Adventures self-assessment form.\"}]', 'publish', NULL, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:34', 1, '[{\"title\":\"Specialized bilingual guide\"},{\"title\":\"Private Transport\"},{\"title\":\"Entrance fees (Cable and car and Moon Valley)\"},{\"title\":\"Box lunch water, banana apple and chocolate\"}]', '[{\"title\":\"Additional Services\"},{\"title\":\"Insurance\"},{\"title\":\"Drink\"},{\"title\":\"Tickets\"}]', '[{\"image_id\":\"110\",\"title\":\"Day 1\",\"desc\":\"Los Angeles\",\"content\":\"There are no activities planned until an evening welcome meeting. Additional Notes: We highly recommend booking pre-tour accommodation to fully experience this crazy city.\"},{\"image_id\":\"109\",\"title\":\"Day 2\",\"desc\":\"Lake Havasu City\",\"content\":\"Pack up the van in the morning and check out the stars on the most famous sidewalk in Hollywood on an orientation tour\"},{\"image_id\":\"108\",\"title\":\"Day 3\",\"desc\":\"Las Vegas\\/Bakersfield\",\"content\":\"Travel to one of the country\'s most rugged landscapes \\u2014 the legendary Death Valley, California. Soak in the dramatic landscape. In the afternoon, continue on to Bakersfield for the night.\"},{\"image_id\":\"107\",\"title\":\"Day 4\",\"desc\":\"San Francisco\",\"content\":\"We highly recommend booking post-accommodation to fully experience this famous city.\"}]', 4.0, NULL, NULL, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_tour_category` -- CREATE TABLE `bravo_tour_category` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `_lft` int(10) UNSIGNED NOT NULL DEFAULT 0, `_rgt` int(10) UNSIGNED NOT NULL DEFAULT 0, `parent_id` int(10) UNSIGNED DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `origin_id` bigint(20) DEFAULT NULL, `lang` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_tour_category` -- INSERT INTO `bravo_tour_category` (`id`, `name`, `content`, `slug`, `status`, `_lft`, `_rgt`, `parent_id`, `create_user`, `update_user`, `deleted_at`, `origin_id`, `lang`, `created_at`, `updated_at`) VALUES (1, 'City trips', '', 'city-trips', 'publish', 1, 2, NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (2, 'Ecotourism', '', 'ecotourism', 'publish', 3, 4, NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (3, 'Escorted tour', '', 'escorted-tour', 'publish', 5, 6, NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (4, 'Ligula', '', 'ligula', 'publish', 7, 8, NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_tour_category_translations` -- CREATE TABLE `bravo_tour_category_translations` ( `id` bigint(20) UNSIGNED NOT NULL, `origin_id` bigint(20) DEFAULT NULL, `locale` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_tour_dates` -- CREATE TABLE `bravo_tour_dates` ( `id` bigint(20) UNSIGNED NOT NULL, `target_id` bigint(20) DEFAULT NULL, `start_date` timestamp NULL DEFAULT NULL, `end_date` timestamp NULL DEFAULT NULL, `price` decimal(12,2) DEFAULT NULL, `person_types` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `max_guests` tinyint(4) DEFAULT NULL, `active` tinyint(4) DEFAULT 0, `note_to_customer` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `note_to_admin` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_instant` tinyint(4) DEFAULT 0, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_tour_meta` -- CREATE TABLE `bravo_tour_meta` ( `id` bigint(20) UNSIGNED NOT NULL, `tour_id` int(11) DEFAULT NULL, `enable_person_types` tinyint(4) DEFAULT NULL, `person_types` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `enable_extra_price` tinyint(4) DEFAULT NULL, `extra_price` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_by_people` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `enable_open_hours` tinyint(4) DEFAULT NULL, `open_hours` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_tour_meta` -- INSERT INTO `bravo_tour_meta` (`id`, `tour_id`, `enable_person_types`, `person_types`, `enable_extra_price`, `extra_price`, `discount_by_people`, `enable_open_hours`, `open_hours`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1, 1, 1, '[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]', 1, '[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL, NULL, NULL), (2, 2, 1, '[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]', 1, '[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL, NULL, NULL), (3, 3, 1, '[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]', 1, '[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL, NULL, NULL), (4, 4, 1, '[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]', 1, '[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL, NULL, NULL), (5, 5, 1, '[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]', 1, '[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL, NULL, NULL), (6, 6, 1, '[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]', 1, '[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL, NULL, NULL), (7, 7, 1, '[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]', 1, '[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL, NULL, NULL), (8, 8, 1, '[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]', 1, '[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL, NULL, NULL), (9, 9, 1, '[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]', 1, '[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL, NULL, NULL), (10, 10, 1, '[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]', 1, '[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL, NULL, NULL), (11, 11, 1, '[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]', 1, '[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL, NULL, NULL), (12, 12, 1, '[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]', 1, '[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL, NULL, NULL), (13, 13, 1, '[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]', 1, '[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL, NULL, NULL), (14, 14, 1, '[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]', 1, '[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL, NULL, NULL), (15, 15, 1, '[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]', 1, '[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL, NULL, NULL), (16, 16, 1, '[{\"name\":\"Adult\",\"desc\":\"Age 18+\",\"min\":\"1\",\"max\":\"10\",\"price\":\"1000\"},{\"name\":\"Child\",\"desc\":\"Age 6-17\",\"min\":\"0\",\"max\":\"10\",\"price\":\"300\"}]', 1, '[{\"name\":\"Clean\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_tour_term` -- CREATE TABLE `bravo_tour_term` ( `id` bigint(20) UNSIGNED NOT NULL, `term_id` int(11) DEFAULT NULL, `tour_id` int(11) DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `bravo_tour_term` -- INSERT INTO `bravo_tour_term` (`id`, `term_id`, `tour_id`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1, 1, 1, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (2, 2, 1, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (3, 4, 1, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (4, 6, 1, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (5, 1, 2, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (6, 2, 2, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (7, 4, 2, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (8, 5, 2, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (9, 6, 2, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (10, 2, 3, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (11, 3, 3, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (12, 4, 3, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (13, 5, 3, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (14, 6, 3, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (15, 7, 3, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (16, 4, 4, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (17, 6, 4, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (18, 7, 4, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (19, 1, 5, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (20, 2, 5, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (21, 3, 5, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (22, 6, 5, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (23, 7, 5, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (24, 2, 6, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (25, 3, 6, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (26, 5, 6, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (27, 6, 6, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (28, 7, 6, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (29, 1, 7, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (30, 2, 7, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (31, 3, 7, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (32, 4, 7, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (33, 5, 7, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (34, 6, 7, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (35, 1, 8, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (36, 2, 8, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (37, 3, 8, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (38, 5, 8, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (39, 6, 8, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (40, 7, 8, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (41, 2, 9, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (42, 3, 9, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (43, 5, 9, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (44, 6, 9, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (45, 1, 10, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (46, 2, 10, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (47, 3, 10, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (48, 4, 10, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (49, 5, 10, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (50, 7, 10, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (51, 1, 11, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (52, 2, 11, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (53, 5, 11, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (54, 7, 11, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (55, 1, 12, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (56, 2, 12, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (57, 3, 12, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (58, 4, 12, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (59, 5, 12, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (60, 2, 13, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (61, 4, 13, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (62, 5, 13, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (63, 6, 13, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (64, 2, 14, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (65, 3, 14, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (66, 4, 14, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (67, 5, 14, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (68, 6, 14, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (69, 7, 14, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (70, 2, 15, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (71, 3, 15, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (72, 6, 15, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (73, 1, 16, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (74, 2, 16, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (75, 4, 16, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (76, 8, 1, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (77, 9, 1, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (78, 10, 1, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (79, 11, 1, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (80, 13, 1, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (81, 14, 1, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (82, 8, 2, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (83, 9, 2, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (84, 11, 2, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (85, 12, 2, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (86, 13, 2, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (87, 14, 2, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (88, 8, 3, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (89, 9, 3, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (90, 10, 3, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (91, 11, 3, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (92, 12, 3, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (93, 8, 4, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (94, 9, 4, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (95, 12, 4, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (96, 13, 4, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (97, 8, 5, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (98, 9, 5, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (99, 11, 5, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (100, 12, 5, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (101, 14, 5, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (102, 8, 6, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (103, 10, 6, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (104, 11, 6, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (105, 12, 6, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (106, 13, 6, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (107, 14, 6, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (108, 9, 7, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (109, 10, 7, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (110, 11, 7, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (111, 12, 7, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (112, 14, 7, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (113, 8, 8, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (114, 12, 8, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (115, 13, 8, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (116, 8, 9, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (117, 9, 9, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (118, 13, 9, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (119, 14, 9, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (120, 8, 10, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (121, 9, 10, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (122, 10, 10, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (123, 11, 10, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (124, 12, 10, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (125, 14, 10, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (126, 8, 11, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (127, 11, 11, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (128, 12, 11, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (129, 14, 11, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (130, 8, 12, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (131, 11, 12, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (132, 8, 13, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (133, 10, 13, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (134, 11, 13, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (135, 13, 13, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (136, 8, 14, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (137, 9, 14, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (138, 10, 14, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (139, 11, 14, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (140, 14, 14, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (141, 9, 15, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (142, 10, 15, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (143, 12, 15, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (144, 13, 15, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (145, 14, 15, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (146, 8, 16, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (147, 9, 16, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (148, 10, 16, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (149, 11, 16, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (150, 14, 16, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'); -- -------------------------------------------------------- -- -- Struktur dari tabel `bravo_tour_translations` -- CREATE TABLE `bravo_tour_translations` ( `id` bigint(20) UNSIGNED NOT NULL, `origin_id` bigint(20) DEFAULT NULL, `locale` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) CHARACTER SET utf8 NOT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `short_desc` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `faqs` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `include` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `exclude` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `itinerary` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `surrounding` text COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `cart` -- CREATE TABLE `cart` ( `id` int(11) NOT NULL, `id_user` int(11) NOT NULL, `id_product` int(11) NOT NULL, `qty` int(11) NOT NULL, `subtotal` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Struktur dari tabel `category` -- CREATE TABLE `category` ( `id` int(11) NOT NULL, `slug` varchar(255) NOT NULL, `title` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data untuk tabel `category` -- INSERT INTO `category` (`id`, `slug`, `title`) VALUES (1, 'motherboard', 'Motherboard'), (2, 'processor', 'Processor'), (3, 'ram', 'RAM'); -- -------------------------------------------------------- -- -- Struktur dari tabel `core_inbox` -- CREATE TABLE `core_inbox` ( `id` bigint(20) UNSIGNED NOT NULL, `from_user` bigint(20) DEFAULT NULL, `to_user` bigint(20) DEFAULT NULL, `object_id` bigint(20) DEFAULT NULL, `object_model` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` tinyint(4) DEFAULT 0, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `core_inbox_messages` -- CREATE TABLE `core_inbox_messages` ( `id` bigint(20) UNSIGNED NOT NULL, `inbox_id` bigint(20) DEFAULT NULL, `from_user` bigint(20) DEFAULT NULL, `to_user` bigint(20) DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` tinyint(4) DEFAULT 0, `is_read` tinyint(4) DEFAULT 0, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `core_languages` -- CREATE TABLE `core_languages` ( `id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `flag` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `last_build_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `core_languages` -- INSERT INTO `core_languages` (`id`, `locale`, `name`, `flag`, `status`, `create_user`, `update_user`, `last_build_at`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 'en', 'English', 'gb', 'publish', 1, NULL, NULL, NULL, '2021-08-10 07:39:32', '2021-08-10 07:39:32'), (2, 'ja', 'Japanese', 'jp', 'publish', 1, NULL, NULL, NULL, '2021-08-10 07:39:32', '2021-08-10 07:39:32'), (3, 'egy', 'Egyptian', 'eg', 'publish', 1, NULL, NULL, NULL, '2021-08-10 07:39:32', '2021-08-10 07:39:32'); -- -------------------------------------------------------- -- -- Struktur dari tabel `core_menus` -- CREATE TABLE `core_menus` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `items` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `origin_id` bigint(20) DEFAULT NULL, `lang` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `core_menus` -- INSERT INTO `core_menus` (`id`, `name`, `items`, `create_user`, `update_user`, `origin_id`, `lang`, `created_at`, `updated_at`) VALUES (1, 'Main Menu', '[{\"name\":\"Home\",\"url\":\"\\/\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Home Page\",\"url\":\"\\/\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Home Page v2\",\"url\":\"\\/page\\/home-page-v2\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Home Hotel\",\"url\":\"\\/page\\/hotel\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Home Tour Agency\",\"url\":\"\\/page\\/home-tour-agency\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Home Tour\",\"url\":\"\\/page\\/tour\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Home Space\",\"url\":\"\\/page\\/space\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Home Car\",\"url\":\"\\/page\\/car\",\"item_model\":\"custom\",\"children\":[]}]},{\"name\":\"Hotel\",\"url\":\"\\/hotel\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Hotel List\",\"url\":\"\\/hotel\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Hotel Map\",\"url\":\"\\/hotel?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Hotel Detail\",\"url\":\"\\/hotel\\/parian-holiday-villas\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"Tours\",\"url\":\"\\/tour\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Tour List\",\"url\":\"\\/tour\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Tour Map\",\"url\":\"\\/tour?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Tour Detail\",\"url\":\"\\/tour\\/paris-vacation-travel\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"Space\",\"url\":\"\\/space\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Space List\",\"url\":\"\\/space\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Space Map\",\"url\":\"\\/space?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Space Detail\",\"url\":\"\\/space\\/stay-greenwich-village\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"Car\",\"url\":\"\\/car\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Car List\",\"url\":\"\\/car\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Car Map\",\"url\":\"\\/car?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Car Detail\",\"url\":\"\\/car\\/vinfast-lux-a20-plus\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"Event\",\"url\":\"\\/event\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Event List\",\"url\":\"\\/event\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Event Map\",\"url\":\"\\/event?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Event Detail\",\"url\":\"\\/event\\/aspen-glade-weddings-events\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"Pages\",\"url\":\"#\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"News List\",\"url\":\"\\/news\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"News Detail\",\"url\":\"\\/news\\/morning-in-the-northern-sea\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Location Detail\",\"url\":\"\\/location\\/paris\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Become a vendor\",\"url\":\"\\/page\\/become-a-vendor\",\"item_model\":\"custom\",\"children\":[]}]},{\"name\":\"Contact\",\"url\":\"\\/contact\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]', 1, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `core_menu_translations` -- CREATE TABLE `core_menu_translations` ( `id` bigint(20) UNSIGNED NOT NULL, `origin_id` int(10) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `items` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `core_menu_translations` -- INSERT INTO `core_menu_translations` (`id`, `origin_id`, `locale`, `items`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1, 1, 'ja', '[{\"name\":\"\\u30db\\u30fc\\u30e0\",\"url\":\"\\/ja\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"\\u30db\\u30fc\\u30e0\\u30da\\u30fc\\u30b8\",\"url\":\"\\/ja\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"\\u30db\\u30fc\\u30e0\\u30db\\u30c6\\u30eb\",\"url\":\"\\/ja\\/page\\/hotel\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"\\u30db\\u30fc\\u30e0 \\u30c4\\u30a2\\u30fc\",\"url\":\"\\/ja\\/page\\/tour\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"\\u30db\\u30fc\\u30e0\\u30b9\\u30da\\u30fc\\u30b9\",\"url\":\"\\/ja\\/page\\/space\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"\\u30db\\u30c6\\u30eb\",\"url\":\"\\/ja\\/hotel\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"\\u30db\\u30c6\\u30eb\\u4e00\\u89a7\",\"url\":\"\\/ja\\/hotel\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"\\u30db\\u30c6\\u30eb\\u306e\\u8a73\\u7d30\",\"url\":\"\\/ja\\/hotel\\/parian-holiday-villas\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"\\u30c4\\u30a2\\u30fc\",\"url\":\"\\/ja\\/tour\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"\\u30c4\\u30a2\\u30fc\\u30ea\\u30b9\\u30c8\",\"url\":\"\\/ja\\/tour\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"\\u30c4\\u30a2\\u30fc\\u30de\\u30c3\\u30d7\",\"url\":\"\\/ja\\/tour?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"\\u30c4\\u30a2\\u30fc\\u8a73\\u7d30\",\"url\":\"\\/ja\\/tour\\/paris-vacation-travel\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"\\u30b9\\u30da\\u30fc\\u30b9\",\"url\":\"\\/ja\\/space\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"\\u30b9\\u30da\\u30fc\\u30b9\\u30ea\\u30b9\\u30c8\",\"url\":\"\\/ja\\/space\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"\\u30b9\\u30da\\u30fc\\u30b9\\u306e\\u8a73\\u7d30\",\"url\":\"\\/ja\\/space\\/stay-greenwich-village\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"\\u30da\\u30fc\\u30b8\",\"url\":\"#\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"\\u30cb\\u30e5\\u30fc\\u30b9\\u4e00\\u89a7\",\"url\":\"\\/ja\\/news\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"\\u30cb\\u30e5\\u30fc\\u30b9\\u8a73\\u7d30\",\"url\":\"\\/ja\\/news\\/morning-in-the-northern-sea\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"\\u5834\\u6240\\u306e\\u8a73\\u7d30\",\"url\":\"\\/ja\\/location\\/paris\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"\\u30d9\\u30f3\\u30c0\\u30fc\\u306b\\u306a\\u308b\",\"url\":\"\\/ja\\/page\\/become-a-vendor\",\"item_model\":\"custom\",\"children\":[]}]},{\"name\":\"\\u63a5\\u89e6\",\"url\":\"\\/ja\\/contact\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]', 1, NULL, '2021-08-10 07:39:33', NULL), (2, 1, 'egy', '[{\"name\":\"Home\",\"url\":\"\\/egy\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Home Page\",\"url\":\"\\/egy\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Home Hotel\",\"url\":\"\\/egy\\/page\\/hotel\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Home Tour\",\"url\":\"\\/egy\\/page\\/tour\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Home Space\",\"url\":\"\\/egy\\/page\\/space\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Home Car\",\"url\":\"\\/egy\\/page\\/car\",\"item_model\":\"custom\",\"children\":[]}]},{\"name\":\"Hotel\",\"url\":\"\\/egy\\/hotel\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Hotel List\",\"url\":\"\\/egy\\/hotel\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Hotel Map\",\"url\":\"\\/egy\\/hotel?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Hotel Detail\",\"url\":\"\\/egy\\/hotel\\/parian-holiday-villas\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"Tours\",\"url\":\"\\/egy\\/tour\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Tour List\",\"url\":\"\\/egy\\/tour\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Tour Map\",\"url\":\"\\/egy\\/tour?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Tour Detail\",\"url\":\"\\/egy\\/tour\\/paris-vacation-travel\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"Space\",\"url\":\"\\/egy\\/space\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Space List\",\"url\":\"\\/egy\\/space\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Space Map\",\"url\":\"\\/egy\\/space?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Space Detail\",\"url\":\"\\/egy\\/space\\/stay-greenwich-village\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"Car\",\"url\":\"\\/egy\\/car\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"Car List\",\"url\":\"\\/egy\\/car\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Car Map\",\"url\":\"\\/egy\\/car?_layout=map\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Car Detail\",\"url\":\"\\/egy\\/car\\/vinfast-lux-a20-plus\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]},{\"name\":\"Pages\",\"url\":\"#\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[{\"name\":\"News List\",\"url\":\"\\/egy\\/news\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"News Detail\",\"url\":\"\\/egy\\/news\\/morning-in-the-northern-sea\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]},{\"name\":\"Location Detail\",\"url\":\"\\/egy\\/location\\/paris\",\"item_model\":\"custom\",\"children\":[]},{\"name\":\"Become a vendor\",\"url\":\"\\/egy\\/page\\/become-a-vendor\",\"item_model\":\"custom\",\"children\":[]}]},{\"name\":\"Contact\",\"url\":\"\\/egy\\/contact\",\"item_model\":\"custom\",\"model_name\":\"Custom\",\"children\":[]}]', 1, NULL, '2021-08-10 07:39:33', NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `core_model_has_permissions` -- CREATE TABLE `core_model_has_permissions` ( `permission_id` int(10) UNSIGNED NOT NULL, `model_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `model_id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `core_model_has_roles` -- CREATE TABLE `core_model_has_roles` ( `role_id` int(10) UNSIGNED NOT NULL, `model_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `model_id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `core_model_has_roles` -- INSERT INTO `core_model_has_roles` (`role_id`, `model_type`, `model_id`) VALUES (1, 'App\\User', 2), (1, 'App\\User', 4), (1, 'App\\User', 5), (1, 'App\\User', 6), (1, 'App\\User', 18), (2, 'App\\User', 3), (2, 'App\\User', 8), (2, 'App\\User', 9), (2, 'App\\User', 10), (2, 'App\\User', 11), (2, 'App\\User', 12), (2, 'App\\User', 13), (2, 'App\\User', 14), (2, 'App\\User', 15), (2, 'App\\User', 16), (2, 'App\\User', 17), (3, 'App\\User', 1), (3, 'App\\User', 7); -- -------------------------------------------------------- -- -- Struktur dari tabel `core_news` -- CREATE TABLE `core_news` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cat_id` int(11) DEFAULT NULL, `image_id` int(11) DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `origin_id` bigint(20) DEFAULT NULL, `lang` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `core_news` -- INSERT INTO `core_news` (`id`, `title`, `content`, `slug`, `status`, `cat_id`, `image_id`, `create_user`, `update_user`, `deleted_at`, `origin_id`, `lang`, `created_at`, `updated_at`) VALUES (1, 'The day on Paris', ' From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception <br/>From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception<br/>\r\n From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 'the-day-on-paris', 'publish', 4, 114, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL), (2, 'Pure Luxe in Punta Mita', ' From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception <br/>From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception<br/>\r\n From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 'pure-luxe-in-punta-mita', 'publish', 4, 115, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL), (3, 'All Aboard the Rocky Mountaineer', ' From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception <br/>From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception<br/>\r\n From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 'all-aboard-the-rocky-mountaineer', 'publish', 3, 116, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL), (4, 'City Spotlight: Philadelphia', ' From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception <br/>From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception<br/>\r\n From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 'city-spotlight-philadelphia', 'publish', 1, 117, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL), (5, 'Tiptoe through the Tulips of Washington', ' From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception <br/>From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception<br/>\r\n From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 'tiptoe-through-the-tulips-of-washington', 'publish', 3, 118, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL), (6, 'A Seaside Reset in Laguna Beach', ' From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception <br/>From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception<br/>\r\n From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 'a-seaside-reset-in-laguna-beach', 'publish', 3, 119, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL), (7, 'America National Parks with Denver', ' From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception <br/>From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception<br/>\r\n From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 'america-national-parks-with-denver', 'publish', 1, 120, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL), (8, 'Morning in the Northern sea', ' From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception <br/>From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception<br/>\r\n From the iconic to the unexpected, the city of San Francisco never ceases to surprise. Kick-start your effortlessly delivered Northern California holiday in the cosmopolitan hills of The City . Join your Travel Director and fellow travellers for a Welcome Reception at your hotel.Welcome Reception', 'morning-in-the-northern-sea', 'publish', 2, 115, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `core_news_category` -- CREATE TABLE `core_news_category` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `_lft` int(10) UNSIGNED NOT NULL DEFAULT 0, `_rgt` int(10) UNSIGNED NOT NULL DEFAULT 0, `parent_id` int(10) UNSIGNED DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `origin_id` bigint(20) DEFAULT NULL, `lang` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `core_news_category` -- INSERT INTO `core_news_category` (`id`, `name`, `content`, `slug`, `status`, `_lft`, `_rgt`, `parent_id`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`, `origin_id`, `lang`) VALUES (1, 'Adventure Travel', NULL, 'adventure-travel', 'publish', 1, 2, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL), (2, 'Ecotourism', NULL, 'ecotourism', 'publish', 3, 4, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL), (3, 'Sea Travel ', NULL, 'sea-travel', 'publish', 5, 6, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL), (4, 'Hosted Tour', NULL, 'hosted-tour', 'publish', 7, 8, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL), (5, 'City trips ', NULL, 'city-trips', 'publish', 9, 10, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL), (6, 'Escorted Tour ', NULL, 'escorted-tour', 'publish', 11, 12, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `core_news_category_translations` -- CREATE TABLE `core_news_category_translations` ( `id` bigint(20) UNSIGNED NOT NULL, `origin_id` int(10) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `core_news_tag` -- CREATE TABLE `core_news_tag` ( `id` bigint(20) UNSIGNED NOT NULL, `news_id` int(11) DEFAULT NULL, `tag_id` int(11) DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `core_news_translations` -- CREATE TABLE `core_news_translations` ( `id` bigint(20) UNSIGNED NOT NULL, `origin_id` int(10) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `core_notifications` -- CREATE TABLE `core_notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `from_user` bigint(20) DEFAULT NULL, `to_user` bigint(20) DEFAULT NULL, `is_read` tinyint(4) DEFAULT 0, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type_group` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `target_id` bigint(20) DEFAULT NULL, `target_parent_id` bigint(20) DEFAULT NULL, `params` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `core_pages` -- CREATE TABLE `core_pages` ( `id` bigint(20) UNSIGNED NOT NULL, `slug` varchar(255) CHARACTER SET utf8 NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `short_desc` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `publish_date` datetime DEFAULT NULL, `image_id` int(11) DEFAULT NULL, `template_id` int(11) DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `origin_id` bigint(20) DEFAULT NULL, `lang` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `header_style` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `custom_logo` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `core_pages` -- INSERT INTO `core_pages` (`id`, `slug`, `title`, `content`, `short_desc`, `status`, `publish_date`, `image_id`, `template_id`, `create_user`, `update_user`, `deleted_at`, `origin_id`, `lang`, `created_at`, `updated_at`, `header_style`, `custom_logo`) VALUES (1, 'home-page', 'Home Page', NULL, NULL, 'publish', NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL, NULL, NULL), (2, 'tour', 'Home Tour', NULL, NULL, 'publish', NULL, NULL, 2, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL, NULL, NULL), (3, 'space', 'Home Space', NULL, NULL, 'publish', NULL, NULL, 3, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL, NULL, NULL), (4, 'hotel', 'Home Hotel', NULL, NULL, 'publish', NULL, NULL, 4, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL, NULL, NULL), (5, 'become-a-vendor', 'Become a vendor', NULL, NULL, 'publish', NULL, NULL, 5, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL, NULL, NULL), (6, 'car', 'Home Car', NULL, NULL, 'publish', NULL, NULL, 6, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL, NULL, NULL), (7, 'home-page-v2', 'Home Page v2', NULL, NULL, 'publish', NULL, NULL, 8, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL, 'transparent', 200), (8, 'home-tour-agency', 'Home Tour Agency', NULL, NULL, 'publish', NULL, NULL, 7, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL, 'transparent', 200), (9, 'privacy-policy', 'Privacy policy', '<h1>Privacy policy</h1>\n<p> This privacy policy (\"Policy\") describes how the personally identifiable information (\"Personal Information\") you may provide on the <a target=\"_blank\" href=\"http://dev.bookingcore.org\" rel=\"noreferrer noopener\">dev.bookingcore.org</a> website (\"Website\" or \"Service\") and any of its related products and services (collectively, \"Services\") is collected, protected and used. It also describes the choices available to you regarding our use of your Personal Information and how you can access and update this information. This Policy is a legally binding agreement between you (\"User\", \"you\" or \"your\") and this Website operator (\"Operator\", \"we\", \"us\" or \"our\"). By accessing and using the Website and Services, you acknowledge that you have read, understood, and agree to be bound by the terms of this Agreement. This Policy does not apply to the practices of companies that we do not own or control, or to individuals that we do not employ or manage.</p>\n<h2>Automatic collection of information</h2>\n<p>When you open the Website, our servers automatically record information that your browser sends. This data may include information such as your device\'s IP address, browser type and version, operating system type and version, language preferences or the webpage you were visiting before you came to the Website and Services, pages of the Website and Services that you visit, the time spent on those pages, information you search for on the Website, access times and dates, and other statistics.</p>\n<p>Information collected automatically is used only to identify potential cases of abuse and establish statistical information regarding the usage and traffic of the Website and Services. This statistical information is not otherwise aggregated in such a way that would identify any particular user of the system.</p>\n<h2>Collection of personal information</h2>\n<p>You can access and use the Website and Services without telling us who you are or revealing any information by which someone could identify you as a specific, identifiable individual. If, however, you wish to use some of the features on the Website, you may be asked to provide certain Personal Information (for example, your name and e-mail address). We receive and store any information you knowingly provide to us when you create an account, publish content, or fill any online forms on the Website. When required, this information may include the following:</p>\n<ul><li>Personal details such as name, country of residence, etc.</li>\n<li>Contact information such as email address, address, etc.</li>\n<li>Account details such as user name, unique user ID, password, etc.</li>\n<li>Information about other individuals such as your family members, friends, etc.</li>\n</ul><p>Some of the information we collect is directly from you via the Website and Services. However, we may also collect Personal Information about you from other sources such as public databases and our joint marketing partners. You can choose not to provide us with your Personal Information, but then you may not be able to take advantage of some of the features on the Website. Users who are uncertain about what information is mandatory are welcome to contact us.</p>\n<h2>Use and processing of collected information</h2>\n<p>In order to make the Website and Services available to you, or to meet a legal obligation, we need to collect and use certain Personal Information. If you do not provide the information that we request, we may not be able to provide you with the requested products or services. Any of the information we collect from you may be used for the following purposes:</p>\n<ul><li>Create and manage user accounts</li>\n<li>Send administrative information</li>\n<li>Request user feedback</li>\n<li>Improve user experience</li>\n<li>Enforce terms and conditions and policies</li>\n<li>Run and operate the Website and Services</li>\n</ul><p>Processing your Personal Information depends on how you interact with the Website and Services, where you are located in the world and if one of the following applies: (i) you have given your consent for one or more specific purposes; this, however, does not apply, whenever the processing of Personal Information is subject to European data protection law; (ii) provision of information is necessary for the performance of an agreement with you and/or for any pre-contractual obligations thereof; (iii) processing is necessary for compliance with a legal obligation to which you are subject; (iv) processing is related to a task that is carried out in the public interest or in the exercise of official authority vested in us; (v) processing is necessary for the purposes of the legitimate interests pursued by us or by a third party.</p>\n<p> Note that under some legislations we may be allowed to process information until you object to such processing (by opting out), without having to rely on consent or any other of the following legal bases below. In any case, we will be happy to clarify the specific legal basis that applies to the processing, and in particular whether the provision of Personal Information is a statutory or contractual requirement, or a requirement necessary to enter into a contract.</p>\n<h2>Managing information</h2>\n<p>You are able to delete certain Personal Information we have about you. The Personal Information you can delete may change as the Website and Services change. When you delete Personal Information, however, we may maintain a copy of the unrevised Personal Information in our records for the duration necessary to comply with our obligations to our affiliates and partners, and for the purposes described below. If you would like to delete your Personal Information or permanently delete your account, you can do so by contacting us.</p>\n<h2>Disclosure of information</h2>\n<p> Depending on the requested Services or as necessary to complete any transaction or provide any service you have requested, we may share your information with your consent with our trusted third parties that work with us, any other affiliates and subsidiaries we rely upon to assist in the operation of the Website and Services available to you. We do not share Personal Information with unaffiliated third parties. These service providers are not authorized to use or disclose your information except as necessary to perform services on our behalf or comply with legal requirements. We may share your Personal Information for these purposes only with third parties whose privacy policies are consistent with ours or who agree to abide by our policies with respect to Personal Information. These third parties are given Personal Information they need only in order to perform their designated functions, and we do not authorize them to use or disclose Personal Information for their own marketing or other purposes.</p>\n<p>We will disclose any Personal Information we collect, use or receive if required or permitted by law, such as to comply with a subpoena, or similar legal process, and when we believe in good faith that disclosure is necessary to protect our rights, protect your safety or the safety of others, investigate fraud, or respond to a government request.</p>\n<h2>Retention of information</h2>\n<p>We will retain and use your Personal Information for the period necessary to comply with our legal obligations, resolve disputes, and enforce our agreements unless a longer retention period is required or permitted by law. We may use any aggregated data derived from or incorporating your Personal Information after you update or delete it, but not in a manner that would identify you personally. Once the retention period expires, Personal Information shall be deleted. Therefore, the right to access, the right to erasure, the right to rectification and the right to data portability cannot be enforced after the expiration of the retention period.</p>\n<h2>The rights of users</h2>\n<p>You may exercise certain rights regarding your information processed by us. In particular, you have the right to do the following: (i) you have the right to withdraw consent where you have previously given your consent to the processing of your information; (ii) you have the right to object to the processing of your information if the processing is carried out on a legal basis other than consent; (iii) you have the right to learn if information is being processed by us, obtain disclosure regarding certain aspects of the processing and obtain a copy of the information undergoing processing; (iv) you have the right to verify the accuracy of your information and ask for it to be updated or corrected; (v) you have the right, under certain circumstances, to restrict the processing of your information, in which case, we will not process your information for any purpose other than storing it; (vi) you have the right, under certain circumstances, to obtain the erasure of your Personal Information from us; (vii) you have the right to receive your information in a structured, commonly used and machine readable format and, if technically feasible, to have it transmitted to another controller without any hindrance. This provision is applicable provided that your information is processed by automated means and that the processing is based on your consent, on a contract which you are part of or on pre-contractual obligations thereof.</p>\n<h2>Privacy of children</h2>\n<p>We do not knowingly collect any Personal Information from children under the age of 18. If you are under the age of 18, please do not submit any Personal Information through the Website and Services. We encourage parents and legal guardians to monitor their children\'s Internet usage and to help enforce this Policy by instructing their children never to provide Personal Information through the Website and Services without their permission. If you have reason to believe that a child under the age of 18 has provided Personal Information to us through the Website and Services, please contact us. You must also be old enough to consent to the processing of your Personal Information in your country (in some countries we may allow your parent or guardian to do so on your behalf).</p>\n<h2>Cookies</h2>\n<p>The Website and Services use \"cookies\" to help personalize your online experience. A cookie is a text file that is placed on your hard disk by a web page server. Cookies cannot be used to run programs or deliver viruses to your computer. Cookies are uniquely assigned to you, and can only be read by a web server in the domain that issued the cookie to you.</p>\n<p>We may use cookies to collect, store, and track information for statistical purposes to operate the Website and Services. You have the ability to accept or decline cookies. Most web browsers automatically accept cookies, but you can usually modify your browser setting to decline cookies if you prefer. To learn more about cookies and how to manage them, visit <a target=\"_blank\" href=\"https://www.internetcookies.org\" rel=\"noreferrer noopener\">internetcookies.org</a></p>\n<h2>Do Not Track signals</h2>\n<p>Some browsers incorporate a Do Not Track feature that signals to websites you visit that you do not want to have your online activity tracked. Tracking is not the same as using or collecting information in connection with a website. For these purposes, tracking refers to collecting personally identifiable information from consumers who use or visit a website or online service as they move across different websites over time. How browsers communicate the Do Not Track signal is not yet uniform. As a result, the Website and Services are not yet set up to interpret or respond to Do Not Track signals communicated by your browser. Even so, as described in more detail throughout this Policy, we limit our use and collection of your personal information.</p>\n<h2>Email marketing</h2>\n<p>We offer electronic newsletters to which you may voluntarily subscribe at any time. We are committed to keeping your e-mail address confidential and will not disclose your email address to any third parties except as allowed in the information use and processing section or for the purposes of utilizing a third party provider to send such emails. We will maintain the information sent via e-mail in accordance with applicable laws and regulations.</p>\n<p>In compliance with the CAN-SPAM Act, all e-mails sent from us will clearly state who the e-mail is from and provide clear information on how to contact the sender. You may choose to stop receiving our newsletter or marketing emails by following the unsubscribe instructions included in these emails or by contacting us. However, you will continue to receive essential transactional emails.</p>\n<h2>Links to other resources</h2>\n<p>The Website and Services contain links to other resources that are not owned or controlled by us. Please be aware that we are not responsible for the privacy practices of such other resources or third parties. We encourage you to be aware when you leave the Website and Services and to read the privacy statements of each and every resource that may collect Personal Information.</p>\n<h2>Information security</h2>\n<p>We secure information you provide on computer servers in a controlled, secure environment, protected from unauthorized access, use, or disclosure. We maintain reasonable administrative, technical, and physical safeguards in an effort to protect against unauthorized access, use, modification, and disclosure of Personal Information in its control and custody. However, no data transmission over the Internet or wireless network can be guaranteed. Therefore, while we strive to protect your Personal Information, you acknowledge that (i) there are security and privacy limitations of the Internet which are beyond our control; (ii) the security, integrity, and privacy of any and all information and data exchanged between you and the Website and Services cannot be guaranteed; and (iii) any such information and data may be viewed or tampered with in transit by a third party, despite best efforts.</p>\n<h2>Data breach</h2>\n<p>In the event we become aware that the security of the Website and Services has been compromised or users Personal Information has been disclosed to unrelated third parties as a result of external activity, including, but not limited to, security attacks or fraud, we reserve the right to take reasonably appropriate measures, including, but not limited to, investigation and reporting, as well as notification to and cooperation with law enforcement authorities. In the event of a data breach, we will make reasonable efforts to notify affected individuals if we believe that there is a reasonable risk of harm to the user as a result of the breach or if notice is otherwise required by law. When we do, we will post a notice on the Website, send you an email.</p>\n<h2>Changes and amendments</h2>\n<p>We reserve the right to modify this Policy or its terms relating to the Website and Services from time to time in our discretion and will notify you of any material changes to the way in which we treat Personal Information. When we do, we will post a notification on the main page of the Website. We may also provide notice to you in other ways in our discretion, such as through contact information you have provided. Any updated version of this Policy will be effective immediately upon the posting of the revised Policy unless otherwise specified. Your continued use of the Website and Services after the effective date of the revised Policy (or such other act specified at that time) will constitute your consent to those changes. However, we will not, without your consent, use your Personal Information in a manner materially different than what was stated at the time your Personal Information was collected. Policy was created with <a style=\"color:inherit;\" target=\"_blank\" href=\"https://www.websitepolicies.com/privacy-policy-generator\" rel=\"noreferrer noopener\">WebsitePolicies</a>.</p>\n<h2>Acceptance of this policy</h2>\n<p>You acknowledge that you have read this Policy and agree to all its terms and conditions. By accessing and using the Website and Services you agree to be bound by this Policy. If you do not agree to abide by the terms of this Policy, you are not authorized to access or use the Website and Services.</p>\n<h2>Contacting us</h2>\n<p>If you would like to contact us to understand more about this Policy or wish to contact us concerning any matter relating to individual rights and your Personal Information, you may do so via the <a target=\"_blank\" href=\"http://dev.bookingcore.org/contact\" rel=\"noreferrer noopener\">contact form</a></p>\n<p>This document was last updated on October 6, 2020</p>', NULL, 'publish', NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33', NULL, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `core_page_translations` -- CREATE TABLE `core_page_translations` ( `id` bigint(20) UNSIGNED NOT NULL, `origin_id` int(10) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `short_desc` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `core_permissions` -- CREATE TABLE `core_permissions` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `guard_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `core_permissions` -- INSERT INTO `core_permissions` (`id`, `name`, `guard_name`, `created_at`, `updated_at`) VALUES (1, 'report_view', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (2, 'contact_manage', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (3, 'newsletter_manage', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (4, 'language_manage', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (5, 'language_translation', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (6, 'booking_view', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (7, 'booking_update', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (8, 'booking_manage_others', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (9, 'enquiry_view', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (10, 'enquiry_update', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (11, 'enquiry_manage_others', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (12, 'template_view', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (13, 'template_create', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (14, 'template_update', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (15, 'template_delete', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (16, 'news_view', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (17, 'news_create', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (18, 'news_update', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (19, 'news_delete', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (20, 'news_manage_others', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (21, 'role_view', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (22, 'role_create', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (23, 'role_update', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (24, 'role_delete', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (25, 'permission_view', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (26, 'permission_create', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (27, 'permission_update', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (28, 'permission_delete', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (29, 'dashboard_access', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (30, 'dashboard_vendor_access', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (31, 'setting_update', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (32, 'menu_view', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (33, 'menu_create', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (34, 'menu_update', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (35, 'menu_delete', 'web', '2021-08-10 07:39:29', '2021-08-10 07:39:29'), (36, 'user_view', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (37, 'user_create', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (38, 'user_update', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (39, 'user_delete', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (40, 'page_view', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (41, 'page_create', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (42, 'page_update', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (43, 'page_delete', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (44, 'page_manage_others', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (45, 'setting_view', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (46, 'media_upload', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (47, 'media_manage', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (48, 'tour_view', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (49, 'tour_create', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (50, 'tour_update', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (51, 'tour_delete', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (52, 'tour_manage_others', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (53, 'tour_manage_attributes', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (54, 'location_view', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (55, 'location_create', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (56, 'location_update', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (57, 'location_delete', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (58, 'location_manage_others', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (59, 'review_manage_others', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (60, 'system_log_view', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (61, 'space_view', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (62, 'space_create', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (63, 'space_update', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (64, 'space_delete', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (65, 'space_manage_others', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (66, 'space_manage_attributes', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (67, 'hotel_view', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (68, 'hotel_create', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (69, 'hotel_update', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (70, 'hotel_delete', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (71, 'hotel_manage_others', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (72, 'hotel_manage_attributes', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (73, 'car_view', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (74, 'car_create', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (75, 'car_update', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (76, 'car_delete', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (77, 'car_manage_others', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (78, 'car_manage_attributes', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (79, 'event_view', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (80, 'event_create', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (81, 'event_update', 'web', '2021-08-10 07:39:30', '2021-08-10 07:39:30'), (82, 'event_delete', 'web', '2021-08-10 07:39:31', '2021-08-10 07:39:31'), (83, 'event_manage_others', 'web', '2021-08-10 07:39:31', '2021-08-10 07:39:31'), (84, 'event_manage_attributes', 'web', '2021-08-10 07:39:31', '2021-08-10 07:39:31'), (85, 'social_manage_forum', 'web', '2021-08-10 07:39:31', '2021-08-10 07:39:31'), (86, 'plugin_manage', 'web', '2021-08-10 07:39:31', '2021-08-10 07:39:31'), (87, 'vendor_payout_view', 'web', '2021-08-10 07:39:31', '2021-08-10 07:39:31'), (88, 'vendor_payout_manage', 'web', '2021-08-10 07:39:31', '2021-08-10 07:39:31'); -- -------------------------------------------------------- -- -- Struktur dari tabel `core_roles` -- CREATE TABLE `core_roles` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `guard_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `origin_id` bigint(20) DEFAULT NULL, `lang` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `core_roles` -- INSERT INTO `core_roles` (`id`, `name`, `guard_name`, `origin_id`, `lang`, `created_at`, `updated_at`) VALUES (1, 'vendor', 'web', NULL, NULL, '2021-08-10 07:39:31', '2021-08-10 07:39:31'), (2, 'customer', 'web', NULL, NULL, '2021-08-10 07:39:32', '2021-08-10 07:39:32'), (3, 'administrator', 'web', NULL, NULL, '2021-08-10 07:39:32', '2021-08-10 07:39:32'); -- -------------------------------------------------------- -- -- Struktur dari tabel `core_role_has_permissions` -- CREATE TABLE `core_role_has_permissions` ( `permission_id` int(10) UNSIGNED NOT NULL, `role_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `core_role_has_permissions` -- INSERT INTO `core_role_has_permissions` (`permission_id`, `role_id`) VALUES (1, 3), (2, 3), (3, 3), (4, 3), (5, 3), (6, 3), (7, 3), (8, 3), (9, 1), (9, 3), (10, 1), (10, 3), (11, 3), (12, 3), (13, 3), (14, 3), (15, 3), (16, 3), (17, 3), (18, 3), (19, 3), (20, 3), (21, 3), (22, 3), (23, 3), (24, 3), (25, 3), (26, 3), (27, 3), (28, 3), (29, 3), (30, 1), (30, 3), (31, 3), (32, 3), (33, 3), (34, 3), (35, 3), (36, 3), (37, 3), (38, 3), (39, 3), (40, 3), (41, 3), (42, 3), (43, 3), (44, 3), (45, 3), (46, 1), (46, 3), (47, 3), (48, 1), (48, 3), (49, 1), (49, 3), (50, 1), (50, 3), (51, 1), (51, 3), (52, 3), (53, 3), (54, 3), (55, 3), (56, 3), (57, 3), (58, 3), (59, 3), (60, 3), (61, 1), (61, 3), (62, 1), (62, 3), (63, 1), (63, 3), (64, 1), (64, 3), (65, 3), (66, 3), (67, 1), (67, 3), (68, 1), (68, 3), (69, 1), (69, 3), (70, 1), (70, 3), (71, 3), (72, 3), (73, 1), (73, 3), (74, 1), (74, 3), (75, 1), (75, 3), (76, 1), (76, 3), (77, 3), (78, 3), (79, 1), (79, 3), (80, 1), (80, 3), (81, 1), (81, 3), (82, 1), (82, 3), (83, 3), (84, 3), (85, 3), (86, 3), (87, 3), (88, 3); -- -------------------------------------------------------- -- -- Struktur dari tabel `core_settings` -- CREATE TABLE `core_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `group` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `val` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `autoload` tinyint(4) DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `lang` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `core_settings` -- INSERT INTO `core_settings` (`id`, `name`, `group`, `val`, `autoload`, `create_user`, `update_user`, `lang`, `created_at`, `updated_at`) VALUES (1, 'site_locale', 'general', 'en', NULL, 1, 1, NULL, NULL, '2021-08-10 14:45:32'), (2, 'site_enable_multi_lang', 'general', '1', NULL, 1, 1, NULL, NULL, '2021-08-10 14:45:32'), (3, 'enable_rtl_egy', 'general', '1', NULL, NULL, NULL, NULL, NULL, NULL), (4, 'menu_locations', 'general', '{\"primary\":1}', NULL, NULL, NULL, NULL, NULL, NULL), (5, 'admin_email', 'general', '<EMAIL>', NULL, 1, 1, NULL, NULL, '2021-08-10 14:45:32'), (6, 'email_from_name', 'general', 'Booking Core', NULL, 1, 1, NULL, NULL, '2021-08-10 14:45:32'), (7, 'email_from_address', 'general', '<EMAIL>', NULL, 1, 1, NULL, NULL, '2021-08-10 14:45:32'), (8, 'logo_id', 'general', '208', NULL, 1, 1, NULL, NULL, '2021-08-10 15:13:31'), (9, 'site_favicon', 'general', '209', NULL, 1, 1, NULL, NULL, '2021-08-10 15:14:06'), (10, 'topbar_left_text', 'general', '<div class=\"socials\">\r\n<a href=\"#\"><i class=\"fa fa-facebook\"></i></a>\r\n<a href=\"#\"><i class=\"fa fa-linkedin\"></i></a>\r\n<a href=\"#\"><i class=\"fa fa-google-plus\"></i></a>\r\n</div>\r\n<span class=\"line\"></span>\r\n<a href=\"<EMAIL>\"><EMAIL></a>', NULL, 1, 1, NULL, NULL, '2021-08-10 14:54:11'), (11, 'footer_text_left', 'general', '<p>Copyright &copy; 2021 by <NAME> NSM</p>', NULL, 1, 1, NULL, NULL, '2021-08-10 14:45:32'), (12, 'footer_text_right', 'general', '<p>Mroom Indonesia</p>', NULL, 1, 1, NULL, NULL, '2021-08-10 14:45:32'), (13, 'list_widget_footer', 'general', '[{\"title\":\"NEED HELP?\",\"size\":\"3\",\"content\":\"<div class=\\\"contact\\\">\\r\\n <div class=\\\"c-title\\\">\\r\\n Call Us\\r\\n <\\/div>\\r\\n <div class=\\\"sub\\\">\\r\\n + 00 222 44 5678\\r\\n <\\/div>\\r\\n <\\/div>\\r\\n <div class=\\\"contact\\\">\\r\\n <div class=\\\"c-title\\\">\\r\\n Email for Us\\r\\n <\\/div>\\r\\n <div class=\\\"sub\\\">\\r\\n <EMAIL>\\r\\n <\\/div>\\r\\n <\\/div>\\r\\n <div class=\\\"contact\\\">\\r\\n <div class=\\\"c-title\\\">\\r\\n Follow Us\\r\\n <\\/div>\\r\\n <div class=\\\"sub\\\">\\r\\n <a href=\\\"#\\\">\\r\\n <i class=\\\"icofont-facebook\\\"><\\/i>\\r\\n <\\/a>\\r\\n <a href=\\\"#\\\">\\r\\n <i class=\\\"icofont-twitter\\\"><\\/i>\\r\\n <\\/a>\\r\\n <a href=\\\"#\\\">\\r\\n <i class=\\\"icofont-youtube-play\\\"><\\/i>\\r\\n <\\/a>\\r\\n <\\/div>\\r\\n <\\/div>\"},{\"title\":\"COMPANY\",\"size\":\"3\",\"content\":\"<ul>\\r\\n <li><a href=\\\"#\\\">About Us<\\/a><\\/li>\\r\\n <li><a href=\\\"#\\\">Community Blog<\\/a><\\/li>\\r\\n <li><a href=\\\"#\\\">Rewards<\\/a><\\/li>\\r\\n <li><a href=\\\"#\\\">Work with Us<\\/a><\\/li>\\r\\n <li><a href=\\\"#\\\">Meet the Team<\\/a><\\/li>\\r\\n<\\/ul>\"},{\"title\":\"SUPPORT\",\"size\":\"3\",\"content\":\"<ul>\\r\\n <li><a href=\\\"#\\\">Account<\\/a><\\/li>\\r\\n <li><a href=\\\"#\\\">Legal<\\/a><\\/li>\\r\\n <li><a href=\\\"#\\\">Contact<\\/a><\\/li>\\r\\n <li><a href=\\\"#\\\">Affiliate Program<\\/a><\\/li>\\r\\n <li><a href=\\\"#\\\">Privacy Policy<\\/a><\\/li>\\r\\n<\\/ul>\"},{\"title\":\"SETTINGS\",\"size\":\"3\",\"content\":\"<ul>\\r\\n<li><a href=\\\"#\\\">Setting 1<\\/a><\\/li>\\r\\n<li><a href=\\\"#\\\">Setting 2<\\/a><\\/li>\\r\\n<\\/ul>\"}]', NULL, 1, 1, NULL, NULL, '2021-08-10 14:45:32'), (14, 'list_widget_footer_ja', 'general', '[{\"title\":\"\\u52a9\\u3051\\u304c\\u5fc5\\u8981\\uff1f\",\"size\":\"3\",\"content\":\"<div class=\\\"contact\\\">\\r\\n <div class=\\\"c-title\\\">\\r\\n \\u304a\\u96fb\\u8a71\\u304f\\u3060\\u3055\\u3044\\r\\n <\\/div>\\r\\n <div class=\\\"sub\\\">\\r\\n + 00 222 44 5678\\r\\n <\\/div>\\r\\n <\\/div>\\r\\n <div class=\\\"contact\\\">\\r\\n <div class=\\\"c-title\\\">\\r\\n \\u90f5\\u4fbf\\u7269\\r\\n <\\/div>\\r\\n <div class=\\\"sub\\\">\\r\\n <EMAIL>\\r\\n <\\/div>\\r\\n <\\/div>\\r\\n <div class=\\\"contact\\\">\\r\\n <div class=\\\"c-title\\\">\\r\\n \\u30d5\\u30a9\\u30ed\\u30fc\\u3059\\u308b\\r\\n <\\/div>\\r\\n <div class=\\\"sub\\\">\\r\\n <a href=\\\"#\\\">\\r\\n <i class=\\\"icofont-facebook\\\"><\\/i>\\r\\n <\\/a>\\r\\n <a href=\\\"#\\\">\\r\\n <i class=\\\"icofont-twitter\\\"><\\/i>\\r\\n <\\/a>\\r\\n <a href=\\\"#\\\">\\r\\n <i class=\\\"icofont-youtube-play\\\"><\\/i>\\r\\n <\\/a>\\r\\n <\\/div>\\r\\n <\\/div>\"},{\"title\":\"\\u4f1a\\u793e\",\"size\":\"3\",\"content\":\"<ul>\\r\\n <li><a href=\\\"#\\\">\\u7d04, \\u7565<\\/a><\\/li>\\r\\n <li><a href=\\\"#\\\">\\u30b3\\u30df\\u30e5\\u30cb\\u30c6\\u30a3\\u30d6\\u30ed\\u30b0<\\/a><\\/li>\\r\\n <li><a href=\\\"#\\\">\\u5831\\u916c<\\/a><\\/li>\\r\\n <li><a href=\\\"#\\\">\\u3068\\u9023\\u643a<\\/a><\\/li>\\r\\n <li><a href=\\\"#\\\">\\u30c1\\u30fc\\u30e0\\u306b\\u4f1a\\u3046<\\/a><\\/li>\\r\\n<\\/ul>\"},{\"title\":\"\\u30b5\\u30dd\\u30fc\\u30c8\",\"size\":\"3\",\"content\":\"<ul>\\r\\n <li><a href=\\\"#\\\">\\u30a2\\u30ab\\u30a6\\u30f3\\u30c8<\\/a><\\/li>\\r\\n <li><a href=\\\"#\\\">\\u6cd5\\u7684<\\/a><\\/li>\\r\\n <li><a href=\\\"#\\\">\\u63a5\\u89e6<\\/a><\\/li>\\r\\n <li><a href=\\\"#\\\">\\u30a2\\u30d5\\u30a3\\u30ea\\u30a8\\u30a4\\u30c8\\u30d7\\u30ed\\u30b0\\u30e9\\u30e0<\\/a><\\/li>\\r\\n <li><a href=\\\"#\\\">\\u500b\\u4eba\\u60c5\\u5831\\u4fdd\\u8b77\\u65b9\\u91dd<\\/a><\\/li>\\r\\n<\\/ul>\"},{\"title\":\"\\u8a2d\\u5b9a\",\"size\":\"3\",\"content\":\"<ul>\\r\\n<li><a href=\\\"#\\\">\\u8a2d\\u5b9a1<\\/a><\\/li>\\r\\n<li><a href=\\\"#\\\">\\u8a2d\\u5b9a2<\\/a><\\/li>\\r\\n<\\/ul>\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (15, 'page_contact_title', 'general', 'We\'d love to hear from you', NULL, 1, 1, NULL, NULL, '2021-08-10 14:45:32'), (16, 'page_contact_sub_title', 'general', 'Send us a message and we\'ll respond as soon as possible', NULL, 1, 1, NULL, NULL, '2021-08-10 14:45:32'), (17, 'page_contact_desc', 'general', '<h3>Mroom Indonesia</h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>Tell. + 00 222 444 33</p>\r\n<p>Email. <EMAIL></p>\r\n<p>1355 Market St, Suite 900San, Francisco, CA 94103 United States</p>', NULL, 1, 1, NULL, NULL, '2021-08-10 14:45:32'), (18, 'page_contact_image', 'general', '9', NULL, 1, 1, NULL, NULL, '2021-08-10 14:45:32'), (19, 'home_page_id', 'general', '1', NULL, 1, 1, NULL, NULL, '2021-08-10 14:45:32'), (20, 'page_contact_title', 'general', 'We\'d love to hear from you', NULL, NULL, NULL, NULL, NULL, NULL), (21, 'page_contact_title_ja', 'general', 'あなたからの御一報をお待ち', NULL, NULL, NULL, NULL, NULL, NULL), (22, 'page_contact_sub_title', 'general', 'Send us a message and we\'ll respond as soon as possible', NULL, NULL, NULL, NULL, NULL, NULL), (23, 'page_contact_sub_title_ja', 'general', '私たちにメッセージを送ってください、私たちはできるだ', NULL, NULL, NULL, NULL, NULL, NULL), (24, 'page_contact_desc', 'general', '<!DOCTYPE html><html><head></head><body><h3>Booking Core</h3><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>Tell. + 00 222 444 33</p><p>Email. <EMAIL></p><p>1355 Market St, Suite 900San, Francisco, CA 94103 United States</p></body></html>', NULL, NULL, NULL, NULL, NULL, NULL), (25, 'page_contact_image', 'general', '9', NULL, NULL, NULL, NULL, NULL, NULL), (26, 'currency_main', 'payment', 'usd', NULL, NULL, NULL, NULL, NULL, NULL), (27, 'currency_format', 'payment', 'left', NULL, NULL, NULL, NULL, NULL, NULL), (28, 'currency_decimal', 'payment', ',', NULL, NULL, NULL, NULL, NULL, NULL), (29, 'currency_thousand', 'payment', '.', NULL, NULL, NULL, NULL, NULL, NULL), (30, 'currency_no_decimal', 'payment', '0', NULL, NULL, NULL, NULL, NULL, NULL), (31, 'extra_currency', 'payment', '[{\"currency_main\":\"eur\",\"currency_format\":\"left\",\"currency_thousand\":\".\",\"currency_decimal\":\",\",\"currency_no_decimal\":\"2\",\"rate\":\"0.902807\"},{\"currency_main\":\"jpy\",\"currency_format\":\"right_space\",\"currency_thousand\":\".\",\"currency_decimal\":\",\",\"currency_no_decimal\":\"0\",\"rate\":\"0.00917113\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (32, 'map_provider', 'advance', 'gmap', NULL, NULL, NULL, NULL, NULL, NULL), (33, 'map_gmap_key', 'advance', '', NULL, NULL, NULL, NULL, NULL, NULL), (34, 'g_offline_payment_enable', 'payment', '1', NULL, NULL, NULL, NULL, NULL, NULL), (35, 'g_offline_payment_name', 'payment', 'Offline Payment', NULL, NULL, NULL, NULL, NULL, NULL), (36, 'date_format', 'general', 'm/d/Y', NULL, 1, 1, NULL, NULL, '2021-08-10 14:45:32'), (37, 'site_title', 'general', 'Mroom Indonesia', NULL, 1, 1, NULL, NULL, '2021-08-10 14:45:32'), (38, 'site_timezone', 'general', 'Asia/Jakarta', NULL, 1, 1, NULL, NULL, '2021-08-10 14:45:32'), (39, 'site_title', 'general', 'Booking Core', NULL, NULL, NULL, NULL, NULL, NULL), (40, 'email_header', 'general', '', NULL, 1, NULL, NULL, NULL, '2021-08-10 18:18:17'), (41, 'email_footer', 'general', '', NULL, 1, NULL, NULL, NULL, '2021-08-10 18:18:17'), (42, 'enable_mail_user_registered', 'user', '1', NULL, NULL, NULL, NULL, NULL, NULL), (43, 'user_content_email_registered', 'user', '<h1 style=\"text-align: center\">Welcome!</h1>\r\n <h3>Hello [first_name] [last_name]</h3>\r\n <p>Thank you for signing up with Booking Core! We hope you enjoy your time with us.</p>\r\n <p>Regards,</p>\r\n <p>Booking Core</p>', NULL, NULL, NULL, NULL, NULL, NULL), (44, 'admin_enable_mail_user_registered', 'user', '1', NULL, NULL, NULL, NULL, NULL, NULL), (45, 'admin_content_email_user_registered', 'user', '<h3>Hello Administrator</h3>\r\n <p>We have new registration</p>\r\n <p>Full name: [first_name] [last_name]</p>\r\n <p>Email: [email]</p>\r\n <p>Regards,</p>\r\n <p>Booking Core</p>', NULL, NULL, NULL, NULL, NULL, NULL), (46, 'user_content_email_forget_password', 'user', '<h1>Hello!</h1>\r\n <p>You are receiving this email because we received a password reset request for your account.</p>\r\n <p style=\"text-align: center\">[button_reset_password]</p>\r\n <p>This password reset link expire in 60 minutes.</p>\r\n <p>If you did not request a password reset, no further action is required.\r\n </p>\r\n <p>Regards,</p>\r\n <p>Booking Core</p>', NULL, NULL, NULL, NULL, NULL, NULL), (47, 'email_driver', 'email', 'log', NULL, NULL, NULL, NULL, NULL, NULL), (48, 'email_host', 'email', 'smtp.mailgun.org', NULL, NULL, NULL, NULL, NULL, NULL), (49, 'email_port', 'email', '587', NULL, NULL, NULL, NULL, NULL, NULL), (50, 'email_encryption', 'email', 'tls', NULL, NULL, NULL, NULL, NULL, NULL), (51, 'email_username', 'email', '', NULL, NULL, NULL, NULL, NULL, NULL), (52, 'email_password', 'email', '', NULL, NULL, NULL, NULL, NULL, NULL), (53, 'email_mailgun_domain', 'email', '', NULL, NULL, NULL, NULL, NULL, NULL), (54, 'email_mailgun_secret', 'email', '', NULL, NULL, NULL, NULL, NULL, NULL), (55, 'email_mailgun_endpoint', 'email', 'api.mailgun.net', NULL, NULL, NULL, NULL, NULL, NULL), (56, 'email_postmark_token', 'email', '', NULL, NULL, NULL, NULL, NULL, NULL), (57, 'email_ses_key', 'email', '', NULL, NULL, NULL, NULL, NULL, NULL), (58, 'email_ses_secret', 'email', '', NULL, NULL, NULL, NULL, NULL, NULL), (59, 'email_ses_region', 'email', 'us-east-1', NULL, NULL, NULL, NULL, NULL, NULL), (60, 'email_sparkpost_secret', 'email', '', NULL, NULL, NULL, NULL, NULL, NULL), (61, 'booking_enquiry_for_hotel', 'enquiry', '1', NULL, NULL, NULL, NULL, NULL, NULL), (62, 'booking_enquiry_for_tour', 'enquiry', '1', NULL, NULL, NULL, NULL, NULL, NULL), (63, 'booking_enquiry_for_space', 'enquiry', '1', NULL, NULL, NULL, NULL, NULL, NULL), (64, 'booking_enquiry_for_car', 'enquiry', '1', NULL, NULL, NULL, NULL, NULL, NULL), (65, 'booking_enquiry_for_event', 'enquiry', '1', NULL, NULL, NULL, NULL, NULL, NULL), (66, 'booking_enquiry_type', 'enquiry', 'booking_and_enquiry', NULL, NULL, NULL, NULL, NULL, NULL), (67, 'booking_enquiry_enable_mail_to_vendor', 'enquiry', '1', NULL, NULL, NULL, NULL, NULL, NULL), (68, 'booking_enquiry_mail_to_vendor_content', 'enquiry', '<h3>Hello [vendor_name]</h3>\r\n <p>You get new inquiry request from [email]</p>\r\n <p>Name :[name]</p>\r\n <p>Emai:[email]</p>\r\n <p>Phone:[phone]</p>\r\n <p>Content:[note]</p>\r\n <p>Service:[service_link]</p>\r\n <p>Regards,</p>\r\n <p>Booking Core</p>\r\n </div>', NULL, NULL, NULL, NULL, NULL, NULL), (69, 'booking_enquiry_enable_mail_to_admin', 'enquiry', '1', NULL, NULL, NULL, NULL, NULL, NULL), (70, 'booking_enquiry_mail_to_admin_content', 'enquiry', '<h3>Hello Administrator</h3>\r\n <p>You get new inquiry request from [email]</p>\r\n <p>Name :[name]</p>\r\n <p>Emai:[email]</p>\r\n <p>Phone:[phone]</p>\r\n <p>Content:[note]</p>\r\n <p>Service:[service_link]</p>\r\n <p>Vendor:[vendor_link]</p>\r\n <p>Regards,</p>\r\n <p>Booking Core</p>', NULL, NULL, NULL, NULL, NULL, NULL), (71, 'vendor_enable', 'vendor', '1', NULL, NULL, NULL, NULL, NULL, NULL), (72, 'vendor_commission_type', 'vendor', 'percent', NULL, NULL, NULL, NULL, NULL, NULL), (73, 'vendor_commission_amount', 'vendor', '10', NULL, NULL, NULL, NULL, NULL, NULL), (74, 'vendor_role', 'vendor', '1', NULL, NULL, NULL, NULL, NULL, NULL), (75, 'role_verify_fields', 'vendor', '{\"phone\":{\"name\":\"Phone\",\"type\":\"text\",\"roles\":[\"1\",\"2\",\"3\"],\"required\":null,\"order\":null,\"icon\":\"fa fa-phone\"},\"id_card\":{\"name\":\"ID Card\",\"type\":\"file\",\"roles\":[\"1\",\"2\",\"3\"],\"required\":\"1\",\"order\":\"0\",\"icon\":\"fa fa-id-card\"},\"trade_license\":{\"name\":\"Trade License\",\"type\":\"multi_files\",\"roles\":[\"1\",\"3\"],\"required\":\"1\",\"order\":\"0\",\"icon\":\"fa fa-copyright\"}}', NULL, NULL, NULL, NULL, NULL, NULL), (76, 'enable_mail_vendor_registered', 'vendor', '1', NULL, NULL, NULL, NULL, NULL, NULL), (77, 'vendor_content_email_registered', 'vendor', '<h1 style=\"text-align: center;\">Welcome!</h1>\r\n <h3>Hello [first_name] [last_name]</h3>\r\n <p>Thank you for signing up with Booking Core! We hope you enjoy your time with us.</p>\r\n <p>Regards,</p>\r\n <p>Booking Core</p>', NULL, NULL, NULL, NULL, NULL, NULL), (78, 'admin_enable_mail_vendor_registered', 'vendor', '1', NULL, NULL, NULL, NULL, NULL, NULL), (79, 'admin_content_email_vendor_registered', 'vendor', '<h3>Hello Administrator</h3>\r\n <p>An user has been registered as Vendor. Please check the information bellow:</p>\r\n <p>Full name: [first_name] [last_name]</p>\r\n <p>Email: [email]</p>\r\n <p>Registration date: [created_at]</p>\r\n <p>You can approved the request here: [link_approved]</p>\r\n <p>Regards,</p>\r\n <p>Booking Core</p>', NULL, NULL, NULL, NULL, NULL, NULL), (80, 'cookie_agreement_enable', 'advance', '1', NULL, NULL, NULL, NULL, NULL, NULL), (81, 'cookie_agreement_button_text', 'advance', 'Got it', NULL, NULL, NULL, NULL, NULL, NULL), (82, 'cookie_agreement_content', 'advance', '<p>This website requires cookies to provide all of its features. By using our website, you agree to our use of cookies. <a href=\'#\'>More info</a></p>', NULL, NULL, NULL, NULL, NULL, NULL), (83, 'logo_invoice_id', 'booking', '208', NULL, 1, NULL, NULL, NULL, '2021-08-10 18:18:17'), (84, 'invoice_company_info', 'booking', '<p><span style=\"font-size: 14pt;\"><strong>Mroom Indonesia</strong></span></p>\r\n<p>Ha Noi, Viet Nam</p>\r\n<p>www.mamakriau.com</p>', NULL, 1, NULL, NULL, NULL, '2021-08-10 18:18:17'), (85, 'news_page_list_title', 'news', 'News', NULL, NULL, NULL, NULL, NULL, NULL), (86, 'news_page_list_banner', 'news', '121', NULL, NULL, NULL, NULL, NULL, NULL), (87, 'news_sidebar', 'news', '[{\"title\":null,\"content\":null,\"type\":\"search_form\"},{\"title\":\"About Us\",\"content\":\"Nam dapibus nisl vitae elit fringilla rutrum. Aenean sollicitudin, erat a elementum rutrum, neque sem pretium metus, quis mollis nisl nunc et massa\",\"type\":\"content_text\"},{\"title\":\"Recent News\",\"content\":null,\"type\":\"recent_news\"},{\"title\":\"Categories\",\"content\":null,\"type\":\"category\"},{\"title\":\"Tags\",\"content\":null,\"type\":\"tag\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (88, 'tour_page_search_title', 'tour', 'Search for tour', NULL, NULL, NULL, NULL, NULL, NULL), (89, 'tour_page_limit_item', 'tour', '9', NULL, NULL, NULL, NULL, NULL, NULL), (90, 'tour_page_search_banner', 'tour', '20', NULL, NULL, NULL, NULL, NULL, NULL), (91, 'tour_layout_search', 'tour', 'normal', NULL, NULL, NULL, NULL, NULL, NULL), (92, 'tour_enable_review', 'tour', '1', NULL, NULL, NULL, NULL, NULL, NULL), (93, 'tour_review_approved', 'tour', '0', NULL, NULL, NULL, NULL, NULL, NULL), (94, 'tour_review_stats', 'tour', '[{\"title\":\"Service\"},{\"title\":\"Organization\"},{\"title\":\"Friendliness\"},{\"title\":\"Area Expert\"},{\"title\":\"Safety\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (95, 'tour_booking_buyer_fees', 'tour', '[{\"name\":\"Service fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (96, 'tour_map_search_fields', 'tour', '[{\"field\":\"location\",\"attr\":null,\"position\":\"1\"},{\"field\":\"category\",\"attr\":null,\"position\":\"2\"},{\"field\":\"date\",\"attr\":null,\"position\":\"3\"},{\"field\":\"price\",\"attr\":null,\"position\":\"4\"},{\"field\":\"advance\",\"attr\":null,\"position\":\"5\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (97, 'tour_search_fields', 'tour', '[{\"title\":\"Location\",\"field\":\"location\",\"size\":\"6\",\"position\":\"1\"},{\"title\":\"From - To\",\"field\":\"date\",\"size\":\"6\",\"position\":\"2\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (98, 'space_page_search_title', 'space', 'Search for space', NULL, NULL, NULL, NULL, NULL, NULL), (99, 'space_page_limit_item', 'space', '9', NULL, NULL, NULL, NULL, NULL, NULL), (100, 'space_page_search_banner', 'space', '62', NULL, NULL, NULL, NULL, NULL, NULL), (101, 'space_layout_search', 'space', 'normal', NULL, NULL, NULL, NULL, NULL, NULL), (102, 'space_enable_review', 'space', '1', NULL, NULL, NULL, NULL, NULL, NULL), (103, 'space_review_approved', 'space', '0', NULL, NULL, NULL, NULL, NULL, NULL), (104, 'space_review_stats', 'space', '[{\"title\":\"Sleep\"},{\"title\":\"Location\"},{\"title\":\"Service\"},{\"title\":\"Clearness\"},{\"title\":\"Rooms\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (105, 'space_booking_buyer_fees', 'space', '[{\"name\":\"Cleaning fee\",\"desc\":\"One-time fee charged by host to cover the cost of cleaning their space.\",\"name_ja\":\"\\u30af\\u30ea\\u30fc\\u30cb\\u30f3\\u30b0\\u4ee3\",\"desc_ja\":\"\\u30b9\\u30da\\u30fc\\u30b9\\u3092\\u6383\\u9664\\u3059\\u308b\\u8cbb\\u7528\\u3092\\u30db\\u30b9\\u30c8\\u304c\\u8acb\\u6c42\\u3059\\u308b1\\u56de\\u9650\\u308a\\u306e\\u6599\\u91d1\\u3002\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Service fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (106, 'space_map_search_fields', 'space', '[{\"field\":\"location\",\"attr\":null,\"position\":\"1\"},{\"field\":\"attr\",\"attr\":\"3\",\"position\":\"2\"},{\"field\":\"date\",\"attr\":null,\"position\":\"3\"},{\"field\":\"price\",\"attr\":null,\"position\":\"4\"},{\"field\":\"advance\",\"attr\":null,\"position\":\"5\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (107, 'space_search_fields', 'tour', '[{\"title\":\"Location\",\"field\":\"location\",\"size\":\"4\",\"position\":\"1\"},{\"title\":\"From - To\",\"field\":\"date\",\"size\":\"4\",\"position\":\"2\"},{\"title\":\"Guests\",\"field\":\"guests\",\"size\":\"4\",\"position\":\"3\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (108, 'hotel_page_search_title', 'hotel', 'Search for hotel', NULL, NULL, NULL, NULL, NULL, NULL), (109, 'hotel_page_limit_item', 'hotel', '9', NULL, NULL, NULL, NULL, NULL, NULL), (110, 'hotel_page_search_banner', 'hotel', '92', NULL, NULL, NULL, NULL, NULL, NULL), (111, 'hotel_layout_item_search', 'hotel', 'list', NULL, NULL, NULL, NULL, NULL, NULL), (112, 'hotel_attribute_show_in_listing_page', 'hotel', '6', NULL, NULL, NULL, NULL, NULL, NULL), (113, 'hotel_layout_search', 'hotel', 'normal', NULL, NULL, NULL, NULL, NULL, NULL), (114, 'hotel_enable_review', 'hotel', '1', NULL, NULL, NULL, NULL, NULL, NULL), (115, 'hotel_review_approved', 'hotel', '0', NULL, NULL, NULL, NULL, NULL, NULL), (116, 'hotel_review_stats', 'hotel', '[{\"title\":\"Service\"},{\"title\":\"Organization\"},{\"title\":\"Friendliness\"},{\"title\":\"Area Expert\"},{\"title\":\"Safety\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (117, 'hotel_booking_buyer_fees', 'hotel', '[{\"name\":\"Service fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (118, 'hotel_map_search_fields', 'hotel', '[{\"field\":\"location\",\"attr\":null,\"position\":\"1\"},{\"field\":\"attr\",\"attr\":\"7\",\"position\":\"2\"},{\"field\":\"date\",\"attr\":null,\"position\":\"3\"},{\"field\":\"price\",\"attr\":null,\"position\":\"4\"},{\"field\":\"advance\",\"attr\":null,\"position\":\"5\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (119, 'hotel_search_fields', 'hotel', '[{\"title\":\"Location\",\"field\":\"location\",\"size\":\"4\",\"position\":\"1\"},{\"title\":\"Check In - Out\",\"field\":\"date\",\"size\":\"4\",\"position\":\"2\"},{\"title\":\"Guests\",\"field\":\"guests\",\"size\":\"4\",\"position\":\"3\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (120, 'car_page_search_title', 'car', 'Search for car', NULL, NULL, NULL, NULL, NULL, NULL), (121, 'car_page_limit_item', 'car', '9', NULL, NULL, NULL, NULL, NULL, NULL), (122, 'car_page_search_banner', 'car', '62', NULL, NULL, NULL, NULL, NULL, NULL), (123, 'car_layout_search', 'car', 'normal', NULL, NULL, NULL, NULL, NULL, NULL), (124, 'car_enable_review', 'car', '1', NULL, NULL, NULL, NULL, NULL, NULL), (125, 'car_review_approved', 'car', '0', NULL, NULL, NULL, NULL, NULL, NULL), (126, 'car_review_stats', 'car', '[{\"title\":\"Equipment\"},{\"title\":\"Comfortable\"},{\"title\":\"Climate Control\"},{\"title\":\"Facility\"},{\"title\":\"Aftercare\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (127, 'car_booking_buyer_fees', 'car', '[{\"name\":\"Equipment fee\",\"desc\":\"One-time fee charged by host to cover the cost of cleaning their space.\",\"name_ja\":\"\\u30af\\u30ea\\u30fc\\u30cb\\u30f3\\u30b0\\u4ee3\",\"desc_ja\":\"\\u30b9\\u30da\\u30fc\\u30b9\\u3092\\u6383\\u9664\\u3059\\u308b\\u8cbb\\u7528\\u3092\\u30db\\u30b9\\u30c8\\u304c\\u8acb\\u6c42\\u3059\\u308b1\\u56de\\u9650\\u308a\\u306e\\u6599\\u91d1\\u3002\",\"price\":\"100\",\"type\":\"one_time\"},{\"name\":\"Facility fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"200\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (128, 'car_map_search_fields', 'car', '[{\"field\":\"location\",\"attr\":null,\"position\":\"1\"},{\"field\":\"attr\",\"attr\":\"9\",\"position\":\"2\"},{\"field\":\"date\",\"attr\":null,\"position\":\"3\"},{\"field\":\"price\",\"attr\":null,\"position\":\"4\"},{\"field\":\"advance\",\"attr\":null,\"position\":\"5\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (129, 'car_search_fields', 'car', '[{\"title\":\"Location\",\"field\":\"location\",\"size\":\"6\",\"position\":\"1\"},{\"title\":\"From - To\",\"field\":\"date\",\"size\":\"6\",\"position\":\"2\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (130, 'event_page_search_title', 'event', 'Search for event', NULL, NULL, NULL, NULL, NULL, NULL), (131, 'event_page_limit_item', 'event', '9', NULL, NULL, NULL, NULL, NULL, NULL), (132, 'event_page_search_banner', 'event', '161', NULL, NULL, NULL, NULL, NULL, NULL), (133, 'event_layout_search', 'event', 'normal', NULL, NULL, NULL, NULL, NULL, NULL), (134, 'event_enable_review', 'event', '1', NULL, NULL, NULL, NULL, NULL, NULL), (135, 'event_review_approved', 'event', '0', NULL, NULL, NULL, NULL, NULL, NULL), (136, 'event_review_stats', 'event', '[{\"title\":\"Service\"},{\"title\":\"Organization\"},{\"title\":\"Friendliness\"},{\"title\":\"Area Expert\"},{\"title\":\"Safety\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (137, 'event_booking_buyer_fees', 'event', '[{\"name\":\"Service fee\",\"desc\":\"This helps us run our platform and offer services like 24\\/7 support on your trip.\",\"name_ja\":\"\\u30b5\\u30fc\\u30d3\\u30b9\\u6599\",\"desc_ja\":\"\\u3053\\u308c\\u306b\\u3088\\u308a\\u3001\\u5f53\\u793e\\u306e\\u30d7\\u30e9\\u30c3\\u30c8\\u30d5\\u30a9\\u30fc\\u30e0\\u3092\\u5b9f\\u884c\\u3057\\u3001\\u65c5\\u884c\\u4e2d\\u306b\",\"price\":\"100\",\"type\":\"one_time\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (138, 'event_map_search_fields', 'event', '[{\"field\":\"location\",\"attr\":null,\"position\":\"1\"},{\"field\":\"category\",\"attr\":null,\"position\":\"2\"},{\"field\":\"date\",\"attr\":null,\"position\":\"3\"},{\"field\":\"price\",\"attr\":null,\"position\":\"4\"},{\"field\":\"advance\",\"attr\":null,\"position\":\"5\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (139, 'event_search_fields', 'event', '[{\"title\":\"Location\",\"field\":\"location\",\"size\":\"6\",\"position\":\"1\"},{\"title\":\"From - To\",\"field\":\"date\",\"size\":\"6\",\"position\":\"2\"}]', NULL, NULL, NULL, NULL, NULL, NULL), (140, 'update_to_110', NULL, '1', NULL, NULL, NULL, NULL, '2021-08-10 07:39:53', '2021-08-10 07:39:53'), (141, 'update_to_120', NULL, '1', NULL, NULL, NULL, NULL, '2021-08-10 07:39:54', '2021-08-10 07:39:54'), (142, 'update_to_130', NULL, '1', NULL, NULL, NULL, NULL, '2021-08-10 07:39:54', '2021-08-10 07:39:54'), (143, 'update_to_140', NULL, '1', NULL, NULL, NULL, NULL, '2021-08-10 07:39:55', '2021-08-10 07:39:55'), (144, 'update_to_150', NULL, '1', NULL, NULL, NULL, NULL, '2021-08-10 07:39:56', '2021-08-10 07:39:56'), (145, 'update_to_151', NULL, '1', NULL, NULL, NULL, NULL, '2021-08-10 07:39:56', '2021-08-10 07:39:56'), (146, 'update_to_160', NULL, '1', NULL, NULL, NULL, NULL, '2021-08-10 07:39:56', '2021-08-10 07:39:56'), (147, 'booking_enquiry_enable_mail_to_vendor_content', 'enquiry', '<h3>Hello [vendor_name]</h3>\r\n <p>You get new inquiry request from [email]</p>\r\n <p>Name :[name]</p>\r\n <p>Emai:[email]</p>\r\n <p>Phone:[phone]</p>\r\n <p>Content:[note]</p>\r\n <p>Service:[service_link]</p>\r\n <p>Regards,</p>\r\n <p>Booking Core</p>\r\n </div>', NULL, NULL, NULL, NULL, NULL, NULL), (148, 'booking_enquiry_enable_mail_to_admin_content', 'enquiry', '<h3>Hello Administrator</h3>\r\n <p>You get new inquiry request from [email]</p>\r\n <p>Name :[name]</p>\r\n <p>Emai:[email]</p>\r\n <p>Phone:[phone]</p>\r\n <p>Content:[note]</p>\r\n <p>Service:[service_link]</p>\r\n <p>Vendor:[vendor_link]</p>\r\n <p>Regards,</p>\r\n <p>Booking Core</p>', NULL, NULL, NULL, NULL, NULL, NULL), (149, 'update_to_170', NULL, '1', NULL, NULL, NULL, NULL, '2021-08-10 07:39:58', '2021-08-10 07:39:58'), (150, 'check_db_engine', NULL, '1', NULL, NULL, NULL, NULL, '2021-08-10 07:39:58', '2021-08-10 07:39:58'), (151, 'wallet_credit_exchange_rate', NULL, '1', NULL, NULL, NULL, NULL, '2021-08-10 07:39:58', '2021-08-10 07:39:58'), (152, 'wallet_deposit_rate', NULL, '1', NULL, NULL, NULL, NULL, '2021-08-10 07:39:58', '2021-08-10 07:39:58'), (153, 'wallet_deposit_type', NULL, 'list', NULL, NULL, NULL, NULL, '2021-08-10 07:39:58', '2021-08-10 07:39:58'), (154, 'wallet_deposit_lists', NULL, '[{\"name\":\"100$\",\"amount\":100,\"credit\":100},{\"name\":\"Bonus 10%\",\"amount\":500,\"credit\":550},{\"name\":\"Bonus 15%\",\"amount\":1000,\"credit\":1150}]', NULL, NULL, NULL, NULL, '2021-08-10 07:39:58', '2021-08-10 07:39:58'), (155, 'wallet_new_deposit_admin_subject', NULL, 'New credit purchase', NULL, NULL, NULL, NULL, '2021-08-10 07:39:58', '2021-08-10 07:39:58'), (156, 'wallet_new_deposit_admin_content', NULL, '\r\n <h1>Hello [first_name]!</h1>\r\n <p>New order has been made:</p>\r\n <p>User ID: [create_user]</p>\r\n <p>Amount: [amount]</p>\r\n <p>Credit: [credit]</p>\r\n <p>Gateway: [payment_gateway]</p>\r\n <p>Regards,<br>Booking Core</p>', NULL, NULL, NULL, NULL, '2021-08-10 07:39:58', '2021-08-10 07:39:58'), (157, 'wallet_new_deposit_customer_subject', NULL, 'Thank you for your purchasing', NULL, NULL, NULL, NULL, '2021-08-10 07:39:58', '2021-08-10 07:39:58'), (158, 'wallet_new_deposit_customer_content', NULL, '\r\n <h1>Hello [first_name]!</h1>\r\n <p>New order has been made:</p>\r\n <p>User ID: [create_user]</p>\r\n <p>Amount: [amount]</p>\r\n <p>Credit: [credit]</p>\r\n <p>Gateway: [payment_gateway]</p>\r\n <p>Regards,<br>Booking Core</p>', NULL, NULL, NULL, NULL, '2021-08-10 07:39:58', '2021-08-10 07:39:58'), (159, 'wallet_update_deposit_admin_subject', NULL, 'Credit purchase updated', NULL, NULL, NULL, NULL, '2021-08-10 07:39:58', '2021-08-10 07:39:58'), (160, 'wallet_update_deposit_admin_content', NULL, '\r\n <h1>Hello [first_name]!</h1>\r\n <p>Order has been updated:</p>\r\n <p>Order Status: <strong>[status_name]</strong></p>\r\n <p>User ID: [create_user]</p>\r\n <p>Amount: [amount]</p>\r\n <p>Credit: [credit]</p>\r\n <p>Gateway: [payment_gateway]</p>\r\n <p>Regards,<br>Booking Core</p>', NULL, NULL, NULL, NULL, '2021-08-10 07:39:58', '2021-08-10 07:39:58'), (161, 'wallet_update_deposit_customer_subject', NULL, 'Your credit purchase updated', NULL, NULL, NULL, NULL, '2021-08-10 07:39:58', '2021-08-10 07:39:58'), (162, 'wallet_update_deposit_customer_content', NULL, '\r\n <h1>Hello [first_name]!</h1>\r\n <p>Order has been updated:</p>\r\n <p>Order Status: <strong>[status_name]</strong></p>\r\n <p>User ID: [create_user]</p>\r\n <p>Amount: [amount]</p>\r\n <p>Credit: [credit]</p>\r\n <p>Gateway: [payment_gateway]</p>\r\n <p>Regards,<br>Booking Core</p>', NULL, NULL, NULL, NULL, '2021-08-10 07:39:58', '2021-08-10 07:39:58'), (163, 'update_to_181', NULL, '1', NULL, NULL, NULL, NULL, '2021-08-10 07:39:58', '2021-08-10 07:39:58'), (164, 'update_to_182', NULL, '1', NULL, NULL, NULL, NULL, '2021-08-10 07:39:58', '2021-08-10 07:39:58'), (165, 'update_to_190', NULL, '1', NULL, NULL, NULL, NULL, '2021-08-10 07:39:58', '2021-08-10 07:39:58'), (166, 'update_to_200', NULL, '2.0.9', NULL, NULL, NULL, NULL, '2021-08-10 07:39:58', '2021-08-10 07:39:58'), (167, 'site_desc', 'general', '', NULL, 1, 1, NULL, '2021-08-10 07:45:20', '2021-08-10 14:45:32'), (168, 'site_first_day_of_the_weekin_calendar', 'general', '1', NULL, 1, 1, NULL, '2021-08-10 07:45:20', '2021-08-10 14:45:32'), (169, 'enable_rtl', 'general', '', NULL, 1, 1, NULL, '2021-08-10 07:45:20', '2021-08-10 14:45:32'), (170, 'booking_enable_recaptcha', 'booking', '', NULL, 1, NULL, NULL, '2021-08-10 18:18:17', '2021-08-10 18:18:17'), (171, 'booking_term_conditions', 'booking', '', NULL, 1, NULL, NULL, '2021-08-10 18:18:17', '2021-08-10 18:18:17'), (172, 'booking_guest_checkout', 'booking', '', NULL, 1, NULL, NULL, '2021-08-10 18:18:17', '2021-08-10 18:18:17'); -- -------------------------------------------------------- -- -- Struktur dari tabel `core_subscribers` -- CREATE TABLE `core_subscribers` ( `id` bigint(20) UNSIGNED NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `first_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `core_tags` -- CREATE TABLE `core_tags` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `update_user` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `origin_id` bigint(20) DEFAULT NULL, `lang` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `core_tags` -- INSERT INTO `core_tags` (`id`, `name`, `slug`, `content`, `create_user`, `update_user`, `deleted_at`, `origin_id`, `lang`, `created_at`, `updated_at`) VALUES (1, 'park', 'park', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (2, 'National park', 'national-park', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (3, 'Moutain', 'moutain', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (4, 'Travel', 'travel', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (5, 'Summer', 'summer', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'), (6, 'Walking', 'walking', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', '2021-08-10 07:39:33'); -- -------------------------------------------------------- -- -- Struktur dari tabel `core_tag_translations` -- CREATE TABLE `core_tag_translations` ( `id` bigint(20) UNSIGNED NOT NULL, `origin_id` int(10) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `core_templates` -- CREATE TABLE `core_templates` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type_id` int(11) DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `origin_id` bigint(20) DEFAULT NULL, `lang` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `core_templates` -- INSERT INTO `core_templates` (`id`, `title`, `content`, `type_id`, `create_user`, `update_user`, `origin_id`, `lang`, `created_at`, `updated_at`) VALUES (1, 'Home Page', '[{\"type\":\"form_search_all_service\",\"name\":\"Form Search All Service\",\"model\":{\"service_types\":[\"hotel\",\"space\",\"tour\",\"car\",\"event\"],\"title\":\"Hi There!\",\"sub_title\":\"Where would you like to go?\",\"bg_image\":16,\"style\":\"carousel\",\"list_slider\":[{\"_active\":true,\"bg_image\":47},{\"_active\":true,\"bg_image\":16}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"offer_block\",\"name\":\"Offer Block\",\"model\":{\"list_item\":[{\"_active\":false,\"title\":\"Special Offers\",\"desc\":\"Find Your Perfect Hotels Get the best<br>\\nprices on 20,000+ properties<br>\\nthe best prices on\",\"background_image\":17,\"link_title\":\"See Deals\",\"link_more\":\"#\",\"featured_text\":\"HOLIDAY SALE\"},{\"_active\":true,\"title\":\"Newsletters\",\"desc\":\"Join for free and get our <br>\\ntailored newsletters full of <br>\\nhot travel deals.\",\"background_image\":18,\"link_title\":\"Sign Up\",\"link_more\":\"/register\",\"featured_icon\":\"icofont-email\"},{\"_active\":true,\"title\":\"Travel Tips\",\"desc\":\"Tips from our travel experts to <br>\\nmake your next trip even<br>\\nbetter.\",\"background_image\":19,\"link_title\":\"Sign Up\",\"link_more\":\"/register\",\"featured_text\":null,\"featured_icon\":\"icofont-island-alt\"}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_hotel\",\"name\":\"Hotel: List Items\",\"model\":{\"title\":\"Bestseller Listing\",\"desc\":\"Hotel highly rated for thoughtful design\",\"number\":4,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_locations\",\"name\":\"List Locations\",\"model\":{\"service_type\":[\"space\",\"hotel\",\"tour\"],\"title\":\"Top Destinations\",\"desc\":\"It is a long established fact that a reader\",\"number\":6,\"layout\":\"style_4\",\"order\":\"id\",\"order_by\":\"asc\",\"to_location_detail\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_tours\",\"name\":\"Tour: List Items\",\"model\":{\"title\":\"Our best promotion tours\",\"number\":6,\"style\":\"box_shadow\",\"category_id\":\"\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\",\"is_featured\":\"\",\"desc\":\"Most popular destinations\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_space\",\"name\":\"Space: List Items\",\"model\":{\"title\":\"Rental Listing\",\"desc\":\"Homes highly rated for thoughtful design\",\"number\":4,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"desc\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_car\",\"name\":\"Car: List Items\",\"model\":{\"title\":\"Car Trending\",\"desc\":\"Book incredible things to do around the world.\",\"number\":8,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"desc\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true},{\"type\":\"list_event\",\"name\":\"Event: List Items\",\"model\":{\"title\":\"Classical Music Event \",\"desc\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry\",\"number\":4,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"\",\"order_by\":\"\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true},{\"type\": \"list_news\", \"name\": \"News: List Items\", \"model\": {\"title\": \"Read the latest from blog\", \"desc\": \"Contrary to popular belief\", \"number\": 6, \"category_id\": null, \"order\": \"id\", \"order_by\": \"asc\"}, \"component\": \"RegularBlock\", \"open\": true, \"is_container\": false},{\"type\":\"call_to_action\",\"name\":\"Call To Action\",\"model\":{\"title\":\"Know your city?\",\"sub_title\":\"Join 2000+ locals & 1200+ contributors from 3000 cities\",\"link_title\":\"Become Local Expert\",\"link_more\":\"#\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"testimonial\",\"name\":\"List Testimonial\",\"model\":{\"title\":\"Our happy clients\",\"list_item\":[{\"_active\":false,\"name\":\"<NAME>\",\"desc\":\"Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui. \",\"number_star\":5,\"avatar\":1},{\"_active\":false,\"name\":\"<NAME>\",\"desc\":\"Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui. \",\"number_star\":6,\"avatar\":2},{\"_active\":false,\"name\":\"<NAME>\",\"desc\":\"Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui.\",\"number_star\":5,\"avatar\":3}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]', NULL, 1, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL), (2, 'Home Tour', '[{\"type\":\"form_search_tour\",\"name\":\"Tour: Form Search\",\"model\":{\"title\":\"Love where you\'re going\",\"sub_title\":\"Book incredible things to do around the world.\",\"bg_image\":20},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_featured_item\",\"name\":\"List Featured Item\",\"model\":{\"list_item\":[{\"_active\":false,\"title\":\"1,000+ local guides\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":5},{\"_active\":false,\"title\":\"Handcrafted experiences\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":4},{\"_active\":false,\"title\":\"96% happy travelers\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":6}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_tours\",\"name\":\"Tour: List Items\",\"model\":{\"title\":\"Trending Tours\",\"number\":5,\"style\":\"carousel\",\"category_id\":\"\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"desc\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_locations\",\"name\":\"List Locations\",\"model\":{\"title\":\"Top Destinations\",\"number\":5,\"order\":\"id\",\"order_by\":\"desc\",\"service_type\":\"tour\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_tours\",\"name\":\"Tour: List Items\",\"model\":{\"title\":\"Local Experiences You’ll Love\",\"number\":8,\"style\":\"normal\",\"category_id\":\"\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"call_to_action\",\"name\":\"Call To Action\",\"model\":{\"title\":\"Know your city?\",\"sub_title\":\"Join 2000+ locals & 1200+ contributors from 3000 cities\",\"link_title\":\"Become Local Expert\",\"link_more\":\"#\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"testimonial\",\"name\":\"List Testimonial\",\"model\":{\"title\":\"Our happy clients\",\"list_item\":[{\"_active\":false,\"name\":\"<NAME>\",\"desc\":\"Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui. \",\"number_star\":5,\"avatar\":1},{\"_active\":false,\"name\":\"<NAME>\",\"desc\":\"Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui. \",\"number_star\":6,\"avatar\":2},{\"_active\":false,\"name\":\"<NAME>\",\"desc\":\"Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui.\",\"number_star\":5,\"avatar\":3}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]', NULL, 1, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL), (3, 'Home Space', '[{\"type\":\"form_search_space\",\"name\":\"Space: Form Search\",\"model\":{\"title\":\"Find your next rental\",\"sub_title\":\"Book incredible things to do around the world.\",\"bg_image\":61},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_space\",\"name\":\"Space: List Items\",\"model\":{\"title\":\"Recommended Homes\",\"number\":5,\"style\":\"carousel\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\",\"desc\":\"Homes highly rated for thoughtful design\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"space_term_featured_box\",\"name\":\"Space: Term Featured Box\",\"model\":{\"title\":\"Find a Home Type\",\"desc\":\"It is a long established fact that a reader\",\"term_space\":[\"26\",\"27\",\"28\",\"29\",\"30\",\"31\"]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_locations\",\"name\":\"List Locations\",\"model\":{\"service_type\":\"space\",\"title\":\"Top Destinations\",\"number\":6,\"order\":\"id\",\"order_by\":\"desc\",\"layout\":\"style_2\",\"desc\":\"It is a long established fact that a reader\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_space\",\"name\":\"Space: List Items\",\"model\":{\"title\":\" Rental Listing\",\"desc\":\"Homes highly rated for thoughtful design\",\"number\":4,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"desc\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"call_to_action\",\"name\":\"Call To Action\",\"model\":{\"title\":\"Know your city?\",\"sub_title\":\"Join 2000+ locals & 1200+ contributors from 3000 cities\",\"link_title\":\"Become Local Expert\",\"link_more\":\"#\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]', NULL, 1, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL), (4, 'Home Hotel', '[{\"type\":\"form_search_hotel\",\"name\":\"Hotel: Form Search\",\"model\":{\"title\":\"Find Your Perfect Hotels\",\"sub_title\":\"Get the best prices on 20,000+ properties\",\"bg_image\":92},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_featured_item\",\"name\":\"List Featured Item\",\"model\":{\"list_item\":[{\"_active\":false,\"title\":\"20,000+ properties\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":103,\"order\":null},{\"_active\":false,\"title\":\"Trust & Safety\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":104,\"order\":null},{\"_active\":true,\"title\":\"Best Price Guarantee\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":105,\"order\":null}],\"style\":\"normal\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_hotel\",\"name\":\"Hotel: List Items\",\"model\":{\"title\":\"Last Minute Deals\",\"desc\":\"Hotel highly rated for thoughtful design\",\"number\":5,\"style\":\"carousel\",\"location_id\":\"\",\"order\":\"\",\"order_by\":\"\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_locations\",\"name\":\"List Locations\",\"model\":{\"service_type\":\"hotel\",\"title\":\"Top Destinations\",\"desc\":\"It is a long established fact that a reader\",\"number\":6,\"layout\":\"style_3\",\"order\":\"\",\"order_by\":\"\",\"to_location_detail\":false},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"text\",\"name\":\"Text\",\"model\":{\"content\":\"<h2><span style=\\\"color: #1a2b48; font-family: Poppins, sans-serif; font-size: 28px; font-weight: 500; background-color: #ffffff;\\\">Why be a Local Expert</span></h2>\\n<div><span style=\\\"color: #5e6d77; font-family: Poppins, sans-serif; font-size: 10pt; background-color: #ffffff;\\\">Varius massa maecenas et id dictumst mattis</span></div>\",\"class\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_featured_item\",\"name\":\"List Featured Item\",\"model\":{\"list_item\":[{\"_active\":false,\"title\":\"Earn an additional income\",\"sub_title\":\"Ut elit tellus, luctus nec ullamcorper mattis\",\"icon_image\":15,\"order\":null},{\"_active\":false,\"title\":\"Open your network\",\"sub_title\":\"Ut elit tellus, luctus nec ullamcorper mattis\",\"icon_image\":14,\"order\":null},{\"_active\":false,\"title\":\"Practice your language\",\"sub_title\":\"Ut elit tellus, luctus nec ullamcorper mattis\",\"icon_image\":13,\"order\":null}],\"style\":\"style3\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_hotel\",\"name\":\"Hotel: List Items\",\"model\":{\"title\":\"Bestseller Listing\",\"desc\":\"Hotel highly rated for thoughtful design\",\"number\":8,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]', NULL, 1, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL), (5, 'Become a vendor', '[{\"type\":\"vendor_register_form\",\"name\":\"Vendor Register Form\",\"model\":{\"title\":\"Become a vendor\",\"desc\":\"Join our community to unlock your greatest asset and welcome paying guests into your home.\",\"youtube\":\"https://www.youtube.com/watch?v=AmZ0WrEaf34\",\"bg_image\":11},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"text\",\"name\":\"Text\",\"model\":{\"content\":\"<h3><strong>How does it work?</strong></h3>\",\"class\":\"text-center\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_featured_item\",\"name\":\"List Featured Item\",\"model\":{\"list_item\":[{\"_active\":false,\"title\":\"Sign up\",\"sub_title\":\"Click edit button to change this text to change this text\",\"icon_image\":null,\"order\":null},{\"_active\":false,\"title\":\" Add your services\",\"sub_title\":\" Click edit button to change this text to change this text\",\"icon_image\":null,\"order\":null},{\"_active\":true,\"title\":\"Get bookings\",\"sub_title\":\" Click edit button to change this text to change this text\",\"icon_image\":null,\"order\":null}],\"style\":\"style2\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"video_player\",\"name\":\"Video Player\",\"model\":{\"title\":\"Share the beauty of your city\",\"youtube\":\"https://www.youtube.com/watch?v=hHUbLv4ThOo\",\"bg_image\":12},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"text\",\"name\":\"Text\",\"model\":{\"content\":\"<h3><strong>Why be a Local Expert</strong></h3>\",\"class\":\"text-center ptb60\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_featured_item\",\"name\":\"List Featured Item\",\"model\":{\"list_item\":[{\"_active\":false,\"title\":\"Earn an additional income\",\"sub_title\":\" Ut elit tellus, luctus nec ullamcorper mattis\",\"icon_image\":15,\"order\":null},{\"_active\":true,\"title\":\"Open your network\",\"sub_title\":\" Ut elit tellus, luctus nec ullamcorper mattis\",\"icon_image\":14,\"order\":null},{\"_active\":true,\"title\":\"Practice your language\",\"sub_title\":\" Ut elit tellus, luctus nec ullamcorper mattis\",\"icon_image\":13,\"order\":null}],\"style\":\"style3\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"faqs\",\"name\":\"FAQ List\",\"model\":{\"title\":\"FAQs\",\"list_item\":[{\"_active\":false,\"title\":\"How will I receive my payment?\",\"sub_title\":\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},{\"_active\":true,\"title\":\"How do I upload products?\",\"sub_title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"},{\"_active\":true,\"title\":\"How do I update or extend my availabilities?\",\"sub_title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\\n\"},{\"_active\":true,\"title\":\"How do I increase conversion rate?\",\"sub_title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\"}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]', NULL, 1, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL), (6, 'Home Car', '[{\"type\":\"form_search_car\",\"name\":\"Car: Form Search\",\"model\":{\"title\":\"Search Rental Car Deals\",\"sub_title\":\"Book better cars from local hosts across the US and around the world.\",\"bg_image\":122},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_featured_item\",\"name\":\"List Featured Item\",\"model\":{\"list_item\":[{\"_active\":true,\"title\":\"Free Cancellation\",\"sub_title\":\"Morbi semper fames lobortis ac\",\"icon_image\":103,\"order\":null},{\"_active\":true,\"title\":\"No Hidden Costs\",\"sub_title\":\"Morbi semper fames lobortis\",\"icon_image\":104,\"order\":null},{\"_active\":true,\"title\":\"24/7 Customer Care\",\"sub_title\":\"Morbi semper fames lobortis\",\"icon_image\":105,\"order\":null}],\"style\":\"normal\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"car_term_featured_box\",\"name\":\"Car: Term Featured Box\",\"model\":{\"title\":\"Browse by categories\",\"desc\":\"Book incredible things to do around the world.\",\"term_car\":[\"68\",\"67\",\"66\",\"65\",\"64\",\"63\",\"62\",\"61\"]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_car\",\"name\":\"Car: List Items\",\"model\":{\"title\":\"Trending used cars\",\"desc\":\"Book incredible things to do around the world.\",\"number\":8,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"desc\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"how_it_works\",\"name\":\"How It Works\",\"model\":{\"title\":\"How does it work?\",\"list_item\":[{\"_active\":false,\"title\":\"Find The Car\",\"sub_title\":\"Lorem Ipsum is simply dummy text of the printing\",\"icon_image\":132,\"order\":null},{\"_active\":false,\"title\":\"Book It\",\"sub_title\":\"Lorem Ipsum is simply dummy text of the printing\",\"icon_image\":133,\"order\":null},{\"_active\":false,\"title\":\"Grab And Go\",\"sub_title\":\"Lorem Ipsum is simply dummy text of the printing\",\"icon_image\":134,\"order\":null}],\"background_image\":131},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_locations\",\"name\":\"List Locations\",\"model\":{\"service_type\":[\"car\"],\"title\":\"Top destinations\",\"desc\":\"Lorem Ipsum is simply dummy text of the printing\",\"number\":6,\"layout\":\"style_2\",\"order\":\"id\",\"order_by\":\"asc\",\"to_location_detail\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]', NULL, 1, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL), (7, 'Home Tour Agency', '[{\"type\":\"form_search_tour\",\"name\":\"Tour: Form Search\",\"model\":{\"title\":\"Love where you\'re going\",\"sub_title\":\"Book incredible things to do around the world.\",\"bg_image\":20,\"style\":\"carousel_v2\",\"list_slider\":[{\"_active\":true,\"title\":\"Love where you\'re going\",\"desc\":\"Book incredible things to do around the world.\",\"bg_image\":199}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_tours\",\"name\":\"Tour: List Items\",\"model\":{\"title\":\"Go to Venice\",\"number\":5,\"style\":\"carousel_simple\",\"category_id\":\"\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\",\"desc\":\"It is a long established fact that a reader will be distracted by the readable content of a page ...\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"call_to_action\",\"name\":\"Call To Action\",\"model\":{\"title\":\"Sale up for new year\",\"sub_title\":\"Curabitur blandit tempus\",\"link_title\":\"Read More\",\"link_more\":\"#\",\"bg_color\":\"\",\"style\":\"style_2\",\"bg_image\":196},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_tours\",\"name\":\"Tour: List Items\",\"model\":{\"title\":\"Popular tour in the month\",\"number\":8,\"style\":\"carousel\",\"category_id\":\"\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"desc\",\"desc\":\"Local Experiences You’ll Love \",\"is_featured\":true},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"call_to_action\",\"name\":\"Call To Action\",\"model\":{\"title\":\"Enjoy your holiday\",\"sub_title\":\"Curabitur blandit tempus porttitor\",\"link_title\":\"Explore\",\"link_more\":\"#\",\"style\":\"style_3\",\"bg_color\":\"\",\"bg_image\":197},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_featured_item\",\"name\":\"List Featured Item\",\"model\":{\"list_item\":[{\"_active\":true,\"title\":\"1,000+ local guides\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":183},{\"_active\":true,\"title\":\"Handcrafted experiences\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":187},{\"_active\":true,\"title\":\"96% happy travelers\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":185}],\"style\":\"style4\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"box_category_tour\",\"name\":\"Tour: Box Category\",\"model\":{\"title\":\"Top activity\",\"desc\":\"One way to vertically center is to use my-auto\",\"list_item\":[{\"_active\":true,\"category_id\":\"4\",\"image_id\":189},{\"_active\":true,\"category_id\":\"3\",\"image_id\":190},{\"_active\":true,\"category_id\":\"2\",\"image_id\":191},{\"_active\":true,\"category_id\":\"1\",\"image_id\":192},{\"_active\":true,\"category_id\":\"2\",\"image_id\":190}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"client_feedback\",\"name\":\"Client Feedback\",\"model\":{\"title\":\"\",\"image_id\":198,\"list_item\":[{\"_active\":false,\"title\":\"Babila Ebwélé\",\"sub_title\":\"BookingCore\",\"desc\":\"We had 10 days. Iguazu Falls, Rio, and Paraty. We had Orico as a guide for the first 4 days...he was fabulous. \"},{\"_active\":true,\"title\":\"DoQuan\",\"sub_title\":\"Travel\",\"desc\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry\"}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_news\",\"name\":\"News: List Items\",\"model\":{\"title\":\"Recent Articles\",\"desc\":\" One way to vertically center is to use my-auto \",\"number\":3,\"category_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]', NULL, 1, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL), (8, 'Home Page v2', '[{\"type\":\"form_search_all_service\",\"name\":\"Form Search All Service\",\"model\":{\"title_for_car\":\"\",\"title_for_event\":\"\",\"title_for_hotel\":\"\",\"title_for_space\":\"\",\"title_for_tour\":\"\",\"service_types\":[\"hotel\",\"tour\",\"space\",\"event\",\"car\"],\"title\":\"\",\"sub_title\":\"\",\"style\":\"carousel_v2\",\"bg_image\":\"\",\"list_slider\":[{\"_active\":true,\"title\":\"The best tour experience\",\"desc\":\" Without the crowds\",\"bg_image\":194},{\"_active\":true,\"title\":\"The best tour experience\",\"desc\":\"This Place is Alive\",\"bg_image\":193}],\"hide_form_search\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_featured_item\",\"name\":\"List Featured Item\",\"model\":{\"list_item\":[{\"_active\":true,\"title\":\"BEST SELECTION\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":184,\"order\":null},{\"_active\":true,\"title\":\"BEST PRICE GUARANTEE\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":186,\"order\":null},{\"_active\":true,\"title\":\"24/7 SUPPORT\",\"sub_title\":\"Morbi semper fames lobortis ac hac penatibus\",\"icon_image\":188,\"order\":null}],\"style\":\"style5\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_hotel\",\"name\":\"Hotel: List Items\",\"model\":{\"title\":\"Hotel Best\",\"desc\":\"Morbi semper fames lobortis ac hac penatibus\",\"number\":\"\",\"style\":\"carousel\",\"location_id\":\"\",\"order\":\"\",\"order_by\":\"\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"call_to_action\",\"name\":\"Call To Action\",\"model\":{\"title\":\"Discount 50% Off\",\"sub_title\":\"Curabitur blandit tempus porttitor\",\"link_title\":\"Read More\",\"link_more\":\"#\",\"style\":\"style_2\",\"bg_color\":\"\",\"bg_image\":195},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"space_term_featured_box\",\"name\":\"Space: Term Featured Box\",\"model\":{\"title\":\"Top Comfort Service\",\"desc\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry\",\"term_space\":[\"27\",\"28\",\"29\",\"30\",\"31\",\"26\"]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_space\",\"name\":\"Space: List Items\",\"model\":{\"title\":\"Service Featured Phoenix Resort\",\"desc\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form\",\"number\":8,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"\",\"order_by\":\"\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"client_feedback\",\"name\":\"Client Feedback\",\"model\":{\"image_id\":198,\"list_item\":[{\"_active\":true,\"title\":\"DoQuan\",\"sub_title\":\"Travel\",\"desc\":\"Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui. Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui. Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui. Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui. \"},{\"_active\":true,\"title\":\"HoangAnh\",\"sub_title\":\"Travel\",\"desc\":\"Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui. Faucibus tristique felis potenti ultrices ornare rhoncus semper hac facilisi Rutrum tellus lorem sem velit nisi non pharetra in dui. \"}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_locations\",\"name\":\"List Locations\",\"model\":{\"service_type\":[\"hotel\",\"space\",\"tour\"],\"title\":\"Travel Highlights\",\"desc\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry\",\"number\":3,\"layout\":\"style_4\",\"order\":\"id\",\"order_by\":\"asc\",\"custom_ids\":\"\",\"to_location_detail\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_tours\",\"name\":\"Tour: List Items\",\"model\":{\"title\":\"Viet Nam Travel\",\"desc\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry\",\"number\":5,\"style\":\"normal\",\"category_id\":\"\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\",\"is_featured\":true},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_news\",\"name\":\"News: List Items\",\"model\":{\"title\":\"Travel News\",\"desc\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry\",\"number\":3,\"category_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]', NULL, 1, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `core_template_translations` -- CREATE TABLE `core_template_translations` ( `id` bigint(20) UNSIGNED NOT NULL, `origin_id` int(10) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `core_template_translations` -- INSERT INTO `core_template_translations` (`id`, `origin_id`, `locale`, `title`, `content`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1, 1, 'ja', 'Home Page', '[{\"type\":\"form_search_all_service\",\"name\":\"Form Search All Service\",\"model\":{\"service_types\":[\"hotel\",\"space\",\"tour\",\"car\"],\"title\":\"こんにちは!\",\"sub_title\":\"どこに行きたい?\",\"bg_image\":16},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"offer_block\",\"name\":\"Offer Block\",\"model\":{\"list_item\":[{\"_active\":true,\"title\":\"特別オファー\",\"desc\":\"最適なホテルを探す<br>\\n20,000以上の物件の価格<br>\\n上の最高の価格\",\"background_image\":17,\"link_title\":\"取引\",\"link_more\":\"#\",\"featured_text\":\"ホリデーセール\"},{\"_active\":true,\"title\":\"ニュースレター\",\"desc\":\"無料で参加して取得 <br>\\nに合わせたニュースレター<br>\\nホット旅行情報。\",\"background_image\":18,\"link_title\":\"サインアップ\",\"link_more\":\"/register\",\"featured_icon\":\"icofont-email\"},{\"_active\":true,\"title\":\"旅行のヒント\",\"desc\":\"旅行の専門家からのヒント <br>\\nあなたの次の<br>\\nより良い。\",\"background_image\":19,\"link_title\":\"サインアップ\",\"link_more\":\"/register\",\"featured_text\":null,\"featured_icon\":\"icofont-island-alt\"}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_hotel\",\"name\":\"Hotel: List Items\",\"model\":{\"title\":\"ベストセラーリスト\",\"desc\":\"思慮深いデザインで高い評価を得ているホテル\",\"number\":4,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_locations\",\"name\":\"List Locations\",\"model\":{\"service_type\":[\"space\",\"hotel\",\"tour\"],\"title\":\"人気の目的地\",\"desc\":\"読者が\",\"number\":6,\"layout\":\"style_4\",\"order\":\"id\",\"order_by\":\"asc\",\"to_location_detail\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_tours\",\"name\":\"Tour: List Items\",\"model\":{\"title\":\"最高のプロモーションツアー\",\"number\":6,\"style\":\"box_shadow\",\"category_id\":\"\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\",\"is_featured\":\"\",\"desc\":\"最も人気のある目的地\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_space\",\"name\":\"Space: List Items\",\"model\":{\"title\":\"賃貸物件\",\"desc\":\"思慮深いデザインで高い評価を受けている家\",\"number\":4,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"desc\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_car\",\"name\":\"Car: List Items\",\"model\":{\"title\":\"Car Trending\",\"desc\":\"Book incredible things to do around the world.\",\"number\":8,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"desc\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true},{\"type\": \"list_news\", \"name\": \"News: List Items\", \"model\": {\"title\": \"Read the latest from blog\", \"desc\": \"Contrary to popular belief\", \"number\": 6, \"category_id\": null, \"order\": \"id\", \"order_by\": \"asc\"}, \"component\": \"RegularBlock\", \"open\": true, \"is_container\": false},{\"type\":\"call_to_action\",\"name\":\"Call To Action\",\"model\":{\"title\":\"あなたの街を知?\",\"sub_title\":\"3000以上の都市から2000人以上の地元民と\",\"link_title\":\"ローカルエ\",\"link_more\":\"#\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"testimonial\",\"name\":\"List Testimonial\",\"model\":{\"title\":\"私たちの幸せなクライアント\",\"list_item\":[{\"_active\":false,\"name\":\"<NAME>\",\"desc\":\"右ずへやん間申ゃ投法けゃイ仙一もと政情ルた食的て代下ずせに丈律ルラモト聞探チト棋90績ム的社ず置攻景リフノケ内兼唱堅ゃフぼ。場ルアハ美\",\"number_star\":5,\"avatar\":1},{\"_active\":false,\"name\":\"<NAME>\",\"desc\":\"右ずへやん間申ゃ投法けゃイ仙一もと政情ルた食的て代下ずせに丈律ルラモト聞探チト棋90績ム的社ず置攻景リフノケ内兼唱堅ゃフぼ。場ルアハ美\",\"number_star\":6,\"avatar\":2},{\"_active\":true,\"name\":\"<NAME>\",\"desc\":\"右ずへやん間申ゃ投法けゃイ仙一もと政情ルた食的て代下ずせに丈律ルラモト聞探チト棋90績ム的社ず置攻景リフノケ内兼唱堅ゃフぼ。場ルアハ美\",\"number_star\":5,\"avatar\":3}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]', 1, NULL, '2021-08-10 07:39:33', NULL), (2, 2, 'ja', 'Home Tour', '[{\"type\":\"form_search_tour\",\"name\":\"Tour: Form Search\",\"model\":{\"title\":\"どこへ行くのが大好き\",\"sub_title\":\"世界中で信じられないようなことを予約しましょう。\",\"bg_image\":20},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_featured_item\",\"name\":\"List Featured Item\",\"model\":{\"list_item\":[{\"_active\":true,\"title\":\"1,000+ ローカルガイド\",\"sub_title\":\"プロのツアーガイドとーガイドとーガイドと 験。 光の\",\"icon_image\":5},{\"_active\":true,\"title\":\"手作りの体験\",\"sub_title\":\"プロのツアーガイドとーガイドとーガイドと 験。 光の\",\"icon_image\":4},{\"_active\":true,\"title\":\"96% 幸せな旅行者\",\"sub_title\":\"プロのツアーガイドとーガイドとーガイドと 験。 光の\",\"icon_image\":6}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_tours\",\"name\":\"Tour: List Items\",\"model\":{\"title\":\"トレンドツアー\",\"number\":5,\"style\":\"carousel\",\"category_id\":\"\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"desc\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_locations\",\"name\":\"List Locations\",\"model\":{\"title\":\"人気の目的地\",\"number\":5,\"order\":\"id\",\"order_by\":\"desc\",\"service_type\":\"tour\",\"desc\":\"\",\"layout\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_tours\",\"name\":\"Tour: List Items\",\"model\":{\"title\":\"あなたが好きになるローカル体験\",\"number\":8,\"style\":\"normal\",\"category_id\":\"\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"call_to_action\",\"name\":\"Call To Action\",\"model\":{\"title\":\"っていますか?\",\"sub_title\":\"3000以上の都市から2000人以上の地元民と1200人以上の貢献者に参加する\",\"link_title\":\"ローカルエ\",\"link_more\":\"#\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"testimonial\",\"name\":\"List Testimonial\",\"model\":{\"title\":\"私たちの幸せなクライアント\",\"list_item\":[{\"_active\":false,\"name\":\"<NAME>\",\"desc\":\"融づ苦佐とき百配ほづあ禁安テクミ真覧チヱフ行乗ぱたば外味ナ演庭コヲ旅見ヨコ優成コネ治確はろね訪来終島抄がん。\",\"number_star\":5,\"avatar\":1},{\"_active\":false,\"name\":\"<NAME>\",\"desc\":\"融づ苦佐とき百配ほづあ禁安テクミ真覧チヱフ行乗ぱたば外味ナ演庭コヲ旅見ヨコ優成コネ治確はろね訪来終島抄がん。\",\"number_star\":6,\"avatar\":2},{\"_active\":true,\"name\":\"<NAME>\",\"desc\":\"右ずへやん間申ゃ投法けゃイ仙一もと政情ルた食的て代下ずせに丈律ルラモト聞探チト棋90績ム的社ず置攻景リフノケ内兼唱堅ゃフぼ。場ルアハ美\",\"number_star\":5,\"avatar\":3}]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]', 1, NULL, '2021-08-10 07:39:33', NULL), (3, 3, 'ja', 'Home Space', '[{\"type\":\"form_search_space\",\"name\":\"Space: Form Search\",\"model\":{\"title\":\"次のレンタルを探す\",\"sub_title\":\"世界中で信じられないようなことを予約しましょう。\",\"bg_image\":61},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_space\",\"name\":\"Space: List Items\",\"model\":{\"title\":\"おすすめの家\",\"number\":5,\"style\":\"carousel\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\",\"desc\":\"思慮深いデザインで高い評価を受けている家\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"space_term_featured_box\",\"name\":\"Space: Term Featured Box\",\"model\":{\"title\":\"ホームタイプを見つける\",\"desc\":\"これは、読者はその長い既成の事実であります\",\"term_space\":[\"26\",\"27\",\"28\",\"29\",\"30\",\"31\"]},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_locations\",\"name\":\"List Locations\",\"model\":{\"service_type\":\"space\",\"title\":\"人気の目的地\",\"number\":6,\"order\":\"id\",\"order_by\":\"desc\",\"layout\":\"style_2\",\"desc\":\"これは、読者はその長い既成の事実であります\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_space\",\"name\":\"Space: List Items\",\"model\":{\"title\":\"賃貸物件\",\"desc\":\"思慮深いデザインで高い評価を受けている家\",\"number\":4,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"desc\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"call_to_action\",\"name\":\"Call To Action\",\"model\":{\"title\":\"っていますか?\",\"sub_title\":\"3000以上の都市から2000人以上の地元民と1200人以上の貢献者に参加する\",\"link_title\":\"ローカルエ\",\"link_more\":\"#\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]', 1, NULL, '2021-08-10 07:39:33', NULL), (4, 4, 'ja', 'Home Hotel', '[{\"type\":\"form_search_hotel\",\"name\":\"Hotel: Form Search\",\"model\":{\"title\":\"最適なホテルを探す\",\"sub_title\":\"20,000以上のプロパティで最高の価格を取得\",\"bg_image\":92},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_featured_item\",\"name\":\"List Featured Item\",\"model\":{\"list_item\":[{\"_active\":false,\"title\":\"20,000以上のプロパティ\",\"sub_title\":\"これは飢饉は常にlobortis交流pede Suspendisseたです\",\"icon_image\":103,\"order\":null},{\"_active\":false,\"title\":\"信頼と安全性\",\"sub_title\":\"これは飢饉は常にlobortis交流pede Suspendisseたです\",\"icon_image\":104,\"order\":null},{\"_active\":false,\"title\":\"ベストプライス保証\",\"sub_title\":\"これは飢饉は常にlobortis交流pede Suspendisseたです\",\"icon_image\":105,\"order\":null}],\"style\":\"normal\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_hotel\",\"name\":\"Hotel: List Items\",\"model\":{\"title\":\"直前予約\",\"desc\":\"思慮深いデザインで高い評価を得ているホテル\",\"number\":5,\"style\":\"carousel\",\"location_id\":\"\",\"order\":\"\",\"order_by\":\"\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_locations\",\"name\":\"List Locations\",\"model\":{\"service_type\":\"hotel\",\"title\":\"人気の目的地\",\"desc\":\"それは長い間確立された事実であり、\",\"number\":6,\"layout\":\"style_3\",\"order\":\"\",\"order_by\":\"\",\"to_location_detail\":false},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"text\",\"name\":\"Text\",\"model\":{\"content\":\"<h2><span style=\\\"color: #1a2b48; font-family: Poppins, sans-serif; font-size: 28px; font-weight: 500; background-color: #ffffff;\\\">ローカルエキスパートになる理由</span></h2>\\n<div><span style=\\\"color: #5e6d77; font-family: Poppins, sans-serif; font-size: 10pt; background-color: #ffffff;\\\">様々な質量マエケナスとその格言不動産</span></div>\\n<div id=\\\"gtx-trans\\\" style=\\\"position: absolute; left: -118px; top: 55.8125px;\\\">\\n<div class=\\\"gtx-trans-icon\\\">&nbsp;</div>\\n</div>\",\"class\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_featured_item\",\"name\":\"List Featured Item\",\"model\":{\"list_item\":[{\"_active\":false,\"title\":\"追加の収入を得る\",\"sub_title\":\"Ut elit tellus, luctus nec ullamcorper mattis\",\"icon_image\":15,\"order\":null},{\"_active\":false,\"title\":\"ネットワークを開く\",\"sub_title\":\"Ut elit tellus, luctus nec ullamcorper mattis\",\"icon_image\":14,\"order\":null},{\"_active\":false,\"title\":\"あなたの言語を練習する\",\"sub_title\":\"Ut elit tellus, luctus nec ullamcorper mattis\",\"icon_image\":13,\"order\":null}],\"style\":\"style3\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false},{\"type\":\"list_hotel\",\"name\":\"Hotel: List Items\",\"model\":{\"title\":\"ベストセラーリスト\",\"desc\":\"思慮深いデザインで高い評価を得ているホテル\",\"number\":8,\"style\":\"normal\",\"location_id\":\"\",\"order\":\"id\",\"order_by\":\"asc\",\"is_featured\":\"\"},\"component\":\"RegularBlock\",\"open\":true,\"is_container\":false}]', 1, NULL, '2021-08-10 07:39:33', NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `core_translations` -- CREATE TABLE `core_translations` ( `id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `string` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` bigint(20) DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `last_build_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `core_vendor_plans` -- CREATE TABLE `core_vendor_plans` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `base_commission` int(11) NOT NULL, `status` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `publish_date` datetime DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `core_vendor_plan_meta` -- CREATE TABLE `core_vendor_plan_meta` ( `id` bigint(20) UNSIGNED NOT NULL, `vendor_plan_id` int(11) NOT NULL, `post_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `enable` tinyint(4) DEFAULT NULL, `maximum_create` int(11) DEFAULT NULL, `auto_publish` tinyint(4) DEFAULT NULL, `commission` int(11) DEFAULT NULL, `create_user` bigint(20) DEFAULT NULL, `update_user` bigint(20) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `expertise` -- CREATE TABLE `expertise` ( `id` int(11) NOT NULL, `title` varchar(255) NOT NULL, `sub` varchar(255) NOT NULL, `image` varchar(255) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `expertise` -- INSERT INTO `expertise` (`id`, `title`, `sub`, `image`) VALUES (1, 'Test Title', '<p>Test</p>\r\n', ''), (2, 'Test Yuk', '<p>Test Yuk</p>\r\n', ''); -- -------------------------------------------------------- -- -- Struktur dari tabel `favorites` -- CREATE TABLE `favorites` ( `id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `favorite_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `location_category` -- CREATE TABLE `location_category` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `icon_class` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `_lft` int(10) UNSIGNED NOT NULL DEFAULT 0, `_rgt` int(10) UNSIGNED NOT NULL DEFAULT 0, `parent_id` int(10) UNSIGNED DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `origin_id` bigint(20) DEFAULT NULL, `lang` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `location_category` -- INSERT INTO `location_category` (`id`, `name`, `icon_class`, `content`, `slug`, `status`, `_lft`, `_rgt`, `parent_id`, `create_user`, `update_user`, `deleted_at`, `origin_id`, `lang`, `created_at`, `updated_at`) VALUES (1, 'Education', 'icofont-education', NULL, NULL, 'publish', 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (2, 'Health', 'fa fa-hospital-o', NULL, NULL, 'publish', 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (3, 'Transportation', 'fa fa-subway', NULL, NULL, 'publish', 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `location_category_translations` -- CREATE TABLE `location_category_translations` ( `id` bigint(20) UNSIGNED NOT NULL, `origin_id` bigint(20) DEFAULT NULL, `locale` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `media_files` -- CREATE TABLE `media_files` ( `id` bigint(20) UNSIGNED NOT NULL, `file_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file_path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file_size` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file_extension` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `app_id` int(11) DEFAULT NULL, `app_user_id` int(11) DEFAULT NULL, `file_width` int(11) DEFAULT NULL, `file_height` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `media_files` -- INSERT INTO `media_files` (`id`, `file_name`, `file_path`, `file_size`, `file_type`, `file_extension`, `create_user`, `update_user`, `deleted_at`, `app_id`, `app_user_id`, `file_width`, `file_height`, `created_at`, `updated_at`) VALUES (1, 'avatar', 'demo/general/avatar.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (2, 'avatar-2', 'demo/general/avatar-2.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (3, 'avatar-3', 'demo/general/avatar-3.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (4, 'ico_adventurous', 'demo/general/ico_adventurous.png', NULL, 'image/png', 'png', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (5, 'ico_localguide', 'demo/general/ico_localguide.png', NULL, 'image/png', 'png', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (6, 'ico_maps', 'demo/general/ico_maps.png', NULL, 'image/png', 'png', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (7, 'ico_paymethod', 'demo/general/ico_paymethod.png', NULL, 'image/png', 'png', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (8, 'logo', 'demo/general/logo.svg', NULL, 'image/svg+xml', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (9, 'bg_contact', 'demo/general/bg-contact.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (10, 'favicon', 'demo/general/favicon.png', NULL, 'image/png', 'png', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (11, 'thumb-vendor-register', 'demo/general/thumb-vendor-register.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (12, 'bg-video-vendor-register1', 'demo/general/bg-video-vendor-register1.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (13, 'ico_chat_1', 'demo/general/ico_chat_1.svg', NULL, 'image/svg', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (14, 'ico_friendship_1', 'demo/general/ico_friendship_1.svg', NULL, 'image/svg', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (15, 'ico_piggy-bank_1', 'demo/general/ico_piggy-bank_1.svg', NULL, 'image/svg', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (16, 'home-mix', 'demo/general/home-mix.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (17, 'image_home_mix_1', 'demo/general/image_home_mix_1.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (18, 'image_home_mix_2', 'demo/general/image_home_mix_2.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (19, 'image_home_mix_3', 'demo/general/image_home_mix_3.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (20, 'banner-search', 'demo/tour/banner-search.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (21, 'tour-1', 'demo/tour/tour-1.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (22, 'tour-2', 'demo/tour/tour-2.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (23, 'tour-3', 'demo/tour/tour-3.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (24, 'tour-4', 'demo/tour/tour-4.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (25, 'tour-5', 'demo/tour/tour-5.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (26, 'tour-6', 'demo/tour/tour-6.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (27, 'tour-7', 'demo/tour/tour-7.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (28, 'tour-8', 'demo/tour/tour-8.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (29, 'tour-9', 'demo/tour/tour-9.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (30, 'tour-10', 'demo/tour/tour-10.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (31, 'tour-11', 'demo/tour/tour-11.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (32, 'tour-12', 'demo/tour/tour-12.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (33, 'tour-13', 'demo/tour/tour-13.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (34, 'tour-14', 'demo/tour/tour-14.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (35, 'tour-15', 'demo/tour/tour-15.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (36, 'tour-16', 'demo/tour/tour-16.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (37, 'gallery-1', 'demo/tour/gallery-1.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (38, 'gallery-2', 'demo/tour/gallery-2.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (39, 'gallery-3', 'demo/tour/gallery-3.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (40, 'gallery-4', 'demo/tour/gallery-4.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (41, 'gallery-5', 'demo/tour/gallery-5.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (42, 'gallery-6', 'demo/tour/gallery-6.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (43, 'gallery-7', 'demo/tour/gallery-7.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (44, 'banner-tour-1', 'demo/tour/banner-detail/banner-tour-1.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (45, 'banner-tour-2', 'demo/tour/banner-detail/banner-tour-2.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (46, 'banner-tour-3', 'demo/tour/banner-detail/banner-tour-3.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (47, 'banner-tour-4', 'demo/tour/banner-detail/banner-tour-4.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (48, 'banner-tour-5', 'demo/tour/banner-detail/banner-tour-5.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (49, 'banner-tour-6', 'demo/tour/banner-detail/banner-tour-6.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (50, 'banner-tour-7', 'demo/tour/banner-detail/banner-tour-7.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (51, 'banner-tour-8', 'demo/tour/banner-detail/banner-tour-8.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (52, 'banner-tour-9', 'demo/tour/banner-detail/banner-tour-9.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (53, 'banner-tour-10', 'demo/tour/banner-detail/banner-tour-10.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (54, 'banner-tour-11', 'demo/tour/banner-detail/banner-tour-11.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (55, 'banner-tour-12', 'demo/tour/banner-detail/banner-tour-12.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (56, 'banner-tour-13', 'demo/tour/banner-detail/banner-tour-13.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (57, 'banner-tour-14', 'demo/tour/banner-detail/banner-tour-14.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (58, 'banner-tour-15', 'demo/tour/banner-detail/banner-tour-15.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (59, 'banner-tour-16', 'demo/tour/banner-detail/banner-tour-16.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (60, 'banner-tour-17', 'demo/tour/banner-detail/banner-tour-17.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (61, 'banner-search-space', 'demo/space/banner-search-space.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (62, 'banner-search-space-2', 'demo/space/banner-search-space-2.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (63, 'space-1', 'demo/space/space-1.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (64, 'space-2', 'demo/space/space-2.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (65, 'space-3', 'demo/space/space-3.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (66, 'space-4', 'demo/space/space-4.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (67, 'space-5', 'demo/space/space-5.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (68, 'space-6', 'demo/space/space-6.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (69, 'space-7', 'demo/space/space-7.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (70, 'space-8', 'demo/space/space-8.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (71, 'space-9', 'demo/space/space-9.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (72, 'space-10', 'demo/space/space-10.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (73, 'space-11', 'demo/space/space-11.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (74, 'space-12', 'demo/space/space-12.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (75, 'space-13', 'demo/space/space-13.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (76, 'space-gallery-1', 'demo/space/gallery/space-gallery-1.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (77, 'space-gallery-2', 'demo/space/gallery/space-gallery-2.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (78, 'space-gallery-3', 'demo/space/gallery/space-gallery-3.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (79, 'space-gallery-4', 'demo/space/gallery/space-gallery-4.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (80, 'space-gallery-5', 'demo/space/gallery/space-gallery-5.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (81, 'space-gallery-6', 'demo/space/gallery/space-gallery-6.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (82, 'space-gallery-7', 'demo/space/gallery/space-gallery-7.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (83, 'space-single-1', 'demo/space/space-single-1.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (84, 'space-single-2', 'demo/space/space-single-2.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (85, 'space-single-3', 'demo/space/space-single-3.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (86, 'icon-space-box-1', 'demo/space/featured-box/icon-space-box-1.png', NULL, 'image/png', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (87, 'icon-space-box-2', 'demo/space/featured-box/icon-space-box-2.png', NULL, 'image/png', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (88, 'icon-space-box-3', 'demo/space/featured-box/icon-space-box-3.png', NULL, 'image/png', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (89, 'icon-space-box-4', 'demo/space/featured-box/icon-space-box-4.png', NULL, 'image/png', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (90, 'icon-space-box-5', 'demo/space/featured-box/icon-space-box-5.png', NULL, 'image/png', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (91, 'icon-space-box-6', 'demo/space/featured-box/icon-space-box-6.png', NULL, 'image/png', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (92, 'banner-search-hotel', 'demo/hotel/banner-search-hotel.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (93, 'hotel-featured-1', 'demo/hotel/hotel-featured-1.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (94, 'hotel-featured-2', 'demo/hotel/hotel-featured-2.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (95, 'hotel-featured-3', 'demo/hotel/hotel-featured-3.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (96, 'hotel-featured-4', 'demo/hotel/hotel-featured-4.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (97, 'hotel-gallery-1', 'demo/hotel/gallery/hotel-gallery-1.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (98, 'hotel-gallery-2', 'demo/hotel/gallery/hotel-gallery-2.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (99, 'hotel-gallery-3', 'demo/hotel/gallery/hotel-gallery-3.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (100, 'hotel-gallery-4', 'demo/hotel/gallery/hotel-gallery-4.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (101, 'hotel-gallery-5', 'demo/hotel/gallery/hotel-gallery-5.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (102, 'hotel-gallery-6', 'demo/hotel/gallery/hotel-gallery-6.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (103, 'hotel-icon-1', 'demo/hotel/hotel-icon-1.svg', NULL, 'image/svg', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (104, 'hotel-icon-2', 'demo/hotel/hotel-icon-2.svg', NULL, 'image/svg', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (105, 'hotel-icon-3', 'demo/hotel/hotel-icon-3.svg', NULL, 'image/svg', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (106, 'location-1', 'demo/location/location-1.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (107, 'location-2', 'demo/location/location-2.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (108, 'location-3', 'demo/location/location-3.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (109, 'location-4', 'demo/location/location-4.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (110, 'location-5', 'demo/location/location-5.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (111, 'banner-location-1', 'demo/location/banner-detail/banner-location-1.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (112, 'trip-idea-1', 'demo/location/trip-idea/trip-idea-1.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (113, 'trip-idea-2', 'demo/location/trip-idea/trip-idea-2.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (114, 'news-1', 'demo/news/news-1.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (115, 'news-2', 'demo/news/news-2.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (116, 'news-3', 'demo/news/news-3.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (117, 'news-4', 'demo/news/news-4.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (118, 'news-5', 'demo/news/news-5.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (119, 'news-6', 'demo/news/news-6.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (120, 'news-7', 'demo/news/news-7.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (121, 'news-banner', 'demo/news/news-banner.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (122, 'banner-search-car', 'demo/car/banner-search-car.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (123, 'Convertibles', 'demo/car/terms/convertibles.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (124, 'Coupes', 'demo/car/terms/couple.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (125, 'Hatchbacks', 'demo/car/terms/hatchback.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (126, 'Minivans', 'demo/car/terms/minivans.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (127, 'Sedan', 'demo/car/terms/sedan.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (128, 'SUVs', 'demo/car/terms/suv.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (129, 'Trucks', 'demo/car/terms/trucks.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (130, 'Wagons', 'demo/car/terms/wagons.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (131, 'home-car-bg-1', 'demo/car/home-car-bg-1.png', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (132, 'number-1', 'demo/car/number-1.svg', NULL, 'image/svg', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (133, 'number-2', 'demo/car/number-2.svg', NULL, 'image/svg', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (134, 'number-3', 'demo/car/number-3.svg', NULL, 'image/svg', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (135, 'banner-car-single', 'demo/car/banner-single.jpg', NULL, 'image/jpg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (136, 'Airbag', 'demo/car/feature/Airbag.svg', NULL, 'image/svg', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (137, 'FM Radio', 'demo/car/feature/Radio.svg', NULL, 'image/svg', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (138, 'Sensor', 'demo/car/feature/Sensor.svg', NULL, 'image/svg', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (139, 'Speed Km', 'demo/car/feature/Speed.svg', NULL, 'image/svg', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (140, 'Steering Wheel', 'demo/car/feature/Steering.svg', NULL, 'image/svg', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (141, 'Power Windows', 'demo/car/feature/Windows.svg', NULL, 'image/svg', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (142, 'car-1', 'demo/car/car-1.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (143, 'car-2', 'demo/car/car-2.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (144, 'car-3', 'demo/car/car-3.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (145, 'car-4', 'demo/car/car-4.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (146, 'car-5', 'demo/car/car-5.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (147, 'car-6', 'demo/car/car-6.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (148, 'car-7', 'demo/car/car-7.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (149, 'car-8', 'demo/car/car-8.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (150, 'car-9', 'demo/car/car-9.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (151, 'car-10', 'demo/car/car-10.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (152, 'car-11', 'demo/car/car-11.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (153, 'car-12', 'demo/car/car-12.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (154, 'car-gallery-1', 'demo/car/gallery-1.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (155, 'car-gallery-2', 'demo/car/gallery-2.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (156, 'car-gallery-3', 'demo/car/gallery-3.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (157, 'car-gallery-4', 'demo/car/gallery-4.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (158, 'car-gallery-5', 'demo/car/gallery-5.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (159, 'car-gallery-6', 'demo/car/gallery-6.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (160, 'car-gallery-7', 'demo/car/gallery-7.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (161, 'banner-search-event', 'demo/event/banner-search.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (162, 'event-1', 'demo/event/event-1.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (163, 'event-2', 'demo/event/event-2.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (164, 'event-3', 'demo/event/event-3.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (165, 'event-4', 'demo/event/event-4.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (166, 'event-5', 'demo/event/event-5.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (167, 'event-6', 'demo/event/event-6.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (168, 'event-7', 'demo/event/event-7.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (169, 'event-8', 'demo/event/event-8.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (170, 'event-9', 'demo/event/event-9.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (171, 'event-10', 'demo/event/event-10.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (172, 'event-11', 'demo/event/event-11.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (173, 'event-12', 'demo/event/event-12.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (174, 'gallery-event-1', 'demo/event/gallery-1.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (175, 'gallery-event-2', 'demo/event/gallery-2.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (176, 'gallery-event-3', 'demo/event/gallery-3.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (177, 'gallery-event-4', 'demo/event/gallery-4.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (178, 'gallery-event-5', 'demo/event/gallery-5.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (179, 'gallery-event-6', 'demo/event/gallery-6.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (180, 'banner-event-1', 'demo/event/banner-detail/banner-event-1.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (181, 'banner-event-2', 'demo/event/banner-detail/banner-event-2.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (182, 'banner-event-3', 'demo/event/banner-detail/banner-event-3.jpg', NULL, 'image/jpeg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (183, 'icon_global', 'demo/general/icon_global.svg', NULL, 'image/svg', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (184, 'icon_global_white', 'demo/general/icon_global_white.svg', NULL, 'image/svg', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (185, 'icon_price', 'demo/general/icon_price.svg', NULL, 'image/svg', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (186, 'icon_price_white', 'demo/general/icon_price_white.svg', NULL, 'image/svg', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (187, 'icon_support', 'demo/general/icon_support.svg', NULL, 'image/svg', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (188, 'icon_support_white', 'demo/general/icon_support_white.svg', NULL, 'image/svg', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (189, 'box-tour-1', 'demo/tour/box-tour-1.png', NULL, 'image/png', 'png', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (190, 'box-tour-2', 'demo/tour/box-tour-2.png', NULL, 'image/png', 'png', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (191, 'box-tour-3', 'demo/tour/box-tour-3.png', NULL, 'image/png', 'png', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (192, 'box-tour-4', 'demo/tour/box-tour-4.png', NULL, 'image/png', 'png', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (193, 'banner-new-1', 'demo/general/banner-new-1.jpg', NULL, 'image/jpg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (194, 'banner-new-2', 'demo/general/banner-new-2.jpg', NULL, 'image/jpg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (195, 'call-to-action-bg-1', 'demo/general/call-to-action-bg-1.jpg', NULL, 'image/jpg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (196, 'call-to-action-bg-2', 'demo/general/call-to-action-bg-2.png', NULL, 'image/png', 'png', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (197, 'call-to-action-bg-3', 'demo/general/call-to-action-bg-3.png', NULL, 'image/png', 'png', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (198, 'customer-feedback', 'demo/general/customer-feedback.jpg', NULL, 'image/jpg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (199, 'customer-feedback-2', 'demo/general/customer-feedback-2.jpg', NULL, 'image/jpg', 'jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (200, 'logo-white', 'demo/general/logo_white.svg', NULL, 'image/svg', 'svg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (208, 'webpnet-resizeimage-removebg-preview', '0000/1/2021/08/10/webpnet-resizeimage-removebg-preview.png', '7536', 'image/png', 'png', 1, NULL, NULL, NULL, NULL, 148, 43, '2021-08-10 15:13:25', '2021-08-10 15:13:25'), (209, 'download', '0000/1/2021/08/10/download.jpg', '5906', 'image/jpeg', 'jpg', 1, NULL, NULL, NULL, NULL, 225, 225, '2021-08-10 15:13:59', '2021-08-10 15:13:59'); -- -------------------------------------------------------- -- -- Struktur dari tabel `messages` -- CREATE TABLE `messages` ( `id` bigint(20) NOT NULL, `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `from_id` bigint(20) NOT NULL, `to_id` bigint(20) NOT NULL, `body` varchar(5000) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seen` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2018_11_06_222923_create_transactions_table', 1), (4, '2018_11_07_192923_create_transfers_table', 1), (5, '2018_11_07_202152_update_transfers_table', 1), (6, '2018_11_15_124230_create_wallets_table', 1), (7, '2018_11_19_164609_update_transactions_table', 1), (8, '2018_11_20_133759_add_fee_transfers_table', 1), (9, '2018_11_22_131953_add_status_transfers_table', 1), (10, '2018_11_22_133438_drop_refund_transfers_table', 1), (11, '2019_03_13_174533_create_permission_tables', 1), (12, '2019_03_17_114820_create_table_core_pages', 1), (13, '2019_03_17_140539_create_media_files_table', 1), (14, '2019_03_20_072502_create_bravo_tours', 1), (15, '2019_03_20_081256_create_core_news_category_table', 1), (16, '2019_03_27_081940_create_core_setting_table', 1), (17, '2019_03_28_101009_create_bravo_booking_table', 1), (18, '2019_03_28_165911_create_booking_meta_table', 1), (19, '2019_03_29_093236_update_bookings_table', 1), (20, '2019_04_01_045229_create_user_meta_table', 1), (21, '2019_04_01_150630_create_menu_table', 1), (22, '2019_04_02_150630_create_core_news_table', 1), (23, '2019_04_03_073553_bravo_tour_category', 1), (24, '2019_04_03_080159_bravo_location', 1), (25, '2019_04_05_143248_create_core_templates_table', 1), (26, '2019_04_18_152537_create_bravo_tours_meta_table', 1), (27, '2019_05_07_085430_create_core_languages_table', 1), (28, '2019_05_07_085442_create_core_translations_table', 1), (29, '2019_05_13_111553_update_status_transfers_table', 1), (30, '2019_05_17_074008_create_bravo_review', 1), (31, '2019_05_17_074048_create_bravo_review_meta', 1), (32, '2019_05_17_113042_create_tour_attrs_table', 1), (33, '2019_05_21_084235_create_bravo_contact_table', 1), (34, '2019_05_28_152845_create_core_subscribers_table', 1), (35, '2019_06_17_142338_bravo_seo', 1), (36, '2019_06_25_103755_add_exchange_status_transfers_table', 1), (37, '2019_07_03_070406_update_from_1_0_to_1_1', 1), (38, '2019_07_08_075436_create_core_vendor_plans', 1), (39, '2019_07_08_083733_create_vendors_plan_payments', 1), (40, '2019_07_11_083501_update_from_110_to_120', 1), (41, '2019_07_29_184926_decimal_places_wallets_table', 1), (42, '2019_07_30_072809_create_space_table', 1), (43, '2019_07_30_072809_create_tour_dates_table', 1), (44, '2019_08_05_031018_create_core_vendor_plan_meta_table', 1), (45, '2019_08_09_163909_create_inbox_table', 1), (46, '2019_08_16_094354_update_from_120_to_130', 1), (47, '2019_08_20_162106_create_table_user_upgrade_requests', 1), (48, '2019_09_13_070650_update_from_130_to_140', 1), (49, '2019_09_20_072809_create_hotel_table', 1), (50, '2019_09_22_192348_create_messages_table', 1), (51, '2019_10_02_193759_add_discount_transfers_table', 1), (52, '2019_10_16_211433_create_favorites_table', 1), (53, '2019_10_18_223259_add_avatar_to_users', 1), (54, '2019_10_20_211056_add_messenger_color_to_users', 1), (55, '2019_10_22_000539_add_dark_mode_to_users', 1), (56, '2019_10_22_151319_create_car_table', 1), (57, '2019_10_22_151319_create_social_table', 1), (58, '2019_10_25_214038_add_active_status_to_users', 1), (59, '2019_11_05_092516_update_from_140_to_150', 1), (60, '2019_11_18_085024_update_from_150_to_151', 1), (61, '2020_03_09_102753_update_from_151_to_160', 1), (62, '2020_04_02_150631_create_core_tags_table', 1), (63, '2020_04_05_101016_create_event_table', 1), (64, '2020_05_16_073120_update_from_160_to_170', 1), (65, '2020_11_23_092238_create_notifications_table', 1), (66, '2021_04_02_150632_create_core_tag_new_table', 1), (67, '2021_04_20_102158_update_from_190_to_200', 1); -- -------------------------------------------------------- -- -- Struktur dari tabel `notifications` -- CREATE TABLE `notifications` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `notifiable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `notifiable_id` bigint(20) UNSIGNED NOT NULL, `data` text COLLATE utf8mb4_unicode_ci NOT NULL, `read_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `notifications` -- INSERT INTO `notifications` (`id`, `type`, `notifiable_type`, `notifiable_id`, `data`, `read_at`, `created_at`, `updated_at`) VALUES ('28c3d53a-c1b1-45dd-838a-6df27774153c', 'App\\Notifications\\AdminChannelServices', 'App\\User', 18, '{\"id\":\"28c3d53a-c1b1-45dd-838a-6df27774153c\",\"for_admin\":1,\"notification\":{\"id\":18,\"name\":\"Javore.com\",\"avatar\":\"https:\\/\\/www.nsm.mamakriau.com\\/images\\/avatar.png\",\"link\":\"https:\\/\\/www.nsm.mamakriau.com\\/admin\\/module\\/user\\/userUpgradeRequest\",\"type\":\"user_upgrade_request\",\"message\":\"Javore.com has requested to become a vendor\"}}', '2021-08-10 15:03:24', '2021-08-10 15:02:01', '2021-08-10 15:03:24'), ('35b9f038-6a66-47fb-b356-04981a549b8f', 'App\\Notifications\\PrivateChannelServices', 'App\\User', 18, '{\"id\":\"35b9f038-6a66-47fb-b356-04981a549b8f\",\"for_admin\":0,\"notification\":{\"id\":18,\"event\":\"VendorApproved\",\"to\":\"vendor\",\"name\":\"<EMAIL>\",\"avatar\":\"https:\\/\\/www.nsm.mamakriau.com\\/images\\/avatar.png\",\"link\":\"https:\\/\\/www.nsm.mamakriau.com\\/user\\/dashboard\",\"type\":\"user_upgrade_request\",\"message\":\"Your upgrade request has approved already\"}}', NULL, '2021-08-10 15:03:28', '2021-08-10 15:03:28'); -- -------------------------------------------------------- -- -- Struktur dari tabel `orders` -- CREATE TABLE `orders` ( `id` int(11) NOT NULL, `id_user` int(11) NOT NULL, `date` date NOT NULL, `invoice` varchar(100) NOT NULL, `total` int(11) NOT NULL, `name` varchar(255) NOT NULL, `address` varchar(255) NOT NULL, `phone` varchar(15) NOT NULL, `status` enum('waiting','paid','delivered','cancel') NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Struktur dari tabel `orders_confirm` -- CREATE TABLE `orders_confirm` ( `id` int(11) NOT NULL, `id_orders` int(11) NOT NULL, `account_name` varchar(255) NOT NULL, `account_number` varchar(50) NOT NULL, `nominal` int(11) NOT NULL, `note` varchar(255) NOT NULL, `image` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Struktur dari tabel `orders_detail` -- CREATE TABLE `orders_detail` ( `id` int(11) NOT NULL, `id_orders` int(11) NOT NULL, `id_product` int(11) NOT NULL, `qty` int(4) NOT NULL, `subtotal` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Struktur dari tabel `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `product` -- CREATE TABLE `product` ( `id` int(11) NOT NULL, `id_category` int(11) NOT NULL, `slug` varchar(255) NOT NULL, `title` varchar(255) NOT NULL, `description` varchar(255) NOT NULL, `price` int(11) NOT NULL, `is_available` tinyint(1) NOT NULL DEFAULT 1, `image` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data untuk tabel `product` -- INSERT INTO `product` (`id`, `id_category`, `slug`, `title`, `description`, `price`, `is_available`, `image`) VALUES (1, 2, 'amd-ryzen-5-3400g-radeon-rx-vega-11-graphics-4-core-37-ghz-am4', 'AMD Ryzen 5 3400G Radeon RX Vega 11 Graphics 4-Core 3.7 GHz AM4', 'AMD Ryzen 5 3400G Radeon RX Vega 11 Graphics 4-Core 3.7 GHz AM4 AMD Ryzen 5 3400G Radeon RX Vega 11 Graphics 4-Core 3.7 GHz AM4 AMD Ryzen 5 3400G Radeon RX Vega 11 Graphics 4-Core 3.7 GHz AM4', 2450000, 1, 'amd-ryzen-5-3400g-radeon-rx-vega-11-graphics-4-core-37-ghz-am4-20200206120808.jpg'), (2, 1, 'motherboard-asrock-b450m-steel-legend', 'Motherboard ASRock B450M Steel Legend', 'Motherboard ASRock B450M Steel Legend Motherboard ASRock B450M Steel Legend Motherboard ASRock B450M Steel Legend Motherboard ASRock B450M Steel Legend', 1600000, 1, 'motherboard-asrock-b450m-steel-legend-20200206120905.png'), (3, 3, 'team-t-force-delta-rgb-ddr4-8gb-2xgb-3000mhz-pc24000-ram-memory', 'Team T-Force Delta RGB DDR4 8gb 2xgb 3000mhz PC24000 RAM Memory', 'Team T-Force Delta RGB DDR4 8gb 2xgb 3000mhz PC24000 RAM Memory Team T-Force Delta RGB DDR4 8gb 2xgb 3000mhz PC24000 RAM Memory Team T-Force Delta RGB DDR4 8gb 2xgb 3000mhz PC24000 RAM Memory', 800000, 1, 'team-t-force-delta-rgb-ddr4-8gb-2xgb-3000mhz-pc24000-ram-memory-20200206121043.jpg'); -- -------------------------------------------------------- -- -- Struktur dari tabel `social_forums` -- CREATE TABLE `social_forums` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `icon` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `icon_image` bigint(20) DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `social_forums` -- INSERT INTO `social_forums` (`id`, `name`, `content`, `slug`, `status`, `icon`, `icon_image`, `create_user`, `update_user`, `created_at`, `updated_at`) VALUES (1, 'Solo Travel', NULL, 'solo-travel', 'publish', 'fa fa-cloud', NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (2, 'Road Trips', NULL, 'road-trips', 'publish', 'fa fa-bear', NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (3, 'Travel Gadgets and Gear', NULL, 'travel-gadgets-and-gear', 'publish', 'fa fa-gear', NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (4, 'Family Travel', NULL, 'family-travel', 'publish', 'fa fa-map-o', NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (5, 'Honeymoons and Romance', NULL, 'honeymoons-and-romance', 'publish', 'fa fa-heartbeat', NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (6, 'Outdoors', NULL, 'outdoors', 'publish', 'fa fa-paper-plane-o', NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'), (7, 'Traveling with Pets', NULL, 'traveling-with-pets', 'publish', 'fa fa-paw', NULL, NULL, NULL, '2021-08-10 07:39:35', '2021-08-10 07:39:35'); -- -------------------------------------------------------- -- -- Struktur dari tabel `social_groups` -- CREATE TABLE `social_groups` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `icon` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `icon_image` bigint(20) DEFAULT NULL, `banner_image` bigint(20) DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `owner_id` bigint(20) DEFAULT NULL, `category_id` bigint(20) DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `social_group_user` -- CREATE TABLE `social_group_user` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `group_id` bigint(20) DEFAULT NULL, `role` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `social_posts` -- CREATE TABLE `social_posts` ( `id` bigint(20) UNSIGNED NOT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `forum_id` bigint(20) DEFAULT NULL, `group_id` bigint(20) DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `file_id` bigint(20) DEFAULT NULL, `file_ids` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `publish_date` datetime DEFAULT NULL, `comment_disabled_by` bigint(20) DEFAULT NULL, `privary` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `privacy` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `social_post_comments` -- CREATE TABLE `social_post_comments` ( `id` bigint(20) UNSIGNED NOT NULL, `post_id` bigint(20) DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `file_id` bigint(20) DEFAULT NULL, `file_ids` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `social_user_follow` -- CREATE TABLE `social_user_follow` ( `id` bigint(20) UNSIGNED NOT NULL, `from_user` bigint(20) DEFAULT NULL, `to_user` bigint(20) DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `user` -- CREATE TABLE `user` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `role` enum('admin','member') NOT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `image` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data untuk tabel `user` -- INSERT INTO `user` (`id`, `name`, `email`, `password`, `role`, `is_active`, `image`) VALUES (1, 'Admin', '<EMAIL>', <PASSWORD>', 'admin', 1, NULL), (2, '<NAME>', '<EMAIL>', <PASSWORD>', 'admin', 1, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `first_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `active_status` tinyint(1) NOT NULL DEFAULT 0, `dark_mode` tinyint(1) NOT NULL DEFAULT 0, `messenger_color` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#2180f3', `avatar` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'avatar.png', `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `birthday` date DEFAULT NULL, `city` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip_code` int(11) DEFAULT NULL, `last_login_at` datetime DEFAULT NULL, `avatar_id` bigint(20) DEFAULT NULL, `bio` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `vendor_commission_amount` int(11) DEFAULT NULL, `vendor_commission_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `payment_gateway` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `total_guests` int(11) DEFAULT NULL, `locale` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `business_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `verify_submit_status` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_verified` smallint(6) DEFAULT NULL, `user_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `users` -- INSERT INTO `users` (`id`, `name`, `first_name`, `last_name`, `email`, `active_status`, `dark_mode`, `messenger_color`, `avatar`, `email_verified_at`, `password`, `address`, `address2`, `phone`, `birthday`, `city`, `state`, `country`, `zip_code`, `last_login_at`, `avatar_id`, `bio`, `status`, `create_user`, `update_user`, `vendor_commission_amount`, `vendor_commission_type`, `deleted_at`, `remember_token`, `created_at`, `updated_at`, `payment_gateway`, `total_guests`, `locale`, `business_name`, `verify_submit_status`, `is_verified`, `user_name`) VALUES (1, 'System Admin', 'System', 'Admin', '<EMAIL>', 0, 0, '#2180f3', 'avatar.png', '2021-08-10 07:39:32', '$2y$10$WlegWkH557ENQXIMZoPqEe846ELNiDBTbY5K0dyH5jvCg6NNT/dEK', NULL, NULL, '112 666 888', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.', 'publish', NULL, NULL, NULL, NULL, NULL, 'DPoZKwOSiHGEzNR7vjbxruBkLqSXFqlMLvTf1NtK5jrFrFD2JDeFdQ4whVDT', '2021-08-10 07:39:32', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (2, '', 'Vendor', '01', '<EMAIL>', 0, 0, '#2180f3', 'avatar.png', '2021-08-10 07:39:32', '$2y$10$uiQlai9mlbj4e0zAE5GCgOSBg3wyAw78EyVUTJKpOd8Zf8I8afyvC', NULL, NULL, '112 666 888', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.', 'publish', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:32', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (3, '', 'Customer', '01', '<EMAIL>', 0, 0, '#2180f3', 'avatar.png', '2021-08-10 07:39:32', '$2y$10$BbH/2i3/oI..tm5W/T8t7Ou/YpYj5/jXn0s.8eC8zYuMLau0EigiK', NULL, NULL, '112 666 888', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.', 'publish', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:32', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (4, '', 'Elise', 'Aarohi', '<EMAIL>', 0, 0, '#2180f3', 'avatar.png', '2021-08-10 07:39:32', '$2y$10$lZ3bVFe24muWgWLXC7FSKOs4g32eFxafZHVLRfDUdGi.zDL/dIZKW', NULL, NULL, '112 666 888', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.', 'publish', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:32', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (5, '', 'Kaytlyn', 'Alvapriya', '<EMAIL>', 0, 0, '#2180f3', 'avatar.png', '2021-08-10 07:39:32', '$2y$10$dsZrV8CX1Se2FmW3gWse4OBf/5lZtMmtciIeMGKLyi/TsesyK8m7S', NULL, NULL, '112 666 888', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.', 'publish', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:32', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (6, '', 'Lynne', 'Victoria', '<EMAIL>', 0, 0, '#2180f3', 'avatar.png', '2021-08-10 07:39:32', '$2y$10$mDT2YPAqUnCUWY34khb6yudrkRWaqIOLFKrpGHXFNFutdhRCliIhq', NULL, NULL, '112 666 888', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.', 'publish', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:32', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (7, '', 'Do', 'Quan', '<EMAIL>', 0, 0, '#2180f3', 'avatar.png', '2021-08-10 07:39:32', '$2y$10$omkTDsLvHYPyXspJvqPRGufG4pltitnHkeYn80CGHRjVO4Fm7XQwK', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'publish', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:32', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (8, '', 'William', 'Diana', '<EMAIL>', 0, 0, '#2180f3', 'avatar.png', NULL, '$2y$10$N/3XPaQcfnENTpKMVVvXmOgCRPOn6C2xIskvBeKIjA9VHdtOOvMBm', NULL, NULL, '888 999 777', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.', 'publish', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:32', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (9, '', 'Sarah', 'Violet', '<EMAIL>', 0, 0, '#2180f3', 'avatar.png', NULL, '$2y$10$jztSRK5kFcJSUfniC4FFWe8rp9UjQh47dtIWX3N/mJyd0//PSjFIa', NULL, NULL, '888 999 777', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.', 'publish', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:32', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (10, '', 'Paul', 'Amora', '<EMAIL>', 0, 0, '#2180f3', 'avatar.png', NULL, '$2y$10$kO0ZfiyOr9K2W7e5tiV.B.CtL582tkZarmPDJhtQ0rI58.XVrw6xW', NULL, NULL, '888 999 777', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.', 'publish', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:32', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (11, '', 'Richard', 'Davina', '<EMAIL>', 0, 0, '#2180f3', 'avatar.png', NULL, '$2y$10$JJfISFFxnLQc6CN/Gtg4o.tEuSNpctngnPrj6MyHVT1n4ntjMGTU2', NULL, NULL, '888 999 777', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.', 'publish', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:32', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (12, '', 'Shushi', 'Yashashree', '<EMAIL>', 0, 0, '#2180f3', 'avatar.png', NULL, '$2y$10$Hh0o77E6eJeicGB02FpTeO7QKJ1vVEKKVRzMRNqKunHKfFW5pCLsa', NULL, NULL, '888 999 777', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.', 'publish', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:32', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (13, '', 'Anne', 'Nami', '<EMAIL>', 0, 0, '#2180f3', 'avatar.png', NULL, '$2y$10$pW8yAAGylIKavZMsV4NgzOUP.tSRxEFqlEhZqgKcSDD4maPnwFnJe', NULL, NULL, '888 999 777', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.', 'publish', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (14, '', 'Bush', 'Elise', '<EMAIL>', 0, 0, '#2180f3', 'avatar.png', NULL, '$2y$10$.72VG4fmqlSmBDCRJy3ozuD/KEJj2GERa0ANTfX.f2KyEMKe4/x0G', NULL, NULL, '888 999 777', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.', 'publish', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (15, '', 'Elizabeth', 'Norah', '<EMAIL>', 0, 0, '#2180f3', 'avatar.png', NULL, '$2y$10$4JjP/frs.W70UlTBLRGjU.r2JUvKH2Fewq3daWe4tHwi.vnSyYhOK', NULL, NULL, '888 999 777', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.', 'publish', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (16, '', 'James', 'Alia', '<EMAIL>', 0, 0, '#2180f3', 'avatar.png', NULL, '$2y$10$DBsWNhij7X3GShdjcWAX3.FcSMiuK5H1rCBh7DNefdWExPic8pJwW', NULL, NULL, '888 999 777', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.', 'publish', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (17, '', 'John', 'Dakshi', '<EMAIL>', 0, 0, '#2180f3', 'avatar.png', NULL, '$2y$10$fgkQuBUjly3oHQ3cgy7pluGsiRlLIc2BjEVf8hgXvkfDguokqoX/e', NULL, NULL, '888 999 777', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.', 'publish', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-10 07:39:33', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (18, '<NAME>', 'Nashiruddien', 'Mustaqim', '<EMAIL>', 0, 0, '#2180f3', 'avatar.png', NULL, '$2y$10$K.JmQpB5sXoQG3J5xkPViOstmSA8a17MZC1fI.Tbl/Q1g0BAKuLnG', NULL, NULL, '+6285692650482', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'publish', NULL, NULL, NULL, NULL, NULL, 'YMfWLlj4f8wJPx4NZGd3HHzfzn0lk46obBVImUHVNt00weZZf3hL35npM7g3', '2021-08-10 15:02:01', '2021-08-10 15:02:01', NULL, NULL, NULL, 'Javore.com', NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `user_meta` -- CREATE TABLE `user_meta` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` int(11) DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `val` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `user_transactions` -- CREATE TABLE `user_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `payable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `payable_id` bigint(20) UNSIGNED NOT NULL, `wallet_id` bigint(20) UNSIGNED DEFAULT NULL, `type` enum('deposit','withdraw') COLLATE utf8mb4_unicode_ci NOT NULL, `amount` decimal(64,0) NOT NULL, `confirmed` tinyint(1) NOT NULL, `meta` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, `uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `payment_id` bigint(20) DEFAULT NULL, `booking_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `user_transfers` -- CREATE TABLE `user_transfers` ( `id` bigint(20) UNSIGNED NOT NULL, `from_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `from_id` bigint(20) UNSIGNED NOT NULL, `to_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `to_id` bigint(20) UNSIGNED NOT NULL, `status` enum('exchange','transfer','paid','refund','gift') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'transfer', `status_last` enum('exchange','transfer','paid','refund','gift') COLLATE utf8mb4_unicode_ci DEFAULT NULL, `deposit_id` bigint(20) UNSIGNED NOT NULL, `withdraw_id` bigint(20) UNSIGNED NOT NULL, `discount` decimal(64,0) NOT NULL DEFAULT 0, `fee` decimal(64,0) NOT NULL DEFAULT 0, `uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `user_upgrade_request` -- CREATE TABLE `user_upgrade_request` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` int(11) DEFAULT NULL, `role_request` int(11) DEFAULT NULL, `approved_time` datetime DEFAULT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `approved_by` int(11) DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `user_upgrade_request` -- INSERT INTO `user_upgrade_request` (`id`, `user_id`, `role_request`, `approved_time`, `status`, `approved_by`, `create_user`, `update_user`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 18, 1, '2021-08-10 22:03:28', 'approved', 1, 1, NULL, NULL, '2021-08-10 15:02:01', '2021-08-10 15:03:28'); -- -------------------------------------------------------- -- -- Struktur dari tabel `user_wallets` -- CREATE TABLE `user_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `holder_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `holder_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `balance` decimal(64,0) NOT NULL DEFAULT 0, `decimal_places` smallint(6) NOT NULL DEFAULT 2, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `user_wallets` -- INSERT INTO `user_wallets` (`id`, `holder_type`, `holder_id`, `name`, `slug`, `description`, `balance`, `decimal_places`, `created_at`, `updated_at`, `create_user`, `update_user`) VALUES (1, 'App\\User', 1, 'Default Wallet', 'default', NULL, 0, 2, '2021-08-10 07:41:05', '2021-08-10 07:41:05', NULL, NULL), (2, 'App\\User', 18, 'Default Wallet', 'default', NULL, 0, 2, '2021-08-10 15:02:07', '2021-08-10 15:02:07', NULL, NULL), (3, 'App\\User', 17, 'Default Wallet', 'default', NULL, 0, 2, '2021-08-10 15:03:50', '2021-08-10 15:03:50', NULL, NULL), (4, 'App\\User', 16, 'Default Wallet', 'default', NULL, 0, 2, '2021-08-10 15:03:50', '2021-08-10 15:03:50', NULL, NULL), (5, 'App\\User', 15, 'Default Wallet', 'default', NULL, 0, 2, '2021-08-10 15:03:50', '2021-08-10 15:03:50', NULL, NULL), (6, 'App\\User', 14, 'Default Wallet', 'default', NULL, 0, 2, '2021-08-10 15:03:50', '2021-08-10 15:03:50', NULL, NULL), (7, 'App\\User', 13, 'Default Wallet', 'default', NULL, 0, 2, '2021-08-10 15:03:50', '2021-08-10 15:03:50', NULL, NULL), (8, 'App\\User', 12, 'Default Wallet', 'default', NULL, 0, 2, '2021-08-10 15:03:50', '2021-08-10 15:03:50', NULL, NULL), (9, 'App\\User', 11, 'Default Wallet', 'default', NULL, 0, 2, '2021-08-10 15:03:50', '2021-08-10 15:03:50', NULL, NULL), (10, 'App\\User', 10, 'Default Wallet', 'default', NULL, 0, 2, '2021-08-10 15:03:50', '2021-08-10 15:03:50', NULL, NULL), (11, 'App\\User', 9, 'Default Wallet', 'default', NULL, 0, 2, '2021-08-10 15:03:50', '2021-08-10 15:03:50', NULL, NULL), (12, 'App\\User', 8, 'Default Wallet', 'default', NULL, 0, 2, '2021-08-10 15:03:50', '2021-08-10 15:03:50', NULL, NULL), (13, 'App\\User', 7, 'Default Wallet', 'default', NULL, 0, 2, '2021-08-10 15:03:50', '2021-08-10 15:03:50', NULL, NULL), (14, 'App\\User', 6, 'Default Wallet', 'default', NULL, 0, 2, '2021-08-10 15:03:50', '2021-08-10 15:03:50', NULL, NULL), (15, 'App\\User', 5, 'Default Wallet', 'default', NULL, 0, 2, '2021-08-10 15:03:50', '2021-08-10 15:03:50', NULL, NULL), (16, 'App\\User', 4, 'Default Wallet', 'default', NULL, 0, 2, '2021-08-10 15:03:50', '2021-08-10 15:03:50', NULL, NULL), (17, 'App\\User', 3, 'Default Wallet', 'default', NULL, 0, 2, '2021-08-10 15:03:50', '2021-08-10 15:03:50', NULL, NULL), (18, 'App\\User', 2, 'Default Wallet', 'default', NULL, 0, 2, '2021-08-10 15:03:50', '2021-08-10 15:03:50', NULL, NULL); -- -------------------------------------------------------- -- -- Struktur dari tabel `user_wishlist` -- CREATE TABLE `user_wishlist` ( `id` bigint(20) UNSIGNED NOT NULL, `object_id` int(11) DEFAULT NULL, `object_model` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `create_user` int(11) DEFAULT NULL, `update_user` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `vendors_plan_payments` -- CREATE TABLE `vendors_plan_payments` ( `id` bigint(20) UNSIGNED NOT NULL, `vendor_id` int(11) NOT NULL, `amount` int(11) NOT NULL, `payment_gateway` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `free_trial` int(11) NOT NULL, `price_per` enum('onetime','per_time') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'onetime', `price_unit` enum('day','month','year') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'day', `status` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `end_date` datetime DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indeks untuk tabel `about` -- ALTER TABLE `about` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `banner` -- ALTER TABLE `banner` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_attrs` -- ALTER TABLE `bravo_attrs` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_attrs_translations` -- ALTER TABLE `bravo_attrs_translations` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `bravo_attrs_translations_origin_id_locale_unique` (`origin_id`,`locale`); -- -- Indeks untuk tabel `bravo_bookings` -- ALTER TABLE `bravo_bookings` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_booking_meta` -- ALTER TABLE `bravo_booking_meta` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_booking_payments` -- ALTER TABLE `bravo_booking_payments` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_booking_time_slots` -- ALTER TABLE `bravo_booking_time_slots` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_cars` -- ALTER TABLE `bravo_cars` ADD PRIMARY KEY (`id`), ADD KEY `bravo_cars_slug_index` (`slug`); -- -- Indeks untuk tabel `bravo_car_dates` -- ALTER TABLE `bravo_car_dates` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_car_term` -- ALTER TABLE `bravo_car_term` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_car_translations` -- ALTER TABLE `bravo_car_translations` ADD PRIMARY KEY (`id`), ADD KEY `bravo_car_translations_locale_index` (`locale`); -- -- Indeks untuk tabel `bravo_contact` -- ALTER TABLE `bravo_contact` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_enquiries` -- ALTER TABLE `bravo_enquiries` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_events` -- ALTER TABLE `bravo_events` ADD PRIMARY KEY (`id`), ADD KEY `bravo_events_slug_index` (`slug`); -- -- Indeks untuk tabel `bravo_event_dates` -- ALTER TABLE `bravo_event_dates` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_event_term` -- ALTER TABLE `bravo_event_term` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_event_translations` -- ALTER TABLE `bravo_event_translations` ADD PRIMARY KEY (`id`), ADD KEY `bravo_event_translations_locale_index` (`locale`); -- -- Indeks untuk tabel `bravo_hotels` -- ALTER TABLE `bravo_hotels` ADD PRIMARY KEY (`id`), ADD KEY `bravo_hotels_slug_index` (`slug`); -- -- Indeks untuk tabel `bravo_hotel_rooms` -- ALTER TABLE `bravo_hotel_rooms` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_hotel_room_bookings` -- ALTER TABLE `bravo_hotel_room_bookings` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_hotel_room_dates` -- ALTER TABLE `bravo_hotel_room_dates` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_hotel_room_term` -- ALTER TABLE `bravo_hotel_room_term` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_hotel_room_translations` -- ALTER TABLE `bravo_hotel_room_translations` ADD PRIMARY KEY (`id`), ADD KEY `bravo_hotel_room_translations_locale_index` (`locale`); -- -- Indeks untuk tabel `bravo_hotel_term` -- ALTER TABLE `bravo_hotel_term` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_hotel_translations` -- ALTER TABLE `bravo_hotel_translations` ADD PRIMARY KEY (`id`), ADD KEY `bravo_hotel_translations_locale_index` (`locale`); -- -- Indeks untuk tabel `bravo_locations` -- ALTER TABLE `bravo_locations` ADD PRIMARY KEY (`id`), ADD KEY `bravo_locations__lft__rgt_parent_id_index` (`_lft`,`_rgt`,`parent_id`); -- -- Indeks untuk tabel `bravo_location_translations` -- ALTER TABLE `bravo_location_translations` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `bravo_location_translations_origin_id_locale_unique` (`origin_id`,`locale`); -- -- Indeks untuk tabel `bravo_payouts` -- ALTER TABLE `bravo_payouts` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_review` -- ALTER TABLE `bravo_review` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_review_meta` -- ALTER TABLE `bravo_review_meta` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_seo` -- ALTER TABLE `bravo_seo` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_services` -- ALTER TABLE `bravo_services` ADD PRIMARY KEY (`id`), ADD KEY `bravo_services_slug_index` (`slug`); -- -- Indeks untuk tabel `bravo_service_translations` -- ALTER TABLE `bravo_service_translations` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `bravo_service_translations_origin_id_locale_unique` (`origin_id`,`locale`); -- -- Indeks untuk tabel `bravo_spaces` -- ALTER TABLE `bravo_spaces` ADD PRIMARY KEY (`id`), ADD KEY `bravo_spaces_slug_index` (`slug`); -- -- Indeks untuk tabel `bravo_space_dates` -- ALTER TABLE `bravo_space_dates` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_space_term` -- ALTER TABLE `bravo_space_term` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_space_translations` -- ALTER TABLE `bravo_space_translations` ADD PRIMARY KEY (`id`), ADD KEY `bravo_space_translations_locale_index` (`locale`); -- -- Indeks untuk tabel `bravo_terms` -- ALTER TABLE `bravo_terms` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_terms_translations` -- ALTER TABLE `bravo_terms_translations` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `bravo_terms_translations_origin_id_locale_unique` (`origin_id`,`locale`); -- -- Indeks untuk tabel `bravo_tours` -- ALTER TABLE `bravo_tours` ADD PRIMARY KEY (`id`), ADD KEY `bravo_tours_slug_index` (`slug`); -- -- Indeks untuk tabel `bravo_tour_category` -- ALTER TABLE `bravo_tour_category` ADD PRIMARY KEY (`id`), ADD KEY `bravo_tour_category__lft__rgt_parent_id_index` (`_lft`,`_rgt`,`parent_id`); -- -- Indeks untuk tabel `bravo_tour_category_translations` -- ALTER TABLE `bravo_tour_category_translations` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `bravo_tour_category_translations_origin_id_locale_unique` (`origin_id`,`locale`); -- -- Indeks untuk tabel `bravo_tour_dates` -- ALTER TABLE `bravo_tour_dates` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_tour_meta` -- ALTER TABLE `bravo_tour_meta` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_tour_term` -- ALTER TABLE `bravo_tour_term` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bravo_tour_translations` -- ALTER TABLE `bravo_tour_translations` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `bravo_tour_translations_origin_id_locale_unique` (`origin_id`,`locale`), ADD KEY `bravo_tour_translations_slug_index` (`slug`); -- -- Indeks untuk tabel `cart` -- ALTER TABLE `cart` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `category` -- ALTER TABLE `category` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `core_inbox` -- ALTER TABLE `core_inbox` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `core_inbox_messages` -- ALTER TABLE `core_inbox_messages` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `core_languages` -- ALTER TABLE `core_languages` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `core_menus` -- ALTER TABLE `core_menus` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `core_menu_translations` -- ALTER TABLE `core_menu_translations` ADD PRIMARY KEY (`id`), ADD KEY `core_menu_translations_locale_index` (`locale`); -- -- Indeks untuk tabel `core_model_has_permissions` -- ALTER TABLE `core_model_has_permissions` ADD PRIMARY KEY (`permission_id`,`model_id`,`model_type`), ADD KEY `core_model_has_permissions_model_id_model_type_index` (`model_id`,`model_type`); -- -- Indeks untuk tabel `core_model_has_roles` -- ALTER TABLE `core_model_has_roles` ADD PRIMARY KEY (`role_id`,`model_id`,`model_type`), ADD KEY `core_model_has_roles_model_id_model_type_index` (`model_id`,`model_type`); -- -- Indeks untuk tabel `core_news` -- ALTER TABLE `core_news` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `core_news_category` -- ALTER TABLE `core_news_category` ADD PRIMARY KEY (`id`), ADD KEY `core_news_category__lft__rgt_parent_id_index` (`_lft`,`_rgt`,`parent_id`); -- -- Indeks untuk tabel `core_news_category_translations` -- ALTER TABLE `core_news_category_translations` ADD PRIMARY KEY (`id`), ADD KEY `core_news_category_translations_locale_index` (`locale`); -- -- Indeks untuk tabel `core_news_tag` -- ALTER TABLE `core_news_tag` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `core_news_translations` -- ALTER TABLE `core_news_translations` ADD PRIMARY KEY (`id`), ADD KEY `core_news_translations_locale_index` (`locale`); -- -- Indeks untuk tabel `core_notifications` -- ALTER TABLE `core_notifications` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `core_pages` -- ALTER TABLE `core_pages` ADD PRIMARY KEY (`id`), ADD KEY `core_pages_slug_index` (`slug`); -- -- Indeks untuk tabel `core_page_translations` -- ALTER TABLE `core_page_translations` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `core_page_translations_origin_id_locale_unique` (`origin_id`,`locale`), ADD KEY `core_page_translations_locale_index` (`locale`); -- -- Indeks untuk tabel `core_permissions` -- ALTER TABLE `core_permissions` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `core_roles` -- ALTER TABLE `core_roles` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `core_role_has_permissions` -- ALTER TABLE `core_role_has_permissions` ADD PRIMARY KEY (`permission_id`,`role_id`), ADD KEY `core_role_has_permissions_role_id_foreign` (`role_id`); -- -- Indeks untuk tabel `core_settings` -- ALTER TABLE `core_settings` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `core_subscribers` -- ALTER TABLE `core_subscribers` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `core_tags` -- ALTER TABLE `core_tags` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `core_tag_translations` -- ALTER TABLE `core_tag_translations` ADD PRIMARY KEY (`id`), ADD KEY `core_tag_translations_locale_index` (`locale`); -- -- Indeks untuk tabel `core_templates` -- ALTER TABLE `core_templates` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `core_template_translations` -- ALTER TABLE `core_template_translations` ADD PRIMARY KEY (`id`), ADD KEY `core_template_translations_locale_index` (`locale`); -- -- Indeks untuk tabel `core_translations` -- ALTER TABLE `core_translations` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `core_vendor_plans` -- ALTER TABLE `core_vendor_plans` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `core_vendor_plan_meta` -- ALTER TABLE `core_vendor_plan_meta` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `expertise` -- ALTER TABLE `expertise` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `favorites` -- ALTER TABLE `favorites` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `location_category` -- ALTER TABLE `location_category` ADD PRIMARY KEY (`id`), ADD KEY `location_category__lft__rgt_parent_id_index` (`_lft`,`_rgt`,`parent_id`); -- -- Indeks untuk tabel `location_category_translations` -- ALTER TABLE `location_category_translations` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `location_category_translations_origin_id_locale_unique` (`origin_id`,`locale`); -- -- Indeks untuk tabel `media_files` -- ALTER TABLE `media_files` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `messages` -- ALTER TABLE `messages` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`), ADD KEY `notifications_notifiable_type_notifiable_id_index` (`notifiable_type`,`notifiable_id`); -- -- Indeks untuk tabel `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `orders_confirm` -- ALTER TABLE `orders_confirm` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `orders_detail` -- ALTER TABLE `orders_detail` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Indeks untuk tabel `product` -- ALTER TABLE `product` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `social_forums` -- ALTER TABLE `social_forums` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `social_groups` -- ALTER TABLE `social_groups` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `social_group_user` -- ALTER TABLE `social_group_user` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `social_posts` -- ALTER TABLE `social_posts` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `social_post_comments` -- ALTER TABLE `social_post_comments` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `social_user_follow` -- ALTER TABLE `social_user_follow` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `user` -- ALTER TABLE `user` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`), ADD UNIQUE KEY `users_user_name_unique` (`user_name`); -- -- Indeks untuk tabel `user_meta` -- ALTER TABLE `user_meta` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `user_transactions` -- ALTER TABLE `user_transactions` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `user_transactions_uuid_unique` (`uuid`), ADD KEY `user_transactions_payable_type_payable_id_index` (`payable_type`,`payable_id`), ADD KEY `payable_type_ind` (`payable_type`,`payable_id`,`type`), ADD KEY `payable_confirmed_ind` (`payable_type`,`payable_id`,`confirmed`), ADD KEY `payable_type_confirmed_ind` (`payable_type`,`payable_id`,`type`,`confirmed`), ADD KEY `user_transactions_type_index` (`type`), ADD KEY `user_transactions_wallet_id_foreign` (`wallet_id`); -- -- Indeks untuk tabel `user_transfers` -- ALTER TABLE `user_transfers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `user_transfers_uuid_unique` (`uuid`), ADD KEY `user_transfers_from_type_from_id_index` (`from_type`,`from_id`), ADD KEY `user_transfers_to_type_to_id_index` (`to_type`,`to_id`), ADD KEY `user_transfers_deposit_id_foreign` (`deposit_id`), ADD KEY `user_transfers_withdraw_id_foreign` (`withdraw_id`); -- -- Indeks untuk tabel `user_upgrade_request` -- ALTER TABLE `user_upgrade_request` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `user_wallets` -- ALTER TABLE `user_wallets` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `user_wallets_holder_type_holder_id_slug_unique` (`holder_type`,`holder_id`,`slug`), ADD KEY `user_wallets_holder_type_holder_id_index` (`holder_type`,`holder_id`), ADD KEY `user_wallets_slug_index` (`slug`); -- -- Indeks untuk tabel `user_wishlist` -- ALTER TABLE `user_wishlist` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `vendors_plan_payments` -- ALTER TABLE `vendors_plan_payments` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT untuk tabel yang dibuang -- -- -- AUTO_INCREMENT untuk tabel `about` -- ALTER TABLE `about` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT untuk tabel `banner` -- ALTER TABLE `banner` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT untuk tabel `bravo_attrs` -- ALTER TABLE `bravo_attrs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT untuk tabel `bravo_attrs_translations` -- ALTER TABLE `bravo_attrs_translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `bravo_bookings` -- ALTER TABLE `bravo_bookings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT untuk tabel `bravo_booking_meta` -- ALTER TABLE `bravo_booking_meta` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT untuk tabel `bravo_booking_payments` -- ALTER TABLE `bravo_booking_payments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `bravo_booking_time_slots` -- ALTER TABLE `bravo_booking_time_slots` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `bravo_cars` -- ALTER TABLE `bravo_cars` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; -- -- AUTO_INCREMENT untuk tabel `bravo_car_dates` -- ALTER TABLE `bravo_car_dates` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `bravo_car_term` -- ALTER TABLE `bravo_car_term` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=163; -- -- AUTO_INCREMENT untuk tabel `bravo_car_translations` -- ALTER TABLE `bravo_car_translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `bravo_contact` -- ALTER TABLE `bravo_contact` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT untuk tabel `bravo_enquiries` -- ALTER TABLE `bravo_enquiries` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `bravo_events` -- ALTER TABLE `bravo_events` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT untuk tabel `bravo_event_dates` -- ALTER TABLE `bravo_event_dates` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `bravo_event_term` -- ALTER TABLE `bravo_event_term` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=62; -- -- AUTO_INCREMENT untuk tabel `bravo_event_translations` -- ALTER TABLE `bravo_event_translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `bravo_hotels` -- ALTER TABLE `bravo_hotels` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT untuk tabel `bravo_hotel_rooms` -- ALTER TABLE `bravo_hotel_rooms` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=45; -- -- AUTO_INCREMENT untuk tabel `bravo_hotel_room_bookings` -- ALTER TABLE `bravo_hotel_room_bookings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT untuk tabel `bravo_hotel_room_dates` -- ALTER TABLE `bravo_hotel_room_dates` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `bravo_hotel_room_term` -- ALTER TABLE `bravo_hotel_room_term` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=184; -- -- AUTO_INCREMENT untuk tabel `bravo_hotel_room_translations` -- ALTER TABLE `bravo_hotel_room_translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `bravo_hotel_term` -- ALTER TABLE `bravo_hotel_term` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=123; -- -- AUTO_INCREMENT untuk tabel `bravo_hotel_translations` -- ALTER TABLE `bravo_hotel_translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `bravo_locations` -- ALTER TABLE `bravo_locations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT untuk tabel `bravo_location_translations` -- ALTER TABLE `bravo_location_translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `bravo_payouts` -- ALTER TABLE `bravo_payouts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `bravo_review` -- ALTER TABLE `bravo_review` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=201; -- -- AUTO_INCREMENT untuk tabel `bravo_review_meta` -- ALTER TABLE `bravo_review_meta` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1001; -- -- AUTO_INCREMENT untuk tabel `bravo_seo` -- ALTER TABLE `bravo_seo` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `bravo_services` -- ALTER TABLE `bravo_services` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `bravo_service_translations` -- ALTER TABLE `bravo_service_translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `bravo_spaces` -- ALTER TABLE `bravo_spaces` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT untuk tabel `bravo_space_dates` -- ALTER TABLE `bravo_space_dates` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `bravo_space_term` -- ALTER TABLE `bravo_space_term` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=39; -- -- AUTO_INCREMENT untuk tabel `bravo_space_translations` -- ALTER TABLE `bravo_space_translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `bravo_terms` -- ALTER TABLE `bravo_terms` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=83; -- -- AUTO_INCREMENT untuk tabel `bravo_terms_translations` -- ALTER TABLE `bravo_terms_translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `bravo_tours` -- ALTER TABLE `bravo_tours` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; -- -- AUTO_INCREMENT untuk tabel `bravo_tour_category` -- ALTER TABLE `bravo_tour_category` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT untuk tabel `bravo_tour_category_translations` -- ALTER TABLE `bravo_tour_category_translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `bravo_tour_dates` -- ALTER TABLE `bravo_tour_dates` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `bravo_tour_meta` -- ALTER TABLE `bravo_tour_meta` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; -- -- AUTO_INCREMENT untuk tabel `bravo_tour_term` -- ALTER TABLE `bravo_tour_term` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=151; -- -- AUTO_INCREMENT untuk tabel `bravo_tour_translations` -- ALTER TABLE `bravo_tour_translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `cart` -- ALTER TABLE `cart` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `category` -- ALTER TABLE `category` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT untuk tabel `core_inbox` -- ALTER TABLE `core_inbox` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `core_inbox_messages` -- ALTER TABLE `core_inbox_messages` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `core_languages` -- ALTER TABLE `core_languages` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT untuk tabel `core_menus` -- ALTER TABLE `core_menus` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT untuk tabel `core_menu_translations` -- ALTER TABLE `core_menu_translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT untuk tabel `core_news` -- ALTER TABLE `core_news` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT untuk tabel `core_news_category` -- ALTER TABLE `core_news_category` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT untuk tabel `core_news_category_translations` -- ALTER TABLE `core_news_category_translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `core_news_tag` -- ALTER TABLE `core_news_tag` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `core_news_translations` -- ALTER TABLE `core_news_translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `core_notifications` -- ALTER TABLE `core_notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `core_pages` -- ALTER TABLE `core_pages` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT untuk tabel `core_page_translations` -- ALTER TABLE `core_page_translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `core_permissions` -- ALTER TABLE `core_permissions` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=89; -- -- AUTO_INCREMENT untuk tabel `core_roles` -- ALTER TABLE `core_roles` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT untuk tabel `core_settings` -- ALTER TABLE `core_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=173; -- -- AUTO_INCREMENT untuk tabel `core_subscribers` -- ALTER TABLE `core_subscribers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `core_tags` -- ALTER TABLE `core_tags` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT untuk tabel `core_tag_translations` -- ALTER TABLE `core_tag_translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `core_templates` -- ALTER TABLE `core_templates` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT untuk tabel `core_template_translations` -- ALTER TABLE `core_template_translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT untuk tabel `core_translations` -- ALTER TABLE `core_translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `core_vendor_plans` -- ALTER TABLE `core_vendor_plans` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `core_vendor_plan_meta` -- ALTER TABLE `core_vendor_plan_meta` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `expertise` -- ALTER TABLE `expertise` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT untuk tabel `location_category` -- ALTER TABLE `location_category` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT untuk tabel `location_category_translations` -- ALTER TABLE `location_category_translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `media_files` -- ALTER TABLE `media_files` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=210; -- -- AUTO_INCREMENT untuk tabel `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=68; -- -- AUTO_INCREMENT untuk tabel `orders` -- ALTER TABLE `orders` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `orders_confirm` -- ALTER TABLE `orders_confirm` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `orders_detail` -- ALTER TABLE `orders_detail` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `product` -- ALTER TABLE `product` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT untuk tabel `social_forums` -- ALTER TABLE `social_forums` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT untuk tabel `social_groups` -- ALTER TABLE `social_groups` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `social_group_user` -- ALTER TABLE `social_group_user` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `social_posts` -- ALTER TABLE `social_posts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `social_post_comments` -- ALTER TABLE `social_post_comments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `social_user_follow` -- ALTER TABLE `social_user_follow` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `user` -- ALTER TABLE `user` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT untuk tabel `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19; -- -- AUTO_INCREMENT untuk tabel `user_meta` -- ALTER TABLE `user_meta` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `user_transactions` -- ALTER TABLE `user_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `user_transfers` -- ALTER TABLE `user_transfers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `user_upgrade_request` -- ALTER TABLE `user_upgrade_request` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT untuk tabel `user_wallets` -- ALTER TABLE `user_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19; -- -- AUTO_INCREMENT untuk tabel `user_wishlist` -- ALTER TABLE `user_wishlist` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `vendors_plan_payments` -- ALTER TABLE `vendors_plan_payments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables) -- -- -- Ketidakleluasaan untuk tabel `core_model_has_permissions` -- ALTER TABLE `core_model_has_permissions` ADD CONSTRAINT `core_model_has_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `core_permissions` (`id`) ON DELETE CASCADE; -- -- Ketidakleluasaan untuk tabel `core_model_has_roles` -- ALTER TABLE `core_model_has_roles` ADD CONSTRAINT `core_model_has_roles_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `core_roles` (`id`) ON DELETE CASCADE; -- -- Ketidakleluasaan untuk tabel `core_role_has_permissions` -- ALTER TABLE `core_role_has_permissions` ADD CONSTRAINT `core_role_has_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `core_permissions` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `core_role_has_permissions_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `core_roles` (`id`) ON DELETE CASCADE; -- -- Ketidakleluasaan untuk tabel `user_transactions` -- ALTER TABLE `user_transactions` ADD CONSTRAINT `user_transactions_wallet_id_foreign` FOREIGN KEY (`wallet_id`) REFERENCES `user_wallets` (`id`) ON DELETE CASCADE; -- -- Ketidakleluasaan untuk tabel `user_transfers` -- ALTER TABLE `user_transfers` ADD CONSTRAINT `user_transfers_deposit_id_foreign` FOREIGN KEY (`deposit_id`) REFERENCES `user_transactions` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `user_transfers_withdraw_id_foreign` FOREIGN KEY (`withdraw_id`) REFERENCES `user_transactions` (`id`) ON DELETE CASCADE; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<filename>src/test/resources/tkt3080.test_5.sql -- tkt3080.test -- -- execsql { -- INSERT INTO t1 VALUES('CREATE TABLE t3(z); DROP TABLE t3;'); -- } INSERT INTO t1 VALUES('CREATE TABLE t3(z); DROP TABLE t3;');
<reponame>Shuttl-Tech/antlr_psql -- file:plpgsql.sql ln:1437 expect:false RETURN rslt
<gh_stars>0 -- phpMyAdmin SQL Dump -- version 4.7.1 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: 2017-12-04 10:48:49 -- 服务器版本: 5.7.18-log -- PHP Version: 7.1.5 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `itboye_te` -- -- -------------------------------------------------------- -- -- 表的结构 `common_login_session` -- CREATE TABLE `common_login_session` ( `log_session_id` varchar(64) NOT NULL DEFAULT '', `id` int(10) UNSIGNED NOT NULL, `uid` int(11) NOT NULL DEFAULT '0' COMMENT '已登录用户会话', `update_time` int(11) NOT NULL DEFAULT '0', `create_time` int(11) NOT NULL DEFAULT '0' COMMENT '第一次登录时间', `login_info` text NOT NULL COMMENT '登录的信息', `login_device_type` char(32) NOT NULL DEFAULT 'unknown', `expire_time` int(11) NOT NULL DEFAULT '0' COMMENT '过期时间' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户登录表'; -- -- Indexes for dumped tables -- -- -- Indexes for table `common_login_session` -- ALTER TABLE `common_login_session` ADD PRIMARY KEY (`id`); -- -- 在导出的表使用AUTO_INCREMENT -- -- -- 使用表AUTO_INCREMENT `common_login_session` -- ALTER TABLE `common_login_session` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
SELECT * FROM DGB_FILES WHERE FILE_PATH LIKE ? AND FILE_PATH LIKE ?
CREATE OR REPLACE PACKAGE BODY json_filters IS /* Copyright 2018 <NAME> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ v_filters t_json_filters; v_unused_filter_ids t_integers := t_integers(); PROCEDURE register_messages IS BEGIN default_message_resolver.register_message('JFR-00001', 'JSON filter ID not specified!'); default_message_resolver.register_message('JFR-00002', 'Invalid JSON filter!'); default_message_resolver.register_message('JFR-00003', 'JSON filter is incomplete!'); default_message_resolver.register_message('JFR-00004', 'Unexpected filter path!'); default_message_resolver.register_message('JFR-00005', 'Unexpected filter value!'); default_message_resolver.register_message('JFR-00006', 'Anchors and bind variables are not allowed in filters!'); default_message_resolver.register_message('JFR-00007', 'NULL filter value specified!'); END; FUNCTION create_filter ( p_base_value_id IN NUMBER ) RETURN PLS_INTEGER IS v_base_value json_core.t_json_value; v_id PLS_INTEGER; BEGIN v_base_value := persistent_json_store.get_value(p_base_value_id); IF v_unused_filter_ids.COUNT > 0 THEN v_id := v_unused_filter_ids(v_unused_filter_ids.COUNT); v_unused_filter_ids.TRIM(1); ELSE v_id := NVL(v_filters.LAST, 0) + 1; END IF; v_filters(v_id).base_value_id := p_base_value_id; v_filters(v_id).criterias := t_filter_criterias(); v_filters(v_id).state := 'lf_first_path'; RETURN v_id; END; PROCEDURE check_filter ( p_id IN PLS_INTEGER ) IS BEGIN IF p_id IS NULL THEN -- JSON filter ID not specified! error$.raise('JFR-00001'); ELSIF NOT v_filters.EXISTS(p_id) THEN -- Invalid JSON filter! error$.raise('JFR-00002'); END IF; END; PROCEDURE path ( p_filter_id IN PLS_INTEGER, p_path IN VARCHAR2 ) IS v_path_element_i PLS_INTEGER; v_path STRING; v_depth PLS_INTEGER; BEGIN check_filter(p_filter_id); IF v_filters(p_filter_id).state NOT IN ('lf_first_path', 'lf_path') THEN -- Unexpected filter path! error$.raise('JFR-00004'); END IF; v_path_element_i := json_core.parse_path(p_path, TRUE); v_path_element_i := json_core.v_query_elements(v_path_element_i).first_child_i; v_depth := 0; WHILE v_path_element_i IS NOT NULL LOOP v_depth := v_depth + 1; IF json_core.v_query_elements(v_path_element_i).type IN ('I', ':', '#') THEN -- Bind variables are not allowed in filters! error$.raise('JFR-00006'); END IF; v_path := v_path || '["' || REPLACE(json_core.v_query_elements(v_path_element_i).value, '"', '\"') || '"]'; v_path_element_i := json_core.v_query_elements(v_path_element_i).first_child_i; END LOOP; v_filters(p_filter_id).criterias.EXTEND(1); v_filters(p_filter_id).criterias(v_filters(p_filter_id).criterias.COUNT).path := v_path; v_filters(p_filter_id).criterias(v_filters(p_filter_id).criterias.COUNT).depth := v_depth; v_filters(p_filter_id).state := 'lf_value'; END; PROCEDURE value ( p_filter_id IN PLS_INTEGER, p_value IN VARCHAR2 ) IS v_value STRING; BEGIN check_filter(p_filter_id); IF v_filters(p_filter_id).state != 'lf_value' THEN -- Unexpected filter value! error$.raise('JFR-00005'); END IF; v_value := UPPER(TRIM(p_value)); IF v_value IS NULL THEN -- NULL filter value specified error$.raise('JFR-00007'); END IF; v_filters(p_filter_id).criterias(v_filters(p_filter_id).criterias.COUNT).value := UPPER(v_value); v_filters(p_filter_id).state := 'lf_path'; END; PROCEDURE value ( p_filter_id IN PLS_INTEGER, p_value IN NUMBER ) IS BEGIN value(p_filter_id, json_core.to_json_char(p_value)); END; PROCEDURE value ( p_filter_id IN PLS_INTEGER, p_value IN DATE ) IS BEGIN value(p_filter_id, json_core.to_json_char(p_value)); END; PROCEDURE value ( p_filter_id IN PLS_INTEGER, p_value IN BOOLEAN ) IS BEGIN value(p_filter_id, json_core.to_json_char(p_value)); END; PROCEDURE check_complete_filter ( p_filter_id IN PLS_INTEGER ) IS BEGIN check_filter(p_filter_id); IF v_filters(p_filter_id).state != 'lf_path' THEN -- JSON filter is incomplete! error$.raise('JFR-00003'); END IF; END; FUNCTION criterias ( p_filter_id IN PLS_INTEGER ) RETURN t_filter_criterias PIPELINED IS BEGIN check_complete_filter(p_filter_id); FOR v_i IN 1..v_filters(p_filter_id).criterias.COUNT LOOP PIPE ROW(v_filters(p_filter_id).criterias(v_i)); END LOOP; RETURN; END; PROCEDURE delete_filter ( p_filter_id IN PLS_INTEGER ) IS BEGIN v_filters.DELETE(p_filter_id); v_unused_filter_ids.EXTEND(1); v_unused_filter_ids(v_unused_filter_ids.COUNT) := p_filter_id; END; FUNCTION execute ( p_filter_id IN PLS_INTEGER ) RETURN t_json_properties IS CURSOR c_properties ( p_criteria_count IN NUMBER ) IS WITH jsvl(id, parent_id, name, depth, path, criteria_depth, criteria_path) AS (SELECT /* INDEX(jsvl, jsvl_i3) */ id, parent_id, name, 1, '["' || REPLACE(name, '"', '\"') || '"]', crit.depth, crit.path FROM TABLE(criterias(p_filter_id)) crit, json_values jsvl WHERE UPPER(TRIM(jsvl.value)) LIKE crit.value UNION ALL SELECT parent.id, parent.parent_id, parent.name, depth + 1, DECODE(depth, criteria_depth, NULL, '["' || REPLACE(parent.name, '"', '\"') || '"]') || path, criteria_depth, criteria_path FROM jsvl, json_values parent WHERE parent.id = jsvl.parent_id AND depth <= criteria_depth) SELECT /*+ FIRST_ROWS */ t_json_property(id, name) FROM jsvl WHERE depth = criteria_depth + 1 AND path = criteria_path AND parent_id = v_filters(p_filter_id).base_value_id GROUP BY id, name HAVING COUNT(*) = p_criteria_count; v_properties t_json_properties; BEGIN check_complete_filter(p_filter_id); OPEN c_properties(v_filters(p_filter_id).criterias.COUNT); FETCH c_properties BULK COLLECT INTO v_properties; CLOSE c_properties; delete_filter(p_filter_id); RETURN v_properties; END; BEGIN register_messages; END;
<filename>data/sql/b2743be3b1e05d043188b4eb5031b2a9_creature_changes.sql -- stream UPDATE `creature` SET `spawntimesecs`= 60 where `id` = 17954; Delete from `creature_onkill_reputation` where `creature_id` = 17954; update creature_template set mechanic_immune_mask = 113983323 where entry in (17797,17796,17798); -- botanika update creature_template set faction_A = 14, faction_H = 14 where entry = 20078; update creature_template set faction_A = 14, faction_H = 14 where entry = 20083; update creature_template set faction_A = 14, faction_H = 14, speed = 0.30 where entry = 19949; update creature_template set faction_A = 14 , faction_H = 14 where entry = 19919; update creature_template set faction_A = 14 , faction_H = 14 where entry = 19920; update creature_template set mechanic_immune_mask = 113983323 where entry in (17976,17975,17978,17980,17977); -- shattred halls insert into spell_proc_event (entry, SchoolMask, Category, SkillID, SpellFamilyName, SpellFamilyMask, procFlags, ppmRate) values (30598, 0, 0, 0, 0, 0, 1, 0); update creature_template set faction_A = 14, faction_H = 14 where entry in (17357, 17356); update creature_template set mechanic_immune_mask = 113983323 where entry in (16809,16807,16808); -- shadowlaby insert into spell_script_target (entry, type, targetEntry) values (33783, 1, 18732); delete from creature_template_addon where entry = 18731; -- mechanar update creature_template set speed = 0.7, resistance1 = 1000,resistance2 = 1000,resistance3 = 1000,resistance4 = 1000,resistance5 = 1000,resistance6 = 1000, armor = 50000,dmgschool = 2 where entry = 20481; update creature_template set mechanic_immune_mask = 113983323 where entry in (19219,19221,19220); -- arcatraz update creature_template set faction_h = 16 , faction_A = 16, flags = 2, civilian = 0, flag1 = 0, mechanic_immune_mask = -1 where entry in (21101); update creature_template set faction_h = 35 , faction_A = 35 where entry = 20904; update creature_template set minhealth = 12000, maxhealth = 12000 where entry in (21466,21467); update creature_template set flags = 0,flag1 = 0, mechanic_immune_mask = 113983323 where entry in (21466,21467,20912); -- sunwell plateau update creature_template set minlevel=73,maxlevel=73,armor=4000,mindmg= 10000,maxdmg= 13000,minhealth=3200299,maxhealth=3200299,attackpower = round((maxdmg + mindmg) / 4 * 7),mindmg=round(mindmg - attackpower / 7),maxdmg=round(maxdmg - attackpower / 7) where entry=25165; update creature_template set minlevel=73,maxlevel=73,armor=3900,mindmg= 6000,maxdmg= 8200,minhealth=3000299,maxhealth=3000299,attackpower = round((maxdmg + mindmg) / 4 * 7),mindmg=round(mindmg - attackpower / 7),maxdmg=round(maxdmg - attackpower / 7) where entry=25166; update creature_template set faction_A = 14,faction_H = 14,minlevel=73,maxlevel=73,mindmg= 1000,maxdmg= 1300,minhealth=3900,maxhealth=3900,attackpower = round((maxdmg + mindmg) / 4 * 7),mindmg=round(mindmg - attackpower / 7),maxdmg=round(maxdmg - attackpower / 7) where entry=25214; -- Onyxia update `creature_template` set mechanic_immune_mask = 113983323 where `entry` = 10184; update creature set spawntimesecs = 72000 where guid = 47572; -- quest Phasenverschieben DELETE FROM `creature_template_addon` WHERE (`entry`=24917); INSERT INTO `creature_template_addon` (`entry`, `mount`, `bytes0`, `bytes1`, `bytes2`, `emote`, `moveflags`, `auras`) VALUES (24917, 0, 0, 0, 0, 0, 0, 44855); -- Dragonmaw Peons delete from creature_template_addon where entry = 22252; -- insel update creature_template set flags = 0 where entry in (25002,25001,24999);
<reponame>informaticslab/site ALTER TABLE /*_*/transcache MODIFY tc_time binary(14); UPDATE /*_*/transcache SET tc_time = DATE_FORMAT(FROM_UNIXTIME(tc_time), "%Y%c%d%H%i%s"); INSERT INTO /*_*/updatelog VALUES ('convert transcache field');
DELETE FROM AUTO_NO WHERE NO = ? ;
USE master GO IF EXISTS(SELECT * FROM sys.databases WHERE name='jodd_test') DROP DATABASE jodd_test GO CREATE DATABASE jodd_test GO
<filename>admin/sql/documentation/SetSequences.sql -- Automatically generated, do not edit. \unset ON_ERROR_STOP
ALTER TABLE events ADD slug VARCHAR(255); CREATE UNIQUE INDEX index_events_slug ON events (slug); UPDATE events SET slug = CONCAT(SUBSTR(LOWER(REPLACE(name, ' ', '-')), 0, 249), '-', SUBSTR(MD5(RANDOM()::TEXT), 0, 6)); ALTER TABLE events ALTER slug SET NOT NULL;
-- phpMyAdmin SQL Dump -- version 4.7.4 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1:3306 -- Generation Time: Feb 16, 2018 at 11:43 AM -- Server version: 5.7.19 -- PHP Version: 5.6.31 SET FOREIGN_KEY_CHECKS = 0; SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT = @@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS = @@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION = @@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: election -- -- -- Truncate table before insert `area` -- TRUNCATE TABLE `area`; -- -- Dumping data for table `area` -- INSERT INTO `area` (AreaId, DaairaId, `Name`) VALUES (1, 1, 'طرابلس'), (2, 1, 'منية'), (3, 1, 'دنية'); -- -- Truncate table before insert candidate -- TRUNCATE TABLE candidate; -- -- Dumping data for table candidate -- INSERT INTO candidate (CandidateId, ElectorListId, KalamId, `Number`, `Name`) VALUES (1, 1, 1, 1, 'مرشح 1'), (2, 1, 1, 2, 'مرشح 2'), (3, 2, 2, 3, 'مرشح 3'), (4, 2, 3, 4, 'مرشح 4'), (5, 3, 2, 5, 'مرشح 5'), (6, 3, 2, 6, 'مرشح 6'), (7, 3, 3, 7, 'مرشح 7'), (8, 3, 1, 8, 'مرشح 8'), (9, 3, 3, 9, 'مرشح 9'); -- -- Truncate table before insert daaira -- TRUNCATE TABLE daaira; -- -- Dumping data for table daaira -- INSERT INTO daaira (DaairaId, `Name`) VALUES (1, 'الشمال'); -- -- Truncate table before insert electorlist -- TRUNCATE TABLE electorlist; -- -- Dumping data for table electorlist -- INSERT INTO electorlist (ElectorListId, `Name`, Color) VALUES (1, 'الأخضر', 'green'), (2, 'الأزرق', 'blue'), (3, 'الأحمر', 'red'); -- -- Truncate table before insert kalam -- TRUNCATE TABLE kalam; -- -- Dumping data for table kalam -- INSERT INTO kalam (KalamId, AreaId, `Number`) VALUES (1, 1, 121), (2, 1, 122), (3, 2, 123), (4, 2, 124), (5, 3, 125), (6, 3, 126), (7, 3, 127); -- -- Truncate table before insert `user` -- TRUNCATE TABLE `user`; -- -- Dumping data for table `user` -- INSERT INTO `user` (UserId, Username, `Password`, KalamId, Type, PlaceId) VALUES (1, 'admin', 'admin', 1, 1, 1), (2, 'user', 'user', 1, 2, 2); -- -- Truncate table before insert vote -- TRUNCATE TABLE vote; SET FOREIGN_KEY_CHECKS = 1; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT = @OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS = @OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION = @OLD_COLLATION_CONNECTION */;
<filename>nf/left2/q1.sql EXPLAIN ANALYZE (SELECT P.x, P.y FROM P) EXCEPT (SELECT P.x, P.y FROM P, Q WHERE P.x = Q.x)
SELECT 'INSERT INTO public.metadata' || ' (db_description, db_date_built, median_ncpd_tested, median_nsub_tested, median_nass_tested, median_nsam_tested )' || ' VALUES (' || E'\'' || db_description || E'\',' || ' CURRENT_TIMESTAMP,' || median_ncpd_tested || ',' || median_nsub_tested || ',' || median_nass_tested || ',' || median_nsam_tested || ')' || ' ;' FROM public.metadata ; -- SELECT 'INSERT INTO public.scaffold' || ' (id, scafsmi, scaftree, ncpd_total, ncpd_tested, ncpd_active, nsub_total, nsub_tested, nsub_active, nass_tested, nass_active, nsam_tested, nsam_active, in_drug )' || ' VALUES (' || id || ',' || E'\'' || scafsmi || E'\',' || E'\'' || scaftree || E'\',' || ncpd_total || ',' || ncpd_tested || ',' || ncpd_active || ',' || nsub_total || ',' || nsub_tested || ',' || nsub_active || ',' || nass_tested || ',' || nass_active || ',' || nsam_tested || ',' || nsam_active || ',' || in_drug::INTEGER || ')' || ' ;' FROM public.scaffold ; -- SELECT 'INSERT INTO public.scaf2scaf' || ' (parent_id, child_id )' || ' VALUES (' || parent_id || ',' || child_id || ')' || ' ;' FROM public.scaf2scaf ; -- SELECT 'INSERT INTO public.compound' || ' (cid, cansmi, isosmi, nsub_total, nsub_tested, nsub_active, nass_tested, nass_active, nsam_tested, nsam_active )' || ' VALUES (' || cid || ',' || E'\'' || cansmi || E'\',' || E'\'' || isosmi || E'\',' || nsub_total || ',' || nsub_tested || ',' || nsub_active || ',' || nass_tested || ',' || nass_active || ',' || nsam_tested || ',' || nsam_active || ')' || ' ;' FROM public.compound ; -- SELECT 'INSERT INTO public.sub2cpd' || ' (sid, cid )' || ' VALUES (' || sid || ',' || cid || ')' || ' ;' FROM public.sub2cpd ; -- SELECT 'INSERT INTO public.scaf2cpd' || ' (scafid, cid )' || ' VALUES (' || scafid || ',' || cid || ')' || ' ;' FROM public.scaf2cpd ; --
<gh_stars>1-10 create table num_t(one int, zero int, null_c int, unk_c int); insert into num_t values (1, 0, NULL, UNKNOWN); select 1 from num_t where one IS TRUE; select 1 from num_t where one IS FALSE; select 1 from num_t where one IS UNKNOWN; select 1 from num_t where zero IS TRUE; select 1 from num_t where zero IS FALSE; select 1 from num_t where zero IS UNKNOWN; select 1 from num_t where null_c IS TRUE; select 1 from num_t where null_c IS FALSE; select 1 from num_t where null_c IS UNKNOWN; select 1 from num_t where unk_c IS TRUE; select 1 from num_t where unk_c IS FALSE; select 1 from num_t where unk_c IS UNKNOWN; select 1 from num_t where not(one IS TRUE); drop table num_t;
create table monitoringpointreport ( ID NVARCHAR2(255) NOT NULL, STUDENT NVARCHAR2(100) NOT NULL, STUDENT_COURSE_DETAILS_ID NVARCHAR2(20) NOT NULL, STUDENT_COURSE_YEAR_DETAILS_ID NVARCHAR2(250) NOT NULL, CREATEDDATE TIMESTAMP(6) NOT NULL, PUSHEDDATE TIMESTAMP(6) NULL, MONITORINGPERIOD NVARCHAR2(100) NOT NULL, ACADEMICYEAR NUMBER(4,0) NOT NULL, MISSED NUMBER(4,0) NOT NULL, REPORTER NVARCHAR2(100) NOT NULL, CONSTRAINT "MPR_PK" PRIMARY KEY ("ID") ); CREATE UNIQUE INDEX IDX_MPR_STUDENT_PERIOD_YEAR ON monitoringpointreport(STUDENT, MONITORINGPERIOD, ACADEMICYEAR);
<filename>book.sql drop table books; CREATE TABLE books ( id serial PRIMARY KEY, author VARCHAR ( 255 ) , title VARCHAR ( 255 ) , isbn VARCHAR(255), imge_url VARCHAR(255), description VARCHAR ); CREATE TABLE AUTHORS (id SERIAL PRIMARY KEY, name VARCHAR(255)); ALTER TABLE books ADD CONSTRAINT fk_authors FOREIGN KEY (author_id) REFERENCES authors(id);
use ObservationsSACTN Select SiteName, StationName, InstrumentName, SensorName, PhenomenonName, OfferingName, UnitOfMeasureUnit, ValueDate, DataValue, Latitude, Longitude, Elevation from vObservationExpansion where (StationName like 'SACTN%') and (SensorName like '% Hourly %') order by SiteName, StationName, InstrumentName, SensorName, PhenomenonName, OfferingName, UnitOfMeasureUnit, ValueDate
-- phpMyAdmin SQL Dump -- version 4.8.5 -- https://www.phpmyadmin.net/ -- -- Host: 1192.168.127.12 -- Generation Time: 14-Dez-2020 às 18:11 -- Versão do servidor: 10.1.38-MariaDB -- versão do PHP: 7.3.2 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `livraria` -- -- -------------------------------------------------------- -- -- Estrutura da tabela `autores` -- CREATE TABLE `autores` ( `id_autor` int(11) NOT NULL, `nome` varchar(100) NOT NULL, `nacionalidade` varchar(20) DEFAULT NULL, `data_nascimento` datetime DEFAULT NULL, `fotografia` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `autores` -- INSERT INTO `autores` (`id_autor`, `nome`, `nacionalidade`, `data_nascimento`, `fotografia`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, '<NAME>', 'Portugal', NULL, NULL, NULL, NULL, NULL), (2, '<NAME>', 'Portugal', NULL, NULL, NULL, NULL, NULL), (3, '<NAME>', 'Portugal', NULL, NULL, NULL, NULL, NULL), (4, '<NAME>', 'Portugal', NULL, NULL, NULL, NULL, NULL), (5, '<NAME>', 'Portugal', NULL, NULL, NULL, NULL, NULL), (6, '<NAME>', 'Portugal', NULL, NULL, NULL, NULL, NULL), (7, '<NAME>', 'Portugal', NULL, NULL, NULL, NULL, NULL), (8, '<NAME>', 'Portugal', NULL, NULL, NULL, NULL, NULL), (9, '<NAME>', 'Portugal', NULL, NULL, NULL, NULL, NULL), (10, '<NAME>', 'Portugal', NULL, NULL, NULL, NULL, NULL), (11, '<NAME>', 'Portugal', NULL, NULL, NULL, NULL, NULL), (12, '<NAME>', 'Portugal', NULL, 'Lindo', NULL, '2020-11-27 16:09:18', NULL), (13, '<NAME>', 'Angola', NULL, NULL, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Estrutura da tabela `autores_livros` -- CREATE TABLE `autores_livros` ( `id_al` int(11) NOT NULL, `id_autor` int(11) NOT NULL, `id_livro` int(11) NOT NULL, `updated_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `autores_livros` -- INSERT INTO `autores_livros` (`id_al`, `id_autor`, `id_livro`, `updated_at`, `created_at`) VALUES (6, 13, 16, '2020-12-04 15:10:27', '2020-12-04 15:10:27'), (8, 1, 1, '2020-12-04 15:17:15', '2020-12-04 15:17:15'), (9, 4, 10, '2020-12-04 15:27:33', '2020-12-04 15:27:33'), (10, 12, 2, '2020-12-04 15:52:00', '2020-12-04 15:52:00'), (11, 13, 2, '2020-12-04 15:52:00', '2020-12-04 15:52:00'), (12, 2, 3, '2020-12-04 15:52:24', '2020-12-04 15:52:24'), (13, 2, 4, '2020-12-04 15:52:37', '2020-12-04 15:52:37'), (14, 3, 4, '2020-12-04 15:52:37', '2020-12-04 15:52:37'), (15, 2, 5, '2020-12-04 15:52:46', '2020-12-04 15:52:46'), (16, 3, 5, '2020-12-04 15:52:46', '2020-12-04 15:52:46'), (17, 4, 5, '2020-12-04 15:52:46', '2020-12-04 15:52:46'), (18, 1, 7, '2020-12-04 15:53:01', '2020-12-04 15:53:01'), (19, 1, 8, '2020-12-04 15:53:13', '2020-12-04 15:53:13'), (20, 2, 8, '2020-12-04 15:53:13', '2020-12-04 15:53:13'), (21, 3, 8, '2020-12-04 15:53:13', '2020-12-04 15:53:13'), (22, 4, 8, '2020-12-04 15:53:13', '2020-12-04 15:53:13'), (23, 1, 9, '2020-12-04 15:53:22', '2020-12-04 15:53:22'), (24, 11, 11, '2020-12-04 15:53:38', '2020-12-04 15:53:38'), (25, 12, 11, '2020-12-04 15:53:38', '2020-12-04 15:53:38'), (26, 13, 11, '2020-12-04 15:53:38', '2020-12-04 15:53:38'), (27, 10, 12, '2020-12-04 15:53:48', '2020-12-04 15:53:48'), (28, 11, 12, '2020-12-04 15:53:48', '2020-12-04 15:53:48'); -- -------------------------------------------------------- -- -- Estrutura da tabela `comentarios` -- CREATE TABLE `comentarios` ( `id_comentario` int(11) NOT NULL, `id_livro` int(11) NOT NULL, `id_user` int(11) NOT NULL, `comentario` text CHARACTER SET utf8 NOT NULL, `aprovado` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `edicoes` -- CREATE TABLE `edicoes` ( `id_livro` int(11) NOT NULL, `id_editora` int(11) NOT NULL, `data` datetime DEFAULT NULL, `observacoes` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Estrutura da tabela `editoras` -- CREATE TABLE `editoras` ( `id_editora` int(11) NOT NULL, `nome` varchar(100) NOT NULL, `morada` varchar(255) DEFAULT NULL, `observacoes` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `editoras` -- INSERT INTO `editoras` (`id_editora`, `nome`, `morada`, `observacoes`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 'SPI-Principia', '', NULL, NULL, NULL, NULL), (2, 'Edições Universidade Fernando Pessoa', '', NULL, NULL, NULL, NULL), (3, 'Edições GestKnowing', '', NULL, NULL, NULL, NULL), (4, 'VDM - Verlag Dr. Muller', '', NULL, NULL, NULL, NULL), (5, 'Sílabo', '', NULL, NULL, NULL, NULL), (6, 'Green Lines Instituto', '', NULL, NULL, NULL, NULL), (7, 'Lambert Academic Publishing', '', NULL, NULL, NULL, NULL), (8, 'Porto editora', 'Porto', 'Portugal', NULL, '2020-11-27 16:03:52', NULL); -- -------------------------------------------------------- -- -- Estrutura da tabela `editoras_livros` -- CREATE TABLE `editoras_livros` ( `id_editora` int(11) NOT NULL, `id_livro` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `editoras_livros` -- INSERT INTO `editoras_livros` (`id_editora`, `id_livro`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 2, NULL, NULL, NULL), (2, 1, NULL, NULL, NULL), (2, 12, '2020-12-04 16:43:52', '2020-12-04 16:43:52', NULL), (3, 12, '2020-12-04 16:43:52', '2020-12-04 16:43:52', NULL), (4, 12, '2020-12-04 16:43:52', '2020-12-04 16:43:52', NULL), (5, 12, '2020-12-04 16:43:52', '2020-12-04 16:43:52', NULL); -- -------------------------------------------------------- -- -- Estrutura da tabela `generos` -- CREATE TABLE `generos` ( `id_genero` int(11) NOT NULL, `designacao` varchar(30) NOT NULL, `observacoes` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `generos` -- INSERT INTO `generos` (`id_genero`, `designacao`, `observacoes`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 'Memórias e Testemunhos', NULL, NULL, NULL, NULL), (2, 'Direito Civil portugues', 'Portugal', NULL, '2020-11-27 15:58:53', NULL), (3, 'Culinária', NULL, NULL, NULL, NULL), (4, 'Romance', NULL, NULL, NULL, NULL), (5, 'Policial e Thriller', NULL, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Estrutura da tabela `likes` -- CREATE TABLE `likes` ( `id_livro` int(11) NOT NULL, `id_user` int(11) NOT NULL, `id_like` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `likes` -- INSERT INTO `likes` (`id_livro`, `id_user`, `id_like`) VALUES (1, 1, 2), (1, 2, 3); -- -------------------------------------------------------- -- -- Estrutura da tabela `livros` -- CREATE TABLE `livros` ( `id_livro` int(11) NOT NULL, `titulo` varchar(100) NOT NULL, `idioma` varchar(10) NOT NULL, `total_paginas` int(11) DEFAULT NULL, `data_edicao` datetime DEFAULT NULL, `isbn` varchar(13) DEFAULT NULL, `observacoes` varchar(255) DEFAULT NULL, `imagem_capa` varchar(255) DEFAULT NULL, `id_genero` int(11) DEFAULT NULL, `id_autor` int(11) DEFAULT NULL, `sinopse` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `id_user` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Extraindo dados da tabela `livros` -- INSERT INTO `livros` (`id_livro`, `titulo`, `idioma`, `total_paginas`, `data_edicao`, `isbn`, `observacoes`, `imagem_capa`, `id_genero`, `id_autor`, `sinopse`, `created_at`, `updated_at`, `deleted_at`, `id_user`) VALUES (1, 'sistema de informação de apoio a gestão', 'Portugal', NULL, NULL, '9728589433214', NULL, NULL, 1, 1, NULL, NULL, '2020-12-04 15:17:15', NULL, 0), (2, 'cidades e regiões digitais:impacte na cidade e nas pessoas', 'Portugal', NULL, NULL, '1234567890123', NULL, NULL, 2, 1, NULL, NULL, '2020-12-04 15:51:50', NULL, 0), (3, 'Informatica e Competencias Tecnologicas para a Sociedade da Informação', 'Portugal', NULL, NULL, '9789728830304', NULL, NULL, 1, 3, NULL, NULL, NULL, NULL, 0), (4, 'Readings in Information Society', 'Portugal', NULL, NULL, '9789727228997', NULL, NULL, 3, 5, NULL, NULL, NULL, NULL, 0), (5, 'Sociedade da Informação: balanço e implicações', 'Portugal', NULL, NULL, '9789728830182', NULL, NULL, 3, 7, NULL, NULL, '2020-12-04 15:52:46', NULL, 0), (6, 'O Tribunal de Contas e as Autarquias Locais', 'Portugal', NULL, NULL, '9789899936614', NULL, NULL, 2, 7, NULL, NULL, NULL, NULL, 0), (7, 'Informática e Competências Tecnológicas para a Sociedade da Informação 2ed', 'Portugal', NULL, '2019-10-15 00:00:00', '9789728830304', NULL, NULL, 2, 8, NULL, NULL, NULL, NULL, 0), (8, 'Negócio Eletrónico - conceitos e perspetivas de desenvolvimento', 'Portugal', NULL, NULL, '9789899552258', NULL, NULL, 1, 8, NULL, NULL, NULL, NULL, 0), (9, 'Gestão da Informação na Biblioteca Escolar', 'Portugal', NULL, NULL, '9789722314916', NULL, NULL, 1, 9, NULL, NULL, NULL, NULL, 0), (10, 'A virtual environment to share knowledge', 'Portugal', NULL, NULL, '9781351729901', NULL, NULL, 2, 4, NULL, NULL, NULL, NULL, 0), (11, 'Ciência da Informação: contributos para o seu estudo', 'Português', NULL, NULL, '9789896430900', NULL, NULL, 1, 4, NULL, NULL, NULL, NULL, 0), (12, 'Repensar a Sociedade da Informação e do Conhecimento no Início do Século XXI', 'Portugal', NULL, NULL, '9789726186953', NULL, NULL, 3, 4, NULL, NULL, NULL, NULL, 0); -- -------------------------------------------------------- -- -- Estrutura da tabela `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Extraindo dados da tabela `users` -- INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES (1, '<NAME>', '<EMAIL>', NULL, '$2y$10$utdJfUMKfO4jeaQw3jsM4elbd3Gm77Y9MNSijfQ4muYR5Z.4T2c/G', NULL, '2020-12-10 13:55:57', '2020-12-10 13:55:57'), (2, '<NAME>', '<EMAIL>', NULL, '$2y$10$Bbo.s0hS3/zSmpyRR3GlM.dRnzAHBkWdmEaw8VFx.JOu4VzVyQ9l6', NULL, '2020-12-14 16:42:56', '2020-12-14 16:42:56'); -- -- Indexes for dumped tables -- -- -- Indexes for table `autores` -- ALTER TABLE `autores` ADD PRIMARY KEY (`id_autor`); -- -- Indexes for table `autores_livros` -- ALTER TABLE `autores_livros` ADD PRIMARY KEY (`id_al`); -- -- Indexes for table `comentarios` -- ALTER TABLE `comentarios` ADD PRIMARY KEY (`id_comentario`), ADD KEY `id_livro` (`id_livro`,`id_user`); -- -- Indexes for table `edicoes` -- ALTER TABLE `edicoes` ADD PRIMARY KEY (`id_livro`,`id_editora`); -- -- Indexes for table `editoras` -- ALTER TABLE `editoras` ADD PRIMARY KEY (`id_editora`); -- -- Indexes for table `generos` -- ALTER TABLE `generos` ADD PRIMARY KEY (`id_genero`); -- -- Indexes for table `likes` -- ALTER TABLE `likes` ADD PRIMARY KEY (`id_like`), ADD KEY `id_livro` (`id_livro`,`id_user`); -- -- Indexes for table `livros` -- ALTER TABLE `livros` ADD PRIMARY KEY (`id_livro`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `autores` -- ALTER TABLE `autores` MODIFY `id_autor` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; -- -- AUTO_INCREMENT for table `autores_livros` -- ALTER TABLE `autores_livros` MODIFY `id_al` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=43; -- -- AUTO_INCREMENT for table `editoras` -- ALTER TABLE `editoras` MODIFY `id_editora` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `generos` -- ALTER TABLE `generos` MODIFY `id_genero` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `likes` -- ALTER TABLE `likes` MODIFY `id_like` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `livros` -- ALTER TABLE `livros` MODIFY `id_livro` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
INSERT INTO `user_mgmt`.`user_info` VALUES ('adsdsa-asdsadsa-asdad', NOW(), NOW(),"<EMAIL>", "<NAME>"); INSERT INTO `user_mgmt`.`user_info` VALUES ('adsdsa-asdsadsa-asdaf', NOW(), NOW(),"<EMAIL>", "<NAME>"); INSERT INTO `user_mgmt`.`user_info` VALUES ('adsdsa-asdsadsa-asdag', NOW(), NOW(),"<EMAIL>", "<NAME>");
/* Navicat Premium Data Transfer Source Server : 本地 Source Server Type : MySQL Source Server Version : 50553 Source Host : localhost:3306 Source Schema : test Target Server Type : MySQL Target Server Version : 50553 File Encoding : 65001 Date: 05/08/2020 00:22:44 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for artical -- ---------------------------- DROP TABLE IF EXISTS `artical`; CREATE TABLE `artical` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(150) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `author` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL COMMENT '发布者id', `view` int(11) NULL DEFAULT NULL, `content` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL, `create_time` int(11) NULL DEFAULT NULL, `role` tinyint(4) NULL DEFAULT NULL COMMENT '可查看权限', PRIMARY KEY (`id`) USING BTREE ) ENGINE = MyISAM AUTO_INCREMENT = 5 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of artical -- ---------------------------- INSERT INTO `artical` VALUES (4, 'test1', 'fs', 1, '<h3>1111</h3>发士大夫<span>fdsafasadfsadf</span><h4>222</h4>发顺丰<h3>32123</h3>fasdfsfasdfsdfsdf<h4>fsdafsad</h4>asfasdffasdfsadf', 1584260505, 1); INSERT INTO `artical` VALUES (1, 'test2', 'ff', 23, '\r\n<h3 >一简洁的JavaScript框架</h3>\r\njQuery是一个快速、简洁的JavaScript框架,是继Prototype之后又一个优秀的JavaScript代码库(或JavaScript框架)。jQuery设计的宗旨是“write Less,Do More”,即倡导写更少的代码,做更多的事情。它封装JavaScript常用的功能代码,提供一种简便的JavaScript设计模式,优化HTML文档操作、事件处理、动画设计和Ajax交互jQuery是一个快速、简洁的JavaScript框架,是继Prototype之后又一个优秀的JavaScript代码库(或JavaScript框架)。jQuery设计的宗旨是“write Less,Do More”,即倡导写更少的代码,做更多的事情。它封装JavaScript常用的功能代码,提供一种简便的JavaScript设计模式,优化HTML文档操作、事件处理、动画设计和Ajax交互jQuery是一个快速、简洁的JavaScript框架,是继Prototype之后又一个优秀的JavaScript代码库(或JavaScript框架)。jQuery设计的宗旨是“write Less,Do More”,即倡导写更少的代码,做更多的事情。它封装JavaScript常用的功能代码,提供一种简便的JavaScript设计模式,优化HTML文档操作、事件处理、动画设计和Ajax交互。jQuery是一个快速、简洁的JavaScript框架,是继Prototype之后又一个优秀的JavaScript代码库(或JavaScript框架)。jQuery设计的宗旨是“write Less,Do More”,即倡导写更少的代码,做更多的事情。它封装JavaScript常用的功能代码,提供一种简便的JavaScript设计模式,优化HTML文档操作、事件处理、动画设计和Ajax交互jQuery是一个快速、简洁的JavaScript框架,是继Prototype之后又一个优秀的JavaScript代码库(或JavaScript框架)。jQuery设计的宗旨是“write Less,Do More”,即倡导写更少的代码,做更多的事情。它封装JavaScript常用的功能代码,提供一种简便的JavaScript设计模式,优化HTML文档操作、事件处理、动画设计和Ajax交互jQuery是一个快速、简洁的JavaScript框架,是继Prototype之后又一个优秀的JavaScript代码库(或JavaScript框架)。jQuery设计的宗旨是“write Less,Do More”,即倡导写更少的代码,做更多的事情。它封装JavaScript常用的功能代码,提供一种简便的JavaScript设计模式,优化HTML文档操作、事件处理、动画设计和Ajax交互。\r\njQuery是一个快速、简洁的JavaScript框架,是继Prototype之后又一个优秀的JavaScript代码库(或JavaScript框架)。jQuery设计的宗旨是“write Less,Do More”,即倡导写更少的代码,做更多的事情。它封装JavaScript常用的功能代码,提供一种简便的JavaScript设计模式,优化HTML文档操作、事件处理、动画设计和Ajax交互jQuery是一个快速、简洁的JavaScript框架,是继Prototype之后又一个优秀的JavaScript代码库(或JavaScript框架)。jQuery设计的宗旨是“write Less,Do More”,即倡导写更少的代码,做更多的事情。它封装JavaScript常用的功能代码,提供一种简便的JavaScript设计模式,优化HTML文档操作、事件处理、动画设计和Ajax交互jQuery是一个快速、简洁的JavaScript框架,是继Prototype之后又一个优秀的JavaScript代码库(或JavaScript框架)。jQuery设计的宗旨是“write Less,Do More”,即倡导写更少的代码,做更多的事情。它封装JavaScript常用的功能代码,提供一种简便的JavaScript设计模式,优化HTML文档操作、事件处理、动画设计和Ajax交互。\r\n<h3 id=\"1\">二jQuery的核心特性</h3>\r\njQuery的核心特性可以总结为:具有独特的链式语法和短小清晰的多功能接口;具有高效灵活的css选择器,并且可对CSS选择器进行扩展;拥有便捷的插件扩展机制和丰富的插件。jQuery兼容各种主流浏览器,如IE 6.0+、FF 1.5+、Safari 2.0+、Opera 9.0+等。 jQuery的核心特性可以总结为:具有独特的链式语法和短小清晰的多功能接口;具有高效灵活的css选择器,并且可对CSS选择器进行扩展;拥有便捷的插件扩展机制和丰富的插件。jQuery兼容各种主流浏览器,如IE 6.0+、FF 1.5+、Safari 2.0+、Opera 9.0+等。 jQuery的核心特性可以总结为:具有独特的链式语法和短小清晰的多功能接口;具有高效灵活的css选择器,并且可对CSS选择器进行扩展;拥有便捷的插件扩展机制和丰富的插件。jQuery兼容各种主流浏览器,如IE 6.0+、FF 1.5+、Safari 2.0+、Opera 9.0+等。 jQuery的核心特性可以总结为:具有独特的链式语法和短小清晰的多功能接口;具有高效灵活的css选择器,并且可对CSS选择器进行扩展;拥有便捷的插件扩展机制和丰富的插件。jQuery兼容各种主流浏览器,如IE 6.0+、FF 1.5+、Safari 2.0+、Opera 9.0+等。 jQuery的核心特性可以总结为:具有独特的链式语法和短小清晰的多功能接口;具有高效灵活的css选择器,并且可对CSS选择器进行扩展;拥有便捷的插件扩展机制和丰富的插件。jQuery兼容各种主流浏览器,如IE 6.0+、FF 1.5+、Safari 2.0+、Opera 9.0+等。 jQuery的核心特性可以总结为:具有独特的链式语法和短小清晰的多功能接口;具有高效灵活的css选择器,并且可对CSS选择器进行扩展;拥有便捷的插件扩展机制和丰富的插件。jQuery兼容各种主流浏览器,如IE 6.0+、FF 1.5+、Safari 2.0+、Opera 9.0+等。 jQuery的核心特性可以总结为:具有独特的链式语法和短小清晰的多功能接口;具有高效灵活的css选择器,并且可对CSS选择器进行扩展;拥有便捷的插件扩展机制和丰富的插件。jQuery兼容各种主流浏览器,如IE 6.0+、FF 1.5+、Safari 2.0+、Opera 9.0+等。 jQuery的核心特性可以总结为:具有独特的链式语法和短小清晰的多功能接口;具有高效灵活的css选择器,并且可对CSS选择器进行扩展;拥有便捷的插件扩展机制和丰富的插件。jQuery兼容各种主流浏览器,如IE 6.0+、FF 1.5+、Safari 2.0+、Opera 9.0+等。 jQuery的核心特性可以总结为:具有独特的链式语法和短小清晰的多功能接口;具有高效灵活的css选择器,并且可对CSS选择器进行扩展;拥有便捷的插件扩展机制和丰富的插件。jQuery兼容各种主流浏览器,如IE 6.0+、FF 1.5+、Safari 2.0+、Opera 9.0+等。 jQuery的核心特性可以总结为:具有独特的链式语法和短小清晰的多功能接口;具有高效灵活的css选择器,并且可对CSS选择器进行扩展;拥有便捷的插件扩展机制和丰富的插件。jQuery兼容各种主流浏览器,如IE 6.0+、FF 1.5+、Safari 2.0+、Opera 9.0+等。 jQuery的核心特性可以总结为:具有独特的链式语法和短小清晰的多功能接口;具有高效灵活的css选择器,并且可对CSS选择器进行扩展;拥有便捷的插件扩展机制和丰富的插件。jQuery兼容各种主流浏览器,如IE 6.0+、FF 1.5+、Safari 2.0+、Opera 9.0+等。 jQuery的核心特性可以总结为:具有独特的链式语法和短小清晰的多功能接口;具有高效灵活的css选择器,并且可对CSS选择器进行扩展;拥有便捷的插件扩展机制和丰富的插件。jQuery兼容各种主流浏览器,如IE 6.0+、FF 1.5+、Safari 2.0+、Opera 9.0+等。 jQuery的核心特性可以总结为:具有独特的链式语法和短小清晰的多功能接口;具有高效灵活的css选择器,并且可对CSS选择器进行扩展;拥有便捷的插件扩展机制和丰富的插件。jQuery兼容各种主流浏览器,如IE 6.0+、FF 1.5+、Safari 2.0+、Opera 9.0+等。\r\n<h4 id=\"2\">二-一发展历程</h4>\r\n2005年8月,<NAME>提议改进Prototype的“Behaviour”库,于是他在blog上发表了自己的想法,并用了3个例子做简单的流程说明。 2005年8月,<NAME>提议改进Prototype的“Behaviour”库,于是他在blog上发表了自己的想法,并用了3个例子做简单的流程说明。 2005年8月,<NAME>提议改进Prototype的“Behaviour”库,于是他在blog上发表了自己的想法,并用了3个例子做简单的流程说明。 2005年8月,<NAME>提议改进Prototype的“Behaviour”库,于是他在blog上发表了自己的想法,并用了3个例子做简单的流程说明。 2005年8月,<NAME>提议改进Prototype的“Behaviour”库,于是他在blog上发表了自己的想法,并用了3个例子做简单的流程说明。 2005年8月,<NAME>提议改进Prototype的“Behaviour”库,于是他在blog上发表了自己的想法,并用了3个例子做简单的流程说明。 2005年8月,<NAME>提议改进Prototype的“Behaviour”库,于是他在blog上发表了自己的想法,并用了3个例子做简单的流程说明。 2005年8月,<NAME>提议改进Prototype的“Behaviour”库,于是他在blog上发表了自己的想法,并用了3个例子做简单的流程说明。 2005年8月,<NAME>提议改进Prototype的“Behaviour”库,于是他在blog上发表了自己的想法,并用了3个例子做简单的流程说明。 2005年8月,<NAME>提议改进Prototype的“Behaviour”库,于是他在blog上发表了自己的想法,并用了3个例子做简单的流程说明。 2005年8月,<NAME>提议改进Prototype的“Behaviour”库,于是他在blog上发表了自己的想法,并用了3个例子做简单的流程说明。 2005年8月,<NAME>提议改进Prototype的“Behaviour”库,于是他在blog上发表了自己的想法,并用了3个例子做简单的流程说明。 2005年8月,<NAME>提议改进Prototype的“Behaviour”库,于是他在blog上发表了自己的想法,并用了3个例子做简单的流程说明。 2005年8月,<NAME>提议改进Prototype的“Behaviour”库,于是他在blog上发表了自己的想法,并用了3个例子做简单的流程说明。 2005年8月,<NAME>提议改进Prototype的“Behaviour”库,于是他在blog上发表了自己的想法,并用了3个例子做简单的流程说明。 2005年8月,<NAME>提议改进Prototype的“Behaviour”库,于是他在blog上发表了自己的想法,并用了3个例子做简单的流程说明。 2005年8月,<NAME>提议改进Prototype的“Behaviour”库,于是他在blog上发表了自己的想法,并用了3个例子做简单的流程说明。\r\n<h3 id=\"3\">三 jQuery语法</h3>\r\n这些代码也是jQuery语法的最初雏形。当时John的想法很简单:他发现这种语法相对现有的JavaScript库更为简洁。但他没想到的是,这篇文章一经发布就引起了业界的关注。于是John开始认真思考着这件事情(编写语法更为简洁的JavaScript程序库),直到2006年1月14日,John正式宣布以jQuery的名称发布自己的程序库。随之而来的是jQuery的快速发展。这些代码也是jQuery语法的最初雏形。当时John的想法很简单:他发现这种语法相对现有的JavaScript库更为简洁。但他没想到的是,这篇文章一经发布就引起了业界的关注。于是John开始认真思考着这件事情(编写语法更为简洁的JavaScript程序库),直到2006年1月14日,John正式宣布以jQuery的名称发布自己的程序库。随之而来的是jQuery的快速发展。这些代码也是jQuery语法的最初雏形。当时John的想法很简单:他发现这种语法相对现有的JavaScript库更为简洁。但他没想到的是,这篇文章一经发布就引起了业界的关注。于是John开始认真思考着这件事情(编写语法更为简洁的JavaScript程序库),直到2006年1月14日,John正式宣布以jQuery的名称发布自己的程序库。随之而来的是jQuery的快速发展。这些代码也是jQuery语法的最初雏形。当时John的想法很简单:他发现这种语法相对现有的JavaScript库更为简洁。但他没想到的是,这篇文章一经发布就引起了业界的关注。于是John开始认真思考着这件事情(编写语法更为简洁的JavaScript程序库),直到2006年1月14日,John正式宣布以jQuery的名称发布自己的程序库。随之而来的是jQuery的快速发展。这些代码也是jQuery语法的最初雏形。当时John的想法很简单:他发现这种语法相对现有的JavaScript库更为简洁。但他没想到的是,这篇文章一经发布就引起了业界的关注。于是John开始认真思考着这件事情(编写语法更为简洁的JavaScript程序库),直到2006年1月14日,John正式宣布以jQuery的名称发布自己的程序库。随之而来的是jQuery的快速发展。这些代码也是jQuery语法的最初雏形。当时John的想法很简单:他发现这种语法相对现有的JavaScript库更为简洁。但他没想到的是,这篇文章一经发布就引起了业界的关注。于是John开始认真思考着这件事情(编写语法更为简洁的JavaScript程序库),直到2006年1月14日,John正式宣布以jQuery的名称发布自己的程序库。随之而来的是jQuery的快速发展。这些代码也是jQuery语法的最初雏形。当时John的想法很简单:他发现这种语法相对现有的JavaScript库更为简洁。但他没想到的是,这篇文章一经发布就引起了业界的关注。于是John开始认真思考着这件事情(编写语法更为简洁的JavaScript程序库),直到2006年1月14日,John正式宣布以jQuery的名称发布自己的程序库。随之而来的是jQuery的快速发展。这些代码也是jQuery语法的最初雏形。当时John的想法很简单:他发现这种语法相对现有的JavaScript库更为简洁。但他没想到的是,这篇文章一经发布就引起了业界的关注。于是John开始认真思考着这件事情(编写语法更为简洁的JavaScript程序库),直到2006年1月14日,John正式宣布以jQuery的名称发布自己的程序库。随之而来的是jQuery的快速发展。这些代码也是jQuery语法的最初雏形。当时John的想法很简单:他发现这种语法相对现有的JavaScript库更为简洁。但他没想到的是,这篇文章一经发布就引起了业界的关注。于是John开始认真思考着这件事情(编写语法更为简洁的JavaScript程序库),直到2006年1月14日,John正式宣布以jQuery的名称发布自己的程序库。随之而来的是jQuery的快速发展。这些代码也是jQuery语法的最初雏形。当时John的想法很简单:他发现这种语法相对现有的JavaScript库更为简洁。但他没想到的是,这篇文章一经发布就引起了业界的关注。于是John开始认真思考着这件事情(编写语法更为简洁的JavaScript程序库),直到2006年1月14日,John正式宣布以jQuery的名称发布自己的程序库。随之而来的是jQuery的快速发展。这些代码也是jQuery语法的最初雏形。当时John的想法很简单:他发现这种语法相对现有的JavaScript库更为简洁。但他没想到的是,这篇文章一经发布就引起了业界的关注。于是John开始认真思考着这件事情(编写语法更为简洁的JavaScript程序库),直到2006年1月14日,John正式宣布以jQuery的名称发布自己的程序库。随之而来的是jQuery的快速发展。这些代码也是jQuery语法的最初雏形。当时John的想法很简单:他发现这种语法相对现有的JavaScript库更为简洁。但他没想到的是,这篇文章一经发布就引起了业界的关注。于是John开始认真思考着这件事情(编写语法更为简洁的JavaScript程序库),直到2006年1月14日,John正式宣布以jQuery的名称发布自己的程序库。随之而来的是jQuery的快速发展。这些代码也是jQuery语法的最初雏形。当时John的想法很简单:他发现这种语法相对现有的JavaScript库更为简洁。但他没想到的是,这篇文章一经发布就引起了业界的关注。于是John开始认真思考着这件事情(编写语法更为简洁的JavaScript程序库),直到2006年1月14日,John正式宣布以jQuery的名称发布自己的程序库。随之而来的是jQuery的快速发展。这些代码也是jQuery语法的最初雏形。当时John的想法很简单:他发现这种语法相对现有的JavaScript库更为简洁。但他没想到的是,这篇文章一经发布就引起了业界的关注。于是John开始认真思考着这件事情(编写语法更为简洁的JavaScript程序库),直到2006年1月14日,John正式宣布以jQuery的名称发布自己的程序库。随之而来的是jQuery的快速发展。这些代码也是jQuery语法的最初雏形。当时John的想法很简单:他发现这种语法相对现有的JavaScript库更为简洁。但他没想到的是,这篇文章一经发布就引起了业界的关注。于是John开始认真思考着这件事情(编写语法更为简洁的JavaScript程序库),直到2006年1月14日,John正式宣布以jQuery的名称发布自己的程序库。随之而来的是jQuery的快速发展。这些代码也是jQuery语法的最初雏形。当时John的想法很简单:他发现这种语法相对现有的JavaScript库更为简洁。但他没想到的是,这篇文章一经发布就引起了业界的关注。于是John开始认真思考着这件事情(编写语法更为简洁的JavaScript程序库),直到2006年1月14日,John正式宣布以jQuery的名称发布自己的程序库。随之而来的是jQuery的快速发展。\r\n<h3 id=\"4\">jQuery 1.1.3版发布</h3>\r\n2007年7月,jQuery 1.1.3版发布,这次小版本的变化包含了对jQuery选择符引擎执行速度的显著提升。从这个版本开始,jQuery的性能达到了Prototype、Mootools以及Dojo等同类JavaScript库的水平。同年9月,jQuery 1.2版发布,它去掉了对XPath选择符的支持,原因是相对于CSS语法它已经变得多余了。这一版能够对效果进行更为灵活的定制,而且借助新增的命名空间事件,也使插件开发变得更容易。同时,jQuery UI项目也开始启动,这个新的套件是作为曾经流行但已过时的Interface插件的替代项目而发布的。jQuery UI中包含大2007年7月,jQuery 1.1.3版发布,这次小版本的变化包含了对jQuery选择符引擎执行速度的显著提升。从这个版本开始,jQuery的性能达到了Prototype、Mootools以及Dojo等同类JavaScript库的水平。同年9月,jQuery 1.2版发布,它去掉了对XPath选择符的支持,原因是相对于CSS语法它已经变得多余了。这一版能够对效果进行更为灵活的定制,而且借助新增的命名空间事件,也使插件开发变得更容易。同时,jQuery UI项目也开始启动,这个新的套件是作为曾经流行但已过时的Interface插件的替代项目而发布的。jQuery UI中包含大量预定义好的部件(widget)2007年7月,jQuery 1.1.3版发布,这次小版本的变化包含了对jQuery选择符引擎执行速度的显著提升。从这个版本开始,jQuery的性能达到了Prototype、Mootools以及Dojo等同类JavaScript库的水平。同年9月,jQuery 1.2版发布,它去掉了对XPath选择符的支持,原因是相对于CSS语法它已经变得多余了。这一版能够对效果进行更为灵活的定制,而且借助新增的命名空间事件,也使插件开发变得更容易。同时,jQuery UI项目也开始启动,这个新的套件是作为曾经流行但已过时的Interface插件的替代项目而发布的。jQuery UI中包含大量预定义好的部件(widget)2007年7月,jQuery 1.1.3版发布,这次小版本的变化包含了对jQuery选择符引擎执行速度的显著提升。从这个版本开始,jQuery的性能达到了Prototype、Mootools以及Dojo等同类JavaScript库的水平。同年9月,jQuery 1.2版发布,它去掉了对XPath选择符的支持,原因是相对于CSS语法它已经变得多余了。这一版能够对效果进行更为灵活的定制,而且借助新增的命名空间事件,也使插件开发变得更容易。同时,jQuery UI项目也开始启动,这个新的套件是作为曾经流行但已过时的Interface插件的替代项目而发布的。jQuery UI中包含大量预定义好的部件(widget)2007年7月,jQuery 1.1.3版发布,这次小版本的变化包含了对jQuery选择符引擎执行速度的显著提升。从这个版本开始,jQuery的性能达到了Prototype、Mootools以及Dojo等同类JavaScript库的水平。同年9月,jQuery 1.2版发布,它去掉了对XPath选择符的支持,原因是相对于CSS语法它已经变得多余了。这一版能够对效果进行更为灵活的定制,而且借助新增的命名空间事件,也使插件开发变得更容易。同时,jQuery UI项目也开始启动,这个新的套件是作为曾经流行但已过时的Interface插件的替代项目而发布的。jQuery UI中包含大量预定义好的部件(widget)2007年7月,jQuery 1.1.3版发布,这次小版本的变化包含了对jQuery选择符引擎执行速度的显著提升。从这个版本开始,jQuery的性能达到了Prototype、Mootools以及Dojo等同类JavaScript库的水平。同年9月,jQuery 1.2版发布,它去掉了对XPath选择符的支持,原因是相对于CSS语法它已经变得多余了。这一版能够对效果进行更为灵活的定制,而且借助新增的命名空间事件,也使插件开发变得更容易。同时,jQuery UI项目也开始启动,这个新的套件是作为曾经流行但已过时的Interface插件的替代项目而发布的。jQuery UI中包含大量预定义好的部件(widget)2007年7月,jQuery 1.1.3版发布,这次小版本的变化包含了对jQuery选择符引擎执行速度的显著提升。从这个版本开始,jQuery的性能达到了Prototype、Mootools以及Dojo等同类JavaScript库的水平。同年9月,jQuery 1.2版发布,它去掉了对XPath选择符的支持,原因是相对于CSS语法它已经变得多余了。这一版能够对效果进行更为灵活的定制,而且借助新增的命名空间事件,也使插件开发变得更容易。同时,jQuery UI项目也开始启动,这个新的套件是作为曾经流行但已过时的Interface插件的替代项目而发布的。jQuery UI中包含大量预定义好的部件(widget)2007年7月,jQuery 1.1.3版发布,这次小版本的变化包含了对jQuery选择符引擎执行速度的显著提升。从这个版本开始,jQuery的性能达到了Prototype、Mootools以及Dojo等同类JavaScript库的水平。同年9月,jQuery 1.2版发布,它去掉了对XPath选择符的支持,原因是相对于CSS语法它已经变得多余了。这一版能够对效果进行更为灵活的定制,而且借助新增的命名空间事件,也使插件开发变得更容易。同时,jQuery UI项目也开始启动,这个新的套件是作为曾经流行但已过时的Interface插件的替代项目而发布的。jQuery UI中包含大量预定义好的部件(widget)2007年7月,jQuery 1.1.3版发布,这次小版本的变化包含了对jQuery选择符引擎执行速度的显著提升。从这个版本开始,jQuery的性能达到了Prototype、Mootools以及Dojo等同类JavaScript库的水平。同年9月,jQuery 1.2版发布,它去掉了对XPath选择符的支持,原因是相对于CSS语法它已经变得多余了。这一版能够对效果进行更为灵活的定制,而且借助新增的命名空间事件,也使插件开发变得更容易。同时,jQuery UI项目也开始启动,这个新的套件是作为曾经流行但已过时的Interface插件的替代项目而发布的。jQuery UI中包含大量预定义好的部件(widget)2007年7月,jQuery 1.1.3版发布,这次小版本的变化包含了对jQuery选择符引擎执行速度的显著提升。从这个版本开始,jQuery的性能达到了Prototype、Mootools以及Dojo等同类JavaScript库的水平。同年9月,jQuery 1.2版发布,它去掉了对XPath选择符的支持,原因是相对于CSS语法它已经变得多余了。这一版能够对效果进行更为灵活的定制,而且借助新增的命名空间事件,也使插件开发变得更容易。同时,jQuery UI项目也开始启动,这个新的套件是作为曾经流行但已过时的Interface插件的替代项目而发布的。jQuery UI中包含大量预定义好的部件(widget)2007年7月,jQuery 1.1.3版发布,这次小版本的变化包含了对jQuery选择符引擎执行速度的显著提升。从这个版本开始,jQuery的性能达到了Prototype、Mootools以及Dojo等同类JavaScript库的水平。同年9月,jQuery 1.2版发布,它去掉了对XPath选择符的支持,原因是相对于CSS语法它已经变得多余了。这一版能够对效果进行更为灵活的定制,而且借助新增的命名空间事件,也使插件开发变得更容易。同时,jQuery UI项目也开始启动,这个新的套件是作为曾经流行但已过时的Interface插件的替代项目而发布的。jQuery UI中包含大量预定义好的部件(widget)量预定义好的部件(widget),以及一组用于构建高级元素(例如可拖放、拖拽、排序)的工具。\r\n<h3 id=\"5\">简洁的JavaScript框架</h3>\r\njQuery是一个快速、简洁的JavaScript框架,是继Prototype之后又一个优秀的JavaScript代码库(或JavaScript框架)。jQuery设计的宗旨是“write Less,Do More”,即倡导写更少的代码,做更多的事情。它封装JavaScript常用的功能代码,提供一种简便的JavaScript设计模式,优化HTML文档操作、事件处理、动画设计和Ajax交互\r\n<h3 id=\"6\">简洁的JavaScript框架</h3>\r\njQuery是一个快速、简洁的JavaScript框架,是继Prototype之后又一个优秀的JavaScript代码库(或JavaScript框架)。jQuery设计的宗旨是“write Less,Do More”,即倡导写更少的代码,做更多的事情。它封装JavaScript常用的功能代码,提供一种简便的JavaScript设计模式,优化HTML文档操作、事件处理、动画设计和Ajax交互\r\n<h3 id=\"7\">简洁的JavaScript框架</h3>\r\njQuery是一个快速、简洁的JavaScript框架,是继Prototype之后又一个优秀的JavaScript代码库(或JavaScript框架)。jQuery设计的宗旨是“write Less,Do More”,即倡导写更少的代码,做更多的事情。它封装JavaScript常用的功能代码,提供一种简便的JavaScript设计模式,优化HTML文档操作、事件处理、动画设计和Ajax交互\r\n<h3 id=\"8\">简洁的JavaScript框架</h3>\r\njQuery是一个快速、简洁的JavaScript框架,是继Prototype之后又一个优秀的JavaScript代码库(或JavaScript框架)。jQuery设计的宗旨是“write Less,Do More”,即倡导写更少的代码,做更多的事情。它封装JavaScript常用的功能代码,提供一种简便的JavaScript设计模式,优化HTML文档操作、事件处理、动画设计和Ajax交互\r\n<h3 id=\"9\">简洁的JavaScript框架</h3>\r\njQuery是一个快速、简洁的JavaScript框架,是继Prototype之后又一个优秀的JavaScript代码库(或JavaScript框架)。jQuery设计的宗旨是“write Less,Do More”,即倡导写更少的代码,做更多的事情。它封装JavaScript常用的功能代码,提供一种简便的JavaScript设计模式,优化HTML文档操作、事件处理、动画设计和Ajax交互\r\n', 1584260505, 1); INSERT INTO `artical` VALUES (3, 'test', 'ff', 3, '1111', 1584260505, 1); -- ---------------------------- -- Table structure for artical_tags -- ---------------------------- DROP TABLE IF EXISTS `artical_tags`; CREATE TABLE `artical_tags` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `artical_id` int(11) NOT NULL, `tag_id` int(11) NOT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = MyISAM AUTO_INCREMENT = 4 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Fixed; -- ---------------------------- -- Records of artical_tags -- ---------------------------- INSERT INTO `artical_tags` VALUES (1, 1, 1); INSERT INTO `artical_tags` VALUES (2, 1, 2); INSERT INTO `artical_tags` VALUES (3, 4, 1); -- ---------------------------- -- Table structure for menu -- ---------------------------- DROP TABLE IF EXISTS `menu`; CREATE TABLE `menu` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '', `icon` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '', `parent_id` int(11) NOT NULL DEFAULT 0, `path` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '', `create_time` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) USING BTREE ) ENGINE = MyISAM AUTO_INCREMENT = 22 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of menu -- ---------------------------- INSERT INTO `menu` VALUES (2, '仪表盘', 'dashboard', 1, '/admin/dashboard', 2313); INSERT INTO `menu` VALUES (3, '组件', 'desktop', 1, '/admin/component', 312); INSERT INTO `menu` VALUES (4, '工具条', '', 2, '/admin/toolbar', 2313); INSERT INTO `menu` VALUES (5, '文章管理 ', '', 3, '/admin/artical', 0); INSERT INTO `menu` VALUES (6, '表格管理', '', 3, '/admin/datatable', 0); -- ---------------------------- -- Table structure for role -- ---------------------------- DROP TABLE IF EXISTS `role`; CREATE TABLE `role` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '0', `parent_id` int(255) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = MyISAM AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of role -- ---------------------------- INSERT INTO `role` VALUES (1, '超级', NULL); -- ---------------------------- -- Table structure for role_menus -- ---------------------------- DROP TABLE IF EXISTS `role_menus`; CREATE TABLE `role_menus` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `role_id` int(11) NOT NULL, `menu_id` int(11) NOT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = MyISAM AUTO_INCREMENT = 6 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Fixed; -- ---------------------------- -- Records of role_menus -- ---------------------------- INSERT INTO `role_menus` VALUES (1, 1, 2); INSERT INTO `role_menus` VALUES (2, 1, 3); INSERT INTO `role_menus` VALUES (3, 1, 4); INSERT INTO `role_menus` VALUES (4, 1, 5); INSERT INTO `role_menus` VALUES (5, 1, 6); -- ---------------------------- -- Table structure for roles -- ---------------------------- DROP TABLE IF EXISTS `roles`; CREATE TABLE `roles` ( `id` int(50) NOT NULL, `rid` int(20) NULL DEFAULT NULL COMMENT '权限id', `name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = MyISAM CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of roles -- ---------------------------- INSERT INTO `roles` VALUES (1, 111, '超级管理员'); INSERT INTO `roles` VALUES (2, 222, '管理员'); INSERT INTO `roles` VALUES (3, 333, '游客'); -- ---------------------------- -- Table structure for tag -- ---------------------------- DROP TABLE IF EXISTS `tag`; CREATE TABLE `tag` ( `id` int(11) NOT NULL AUTO_INCREMENT, `tag_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '', PRIMARY KEY (`id`) USING BTREE ) ENGINE = MyISAM AUTO_INCREMENT = 3 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of tag -- ---------------------------- INSERT INTO `tag` VALUES (1, 'target'); INSERT INTO `tag` VALUES (2, 'f'); -- ---------------------------- -- Table structure for user -- ---------------------------- DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `salf` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '加密字符串', `password` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `gender` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `age` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `address` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `email` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `role` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) USING BTREE ) ENGINE = MyISAM AUTO_INCREMENT = 2 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of user -- ---------------------------- INSERT INTO `user` VALUES (1, 'admin', 'AD1F', 'admin', 'fsdf', 'fsd', 'fds', 'fads', 1); -- ---------------------------- -- Table structure for user_role -- ---------------------------- DROP TABLE IF EXISTS `user_role`; CREATE TABLE `user_role` ( `id` int(50) NOT NULL AUTO_INCREMENT, `uid` int(11) NULL DEFAULT NULL, `role` int(50) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = MyISAM AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Fixed; -- ---------------------------- -- Records of user_role -- ---------------------------- INSERT INTO `user_role` VALUES (1, 1, 1); SET FOREIGN_KEY_CHECKS = 1;
-- phpMyAdmin SQL Dump -- version 4.0.10.10 -- http://www.phpmyadmin.net -- -- Gostitelj: 127.4.102.130:3306 -- Čas nastanka: 06. nov 2015 ob 10.54 -- Različica strežnika: 5.5.45 -- Različica PHP: 5.3.3 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Zbirka podatkov: `todo` -- -- -------------------------------------------------------- -- -- Struktura tabele `migrations` -- CREATE TABLE IF NOT EXISTS `migrations` ( `migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Odloži podatke za tabelo `migrations` -- INSERT INTO `migrations` (`migration`, `batch`) VALUES ('2014_10_12_000000_create_users_table', 1), ('2014_10_12_100000_create_password_resets_table', 1); -- -------------------------------------------------------- -- -- Struktura tabele `opravilo` -- CREATE TABLE IF NOT EXISTS `opravilo` ( `ID_OPRAVILA` int(11) NOT NULL AUTO_INCREMENT, `OSEBA` varchar(100) CHARACTER SET utf8 COLLATE utf8_slovenian_ci NOT NULL, `NAZIV` varchar(100) CHARACTER SET utf8 COLLATE utf8_slovenian_ci NOT NULL, `OPIS` text CHARACTER SET utf8 COLLATE utf8_slovenian_ci NOT NULL, `DATUM_START` date NOT NULL, `DATUM_END` date NOT NULL, `STATUS` int(11) NOT NULL, PRIMARY KEY (`ID_OPRAVILA`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=38 ; -- -- Odloži podatke za tabelo `opravilo` -- INSERT INTO `opravilo` (`ID_OPRAVILA`, `OSEBA`, `NAZIV`, `OPIS`, `DATUM_START`, `DATUM_END`, `STATUS`) VALUES (23, '<NAME>', 'Changeling Of Power', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', '2015-11-20', '2015-11-06', 1), (24, '<NAME>', 'Lord Of Wood', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using ''Content here, content here'', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for ''lorem ipsum'' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).', '2015-11-06', '2015-11-06', 1), (25, '<NAME>', 'Priests Of The Curse', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. <NAME>, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.', '2015-11-06', '2015-11-06', 1), (27, '<NAME>', 'Warriors And Spiders', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don''t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.', '2015-12-16', '2015-11-06', 1), (28, '<NAME>', 'Butchers And Rebels', '\r\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using ''Content here, content here'', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for ''lorem ipsum'' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).', '2015-12-17', '2015-11-06', 1), (29, '<NAME>', 'Moon Of The Ancients', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don''t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn''t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.\r\n', '2015-11-24', '2015-11-06', 1), (30, '<NAME>', 'Vengeance Of Wind', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. <NAME>, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.\r\n', '2016-01-13', '0000-00-00', 0), (31, '<NAME>', 'Fade Into My Friends', 'Fusce blandit fringilla nunc, sit amet maximus nisi consectetur porta. Vestibulum eu nulla ornare, viverra lectus eget, semper purus. Vestibulum eu eros lobortis, finibus augue fringilla, dapibus nulla. Aliquam elit massa, faucibus eu mollis sit amet, porta non neque. Pellentesque interdum, orci at tincidunt sagittis, nisl magna suscipit metus, sit amet dapibus nisl libero a dui. Etiam placerat ac tellus venenatis dapibus. Aliquam ac magna ac ipsum iaculis semper. Suspendisse pharetra arcu quis arcu bibendum, sit amet suscipit odio egestas. Maecenas placerat venenatis ultrices. Aenean mi nunc, mattis at augue pharetra, tristique facilisis lectus. Proin lectus purus, dictum in fringilla id, vehicula consequat est. Pellentesque mi tortor, imperdiet id pellentesque vitae, efficitur quis nisi. Integer hendrerit porttitor lorem, ac feugiat odio fermentum sed. Etiam vel sem libero.\r\n', '2016-03-17', '0000-00-00', 0), (32, '<NAME>', 'Bleeding In The Dark', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent laoreet nunc vulputate posuere bibendum. Ut malesuada pellentesque iaculis. Aliquam rhoncus lectus non sem consequat, eget feugiat ex tristique. Pellentesque consequat massa risus, a faucibus arcu consequat sed. Suspendisse interdum nisi finibus mi volutpat lobortis. Donec pharetra, elit ac pellentesque aliquam, libero turpis viverra eros, posuere elementum sapien diam ut diam. Proin nisi massa, efficitur eu massa nec, viverra commodo nulla. Fusce enim tellus, ornare et orci non, lacinia rhoncus orci. Maecenas eget nisl mi. Vestibulum nec pretium nisl. Morbi tempor nunc massa, ullamcorper accumsan tellus pharetra ut.\r\n', '2015-11-06', '0000-00-00', 0), (33, 'Orr West', 'Skeleton In The River', 'Nam sem nulla, tincidunt quis eros ac, rutrum cursus nisl. Vestibulum eu neque eget metus sodales eleifend. Donec vehicula aliquam tellus. Fusce ligula mauris, imperdiet eget consequat eu, molestie in enim. Sed elit tortor, consequat et aliquam ac, hendrerit in augue. Maecenas lacinia congue sodales. Nulla finibus nulla neque, a dapibus tortor mollis at. Suspendisse a leo eget turpis dapibus laoreet. Vivamus ut iaculis ligula, nec bibendum nisi. Donec eget ex sed mi feugiat egestas a et orci. Pellentesque lobortis tellus et consectetur gravida. Quisque et enim vitae orci lobortis pellentesque sed nec nunc. Aliquam vitae interdum nisi.\r\n', '2015-11-13', '0000-00-00', 0), (34, '<NAME>', 'Figure Who Stare', 'Proin gravida suscipit neque, id placerat ante semper nec. Integer consequat congue dignissim. Maecenas in mauris volutpat, varius lorem ac, aliquet diam. Suspendisse tincidunt nibh sit amet interdum varius. Nulla eget accumsan diam. Suspendisse potenti. Maecenas congue et turpis ut vehicula. Quisque magna turpis, cursus at tempus sit amet, euismod non eros. Vestibulum gravida commodo tellus, malesuada efficitur dui sagittis id. Maecenas eu nisi eget tellus mattis fermentum. Phasellus nec nibh sed risus scelerisque egestas eget in velit. Mauris auctor viverra rhoncus.\r\n', '2015-11-25', '2015-11-06', 1), (35, '<NAME>', 'Figure Who Stare', 'Proin gravida suscipit neque, id placerat ante semper nec. Integer consequat congue dignissim. Maecenas in mauris volutpat, varius lorem ac, aliquet diam. Suspendisse tincidunt nibh sit amet interdum varius. Nulla eget accumsan diam. Suspendisse potenti. Maecenas congue et turpis ut vehicula. Quisque magna turpis, cursus at tempus sit amet, euismod non eros. Vestibulum gravida commodo tellus, malesuada efficitur dui sagittis id. Maecenas eu nisi eget tellus mattis fermentum. Phasellus nec nibh sed risus scelerisque egestas eget in velit. Mauris auctor viverra rhoncus.\r\n', '2015-11-25', '2015-11-06', 1), (37, 'matija', 'test', ' test app', '2015-01-31', '2015-11-06', 1); -- -------------------------------------------------------- -- -- Struktura tabele `password_resets` -- CREATE TABLE IF NOT EXISTS `password_resets` ( `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `token` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', KEY `password_resets_email_index` (`email`), KEY `password_resets_token_index` (`token`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Struktura tabele `users` -- CREATE TABLE IF NOT EXISTS `users` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `password` varchar(60) COLLATE utf8_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), UNIQUE KEY `users_email_unique` (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<filename>report/form/table.sql -------------------------------------------------------------------------------- -- REPORT ---------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -- db.report_form -------------------------------------------------------------- -------------------------------------------------------------------------------- CREATE TABLE db.report_form ( id uuid PRIMARY KEY, reference uuid NOT NULL REFERENCES db.reference(id) ON DELETE CASCADE, definition text ); COMMENT ON TABLE db.report_form IS 'Форма.'; COMMENT ON COLUMN db.report_form.id IS 'Идентификатор.'; COMMENT ON COLUMN db.report_form.reference IS 'Справочник.'; COMMENT ON COLUMN db.report_form.definition IS 'Функция создания формы.'; CREATE INDEX ON db.report_form (reference); -------------------------------------------------------------------------------- CREATE OR REPLACE FUNCTION ft_report_form_insert() RETURNS trigger AS $$ DECLARE BEGIN IF NEW.id IS NULL THEN SELECT NEW.reference INTO NEW.id; END IF; RETURN NEW; END; $$ LANGUAGE plpgsql SECURITY DEFINER SET search_path = kernel, pg_temp; -------------------------------------------------------------------------------- CREATE TRIGGER t_report_form_insert BEFORE INSERT ON db.report_form FOR EACH ROW EXECUTE PROCEDURE ft_report_form_insert();
select prayer_id, petition_date, user_id, message from discord.prayer_petitions where prayer_id = ${prayerId}
<filename>src/main/resources/db/migration/V1__create_table.sql<gh_stars>0 CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; create table narmeste_leder ( narmeste_leder_id uuid DEFAULT uuid_generate_v4 () primary key, orgnummer VARCHAR not null, bruker_fnr VARCHAR not null, narmeste_leder_fnr VARCHAR not null, narmeste_leder_telefonnummer VARCHAR not null, narmeste_leder_epost VARCHAR not null, arbeidsgiver_forskutterer BOOLEAN, aktiv_fom TIMESTAMP with time zone not null, aktiv_tom TIMESTAMP with time zone, timestamp TIMESTAMP with time zone not null ); create index narmeste_leder_fnr_idx on narmeste_leder (bruker_fnr); create index narmeste_leder_nlfnr_idx on narmeste_leder (narmeste_leder_fnr);
<filename>data/open-source/extracted_sql/nextras_dbal.sql SELECT * FROM "books" WHERE "author_id" = 1; INSERT INTO dates_write2 VALUES (%dts, %dt) CREATE TABLE dates_read ( a timestamp, b timestamptz ) SELECT name, age FROM ...'); CREATE TABLE tag_followers ( tag_id int NOT NULL, author_id int NOT NULL, created_at timestamp NOT NULL, PRIMARY KEY (tag_id, author_id), CONSTRAINT tag_followers_tag FOREIGN KEY (tag_id) REFERENCES tags (id) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT tag_followers_author FOREIGN KEY (author_id) REFERENCES authors (id) ON DELETE CASCADE ON UPDATE CASCADE) INSERT INTO dates_write VALUES (%dts, %dt) SELECT COUNT(*) FROM tags WHERE name = %s', '_TRANS_TRANSACTIONAL_OK_')->fetchField()); SELECT 1 FROM foo WHERE (a, b) IN ((1, 2), (3, 4), (5, 6)) SELECT * FROM [users]'); SELECT * FROM [types_write]')->fetch(); INSERT INTO test VALUES (DEFAULT) CREATE TABLE dates_read2 ( a timestamp, b timestamptz ) SELECT * FROM foo', 10, NULL)->andReturn('X'); SELECT * FROM tag_followers ORDER BY tag_id, author_id'); SELECT * FROM dates_write2'); INSERT INTO dates_write2 VALUES (%dts, %dt) SELECT * FROM books WHERE author_id = 1; INSERT INTO dates_read2 VALUES (%s, %s) CREATE TABLE authors ( id int NOT NULL AUTO_INCREMENT, name varchar(50) NOT NULL, web varchar(100) NOT NULL, born date DEFAULT NULL, PRIMARY KEY(id)) SELECT name FROM ...'); SELECT COUNT(*) FROM tags WHERE name = %s', '_TRANS_COMMIT_')->fetchField()); CREATE TABLE dates_write2 ( a datetime, b timestamp ) SELECT * FROM dates_read2'); CREATE TABLE publishers ( id int NOT NULL AUTO_INCREMENT, name varchar(50) NOT NULL, PRIMARY KEY(id), UNIQUE INDEX (name)) CREATE TABLE dates_write2 ( a timestamp, b timestamptz ) CREATE TABLE dates_read2 ( a datetime, b timestamp ) SELECT FROM FROM foo', $e->getSqlQuery()); CREATE TABLE books ( id int NOT NULL AUTO_INCREMENT, author_id int NOT NULL, translator_id int, title varchar(50) NOT NULL, publisher_id int NOT NULL, ean_id int, PRIMARY KEY (id), CONSTRAINT books_authors FOREIGN KEY (author_id) REFERENCES authors (id), CONSTRAINT books_translator FOREIGN KEY (translator_id) REFERENCES authors (id), CONSTRAINT books_publisher FOREIGN KEY (publisher_id) REFERENCES publishers (id), CONSTRAINT books_ean FOREIGN KEY (ean_id) REFERENCES eans (id)) INSERT INTO dates_write VALUES (%dts, %dt) CREATE INDEX book_title ON books (title); CREATE TABLE dates_read ( a datetime, b timestamp ) SELECT * FROM issues WHERE created_at < NOW(); CREATE TABLE dates_write ( a timestamp, b timestamptz ) CREATE TABLE books_x_tags ( book_id int NOT NULL, tag_id int NOT NULL, PRIMARY KEY (book_id, tag_id), CONSTRAINT books_x_tags_tag FOREIGN KEY (tag_id) REFERENCES tags (id), CONSTRAINT books_x_tags_book FOREIGN KEY (book_id) REFERENCES books (id) ON DELETE CASCADE) SELECT * FROM foo WHERE title = %s', 'foo" OR 1=1'); INSERT INTO dates_read VALUES (%s, %s) CREATE TABLE eans ( id int NOT NULL AUTO_INCREMENT, code varchar(50) NOT NULL, PRIMARY KEY(id)) SELECT * FROM [types_read]')->fetch(); SELECT * FROM [foo] WHERE %column = %i', 'id', 1); SELECT * FROM foo', 10, 20)->andReturn('Y'); SELECT * FROM books'); SELECT COUNT(*) FROM tags WHERE name = %s', '_TRANS_ROLLBACK_')->fetchField()); SELECT * FROM [driver_types] WHERE [is_bool] = %b', TRUE); SELECT * FROM dates_read'); SELECT COUNT(*) FROM table_with_defaults')->fetchField(); SELECT name, age FROM ...')->fetch(); SELECT * FROM foo WHERE id = %i', 1); INSERT INTO test VALUES (DEFAULT) SELECT * FROM books WHERE 1=2'); SELECT * FROM dates_write'); CREATE TABLE dates_write ( a datetime, b timestamp ) CREATE TABLE tags ( id int NOT NULL AUTO_INCREMENT, name varchar(50) NOT NULL, PRIMARY KEY (id)) SELECT FROM FROM foo'); SELECT COUNT(*) FROM tags WHERE name = %s', '_TRANS_TRANSACTIONAL_')->fetchField());
<reponame>vmbatlle/UrlShortener -- Clean database -- DROP TABLE CLICK IF EXISTS; -- DROP TABLE SHORTURL IF EXISTS; -- ShortURL CREATE TABLE IF NOT EXISTS SHORTURL ( HASH VARCHAR(30) PRIMARY KEY, -- Key TARGET VARCHAR(1024), -- Original URL SPONSOR VARCHAR(1024), -- Sponsor URL CREATED TIMESTAMP, -- Creation date OWNER VARCHAR(255), -- User id MODE INTEGER, -- Redirect mode SAFE BOOLEAN, -- Safe target IP VARCHAR(20), -- IP COUNTRY VARCHAR(50) -- Country ); -- Click CREATE TABLE IF NOT EXISTS CLICK ( ID BIGINT IDENTITY, -- KEY HASH VARCHAR(10) NOT NULL FOREIGN KEY REFERENCES SHORTURL (HASH), -- Foreing key CREATED TIMESTAMP, -- Creation date REFERRER VARCHAR(1024), -- Traffic origin BROWSER VARCHAR(50), -- Browser PLATFORM VARCHAR(50), -- Platform IP VARCHAR(20), -- IP COUNTRY VARCHAR(50) -- Country )
<filename>https.sql -- oracle 12.2.0.1 DECLARE p_url VARCHAR2(256); l_http_request UTL_HTTP.req; l_http_response UTL_HTTP.resp; l_blob BLOB; l_buf RAW(32767); BEGIN DBMS_OUTPUT.enable(100000); p_url := 'https://www.google.com'; -- orapki wallet create -wallet /ORCL/wallet -pwd <PASSWORD> -- orapki wallet add -wallet /ORCL/wallet -trusted_cert -cert /ORCL/1.cer -pwd <PASSWORD> -- orapki wallet display -complete -wallet /ORCL/wallet -pwd <PASSWORD> UTL_HTTP.set_wallet('file:/ORCL/wallet', 'WalletPass<PASSWORD>'); -- UTL_HTTP.set_proxy('http://192.168.1.1:8118', ''); DBMS_LOB.createtemporary(l_blob, true); -- Make a HTTP request and get the response. l_http_request := UTL_HTTP.begin_request(url => p_url, https_host => 'www.google.com'); l_http_response := UTL_HTTP.get_response(l_http_request); -- Loop through the response. BEGIN LOOP UTL_HTTP.read_raw(l_http_response, l_buf); DBMS_LOB.append(l_blob, l_buf); END LOOP; EXCEPTION WHEN UTL_HTTP.end_of_body THEN UTL_HTTP.end_response(l_http_response); END; DBMS_OUTPUT.put_line(DBMS_LOB.getlength(l_blob)); DBMS_OUTPUT.put_line(UTL_RAW.cast_to_varchar2(DBMS_LOB.substr(l_blob, 100, 1))); EXCEPTION WHEN OTHERS THEN UTL_HTTP.end_response(l_http_response); DBMS_OUTPUT.put_line('ERR: ' || UTL_HTTP.get_detailed_sqlerrm()); RAISE; END;
drop table if exists topics; drop table if exists coaches_topics; drop table if exists coaching_topic; drop table if exists coaching_topic_grades; create sequence topic_seq increment by 1 start with 1; create table topic ( id integer not null, name varchar(255) not null, profile_id integer, primary key (id) ); create table grade( grade varchar(255) not null, topic_id integer not null, primary key (grade, topic_id) ); INSERT INTO topic (id, name, profile_id) VALUES (nextval('topic_seq'), 'Algebra', 113); INSERT INTO topic (id, name, profile_id) VALUES (nextval('topic_seq'), 'French', 113); INSERT INTO topic (id, name, profile_id) VALUES (nextval('topic_seq'), 'Biology', 114); INSERT INTO grade (grade, topic_id) values (3, (select id from topic where name = 'Algebra' and profile_id = '113')); INSERT INTO grade (grade, topic_id) values (4, (select id from topic where name = 'Algebra' and profile_id = '113')); INSERT INTO grade (grade, topic_id) values (5, (select id from topic where name = 'Algebra' and profile_id = '113')); INSERT INTO grade (grade, topic_id) values (1, (select id from topic where name = 'French' and profile_id = '113')); INSERT INTO grade (grade, topic_id) values (6, (select id from topic where name = 'French' and profile_id = '113')); INSERT INTO grade (grade, topic_id) values (7, (select id from topic where name = 'Biology' and profile_id = '114')); INSERT INTO grade (grade, topic_id) values (6, (select id from topic where name = 'Biology' and profile_id = '114'));
ALTER TABLE `cola_sys_resource` CHANGE COLUMN `portal_url` `route` varchar(200) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL AFTER `description`, ADD COLUMN `service_id` varchar(100) NULL AFTER `description`;
create table t1(id int primary key, name text); insert into t1(name) values('A'); insert into t1(name) values('B'); insert into t1(name) values('C'); insert into t1(name) values('D'); select * from t1 where id is NULL;
<reponame>oev81/dbt-clickhouse {% macro clickhouse__snapshot_hash_arguments(args) -%} halfMD5({%- for arg in args -%} coalesce(cast({{ arg }} as varchar ), '') {% if not loop.last %} || '|' || {% endif %} {%- endfor -%}) {%- endmacro %} {% macro clickhouse__snapshot_string_as_time(timestamp) -%} {%- set result = "toDateTime('" ~ timestamp ~ "')" -%} {{ return(result) }} {%- endmacro %} {% materialization snapshot, adapter='clickhouse' %} {%- set config = model['config'] -%} {%- set target_table = model.get('alias', model.get('name')) -%} {%- set strategy_name = config.get('strategy') -%} {%- set unique_key = config.get('unique_key') %} {% if not adapter.check_schema_exists(model.database, model.schema) %} {% do create_schema(model.database, model.schema) %} {% endif %} {% set target_relation_exists, target_relation = get_or_create_relation( database=none, schema=model.schema, identifier=target_table, type='table') -%} {%- if not target_relation.is_table -%} {% do exceptions.relation_wrong_type(target_relation, 'table') %} {%- endif -%} {{ run_hooks(pre_hooks, inside_transaction=False) }} {{ run_hooks(pre_hooks, inside_transaction=True) }} {% set strategy_macro = strategy_dispatch(strategy_name) %} {% set strategy = strategy_macro(model, "snapshotted_data", "source_data", config, target_relation_exists) %} {% if not target_relation_exists %} {% set build_sql = build_snapshot_table(strategy, model['compiled_sql']) %} {% set final_sql = create_table_as(False, target_relation, build_sql) %} {% call statement('main') %} {{ final_sql }} {% endcall %} {% else %} {{ adapter.valid_snapshot_target(target_relation) }} {% set staging_table = build_snapshot_staging_table(strategy, sql, target_relation) %} {% do adapter.expand_target_column_types(from_relation=staging_table, to_relation=target_relation) %} {% set missing_columns = adapter.get_missing_columns(staging_table, target_relation) | rejectattr('name', 'equalto', 'dbt_change_type') | rejectattr('name', 'equalto', 'DBT_CHANGE_TYPE') | rejectattr('name', 'equalto', 'dbt_unique_key') | rejectattr('name', 'equalto', 'DBT_UNIQUE_KEY') | list %} {% do create_columns(target_relation, missing_columns) %} {% set source_columns = adapter.get_columns_in_relation(staging_table) | rejectattr('name', 'equalto', 'dbt_change_type') | rejectattr('name', 'equalto', 'DBT_CHANGE_TYPE') | rejectattr('name', 'equalto', 'dbt_unique_key') | rejectattr('name', 'equalto', 'DBT_UNIQUE_KEY') | list %} {%- set quoted_source_columns = get_columns_in_query('select * from ' ~ target_relation) -%} {% set upsert_relation = target_relation ~ '__snapshot_upsert' %} {% do clickhouse__snapshot_merge_sql_one( target = target_relation, source = staging_table, insert_cols = quoted_source_columns, upsert = upsert_relation) %} {% call statement('main') %} select 1 {% endcall %} {% endif %} {% do persist_docs(target_relation, model) %} {{ run_hooks(post_hooks, inside_transaction=True) }} {{ adapter.commit() }} {% if staging_table is defined %} {% do post_snapshot(staging_table) %} {% endif %} {{ run_hooks(post_hooks, inside_transaction=False) }} {{ return({'relations': [target_relation]}) }} {% endmaterialization %} {% macro snapshot_staging_table(strategy, source_sql, target_relation) -%} {#- TODO: * add default__snapshot_staging_table to dbt project * replace copy/paste with default__snapshot_staging_table -#} with snapshot_query as ( {{ source_sql }} ), snapshotted_data as ( select *, {{ strategy.unique_key }} as dbt_unique_key from {{ target_relation }} where dbt_valid_to is null ), insertions_source_data as ( select *, {{ strategy.unique_key }} as dbt_unique_key, {{ strategy.updated_at }} as dbt_updated_at, {{ strategy.updated_at }} as dbt_valid_from, nullif({{ strategy.updated_at }}, {{ strategy.updated_at }}) as dbt_valid_to, {{ strategy.scd_id }} as dbt_scd_id from snapshot_query ), updates_source_data as ( select *, {{ strategy.unique_key }} as dbt_unique_key, {{ strategy.updated_at }} as dbt_updated_at, {{ strategy.updated_at }} as dbt_valid_from, {{ strategy.updated_at }} as dbt_valid_to from snapshot_query ), {%- if strategy.invalidate_hard_deletes %} deletes_source_data as ( select *, {{ strategy.unique_key }} as dbt_unique_key from snapshot_query ), {% endif %} insertions as ( select 'insert' as dbt_change_type, source_data.* from insertions_source_data as source_data left outer join snapshotted_data on snapshotted_data.dbt_unique_key = source_data.dbt_unique_key where snapshotted_data.dbt_unique_key is null or ( snapshotted_data.dbt_unique_key is not null and ( {{ strategy.row_changed }} ) ) ), updates as ( select 'update' as dbt_change_type, source_data.*, snapshotted_data.dbt_scd_id from updates_source_data as source_data join snapshotted_data on snapshotted_data.dbt_unique_key = source_data.dbt_unique_key where ( {{ strategy.row_changed }} ) ) {%- if strategy.invalidate_hard_deletes -%} , deletes as ( select 'delete' as dbt_change_type, source_data.*, {{ snapshot_get_time() }} as dbt_valid_from, {{ snapshot_get_time() }} as dbt_updated_at, {{ snapshot_get_time() }} as dbt_valid_to, snapshotted_data.dbt_scd_id from snapshotted_data left join deletes_source_data as source_data on snapshotted_data.dbt_unique_key = source_data.dbt_unique_key where source_data.dbt_unique_key is null ) {%- endif %} select * from insertions union all select * from updates {%- if strategy.invalidate_hard_deletes %} union all select * from deletes {%- endif %} SETTINGS join_use_nulls=1 {%- endmacro %} {% macro clickhouse__snapshot_merge_sql_one(target, source, insert_cols, upsert) -%} {%- set insert_cols_csv = insert_cols | join(', ') -%} {% call statement('create_upsert_relation') %} create table if not exists {{ upsert }} as {{ target }}; {% endcall %} {% call statement('insert_unchanged') %} insert into {{ upsert }} ({{ insert_cols_csv }}) select {% for column in insert_cols -%} {{ column }} {%- if not loop.last %}, {%- endif %} {%- endfor %} from {{ target }} where dbt_scd_id not in ( select {{ source }}.dbt_scd_id from {{ source }} ) {% endcall %} {% call statement('insert_updated_and_deleted') %} insert into {{ upsert }} ({{ insert_cols_csv }}) with updates_and_deletes as ( select dbt_scd_id, dbt_valid_to from {{ source }} where dbt_change_type IN ('update', 'delete') ) select {% for column in insert_cols %} {%- if column != 'dbt_valid_to' -%} target.{{ column }} as {{ column }} {%- else -%} updates_and_deletes.dbt_valid_to as dbt_valid_to {%- endif %} {%- if not loop.last %}, {%- endif %} {%- endfor %} from {{ target }} target join updates_and_deletes on target.dbt_scd_id = updates_and_deletes.dbt_scd_id; {% endcall %} {% call statement('insert_new') %} insert into {{ upsert }} ({{ insert_cols_csv }}) select {% for column in insert_cols -%} {{ column }} {%- if not loop.last %}, {%- endif %} {%- endfor %} from {{ source }} where {{ source }}.dbt_change_type IN ('insert'); {% endcall %} {% call statement('drop_target_relation') %} drop table if exists {{ target }}; {% endcall %} {% call statement('rename_upsert_relation') %} rename table {{ upsert }} to {{ target }}; {% endcall %} {% endmacro %}
<gh_stars>0 CREATE TABLE COMPANY( SID TEXT PRIMARY KEY NOT NULL, NAME TEXT NOT NULL, ADDRESS CHAR(50), AGE TEXT NOT NULL );
-- phpMyAdmin SQL Dump -- version 5.0.4 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: Dec 31, 2020 at 05:25 PM -- Server version: 10.4.17-MariaDB -- PHP Version: 8.0.0 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `gastronomia` -- -- -------------------------------------------------------- -- -- Table structure for table `info_platos` -- CREATE TABLE `info_platos` ( `id` int(11) NOT NULL, `cabe1` varchar(50) NOT NULL, `cabe2` varchar(50) NOT NULL, `cabe3` varchar(50) NOT NULL, `p_nombre1` varchar(50) NOT NULL, `p_img1` varchar(50) NOT NULL, `p_des1` varchar(50) NOT NULL, `p_nombre2` varchar(50) NOT NULL, `p_img2` varchar(50) NOT NULL, `p_des2` varchar(50) NOT NULL, `p_nombre3` varchar(50) NOT NULL, `p_img3` varchar(50) NOT NULL, `p_des3` varchar(50) NOT NULL, `p_nombre4` varchar(50) NOT NULL, `p_img4` varchar(50) NOT NULL, `p_des4` varchar(50) NOT NULL, `p_nombre5` varchar(50) NOT NULL, `p_img5` varchar(50) NOT NULL, `p_des5` varchar(50) NOT NULL, `p_nombre6` varchar(50) NOT NULL, `p_img6` varchar(50) NOT NULL, `p_des6` varchar(50) NOT NULL, `restaurante` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- Table structure for table `info_restaurante` -- CREATE TABLE `info_restaurante` ( `id` int(11) NOT NULL, `nombre` varchar(50) NOT NULL, `direccion` varchar(50) NOT NULL, `email` varchar(50) NOT NULL, `telefono` varchar(50) NOT NULL, `horario` varchar(50) NOT NULL, `delivery` varchar(50) NOT NULL, `foto` varchar(50) NOT NULL, `id_user` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(11) NOT NULL, `nombre` varchar(50) NOT NULL, `email` varchar(50) NOT NULL, `contraseña` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `nombre`, `email`, `contraseña`) VALUES (1, 'juan', '<EMAIL>', '<PASSWORD>'); -- -- Indexes for dumped tables -- -- -- Indexes for table `info_platos` -- ALTER TABLE `info_platos` ADD PRIMARY KEY (`id`), ADD KEY `p_des6` (`p_des6`); -- -- Indexes for table `info_restaurante` -- ALTER TABLE `info_restaurante` ADD PRIMARY KEY (`id`), ADD KEY `id_user` (`id_user`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `info_platos` -- ALTER TABLE `info_platos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `info_restaurante` -- ALTER TABLE `info_restaurante` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- Constraints for dumped tables -- -- -- Constraints for table `info_restaurante` -- ALTER TABLE `info_restaurante` ADD CONSTRAINT `info_restaurante_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `users` (`id`); COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<reponame>Kast0rTr0y/ao<filename>activeobjects-core/test/net/java/ao/db/h2/create-index.sql CREATE INDEX PUBLIC.index_person_companyid ON PUBLIC.person(companyID)
CREATE TABLE rti.kpi_aaa ( id bigint not null, subscriber_id varchar(64) not null, cell_id varchar(30), tac varchar(8), time_from timestamp not null, aggregation_interval int, input_octets bigint, output_octets bigint, input_packets bigint, output_packets bigint, count_2g int, count_3g int, count_4g int, time_new timestamp default '1970-01-01 00:00:00', worker_id smallint default 0, constraint kpi_aaa_pk primary key ( subscriber_id, cell_id, tac, time_from, aggregation_interval ) ) PARTITION BY COLUMN( subscriber_id ) REDUNDANCY 0 EXPIRE ENTRY WITH TIMETOLIVE 270 ACTION DESTROY; CREATE UNIQUE INDEX idx_kpi_aaa_pk ON rti.kpi_aaa ( subscriber_id, cell_id, tac, time_from, aggregation_interval ); CREATE INDEX idx_kpi_aaa_subscriber_id ON rti.kpi_aaa ( subscriber_id ); CREATE INDEX idx_kpi_aaa_tac ON rti.kpi_aaa ( tac ); CREATE INDEX idx_kpi_aaa_cell_id ON rti.kpi_aaa ( cell_id ); CREATE INDEX idx_kpi_aaa_time_from ON rti.kpi_aaa ( time_from ); CREATE INDEX idx_kpi_aaa_aggregation_interval ON rti.kpi_aaa ( aggregation_interval ); CREATE INDEX idx_kpi_aaa_worker_id ON rti.kpi_aaa ( worker_id );
<reponame>mvachhani/incubator-gobblin -- -- Licensed to the Apache Software Foundation (ASF) under one or more -- contributor license agreements. See the NOTICE file distributed with -- this work for additional information regarding copyright ownership. -- The ASF licenses this file to You under the Apache License, Version 2.0 -- (the "License"); you may not use this file except in compliance with -- the License. You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- ALTER TABLE `gobblin_job_metrics` ADD UNIQUE INDEX `ux_job_metric` (job_id, metric_group, metric_name, metric_type); ALTER TABLE `gobblin_job_metrics` DROP INDEX `metric_group`; ALTER TABLE `gobblin_job_metrics` DROP INDEX `metric_name`; ALTER TABLE `gobblin_job_metrics` DROP INDEX `metric_type`; ALTER TABLE `gobblin_task_metrics` ADD UNIQUE INDEX `ux_task_metric` (task_id, metric_group, metric_name, metric_type); ALTER TABLE `gobblin_task_metrics` DROP INDEX `metric_group`; ALTER TABLE `gobblin_task_metrics` DROP INDEX `metric_name`; ALTER TABLE `gobblin_task_metrics` DROP INDEX `metric_type`; ALTER TABLE `gobblin_job_properties` MODIFY `property_value` MEDIUMTEXT NOT NULL; ALTER TABLE `gobblin_job_properties` ADD UNIQUE INDEX `ux_job_property` (job_id, property_key); ALTER TABLE `gobblin_job_properties` DROP INDEX `property_key`; ALTER TABLE `gobblin_task_properties` MODIFY `property_value` MEDIUMTEXT NOT NULL; ALTER TABLE `gobblin_task_properties` ADD UNIQUE INDEX `ux_task_property` (task_id, property_key); ALTER TABLE `gobblin_task_properties` DROP INDEX `property_key`;
<gh_stars>1-10 DECLARE @COMMAND NVARCHAR(200);SELECT TOP 1 @COMMAND= 'ALTER TABLE UM_ROLE_PERMISSION DROP CONSTRAINT ' + RC.CONSTRAINT_NAME + ';' FROM INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS RC JOIN INFORMATION_SCHEMA.KEY_COLUMN_USAGE KF ON RC.CONSTRAINT_NAME = KF.CONSTRAINT_NAME JOIN INFORMATION_SCHEMA.KEY_COLUMN_USAGE KP ON RC.UNIQUE_CONSTRAINT_NAME = KP.CONSTRAINT_NAME WHERE KF.TABLE_NAME = 'UM_ROLE_PERMISSION' AND KP.TABLE_NAME='UM_PERMISSION';EXEC (@COMMAND); DECLARE @COMMAND NVARCHAR(200);SELECT TOP 1 @COMMAND= 'ALTER TABLE UM_USER_PERMISSION DROP CONSTRAINT ' + RC.CONSTRAINT_NAME + ';' FROM INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS RC JOIN INFORMATION_SCHEMA.KEY_COLUMN_USAGE KF ON RC.CONSTRAINT_NAME = KF.CONSTRAINT_NAME JOIN INFORMATION_SCHEMA.KEY_COLUMN_USAGE KP ON RC.UNIQUE_CONSTRAINT_NAME = KP.CONSTRAINT_NAME WHERE KF.TABLE_NAME = 'UM_USER_PERMISSION' AND KP.TABLE_NAME='UM_PERMISSION';EXEC (@COMMAND); DECLARE @COMMAND NVARCHAR(200);SELECT TOP 1 @COMMAND= 'ALTER TABLE UM_HYBRID_USER_ROLE DROP CONSTRAINT ' + RC.CONSTRAINT_NAME + ';' FROM INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS RC JOIN INFORMATION_SCHEMA.KEY_COLUMN_USAGE KF ON RC.CONSTRAINT_NAME = KF.CONSTRAINT_NAME JOIN INFORMATION_SCHEMA.KEY_COLUMN_USAGE KP ON RC.UNIQUE_CONSTRAINT_NAME = KP.CONSTRAINT_NAME WHERE KF.TABLE_NAME = 'UM_HYBRID_USER_ROLE' AND KP.TABLE_NAME='UM_HYBRID_ROLE';EXEC (@COMMAND); ALTER TABLE UM_ROLE_PERMISSION ADD FOREIGN KEY (UM_PERMISSION_ID, UM_TENANT_ID) REFERENCES UM_PERMISSION(UM_ID, UM_TENANT_ID) ON DELETE CASCADE; ALTER TABLE UM_USER_PERMISSION ADD FOREIGN KEY (UM_PERMISSION_ID, UM_TENANT_ID) REFERENCES UM_PERMISSION(UM_ID, UM_TENANT_ID) ON DELETE CASCADE; ALTER TABLE UM_HYBRID_USER_ROLE ADD FOREIGN KEY (UM_ROLE_ID, UM_TENANT_ID) REFERENCES UM_HYBRID_ROLE(UM_ID, UM_TENANT_ID) ON DELETE CASCADE; update UM_PERMISSION set UM_RESOURCE_ID = REPLACE(UM_RESOURCE_ID, '-at-', '-AT-') where UM_TENANT_ID <> -1234;
--Test For instrb set compatible_mode to 'oracle'; set datestyle to ISO,YMD; SELECT instrb(20121209,12::int, 1::text, 2, 4) "instrb"; SELECT instrb(20121209,12::int, 1::text, '2') "instrb"; SELECT instrb(20121209,12::int, 1::text, 2, '4', 5) "instrb"; SELECT instrb(20121209) "instrb"; SELECT instrb(20121209,12, 1, 2) "instrb"; SELECT instrb(20121209,12, 1) "instrb"; SELECT instrb(20121209,12) "instrb"; SELECT instrb(2012::int2,12::int2, 1::int2, 2::int2) "instrb"; SELECT instrb(2012::int2,12::int2, 1::int2) "instrb"; SELECT instrb(2012::int2,12::int2) "instrb"; SELECT instrb(20121209::int,12::int, 1.9::int, 2.99::int) "instrb"; SELECT instrb(20121209::int,12::int, 1.9::int) "instrb"; SELECT instrb(20121209::int,12::int) "instrb"; SELECT instrb(20121212::int8,1212::int8, 1.9::int8, 1.99::int8) "instrb"; SELECT instrb(20121212::int8,1212::int8, 1.9::int8) "instrb"; SELECT instrb(20121212::int8,1212::int8) "instrb"; SELECT instrb(201212.09::int,12.9::int, 1.9::numeric, 2.99::numeric) "instrb"; SELECT instrb(201212.12::numeric,12.12::numeric, 1.9::int, 1.99::int) "instrb"; SELECT instrb(201212.12::numeric,12.12::numeric, 1.9::numeric, 1.99::numeric) "instrb"; SELECT instrb(201212.12::numeric,12.12::numeric, 1.9::numeric) "instrb"; SELECT instrb(201212.12::numeric,12.12::numeric) "instrb"; SELECT instrb('CORPORATE FLOOR','OR',5,2) "instrb"; SELECT instrb('CORPORATE FLOOR','OR',5) "instrb"; SELECT instrb('CORPORATE FLOOR','OR') "instrb"; SELECT instrb('CORPORATE FLOOR'::char(20),'OR'::char(2),5::int,2::int) "instrb"; SELECT instrb('CORPORATE FLOOR'::char(20),'OR'::char(2),5::int) "instrb"; SELECT instrb('CORPORATE FLOOR'::char(20),'OR'::char(2)) "instrb"; SELECT instrb('CORPORATE FLOOR'::varchar,'OR'::varchar, -3::int, 2::int) "instrb"; SELECT instrb('CORPORATE FLOOR'::varchar,'OR'::varchar, -3::int) "instrb"; SELECT instrb('CORPORATE FLOOR'::varchar,'OR'::varchar) "instrb"; SELECT instrb('CORPORATE FLOOR'::varchar,'OTR'::varchar, -3::int, 2::int) "instrb"; SELECT instrb('CORPORATE FLOOR'::varchar2(20),'OR'::varchar2(5), 3::int, -2::int) "Instring"; SELECT instrb('CORPORATE FLOOR'::varchar2(20),'OR'::varchar2(5), -3::int, 2::int) "instrb"; SELECT instrb('CORPORATE FLOOR'::varchar2(20),'OR'::varchar2(5), -3.9::numeric, 2.9::numeric) "instrb"; SELECT instrb('CORPORATE FLOOR'::varchar2(20),'OR'::varchar2(5), -3::int, 2.9::numeric) "instrb"; SELECT instrb('CORPORATE FLOOR'::varchar2(20),'OR'::varchar2(5), -3.9::numeric, 2::int) "instrb"; SELECT instrb('CORPORATE FLOOR'::nvarchar2,'OR'::nvarchar2, 3::int, 2::int) "instrb"; SELECT instrb('CORPORATE FLOOR'::text,'OR'::text, 3::int, 2::int) "instrb"; SELECT instrb('日日花前长病酒,花前月下举杯饮'::text,'花前'::varchar2(100),1::int,1::int) "instrb"; SELECT instrb('日日花前长病酒,花前月下举杯饮'::varchar(100),'花前'::nvarchar2(100),1::int,2::int) "instrb"; SELECT instrb(cast('CORPORATE FLOOR' as text), cast('OR' as text), 10::int, 2::int) "instrb"; SELECT instrb('今天是Aa周一1'::nvarchar2(20),'周一'::text, 1::int, 1.99::numeric) "instrb"; SELECT instrb('今天是Aa周一1'::nvarchar2(20),'周一'::text, 1.9::numeric, 1::int) "instrb"; SELECT instrb('今天是Aa周一1'::nvarchar2(20),'周一'::text, 1.9::numeric, 1.99::numeric) "instrb"; SELECT instrb('今天是Aa周一1'::nvarchar2(20),'周一'::text, 1.9::numeric) "instrb"; SELECT instrb('今天是Aa周一1'::nvarchar2(20),'周一'::text) "instrb"; SELECT instrb('2019-12-12'::date,'2019-12-12'::date, 1::int, 1::int) "instrb"; SELECT instrb('2019-12-12'::date,'2019-12-12'::date, 1.9::numeric, 1.99::numeric) "instrb"; SELECT instrb('2019-12-12'::date,'2019-12-12'::date, 1.99::numeric) "instrb"; SELECT instrb('2019-12-12'::date,'2019-12-12'::date) "instrb"; SELECT instrb('2019-12-12'::timestamp,'2019-12-12'::timestamp,1::int,1::int) "instrb"; SELECT instrb('2019-12-12'::timestamp,'2019-12-12'::timestamp,1.9::numeric,1.99::numeric) "instrb"; SELECT instrb('2019-12-12'::timestamp,'2019-12-12'::timestamp,1::int) "instrb"; SELECT instrb('2019-12-12'::timestamp,'2019-12-12'::timestamp) "instrb"; SELECT instrb(null,null,null,null); SELECT instrb(null,null,null); SELECT instrb(null,null); SELECT instrb('','',-2::int,1::int); SELECT instrb('','',-1::int,1::int); SELECT instrb('','',0::int,1::int); SELECT instrb('','',2::int,1::int); SELECT instrb(' ',' ',0::int,1::int); SELECT instrb(' ',' ',-1::int,1::int); SELECT instrb('abcdCde'::varchar,'Cd'::text,0.99::numeric,1.99::numeric); SELECT instrb('abcdCde'::text,'Cd'::text,-1.99::numeric,1::int); SELECT instrb('abcdCde'::text,'Cd'::varchar2,-8.9::numeric,1::int); SELECT instrb('','',0::int); SELECT instrb('','',-1::int); SELECT instrb('','',0.9::numeric); SELECT instrb('','',-1.9::numeric); SELECT instrb(' ',' ',0::int); SELECT instrb(' ',' ',-1::int); SELECT instrb('',''); SELECT instrb(' ',' '); reset compatible_mode;
<gh_stars>0 -- :name create-attendances-table :! create table attendances ( day date, id integer references members(id), primary key (day, id) ); -- :name drop-attendances-table :! drop table if exists attendances; -- :name insert-attendance-by-id :! :n -- CAREFUL this may re-add people that already signed off insert into attendances (day, id) values (:day, :id) on conflict do nothing; -- :name insert-attendance-by-email :! :n -- CAREFUL this may re-add people that already signed off insert into attendances (day, id) values (:day, (select id from members where email = :email)) on conflict do nothing; -- :name get-all-attendees :? :* select members.fullname, members.email from members, attendances where attendances.day = :day and attendances.id = members.id; -- :name get-all-events :? :* select distinct day from attendances; -- :name get-person-with-latest-bring-date-on :? :1 -- This determines who should bring the next breakfast: -- from all attendees, it should be the one that brought it the least recent. select email, fullname from members, attendances where day = :date and members.id = attendances.id order by day desc limit 1; -- :name remove-attendance-by-email-at :! :n delete from attendances where id = (select id from members where email = :email) and day = :day; -- :name remove-attendances-from :! :n delete from attendances where id = (select id from members where email = :email) and day > :date -- :name any-attendance-on-date :? :1 select exists (select 1 from attendances where day = :day); -- :name get-attendance-counts-since-bringing :? -- For a given date, gives the number of events attended by each attendee since -- they last brought breakfast themselves. select id, (count(*)-1) as count from attendances where day > (select coalesce(( /* get either the latest date this `id` brought breakfast */ select day from bringer where bringer.id = attendances.id order by day desc limit 1), /* or from the start */ (select cast( 'epoch' as date)))) and day <= :day and id in (select id from attendances where day = :day) group by id; -- :name cancel-event :! :n -- removes all attendances from event on given day delete from attendances where day = :day;
DROP TABLE IF EXISTS "table_versions"; DROP TABLE IF EXISTS "game_servers"; DROP TABLE IF EXISTS "bans"; DROP TABLE IF EXISTS "accounts"; CREATE TABLE "accounts" ( "id" serial NOT NULL, "username" TEXT NOT NULL UNIQUE, "access_level" integer NOT NULL DEFAULT '1', "creation_date" DATE NOT NULL DEFAULT CURRENT_TIMESTAMP, "passw" bytea NOT NULL, "salt" bytea NOT NULL, CONSTRAINT accounts_pk PRIMARY KEY ("id") ) WITH ( OIDS=FALSE ); CREATE TABLE "bans" ( "id" serial NOT NULL, "account_id" integer NOT NULL, "offending_ip" varchar(39) NOT NULL, "started" DATE NOT NULL DEFAULT CURRENT_TIMESTAMP, "reason" varchar(1024) NOT NULL, CONSTRAINT bans_pk PRIMARY KEY ("id") ) WITH ( OIDS=FALSE ); CREATE TABLE "game_servers" ( "id" serial NOT NULL, "addr" varchar(39) NOT NULL, "port" integer NOT NULL, "name" varchar(100) NOT NULL, "token" integer NOT NULL, CONSTRAINT game_servers_pk PRIMARY KEY ("id") ) WITH ( OIDS=FALSE ); CREATE TABLE "table_versions" ( "id" serial NOT NULL, "table_name" varchar NOT NULL UNIQUE, "version" integer NOT NULL, "last_update" DATE NOT NULL DEFAULT CURRENT_TIMESTAMP, CONSTRAINT table_versions_pk PRIMARY KEY ("id") ) WITH ( OIDS=FALSE ); INSERT INTO table_versions VALUES(1,'db_version',1,'2019-02-17 03:11:58'); INSERT INTO table_versions VALUES(2,'table_versions',0,'2017-11-11 08:55:54'); INSERT INTO table_versions VALUES(3,'accounts',1,'2018-01-06 11:18:01'); INSERT INTO table_versions VALUES(4,'game_servers',0,'2017-11-11 09:12:37'); INSERT INTO table_versions VALUES(5,'bans',0,'2017-11-11 09:12:37'); ALTER TABLE "bans" ADD CONSTRAINT "bans_fk0" FOREIGN KEY ("account_id") REFERENCES "accounts"("id");
<reponame>opengauss-mirror/Yat -- @testpoint: justify_days 分钟超过60 drop table if exists test_date01; create table test_date01 (clo1 interval ); insert into test_date01 values ('1 year 33 months 30 days 55 hours 70 m 4 s'); select justify_days(clo1) from test_date01; SELECT justify_days(interval '1 year 33 months 30 days 55 hours 70 m 4 s'); drop table if exists test_date01;
<filename>openGaussBase/testcase/KEYWORDS/locator/Opengauss_Function_Keyword_Locator_Case0029.sql -- @testpoint:opengauss关键字locator(非保留),作为表空间名 --关键字不带引号,创建成功 drop tablespace if exists locator; CREATE TABLESPACE locator RELATIVE LOCATION 'hdfs_tablespace/hdfs_tablespace_1'; drop tablespace locator; --关键字带双引号,创建成功 drop tablespace if exists "locator"; CREATE TABLESPACE "locator" RELATIVE LOCATION 'hdfs_tablespace/hdfs_tablespace_1'; drop tablespace "locator"; --关键字带单引号,合理报错 drop tablespace if exists 'locator'; CREATE TABLESPACE 'locator' RELATIVE LOCATION 'hdfs_tablespace/hdfs_tablespace_1'; --关键字带反引号,合理报错 drop tablespace if exists `locator`; CREATE TABLESPACE `locator` RELATIVE LOCATION 'hdfs_tablespace/hdfs_tablespace_1';
<filename>templates/nmintra/update/sql_scripts/07.08.02.migrate.sql ALTER TABLE v1_archief ADD INDEX version_index (original_node,datum);
CREATE TABLE ABS (a INT); -- error 42601: syntax error: table name cannot be reserved word: ABS CREATE TABLE ACOS (a INT); -- error 42601: syntax error: table name cannot be reserved word: ACOS CREATE TABLE ALL (a INT); -- error 42601: syntax error: table name cannot be reserved word: ALL CREATE TABLE ALLOCATE (a INT); -- error 42601: syntax error: table name cannot be reserved word: ALLOCATE CREATE TABLE ALTER (a INT); -- error 42601: syntax error: table name cannot be reserved word: ALTER CREATE TABLE AND (a INT); -- error 42601: syntax error: expecting literal_identifier but found AND CREATE TABLE ANY (a INT); -- error 42601: syntax error: table name cannot be reserved word: ANY CREATE TABLE ARE (a INT); -- error 42601: syntax error: table name cannot be reserved word: ARE CREATE TABLE ARRAY (a INT); -- error 42601: syntax error: table name cannot be reserved word: ARRAY CREATE TABLE ARRAY_AGG (a INT); -- error 42601: syntax error: table name cannot be reserved word: ARRAY_AGG CREATE TABLE ARRAY_MAX_CARDINALITY (a INT); -- error 42601: syntax error: table name cannot be reserved word: ARRAY_MAX_CARDINALITY CREATE TABLE AS (a INT); -- error 42601: syntax error: expecting literal_identifier but found AS CREATE TABLE ASENSITIVE (a INT); -- error 42601: syntax error: table name cannot be reserved word: ASENSITIVE CREATE TABLE ASIN (a INT); -- error 42601: syntax error: table name cannot be reserved word: ASIN CREATE TABLE ASYMMETRIC (a INT); -- error 42601: syntax error: table name cannot be reserved word: ASYMMETRIC CREATE TABLE AT (a INT); -- error 42601: syntax error: table name cannot be reserved word: AT CREATE TABLE ATAN (a INT); -- error 42601: syntax error: table name cannot be reserved word: ATAN CREATE TABLE ATOMIC (a INT); -- error 42601: syntax error: table name cannot be reserved word: ATOMIC CREATE TABLE AUTHORIZATION (a INT); -- error 42601: syntax error: table name cannot be reserved word: AUTHORIZATION CREATE TABLE AVG (a INT); -- error 42601: syntax error: table name cannot be reserved word: AVG CREATE TABLE BEGIN (a INT); -- error 42601: syntax error: table name cannot be reserved word: BEGIN CREATE TABLE BEGIN_FRAME (a INT); -- error 42601: syntax error: table name cannot be reserved word: BEGIN_FRAME CREATE TABLE BEGIN_PARTITION (a INT); -- error 42601: syntax error: table name cannot be reserved word: BEGIN_PARTITION CREATE TABLE BETWEEN (a INT); -- error 42601: syntax error: table name cannot be reserved word: BETWEEN CREATE TABLE BIGINT (a INT); -- error 42601: syntax error: expecting literal_identifier but found BIGINT CREATE TABLE BINARY (a INT); -- error 42601: syntax error: table name cannot be reserved word: BINARY CREATE TABLE BLOB (a INT); -- error 42601: syntax error: table name cannot be reserved word: BLOB CREATE TABLE BOOLEAN (a INT); -- error 42601: syntax error: expecting literal_identifier but found BOOLEAN CREATE TABLE BOTH (a INT); -- error 42601: syntax error: table name cannot be reserved word: BOTH CREATE TABLE BY (a INT); -- error 42601: syntax error: table name cannot be reserved word: BY CREATE TABLE CALL (a INT); -- error 42601: syntax error: table name cannot be reserved word: CALL CREATE TABLE CALLED (a INT); -- error 42601: syntax error: table name cannot be reserved word: CALLED CREATE TABLE CARDINALITY (a INT); -- error 42601: syntax error: table name cannot be reserved word: CARDINALITY CREATE TABLE CASCADED (a INT); -- error 42601: syntax error: table name cannot be reserved word: CASCADED CREATE TABLE CASE (a INT); -- error 42601: syntax error: table name cannot be reserved word: CASE CREATE TABLE CAST (a INT); -- error 42601: syntax error: table name cannot be reserved word: CAST CREATE TABLE CEIL (a INT); -- error 42601: syntax error: table name cannot be reserved word: CEIL CREATE TABLE CEILING (a INT); -- error 42601: syntax error: table name cannot be reserved word: CEILING CREATE TABLE CHAR (a INT); -- error 42601: syntax error: expecting literal_identifier but found CHAR CREATE TABLE CHAR_LENGTH (a INT); -- error 42601: syntax error: table name cannot be reserved word: CHAR_LENGTH CREATE TABLE CHARACTER (a INT); -- error 42601: syntax error: expecting literal_identifier but found CHARACTER CREATE TABLE CHARACTER_LENGTH (a INT); -- error 42601: syntax error: table name cannot be reserved word: CHARACTER_LENGTH CREATE TABLE CHECK (a INT); -- error 42601: syntax error: table name cannot be reserved word: CHECK CREATE TABLE CLASSIFIER (a INT); -- error 42601: syntax error: table name cannot be reserved word: CLASSIFIER CREATE TABLE CLOB (a INT); -- error 42601: syntax error: table name cannot be reserved word: CLOB CREATE TABLE CLOSE (a INT); -- error 42601: syntax error: table name cannot be reserved word: CLOSE CREATE TABLE COALESCE (a INT); -- error 42601: syntax error: table name cannot be reserved word: COALESCE CREATE TABLE COLLATE (a INT); -- error 42601: syntax error: table name cannot be reserved word: COLLATE CREATE TABLE COLLECT (a INT); -- error 42601: syntax error: table name cannot be reserved word: COLLECT CREATE TABLE COLUMN (a INT); -- error 42601: syntax error: table name cannot be reserved word: COLUMN CREATE TABLE COMMIT (a INT); -- error 42601: syntax error: table name cannot be reserved word: COMMIT CREATE TABLE CONDITION (a INT); -- error 42601: syntax error: table name cannot be reserved word: CONDITION CREATE TABLE CONNECT (a INT); -- error 42601: syntax error: table name cannot be reserved word: CONNECT CREATE TABLE CONSTRAINT (a INT); -- error 42601: syntax error: table name cannot be reserved word: CONSTRAINT CREATE TABLE CONTAINS (a INT); -- error 42601: syntax error: table name cannot be reserved word: CONTAINS CREATE TABLE CONVERT (a INT); -- error 42601: syntax error: table name cannot be reserved word: CONVERT CREATE TABLE COPY (a INT); -- error 42601: syntax error: table name cannot be reserved word: COPY CREATE TABLE CORR (a INT); -- error 42601: syntax error: table name cannot be reserved word: CORR CREATE TABLE CORRESPONDING (a INT); -- error 42601: syntax error: table name cannot be reserved word: CORRESPONDING CREATE TABLE COS (a INT); -- error 42601: syntax error: table name cannot be reserved word: COS CREATE TABLE COSH (a INT); -- error 42601: syntax error: table name cannot be reserved word: COSH CREATE TABLE COUNT (a INT); -- error 42601: syntax error: table name cannot be reserved word: COUNT CREATE TABLE COVAR_POP (a INT); -- error 42601: syntax error: table name cannot be reserved word: COVAR_POP CREATE TABLE COVAR_SAMP (a INT); -- error 42601: syntax error: table name cannot be reserved word: COVAR_SAMP CREATE TABLE CREATE (a INT); -- error 42601: syntax error: expecting literal_identifier but found CREATE CREATE TABLE CROSS (a INT); -- error 42601: syntax error: table name cannot be reserved word: CROSS CREATE TABLE CUBE (a INT); -- error 42601: syntax error: table name cannot be reserved word: CUBE CREATE TABLE CUME_DIST (a INT); -- error 42601: syntax error: table name cannot be reserved word: CUME_DIST CREATE TABLE CURRENT (a INT); -- error 42601: syntax error: table name cannot be reserved word: CURRENT CREATE TABLE CURRENT_CATALOG (a INT); -- error 42601: syntax error: table name cannot be reserved word: CURRENT_CATALOG CREATE TABLE CURRENT_DATE (a INT); -- error 42601: syntax error: table name cannot be reserved word: CURRENT_DATE CREATE TABLE CURRENT_DEFAULT_TRANSFORM_GROUP (a INT); -- error 42601: syntax error: table name cannot be reserved word: CURRENT_DEFAULT_TRANSFORM_GROUP CREATE TABLE CURRENT_PATH (a INT); -- error 42601: syntax error: table name cannot be reserved word: CURRENT_PATH CREATE TABLE CURRENT_ROLE (a INT); -- error 42601: syntax error: table name cannot be reserved word: CURRENT_ROLE CREATE TABLE CURRENT_ROW (a INT); -- error 42601: syntax error: table name cannot be reserved word: CURRENT_ROW CREATE TABLE CURRENT_SCHEMA (a INT); -- error 42601: syntax error: table name cannot be reserved word: CURRENT_SCHEMA CREATE TABLE CURRENT_TIME (a INT); -- error 42601: syntax error: table name cannot be reserved word: CURRENT_TIME CREATE TABLE CURRENT_TIMESTAMP (a INT); -- error 42601: syntax error: table name cannot be reserved word: CURRENT_TIMESTAMP CREATE TABLE CURRENT_PATH (a INT); -- error 42601: syntax error: table name cannot be reserved word: CURRENT_PATH CREATE TABLE CURRENT_ROLE (a INT); -- error 42601: syntax error: table name cannot be reserved word: CURRENT_ROLE CREATE TABLE CURRENT_TRANSFORM_GROUP_FOR_TYPE (a INT); -- error 42601: syntax error: table name cannot be reserved word: CURRENT_TRANSFORM_GROUP_FOR_TYPE CREATE TABLE CURRENT_USER (a INT); -- error 42601: syntax error: table name cannot be reserved word: CURRENT_USER CREATE TABLE CURSOR (a INT); -- error 42601: syntax error: table name cannot be reserved word: CURSOR CREATE TABLE CYCLE (a INT); -- error 42601: syntax error: table name cannot be reserved word: CYCLE CREATE TABLE DATE (a INT); -- error 42601: syntax error: table name cannot be reserved word: DATE CREATE TABLE DAY (a INT); -- error 42601: syntax error: table name cannot be reserved word: DAY CREATE TABLE DEALLOCATE (a INT); -- error 42601: syntax error: table name cannot be reserved word: DEALLOCATE CREATE TABLE DEC (a INT); -- error 42601: syntax error: table name cannot be reserved word: DEC CREATE TABLE DECIMAL (a INT); -- error 42601: syntax error: table name cannot be reserved word: DECIMAL CREATE TABLE DECFLOAT (a INT); -- error 42601: syntax error: table name cannot be reserved word: DECFLOAT CREATE TABLE DECLARE (a INT); -- error 42601: syntax error: table name cannot be reserved word: DECLARE CREATE TABLE DEFAULT (a INT); -- error 42601: syntax error: table name cannot be reserved word: DEFAULT CREATE TABLE DEFINE (a INT); -- error 42601: syntax error: table name cannot be reserved word: DEFINE CREATE TABLE DELETE (a INT); -- error 42601: syntax error: expecting literal_identifier but found DELETE CREATE TABLE DENSE_RANK (a INT); -- error 42601: syntax error: table name cannot be reserved word: DENSE_RANK CREATE TABLE DEREF (a INT); -- error 42601: syntax error: table name cannot be reserved word: DEREF CREATE TABLE DESCRIBE (a INT); -- error 42601: syntax error: table name cannot be reserved word: DESCRIBE CREATE TABLE DETERMINISTIC (a INT); -- error 42601: syntax error: table name cannot be reserved word: DETERMINISTIC CREATE TABLE DISCONNECT (a INT); -- error 42601: syntax error: table name cannot be reserved word: DISCONNECT CREATE TABLE DISTINCT (a INT); -- error 42601: syntax error: table name cannot be reserved word: DISTINCT CREATE TABLE DOUBLE (a INT); -- error 42601: syntax error: expecting literal_identifier but found DOUBLE CREATE TABLE DROP (a INT); -- error 42601: syntax error: expecting literal_identifier but found DROP CREATE TABLE DYNAMIC (a INT); -- error 42601: syntax error: table name cannot be reserved word: DYNAMIC CREATE TABLE EACH (a INT); -- error 42601: syntax error: table name cannot be reserved word: EACH CREATE TABLE ELEMENT (a INT); -- error 42601: syntax error: table name cannot be reserved word: ELEMENT CREATE TABLE ELSE (a INT); -- error 42601: syntax error: table name cannot be reserved word: ELSE CREATE TABLE EMPTY (a INT); -- error 42601: syntax error: table name cannot be reserved word: EMPTY CREATE TABLE END (a INT); -- error 42601: syntax error: table name cannot be reserved word: END CREATE TABLE END_FRAME (a INT); -- error 42601: syntax error: table name cannot be reserved word: END_FRAME CREATE TABLE END_PARTITION (a INT); -- error 42601: syntax error: table name cannot be reserved word: END_PARTITION CREATE TABLE END-EXEC (a INT); -- error 42601: syntax error: expecting left_paren but found - CREATE TABLE EQUALS (a INT); -- error 42601: syntax error: table name cannot be reserved word: EQUALS CREATE TABLE ESCAPE (a INT); -- error 42601: syntax error: table name cannot be reserved word: ESCAPE CREATE TABLE EVERY (a INT); -- error 42601: syntax error: table name cannot be reserved word: EVERY CREATE TABLE EXCEPT (a INT); -- error 42601: syntax error: table name cannot be reserved word: EXCEPT CREATE TABLE EXEC (a INT); -- error 42601: syntax error: table name cannot be reserved word: EXEC CREATE TABLE EXECUTE (a INT); -- error 42601: syntax error: table name cannot be reserved word: EXECUTE CREATE TABLE EXISTS (a INT); -- error 42601: syntax error: table name cannot be reserved word: EXISTS CREATE TABLE EXP (a INT); -- error 42601: syntax error: table name cannot be reserved word: EXP CREATE TABLE EXTERNAL (a INT); -- error 42601: syntax error: table name cannot be reserved word: EXTERNAL CREATE TABLE EXTRACT (a INT); -- error 42601: syntax error: table name cannot be reserved word: EXTRACT CREATE TABLE FALSE (a INT); -- error 42601: syntax error: expecting literal_identifier but found FALSE CREATE TABLE FETCH (a INT); -- error 42601: syntax error: expecting literal_identifier but found FETCH CREATE TABLE FILTER (a INT); -- error 42601: syntax error: table name cannot be reserved word: FILTER CREATE TABLE FIRST_VALUE (a INT); -- error 42601: syntax error: table name cannot be reserved word: FIRST_VALUE CREATE TABLE FLOAT (a INT); -- error 42601: syntax error: expecting literal_identifier but found FLOAT CREATE TABLE FLOOR (a INT); -- error 42601: syntax error: table name cannot be reserved word: FLOOR CREATE TABLE FOR (a INT); -- error 42601: syntax error: table name cannot be reserved word: FOR CREATE TABLE FOREIGN (a INT); -- error 42601: syntax error: table name cannot be reserved word: FOREIGN CREATE TABLE FRAME_ROW (a INT); -- error 42601: syntax error: table name cannot be reserved word: FRAME_ROW CREATE TABLE FREE (a INT); -- error 42601: syntax error: table name cannot be reserved word: FREE CREATE TABLE FROM (a INT); -- error 42601: syntax error: expecting literal_identifier but found FROM CREATE TABLE FULL (a INT); -- error 42601: syntax error: table name cannot be reserved word: FULL CREATE TABLE FUNCTION (a INT); -- error 42601: syntax error: table name cannot be reserved word: FUNCTION CREATE TABLE FUSION (a INT); -- error 42601: syntax error: table name cannot be reserved word: FUSION CREATE TABLE GET (a INT); -- error 42601: syntax error: table name cannot be reserved word: GET CREATE TABLE GLOBAL (a INT); -- error 42601: syntax error: table name cannot be reserved word: GLOBAL CREATE TABLE GRANT (a INT); -- error 42601: syntax error: table name cannot be reserved word: GRANT CREATE TABLE GROUP (a INT); -- error 42601: syntax error: table name cannot be reserved word: GROUP CREATE TABLE GROUPING (a INT); -- error 42601: syntax error: table name cannot be reserved word: GROUPING CREATE TABLE GROUPS (a INT); -- error 42601: syntax error: table name cannot be reserved word: GROUPS CREATE TABLE HAVING (a INT); -- error 42601: syntax error: table name cannot be reserved word: HAVING CREATE TABLE HOLD (a INT); -- error 42601: syntax error: table name cannot be reserved word: HOLD CREATE TABLE HOUR (a INT); -- error 42601: syntax error: table name cannot be reserved word: HOUR CREATE TABLE IDENTITY (a INT); -- error 42601: syntax error: table name cannot be reserved word: IDENTITY CREATE TABLE IN (a INT); -- error 42601: syntax error: table name cannot be reserved word: IN CREATE TABLE INDICATOR (a INT); -- error 42601: syntax error: table name cannot be reserved word: INDICATOR CREATE TABLE INITIAL (a INT); -- error 42601: syntax error: table name cannot be reserved word: INITIAL CREATE TABLE INNER (a INT); -- error 42601: syntax error: table name cannot be reserved word: INNER CREATE TABLE INOUT (a INT); -- error 42601: syntax error: table name cannot be reserved word: INOUT CREATE TABLE INSENSITIVE (a INT); -- error 42601: syntax error: table name cannot be reserved word: INSENSITIVE CREATE TABLE INSERT (a INT); -- error 42601: syntax error: expecting literal_identifier but found INSERT CREATE TABLE INT (a INT); -- error 42601: syntax error: expecting literal_identifier but found INT CREATE TABLE INTEGER (a INT); -- error 42601: syntax error: expecting literal_identifier but found INTEGER CREATE TABLE INTERSECT (a INT); -- error 42601: syntax error: table name cannot be reserved word: INTERSECT CREATE TABLE INTERSECTION (a INT); -- error 42601: syntax error: table name cannot be reserved word: INTERSECTION CREATE TABLE INTERVAL (a INT); -- error 42601: syntax error: table name cannot be reserved word: INTERVAL CREATE TABLE INTO (a INT); -- error 42601: syntax error: expecting literal_identifier but found INTO CREATE TABLE IS (a INT); -- error 42601: syntax error: expecting literal_identifier but found IS CREATE TABLE JOIN (a INT); -- error 42601: syntax error: table name cannot be reserved word: JOIN CREATE TABLE JSON_ARRAY (a INT); -- error 42601: syntax error: table name cannot be reserved word: JSON_ARRAY CREATE TABLE JSON_ARRAYAGG (a INT); -- error 42601: syntax error: table name cannot be reserved word: JSON_ARRAYAGG CREATE TABLE JSON_EXISTS (a INT); -- error 42601: syntax error: table name cannot be reserved word: JSON_EXISTS CREATE TABLE JSON_OBJECT (a INT); -- error 42601: syntax error: table name cannot be reserved word: JSON_OBJECT CREATE TABLE JSON_OBJECTAGG (a INT); -- error 42601: syntax error: table name cannot be reserved word: JSON_OBJECTAGG CREATE TABLE JSON_QUERY (a INT); -- error 42601: syntax error: table name cannot be reserved word: JSON_QUERY CREATE TABLE JSON_TABLE (a INT); -- error 42601: syntax error: table name cannot be reserved word: JSON_TABLE CREATE TABLE JSON_TABLE_PRIMITIVE (a INT); -- error 42601: syntax error: table name cannot be reserved word: JSON_TABLE_PRIMITIVE CREATE TABLE JSON_VALUE (a INT); -- error 42601: syntax error: table name cannot be reserved word: JSON_VALUE CREATE TABLE LAG (a INT); -- error 42601: syntax error: table name cannot be reserved word: LAG CREATE TABLE LANGUAGE (a INT); -- error 42601: syntax error: table name cannot be reserved word: LANGUAGE CREATE TABLE LARGE (a INT); -- error 42601: syntax error: table name cannot be reserved word: LARGE CREATE TABLE LAST_VALUE (a INT); -- error 42601: syntax error: table name cannot be reserved word: LAST_VALUE CREATE TABLE LATERAL (a INT); -- error 42601: syntax error: table name cannot be reserved word: LATERAL CREATE TABLE LEAD (a INT); -- error 42601: syntax error: table name cannot be reserved word: LEAD CREATE TABLE LEADING (a INT); -- error 42601: syntax error: table name cannot be reserved word: LEADING CREATE TABLE LEFT (a INT); -- error 42601: syntax error: table name cannot be reserved word: LEFT CREATE TABLE LIKE (a INT); -- error 42601: syntax error: table name cannot be reserved word: LIKE CREATE TABLE LIKE_REGEX (a INT); -- error 42601: syntax error: table name cannot be reserved word: LIKE_REGEX CREATE TABLE LISTAGG (a INT); -- error 42601: syntax error: table name cannot be reserved word: LISTAGG CREATE TABLE LN (a INT); -- error 42601: syntax error: table name cannot be reserved word: LN CREATE TABLE LOCAL (a INT); -- error 42601: syntax error: table name cannot be reserved word: LOCAL CREATE TABLE LOCALTIME (a INT); -- error 42601: syntax error: table name cannot be reserved word: LOCALTIME CREATE TABLE LOCALTIMESTAMP (a INT); -- error 42601: syntax error: table name cannot be reserved word: LOCALTIMESTAMP CREATE TABLE LOG (a INT); -- error 42601: syntax error: table name cannot be reserved word: LOG CREATE TABLE LOG10 (a INT); -- error 42601: syntax error: table name cannot be reserved word: LOG10 CREATE TABLE LOWER (a INT); -- error 42601: syntax error: table name cannot be reserved word: LOWER CREATE TABLE MATCH (a INT); -- error 42601: syntax error: table name cannot be reserved word: MATCH CREATE TABLE MATCH_NUMBER (a INT); -- error 42601: syntax error: table name cannot be reserved word: MATCH_NUMBER CREATE TABLE MATCH_RECOGNIZE (a INT); -- error 42601: syntax error: table name cannot be reserved word: MATCH_RECOGNIZE CREATE TABLE MATCHES (a INT); -- error 42601: syntax error: table name cannot be reserved word: MATCHES CREATE TABLE MAX (a INT); -- error 42601: syntax error: table name cannot be reserved word: MAX CREATE TABLE MEMBER (a INT); -- error 42601: syntax error: table name cannot be reserved word: MEMBER CREATE TABLE MERGE (a INT); -- error 42601: syntax error: table name cannot be reserved word: MERGE CREATE TABLE METHOD (a INT); -- error 42601: syntax error: table name cannot be reserved word: METHOD CREATE TABLE MIN (a INT); -- error 42601: syntax error: table name cannot be reserved word: MIN CREATE TABLE MINUTE (a INT); -- error 42601: syntax error: table name cannot be reserved word: MINUTE CREATE TABLE MOD (a INT); -- error 42601: syntax error: table name cannot be reserved word: MOD CREATE TABLE MODIFIES (a INT); -- error 42601: syntax error: table name cannot be reserved word: MODIFIES CREATE TABLE MODULE (a INT); -- error 42601: syntax error: table name cannot be reserved word: MODULE CREATE TABLE MONTH (a INT); -- error 42601: syntax error: table name cannot be reserved word: MONTH CREATE TABLE MULTISET (a INT); -- error 42601: syntax error: table name cannot be reserved word: MULTISET CREATE TABLE NATIONAL (a INT); -- error 42601: syntax error: table name cannot be reserved word: NATIONAL CREATE TABLE NATURAL (a INT); -- error 42601: syntax error: table name cannot be reserved word: NATURAL CREATE TABLE NCHAR (a INT); -- error 42601: syntax error: table name cannot be reserved word: NCHAR CREATE TABLE NCLOB (a INT); -- error 42601: syntax error: table name cannot be reserved word: NCLOB CREATE TABLE NEW (a INT); -- error 42601: syntax error: table name cannot be reserved word: NEW CREATE TABLE NO (a INT); -- error 42601: syntax error: table name cannot be reserved word: NO CREATE TABLE NONE (a INT); -- error 42601: syntax error: table name cannot be reserved word: NONE CREATE TABLE NORMALIZE (a INT); -- error 42601: syntax error: table name cannot be reserved word: NORMALIZE CREATE TABLE NOT (a INT); -- error 42601: syntax error: expecting literal_identifier but found NOT CREATE TABLE NTH_VALUE (a INT); -- error 42601: syntax error: table name cannot be reserved word: NTH_VALUE CREATE TABLE NTILE (a INT); -- error 42601: syntax error: table name cannot be reserved word: NTILE CREATE TABLE NULL (a INT); -- error 42601: syntax error: expecting literal_identifier but found NULL CREATE TABLE NULLIF (a INT); -- error 42601: syntax error: table name cannot be reserved word: NULLIF CREATE TABLE NUMERIC (a INT); -- error 42601: syntax error: table name cannot be reserved word: NUMERIC CREATE TABLE OCTET_LENGTH (a INT); -- error 42601: syntax error: table name cannot be reserved word: OCTET_LENGTH CREATE TABLE OCCURRENCES_REGEX (a INT); -- error 42601: syntax error: table name cannot be reserved word: OCCURRENCES_REGEX CREATE TABLE OF (a INT); -- error 42601: syntax error: table name cannot be reserved word: OF CREATE TABLE OFFSET (a INT); -- error 42601: syntax error: expecting literal_identifier but found OFFSET CREATE TABLE OLD (a INT); -- error 42601: syntax error: table name cannot be reserved word: OLD CREATE TABLE OMIT (a INT); -- error 42601: syntax error: table name cannot be reserved word: OMIT CREATE TABLE ON (a INT); -- error 42601: syntax error: table name cannot be reserved word: ON CREATE TABLE ONE (a INT); -- error 42601: syntax error: table name cannot be reserved word: ONE CREATE TABLE ONLY (a INT); -- error 42601: syntax error: expecting literal_identifier but found ONLY CREATE TABLE OPEN (a INT); -- error 42601: syntax error: table name cannot be reserved word: OPEN CREATE TABLE OR (a INT); -- error 42601: syntax error: expecting literal_identifier but found OR CREATE TABLE ORDER (a INT); -- error 42601: syntax error: table name cannot be reserved word: ORDER CREATE TABLE OUT (a INT); -- error 42601: syntax error: table name cannot be reserved word: OUT CREATE TABLE OUTER (a INT); -- error 42601: syntax error: table name cannot be reserved word: OUTER CREATE TABLE OVER (a INT); -- error 42601: syntax error: table name cannot be reserved word: OVER CREATE TABLE OVERLAPS (a INT); -- error 42601: syntax error: table name cannot be reserved word: OVERLAPS CREATE TABLE OVERLAY (a INT); -- error 42601: syntax error: table name cannot be reserved word: OVERLAY CREATE TABLE PARAMETER (a INT); -- error 42601: syntax error: table name cannot be reserved word: PARAMETER CREATE TABLE PARTITION (a INT); -- error 42601: syntax error: table name cannot be reserved word: PARTITION CREATE TABLE PATTERN (a INT); -- error 42601: syntax error: table name cannot be reserved word: PATTERN CREATE TABLE PER (a INT); -- error 42601: syntax error: table name cannot be reserved word: PER CREATE TABLE PERCENT (a INT); -- error 42601: syntax error: table name cannot be reserved word: PERCENT CREATE TABLE PERCENT_RANK (a INT); -- error 42601: syntax error: table name cannot be reserved word: PERCENT_RANK CREATE TABLE PERCENTILE_CONT (a INT); -- error 42601: syntax error: table name cannot be reserved word: PERCENTILE_CONT CREATE TABLE PERCENTILE_DISC (a INT); -- error 42601: syntax error: table name cannot be reserved word: PERCENTILE_DISC CREATE TABLE PERIOD (a INT); -- error 42601: syntax error: table name cannot be reserved word: PERIOD CREATE TABLE PORTION (a INT); -- error 42601: syntax error: table name cannot be reserved word: PORTION CREATE TABLE POSITION (a INT); -- error 42601: syntax error: table name cannot be reserved word: POSITION CREATE TABLE POSITION_REGEX (a INT); -- error 42601: syntax error: table name cannot be reserved word: POSITION_REGEX CREATE TABLE POWER (a INT); -- error 42601: syntax error: table name cannot be reserved word: POWER CREATE TABLE PRECEDES (a INT); -- error 42601: syntax error: table name cannot be reserved word: PRECEDES CREATE TABLE PRECISION (a INT); -- error 42601: syntax error: expecting literal_identifier but found PRECISION CREATE TABLE PREPARE (a INT); -- error 42601: syntax error: table name cannot be reserved word: PREPARE CREATE TABLE PRIMARY (a INT); -- error 42601: syntax error: table name cannot be reserved word: PRIMARY CREATE TABLE PROCEDURE (a INT); -- error 42601: syntax error: table name cannot be reserved word: PROCEDURE CREATE TABLE PTF (a INT); -- error 42601: syntax error: table name cannot be reserved word: PTF CREATE TABLE RANGE (a INT); -- error 42601: syntax error: table name cannot be reserved word: RANGE CREATE TABLE RANK (a INT); -- error 42601: syntax error: table name cannot be reserved word: RANK CREATE TABLE READS (a INT); -- error 42601: syntax error: table name cannot be reserved word: READS CREATE TABLE REAL (a INT); -- error 42601: syntax error: expecting literal_identifier but found REAL CREATE TABLE RECURSIVE (a INT); -- error 42601: syntax error: table name cannot be reserved word: RECURSIVE CREATE TABLE REF (a INT); -- error 42601: syntax error: table name cannot be reserved word: REF CREATE TABLE REFERENCES (a INT); -- error 42601: syntax error: table name cannot be reserved word: REFERENCES CREATE TABLE REFERENCING (a INT); -- error 42601: syntax error: table name cannot be reserved word: REFERENCING CREATE TABLE REGR_AVGX (a INT); -- error 42601: syntax error: table name cannot be reserved word: REGR_AVGX CREATE TABLE REGR_AVGY (a INT); -- error 42601: syntax error: table name cannot be reserved word: REGR_AVGY CREATE TABLE REGR_COUNT (a INT); -- error 42601: syntax error: table name cannot be reserved word: REGR_COUNT CREATE TABLE REGR_INTERCEPT (a INT); -- error 42601: syntax error: table name cannot be reserved word: REGR_INTERCEPT CREATE TABLE REGR_R2 (a INT); -- error 42601: syntax error: table name cannot be reserved word: REGR_R2 CREATE TABLE REGR_SLOPE (a INT); -- error 42601: syntax error: table name cannot be reserved word: REGR_SLOPE CREATE TABLE REGR_SXX (a INT); -- error 42601: syntax error: table name cannot be reserved word: REGR_SXX CREATE TABLE REGR_SXY (a INT); -- error 42601: syntax error: table name cannot be reserved word: REGR_SXY CREATE TABLE REGR_SYY (a INT); -- error 42601: syntax error: table name cannot be reserved word: REGR_SYY CREATE TABLE RELEASE (a INT); -- error 42601: syntax error: table name cannot be reserved word: RELEASE CREATE TABLE RESULT (a INT); -- error 42601: syntax error: table name cannot be reserved word: RESULT CREATE TABLE RETURN (a INT); -- error 42601: syntax error: table name cannot be reserved word: RETURN CREATE TABLE RETURNS (a INT); -- error 42601: syntax error: table name cannot be reserved word: RETURNS CREATE TABLE REVOKE (a INT); -- error 42601: syntax error: table name cannot be reserved word: REVOKE CREATE TABLE RIGHT (a INT); -- error 42601: syntax error: table name cannot be reserved word: RIGHT CREATE TABLE ROLLBACK (a INT); -- error 42601: syntax error: table name cannot be reserved word: ROLLBACK CREATE TABLE ROLLUP (a INT); -- error 42601: syntax error: table name cannot be reserved word: ROLLUP CREATE TABLE ROW (a INT); -- error 42601: syntax error: expecting literal_identifier but found ROW CREATE TABLE ROW_NUMBER (a INT); -- error 42601: syntax error: table name cannot be reserved word: ROW_NUMBER CREATE TABLE ROWS (a INT); -- error 42601: syntax error: expecting literal_identifier but found ROWS CREATE TABLE RUNNING (a INT); -- error 42601: syntax error: table name cannot be reserved word: RUNNING CREATE TABLE SAVEPOINT (a INT); -- error 42601: syntax error: table name cannot be reserved word: SAVEPOINT CREATE TABLE SCOPE (a INT); -- error 42601: syntax error: table name cannot be reserved word: SCOPE CREATE TABLE SCROLL (a INT); -- error 42601: syntax error: table name cannot be reserved word: SCROLL CREATE TABLE SEARCH (a INT); -- error 42601: syntax error: table name cannot be reserved word: SEARCH CREATE TABLE SECOND (a INT); -- error 42601: syntax error: table name cannot be reserved word: SECOND CREATE TABLE SEEK (a INT); -- error 42601: syntax error: table name cannot be reserved word: SEEK CREATE TABLE SELECT (a INT); -- error 42601: syntax error: expecting literal_identifier but found SELECT CREATE TABLE SENSITIVE (a INT); -- error 42601: syntax error: table name cannot be reserved word: SENSITIVE CREATE TABLE SESSION_USER (a INT); -- error 42601: syntax error: table name cannot be reserved word: SESSION_USER CREATE TABLE SET (a INT); -- error 42601: syntax error: expecting literal_identifier but found SET CREATE TABLE SHOW (a INT); -- error 42601: syntax error: table name cannot be reserved word: SHOW CREATE TABLE SIMILAR (a INT); -- error 42601: syntax error: table name cannot be reserved word: SIMILAR CREATE TABLE SIN (a INT); -- error 42601: syntax error: table name cannot be reserved word: SIN CREATE TABLE SINH (a INT); -- error 42601: syntax error: table name cannot be reserved word: SINH CREATE TABLE SKIP (a INT); -- error 42601: syntax error: table name cannot be reserved word: SKIP CREATE TABLE SMALLINT (a INT); -- error 42601: syntax error: expecting literal_identifier but found SMALLINT CREATE TABLE SOME (a INT); -- error 42601: syntax error: table name cannot be reserved word: SOME CREATE TABLE SPECIFIC (a INT); -- error 42601: syntax error: table name cannot be reserved word: SPECIFIC CREATE TABLE SPECIFICTYPE (a INT); -- error 42601: syntax error: table name cannot be reserved word: SPECIFICTYPE CREATE TABLE SQL (a INT); -- error 42601: syntax error: table name cannot be reserved word: SQL CREATE TABLE SQLEXCEPTION (a INT); -- error 42601: syntax error: table name cannot be reserved word: SQLEXCEPTION CREATE TABLE SQLSTATE (a INT); -- error 42601: syntax error: table name cannot be reserved word: SQLSTATE CREATE TABLE SQLWARNING (a INT); -- error 42601: syntax error: table name cannot be reserved word: SQLWARNING CREATE TABLE SQRT (a INT); -- error 42601: syntax error: table name cannot be reserved word: SQRT CREATE TABLE START (a INT); -- error 42601: syntax error: table name cannot be reserved word: START CREATE TABLE STATIC (a INT); -- error 42601: syntax error: table name cannot be reserved word: STATIC CREATE TABLE STDDEV_POP (a INT); -- error 42601: syntax error: table name cannot be reserved word: STDDEV_POP CREATE TABLE STDDEV_SAMP (a INT); -- error 42601: syntax error: table name cannot be reserved word: STDDEV_SAMP CREATE TABLE SUBMULTISET (a INT); -- error 42601: syntax error: table name cannot be reserved word: SUBMULTISET CREATE TABLE SUBSET (a INT); -- error 42601: syntax error: table name cannot be reserved word: SUBSET CREATE TABLE SUBSTRING (a INT); -- error 42601: syntax error: table name cannot be reserved word: SUBSTRING CREATE TABLE SUBSTRING_REGEX (a INT); -- error 42601: syntax error: table name cannot be reserved word: SUBSTRING_REGEX CREATE TABLE SUCCEEDS (a INT); -- error 42601: syntax error: table name cannot be reserved word: SUCCEEDS CREATE TABLE SUM (a INT); -- error 42601: syntax error: table name cannot be reserved word: SUM CREATE TABLE SYMMETRIC (a INT); -- error 42601: syntax error: table name cannot be reserved word: SYMMETRIC CREATE TABLE SYSTEM (a INT); -- error 42601: syntax error: table name cannot be reserved word: SYSTEM CREATE TABLE SYSTEM_TIME (a INT); -- error 42601: syntax error: table name cannot be reserved word: SYSTEM_TIME CREATE TABLE SYSTEM_USER (a INT); -- error 42601: syntax error: table name cannot be reserved word: SYSTEM_USER CREATE TABLE TABLE (a INT); -- error 42601: syntax error: expecting literal_identifier but found TABLE CREATE TABLE TABLESAMPLE (a INT); -- error 42601: syntax error: table name cannot be reserved word: TABLESAMPLE CREATE TABLE TAN (a INT); -- error 42601: syntax error: table name cannot be reserved word: TAN CREATE TABLE TANH (a INT); -- error 42601: syntax error: table name cannot be reserved word: TANH CREATE TABLE THEN (a INT); -- error 42601: syntax error: table name cannot be reserved word: THEN CREATE TABLE TIME (a INT); -- error 42601: syntax error: table name cannot be reserved word: TIME CREATE TABLE TIMESTAMP (a INT); -- error 42601: syntax error: table name cannot be reserved word: TIMESTAMP CREATE TABLE TIMEZONE_HOUR (a INT); -- error 42601: syntax error: table name cannot be reserved word: TIMEZONE_HOUR CREATE TABLE TIMEZONE_MINUTE (a INT); -- error 42601: syntax error: table name cannot be reserved word: TIMEZONE_MINUTE CREATE TABLE TO (a INT); -- error 42601: syntax error: table name cannot be reserved word: TO CREATE TABLE TRAILING (a INT); -- error 42601: syntax error: table name cannot be reserved word: TRAILING CREATE TABLE TRANSLATE (a INT); -- error 42601: syntax error: table name cannot be reserved word: TRANSLATE CREATE TABLE TRANSLATE_REGEX (a INT); -- error 42601: syntax error: table name cannot be reserved word: TRANSLATE_REGEX CREATE TABLE TRANSLATION (a INT); -- error 42601: syntax error: table name cannot be reserved word: TRANSLATION CREATE TABLE TREAT (a INT); -- error 42601: syntax error: table name cannot be reserved word: TREAT CREATE TABLE TRIGGER (a INT); -- error 42601: syntax error: table name cannot be reserved word: TRIGGER CREATE TABLE TRIM (a INT); -- error 42601: syntax error: table name cannot be reserved word: TRIM CREATE TABLE TRIM_ARRAY (a INT); -- error 42601: syntax error: table name cannot be reserved word: TRIM_ARRAY CREATE TABLE TRUE (a INT); -- error 42601: syntax error: expecting literal_identifier but found TRUE CREATE TABLE TRUNCATE (a INT); -- error 42601: syntax error: table name cannot be reserved word: TRUNCATE CREATE TABLE UESCAPE (a INT); -- error 42601: syntax error: table name cannot be reserved word: UESCAPE CREATE TABLE UNION (a INT); -- error 42601: syntax error: table name cannot be reserved word: UNION CREATE TABLE UNIQUE (a INT); -- error 42601: syntax error: table name cannot be reserved word: UNIQUE CREATE TABLE UNKNOWN (a INT); -- error 42601: syntax error: expecting literal_identifier but found UNKNOWN CREATE TABLE UNNEST (a INT); -- error 42601: syntax error: table name cannot be reserved word: UNNEST CREATE TABLE UPDATE (a INT); -- error 42601: syntax error: expecting literal_identifier but found UPDATE CREATE TABLE UPPER (a INT); -- error 42601: syntax error: table name cannot be reserved word: UPPER CREATE TABLE USER (a INT); -- error 42601: syntax error: table name cannot be reserved word: USER CREATE TABLE USING (a INT); -- error 42601: syntax error: table name cannot be reserved word: USING CREATE TABLE VALUE (a INT); -- error 42601: syntax error: table name cannot be reserved word: VALUE CREATE TABLE VALUES (a INT); -- error 42601: syntax error: expecting literal_identifier but found VALUES CREATE TABLE VALUE_OF (a INT); -- error 42601: syntax error: table name cannot be reserved word: VALUE_OF CREATE TABLE VAR_POP (a INT); -- error 42601: syntax error: table name cannot be reserved word: VAR_POP CREATE TABLE VAR_SAMP (a INT); -- error 42601: syntax error: table name cannot be reserved word: VAR_SAMP CREATE TABLE VARBINARY (a INT); -- error 42601: syntax error: table name cannot be reserved word: VARBINARY CREATE TABLE VARCHAR (a INT); -- error 42601: syntax error: expecting literal_identifier but found VARCHAR CREATE TABLE VARYING (a INT); -- error 42601: syntax error: expecting literal_identifier but found VARYING CREATE TABLE VERSIONING (a INT); -- error 42601: syntax error: table name cannot be reserved word: VERSIONING CREATE TABLE WHEN (a INT); -- error 42601: syntax error: table name cannot be reserved word: WHEN CREATE TABLE WHENEVER (a INT); -- error 42601: syntax error: table name cannot be reserved word: WHENEVER CREATE TABLE WHERE (a INT); -- error 42601: syntax error: expecting literal_identifier but found WHERE CREATE TABLE WIDTH_BUCKET (a INT); -- error 42601: syntax error: table name cannot be reserved word: WIDTH_BUCKET CREATE TABLE WINDOW (a INT); -- error 42601: syntax error: table name cannot be reserved word: WINDOW CREATE TABLE WITH (a INT); -- error 42601: syntax error: table name cannot be reserved word: WITH CREATE TABLE WITHIN (a INT); -- error 42601: syntax error: table name cannot be reserved word: WITHIN CREATE TABLE WITHOUT (a INT); -- error 42601: syntax error: table name cannot be reserved word: WITHOUT CREATE TABLE YEAR (a INT); -- error 42601: syntax error: table name cannot be reserved word: YEAR CREATE TABLE abs (a INT); -- error 42601: syntax error: table name cannot be reserved word: ABS CREATE TABLE foo (ABS INT); -- error 42601: syntax error: column name cannot be reserved word: ABS CREATE TABLE foo (abs int); -- error 42601: syntax error: column name cannot be reserved word: ABS