Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Kharisov <albkharisov@gmail.com>2022-01-10 20:13:41 +0300
committerGitHub <noreply@github.com>2022-01-10 20:13:41 +0300
commit990a065bd02905724e2afa9798f05a10ee1f0e34 (patch)
tree7f8d2f94dcefb13434b8f45816332317b23a4103
parent389ff92cc14236db06605ee0992c9594da6cd7be (diff)
[FL-1929, FL-2164] IR App migrate to FFF (#949)
* IR app move to FFF * [FL-2164] Hide unimplemented submenus * Fix brute force fail * Fix FFF endless reading * Reformat TV bruteforce lib to FFF * fixes & cleanup * Infrared: switch to constexpr. Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
-rw-r--r--applications/irda/cli/irda_cli.cpp53
-rw-r--r--applications/irda/helpers/irda_parser.cpp145
-rw-r--r--applications/irda/helpers/irda_parser.h10
-rw-r--r--applications/irda/irda_app.cpp9
-rw-r--r--applications/irda/irda_app.h10
-rw-r--r--applications/irda/irda_app_brute_force.cpp76
-rw-r--r--applications/irda/irda_app_brute_force.h5
-rw-r--r--applications/irda/irda_app_file_parser.cpp396
-rw-r--r--applications/irda/irda_app_file_parser.h56
-rw-r--r--applications/irda/irda_app_remote_manager.cpp109
-rw-r--r--applications/irda/irda_app_remote_manager.h9
-rw-r--r--applications/irda/irda_app_signal.cpp77
-rw-r--r--applications/irda/irda_app_signal.h25
-rw-r--r--applications/irda/scene/irda_app_scene_learn.cpp4
-rw-r--r--applications/irda/scene/irda_app_scene_learn_success.cpp6
-rw-r--r--applications/irda/scene/irda_app_scene_remote_list.cpp30
-rw-r--r--applications/irda/scene/irda_app_scene_universal.cpp3
-rwxr-xr-xassets/resources/irda/universal/tv.ir1861
-rw-r--r--lib/app-scened-template/file_worker.c3
-rw-r--r--lib/flipper_file/flipper_file.c2
-rw-r--r--lib/irda/encoder_decoder/irda.h4
-rw-r--r--lib/irda/worker/irda_worker.c2
22 files changed, 1979 insertions, 916 deletions
diff --git a/applications/irda/cli/irda_cli.cpp b/applications/irda/cli/irda_cli.cpp
index 7e1b6b0c..cdb44e8b 100644
--- a/applications/irda/cli/irda_cli.cpp
+++ b/applications/irda/cli/irda_cli.cpp
@@ -11,6 +11,7 @@
#include <m-string.h>
#include <irda_transmit.h>
#include <sys/types.h>
+#include "../helpers/irda_parser.h"
static void signal_received_callback(void* context, IrdaWorkerSignal* received_signal) {
furi_assert(received_signal);
@@ -83,41 +84,17 @@ static void irda_cli_print_usage(void) {
}
static bool parse_message(const char* str, IrdaMessage* message) {
- uint32_t command = 0;
- uint32_t address = 0;
char protocol_name[32];
- int parsed = sscanf(str, "%31s %lX %lX", protocol_name, &address, &command);
+ int parsed = sscanf(str, "%31s %lX %lX", protocol_name, &message->address, &message->command);
if(parsed != 3) {
return false;
}
- IrdaProtocol protocol = irda_get_protocol_by_name(protocol_name);
-
- if(!irda_is_protocol_valid(protocol)) {
- return false;
- }
-
- uint32_t address_length = irda_get_protocol_address_length(protocol);
- uint32_t address_mask = (1LU << address_length) - 1;
- if(address != (address & address_mask)) {
- printf("Address out of range (mask 0x%08lX): 0x%lX\r\n", address_mask, address);
- return false;
- }
-
- uint32_t command_length = irda_get_protocol_command_length(protocol);
- uint32_t command_mask = (1LU << command_length) - 1;
- if(command != (command & command_mask)) {
- printf("Command out of range (mask 0x%08lX): 0x%lX\r\n", command_mask, command);
- return false;
- }
-
- message->protocol = protocol;
- message->address = address;
- message->command = command;
+ message->protocol = irda_get_protocol_by_name(protocol_name);
message->repeat = false;
- return true;
+ return irda_parser_is_parsed_signal_valid(message);
}
static bool parse_signal_raw(
@@ -135,14 +112,6 @@ static bool parse_signal_raw(
*duty_cycle = (float)atoi(duty_cycle_str) / 100;
str += strlen(frequency_str) + strlen(duty_cycle_str) + 10;
- if((*frequency > IRDA_MAX_FREQUENCY) || (*frequency < IRDA_MIN_FREQUENCY)) {
- return false;
- }
-
- if((*duty_cycle <= 0) || (*duty_cycle > 1)) {
- return false;
- }
-
uint32_t timings_cnt_max = *timings_cnt;
*timings_cnt = 0;
@@ -159,15 +128,7 @@ static bool parse_signal_raw(
++*timings_cnt;
}
- if(*timings_cnt > 0) {
- printf("\r\nTransmit:");
- for(size_t i = 0; i < *timings_cnt; ++i) {
- printf(" %ld", timings[i]);
- }
- printf("\r\n");
- }
-
- return (parsed == 2) && (*timings_cnt > 0);
+ return irda_parser_is_raw_signal_valid(*frequency, *duty_cycle, *timings_cnt);
}
void irda_cli_start_ir_tx(Cli* cli, string_t args, void* context) {
@@ -180,8 +141,8 @@ void irda_cli_start_ir_tx(Cli* cli, string_t args, void* context) {
const char* str = string_get_cstr(args);
uint32_t frequency;
float duty_cycle;
- uint32_t* timings = (uint32_t*)furi_alloc(sizeof(uint32_t) * 512);
- uint32_t timings_cnt = 512;
+ uint32_t timings_cnt = MAX_TIMINGS_AMOUNT;
+ uint32_t* timings = (uint32_t*)furi_alloc(sizeof(uint32_t) * timings_cnt);
if(parse_message(str, &message)) {
irda_send(&message, 1);
diff --git a/applications/irda/helpers/irda_parser.cpp b/applications/irda/helpers/irda_parser.cpp
new file mode 100644
index 00000000..3bfa4850
--- /dev/null
+++ b/applications/irda/helpers/irda_parser.cpp
@@ -0,0 +1,145 @@
+
+#include "../irda_app_signal.h"
+#include "irda.h"
+#include "irda/helpers/irda_parser.h"
+#include "irda_worker.h"
+#include "m-string.h"
+#include <flipper_file.h>
+#include <memory>
+#include <string>
+#include <furi_hal_irda.h>
+
+#define TAG "IrdaParser"
+
+bool irda_parser_save_signal(FlipperFile* ff, const IrdaAppSignal& signal, const std::string& name) {
+ furi_assert(ff);
+ furi_assert(!name.empty());
+
+ bool result = false;
+
+ do {
+ if(!flipper_file_write_comment_cstr(ff, "")) break;
+ if(!flipper_file_write_string_cstr(ff, "name", name.c_str())) break;
+ if(signal.is_raw()) {
+ furi_assert(signal.get_raw_signal().timings_cnt <= MAX_TIMINGS_AMOUNT);
+ auto raw_signal = signal.get_raw_signal();
+ if(!flipper_file_write_string_cstr(ff, "type", "raw")) break;
+ if(!flipper_file_write_uint32(ff, "frequency", &raw_signal.frequency, 1)) break;
+ if(!flipper_file_write_float(ff, "duty_cycle", &raw_signal.duty_cycle, 1)) break;
+ if(!flipper_file_write_uint32(ff, "data", raw_signal.timings, raw_signal.timings_cnt))
+ break;
+ } else {
+ auto parsed_signal = signal.get_message();
+ const char* protocol_name = irda_get_protocol_name(parsed_signal.protocol);
+ if(!flipper_file_write_string_cstr(ff, "type", "parsed")) break;
+ if(!flipper_file_write_string_cstr(ff, "protocol", protocol_name)) break;
+ if(!flipper_file_write_hex(ff, "address", (uint8_t*)&parsed_signal.address, 4)) break;
+ if(!flipper_file_write_hex(ff, "command", (uint8_t*)&parsed_signal.command, 4)) break;
+ }
+ result = true;
+ } while(0);
+
+ return result;
+}
+
+bool irda_parser_read_signal(FlipperFile* ff, IrdaAppSignal& signal, std::string& name) {
+ furi_assert(ff);
+
+ bool result = false;
+ string_t read_string;
+ string_init(read_string);
+
+ do {
+ if(!flipper_file_read_string(ff, "name", read_string)) break;
+ name = string_get_cstr(read_string);
+ if(!flipper_file_read_string(ff, "type", read_string)) break;
+ if(!string_cmp_str(read_string, "raw")) {
+ uint32_t* timings = nullptr;
+ uint32_t timings_cnt = 0;
+ uint32_t frequency = 0;
+ float duty_cycle = 0;
+
+ if(!flipper_file_read_uint32(ff, "frequency", &frequency, 1)) break;
+ if(!flipper_file_read_float(ff, "duty_cycle", &duty_cycle, 1)) break;
+ if(!flipper_file_get_value_count(ff, "data", &timings_cnt)) break;
+ if(timings_cnt > MAX_TIMINGS_AMOUNT) break;
+ timings = (uint32_t*)furi_alloc(sizeof(uint32_t) * timings_cnt);
+ if(flipper_file_read_uint32(ff, "data", timings, timings_cnt)) {
+ signal.set_raw_signal(timings, timings_cnt, frequency, duty_cycle);
+ result = true;
+ }
+ free(timings);
+ } else if(!string_cmp_str(read_string, "parsed")) {
+ IrdaMessage parsed_signal;
+ if(!flipper_file_read_string(ff, "protocol", read_string)) break;
+ parsed_signal.protocol = irda_get_protocol_by_name(string_get_cstr(read_string));
+ if(!flipper_file_read_hex(ff, "address", (uint8_t*)&parsed_signal.address, 4)) break;
+ if(!flipper_file_read_hex(ff, "command", (uint8_t*)&parsed_signal.command, 4)) break;
+ if(!irda_parser_is_parsed_signal_valid(&parsed_signal)) break;
+ signal.set_message(&parsed_signal);
+ result = true;
+ } else {
+ FURI_LOG_E(TAG, "Unknown type of signal (allowed - raw/parsed) ");
+ }
+ } while(0);
+
+ string_clear(read_string);
+ return result;
+}
+
+bool irda_parser_is_parsed_signal_valid(const IrdaMessage* signal) {
+ furi_assert(signal);
+ bool result = true;
+
+ if(!irda_is_protocol_valid(signal->protocol)) {
+ FURI_LOG_E(TAG, "Unknown protocol");
+ result = false;
+ }
+
+ uint32_t address_length = irda_get_protocol_address_length(signal->protocol);
+ uint32_t address_mask = (1LU << address_length) - 1;
+ if(signal->address != (signal->address & address_mask)) {
+ FURI_LOG_E(
+ TAG,
+ "Address is out of range (mask 0x%08lX): 0x%lX\r\n",
+ address_mask,
+ signal->address);
+ result = false;
+ }
+
+ uint32_t command_length = irda_get_protocol_command_length(signal->protocol);
+ uint32_t command_mask = (1LU << command_length) - 1;
+ if(signal->command != (signal->command & command_mask)) {
+ FURI_LOG_E(
+ TAG,
+ "Command is out of range (mask 0x%08lX): 0x%lX\r\n",
+ command_mask,
+ signal->command);
+ result = false;
+ }
+
+ return result;
+}
+
+bool irda_parser_is_raw_signal_valid(uint32_t frequency, float duty_cycle, uint32_t timings_cnt) {
+ bool result = true;
+
+ if((frequency > IRDA_MAX_FREQUENCY) || (frequency < IRDA_MIN_FREQUENCY)) {
+ FURI_LOG_E(
+ TAG,
+ "Frequency is out of range (%lX - %lX): %lX",
+ IRDA_MIN_FREQUENCY,
+ IRDA_MAX_FREQUENCY,
+ frequency);
+ result = false;
+ } else if((duty_cycle <= 0) || (duty_cycle > 1)) {
+ FURI_LOG_E(TAG, "Duty cycle is out of range (0 - 1): %f", duty_cycle);
+ result = false;
+ } else if((timings_cnt <= 0) || (timings_cnt > MAX_TIMINGS_AMOUNT)) {
+ FURI_LOG_E(
+ TAG, "Timings amount is out of range (0 - %lX): %lX", MAX_TIMINGS_AMOUNT, timings_cnt);
+ result = false;
+ }
+
+ return result;
+}
diff --git a/applications/irda/helpers/irda_parser.h b/applications/irda/helpers/irda_parser.h
new file mode 100644
index 00000000..bc68825c
--- /dev/null
+++ b/applications/irda/helpers/irda_parser.h
@@ -0,0 +1,10 @@
+#pragma once
+
+#include "../irda_app_signal.h"
+#include <flipper_file.h>
+#include <string>
+
+bool irda_parser_save_signal(FlipperFile* ff, const IrdaAppSignal& signal, const std::string& name);
+bool irda_parser_read_signal(FlipperFile* ff, IrdaAppSignal& signal, std::string& name);
+bool irda_parser_is_parsed_signal_valid(const IrdaMessage* signal);
+bool irda_parser_is_raw_signal_valid(uint32_t frequency, float duty_cycle, uint32_t timings_cnt);
diff --git a/applications/irda/irda_app.cpp b/applications/irda/irda_app.cpp
index 783ef5c8..c524b2d2 100644
--- a/applications/irda/irda_app.cpp
+++ b/applications/irda/irda_app.cpp
@@ -1,5 +1,4 @@
#include "irda_app.h"
-#include "irda/irda_app_file_parser.h"
#include <irda_worker.h>
#include <furi.h>
#include <gui/gui.h>
@@ -13,11 +12,9 @@ int32_t IrdaApp::run(void* args) {
bool exit = false;
if(args) {
- std::string remote_name;
- {
- IrdaAppFileParser file_parser;
- remote_name = file_parser.make_name(static_cast<const char*>(args));
- }
+ std::string full_name = static_cast<const char*>(args);
+ std::string remote_name(full_name, full_name.find_last_of('/') + 1, full_name.size());
+ remote_name.erase(remote_name.find_last_of('.'));
bool result = remote_manager.load(remote_name);
if(result) {
current_scene = IrdaApp::Scene::Remote;
diff --git a/applications/irda/irda_app.h b/applications/irda/irda_app.h
index 77ca4c28..5d660824 100644
--- a/applications/irda/irda_app.h
+++ b/applications/irda/irda_app.h
@@ -90,9 +90,15 @@ public:
IrdaApp();
~IrdaApp();
+ static constexpr const char* irda_directory = "/any/irda";
+ static constexpr const char* irda_extension = ".ir";
+ static constexpr const uint32_t max_raw_timings_in_signal = 512;
+ static constexpr const uint32_t max_line_length =
+ (9 + 1) * IrdaApp::max_raw_timings_in_signal + 100;
+
private:
- static inline const uint8_t text_store_size = 128;
- static inline const uint8_t text_store_max = 2;
+ static constexpr const uint8_t text_store_size = 128;
+ static constexpr const uint8_t text_store_max = 2;
char text_store[text_store_max][text_store_size + 1];
bool learn_new_remote;
EditElement element;
diff --git a/applications/irda/irda_app_brute_force.cpp b/applications/irda/irda_app_brute_force.cpp
index 749cba43..43f91150 100644
--- a/applications/irda/irda_app_brute_force.cpp
+++ b/applications/irda/irda_app_brute_force.cpp
@@ -1,6 +1,7 @@
-#include "irda_app_brute_force.h"
-#include "irda/irda_app_file_parser.h"
+#include "helpers/irda_parser.h"
+#include "irda_app_brute_force.h"
+#include "irda_app_signal.h"
#include <memory>
#include <m-string.h>
#include <furi.h>
@@ -12,57 +13,59 @@ void IrdaAppBruteForce::add_record(int index, const char* name) {
}
bool IrdaAppBruteForce::calculate_messages() {
- bool fs_res = false;
- furi_assert(!file_parser);
-
- file_parser = std::make_unique<IrdaAppFileParser>();
- fs_res = file_parser->open_irda_file_read(universal_db_filename);
- if(!fs_res) {
- file_parser.reset();
- return false;
- }
+ bool result = false;
+
+ Storage* storage = static_cast<Storage*>(furi_record_open("storage"));
+ FlipperFile* ff = flipper_file_alloc(storage);
+ result = flipper_file_open_existing(ff, universal_db_filename);
- while(1) {
- auto file_signal = file_parser->read_signal();
- if(!file_signal) break;
+ if(result) {
+ IrdaAppSignal signal;
- auto element = records.find(file_signal->name);
- if(element != records.cend()) {
- ++element->second.amount;
+ string_t signal_name;
+ string_init(signal_name);
+ while(flipper_file_read_string(ff, "name", signal_name)) {
+ auto element = records.find(string_get_cstr(signal_name));
+ if(element != records.cend()) {
+ ++element->second.amount;
+ }
}
+ string_clear(signal_name);
}
- file_parser->close();
- file_parser.reset();
-
- return true;
+ flipper_file_close(ff);
+ flipper_file_free(ff);
+ furi_record_close("storage");
+ return result;
}
void IrdaAppBruteForce::stop_bruteforce() {
furi_assert((current_record.size()));
if(current_record.size()) {
- furi_assert(file_parser);
+ furi_assert(ff);
current_record.clear();
- file_parser->close();
- file_parser.reset();
+ flipper_file_close(ff);
+ flipper_file_free(ff);
+ furi_record_close("storage");
}
}
bool IrdaAppBruteForce::send_next_bruteforce(void) {
furi_assert(current_record.size());
- furi_assert(file_parser);
-
- std::unique_ptr<IrdaAppFileParser::IrdaFileSignal> file_signal;
+ furi_assert(ff);
+ IrdaAppSignal signal;
+ std::string signal_name;
+ bool result = false;
do {
- file_signal = file_parser->read_signal();
- } while(file_signal && current_record.compare(file_signal->name));
+ result = irda_parser_read_signal(ff, signal, signal_name);
+ } while(result && current_record.compare(signal_name));
- if(file_signal) {
- file_signal->signal.transmit();
+ if(result) {
+ signal.transmit();
}
- return !!file_signal;
+ return result;
}
bool IrdaAppBruteForce::start_bruteforce(int index, int& record_amount) {
@@ -80,10 +83,13 @@ bool IrdaAppBruteForce::start_bruteforce(int index, int& record_amount) {
}
if(record_amount) {
- file_parser = std::make_unique<IrdaAppFileParser>();
- result = file_parser->open_irda_file_read(universal_db_filename);
+ Storage* storage = static_cast<Storage*>(furi_record_open("storage"));
+ ff = flipper_file_alloc(storage);
+ result = flipper_file_open_existing(ff, universal_db_filename);
if(!result) {
- file_parser.reset();
+ flipper_file_close(ff);
+ flipper_file_free(ff);
+ furi_record_close("storage");
}
}
diff --git a/applications/irda/irda_app_brute_force.h b/applications/irda/irda_app_brute_force.h
index 511cd463..439eba4f 100644
--- a/applications/irda/irda_app_brute_force.h
+++ b/applications/irda/irda_app_brute_force.h
@@ -1,14 +1,13 @@
#pragma once
-#include "irda_app_file_parser.h"
-
#include <unordered_map>
#include <memory>
+#include <flipper_file.h>
class IrdaAppBruteForce {
const char* universal_db_filename;
std::string current_record;
- std::unique_ptr<IrdaAppFileParser> file_parser;
+ FlipperFile* ff;
typedef struct {
int index;
diff --git a/applications/irda/irda_app_file_parser.cpp b/applications/irda/irda_app_file_parser.cpp
deleted file mode 100644
index b5f01d04..00000000
--- a/applications/irda/irda_app_file_parser.cpp
+++ /dev/null
@@ -1,396 +0,0 @@
-#include "irda_app_file_parser.h"
-#include "irda_app_remote_manager.h"
-#include "irda_app_signal.h"
-
-#include <m-string.h>
-#include <cstdio>
-#include <text_store.h>
-#include <irda.h>
-#include <string_view>
-#include <furi.h>
-#include <furi_hal_irda.h>
-#include <file_worker_cpp.h>
-
-#define TAG "IrdaFileParser"
-
-bool IrdaAppFileParser::open_irda_file_read(const char* name) {
- std::string full_filename;
- if(name[0] != '/')
- full_filename = make_full_name(name);
- else
- full_filename = name;
-
- return file_worker.open(full_filename.c_str(), FSAM_READ, FSOM_OPEN_EXISTING);
-}
-
-bool IrdaAppFileParser::open_irda_file_write(const char* name) {
- std::string dirname(irda_directory);
- auto full_filename = make_full_name(name);
-
- if(!file_worker.mkdir(dirname.c_str())) return false;
-
- return file_worker.open(full_filename.c_str(), FSAM_WRITE, FSOM_CREATE_ALWAYS);
-}
-
-size_t IrdaAppFileParser::stringify_message(
- const IrdaAppSignal& signal,
- const char* name,
- char* buf,
- size_t buf_size) {
- auto message = signal.get_message();
- auto protocol = message.protocol;
- size_t written = 0;
-
- written += sniprintf(
- buf,
- buf_size,
- "%.31s %.31s A:%0*lX C:%0*lX\n",
- name,
- irda_get_protocol_name(protocol),
- ROUND_UP_TO(irda_get_protocol_address_length(protocol), 4),
- message.address,
- ROUND_UP_TO(irda_get_protocol_command_length(protocol), 4),
- message.command);
-
- furi_assert(written < buf_size);
- if(written >= buf_size) {
- written = 0;
- }
-
- return written;
-}
-
-size_t IrdaAppFileParser::stringify_raw_signal(
- const IrdaAppSignal& signal,
- const char* name,
- char* buf,
- size_t buf_size) {
- size_t written = 0;
- int duty_cycle = 100 * IRDA_COMMON_DUTY_CYCLE;
- written += sniprintf(
- &buf[written],
- max_line_length - written,
- "%.31s RAW F:%d DC:%d",
- name,
- IRDA_COMMON_CARRIER_FREQUENCY,
- duty_cycle);
-
- auto& raw_signal = signal.get_raw_signal();
- for(size_t i = 0; i < raw_signal.timings_cnt; ++i) {
- written += sniprintf(&buf[written], buf_size - written, " %ld", raw_signal.timings[i]);
- if(written > buf_size) {
- return false;
- }
- }
- written += snprintf(&buf[written], buf_size - written, "\n");
-
- furi_assert(written < buf_size);
- if(written >= buf_size) {
- written = 0;
- }
-
- return written;
-}
-
-bool IrdaAppFileParser::save_signal(const IrdaAppSignal& signal, const char* name) {
- char* buf = new char[max_line_length];
- size_t buf_cnt = 0;
- bool write_result = false;
-
- if(signal.is_raw()) {
- buf_cnt = stringify_raw_signal(signal, name, buf, max_line_length);
- } else {
- buf_cnt = stringify_message(signal, name, buf, max_line_length);
- }
-
- if(buf_cnt) {
- write_result = file_worker.write(buf, buf_cnt);
- }
- delete[] buf;
- return write_result;
-}
-
-std::unique_ptr<IrdaAppFileParser::IrdaFileSignal> IrdaAppFileParser::read_signal(void) {
- string_t line;
- string_init(line);
- string_reserve(line, max_line_length);
- std::unique_ptr<IrdaAppFileParser::IrdaFileSignal> file_signal;
-
- while(!file_signal &&
- file_worker.read_until_buffered(line, file_buf, &file_buf_cnt, sizeof(file_buf))) {
- if(string_empty_p(line)) {
- continue;
- }
- auto c_str = string_get_cstr(line);
- file_signal = parse_signal(c_str);
- if(!file_signal) {
- file_signal = parse_signal_raw(c_str);
- }
- }
- string_clear(line);
-
- return file_signal;
-}
-
-std::unique_ptr<IrdaAppFileParser::IrdaFileSignal>
- IrdaAppFileParser::parse_signal(const std::string& str) const {
- char protocol_name[32];
- uint32_t address;
- uint32_t command;
- auto irda_file_signal = std::make_unique<IrdaFileSignal>();
-
- int parsed = std::sscanf(
- str.c_str(),
- "%31s %31s A:%lX C:%lX",
- irda_file_signal->name,
- protocol_name,
- &address,
- &command);
-
- if(parsed != 4) {
- return nullptr;
- }
-
- IrdaProtocol protocol = irda_get_protocol_by_name(protocol_name);
-
- if(!irda_is_protocol_valid((IrdaProtocol)protocol)) {
- size_t end_of_str = MIN(str.find_last_not_of(" \t\r\n") + 1, (size_t)30);
- FURI_LOG_E(
- TAG, "Unknown protocol(\'%.*s...\'): \'%s\'", end_of_str, str.c_str(), protocol_name);
- return nullptr;
- }
-
- uint32_t address_length = irda_get_protocol_address_length(protocol);
- uint32_t address_mask = (1LU << address_length) - 1;
- if(address != (address & address_mask)) {
- size_t end_of_str = MIN(str.find_last_not_of(" \t\r\n") + 1, (size_t)30);
- FURI_LOG_E(
- TAG,
- "Signal(\'%.*s...\'): address is too long (mask for this protocol is 0x%08X): 0x%X",
- end_of_str,
- str.c_str(),
- address_mask,
- address);
- return nullptr;
- }
-
- uint32_t command_length = irda_get_protocol_command_length(protocol);
- uint32_t command_mask = (1LU << command_length) - 1;
- if(command != (command & command_mask)) {
- size_t end_of_str = MIN(str.find_last_not_of(" \t\r\n") + 1, (size_t)30);
- FURI_LOG_E(
- TAG,
- "Signal(\'%.*s...\'): command is too long (mask for this protocol is 0x%08X): 0x%X",
- end_of_str,
- str.c_str(),
- command_mask,
- command);
- return nullptr;
- }
-
- IrdaMessage message = {
- .protocol = protocol,
- .address = address,
- .command = command,
- .repeat = false,
- };
-
- irda_file_signal->signal.set_message(&message);
-
- return irda_file_signal;
-}
-
-const char* find_first_not_of(const char* str, char symbol) {
- const char* str_start = nullptr;
- while(str != str_start) {
- str_start = str;
- str = strchr(str, symbol);
- }
-
- return str;
-}
-
-static int remove_args32(std::string_view& str, size_t num) {
- int removed_length = 0;
-
- while(num--) {
- char buf[32];
-
- size_t index = str.find_first_not_of(" \t");
- if(index == std::string_view::npos) break;
- removed_length += index;
- str.remove_prefix(index);
-
- if(str.empty()) break;
-
- int parsed = std::sscanf(str.data(), "%31s", buf);
- if(!parsed) break;
-
- size_t len = strlen(buf);
- if(!len) break;
- removed_length += len;
- str.remove_prefix(len);
-
- if(str.empty()) break;
- }
-
- return removed_length;
-}
-
-std::unique_ptr<IrdaAppFileParser::IrdaFileSignal>
- IrdaAppFileParser::parse_signal_raw(const std::string& string) const {
- uint32_t frequency;
- uint32_t duty_cycle;
- std::string_view str(string.c_str());
- auto irda_file_signal = std::make_unique<IrdaFileSignal>();
-
- int parsed = std::sscanf(
- str.data(), "%31s RAW F:%ld DC:%ld", irda_file_signal->name, &frequency, &duty_cycle);
-
- if(parsed != 3) {
- return nullptr;
- }
-
- if((frequency < IRDA_MIN_FREQUENCY) || (frequency > IRDA_MAX_FREQUENCY)) {
- size_t end_of_str = MIN(string.find_last_not_of(" \t\r\n") + 1, (size_t)30);
- FURI_LOG_E(
- TAG,
- "RAW signal(\'%.*s...\'): frequency is out of bounds (%ld-%ld): %ld",
- end_of_str,
- string.c_str(),
- IRDA_MIN_FREQUENCY,
- IRDA_MAX_FREQUENCY,
- frequency);
- return nullptr;
- }
-
- if((duty_cycle == 0) || (duty_cycle > 100)) {
- size_t end_of_str = MIN(string.find_last_not_of(" \t\r\n") + 1, (size_t)30);
- FURI_LOG_E(
- TAG,
- "RAW signal(\'%.*s...\'): duty cycle is out of bounds (0-100): %ld",
- end_of_str,
- string.c_str(),
- duty_cycle);
- return nullptr;
- }
-
- int header_len = remove_args32(str, 4);
-
- size_t last_valid_ch = str.find_last_not_of(" \t\r\n");
- if(last_valid_ch != std::string_view::npos) {
- str.remove_suffix(str.size() - last_valid_ch - 1);
- } else {
- FURI_LOG_E(TAG, "RAW signal(\'%.*s\'): no timings", header_len, string.c_str());
- return nullptr;
- }
-
- /* move allocated timings into raw signal object */
- IrdaAppSignal::RawSignal raw_signal = {
- .timings_cnt = 0, .timings = new uint32_t[max_raw_timings_in_signal]};
- bool result = false;
-
- while(!str.empty()) {
- char buf[10];
- size_t index = str.find_first_not_of(" \t", 1);
- if(index == std::string_view::npos) {
- break;
- }
- str.remove_prefix(index);
- parsed = std::sscanf(str.data(), "%9s", buf);
- if(parsed != 1) {
- FURI_LOG_E(
- TAG,
- "RAW signal(\'%.*s...\'): failed on timing[%ld] \'%*s\'",
- header_len,
- string.c_str(),
- raw_signal.timings_cnt,
- str.size(),
- str.data());
- result = false;
- break;
- }
- str.remove_prefix(strlen(buf));
-
- int value = atoi(buf);
- if(value <= 0) {
- FURI_LOG_E(
- TAG,
- "RAW signal(\'%.*s...\'): failed on timing[%ld] \'%s\'",
- header_len,
- string.c_str(),
- raw_signal.timings_cnt,
- buf);
- result = false;
- break;
- }
-
- if(raw_signal.timings_cnt >= max_raw_timings_in_signal) {
- FURI_LOG_E(
- TAG,
- "RAW signal(\'%.*s...\'): too much timings (max %ld)",
- header_len,
- string.c_str(),
- max_raw_timings_in_signal);
- result = false;
- break;
- }
- raw_signal.timings[raw_signal.timings_cnt] = value;
- ++raw_signal.timings_cnt;
- result = true;
- }
-
- if(result) {
- /* copy timings instead of moving them to occupy less than max_raw_timings_in_signal */
- irda_file_signal->signal.copy_raw_signal(raw_signal.timings, raw_signal.timings_cnt);
- } else {
- irda_file_signal.reset();
- }
- delete[] raw_signal.timings;
- return irda_file_signal;
-}
-
-bool IrdaAppFileParser::is_irda_file_exist(const char* name, bool* exist) {
- std::string full_path = make_full_name(name);
- return file_worker.is_file_exist(full_path.c_str(), exist);
-}
-
-std::string IrdaAppFileParser::make_full_name(const std::string& remote_name) const {
- return std::string("") + irda_directory + "/" + remote_name + irda_extension;
-}
-
-std::string IrdaAppFileParser::make_name(const std::string& full_name) const {
- std::string str(full_name, full_name.find_last_of('/') + 1, full_name.size());
- str.erase(str.find_last_of('.'));
-
- return str;
-}
-
-bool IrdaAppFileParser::remove_irda_file(const char* name) {
- std::string full_filename = make_full_name(name);
- return file_worker.remove(full_filename.c_str());
-}
-
-bool IrdaAppFileParser::rename_irda_file(const char* old_name, const char* new_name) {
- std::string old_filename = make_full_name(old_name);
- std::string new_filename = make_full_name(new_name);
- return file_worker.rename(old_filename.c_str(), new_filename.c_str());
-}
-
-bool IrdaAppFileParser::close() {
- return file_worker.close();
-}
-
-bool IrdaAppFileParser::check_errors() {
- return file_worker.check_errors();
-}
-
-std::string IrdaAppFileParser::file_select(const char* selected) {
- auto filename_ts = std::make_unique<TextStore>(IrdaAppRemoteManager::max_remote_name_length);
- bool result;
-
- result = file_worker.file_select(
- irda_directory, irda_extension, filename_ts->text, filename_ts->text_size, selected);
-
- return result ? std::string(filename_ts->text) : std::string();
-}
diff --git a/applications/irda/irda_app_file_parser.h b/applications/irda/irda_app_file_parser.h
deleted file mode 100644
index 38c5079b..00000000
--- a/applications/irda/irda_app_file_parser.h
+++ /dev/null
@@ -1,56 +0,0 @@
-#pragma once
-
-#include "irda_app_signal.h"
-
-#include <irda.h>
-#include <file_worker_cpp.h>
-#include <memory>
-#include <string>
-#include <cstdint>
-
-class IrdaAppFileParser {
-public:
- typedef struct {
- char name[32];
- IrdaAppSignal signal;
- } IrdaFileSignal;
-
- bool open_irda_file_read(const char* filename);
- bool open_irda_file_write(const char* filename);
- bool is_irda_file_exist(const char* filename, bool* exist);
- bool rename_irda_file(const char* filename, const char* newname);
- bool remove_irda_file(const char* name);
- bool close();
- bool check_errors();
-
- std::unique_ptr<IrdaAppFileParser::IrdaFileSignal> read_signal();
- bool save_signal(const IrdaAppSignal& signal, const char* name);
- std::string file_select(const char* selected);
-
- std::string make_name(const std::string& full_name) const;
-
-private:
- size_t stringify_message(
- const IrdaAppSignal& signal,
- const char* name,
- char* content,
- size_t content_len);
- size_t stringify_raw_signal(
- const IrdaAppSignal& signal,
- const char* name,
- char* content,
- size_t content_len);
- std::unique_ptr<IrdaFileSignal> parse_signal(const std::string& str) const;
- std::unique_ptr<IrdaFileSignal> parse_signal_raw(const std::string& str) const;
- std::string make_full_name(const std::string& name) const;
-
- static inline const char* const irda_directory = "/any/irda";
- static inline const char* const irda_extension = ".ir";
- static inline const uint32_t max_raw_timings_in_signal = 512;
- static inline const uint32_t max_line_length =
- (9 + 1) * IrdaAppFileParser::max_raw_timings_in_signal + 100;
-
- FileWorkerCpp file_worker;
- char file_buf[128];
- size_t file_buf_cnt = 0;
-};
diff --git a/applications/irda/irda_app_remote_manager.cpp b/applications/irda/irda_app_remote_manager.cpp
index dc9a0d46..d7c33134 100644
--- a/applications/irda/irda_app_remote_manager.cpp
+++ b/applications/irda/irda_app_remote_manager.cpp
@@ -1,5 +1,8 @@
+#include <file_worker_cpp.h>
+#include <flipper_file.h>
#include "irda_app_remote_manager.h"
-#include "irda_app_file_parser.h"
+#include "irda/helpers/irda_parser.h"
+#include "irda/irda_app_signal.h"
#include <utility>
@@ -8,23 +11,32 @@
#include <furi.h>
#include <gui/modules/button_menu.h>
#include <storage/storage.h>
+#include "irda_app.h"
static const std::string default_remote_name = "remote";
+std::string IrdaAppRemoteManager::make_full_name(const std::string& remote_name) const {
+ return std::string("") + IrdaApp::irda_directory + "/" + remote_name + IrdaApp::irda_extension;
+}
+
std::string IrdaAppRemoteManager::find_vacant_remote_name(const std::string& name) {
- IrdaAppFileParser file_parser;
bool exist = true;
+ FileWorkerCpp file_worker;
- if(!file_parser.is_irda_file_exist(name.c_str(), &exist)) {
+ if(!file_worker.is_file_exist(make_full_name(name).c_str(), &exist)) {
return std::string();
} else if(!exist) {
return name;
}
- uint32_t i = 1;
/* if suggested name is occupied, try another one (name2, name3, etc) */
- while(file_parser.is_irda_file_exist((name + std::to_string(++i)).c_str(), &exist) && exist)
- ;
+ uint32_t i = 1;
+ bool file_worker_result = false;
+ std::string new_name;
+ do {
+ new_name = make_full_name(name + std::to_string(++i));
+ file_worker_result = file_worker.is_file_exist(new_name.c_str(), &exist);
+ } while(file_worker_result && exist);
return !exist ? name + std::to_string(i) : std::string();
}
@@ -70,9 +82,9 @@ const IrdaAppSignal& IrdaAppRemoteManager::get_button_data(size_t index) const {
bool IrdaAppRemoteManager::delete_remote() {
bool result;
- IrdaAppFileParser file_parser;
+ FileWorkerCpp file_worker;
+ result = file_worker.remove(make_full_name(remote->name).c_str());
- result = file_parser.remove_irda_file(remote->name.c_str());
reset_remote();
return result;
}
@@ -125,8 +137,10 @@ bool IrdaAppRemoteManager::rename_remote(const char* str) {
return false;
}
- IrdaAppFileParser file_parser;
- bool result = file_parser.rename_irda_file(remote->name.c_str(), new_name.c_str());
+ FileWorkerCpp file_worker;
+ std::string old_filename = make_full_name(remote->name);
+ std::string new_filename = make_full_name(new_name);
+ bool result = file_worker.rename(old_filename.c_str(), new_filename.c_str());
remote->name = new_name;
@@ -148,45 +162,62 @@ size_t IrdaAppRemoteManager::get_number_of_buttons() {
}
bool IrdaAppRemoteManager::store(void) {
- IrdaAppFileParser file_parser;
- bool result = true;
+ bool result = false;
+ FileWorkerCpp file_worker;
- if(!file_parser.open_irda_file_write(remote->name.c_str())) {
- return false;
- }
+ if(!file_worker.mkdir(IrdaApp::irda_directory)) return false;
- for(const auto& button : remote->buttons) {
- bool result = file_parser.save_signal(button.signal, button.name.c_str());
- if(!result) {
- result = false;
- break;
+ Storage* storage = static_cast<Storage*>(furi_record_open("storage"));
+ FlipperFile* ff = flipper_file_alloc(storage);
+
+ FURI_LOG_I("RemoteManager", "store file: \'%s\'", make_full_name(remote->name).c_str());
+ result = flipper_file_open_always(ff, make_full_name(remote->name).c_str());
+ if(result) {
+ result = flipper_file_write_header_cstr(ff, "IR signals file", 1);
+ }
+ if(result) {
+ for(const auto& button : remote->buttons) {
+ result = irda_parser_save_signal(ff, button.signal, button.name.c_str());
+ if(!result) {
+ break;
+ }
}
}
- file_parser.close();
-
+ flipper_file_close(ff);
+ flipper_file_free(ff);
+ furi_record_close("storage");
return result;
}
-bool IrdaAppRemoteManager::load(const std::string& name) {
- bool fs_res = false;
- IrdaAppFileParser file_parser;
-
- fs_res = file_parser.open_irda_file_read(name.c_str());
- if(!fs_res) {
- return false;
+bool IrdaAppRemoteManager::load(const std::string& remote_name) {
+ bool result = false;
+ Storage* storage = static_cast<Storage*>(furi_record_open("storage"));
+ FlipperFile* ff = flipper_file_alloc(storage);
+
+ FURI_LOG_I("RemoteManager", "load file: \'%s\'", make_full_name(remote_name).c_str());
+ result = flipper_file_open_existing(ff, make_full_name(remote_name).c_str());
+ if(result) {
+ string_t header;
+ string_init(header);
+ uint32_t version;
+ result = flipper_file_read_header(ff, header, &version);
+ if(result) {
+ result = !string_cmp_str(header, "IR signals file") && (version == 1);
+ }
+ string_clear(header);
}
-
- remote = std::make_unique<IrdaAppRemote>(name);
-
- while(1) {
- auto file_signal = file_parser.read_signal();
- if(!file_signal) {
- break;
+ if(result) {
+ remote = std::make_unique<IrdaAppRemote>(remote_name);
+ IrdaAppSignal signal;
+ std::string signal_name;
+ while(irda_parser_read_signal(ff, signal, signal_name)) {
+ remote->buttons.emplace_back(signal_name.c_str(), std::move(signal));
}
- remote->buttons.emplace_back(file_signal->name, file_signal->signal);
}
- file_parser.close();
- return true;
+ flipper_file_close(ff);
+ flipper_file_free(ff);
+ furi_record_close("storage");
+ return result;
}
diff --git a/applications/irda/irda_app_remote_manager.h b/applications/irda/irda_app_remote_manager.h
index 6fe080a0..10f1fb12 100644
--- a/applications/irda/irda_app_remote_manager.h
+++ b/applications/irda/irda_app_remote_manager.h
@@ -20,6 +20,11 @@ public:
: name(name)
, signal(signal) {
}
+
+ IrdaAppRemoteButton(const char* name, IrdaAppSignal&& signal)
+ : name(name)
+ , signal(std::move(signal)) {
+ }
~IrdaAppRemoteButton() {
}
};
@@ -47,8 +52,8 @@ class IrdaAppRemoteManager {
std::string make_remote_name(const std::string& full_name) const;
public:
- static inline const uint32_t max_button_name_length = 22;
- static inline const uint32_t max_remote_name_length = 22;
+ static constexpr const uint32_t max_button_name_length = 22;
+ static constexpr const uint32_t max_remote_name_length = 22;
bool add_remote_with_button(const char* button_name, const IrdaAppSignal& signal);
bool add_button(const char* button_name, const IrdaAppSignal& signal);
diff --git a/applications/irda/irda_app_signal.cpp b/applications/irda/irda_app_signal.cpp
index fcfc681c..3c6ea8cf 100644
--- a/applications/irda/irda_app_signal.cpp
+++ b/applications/irda/irda_app_signal.cpp
@@ -1,10 +1,16 @@
#include "irda_app_signal.h"
#include <irda_transmit.h>
-void IrdaAppSignal::copy_timings(const uint32_t* timings, size_t size) {
+void IrdaAppSignal::copy_raw_signal(
+ const uint32_t* timings,
+ size_t size,
+ uint32_t frequency,
+ float duty_cycle) {
furi_assert(size);
furi_assert(timings);
+ payload.raw.frequency = frequency;
+ payload.raw.duty_cycle = duty_cycle;
payload.raw.timings_cnt = size;
if(size) {
payload.raw.timings = new uint32_t[size];
@@ -13,83 +19,100 @@ void IrdaAppSignal::copy_timings(const uint32_t* timings, size_t size) {
}
void IrdaAppSignal::clear_timings() {
- if(!decoded) {
+ if(raw_signal) {
delete[] payload.raw.timings;
payload.raw.timings_cnt = 0;
payload.raw.timings = nullptr;
}
}
-IrdaAppSignal::IrdaAppSignal(const uint32_t* timings, size_t timings_cnt) {
- decoded = false;
- copy_timings(timings, timings_cnt);
+IrdaAppSignal::IrdaAppSignal(
+ const uint32_t* timings,
+ size_t timings_cnt,
+ uint32_t frequency,
+ float duty_cycle) {
+ raw_signal = true;
+ copy_raw_signal(timings, timings_cnt, frequency, duty_cycle);
}
IrdaAppSignal::IrdaAppSignal(const IrdaMessage* irda_message) {
- decoded = true;
+ raw_signal = false;
payload.message = *irda_message;
}
IrdaAppSignal& IrdaAppSignal::operator=(const IrdaAppSignal& other) {
clear_timings();
- decoded = other.decoded;
- if(decoded) {
+ raw_signal = other.raw_signal;
+ if(!raw_signal) {
payload.message = other.payload.message;
} else {
- copy_timings(other.payload.raw.timings, other.payload.raw.timings_cnt);
+ copy_raw_signal(
+ other.payload.raw.timings,
+ other.payload.raw.timings_cnt,
+ other.payload.raw.frequency,
+ other.payload.raw.duty_cycle);
}
return *this;
}
IrdaAppSignal::IrdaAppSignal(const IrdaAppSignal& other) {
- decoded = other.decoded;
- if(decoded) {
+ raw_signal = other.raw_signal;
+ if(!raw_signal) {
payload.message = other.payload.message;
} else {
- copy_timings(other.payload.raw.timings, other.payload.raw.timings_cnt);
+ copy_raw_signal(
+ other.payload.raw.timings,
+ other.payload.raw.timings_cnt,
+ other.payload.raw.frequency,
+ other.payload.raw.duty_cycle);
}
}
IrdaAppSignal::IrdaAppSignal(IrdaAppSignal&& other) {
clear_timings();
- decoded = other.decoded;
- if(decoded) {
+ raw_signal = other.raw_signal;
+ if(!raw_signal) {
payload.message = other.payload.message;
} else {
furi_assert(other.payload.raw.timings_cnt > 0);
payload.raw.timings = other.payload.raw.timings;
payload.raw.timings_cnt = other.payload.raw.timings_cnt;
+ payload.raw.frequency = other.payload.raw.frequency;
+ payload.raw.duty_cycle = other.payload.raw.duty_cycle;
other.payload.raw.timings = nullptr;
other.payload.raw.timings_cnt = 0;
+ other.raw_signal = false;
}
}
void IrdaAppSignal::set_message(const IrdaMessage* irda_message) {
clear_timings();
- decoded = true;
+ raw_signal = false;
payload.message = *irda_message;
}
-void IrdaAppSignal::set_raw_signal(uint32_t* timings, size_t timings_cnt) {
+void IrdaAppSignal::set_raw_signal(
+ uint32_t* timings,
+ size_t timings_cnt,
+ uint32_t frequency,
+ float duty_cycle) {
clear_timings();
- decoded = false;
- payload.raw.timings = timings;
- payload.raw.timings_cnt = timings_cnt;
-}
-
-void IrdaAppSignal::copy_raw_signal(uint32_t* timings, size_t timings_cnt) {
- clear_timings();
- decoded = false;
- copy_timings(timings, timings_cnt);
+ raw_signal = true;
+ copy_raw_signal(timings, timings_cnt, frequency, duty_cycle);
}
void IrdaAppSignal::transmit() const {
- if(decoded) {
+ if(!raw_signal) {
irda_send(&payload.message, 1);
} else {
- irda_send_raw(payload.raw.timings, payload.raw.timings_cnt, true);
+ irda_send_raw_ext(
+ payload.raw.timings,
+ payload.raw.timings_cnt,
+ true,
+ payload.raw.frequency,
+ payload.raw.duty_cycle);
}
}
diff --git a/applications/irda/irda_app_signal.h b/applications/irda/irda_app_signal.h
index 9701e2c1..3f922f06 100644
--- a/applications/irda/irda_app_signal.h
+++ b/applications/irda/irda_app_signal.h
@@ -9,21 +9,24 @@ public:
typedef struct {
size_t timings_cnt;
uint32_t* timings;
+ uint32_t frequency;
+ float duty_cycle;
} RawSignal;
private:
- bool decoded;
+ bool raw_signal;
union {
IrdaMessage message;
RawSignal raw;
} payload;
- void copy_timings(const uint32_t* timings, size_t size);
+ void
+ copy_raw_signal(const uint32_t* timings, size_t size, uint32_t frequency, float duty_cycle);
void clear_timings();
public:
IrdaAppSignal() {
- decoded = true;
+ raw_signal = false;
payload.message.protocol = IrdaProtocolUnknown;
}
@@ -31,7 +34,11 @@ public:
clear_timings();
}
- IrdaAppSignal(const uint32_t* timings, size_t timings_cnt);
+ IrdaAppSignal(
+ const uint32_t* timings,
+ size_t timings_cnt,
+ uint32_t frequency,
+ float duty_cycle);
IrdaAppSignal(const IrdaMessage* irda_message);
IrdaAppSignal(const IrdaAppSignal& other);
@@ -40,22 +47,22 @@ public:
IrdaAppSignal& operator=(const IrdaAppSignal& signal);
void set_message(const IrdaMessage* irda_message);
- void set_raw_signal(uint32_t* timings, size_t timings_cnt);
- void copy_raw_signal(uint32_t* timings, size_t timings_cnt);
+ void
+ set_raw_signal(uint32_t* timings, size_t timings_cnt, uint32_t frequency, float duty_cycle);
void transmit() const;
bool is_raw(void) const {
- return !decoded;
+ return raw_signal;
}
const IrdaMessage& get_message(void) const {
- furi_assert(decoded);
+ furi_assert(!raw_signal);
return payload.message;
}
const RawSignal& get_raw_signal(void) const {
- furi_assert(!decoded);
+ furi_assert(raw_signal);
return payload.raw;
}
};
diff --git a/applications/irda/scene/irda_app_scene_learn.cpp b/applications/irda/scene/irda_app_scene_learn.cpp
index 81f5a88c..10cc4f33 100644
--- a/applications/irda/scene/irda_app_scene_learn.cpp
+++ b/applications/irda/scene/irda_app_scene_learn.cpp
@@ -1,5 +1,6 @@
#include "../irda_app.h"
#include "../irda_app_event.h"
+#include "irda.h"
#include <irda_worker.h>
static void signal_received_callback(void* context, IrdaWorkerSignal* received_signal) {
@@ -15,7 +16,8 @@ static void signal_received_callback(void* context, IrdaWorkerSignal* received_s
const uint32_t* timings;
size_t timings_cnt;
irda_worker_get_raw_signal(received_signal, &timings, &timings_cnt);
- IrdaAppSignal signal(timings, timings_cnt);
+ IrdaAppSignal signal(
+ timings, timings_cnt, IRDA_COMMON_CARRIER_FREQUENCY, IRDA_COMMON_DUTY_CYCLE);
app->set_received_signal(signal);
}
diff --git a/applications/irda/scene/irda_app_scene_learn_success.cpp b/applications/irda/scene/irda_app_scene_learn_success.cpp
index 21397220..f34d2774 100644
--- a/applications/irda/scene/irda_app_scene_learn_success.cpp
+++ b/applications/irda/scene/irda_app_scene_learn_success.cpp
@@ -1,6 +1,6 @@
#include "../irda_app.h"
+#include <file_worker_cpp.h>
#include "irda.h"
-#include "../irda_app_file_parser.h"
#include <memory>
static void dialog_result_callback(DialogExResult result, void* context) {
@@ -76,8 +76,8 @@ bool IrdaAppSceneLearnSuccess::on_event(IrdaApp* app, IrdaAppEvent* event) {
break;
}
case DialogExResultRight: {
- IrdaAppFileParser file_parser;
- if(file_parser.check_errors()) {
+ FileWorkerCpp file_worker;
+ if(file_worker.check_errors()) {
app->switch_to_next_scene(IrdaApp::Scene::LearnEnterName);
} else {
app->switch_to_previous_scene();
diff --git a/applications/irda/scene/irda_app_scene_remote_list.cpp b/applications/irda/scene/irda_app_scene_remote_list.cpp
index d06401a6..9532f912 100644
--- a/applications/irda/scene/irda_app_scene_remote_list.cpp
+++ b/applications/irda/scene/irda_app_scene_remote_list.cpp
@@ -1,21 +1,35 @@
#include "../irda_app.h"
#include "irda/irda_app_event.h"
+#include <text_store.h>
+#include <file_worker_cpp.h>
void IrdaAppSceneRemoteList::on_enter(IrdaApp* app) {
- IrdaAppFileParser file_parser;
- bool success = false;
+ furi_assert(app);
+
+ FileWorkerCpp file_worker;
+ bool result = false;
+ bool file_select_result;
auto remote_manager = app->get_remote_manager();
auto last_selected_remote = remote_manager->get_remote_name();
- auto selected_file = file_parser.file_select(
- last_selected_remote.size() ? last_selected_remote.c_str() : nullptr);
- if(!selected_file.empty()) {
- if(remote_manager->load(selected_file)) {
+ const char* last_selected_remote_name =
+ last_selected_remote.size() ? last_selected_remote.c_str() : nullptr;
+ auto filename_ts = std::make_unique<TextStore>(IrdaAppRemoteManager::max_remote_name_length);
+
+ file_select_result = file_worker.file_select(
+ IrdaApp::irda_directory,
+ IrdaApp::irda_extension,
+ filename_ts->text,
+ filename_ts->text_size,
+ last_selected_remote_name);
+
+ if(file_select_result) {
+ if(remote_manager->load(std::string(filename_ts->text))) {
app->switch_to_next_scene(IrdaApp::Scene::Remote);
- success = true;
+ result = true;
}
}
- if(!success) {
+ if(!result) {
app->switch_to_previous_scene();
}
}
diff --git a/applications/irda/scene/irda_app_scene_universal.cpp b/applications/irda/scene/irda_app_scene_universal.cpp
index 94697561..65df44c6 100644
--- a/applications/irda/scene/irda_app_scene_universal.cpp
+++ b/applications/irda/scene/irda_app_scene_universal.cpp
@@ -21,9 +21,6 @@ void IrdaAppSceneUniversal::on_enter(IrdaApp* app) {
Submenu* submenu = view_manager->get_submenu();
submenu_add_item(submenu, "TV's", SubmenuIndexUniversalTV, submenu_callback, app);
- submenu_add_item(submenu, "Audio Players", SubmenuIndexUniversalAudio, submenu_callback, app);
- submenu_add_item(
- submenu, "Air Conditioners", SubmenuIndexUniversalAirConditioner, submenu_callback, app);
submenu_set_selected_item(submenu, submenu_item_selected);
submenu_item_selected = 0;
diff --git a/assets/resources/irda/universal/tv.ir b/assets/resources/irda/universal/tv.ir
index 1e64ced2..18878a73 100755
--- a/assets/resources/irda/universal/tv.ir
+++ b/assets/resources/irda/universal/tv.ir
@@ -1,275 +1,1586 @@
-POWER SIRC A:01 C:15
-POWER SIRC A:10 C:15
-
-// dexp
-POWER NEC A:08 C:05
-VOL+ NEC A:08 C:00
-VOL- NEC A:08 C:01
-CH+ NEC A:08 C:02
-CH- NEC A:08 C:03
-MUTE NEC A:08 C:0B
-
-// another one
-POWER NECext A:DF00 C:1C
-VOL+ NECext A:DF00 C:4B
-VOL- NECext A:DF00 C:4F
-CH+ NECext A:DF00 C:09
-CH- NECext A:DF00 C:05
-MUTE NECext A:DF00 C:08
-
-// Skyworth
-POWER NEC A:0E C:0C
-MUTE NEC A:0E C:0D
-VOL+ NEC A:0E C:14
-VOL- NEC A:0E C:15
-CH+ NEC A:0E C:12
-CH- NEC A:0E C:13
-
-// Knopkus
-POWER RC6 A:00 C:0C
-POWER Samsung32 A:07 C:02
-POWER NEC A:50 C:17
-POWER NEC A:40 C:12
-POWER NECext A:4931 C:63
-POWER NEC A:AA C:1C
-POWER NEC A:38 C:1C
-POWER NECext A:7A83 C:08
-POWER NEC A:53 C:17
-POWER NECext A:1818 C:C0
-POWER NEC A:38 C:10
-POWER NEC A:AA C:C5
-POWER NEC A:04 C:08
-POWER NEC A:18 C:08
-POWER NEC A:71 C:08
-POWER NECext A:6F80 C:0A
-POWER NEC A:48 C:00
-POWER NECext A:7B80 C:13
-POWER Samsung32 A:0E C:14
-POWER NECext A:7E80 C:18
-POWER NEC A:50 C:08
-POWER NECext A:7580 C:0A
-POWER NECext A:5780 C:0A
-POWER Samsung32 A:0B C:0A
-POWER NEC A:AA C:1B
-POWER NECext A:4685 C:12
-POWER Samsung32 A:05 C:02
-POWER Samsung32 A:08 C:0F
-POWER NEC A:00 C:01
-POWER NEC A:00 C:01
-POWER RAW F:38000 DC:33 634 2571 505 519 479 519 479 518 480 518 480 518 480 518 480 517 481 547 481 517 481 20040 590 2555 501 1007 999 997 510 548 480 486 512 486 512 486 542 485 513 516 482 116758 593 2552 504 1004 992 1004 514 514 514 483 515 513 485 483 545 482 516 482 516
-POWER RAW F:38000 DC:33 525 1955 449 1999 476 4545 446 4544 478 2032 443 2006 469 2011 444 4577 445 4545 447 4574 448 2002 473 4547 444 34913 447 2032 443 2007 478 4542 449 4541 471 2039 446 2004 471 2008 447 4574 448 4543 448 4572 450 2030 445 4545 446
-POWER RAW F:38000 DC:33 2445 582 1221 603 548 602 1191 609 572 602 1191 609 542 607 544 631 1172 603 568 606 545 605 566 608 543 26263 2414 611 1192 607 544 606 1197 602 569 606 1197 602 539 611 540 635 1168 606 565 610 541 608 563 587 564
-POWER RAW F:38000 DC:33 3461 1802 439 452 444 1283 469 448 438 453 443 447 439 452 444 419 497 448 438 425 471 419 467 451 445 445 441 450 446 1281 471 420 466 425 471 446 440 424 472 445 461 456 440 451 445 445 441 450 446 1281 471 447 439 451 445 419 467 423 473 445 441 422 494 450 436 428 468 1259 493 425 471 1256 496 1259 472 1281 471 1285 467 423 473 417 469 1286 466 452 444 1283 469 1285 467 1261 491 1263 468 423 493 1260 471 74142 3578 1713 467 423 473 1281 471 420 466 452 444 419 467 424 472 418 488 429 467 451 445 445 441 450 446 444 442 449 437 1290 472 446 440 423 473 445 441 449 467 396 490 428 468 449 447 444 442 448 438 1289 473 445 441 450 446 444 442 449 437 426 470 421 495 422 464 426 470 1257 495 450 446 1254 488 1267 464 1290 472 1282 470 421 465 453 443 1284 468 450 446 1281 471 1283 469 1259 493 1261 470 448 468 1258 473
-POWER RAW F:38000 DC:33 389 1737 280 796 253 744 295 754 274 775 274 776 273 1827 271 1828 270 805 254 1820 278 796 253 797 252 745 294 1806 302 773 245 48942 305 1821 277 798 251 746 303 747 271 778 271 1829 279 796 253 796 253 1821 277 798 251 1823 275 1824 274 1825 273 802 247 1827 271 42824 381 1745 272 804 245 752 297 753 275 773 276 774 275 1825 273 1826 272 803 246 1828 270 805 254 795 244 753 296 1804 294 781 247 48939 379 1746 271 804 245 779 270 753 275 774 275 1825 273 802 247 802 247 1827 271 804 245 1829 279 1820 278 1821 277 798 251 1823 275
-POWER RAW F:38000 DC:33 562 1721 561 594 557 597 564 617 513 615 536 618 543 1715 566 1716 566 1692 559 594 567 588 563 618 543 611 540 615 536 618 543 1715 556 623 538 617 534 621 530 624 516 638 513 642 509 1722 560 620 541 1717 565 1692 559 1724 568 1715 556 1701 560 1723 559
-POWER RAW F:38000 DC:33 8436 4189 538 1563 566 1559 539 510 559 543 516 507 542 560 509 540 509 567 512 1586 512 1562 567 1559 539 536 533 1566 542 507 562 513 536 540 509 22102 647 1478 559 1568 540 508 541 535 534 515 534 568 511 538 511 539 540 1585 513 1560 559 1567 541 534 535 1564 534 515 534 568 511 538 511 22125 644 1482 565 1561 537 511 538 564 515 508 541 535 534 541 508 516 563 1588 510 1563 556 1570 538 510 559 1567 541 534 515 535 534 541 508
-POWER RAW F:38000 DC:33 929 825 1711 934 797 930 791 909 822 932 789 938 793 934 797 930 791 1719 899 856 1711 907 824 90848 923 830 1706 912 819 908 823 931 790 910 822 933 788 912 819 935 796 1714 904 850 1707 939 792
-POWER RAW F:38000 DC:33 448 2031 444 2005 480 4540 452 4539 473 2037 438 2011 474 2006 449 4571 451 4539 453 4568 444 2036 449 4541 451 34906 527 1953 451 1998 477 4543 449 4542 480 2030 445 2004 471 2009 446 4575 447 4543 449 4572 450 1999 476 4545 446
-POWER RAW F:38000 DC:33 9021 4496 567 1664 567 1690 561 567 533 1698 563 1667 564 1693 568 1663 568 586 534 567 563 565 535 594 536 591 539 589 531 571 539 563 567 1690 541 560 560 594 536 592 538 564 536 1695 566 1664 567 1690 561 1670 561 1696 555 1675 566 562 558 596 514 562 568 559 561 594 536 565 535 593 537 591 539 1665 566 1692 559 1671 560 1697 564 1666 565 1666 565 1693 558 1672 569 23181 9013 4504 569 1689 542 1689 562 565 535 1697 564 1666 646 1610 560 1672 559 595 535 593 537 590 510 566 564 590 540 588 532 596 514 588 542 1689 542 560 560 594 536 592 538 590 510 1694 567 1664 567 1690 561 1669 562 1695 556 1675 566 561 559 596 514 588 542 585 535 593 537 591 509 593 537 591 539 1665 566 1692 559 1671 560 1697 564 1667 564 1667 564 1693 558 1672 569
-POWER RAW F:38000 DC:33 8041 3979 513 536 482 515 513 1559 509 515 514 1560 508 515 514 509 509 514 484 4000 533 1566 512 537 481 1566 512 537 481 1566 512 537 481 516 513 537 481 24150 8044 3977 505 518 510 539 479 1567 511 512 506 1568 510 539 479 543 485 538 480 3977 536 1564 514 534 484 1563 515 508 510 1563 515 508 510 540 489 534 484
-POWER RAW F:38000 DC:33 383 2027 295 2112 271 2138 266 890 271 887 294 926 235 2114 300 887 274 915 236 2145 269 887 274 884 297 923 238 920 241 917 264 895 266 26573 384 2026 296 2111 273 2136 268 889 272 886 295 924 237 2113 301 886 275 914 237 2144 270 886 275 914 267 921 240 919 242 916 265 924 237
-POWER RAW F:38000 DC:33 177 8474 175 5510 174 8476 173 8477 177 8504 171 5515 175 8476 178 8472 177 8473 176 5541 174 8476 173 45583 171 8481 178 5507 177 8473 176 8474 175 8506 173 5512 172 8478 176 8475 174 8476 178 5538 177 8474 175
-POWER RAW F:38000 DC:33 8044 3976 506 517 511 1563 505 517 511 538 480 517 511 538 460 563 455 568 460 3993 530 545 483 1564 514 1559 509 1564 514 509 509 540 488 535 483 513 505 24150 8043 3978 514 509 509 1564 514 509 509 540 478 519 509 540 458 565 464 559 459 3994 529 546 482 1565 513 1560 508 1565 513 510 508 541 487 536 482 541 477
-POWER RAW F:38000 DC:33 558 2942 450 10021 482 2989 484 10015 447 3024 449 10021 472 3100 485 2986 477 2994 500 2999 475 2996 477 2994 479 2992 482 3018 476 2995 479 6464 484 36270 477 3023 450 10020 473 2999 485 10014 448 3022 452 10019 474 3098 478 2994 480 2991 503 2996 477 2994 480 2992 482 2990 484 3015 479 2992 481 6462 485
-POWER RAW F:38000 DC:33 587 2407 476 1062 965 547 482 547 451 577 452 546 452 22108 590 2404 479 1060 967 1028 510 519 509 548 480 487 511 120791 645 2411 472 1066 961 1065 483 515 514 514 504 493 515
-POWER RAW F:38000 DC:33 172 7439 171 7441 169 7443 177 7434 176 7462 178 4887 176 4916 177 4914 169 7469 171 4920 174 4918 175 55174 176 7436 174 7437 173 7439 171 7440 175 7463 172 4894 174 4917 171 4921 172 7465 175 4916 178 4914 169
-POWER RAW F:38000 DC:33 589 2556 500 524 474 554 454 544 454 543 455 543 455 543 455 543 445 583 446 552 446 20046 584 2561 505 1033 485 514 963 518 480 1032 516 512 476 522 506 491 507 522 476 116758 586 2560 506 1033 484 513 964 548 450 1031 507 522 476 521 507 490 508 521 477
-POWER RAW F:38000 DC:33 586 2407 476 1063 964 578 450 548 450 547 481 517 481 577 451 546 452 546 472 556 452 545 453 575 453 514 484 544 484 543 455 14954 510 2483 481 1058 480 548 959 552 446 1067 481 516 512 546 482 515 992 1003 535 493 515 543 486 513 475 522 506 552 446 111671 589 2405 478 1061 477 551 967 514 484 1059 479 549 479 548 480 517 990 1036 512 516 482 546 483 515 503 525 483 544 454
-POWER RAW F:38000 DC:33 8444 4180 537 1564 565 1560 538 1561 557 1568 540 1559 539 536 533 542 517 559 510 1563 535 1564 565 1561 537 512 567 1558 540 535 534 1566 542 1557 562 23122 564 1562 557 1569 539 1560 538 1587 542 1558 540 534 535 515 534 541 538 1587 511 1563 566 1560 538 536 533 1567 541 534 515 1585 533 1566 542 23166 561 1565 564 1561 537 1563 535 1590 539 1561 537 538 541 534 515 535 534 1564 534 1566 563 1563 535 540 539 1560 538 511 538 1588 541 1559 539
-POWER RAW F:38000 DC:33 527 1923 481 1998 477 4543 449 4542 470 2040 445 2004 471 2009 446 4575 447 4543 449 4572 450 1999 476 2034 441 34899 524 1956 448 2001 474 4546 446 4545 477 2033 442 2007 478 2002 443 4578 444 4546 445 4575 447 2003 472 2037 448
-POWER RAW F:38000 DC:33 533 1356 437 3474 427 3483 429 3455 436 1454 430 1459 405 28168 510 1379 434 3477 434 3476 425 3459 432 1457 427 1462 402
-POWER RAW F:38000 DC:33 921 833 1714 932 789 938 793 934 797 903 818 909 822 905 816 938 793 1716 902 853 1714 905 816 90856 922 805 1742 931 790 937 794 933 788 939 792 935 796 930 791 937 794 1715 903 825 1742 904 817
-POWER RAW F:38000 DC:33 179 7433 177 4915 178 7434 175 7436 174 7464 176 7435 175 4916 177 4915 173 4918 170 4922 171 4920 173 55174 175 7437 173 4919 174 7437 173 7439 171 7467 173 7438 172 4920 173 4919 174 4917 176 4915 178 4914 169
-POWER RAW F:38000 DC:33 169 6731 176 6748 169 6730 177 6748 169 6755 172 4427 177 4447 178 6721 175 6749 178 4446 168 4456 169 54704 176 6723 174 6750 177 6723 173 6750 177 6747 170 4429 175 4449 176 6723 174 6751 176 4448 177 4447 178
-POWER RAW F:38000 DC:33 3506 3494 876 830 840 2576 847 2568 844 862 819 2570 842 864 816 863 818 2570 842 836 844 2572 840 866 815 865 815 2573 839 867 813 866 814 2573 850 857 813 2575 847 2568 844 834 847 2569 843 835 845 2571 872 2571 842 32654 3512 3488 872 834 847 2570 842 2573 839 867 814 2574 849 858 822 857 813 2575 848 859 821 2566 846 832 848 860 821 2567 845 833 848 860 820 2568 844 834 847 2569 843 2572 840 838 843 2574 849 829 841 2575 868 2575 837
-POWER RAW F:38000 DC:33 560 2939 453 10018 475 2996 477 10022 450 3021 452 10018 475 3097 478 6464 483 6460 477 6466 502 6469 479 2993 480 2990 484 36274 564 2936 456 10015 478 2993 481 10020 534 2936 456 10014 479 3093 482 6461 476 6466 482 6461 476 6495 473 2999 485 2986 477
-POWER RAW F:38000 DC:33 10726 41047 10727
-POWER RAW F:38000 DC:33 1617 4604 1559 1537 1560 1537 1560 4661 1533 33422 1613 4607 1566 1530 1556 1540 1536 4685 1539
-POWER RAW F:38000 DC:33 174 4972 177 4910 173 4944 170 6988 174 6984 177 6951 175 6983 174 14269 177 4969 175 4912 176 4941 178 6979 172 6986 175 6953 178 6980 171
-POWER RAW F:38000 DC:33 174 7067 176 10544 1055 719 1053 739 1054 738 953 822 1052 2566 169 3435 171 3431 175 3446 170 3432 174 3446 170 3432 174 3428 178 3442 174 3429 177 3425 171 39320 2323 4900 178 10543 1056 719 1053 739 1054 738 953 821 1053 2566 169 3435 171 3431 175 3445 171 3432 174 3446 170 3432 174 3428 178 3442 174 3428 178 3425 171
-POWER RAW F:38000 DC:33 3506 3492 868 839 841 2575 848 858 822 2566 846 832 848 859 821 858 812 2576 847 860 820 2567 845 833 847 860 821 2568 844 862 818 2570 842 864 817 2571 841 2574 849 2567 845 861 820 2568 845 834 847 2570 873 2570 842 34395 3503 3496 874 833 847 2568 845 834 847 2570 842 864 816 835 846 862 819 2569 843 835 846 2571 841 865 816 864 816 2571 841 837 844 2573 850 857 813 2575 848 2567 845 2570 842 864 816 2572 840 838 842 2574 869 2574 838
-POWER RAW F:38000 DC:33 170 8479 170 5516 178 8472 177 8474 175 8506 173 5513 171 8479 175 8476 178 8472 177 5540 175 8475 174 45584 177 8473 176 5509 175 8476 173 8477 176 8504 170 5516 178 8472 177 8474 175 8476 173 5543 172 8479 170
-POWER RAW F:38000 DC:33 178 4969 170 6958 173 4944 175 6983 173 6956 174 6984 177 6980 171 16308 180 4966 173 6955 176 4941 172 6985 176 6982 169 6960 176 6982 174
-POWER RAW F:38000 DC:33 585 2409 474 550 478 550 448 1033 994 1063 485 512 506 79916 585 2410 473 551 477 550 448 1034 993 1033 515 543 475
-POWER RAW F:38000 DC:33 1192 1012 6649 26844 1192 1013 6648
-POWER RAW F:38000 DC:33 3134 6105 6263 82963 3134 6105 6263
-POWER RAW F:38000 DC:33 588 1511 567 1533 565 589 531 597 513 589 541 587 533 1565 533 569 541 1533 565 562 568 1531 537 1537 561 593 537 591 539 1507 561 1539 569 22152 586 1513 565 1535 563 590 540 562 538 564 566 588 542 1557 531 597 513 1534 564 590 540 1533 535 1539 559 568 562 592 538 1509 569 1531 567
-POWER RAW F:38000 DC:33 923 831 1715 903 818 936 795 932 789 938 793 934 797 1713 1740 932 789 911 821 934 798 930 791 90853 928 799 1737 935 796 931 790 937 795 932 789 938 793 1717 1736 936 796 932 789 911 820 934 798
-POWER RAW F:38000 DC:33 689 1461 566 1534 564 589 531 597 513 1534 564 564 566 1533 535 620 510 1537 561 592 538 1535 543 1531 567 587 533 595 535 1511 567 1533 565 22161 588 1512 566 1534 564 564 556 598 512 1535 563 565 565 1534 534 594 536 1538 560 593 537 1536 542 1532 566 587 543 585 535 1511 567 1534 564
-POWER RAW F:38000 DC:33 588 2558 498 526 482 515 483 546 452 545 453 545 453 545 453 545 453 544 474 554 444 20047 583 2562 504 519 479 519 479 1003 515 483 1024 548 450 1001 995 1001 506 116771 593 2552 504 520 478 551 447 1004 513 514 993 549 449 1002 994 1002 516
-POWER RAW F:38000 DC:33 587 2559 507 517 481 517 481 547 451 516 482 546 452 546 452 546 452 545 473 525 483 20038 592 2553 503 521 477 552 446 521 477 1004 514 515 992 1034 483 514 484 513 485 116769 593 2552 504 520 478 550 448 520 478 1003 515 514 993 1032 486 513 475 522 476
-POWER RAW F:38000 DC:33 4558 4576 558 596 565 97881 4554 4579 565 589 562
-POWER RAW F:38000 DC:33 1039 7202 958 4713 981 4713 961 7255 956 4739 955 16077 1038 7204 956 4714 980 4715 959 7256 954 4741 954
-POWER RAW F:38000 DC:33 506 2638 510 516 482 516 482 546 452 546 452 545 453 545 453 545 453 575 443 554 444 20048 592 2554 502 1036 481 517 481 517 511 516 482 516 961 1035 513 515 483 514 484 116757 594 2552 504 1034 484 514 484 514 504 524 484 513 964 1032 506 522 476 492 506
-POWER RAW F:38000 DC:33 170 7441 169 4924 174 7437 193 7444 171 7441 174 4918 170 7441 174 4917 171 7440 195 7443 172 7439 171 55187 174 7437 173 4919 175 7437 173 7438 172 7466 175 4891 172 7439 171 4921 172 7439 171 7441 174 7464 171
-POWER RAW F:38000 DC:33 179 4967 172 4915 178 6980 171 4945 169 4948 176 4912 176 4941 178 16307 176 4969 175 4912 176 6982 174 4942 171 4945 169 4919 174 4943 176
-POWER RAW F:38000 DC:33 1042 793 898 883 869 858 924 884 878 877 875 879 873 855 928 1717 901 854 1794 878 894 887 875 1716 902 89114 985 798 903 878 874 880 902 852 900 855 897 857 905 876 896 1722 906 849 1789 883 899 855 897 1721 897
-POWER RAW F:38000 DC:33 170 8480 169 8481 178 8472 177 8474 175 8476 173 5513 176 8474 175 8476 173 8507 178 5509 175 8505 174 45558 175 8476 173 8476 173 8477 172 8478 171 8480 169 5517 177 8473 176 8474 175 8506 174 5512 172 8509 171
-POWER RAW F:38000 DC:33 628 2577 499 528 480 545 453 544 454 544 454 544 454 544 454 543 455 543 475 553 445 20047 593 2553 503 521 477 551 447 1004 514 515 992 519 479 1003 515 513 485 543 455 116768 585 2561 505 519 479 519 479 1002 516 513 994 548 450 1001 506 522 476 521 477
-POWER RAW F:38000 DC:33 8987 4505 568 586 534 594 536 591 509 567 563 591 539 563 567 587 513 1692 559 1672 559 1698 563 590 510 592 538 590 540 1664 567 1690 561 593 507 1699 562 1668 563 1694 567 1663 568 586 534 568 562 592 508 595 535 1695 536 592 538 1693 558 595 515 1690 561 593 517 585 535 567 563 39551 8994 4497 566 589 541 560 560 594 516 586 534 594 536 592 538 590 510 1695 566 1664 567 1690 561 593 507 595 535 566 564 1667 564 1693 558 596 534 1670 561 1670 561 1696 565 1666 565 589 541 587 533 595 515 587 533 1697 534 568 562 1695 556 572 538 1693 568 559 541 588 542 585 535
-POWER RAW F:38000 DC:33 8987 4504 569 559 561 593 537 565 535 567 563 591 539 588 532 597 513 1691 560 568 562 592 508 1697 564 589 511 565 565 1692 559 1672 559 569 561 1669 562 566 564 564 566 1665 566 588 542 586 534 1670 561 567 563 565 535 593 537 591 539 1692 539 589 541 586 534 594 536 592 508 40679 8987 4504 569 585 535 593 537 591 509 566 564 591 539 588 532 596 514 1691 560 594 536 592 508 1697 564 589 511 591 539 1692 559 1671 560 594 536 1669 562 592 538 590 540 1664 567 587 543 585 535 1670 561 593 537 565 535 593 537 591 539 1691 540 588 542 586 534 594 536 592 508
-POWER RAW F:38000 DC:33 298 1828 270 804 245 1829 279 1820 278 797 252 771 278 1822 276 1824 274 800 249 1825 273 802 247 776 252 771 278 1822 276 799 250 48931 388 1737 280 796 253 1821 277 1822 276 798 251 1823 275 800 249 774 275 1825 273 776 273 1801 297 1828 270 1829 279 796 253 1821 277 42813 301 1825 273 801 248 1826 272 1827 271 804 245 805 244 1830 278 1821 277 798 251 1823 275 799 250 774 244 779 280 1820 278 796 253 48926 382 1744 354 696 271 1828 270 1829 279 796 253 1821 277 797 252 746 303 1823 275 774 275 1799 299 1826 272 1827 271 804 245 1829 279
-POWER RAW F:38000 DC:33 177 5508 176 5539 176 8475 174 5542 173 8478 171 5545 170 8481 168 8482 177 8473 176 5541 174 8476 173 45573 169 5517 177 5538 177 8473 176 5541 174 8476 173 5544 171 8479 170 8481 178 8472 177 5540 175 8475 174
-POWER RAW F:38000 DC:33 175 8474 175 8475 174 8477 172 8478 171 8480 169 8481 178 5538 177 5510 174 5542 173 5543 172 5544 171 45575 177 8472 177 8474 175 8476 173 8477 172 8478 171 8481 178 5507 177 5539 176 5540 175 5542 173 5543 172
-POWER RAW F:38000 DC:33 8050 3971 511 1562 516 1558 510 539 490 1557 511 1563 515 533 485 538 490 533 485 3983 530 1569 509 1564 514 1559 509 1565 513 1560 508 515 513 536 482 541 488 24152 8042 3979 514 1560 508 1565 513 510 508 1565 513 1560 508 515 513 536 482 541 488 3980 533 1567 511 1562 516 1557 511 1563 515 1558 510 539 489 534 484 539 490
-POWER RAW F:38000 DC:33 175 8475 174 5512 177 8473 176 8475 174 8506 179 5508 176 8474 175 8475 174 8477 172 5544 171 8480 169 45587 176 8475 174 5511 173 8477 177 8473 176 8504 170 5516 178 8472 177 8473 176 8475 174 5542 173 8478 171
-POWER RAW F:38000 DC:33 176 7436 174 7438 172 7439 171 7441 174 7463 172 7440 170 4921 172 4919 174 4917 176 4916 177 4914 174 55176 175 7437 173 7439 191 7446 174 7438 177 7434 176 7435 175 4917 176 4915 179 4914 174 4917 171 4946 178
-POWER RAW F:38000 DC:33 176 7435 175 4917 177 7435 175 7436 189 7449 176 7435 175 7437 173 4918 175 7436 174 4918 175 4916 178 55171 175 7436 174 4918 170 7441 174 7438 177 7460 170 7441 174 7438 177 4914 174 7437 178 4914 169 4922 171
-POWER RAW F:38000 DC:33 8049 3973 509 1564 514 509 509 1564 514 535 483 1564 514 535 483 540 489 535 483 3980 533 1566 512 537 481 1566 512 511 507 1566 512 537 481 542 486 511 507 24149 8045 3976 516 1558 510 512 516 1557 511 512 516 1558 510 512 516 507 511 512 506 3984 539 1560 508 515 513 1560 508 541 488 1560 508 541 488 536 482 514 504
-POWER RAW F:38000 DC:33 366 202 867 527 170 130516 343 227 863 529 168
-POWER RAW F:38000 DC:33 176 5992 176 1372 176 1320 177 1345 172 1349 179 1370 178 1317 175 4444 176 1346 171 1351 177 1345 172 1349 179 1344 174 5963 175 65574 172 5995 178 1344 174 1348 175 1347 175 1347 170 1378 170 1325 172 4447 178 1344 173 1349 169 1353 175 1347 170 1351 177 5961 177
-POWER RAW F:38000 DC:33 497 1478 488 511 467 1482 494 531 447 1477 499 501 466 533 445 530 468 507 471 529 438 12857 488 1485 491 509 469 1481 495 529 448 1476 490 510 468 532 445 529 469 480 498 502 465
-POWER RAW F:38000 DC:33 982 6313 961 2662 903 2718 929 2719 907 6363 900 2722 904 6365 909 6361 903 6368 906 2742 905 46364 989 6307 906 2716 911 2712 925 2723 903 6367 907 2715 901 6369 905 6365 909 6361 903 2745 902
-POWER RAW F:38000 DC:33 599 257 975 317 177 130649 308 228 974 319 175
-POWER RAW F:38000 DC:33 176 4969 170 6958 173 6985 177 6981 171 6958 178 6980 177 6981 170 16308 180 4966 173 6955 176 6982 169 6988 174 6956 175 6983 173 6984 172
-POWER RAW F:38000 DC:33 178 5990 173 1349 174 1348 175 1348 174 4444 176 1346 171 1351 177 4416 178 1344 173 1348 169 1353 175 1347 170 1351 177 9048 177 65573 173 5995 173 1348 175 1348 174 1347 176 4444 171 1351 177 1345 173 4421 173 1348 169 1352 176 1347 170 1351 177 1345 172 9053 177
-POWER RAW F:38000 DC:33 174 4972 177 4910 173 6985 177 4940 174 6984 178 6951 175 6983 174 14269 177 4968 176 4912 176 6981 175 4941 173 6985 177 6953 178 6979 172
-POWER RAW F:38000 DC:33 1318 225 177 130305 1609 231 171
-POWER RAW F:38000 DC:33 585 2410 473 1065 962 581 447 519 479 580 448 549 449 579 449 518 480 548 480 517 481 517 481 577 451 516 482 576 452 545 453 14955 510 2483 481 1058 480 549 969 543 445 1037 511 547 481 546 482 516 482 545 484 545 483 514 484 544 963 1063 485 543 445 111612 626 2427 557 954 513 512 995 547 451 1031 507 521 508 551 477 520 478 550 478 549 479 488 510 548 969 1057 481 517 481
-POWER RAW F:38000 DC:33 203 272 1215 302 171 130229 1423 275 178
-POWER RAW F:38000 DC:33 176 7436 174 7438 192 7446 174 7437 178 7434 176 7435 175 4917 176 4915 178 4913 175 4917 197 7440 175 55130 286 7377 177 7435 175 7437 173 7438 172 7466 174 7411 178 4913 170 4921 172 4919 174 4918 175 7436 174
-POWER RAW F:38000 DC:33 175 7437 173 4918 170 7441 174 7437 178 7460 170 7441 179 7433 177 4915 178 4913 170 4922 171 4920 173 55124 291 7372 172 4921 172 7439 171 7441 174 7463 172 7440 170 7442 178 4913 170 4922 171 4920 173 4918 175
-POWER RAW F:38000 DC:33 172 8477 172 8478 171 8480 169 5516 179 8502 178 5509 175 8475 174 8476 173 8479 170 5545 170 8480 169 45588 176 8473 176 8474 175 8476 173 5513 177 8504 171 5515 174 8476 178 8472 177 8473 176 5541 174 8476 173
-POWER RAW F:38000 DC:33 177 7436 174 4918 175 7436 174 4918 175 7462 178 4887 176 4916 177 4914 174 4917 171 4921 172 4919 175 55184 175 7435 175 4918 175 7436 174 4918 175 7462 178 4914 174 4917 171 4920 173 4919 174 4917 176 4915 178
-POWER RAW F:38000 DC:33 508 2484 480 1060 967 544 485 544 454 574 454 543 455 573 445 553 445 522 506 552 446 552 446 551 477 551 447 581 447 520 478 550 478 15908 626 2427 476 1062 476 522 995 547 451 1061 477 520 508 550 478 519 479 519 999 1058 959 1037 990 582 446 1035 483 111666 590 2404 479 1059 479 549 968 543 455 1027 511 548 480 517 511 486 512 546 961 1065 962 1034 993 579 449 1032 486
-POWER RAW F:38000 DC:33 175 8475 174 8475 174 8477 172 8478 171 8480 169 5517 178 8473 175 8475 179 8501 173 5513 176 8505 169 45562 179 8472 177 8473 176 8474 175 8476 173 8478 171 5515 174 8476 178 8473 176 8505 174 5512 172 8508 171 120769 178 93377 175 7437 173 4919 174 7437 173 7439 171 7467 173 7439 171 7441 174 4918 170 4921 172 7439 171 7467 173 55167 171 7440 170 4922 171 7440 195 7443 172 7439 171 7441 174 7438 177 4915 173 4918 195 7442 173 7439 170
-POWER RAW F:38000 DC:33 295 1805 273 776 242 1808 270 754 244 1806 272 777 241 758 270 754 264 760 268 756 272 14149 297 1802 266 784 244 1805 263 762 246 1803 265 785 244 780 248 751 267 758 271 753 265
-POWER RAW F:38000 DC:33 535 1723 569 585 566 615 536 619 542 586 565 616 535 1722 539 615 536 1721 561 620 541 587 564 617 534 621 540 588 563 618 543 1714 537 617 534 621 540 615 536 618 543 612 539 615 536 1722 560 594 567 1717 534 1723 569 1714 557 1700 643 1639 643 1641 559
-POWER RAW F:38000 DC:33 502 2521 504 521 997 545 453 575 453 545 453 575 454 22097 591 2433 511 513 994 1062 476 552 476 522 476 552 476 120839 628 2455 509 515 992 1064 484 513 505 493 515 543 475
-POWER RAW F:38000 DC:33 591 2404 479 1060 967 1029 509 519 509 549 479 518 480 79926 585 2408 556 956 989 1033 515 544 484 543 475 522 476
-POWER RAW F:38000 DC:33 586 2560 506 518 480 548 450 548 450 517 481 517 481 517 481 547 451 546 482 516 482 20040 590 2556 500 1038 480 518 969 543 455 543 475 1006 511 517 481 517 511 486 481 116778 584 2561 505 1033 485 513 964 548 450 548 480 1001 506 522 476 522 506 521 446
-POWER RAW F:38000 DC:33 917 206 175 186 170 21561 170 2280 175 2274 502 1929 174 2276 169 5178 170 2261 173 3724 498 1932 171 2279 176 2273 172 3709 172 2277 178 3720 171 17223 177 7619 174 2275 170 2279 176 2256 168 2280 175 5172 176 2256 168 3729 173 2276 179 2253 171 2278 177 3703 178 2271 174 3724 177 17251 170 7627 177 2272 173 2276 169 2263 171 2277 178 5169 169 2262 172 3726 175 2256 168 2280 175 2274 171 3710 171 2278 177 3720 171
-POWER RAW F:38000 DC:33 565 233 653 313 170 130328 752 235 233 107 229 398 177
-POWER RAW F:38000 DC:33 586 2439 505 549 968 1027 511 517 511 517 481 547 481 21583 584 2439 505 520 997 1059 479 549 479 518 480 548 480 120894 593 2432 501 522 995 1061 477 521 507 520 478 550 478
-POWER RAW F:38000 DC:33 558 8032 474 8115 503 8116 482 8108 480 8141 477 5239 476 8114 504 8115 483 8107 481 5236 509 8111 477 45290 554 8036 481 8108 510 8110 478 8112 476 8145 473 5243 482 8107 511 8109 479 8111 477 5240 505 8115 473
-POWER RAW F:38000 DC:33 173 7438 172 4920 173 7438 172 4920 173 7465 175 4890 173 7439 171 4920 173 4919 174 4917 176 4915 178 55179 170 7441 169 4924 174 7437 178 4913 175 7463 172 4893 170 7441 174 4918 170 4922 171 4920 173 4918 175
-POWER RAW F:38000 DC:33 225 745 222 774 193 778 200 797 175 769 193 777 201 771 196 774 224 747 220 776 202 769 198 248 220 252 196 250 218 253 225 746 221 250 198 248 220 252 226 246 222 223 225 248 220 252 216 229 219 253 225 247 221 277 176 243 220 279 189 230 228 244 224 248 220 252 196 250 218 253 215 257 201 770 197 799 189 257 201 271 197 37716 222 749 218 778 200 771 196 801 172 772 200 771 196 774 193 777 221 750 217 780 197 773 194 251 217 255 193 279 199 273 195 749 218 254 194 252 226 245 223 275 178 242 221 277 201 245 193 253 225 247 221 250 218 254 194 252 226 272 196 223 225 248 220 251 217 255 193 253 225 247 221 251 197 773 194 803 174 297 176 244 219
-POWER RAW F:38000 DC:33 3503 2655 197 642 876 2568 844 834 846 833 848 860 821 831 839 2576 847 2569 843 2572 841 2574 849 858 823 857 813 866 815 865 815 2572 841 2575 848 2568 844 2570 842 836 844 863 818 834 847 861 820 2568 845 2571 872 2571 842 32651 3505 3495 875 2567 845 861 820 832 849 859 811 840 840 2576 847 2568 844 2571 842 2574 849 830 840 867 814 838 842 865 815 2572 840 2575 848 2568 845 2571 841 865 815 864 817 834 846 861 819 2569 843 2572 871 2572 840
-POWER RAW F:38000 DC:33 347 677 219 252 196 276 202 742 225 798 174 770 192 778 200 771 196 775 223 748 219 777 200 770 197 249 219 253 195 251 227 271 197 747 220 252 216 229 219 253 225 273 195 277 176 244 219 253 215 230 228 244 224 248 220 252 196 250 218 280 198 247 201 245 223 249 219 253 195 251 227 245 223 248 200 797 175 795 198 248 200 246 222 37666 344 678 228 245 223 222 226 771 196 800 198 747 220 750 217 753 224 773 194 776 202 769 198 799 173 246 227 245 223 249 199 247 221 749 218 280 198 247 201 245 223 249 219 253 195 251 227 244 224 248 200 272 196 250 218 254 194 252 226 245 223 249 199 274 194 251 227 245 193 253 225 273 195 251 217 753 225 746 221 251 197 275 193
-POWER RAW F:38000 DC:33 174 7437 173 7440 174 7437 178 7433 177 7461 169 7442 178 4914 174 4917 171 4921 172 4919 174 7463 177 55163 177 7435 174 7437 173 7438 172 7440 175 7463 172 7413 176 4915 178 4913 175 4917 171 4920 174 7438 172
-POWER RAW F:38000 DC:33 8042 3979 513 510 508 541 487 1559 509 515 513 1560 508 515 513 510 508 541 477 3981 532 1568 510 1563 515 1558 510 1564 514 1559 509 514 514 535 483 540 488 24151 8042 3979 513 536 482 541 487 1560 508 541 488 1560 508 541 487 536 482 541 477 3980 533 1566 512 1561 507 1566 512 1562 516 1557 511 538 491 533 485 538 490
-POWER RAW F:38000 DC:33 8989 4501 562 1696 565 1665 566 562 568 586 514 588 542 586 534 594 536 1667 564 591 539 1692 539 563 567 1690 561 1669 562 1669 562 1696 565 562 538 564 566 588 542 586 534 1670 561 568 562 592 538 590 510 592 538 590 540 561 539 563 567 561 569 585 535 593 507 595 535 593 537 39547 8987 4504 569 1689 562 1668 563 591 539 589 511 591 539 589 541 561 559 1671 560 568 562 1695 536 592 538 1693 558 1673 568 1663 568 1689 562 592 508 594 536 592 538 590 540 1664 567 561 569 559 561 567 543 585 535 593 537 591 509 593 537 591 539 589 541 587 513 589 541 587 533
-POWER RAW F:38000 DC:33 8988 4504 640 487 562 592 538 590 510 592 538 590 540 588 532 596 514 614 516 1689 562 1668 563 1695 536 1695 566 1664 567 1690 612 1618 643 1430 801 1613 648 481 558 570 540 589 541 587 533 595 535 592 508 594 536 592 538 1667 564 1693 558 1672 569 1688 563 1668 644 1586 563 1694 567 40630 8994 2265 557 96833 8987 2273 538
-POWER RAW F:38000 DC:33 173 7439 171 4922 172 7439 171 4921 172 7466 174 4917 176 4915 173 4918 170 7441 174 7438 192 7445 175 55181 174 7437 173 4918 175 7437 173 4919 175 7463 177 4888 175 4917 176 4915 178 7460 170 7440 175 7437 178
-POWER RAW F:38000 DC:33 1636 4610 1563 1533 1584 7760 1561 28769 1641 4606 1557 1539 1588 7757 1564
-POWER RAW F:38000 DC:33 590 2404 479 1059 968 575 454 544 454 574 454 543 455 543 475 522 476 552 476 552 446 551 447 581 448 520 478 581 447 519 479 549 479 15967 587 2407 476 1062 476 522 995 547 451 1030 508 520 509 550 478 519 479 519 998 1028 999 1057 481 547 960 1066 482 111641 587 2407 476 1063 485 513 994 547 451 1031 507 551 477 551 477 520 478 550 968 1059 968 1027 511 548 959 1036 512
-POWER RAW F:38000 DC:33 588 2406 477 1061 966 577 451 516 482 545 483 545 453 575 443 524 484 514 504 554 454 543 455 543 475 553 445 583 445 521 477 582 446 15969 585 2409 474 1065 483 514 993 549 449 1033 515 543 475 553 475 522 476 552 965 1030 997 576 452 1029 998 1028 479 111668 587 2407 475 1063 485 543 964 517 481 1031 507 552 476 551 477 520 478 550 968 1028 999 574 454 1027 990 1036 481
-POWER RAW F:38000 DC:33 174 7439 196 7441 174 7437 173 7439 171 7441 174 7438 177 7460 170 7442 178 7433 177 4915 173 4918 170 55186 174 7438 172 7440 170 7441 174 7438 177 7461 169 7416 173 7464 176 7435 175 7437 173 4918 175 4917 176
-POWER RAW F:38000 DC:33 173 7438 172 7441 174 7438 177 7434 176 7462 168 7443 177 7435 175 4917 176 4915 173 7438 177 4941 173 55166 174 7438 197 7441 174 7437 173 7439 171 7441 174 7438 177 7460 170 4922 171 4893 195 7443 172 4920 173
-POWER RAW F:38000 DC:33 175 7436 179 4913 175 4917 171 4920 173 4945 169 4896 177 7435 175 7436 174 7464 176 4916 177 4914 169 55180 170 7441 169 4924 169 4922 171 4920 173 4919 174 4917 176 7435 175 7463 177 7434 176 4916 177 4914 174
-POWER RAW F:38000 DC:33 927 827 1709 936 796 932 789 938 793 1717 1736 936 795 932 789 1721 927 827 1709 909 822 90851 898 829 1738 934 798 930 791 936 796 1715 1738 934 797 930 791 1719 899 828 1739 934 797
-POWER RAW F:38000 DC:33 176 5991 177 1372 176 1320 177 1344 173 1349 174 1374 169 1327 170 4449 176 1346 171 1351 177 1345 172 1349 168 1353 175 5963 175 65573 173 5995 178 1344 174 1348 175 1348 174 1347 170 1378 170 1325 172 4447 178 1344 174 1349 169 1353 175 1347 170 1352 176 5961 177
-
-
-// TV-B-GONE, parsed doesn't repeat Knopkus. RAW can.
-POWER NEC A:71 C:4A
-POWER NEC A:60 C:03
-POWER NEC A:60 C:00
-POWER NEC A:42 C:01
-POWER NECext A:AD50 C:00
-POWER NECext A:AD50 C:02
-POWER NEC A:50 C:3F
-POWER Samsung32 A:06 C:0F
-POWER NEC A:08 C:12
-POWER Samsung32 A:08 C:0B
-POWER NECext A:5583 C:C2
-POWER NEC A:00 C:51
-POWER NECext A:BD00 C:01
-POWER Samsung32 A:00 C:0F
-POWER Samsung32 A:16 C:0F
-POWER NEC A:01 C:01
-POWER NECext A:6880 C:49
-POWER NECext A:0286 C:49
-POWER RAW F:38000 DC:33 2383 609 1214 600 612 580 1213 608 614 583 1210 605 607 586 616 611 1192 599 613 608 614 579 613 615 607 26670 2387 601 1212 600 612 589 1214 603 609 586 1217 595 607 594 618 606 1187 602 610 609 613 588 614 610 612
-POWER RAW F:38000 DC:33 178 7761 176 11308 546 957 540 1958 538 970 537 1955 541 962 545 1953 543 964 543 962 545 957 540 970 548 960 547 1945 541 1950 546 965 542 1953 543 962 545 1945 540 970 537 1958 538 7881 172 7744 172 11318 536 971 536 1956 540 963 534 1964 542 966 541 1951 535 968 539 971 536 971 536 969 538 964 533 1965 541 1954 542 963 534 1956 540 971 536 1959 537 968 539 1951 535
-POWER RAW F:38000 DC:33 3444 1767 413 486 420 1343 419 478 418 485 411 490 416 479 417 489 417 482 414 485 421 482 414 483 413 490 416 485 411 1343 419 487 419 480 416 483 413 490 416 482 414 488 418 483 413 483 413 492 414 1345 417 482 414 489 417 480 416 487 419 482 414 481 415 491 415 484 412 1347 415 488 418 1338 414 1348 414 1347 415 1340 412 494 412 487 419 1340 412 491 415 1341 421 1341 421 1340 412 1343 419 487 419 1339 413 74311 3445 1753 437 461 445 1316 446 456 440 455 441 465 441 458 438 461 445 458 438 460 436 466 440 461 445 451 445 460 446 1313 439 460 446 457 439 459 437 465 441 460 446 450 436 469 437 462 444 456 440 1322 440 457 439 464 442 459 437 459 437 468 438 461 445 455 441 462 444 1312 440 463 443 1317 445 1310 442 1323 439 1320 442 457 439 464 442 1315 437 466 440 1320 442 1313 439 1326 446 1313 439 460 446 1317 445
-POWER RAW F:38000 DC:33 278 1845 274 808 271 806 273 812 278 805 275 805 274 1840 279 1844 275 809 281 1836 272 806 274 812 278 805 274 1842 277 802 277 44956 279 1842 277 804 275 802 277 808 271 811 279 1838 281 798 271 814 276 1844 275 806 273 1841 278 1845 274 1846 273 808 271 1843 276 44959 275 1845 274 807 272 805 275 811 279 804 275 805 274 1839 280 1844 275 808 271 1845 274 805 274 811 279 804 275 1841 278 801 278 44955 280 1841 278 802 277 801 278 807 272 810 280 1837 271 807 272 813 277 1843 276 805 274 1839 280 1843 276 1845 274 807 272 1842 277
-POWER RAW F:38000 DC:33 881 909 1750 928 875 927 876 921 872 929 874 927 876 918 875 930 873 1815 874 924 1745 937 876 88694 880 922 1747 933 880 914 879 926 877 922 871 927 876 927 876 920 873 1818 871 929 1740 934 879
-POWER RAW F:38000 DC:33 509 1717 504 629 512 631 510 627 504 633 508 633 508 1713 508 1719 512 1713 508 625 505 637 504 633 508 629 512 629 512 623 508 1719 512 626 505 628 513 631 510 627 514 623 507 632 509 1713 508 632 509 1716 505 1715 506 1724 507 1716 505 1719 512 1715 506
-POWER RAW F:38000 DC:33 506 493 505 4059 505 5051 501 506 502 4065 499 511 497 4063 501 5058 504 504 504 4060 504 5052 500 507 501 4066 498 5056 506 5042 500 515 503 119614 504 505 503 4065 499 5051 501 511 497 4069 505 499 499 4072 502 5050 502 506 502 4066 498 5053 499 512 506 4060 504 5044 498 5061 501 508 500
-POWER RAW F:38000 DC:33 8887 4470 532 1738 513 1708 533 1708 533 577 533 576 534 569 531 582 538 1705 536 571 539 1707 534 571 539 571 539 570 540 1699 532 581 539 568 532 575 535 576 534 571 539 571 539 569 541 1698 533 1717 534 1708 533 1710 531 1716 535 1706 535 1711 540 1705 536 567 533 580 540 567 533 39042 8915 2231 530 94849 8917 2256 535
-POWER RAW F:38000 DC:33 8313 4161 515 1574 514 1571 507 569 510 562 507 563 506 562 507 568 511 562 507 1580 508 1577 511 1582 506 567 513 1575 513 554 505 571 509 564 505 22604 513 1573 505 1589 509 563 506 564 505 562 507 569 511 562 507 563 506 1579 509 1584 514 1576 512 558 511 1574 514 562 507 565 515 556 513 22593 514 1581 507 1583 505 564 505 563 506 570 510 563 506 564 505 562 507 1586 512 1578 510 1577 511 557 512 1581 507 566 514 556 513 555 514
-POWER RAW F:38000 DC:33 8735 4383 558 573 557 550 560 568 562 544 566 1722 560 540 560 1732 560 544 566 1719 563 1701 560 1723 559 1704 557 574 556 1699 562 574 556 1703 559 1727 565 1698 563 1721 561 546 564 1723 559 541 559 577 564 541 559 571 560 548 562 565 566 1697 565 567 564 1693 558 1733 559 1701 560 39926 8754 2247 565 92341 8758 2243 589
-POWER RAW F:38000 DC:33 3298 3336 821 2506 825 881 820 2505 826 2529 823 856 825 2524 817 866 825 2528 813 2513 818 888 813 862 819 887 814 865 826 2522 820 864 827 2526 815 861 820 887 814 2510 821 885 816 863 818 2531 821 2512 819 2559 793 32401 3298 3349 818 2507 824 882 819 2509 822 2527 814 868 823 2530 821 855 826 2531 821 2504 827 879 822 857 824 875 816 867 824 2529 823 854 827 2530 821 853 817 889 822 2506 825 873 818 866 825 2527 814 2513 818 2564 788
-POWER RAW F:38000 DC:33 8840 4439 532 566 534 566 534 1668 532 1674 536 1669 531 562 538 566 534 563 537 1667 533 567 533 563 537 563 537 562 538 1662 538 1671 529 568 532 565 535 566 534 1668 532 1674 536 1669 531 562 538 1672 528 1675 536 1668 532 1675 535 559 531 1676 534 565 535 558 532 1678 532 565 535 562 538 563 537 1665 535 565 535 1670 530 1669 531 572 538 1666 534 1669 531 1676 534 22777 8858 4447 535 92577 8858 4413 538
-POWER RAW F:38000 DC:33 289 2112 261 2109 295 2101 262 918 294 912 259 915 297 2098 265 916 296 909 262 2107 297 905 266 913 289 918 263 910 292 909 262 918 294 24789 263 2106 298 2098 265 2110 294 913 258 916 296 905 266 2108 296 911 260 914 288 2107 266 914 298 908 263 911 291 910 261 919 293 913 258
-POWER RAW F:38000 DC:33 8898 4453 569 578 573 577 574 571 570 1745 567 1747 565 1743 569 583 568 579 572 1740 572 1744 568 1742 570 579 572 576 575 568 573 1746 566 1746 566 580 571 1745 567 577 574 576 575 1739 573 569 572 581 570 577 574 1738 574 576 575 1735 567 1748 574 574 567 1742 570 1748 574 1737 575 41005 8876 2261 571 93850 8898 2264 568
-POWER RAW F:38000 DC:33 3215 1637 410 430 405 439 406 1242 408 435 410 1242 408 428 407 440 405 435 410 1240 410 1243 407 431 404 440 405 437 408 1238 402 1254 406 434 401 439 406 438 407 431 404 440 405 437 408 428 407 439 406 434 401 439 406 438 407 1241 409 434 401 441 404 432 403 444 401 1249 401 439 406 438 407 1241 409 434 401 441 404 433 402 444 401 1249 401 439 406 1248 402 436 409 434 401 441 404 433 402 444 401 439 406 45471 3239 1614 403 435 400 444 401 1250 400 437 408 1248 402 438 407 433 402 442 403 1245 405 1248 423 420 405 431 404 443 402 1248 402 1248 422 421 404 435 400 443 402 440 405 431 404 443 402 438 407 433 402 442 403 435 400 443 402 1250 400 436 399 447 408 432 403 438 407 1246 404 434 401 443 402 1250 400 436 399 447 408 432 403 437 408 1246 404 434 401 1253 407 434 401 436 399 447 408 432 403 437 408 436 399
-POWER RAW F:38000 DC:33 7928 3948 504 515 503 518 500 1583 505 516 502 1584 504 510 508 516 502 516 502 3952 510 1579 509 507 501 1587 501 519 510 1571 507 518 500 517 501 517 501 23073 7931 3943 509 514 504 515 503 1578 500 524 505 1580 508 510 508 514 504 511 507 3951 511 1576 502 513 505 1586 502 515 503 1582 506 515 503 513 505 516 502
-POWER RAW F:38000 DC:33 8837 4464 538 610 531 619 532 613 538 1748 534 1750 532 611 540 613 538 609 532 615 536 614 537 608 533 1753 539 1745 537 606 535 618 533 614 537 609 532 619 532 613 538 611 540 609 532 611 540 1748 534 1749 533 1750 532 1754 538 1743 539 1747 535 1750 532 1747 535 618 533 613 538 44105 8864 2224 537 93399 8912 2202 538
-POWER RAW F:38000 DC:33 492 4975 496 4993 498 498 500 4056 498 504 494 4055 499 4963 497 532 496 4031 492 4996 495 502 496 4060 494 4972 499 4990 491 506 492 4063 491 511 497 4052 492 4970 490 539 500 4027 496 103358 500 4961 500 4995 496 505 493 4056 498 499 499 4057 497 4969 491 533 496 4026 497 4997 494 508 490 4059 495 4967 494 5001 490 511 497 4053 491 505 493 4063 491 4975 496 528 490 4032 491
-POWER RAW F:38000 DC:33 2357 610 1183 592 1191 614 1179 595 1188 618 584 613 1180 593 588 613 1190 612 590 605 587 613 589 605 587 25398 2355 623 1180 591 1181 627 1186 589 1183 618 584 616 1187 587 584 614 1189 615 587 605 587 615 587 609 593
-POWER RAW F:38000 DC:33 3425 3482 848 2607 846 2639 845 2608 846 2639 845 2612 852 2624 850 2613 851 911 851 885 847 919 843 891 851 915 847 890 852 907 845 897 845 917 845 891 851 915 847 887 845 2639 845 2612 852 2625 849 2613 851 2630 844 34282 3455 3478 852 2601 852 2633 851 2605 848 2629 845 2617 847 2633 851 2604 849 917 845 890 852 913 849 889 843 915 847 896 846 916 846 890 852 914 848 885 847 919 843 895 847 2630 844 2617 847 2634 850 2605 848 2636 848
-POWER RAW F:38000 DC:33 500 500 498 4066 498 5058 504 502 506 4061 503 508 500 4060 504 5055 497 5055 497 511 497 4071 503 5047 505 507 501 4065 499 5049 503 512 496 124314 501 508 500 4067 507 5043 499 513 505 4060 504 501 497 4073 501 5052 500 5052 500 512 496 4066 498 5058 504 506 502 4058 506 5053 499 509 499
-POWER RAW F:38000 DC:33 176 7763 174 8817 169 10842 544 1955 541 967 540 1952 544 959 538 972 546 962 545 1947 538 1952 544 967 540 1955 541 964 543 1947 539 972 546 1949 547 7873 170 7746 170 10350 175 11811 543 960 537 1961 535 972 535 970 537 965 542 1956 540 1956 540 965 542 1947 539 973 534 1960 536 969 538 1952 534
-POWER RAW F:38000 DC:33 2570 2682 1189 1208 1186 2665 1186 1217 1187 2668 1183 1215 1179 2671 1190 2695 1186 1187 1187 2692 1179 2671 1190 1213 1181 1193 1191 1207 1187 2663 1188 1215 1179 2676 1185 46941 2563 2685 1186 1191 1183 2698 1184 1188 1186 2691 1180 1197 1187 2694 1187 2666 1185 1210 1184 2674 1187 2695 1186 1185 1189 1206 1188 1189 1185 2696 1186 1186 1187 2689 1182
-POWER RAW F:38000 DC:33 873 916 1773 906 877 925 878 919 874 928 875 925 878 1806 1770 914 879 1809 870 928 1772 88684 870 926 1774 908 875 926 877 917 876 929 874 925 878 1809 1777 905 877 1808 871 930 1770
-POWER RAW F:38000 DC:33 874 906 877 912 1767 904 879 908 874 918 875 915 878 907 875 920 873 1795 874 914 1775 897 875 88704 879 914 868 922 1767 897 875 919 874 915 878 911 872 920 873 914 879 1792 877 914 1775 889 873
-POWER RAW F:38000 DC:33 3325 1560 406 444 401 453 402 1226 404 449 406 1226 404 443 402 454 401 449 406 1224 406 1228 402 446 409 444 401 451 404 1223 407 1230 410 440 405 445 410 443 402 446 409 444 401 451 404 442 403 453 402 448 407 443 402 451 404 1224 406 448 407 444 401 445 410 446 409 1221 409 442 403 1231 409 439 406 1227 403 450 405 441 404 452 403 1227 403 448 407 446 409 439 406 447 408 444 401 445 400 456 410 440 405 52348 3320 1553 403 445 400 454 401 1230 400 447 408 1228 402 449 406 444 401 452 403 1225 405 1229 431 421 404 442 403 454 401 1229 401 1229 431 423 402 446 399 455 400 451 404 442 403 453 402 448 407 443 402 451 404 444 401 452 403 1229 401 445 400 457 398 451 404 446 399 1235 405 443 402 1232 408 444 401 1225 405 452 403 447 398 452 403 1231 399 449 406 447 408 443 402 444 401 456 399 450 405 445 400 453 402
-POWER RAW F:38000 DC:33 990 915 980 909 986 924 981 2829 981 934 981 2823 987 923 982 2828 982 933 982 906 989 33895 989 907 988 927 988 900 985 2841 979 915 980 2851 980 909 986 2840 980 914 981 934 981
-POWER RAW F:38000 DC:33 821 5754 848 2490 841 2492 819 2524 817 5726 845 2492 839 5727 844 5757 845 5727 854 2483 848
-POWER RAW F:38000 DC:33 5092 1621 406 2599 406 2598 407 2605 1653 1616 411 2619 1609 1606 1654 1618 409 2623 382 2600 405
-POWER RAW F:38000 DC:33 8879 4446 566 1747 565 584 567 1744 568 581 570 1744 568 574 567 586 565 582 569 578 563 1753 570 575 566 1749 563 585 566 1743 569 1749 563 1748 564 582 569 1747 565 580 571 578 573 1741 571 572 569 584 567 580 571 1741 571 578 573 1738 564 1751 572 577 564 1744 568 1750 572 1740 572 41007 8906 2257 565 93855 8872 2265 567
-POWER RAW F:38000 DC:33 1144 1010 6795 26754 1151 997 6798
-POWER RAW F:38000 DC:33 1144 1009 1120 1006 1143 1991 1116 26758 1146 1006 1123 1003 1146 1988 1119
-POWER RAW F:38000 DC:33 170 46238 169
-POWER RAW F:38000 DC:33 8906 4165 572 1672 569 1678 563 640 572 637 565 643 569 633 569 643 569 1674 567 639 563 1684 567 637 565 1681 570 1675 566 1673 568 1681 570 636 566 640 572 637 565 639 563 1684 567 640 572 630 572 640 572 634 568 1675 566 1681 570 1670 571 638 564 1681 570 1669 572 1678 563 1680 571 40485 8898 2252 570 85621 8955 2194 567
-POWER RAW F:38000 DC:33 446 1191 449 1194 446 1195 445 1204 446 1200 1316 459 447 1193 447 1202 448 1197 443 1201 449 1191 449 34491 443 1204 446 1197 443 1198 442 1207 443 1202 1314 436 440 1201 449 1199 441 1205 445 1198 442 1199 441
-POWER RAW F:38000 DC:33 4268 4327 522 1593 516 1603 516 1597 522 519 520 520 519 515 514 531 518 520 519 519 520 521 518 519 520 1597 522 1595 514 1597 522 1599 520 1595 514 524 515 1604 515 521 518 523 516 524 515 519 520 525 514 524 515 1599 520 522 517 1596 513 1605 514 1602 517 1595 514 1607 522 1592 516 40481 8748 2187 523 93986 8721 2189 521
-POWER RAW F:38000 DC:33 247 3006 244 153 178 1007 251 117 637 597 381 678 218 156 175 529 382 679 217 157 174 24963 247 3038 252 117 219 994 249 119 217 483 250 117 173 531 278 779 173 167 169 569 383 679 217 156 175 126538 246 3039 251 118 218 995 247 120 195 504 249 118 172 532 277 780 172 168 178 560 382 680 216 157 174
-POWER RAW F:38000 DC:33 8872 4454 568 579 572 578 573 572 569 581 570 1744 568 575 566 587 564 582 569 1743 569 1747 565 1745 567 1748 564 584 567 1741 571 1747 565 1747 565 1747 565 1751 571 1739 563 1752 570 578 563 1745 567 1751 572 1741 571 575 566 585 566 578 573 577 564 1750 573 571 570 583 568 579 572 41007 8905 2258 574 93846 8871 2266 566
-POWER RAW F:38000 DC:33 4278 4318 521 517 522 520 519 517 522 520 519 521 518 516 513 531 518 520 519 1595 514 1605 514 1599 520 1598 521 1595 513 1598 521 1600 519 1596 513 1602 517 1601 518 1595 514 1604 515 525 514 520 519 526 513 525 514 524 515 527 522 513 516 526 513 1603 516 1595 514 1607 522 1593 516 40481 8749 2186 524 93985 8722 2189 521
-POWER RAW F:38000 DC:33 2746 8423 2744 19607 2746 19601 2742 8431 2745 8424 2742 19608 2745 8419 2747 19608 2745 19607 2746 8422 2744
-POWER RAW F:38000 DC:33 170 6683 174 4889 175 10382 372 849 821 2498 176 10378 264 2479 842 2492 839 2475 846 2483 838 2481 840 2495 836 2477 844 845 846 37009 172 6681 176 4888 175 10381 373 848 924 2395 844 2490 174 10383 248 2492 172 10386 245 2495 169
-POWER RAW F:38000 DC:33 8898 4453 569 578 573 577 574 1737 565 584 567 582 569 574 567 1751 572 1741 571 1741 571 1744 568 576 575 1741 571 1743 569 1739 573 579 572 575 566 581 570 580 571 574 567 1748 575 1739 573 570 571 582 569 578 573 1739 573 1742 570 1740 572 577 574 575 566 1742 570 1749 574 1738 574 41006 8875 2262 570 93850 8907 2256 566
-POWER RAW F:38000 DC:33 8872 4454 568 1745 567 1749 563 1746 566 584 567 1747 565 1743 569 583 568 579 572 575 566 584 567 578 563 1752 571 578 563 580 571 1747 565 1747 565 581 570 1746 566 578 573 577 564 1751 572 571 570 583 568 579 572 1740 572 578 563 1747 565 1750 573 576 565 1743 569 1749 563 1749 563 41017 8906 2257 565 93855 8872 2265 567
-POWER RAW F:38000 DC:33 179 2644 178 8174 170 2646 176 8181 173 2648 174 8177 177 2640 172 5419 174 5413 170 2649 173 2644 178 2646 176 2646 176 5409 174 28831 174 2651 171 8183 171 2648 174 8174 170 2655 177 8177 177 2642 170 5412 171 5420 173 2649 173 2646 176 2640 172 2653 169 5419 174
-POWER RAW F:38000 DC:33 174 2648 174 8178 176 2640 171 8185 169 2653 169 8182 172 2645 177 2647 557 2264 558 5027 174 5410 173 5418 175 5413 170 28837 168 2649 173 8184 170 2652 170 8181 173 2643 169 8188 176 2646 176 2643 168 2648 174 5417 176 5411 172 5413 170 5413 170
-POWER RAW F:38000 DC:33 178 706 266 139 268 137 173 173 198 234 178 126768 175 299 169 86 275 130 267 138 172 230 177
-POWER RAW F:38000 DC:33 554 1922 584 3809 582 3782 578 3821 580 1920 555 1941 544 1922 574
-POWER RAW F:38000 DC:33 476 1470 465 3479 474 3469 474 3477 475 1467 468 1471 474 27473 472 1474 472 3475 467 3478 475 3468 474 1471 475 1468 467
-POWER RAW F:38000 DC:33 301 2188 236 2169 235 2205 230 1009 234 1070 183 1064 179 2198 206 1046 207 1069 173 2207 207 1042 211 1062 201 1043 210 1032 231 1005 237 1039 234 1006 236
-POWER RAW F:38000 DC:33 8872 4453 570 1744 568 582 569 1741 571 1744 568 580 571 1738 564 1754 569 578 563 584 567 1749 563 581 570 580 571 1743 569 573 568 585 566 1746 566 580 571 580 571 1739 563 586 565 1749 563 579 572 582 569 577 564 1748 564 1752 571 574 567 1748 564 584 567 1742 570 1748 564 1747 565 41015 8898 2265 567 93853 8875 2262 570
-POWER RAW F:38000 DC:33 8904 4446 576 572 569 581 570 575 566 584 567 582 569 1739 573 579 572 575 566 1746 566 1750 572 1738 574 1741 571 1742 570 573 568 1750 572 1740 572 1740 572 578 573 572 569 581 570 1744 568 574 567 586 575 572 569 578 573 1742 570 1740 572 1743 569 579 572 1737 565 1753 570 1743 569 41010 8881 2257 565 93855 8903 2259 573
-POWER RAW F:38000 DC:33 8878 4448 564 584 567 583 568 577 564 586 565 584 567 1741 571 582 569 1743 569 1743 569 1746 566 1744 568 1747 565 1749 563 579 572 1747 565 581 570 1743 569 1746 566 578 573 1743 569 579 572 571 570 583 568 579 572 575 566 584 567 1743 569 581 570 1744 568 1740 572 1746 566 1746 566 41013 8898 2264 568 93853 8872 2265 567
-POWER RAW F:38000 DC:33 8900 4450 572 575 566 585 566 578 573 1743 569 579 572 1736 566 587 574 572 569 1743 569 1747 565 1745 567 582 569 1745 567 575 566 1753 570 1742 570 1742 570 1746 566 578 573 1742 570 578 573 570 571 582 569 578 573 574 567 583 568 1742 570 579 572 1742 570 1738 574 1744 568 1744 568 41012 8871 2266 566 93855 8903 2258 574
-POWER RAW F:38000 DC:33 8872 4454 568 1745 567 1749 563 1747 565 1750 562 1752 571 1737 565 1754 568 1743 569 578 563 587 564 581 570 580 571 577 564 579 572 581 570 576 565 1748 564 1751 572 1739 563 1752 571 1743 569 1739 563 590 571 575 566 581 570 580 571 574 567 583 568 580 571 572 569 1750 562 1749 563 41017 8905 2257 575 93846 8871 2266 566
-POWER RAW F:38000 DC:33 176 7764 173 11361 544 1951 545 1948 176 8815 171 2319 177 2322 174 2321 175 2318 178 2313 173 18281 170 7746 170 11369 536 1954 542 1957 539 969 538 1954 542 1949 536 1962 534 1960 174 2320 176 2315 170 2328 178 2317 168
-POWER RAW F:38000 DC:33 172 23035 176 2267 178 2285 170 2270 175 2288 177 11602 222 2218 216 2246 173 183 173 935 221 218 174 864 221 1250 171 1310 223 2219 216 2247 218 1244 223 216 176 869 170 1296 217 2239 216 1254 223 216 176 866 219 9127 169 7642 173 2284 171 2273 172 2290 175 2263 171 10143 178 10623 222 1245 222 217 175 1843 220 2226 219 1264 223 1237 174 183 178 952 219 2222 223 216 176 866 219 1249 172 9190 173 7637 178 2266 169 2286 169 2280 175 2284 171 10125 175 10622 224 215 177 868 216 2228 217 2238 171 1299 224 215 177 865 174 183 173 934 222 216 176 1848 215 1247 220 1265 222 762 170
-POWER RAW F:38000 DC:33 7410 1482 382 2742 375 2747 380 2751 1630 1535 400 2724 1657 1529 1629 1538 407 2720 407 2716 401 2722 4125 1549 376 2751 376 2748 379 2744 1626 1541 405 2723 1658 1530 1628 1531 404 2726 401 2726 401 2723 4124 1542 383 2747 380 2747 380 2745 1626 1534 401 2729 1652 1539 1629 1532 403 2719 408 2722 405
-POWER RAW F:38000 DC:33 4277 4319 520 518 521 521 518 518 521 1597 522 1594 515 1597 522 1599 520 1594 515 1600 519 1600 519 1594 515 526 513 527 522 512 517 528 521 517 522 516 513 1605 514 522 517 525 514 525 514 521 518 526 513 525 514 1600 519 523 516 1597 522 1596 513 1603 516 1595 514 1607 522 1593 516 40481 8749 2186 524 93986 8721 2188 522
-POWER RAW F:38000 DC:33 1325 431 445 1199 1317 455 441 1207 443 1202 1294 457 449 1190 440 1209 441 1205 445 1198 1318 454 442 93237 1320 434 442 1201 1325 448 448 1200 440 1205 1291 460 446 1193 447 1202 448 1198 442 1201 1325 447 449
-POWER RAW F:38000 DC:33 8876 4450 572 575 566 585 566 578 573 577 564 585 566 577 564 589 572 574 567 1745 567 1749 563 1747 565 1750 562 1751 571 1737 565 1754 569 1743 569 1743 569 1747 565 579 572 1743 569 579 572 571 570 583 568 579 572 575 566 584 567 1743 569 581 570 1744 568 1740 572 1746 566 1746 566 41013 8898 2265 567 93853 8873 2264 568
-POWER RAW F:38000 DC:33 300 1791 297 744 295 743 296 751 298 745 294 747 302 736 293 1837 271 745 294 747 302 1793 295 752 297 1802 296 1801 297 742 297 1806 302 31592 296 1801 297 742 297 749 300 744 295 745 294 745 294 752 297 1829 269 746 293 745 294 1809 300 744 295 1802 296 1799 299 748 301
-POWER RAW F:38000 DC:33 178 2003 177 2899 177 1996 174 2908 168 2910 177 2000 170 2004 176
-POWER RAW F:38000 DC:33 8898 4173 564 642 570 1677 564 1677 564 645 567 640 572 631 571 641 571 635 567 639 563 1683 568 1673 568 641 571 636 566 637 565 647 565 641 571 634 568 642 570 1671 570 639 563 1682 569 632 570 643 569 636 566 1677 564 1683 568 636 566 1680 571 636 566 1674 567 1682 569 1674 567 40489 8904 2246 566 85626 8902 2248 564
-POWER RAW F:38000 DC:33 8897 4454 569 578 573 1743 569 576 565 1750 572 576 575 1733 569 584 567 1745 567 1745 567 583 568 1742 570 579 572 1742 570 573 568 1750 573 574 567 580 571 580 571 573 568 582 569 580 571 572 569 584 567 1744 568 1744 568 1748 575 1735 567 1749 574 1740 572 1736 566 1752 571 576 575 41005 8878 2259 563 93858 8901 2260 572
-POWER RAW F:38000 DC:33 8880 4446 566 1747 565 585 566 578 573 577 564 1750 573 571 570 1748 564 582 569 578 573 1743 569 1741 571 1744 568 580 571 1737 565 588 563 1749 563 583 568 582 569 576 565 1750 573 576 565 578 573 580 571 576 565 1747 565 1751 571 1738 564 586 565 1749 563 1745 567 1751 572 1741 571 41008 8905 2258 574 93846 8871 2266 566
-POWER RAW F:38000 DC:33 3892 3856 525 978 529 977 530 969 528 977 530 974 523 975 532 1924 531 971 526 1924 531 975 532 1916 529 976 531 1921 524 1947 508 1925 530 1920 525 1926 529 1925 530 970 527 1927 528 976 531 1915 530 978 529 1921 1033 9201 3871 3867 524 977 530 975 522 981 526 972 525 983 524 978 529 1921 524 982 525 1923 532 973 524 1928 527 971 526 1931 524 1950 505 1922 523 1931 524 1924 531 1923 532 972 525 1922 523 985 533 1918 527 975 532 1922 1032
-POWER RAW F:38000 DC:33 8900 4451 571 576 575 1742 570 1739 573 1742 570 578 573 1736 566 1752 570 576 575 1737 575 575 566 579 572 578 573 1741 571 571 570 583 568 1745 567 579 572 578 573 1738 574 575 566 1748 575 568 573 581 570 576 575 1737 565 1751 572 573 568 1747 576 573 568 1741 571 1747 565 1747 565 41014 8878 2260 562 93858 8901 2261 571
-POWER RAW F:38000 DC:33 875 904 1745 924 879 913 880 1786 873 919 874 917 1742 922 871 1802 877 912 1747 921 872 88714 880 907 1742 930 873 917 876 1788 871 924 879 910 1749 919 874 1798 871 916 1743 928 875
-POWER RAW F:38000 DC:33 4758 1543 403 2731 407 2726 402 2739 1601 1514 401 2760 1580 1530 1577 1540 406 2758 400 2708 1602 1535 400 2740 408 2729 409 2726 401 2731 1599 1520 405 2758 1572 1540 1578 1532 403 2737 431 2706 1604 1535 411 2722 405 2734 403 2734 404 2731 1599 1512 403 2764 1576 1539 1578 1533 402 2730 428 2712 1608 1534 402
-POWER RAW F:38000 DC:33 8873 4453 570 578 563 1753 570 575 566 1749 563 585 566 1742 570 583 568 1744 568 1744 568 582 569 1741 571 578 573 1741 571 572 569 1749 563 583 568 1745 567 1748 564 1746 566 583 568 581 570 1738 564 589 572 1740 572 574 567 584 567 577 564 1752 571 1743 569 573 568 1751 572 575 566 41014 8900 2263 569 93851 8878 2259 563
-POWER RAW F:38000 DC:33 171 313 176 798 337 133 600 232 170 126777 176 65 169 496 176 200 609
-POWER RAW F:38000 DC:33 500 527 491 4033 500 4986 495 510 498 4054 500 499 499 4048 496 4974 497 530 499 4026 497 4989 492 513 495 4057 497 4967 493 4992 499 506 492 4060 494 505 493 4054 500 98563 497 529 500 4025 498 4988 493 512 496 4056 498 501 497 4050 493 4976 495 532 497 4028 495 4991 500 505 493 4059 495 4969 491 4994 497 508 490 4062 492 507 491 4056 498
-POWER RAW F:38000 DC:33 879 901 871 1796 1770 903 869 917 876 916 877 913 880 906 877 918 875 914 879 1788 1768 1784 875 87826 871 921 872 1797 1769 897 875 919 874 915 878 910 873 920 873 914 879 913 870 1800 1776 1767 871
-POWER RAW F:38000 DC:33 874 905 1774 894 878 914 879 908 875 917 876 915 878 907 876 919 874 1793 876 913 1777 895 878 88703 872 920 1769 901 872 913 870 925 878 910 873 916 877 916 877 910 873 1798 871 919 1770 894 878
-POWER RAW F:38000 DC:33 3339 1714 415 445 420 1283 418 440 415 448 418 444 422 435 420 446 420 440 415 445 421 443 412 445 421 443 412 449 416 1279 412 455 421 439 416 443 412 452 414 444 411 452 414 1287 414 442 413 453 413 1287 414 446 419 444 422 437 418 445 421 441 414 442 413 452 414 447 419 1281 420 443 412 1285 416 1287 414 1287 414 1282 419 447 419 441 414 1286 415 448 418 1280 421 1282 419 443 412 1283 418 448 418 1283 418 73871 3336 1694 414 444 411 1291 410 452 414 442 413 453 413 448 418 442 413 450 416 443 412 450 416 447 419 437 418 448 418 1282 419 441 414 449 417 442 413 449 417 446 420 436 419 1287 414 446 420 440 415 1288 413 445 410 453 413 449 417 439 416 450 416 445 421 439 416 447 419 1279 412 451 415 1287 414 1282 419 1287 414 1285 416 444 411 453 413 1285 416 447 419 1283 418 1278 413 453 413 1287 414 446 419 1284 417
-POWER RAW F:38000 DC:33 4411 4332 558 1660 561 596 565 612 559 597 564 617 565 585 566 620 561 591 560 620 561 595 566 611 560 597 564 1653 558 592 559 627 565 589 562 617 564 1630 560 617 564 592 559 22591 4439 4322 558 1639 561 618 563 590 561 622 560 592 559 624 557 597 564 612 559 600 561 618 563 590 561 622 559 1628 562 621 561 594 567 609 562 597 564 1652 559 595 566 617 564
-POWER RAW F:38000 DC:33 3444 1767 413 487 419 1274 417 481 415 1277 414 488 418 1267 414 492 414 1276 415 484 412 1282 419 478 418 1275 416 1276 415 480 416 1280 421 479 417 1272 419 1275 416 1272 419 1274 417 484 412 484 412 493 413 1277 414 485 421 1273 418 479 417 486 420 1271 420 476 420 486 420 479 417 482 414 1280 411 1276 415 488 418 1273 418 478 418 488 418 481 415 1275 416 487 419 478 418 485 411 1280 421 475 421 1275 416 1273 418 69071 3439 1759 441 456 440 1253 438 463 443 1243 438 468 438 1251 440 460 446 1247 444 454 442 1251 440 461 445 1241 440 1256 445 455 441 1248 443 461 445 1242 439 1254 447 1245 446 1240 441 465 441 458 438 462 444 1249 442 456 440 1252 439 463 443 452 444 1252 439 461 445 454 442 461 445 452 444 1249 442 1250 441 454 442 1254 437 463 443 456 440 463 443 1245 446 456 440 462 444 451 445 1251 440 460 436 1253 438 1256 445
-POWER RAW F:38000 DC:33 8705 4317 583 682 581 688 585 678 585 1721 581 1722 580 681 582 690 583 682 581 1721 581 1725 587 1713 579 689 584 683 580 1718 584 1724 588 1714 588 677 586 683 580 683 580 1726 586 680 583 678 585 687 586 679 584 1718 584 1721 581 1719 583 685 588 1716 586 1713 579 1729 583 1719 583 41145 8706 2217 585 94686 8705 2217 584
-POWER RAW F:38000 DC:33 8888 4470 532 576 534 576 534 571 539 572 538 1706 535 568 532 581 529 578 532 1711 530 581 529 1711 530 1717 534 574 536 1703 538 575 535 572 538 1705 536 1711 530 1711 530 1716 535 1709 532 571 529 585 535 571 529 579 531 579 531 574 536 574 536 573 537 1701 530 1720 531 1712 529 39045 8912 2261 540 94838 8911 2235 536
-POWER RAW F:38000 DC:33 874 915 1774 904 879 923 870 1816 1770 1800 1776 904 879 1805 874 931 1769 909 874 88698 876 927 1773 904 879 922 871 1819 1767 1796 1770 914 879 1809 870 928 1772 910 873
-POWER RAW F:38000 DC:33 178 7753 174 2308 178 2284 171 2316 170 2298 177 10228 174 10724 223 1256 221 217 175 1868 169 2293 172 1327 216 1263 178 1316 217 2245 220 218 174 887 218 1261 170 10707 174 7752 175 2296 169 2314 171 2293 172 2307 179 10216 176 6265 174 10729 219 1258 219 1272 215 1268 173 2310 221 1255 222 217 175 877 172
-POWER RAW F:38000 DC:33 532 1692 559 561 529 574 567 559 531 566 564 555 535 1694 557 568 532 1691 560 560 530 573 557 568 532 565 565 555 535 567 563 1688 533 564 567 554 536 567 563 562 538 558 562 558 532 1697 565 561 539 1683 558 1689 532 1697 564 1687 534 1689 562 1684 537
-POWER RAW F:38000 DC:33 874 915 1774 904 879 923 870 927 876 1814 876 925 1775 900 872 1821 879 920 1769 909 874 88702 871 926 1774 907 876 925 878 917 876 1817 873 927 1773 905 878 1813 876 921 1769 912 871
-POWER RAW F:38000 DC:33 8884 4474 538 569 531 1716 535 570 530 580 530 1715 536 567 533 580 530 577 533 1710 531 1715 536 1705 536 1710 531 1714 537 1702 529 1720 531 1712 529 578 532 1715 536 1705 536 1710 531 577 533 570 530 584 536 571 529 1714 537 573 537 568 532 578 532 1713 538 1701 530 1719 532 1711 530 39044 8913 2260 531 94848 8907 2239 532
-POWER RAW F:38000 DC:33 446 1694 455 1706 453 1705 424 628 452 597 452 622 458 1673 456 625 455 594 455 1706 454 590 459 621 459 591 458 616 453 591 458 622 539 22750 459 1675 454 1733 427 1712 427 622 458 588 451 622 458 1681 458 618 451 595 454 1705 455 598 451 625 454 592 457 616 453 598 451 626 535
-POWER RAW F:38000 DC:33 3429 3445 875 2555 868 875 867 871 871 2560 873 868 874 2551 872 874 868 871 871 869 873 870 872 865 867 2565 868 873 869 2556 867 2567 866 874 868 2560 873 870 872 2555 868 2564 869 2586 847 2577 846 2589 844 870 872 32983 3470 3430 869 2559 874 868 874 867 875 2550 873 873 869 2559 874 865 867 877 875 862 870 873 869 872 870 2555 868 877 875 2554 869 2559 874 869 873 2554 869 873 869 2562 871 2553 870 2590 843 2586 847 2581 842 876 866
-POWER RAW F:38000 DC:33 8873 4452 571 1743 569 580 571 574 567 583 568 1746 566 1742 570 1748 564 582 569 578 563 1753 570 1740 572 1743 569 579 572 571 570 583 568 1744 568 579 572 578 573 572 569 1746 566 582 569 574 567 586 565 582 569 1743 569 1746 566 1744 568 581 570 1745 567 1741 571 1747 565 1746 566 41014 8898 2264 568 93853 8874 2263 569
-POWER RAW F:38000 DC:33 8902 4448 574 1739 573 1742 570 575 566 584 567 581 570 573 568 585 566 1746 566 580 571 580 571 1739 573 1742 570 1743 569 1739 573 1745 567 579 572 1741 571 1744 568 1742 570 1745 567 1747 565 1743 569 1749 573 1739 573 573 568 583 568 576 575 575 566 583 568 575 566 587 574 572 569 41011 8871 2266 566 93854 8902 2260 572
-POWER RAW F:38000 DC:33 4275 4320 519 520 519 523 516 520 519 1599 520 520 519 515 524 521 518 520 519 1595 524 1595 524 1588 520 521 518 1599 520 1591 517 1603 516 1599 520 1595 524 1594 525 1588 521 1597 522 518 521 513 526 519 520 518 521 517 522 520 519 517 522 519 520 1597 522 1589 519 1601 518 1597 522 40475 8724 2186 514 93995 8752 2183 516
-POWER RAW F:38000 DC:33 10380 4892 599 620 592 605 597 620 592 604 598 623 589 2081 598 627 595 2080 599 2101 598 2105 574 2099 590 2088 591 2111 599 591 590 2116 594 599 593 626 596 2082 597 619 593 2086 593 626 596 594 598 627 595 598 594 2106 593 604 598 2100 589 607 595 2107 593 2079 590 2116 594 2082 750 41149 8722 2109 590 94682 8727 2104 596
-POWER RAW F:38000 DC:33 8879 4446 566 1747 565 1751 571 573 568 582 569 580 571 571 570 584 567 1744 568 579 572 578 573 1737 565 1751 572 1742 570 1738 564 1754 568 578 573 574 567 584 567 577 564 1752 571 577 564 580 571 582 569 577 564 1748 564 1752 571 1739 563 587 564 1750 572 1736 566 1752 571 1742 570 41009 8903 2260 572 93848 8880 2257 565
-POWER RAW F:38000 DC:33 4271 4324 515 1600 519 1600 519 1594 515 1603 516 1601 518 1593 516 1605 514 1601 518 520 519 522 517 520 519 522 517 523 516 518 521 523 516 522 517 1598 521 1597 522 1591 518 1600 519 521 518 516 523 522 517 521 518 520 519 523 516 520 519 522 517 1599 520 1591 518 1603 516 1599 520 40477 8753 2183 516 93993 8724 2185 515
-POWER RAW F:38000 DC:33 7847 3931 470 1448 467 495 472 1443 472 490 467 1451 464 491 466 499 468 491 466 4413 467 1455 470 486 471 1449 466 495 472 1441 464 501 466 492 465 494 463 22093 7851 3934 467 1454 471 490 467 1446 469 496 471 1446 469 489 468 494 473 484 473 4410 470 1449 466 489 468 1455 470 489 468 1449 466 496 471 486 471 490 467
+Filetype: IR signals file
+Version: 1
+#
+name: POWER
+type: parsed
+protocol: SIRC
+address: 01 00 00 00
+command: 15 00 00 00
+#
+name: POWER
+type: parsed
+protocol: SIRC
+address: 10 00 00 00
+command: 15 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: 08 00 00 00
+command: 05 00 00 00
+#
+name: VOL+
+type: parsed
+protocol: NEC
+address: 08 00 00 00
+command: 00 00 00 00
+#
+name: VOL-
+type: parsed
+protocol: NEC
+address: 08 00 00 00
+command: 01 00 00 00
+#
+name: CH+
+type: parsed
+protocol: NEC
+address: 08 00 00 00
+command: 02 00 00 00
+#
+name: CH-
+type: parsed
+protocol: NEC
+address: 08 00 00 00
+command: 03 00 00 00
+#
+name: MUTE
+type: parsed
+protocol: NEC
+address: 08 00 00 00
+command: 0b 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NECext
+address: 00 df 00 00
+command: 1c 00 00 00
+#
+name: VOL+
+type: parsed
+protocol: NECext
+address: 00 df 00 00
+command: 4b 00 00 00
+#
+name: VOL-
+type: parsed
+protocol: NECext
+address: 00 df 00 00
+command: 4f 00 00 00
+#
+name: CH+
+type: parsed
+protocol: NECext
+address: 00 df 00 00
+command: 09 00 00 00
+#
+name: CH-
+type: parsed
+protocol: NECext
+address: 00 df 00 00
+command: 05 00 00 00
+#
+name: MUTE
+type: parsed
+protocol: NECext
+address: 00 df 00 00
+command: 08 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: 0e 00 00 00
+command: 0c 00 00 00
+#
+name: MUTE
+type: parsed
+protocol: NEC
+address: 0e 00 00 00
+command: 0d 00 00 00
+#
+name: VOL+
+type: parsed
+protocol: NEC
+address: 0e 00 00 00
+command: 14 00 00 00
+#
+name: VOL-
+type: parsed
+protocol: NEC
+address: 0e 00 00 00
+command: 15 00 00 00
+#
+name: CH+
+type: parsed
+protocol: NEC
+address: 0e 00 00 00
+command: 12 00 00 00
+#
+name: CH-
+type: parsed
+protocol: NEC
+address: 0e 00 00 00
+command: 13 00 00 00
+#
+name: POWER
+type: parsed
+protocol: RC6
+address: 00 00 00 00
+command: 0c 00 00 00
+#
+name: POWER
+type: parsed
+protocol: Samsung32
+address: 07 00 00 00
+command: 02 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: 50 00 00 00
+command: 17 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: 40 00 00 00
+command: 12 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NECext
+address: 31 49 00 00
+command: 63 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: aa 00 00 00
+command: 1c 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: 38 00 00 00
+command: 1c 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NECext
+address: 83 7a 00 00
+command: 08 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: 53 00 00 00
+command: 17 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NECext
+address: 18 18 00 00
+command: c0 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: 38 00 00 00
+command: 10 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: aa 00 00 00
+command: c5 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: 04 00 00 00
+command: 08 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: 18 00 00 00
+command: 08 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: 71 00 00 00
+command: 08 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NECext
+address: 80 6f 00 00
+command: 0a 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: 48 00 00 00
+command: 00 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NECext
+address: 80 7b 00 00
+command: 13 00 00 00
+#
+name: POWER
+type: parsed
+protocol: Samsung32
+address: 0e 00 00 00
+command: 14 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NECext
+address: 80 7e 00 00
+command: 18 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: 50 00 00 00
+command: 08 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NECext
+address: 80 75 00 00
+command: 0a 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NECext
+address: 80 57 00 00
+command: 0a 00 00 00
+#
+name: POWER
+type: parsed
+protocol: Samsung32
+address: 0b 00 00 00
+command: 0a 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: aa 00 00 00
+command: 1b 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NECext
+address: 85 46 00 00
+command: 12 00 00 00
+#
+name: POWER
+type: parsed
+protocol: Samsung32
+address: 05 00 00 00
+command: 02 00 00 00
+#
+name: POWER
+type: parsed
+protocol: Samsung32
+address: 08 00 00 00
+command: 0f 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: 00 00 00 00
+command: 01 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: 00 00 00 00
+command: 01 00 00 00
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 634 2571 505 519 479 519 479 518 480 518 480 518 480 518 480 517 481 547 481 517 481 20040 590 2555 501 1007 999 997 510 548 480 486 512 486 512 486 542 485 513 516 482 116758 593 2552 504 1004 992 1004 514 514 514 483 515 513 485 483 545 482 516 482 516
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 525 1955 449 1999 476 4545 446 4544 478 2032 443 2006 469 2011 444 4577 445 4545 447 4574 448 2002 473 4547 444 34913 447 2032 443 2007 478 4542 449 4541 471 2039 446 2004 471 2008 447 4574 448 4543 448 4572 450 2030 445 4545 446
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 2445 582 1221 603 548 602 1191 609 572 602 1191 609 542 607 544 631 1172 603 568 606 545 605 566 608 543 26263 2414 611 1192 607 544 606 1197 602 569 606 1197 602 539 611 540 635 1168 606 565 610 541 608 563 587 564
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 3461 1802 439 452 444 1283 469 448 438 453 443 447 439 452 444 419 497 448 438 425 471 419 467 451 445 445 441 450 446 1281 471 420 466 425 471 446 440 424 472 445 461 456 440 451 445 445 441 450 446 1281 471 447 439 451 445 419 467 423 473 445 441 422 494 450 436 428 468 1259 493 425 471 1256 496 1259 472 1281 471 1285 467 423 473 417 469 1286 466 452 444 1283 469 1285 467 1261 491 1263 468 423 493 1260 471 74142 3578 1713 467 423 473 1281 471 420 466 452 444 419 467 424 472 418 488 429 467 451 445 445 441 450 446 444 442 449 437 1290 472 446 440 423 473 445 441 449 467 396 490 428 468 449 447 444 442 448 438 1289 473 445 441 450 446 444 442 449 437 426 470 421 495 422 464 426 470 1257 495 450 446 1254 488 1267 464 1290 472 1282 470 421 465 453 443 1284 468 450 446 1281 471 1283 469 1259 493 1261 470 448 468 1258 473
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 389 1737 280 796 253 744 295 754 274 775 274 776 273 1827 271 1828 270 805 254 1820 278 796 253 797 252 745 294 1806 302 773 245 48942 305 1821 277 798 251 746 303 747 271 778 271 1829 279 796 253 796 253 1821 277 798 251 1823 275 1824 274 1825 273 802 247 1827 271 42824 381 1745 272 804 245 752 297 753 275 773 276 774 275 1825 273 1826 272 803 246 1828 270 805 254 795 244 753 296 1804 294 781 247 48939 379 1746 271 804 245 779 270 753 275 774 275 1825 273 802 247 802 247 1827 271 804 245 1829 279 1820 278 1821 277 798 251 1823 275
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 562 1721 561 594 557 597 564 617 513 615 536 618 543 1715 566 1716 566 1692 559 594 567 588 563 618 543 611 540 615 536 618 543 1715 556 623 538 617 534 621 530 624 516 638 513 642 509 1722 560 620 541 1717 565 1692 559 1724 568 1715 556 1701 560 1723 559
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8436 4189 538 1563 566 1559 539 510 559 543 516 507 542 560 509 540 509 567 512 1586 512 1562 567 1559 539 536 533 1566 542 507 562 513 536 540 509 22102 647 1478 559 1568 540 508 541 535 534 515 534 568 511 538 511 539 540 1585 513 1560 559 1567 541 534 535 1564 534 515 534 568 511 538 511 22125 644 1482 565 1561 537 511 538 564 515 508 541 535 534 541 508 516 563 1588 510 1563 556 1570 538 510 559 1567 541 534 515 535 534 541 508
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 929 825 1711 934 797 930 791 909 822 932 789 938 793 934 797 930 791 1719 899 856 1711 907 824 90848 923 830 1706 912 819 908 823 931 790 910 822 933 788 912 819 935 796 1714 904 850 1707 939 792
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 448 2031 444 2005 480 4540 452 4539 473 2037 438 2011 474 2006 449 4571 451 4539 453 4568 444 2036 449 4541 451 34906 527 1953 451 1998 477 4543 449 4542 480 2030 445 2004 471 2009 446 4575 447 4543 449 4572 450 1999 476 4545 446
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 9021 4496 567 1664 567 1690 561 567 533 1698 563 1667 564 1693 568 1663 568 586 534 567 563 565 535 594 536 591 539 589 531 571 539 563 567 1690 541 560 560 594 536 592 538 564 536 1695 566 1664 567 1690 561 1670 561 1696 555 1675 566 562 558 596 514 562 568 559 561 594 536 565 535 593 537 591 539 1665 566 1692 559 1671 560 1697 564 1666 565 1666 565 1693 558 1672 569 23181 9013 4504 569 1689 542 1689 562 565 535 1697 564 1666 646 1610 560 1672 559 595 535 593 537 590 510 566 564 590 540 588 532 596 514 588 542 1689 542 560 560 594 536 592 538 590 510 1694 567 1664 567 1690 561 1669 562 1695 556 1675 566 561 559 596 514 588 542 585 535 593 537 591 509 593 537 591 539 1665 566 1692 559 1671 560 1697 564 1667 564 1667 564 1693 558 1672 569
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8041 3979 513 536 482 515 513 1559 509 515 514 1560 508 515 514 509 509 514 484 4000 533 1566 512 537 481 1566 512 537 481 1566 512 537 481 516 513 537 481 24150 8044 3977 505 518 510 539 479 1567 511 512 506 1568 510 539 479 543 485 538 480 3977 536 1564 514 534 484 1563 515 508 510 1563 515 508 510 540 489 534 484
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 383 2027 295 2112 271 2138 266 890 271 887 294 926 235 2114 300 887 274 915 236 2145 269 887 274 884 297 923 238 920 241 917 264 895 266 26573 384 2026 296 2111 273 2136 268 889 272 886 295 924 237 2113 301 886 275 914 237 2144 270 886 275 914 267 921 240 919 242 916 265 924 237
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 177 8474 175 5510 174 8476 173 8477 177 8504 171 5515 175 8476 178 8472 177 8473 176 5541 174 8476 173 45583 171 8481 178 5507 177 8473 176 8474 175 8506 173 5512 172 8478 176 8475 174 8476 178 5538 177 8474 175
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8044 3976 506 517 511 1563 505 517 511 538 480 517 511 538 460 563 455 568 460 3993 530 545 483 1564 514 1559 509 1564 514 509 509 540 488 535 483 513 505 24150 8043 3978 514 509 509 1564 514 509 509 540 478 519 509 540 458 565 464 559 459 3994 529 546 482 1565 513 1560 508 1565 513 510 508 541 487 536 482 541 477
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 558 2942 450 10021 482 2989 484 10015 447 3024 449 10021 472 3100 485 2986 477 2994 500 2999 475 2996 477 2994 479 2992 482 3018 476 2995 479 6464 484 36270 477 3023 450 10020 473 2999 485 10014 448 3022 452 10019 474 3098 478 2994 480 2991 503 2996 477 2994 480 2992 482 2990 484 3015 479 2992 481 6462 485
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 587 2407 476 1062 965 547 482 547 451 577 452 546 452 22108 590 2404 479 1060 967 1028 510 519 509 548 480 487 511 120791 645 2411 472 1066 961 1065 483 515 514 514 504 493 515
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 172 7439 171 7441 169 7443 177 7434 176 7462 178 4887 176 4916 177 4914 169 7469 171 4920 174 4918 175 55174 176 7436 174 7437 173 7439 171 7440 175 7463 172 4894 174 4917 171 4921 172 7465 175 4916 178 4914 169
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 589 2556 500 524 474 554 454 544 454 543 455 543 455 543 455 543 445 583 446 552 446 20046 584 2561 505 1033 485 514 963 518 480 1032 516 512 476 522 506 491 507 522 476 116758 586 2560 506 1033 484 513 964 548 450 1031 507 522 476 521 507 490 508 521 477
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 586 2407 476 1063 964 578 450 548 450 547 481 517 481 577 451 546 452 546 472 556 452 545 453 575 453 514 484 544 484 543 455 14954 510 2483 481 1058 480 548 959 552 446 1067 481 516 512 546 482 515 992 1003 535 493 515 543 486 513 475 522 506 552 446 111671 589 2405 478 1061 477 551 967 514 484 1059 479 549 479 548 480 517 990 1036 512 516 482 546 483 515 503 525 483 544 454
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8444 4180 537 1564 565 1560 538 1561 557 1568 540 1559 539 536 533 542 517 559 510 1563 535 1564 565 1561 537 512 567 1558 540 535 534 1566 542 1557 562 23122 564 1562 557 1569 539 1560 538 1587 542 1558 540 534 535 515 534 541 538 1587 511 1563 566 1560 538 536 533 1567 541 534 515 1585 533 1566 542 23166 561 1565 564 1561 537 1563 535 1590 539 1561 537 538 541 534 515 535 534 1564 534 1566 563 1563 535 540 539 1560 538 511 538 1588 541 1559 539
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 527 1923 481 1998 477 4543 449 4542 470 2040 445 2004 471 2009 446 4575 447 4543 449 4572 450 1999 476 2034 441 34899 524 1956 448 2001 474 4546 446 4545 477 2033 442 2007 478 2002 443 4578 444 4546 445 4575 447 2003 472 2037 448
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 533 1356 437 3474 427 3483 429 3455 436 1454 430 1459 405 28168 510 1379 434 3477 434 3476 425 3459 432 1457 427 1462 402
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 921 833 1714 932 789 938 793 934 797 903 818 909 822 905 816 938 793 1716 902 853 1714 905 816 90856 922 805 1742 931 790 937 794 933 788 939 792 935 796 930 791 937 794 1715 903 825 1742 904 817
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 179 7433 177 4915 178 7434 175 7436 174 7464 176 7435 175 4916 177 4915 173 4918 170 4922 171 4920 173 55174 175 7437 173 4919 174 7437 173 7439 171 7467 173 7438 172 4920 173 4919 174 4917 176 4915 178 4914 169
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 169 6731 176 6748 169 6730 177 6748 169 6755 172 4427 177 4447 178 6721 175 6749 178 4446 168 4456 169 54704 176 6723 174 6750 177 6723 173 6750 177 6747 170 4429 175 4449 176 6723 174 6751 176 4448 177 4447 178
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 3506 3494 876 830 840 2576 847 2568 844 862 819 2570 842 864 816 863 818 2570 842 836 844 2572 840 866 815 865 815 2573 839 867 813 866 814 2573 850 857 813 2575 847 2568 844 834 847 2569 843 835 845 2571 872 2571 842 32654 3512 3488 872 834 847 2570 842 2573 839 867 814 2574 849 858 822 857 813 2575 848 859 821 2566 846 832 848 860 821 2567 845 833 848 860 820 2568 844 834 847 2569 843 2572 840 838 843 2574 849 829 841 2575 868 2575 837
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 560 2939 453 10018 475 2996 477 10022 450 3021 452 10018 475 3097 478 6464 483 6460 477 6466 502 6469 479 2993 480 2990 484 36274 564 2936 456 10015 478 2993 481 10020 534 2936 456 10014 479 3093 482 6461 476 6466 482 6461 476 6495 473 2999 485 2986 477
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 10726 41047 10727
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 1617 4604 1559 1537 1560 1537 1560 4661 1533 33422 1613 4607 1566 1530 1556 1540 1536 4685 1539
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 174 4972 177 4910 173 4944 170 6988 174 6984 177 6951 175 6983 174 14269 177 4969 175 4912 176 4941 178 6979 172 6986 175 6953 178 6980 171
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 174 7067 176 10544 1055 719 1053 739 1054 738 953 822 1052 2566 169 3435 171 3431 175 3446 170 3432 174 3446 170 3432 174 3428 178 3442 174 3429 177 3425 171 39320 2323 4900 178 10543 1056 719 1053 739 1054 738 953 821 1053 2566 169 3435 171 3431 175 3445 171 3432 174 3446 170 3432 174 3428 178 3442 174 3428 178 3425 171
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 3506 3492 868 839 841 2575 848 858 822 2566 846 832 848 859 821 858 812 2576 847 860 820 2567 845 833 847 860 821 2568 844 862 818 2570 842 864 817 2571 841 2574 849 2567 845 861 820 2568 845 834 847 2570 873 2570 842 34395 3503 3496 874 833 847 2568 845 834 847 2570 842 864 816 835 846 862 819 2569 843 835 846 2571 841 865 816 864 816 2571 841 837 844 2573 850 857 813 2575 848 2567 845 2570 842 864 816 2572 840 838 842 2574 869 2574 838
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 170 8479 170 5516 178 8472 177 8474 175 8506 173 5513 171 8479 175 8476 178 8472 177 5540 175 8475 174 45584 177 8473 176 5509 175 8476 173 8477 176 8504 170 5516 178 8472 177 8474 175 8476 173 5543 172 8479 170
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 178 4969 170 6958 173 4944 175 6983 173 6956 174 6984 177 6980 171 16308 180 4966 173 6955 176 4941 172 6985 176 6982 169 6960 176 6982 174
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 585 2409 474 550 478 550 448 1033 994 1063 485 512 506 79916 585 2410 473 551 477 550 448 1034 993 1033 515 543 475
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 1192 1012 6649 26844 1192 1013 6648
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 3134 6105 6263 82963 3134 6105 6263
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 588 1511 567 1533 565 589 531 597 513 589 541 587 533 1565 533 569 541 1533 565 562 568 1531 537 1537 561 593 537 591 539 1507 561 1539 569 22152 586 1513 565 1535 563 590 540 562 538 564 566 588 542 1557 531 597 513 1534 564 590 540 1533 535 1539 559 568 562 592 538 1509 569 1531 567
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 923 831 1715 903 818 936 795 932 789 938 793 934 797 1713 1740 932 789 911 821 934 798 930 791 90853 928 799 1737 935 796 931 790 937 795 932 789 938 793 1717 1736 936 796 932 789 911 820 934 798
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 689 1461 566 1534 564 589 531 597 513 1534 564 564 566 1533 535 620 510 1537 561 592 538 1535 543 1531 567 587 533 595 535 1511 567 1533 565 22161 588 1512 566 1534 564 564 556 598 512 1535 563 565 565 1534 534 594 536 1538 560 593 537 1536 542 1532 566 587 543 585 535 1511 567 1534 564
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 588 2558 498 526 482 515 483 546 452 545 453 545 453 545 453 545 453 544 474 554 444 20047 583 2562 504 519 479 519 479 1003 515 483 1024 548 450 1001 995 1001 506 116771 593 2552 504 520 478 551 447 1004 513 514 993 549 449 1002 994 1002 516
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 587 2559 507 517 481 517 481 547 451 516 482 546 452 546 452 546 452 545 473 525 483 20038 592 2553 503 521 477 552 446 521 477 1004 514 515 992 1034 483 514 484 513 485 116769 593 2552 504 520 478 550 448 520 478 1003 515 514 993 1032 486 513 475 522 476
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 4558 4576 558 596 565 97881 4554 4579 565 589 562
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 1039 7202 958 4713 981 4713 961 7255 956 4739 955 16077 1038 7204 956 4714 980 4715 959 7256 954 4741 954
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 506 2638 510 516 482 516 482 546 452 546 452 545 453 545 453 545 453 575 443 554 444 20048 592 2554 502 1036 481 517 481 517 511 516 482 516 961 1035 513 515 483 514 484 116757 594 2552 504 1034 484 514 484 514 504 524 484 513 964 1032 506 522 476 492 506
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 170 7441 169 4924 174 7437 193 7444 171 7441 174 4918 170 7441 174 4917 171 7440 195 7443 172 7439 171 55187 174 7437 173 4919 175 7437 173 7438 172 7466 175 4891 172 7439 171 4921 172 7439 171 7441 174 7464 171
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 179 4967 172 4915 178 6980 171 4945 169 4948 176 4912 176 4941 178 16307 176 4969 175 4912 176 6982 174 4942 171 4945 169 4919 174 4943 176
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 1042 793 898 883 869 858 924 884 878 877 875 879 873 855 928 1717 901 854 1794 878 894 887 875 1716 902 89114 985 798 903 878 874 880 902 852 900 855 897 857 905 876 896 1722 906 849 1789 883 899 855 897 1721 897
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 170 8480 169 8481 178 8472 177 8474 175 8476 173 5513 176 8474 175 8476 173 8507 178 5509 175 8505 174 45558 175 8476 173 8476 173 8477 172 8478 171 8480 169 5517 177 8473 176 8474 175 8506 174 5512 172 8509 171
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 628 2577 499 528 480 545 453 544 454 544 454 544 454 544 454 543 455 543 475 553 445 20047 593 2553 503 521 477 551 447 1004 514 515 992 519 479 1003 515 513 485 543 455 116768 585 2561 505 519 479 519 479 1002 516 513 994 548 450 1001 506 522 476 521 477
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8987 4505 568 586 534 594 536 591 509 567 563 591 539 563 567 587 513 1692 559 1672 559 1698 563 590 510 592 538 590 540 1664 567 1690 561 593 507 1699 562 1668 563 1694 567 1663 568 586 534 568 562 592 508 595 535 1695 536 592 538 1693 558 595 515 1690 561 593 517 585 535 567 563 39551 8994 4497 566 589 541 560 560 594 516 586 534 594 536 592 538 590 510 1695 566 1664 567 1690 561 593 507 595 535 566 564 1667 564 1693 558 596 534 1670 561 1670 561 1696 565 1666 565 589 541 587 533 595 515 587 533 1697 534 568 562 1695 556 572 538 1693 568 559 541 588 542 585 535
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8987 4504 569 559 561 593 537 565 535 567 563 591 539 588 532 597 513 1691 560 568 562 592 508 1697 564 589 511 565 565 1692 559 1672 559 569 561 1669 562 566 564 564 566 1665 566 588 542 586 534 1670 561 567 563 565 535 593 537 591 539 1692 539 589 541 586 534 594 536 592 508 40679 8987 4504 569 585 535 593 537 591 509 566 564 591 539 588 532 596 514 1691 560 594 536 592 508 1697 564 589 511 591 539 1692 559 1671 560 594 536 1669 562 592 538 590 540 1664 567 587 543 585 535 1670 561 593 537 565 535 593 537 591 539 1691 540 588 542 586 534 594 536 592 508
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 298 1828 270 804 245 1829 279 1820 278 797 252 771 278 1822 276 1824 274 800 249 1825 273 802 247 776 252 771 278 1822 276 799 250 48931 388 1737 280 796 253 1821 277 1822 276 798 251 1823 275 800 249 774 275 1825 273 776 273 1801 297 1828 270 1829 279 796 253 1821 277 42813 301 1825 273 801 248 1826 272 1827 271 804 245 805 244 1830 278 1821 277 798 251 1823 275 799 250 774 244 779 280 1820 278 796 253 48926 382 1744 354 696 271 1828 270 1829 279 796 253 1821 277 797 252 746 303 1823 275 774 275 1799 299 1826 272 1827 271 804 245 1829 279
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 177 5508 176 5539 176 8475 174 5542 173 8478 171 5545 170 8481 168 8482 177 8473 176 5541 174 8476 173 45573 169 5517 177 5538 177 8473 176 5541 174 8476 173 5544 171 8479 170 8481 178 8472 177 5540 175 8475 174
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 175 8474 175 8475 174 8477 172 8478 171 8480 169 8481 178 5538 177 5510 174 5542 173 5543 172 5544 171 45575 177 8472 177 8474 175 8476 173 8477 172 8478 171 8481 178 5507 177 5539 176 5540 175 5542 173 5543 172
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8050 3971 511 1562 516 1558 510 539 490 1557 511 1563 515 533 485 538 490 533 485 3983 530 1569 509 1564 514 1559 509 1565 513 1560 508 515 513 536 482 541 488 24152 8042 3979 514 1560 508 1565 513 510 508 1565 513 1560 508 515 513 536 482 541 488 3980 533 1567 511 1562 516 1557 511 1563 515 1558 510 539 489 534 484 539 490
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 175 8475 174 5512 177 8473 176 8475 174 8506 179 5508 176 8474 175 8475 174 8477 172 5544 171 8480 169 45587 176 8475 174 5511 173 8477 177 8473 176 8504 170 5516 178 8472 177 8473 176 8475 174 5542 173 8478 171
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 176 7436 174 7438 172 7439 171 7441 174 7463 172 7440 170 4921 172 4919 174 4917 176 4916 177 4914 174 55176 175 7437 173 7439 191 7446 174 7438 177 7434 176 7435 175 4917 176 4915 179 4914 174 4917 171 4946 178
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 176 7435 175 4917 177 7435 175 7436 189 7449 176 7435 175 7437 173 4918 175 7436 174 4918 175 4916 178 55171 175 7436 174 4918 170 7441 174 7438 177 7460 170 7441 174 7438 177 4914 174 7437 178 4914 169 4922 171
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8049 3973 509 1564 514 509 509 1564 514 535 483 1564 514 535 483 540 489 535 483 3980 533 1566 512 537 481 1566 512 511 507 1566 512 537 481 542 486 511 507 24149 8045 3976 516 1558 510 512 516 1557 511 512 516 1558 510 512 516 507 511 512 506 3984 539 1560 508 515 513 1560 508 541 488 1560 508 541 488 536 482 514 504
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 366 202 867 527 170 130516 343 227 863 529 168
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 176 5992 176 1372 176 1320 177 1345 172 1349 179 1370 178 1317 175 4444 176 1346 171 1351 177 1345 172 1349 179 1344 174 5963 175 65574 172 5995 178 1344 174 1348 175 1347 175 1347 170 1378 170 1325 172 4447 178 1344 173 1349 169 1353 175 1347 170 1351 177 5961 177
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 497 1478 488 511 467 1482 494 531 447 1477 499 501 466 533 445 530 468 507 471 529 438 12857 488 1485 491 509 469 1481 495 529 448 1476 490 510 468 532 445 529 469 480 498 502 465
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 982 6313 961 2662 903 2718 929 2719 907 6363 900 2722 904 6365 909 6361 903 6368 906 2742 905 46364 989 6307 906 2716 911 2712 925 2723 903 6367 907 2715 901 6369 905 6365 909 6361 903 2745 902
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 599 257 975 317 177 130649 308 228 974 319 175
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 176 4969 170 6958 173 6985 177 6981 171 6958 178 6980 177 6981 170 16308 180 4966 173 6955 176 6982 169 6988 174 6956 175 6983 173 6984 172
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 178 5990 173 1349 174 1348 175 1348 174 4444 176 1346 171 1351 177 4416 178 1344 173 1348 169 1353 175 1347 170 1351 177 9048 177 65573 173 5995 173 1348 175 1348 174 1347 176 4444 171 1351 177 1345 173 4421 173 1348 169 1352 176 1347 170 1351 177 1345 172 9053 177
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 174 4972 177 4910 173 6985 177 4940 174 6984 178 6951 175 6983 174 14269 177 4968 176 4912 176 6981 175 4941 173 6985 177 6953 178 6979 172
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 1318 225 177 130305 1609 231 171
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 585 2410 473 1065 962 581 447 519 479 580 448 549 449 579 449 518 480 548 480 517 481 517 481 577 451 516 482 576 452 545 453 14955 510 2483 481 1058 480 549 969 543 445 1037 511 547 481 546 482 516 482 545 484 545 483 514 484 544 963 1063 485 543 445 111612 626 2427 557 954 513 512 995 547 451 1031 507 521 508 551 477 520 478 550 478 549 479 488 510 548 969 1057 481 517 481
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 203 272 1215 302 171 130229 1423 275 178
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 176 7436 174 7438 192 7446 174 7437 178 7434 176 7435 175 4917 176 4915 178 4913 175 4917 197 7440 175 55130 286 7377 177 7435 175 7437 173 7438 172 7466 174 7411 178 4913 170 4921 172 4919 174 4918 175 7436 174
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 175 7437 173 4918 170 7441 174 7437 178 7460 170 7441 179 7433 177 4915 178 4913 170 4922 171 4920 173 55124 291 7372 172 4921 172 7439 171 7441 174 7463 172 7440 170 7442 178 4913 170 4922 171 4920 173 4918 175
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 172 8477 172 8478 171 8480 169 5516 179 8502 178 5509 175 8475 174 8476 173 8479 170 5545 170 8480 169 45588 176 8473 176 8474 175 8476 173 5513 177 8504 171 5515 174 8476 178 8472 177 8473 176 5541 174 8476 173
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 177 7436 174 4918 175 7436 174 4918 175 7462 178 4887 176 4916 177 4914 174 4917 171 4921 172 4919 175 55184 175 7435 175 4918 175 7436 174 4918 175 7462 178 4914 174 4917 171 4920 173 4919 174 4917 176 4915 178
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 508 2484 480 1060 967 544 485 544 454 574 454 543 455 573 445 553 445 522 506 552 446 552 446 551 477 551 447 581 447 520 478 550 478 15908 626 2427 476 1062 476 522 995 547 451 1061 477 520 508 550 478 519 479 519 999 1058 959 1037 990 582 446 1035 483 111666 590 2404 479 1059 479 549 968 543 455 1027 511 548 480 517 511 486 512 546 961 1065 962 1034 993 579 449 1032 486
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 175 8475 174 8475 174 8477 172 8478 171 8480 169 5517 178 8473 175 8475 179 8501 173 5513 176 8505 169 45562 179 8472 177 8473 176 8474 175 8476 173 8478 171 5515 174 8476 178 8473 176 8505 174 5512 172 8508 171 120769 178 93377 175 7437 173 4919 174 7437 173 7439 171 7467 173 7439 171 7441 174 4918 170 4921 172 7439 171 7467 173 55167 171 7440 170 4922 171 7440 195 7443 172 7439 171 7441 174 7438 177 4915 173 4918 195 7442 173 7439 170
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 295 1805 273 776 242 1808 270 754 244 1806 272 777 241 758 270 754 264 760 268 756 272 14149 297 1802 266 784 244 1805 263 762 246 1803 265 785 244 780 248 751 267 758 271 753 265
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 535 1723 569 585 566 615 536 619 542 586 565 616 535 1722 539 615 536 1721 561 620 541 587 564 617 534 621 540 588 563 618 543 1714 537 617 534 621 540 615 536 618 543 612 539 615 536 1722 560 594 567 1717 534 1723 569 1714 557 1700 643 1639 643 1641 559
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 502 2521 504 521 997 545 453 575 453 545 453 575 454 22097 591 2433 511 513 994 1062 476 552 476 522 476 552 476 120839 628 2455 509 515 992 1064 484 513 505 493 515 543 475
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 591 2404 479 1060 967 1029 509 519 509 549 479 518 480 79926 585 2408 556 956 989 1033 515 544 484 543 475 522 476
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 586 2560 506 518 480 548 450 548 450 517 481 517 481 517 481 547 451 546 482 516 482 20040 590 2556 500 1038 480 518 969 543 455 543 475 1006 511 517 481 517 511 486 481 116778 584 2561 505 1033 485 513 964 548 450 548 480 1001 506 522 476 522 506 521 446
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 917 206 175 186 170 21561 170 2280 175 2274 502 1929 174 2276 169 5178 170 2261 173 3724 498 1932 171 2279 176 2273 172 3709 172 2277 178 3720 171 17223 177 7619 174 2275 170 2279 176 2256 168 2280 175 5172 176 2256 168 3729 173 2276 179 2253 171 2278 177 3703 178 2271 174 3724 177 17251 170 7627 177 2272 173 2276 169 2263 171 2277 178 5169 169 2262 172 3726 175 2256 168 2280 175 2274 171 3710 171 2278 177 3720 171
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 565 233 653 313 170 130328 752 235 233 107 229 398 177
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 586 2439 505 549 968 1027 511 517 511 517 481 547 481 21583 584 2439 505 520 997 1059 479 549 479 518 480 548 480 120894 593 2432 501 522 995 1061 477 521 507 520 478 550 478
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 558 8032 474 8115 503 8116 482 8108 480 8141 477 5239 476 8114 504 8115 483 8107 481 5236 509 8111 477 45290 554 8036 481 8108 510 8110 478 8112 476 8145 473 5243 482 8107 511 8109 479 8111 477 5240 505 8115 473
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 173 7438 172 4920 173 7438 172 4920 173 7465 175 4890 173 7439 171 4920 173 4919 174 4917 176 4915 178 55179 170 7441 169 4924 174 7437 178 4913 175 7463 172 4893 170 7441 174 4918 170 4922 171 4920 173 4918 175
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 225 745 222 774 193 778 200 797 175 769 193 777 201 771 196 774 224 747 220 776 202 769 198 248 220 252 196 250 218 253 225 746 221 250 198 248 220 252 226 246 222 223 225 248 220 252 216 229 219 253 225 247 221 277 176 243 220 279 189 230 228 244 224 248 220 252 196 250 218 253 215 257 201 770 197 799 189 257 201 271 197 37716 222 749 218 778 200 771 196 801 172 772 200 771 196 774 193 777 221 750 217 780 197 773 194 251 217 255 193 279 199 273 195 749 218 254 194 252 226 245 223 275 178 242 221 277 201 245 193 253 225 247 221 250 218 254 194 252 226 272 196 223 225 248 220 251 217 255 193 253 225 247 221 251 197 773 194 803 174 297 176 244 219
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 3503 2655 197 642 876 2568 844 834 846 833 848 860 821 831 839 2576 847 2569 843 2572 841 2574 849 858 823 857 813 866 815 865 815 2572 841 2575 848 2568 844 2570 842 836 844 863 818 834 847 861 820 2568 845 2571 872 2571 842 32651 3505 3495 875 2567 845 861 820 832 849 859 811 840 840 2576 847 2568 844 2571 842 2574 849 830 840 867 814 838 842 865 815 2572 840 2575 848 2568 845 2571 841 865 815 864 817 834 846 861 819 2569 843 2572 871 2572 840
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 347 677 219 252 196 276 202 742 225 798 174 770 192 778 200 771 196 775 223 748 219 777 200 770 197 249 219 253 195 251 227 271 197 747 220 252 216 229 219 253 225 273 195 277 176 244 219 253 215 230 228 244 224 248 220 252 196 250 218 280 198 247 201 245 223 249 219 253 195 251 227 245 223 248 200 797 175 795 198 248 200 246 222 37666 344 678 228 245 223 222 226 771 196 800 198 747 220 750 217 753 224 773 194 776 202 769 198 799 173 246 227 245 223 249 199 247 221 749 218 280 198 247 201 245 223 249 219 253 195 251 227 244 224 248 200 272 196 250 218 254 194 252 226 245 223 249 199 274 194 251 227 245 193 253 225 273 195 251 217 753 225 746 221 251 197 275 193
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 174 7437 173 7440 174 7437 178 7433 177 7461 169 7442 178 4914 174 4917 171 4921 172 4919 174 7463 177 55163 177 7435 174 7437 173 7438 172 7440 175 7463 172 7413 176 4915 178 4913 175 4917 171 4920 174 7438 172
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8042 3979 513 510 508 541 487 1559 509 515 513 1560 508 515 513 510 508 541 477 3981 532 1568 510 1563 515 1558 510 1564 514 1559 509 514 514 535 483 540 488 24151 8042 3979 513 536 482 541 487 1560 508 541 488 1560 508 541 487 536 482 541 477 3980 533 1566 512 1561 507 1566 512 1562 516 1557 511 538 491 533 485 538 490
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8989 4501 562 1696 565 1665 566 562 568 586 514 588 542 586 534 594 536 1667 564 591 539 1692 539 563 567 1690 561 1669 562 1669 562 1696 565 562 538 564 566 588 542 586 534 1670 561 568 562 592 538 590 510 592 538 590 540 561 539 563 567 561 569 585 535 593 507 595 535 593 537 39547 8987 4504 569 1689 562 1668 563 591 539 589 511 591 539 589 541 561 559 1671 560 568 562 1695 536 592 538 1693 558 1673 568 1663 568 1689 562 592 508 594 536 592 538 590 540 1664 567 561 569 559 561 567 543 585 535 593 537 591 509 593 537 591 539 589 541 587 513 589 541 587 533
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8988 4504 640 487 562 592 538 590 510 592 538 590 540 588 532 596 514 614 516 1689 562 1668 563 1695 536 1695 566 1664 567 1690 612 1618 643 1430 801 1613 648 481 558 570 540 589 541 587 533 595 535 592 508 594 536 592 538 1667 564 1693 558 1672 569 1688 563 1668 644 1586 563 1694 567 40630 8994 2265 557 96833 8987 2273 538
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 173 7439 171 4922 172 7439 171 4921 172 7466 174 4917 176 4915 173 4918 170 7441 174 7438 192 7445 175 55181 174 7437 173 4918 175 7437 173 4919 175 7463 177 4888 175 4917 176 4915 178 7460 170 7440 175 7437 178
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 1636 4610 1563 1533 1584 7760 1561 28769 1641 4606 1557 1539 1588 7757 1564
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 590 2404 479 1059 968 575 454 544 454 574 454 543 455 543 475 522 476 552 476 552 446 551 447 581 448 520 478 581 447 519 479 549 479 15967 587 2407 476 1062 476 522 995 547 451 1030 508 520 509 550 478 519 479 519 998 1028 999 1057 481 547 960 1066 482 111641 587 2407 476 1063 485 513 994 547 451 1031 507 551 477 551 477 520 478 550 968 1059 968 1027 511 548 959 1036 512
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 588 2406 477 1061 966 577 451 516 482 545 483 545 453 575 443 524 484 514 504 554 454 543 455 543 475 553 445 583 445 521 477 582 446 15969 585 2409 474 1065 483 514 993 549 449 1033 515 543 475 553 475 522 476 552 965 1030 997 576 452 1029 998 1028 479 111668 587 2407 475 1063 485 543 964 517 481 1031 507 552 476 551 477 520 478 550 968 1028 999 574 454 1027 990 1036 481
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 174 7439 196 7441 174 7437 173 7439 171 7441 174 7438 177 7460 170 7442 178 7433 177 4915 173 4918 170 55186 174 7438 172 7440 170 7441 174 7438 177 7461 169 7416 173 7464 176 7435 175 7437 173 4918 175 4917 176
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 173 7438 172 7441 174 7438 177 7434 176 7462 168 7443 177 7435 175 4917 176 4915 173 7438 177 4941 173 55166 174 7438 197 7441 174 7437 173 7439 171 7441 174 7438 177 7460 170 4922 171 4893 195 7443 172 4920 173
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 175 7436 179 4913 175 4917 171 4920 173 4945 169 4896 177 7435 175 7436 174 7464 176 4916 177 4914 169 55180 170 7441 169 4924 169 4922 171 4920 173 4919 174 4917 176 7435 175 7463 177 7434 176 4916 177 4914 174
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 927 827 1709 936 796 932 789 938 793 1717 1736 936 795 932 789 1721 927 827 1709 909 822 90851 898 829 1738 934 798 930 791 936 796 1715 1738 934 797 930 791 1719 899 828 1739 934 797
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 176 5991 177 1372 176 1320 177 1344 173 1349 174 1374 169 1327 170 4449 176 1346 171 1351 177 1345 172 1349 168 1353 175 5963 175 65573 173 5995 178 1344 174 1348 175 1348 174 1347 170 1378 170 1325 172 4447 178 1344 174 1349 169 1353 175 1347 170 1352 176 5961 177
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: 71 00 00 00
+command: 4a 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: 60 00 00 00
+command: 03 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: 60 00 00 00
+command: 00 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: 42 00 00 00
+command: 01 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NECext
+address: 50 ad 00 00
+command: 00 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NECext
+address: 50 ad 00 00
+command: 02 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: 50 00 00 00
+command: 3f 00 00 00
+#
+name: POWER
+type: parsed
+protocol: Samsung32
+address: 06 00 00 00
+command: 0f 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: 08 00 00 00
+command: 12 00 00 00
+#
+name: POWER
+type: parsed
+protocol: Samsung32
+address: 08 00 00 00
+command: 0b 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NECext
+address: 83 55 00 00
+command: c2 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: 00 00 00 00
+command: 51 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NECext
+address: 00 bd 00 00
+command: 01 00 00 00
+#
+name: POWER
+type: parsed
+protocol: Samsung32
+address: 00 00 00 00
+command: 0f 00 00 00
+#
+name: POWER
+type: parsed
+protocol: Samsung32
+address: 16 00 00 00
+command: 0f 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NEC
+address: 01 00 00 00
+command: 01 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NECext
+address: 80 68 00 00
+command: 49 00 00 00
+#
+name: POWER
+type: parsed
+protocol: NECext
+address: 86 02 00 00
+command: 49 00 00 00
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 2383 609 1214 600 612 580 1213 608 614 583 1210 605 607 586 616 611 1192 599 613 608 614 579 613 615 607 26670 2387 601 1212 600 612 589 1214 603 609 586 1217 595 607 594 618 606 1187 602 610 609 613 588 614 610 612
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 178 7761 176 11308 546 957 540 1958 538 970 537 1955 541 962 545 1953 543 964 543 962 545 957 540 970 548 960 547 1945 541 1950 546 965 542 1953 543 962 545 1945 540 970 537 1958 538 7881 172 7744 172 11318 536 971 536 1956 540 963 534 1964 542 966 541 1951 535 968 539 971 536 971 536 969 538 964 533 1965 541 1954 542 963 534 1956 540 971 536 1959 537 968 539 1951 535
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 3444 1767 413 486 420 1343 419 478 418 485 411 490 416 479 417 489 417 482 414 485 421 482 414 483 413 490 416 485 411 1343 419 487 419 480 416 483 413 490 416 482 414 488 418 483 413 483 413 492 414 1345 417 482 414 489 417 480 416 487 419 482 414 481 415 491 415 484 412 1347 415 488 418 1338 414 1348 414 1347 415 1340 412 494 412 487 419 1340 412 491 415 1341 421 1341 421 1340 412 1343 419 487 419 1339 413 74311 3445 1753 437 461 445 1316 446 456 440 455 441 465 441 458 438 461 445 458 438 460 436 466 440 461 445 451 445 460 446 1313 439 460 446 457 439 459 437 465 441 460 446 450 436 469 437 462 444 456 440 1322 440 457 439 464 442 459 437 459 437 468 438 461 445 455 441 462 444 1312 440 463 443 1317 445 1310 442 1323 439 1320 442 457 439 464 442 1315 437 466 440 1320 442 1313 439 1326 446 1313 439 460 446 1317 445
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 278 1845 274 808 271 806 273 812 278 805 275 805 274 1840 279 1844 275 809 281 1836 272 806 274 812 278 805 274 1842 277 802 277 44956 279 1842 277 804 275 802 277 808 271 811 279 1838 281 798 271 814 276 1844 275 806 273 1841 278 1845 274 1846 273 808 271 1843 276 44959 275 1845 274 807 272 805 275 811 279 804 275 805 274 1839 280 1844 275 808 271 1845 274 805 274 811 279 804 275 1841 278 801 278 44955 280 1841 278 802 277 801 278 807 272 810 280 1837 271 807 272 813 277 1843 276 805 274 1839 280 1843 276 1845 274 807 272 1842 277
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 881 909 1750 928 875 927 876 921 872 929 874 927 876 918 875 930 873 1815 874 924 1745 937 876 88694 880 922 1747 933 880 914 879 926 877 922 871 927 876 927 876 920 873 1818 871 929 1740 934 879
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 509 1717 504 629 512 631 510 627 504 633 508 633 508 1713 508 1719 512 1713 508 625 505 637 504 633 508 629 512 629 512 623 508 1719 512 626 505 628 513 631 510 627 514 623 507 632 509 1713 508 632 509 1716 505 1715 506 1724 507 1716 505 1719 512 1715 506
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 506 493 505 4059 505 5051 501 506 502 4065 499 511 497 4063 501 5058 504 504 504 4060 504 5052 500 507 501 4066 498 5056 506 5042 500 515 503 119614 504 505 503 4065 499 5051 501 511 497 4069 505 499 499 4072 502 5050 502 506 502 4066 498 5053 499 512 506 4060 504 5044 498 5061 501 508 500
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8887 4470 532 1738 513 1708 533 1708 533 577 533 576 534 569 531 582 538 1705 536 571 539 1707 534 571 539 571 539 570 540 1699 532 581 539 568 532 575 535 576 534 571 539 571 539 569 541 1698 533 1717 534 1708 533 1710 531 1716 535 1706 535 1711 540 1705 536 567 533 580 540 567 533 39042 8915 2231 530 94849 8917 2256 535
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8313 4161 515 1574 514 1571 507 569 510 562 507 563 506 562 507 568 511 562 507 1580 508 1577 511 1582 506 567 513 1575 513 554 505 571 509 564 505 22604 513 1573 505 1589 509 563 506 564 505 562 507 569 511 562 507 563 506 1579 509 1584 514 1576 512 558 511 1574 514 562 507 565 515 556 513 22593 514 1581 507 1583 505 564 505 563 506 570 510 563 506 564 505 562 507 1586 512 1578 510 1577 511 557 512 1581 507 566 514 556 513 555 514
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8735 4383 558 573 557 550 560 568 562 544 566 1722 560 540 560 1732 560 544 566 1719 563 1701 560 1723 559 1704 557 574 556 1699 562 574 556 1703 559 1727 565 1698 563 1721 561 546 564 1723 559 541 559 577 564 541 559 571 560 548 562 565 566 1697 565 567 564 1693 558 1733 559 1701 560 39926 8754 2247 565 92341 8758 2243 589
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 3298 3336 821 2506 825 881 820 2505 826 2529 823 856 825 2524 817 866 825 2528 813 2513 818 888 813 862 819 887 814 865 826 2522 820 864 827 2526 815 861 820 887 814 2510 821 885 816 863 818 2531 821 2512 819 2559 793 32401 3298 3349 818 2507 824 882 819 2509 822 2527 814 868 823 2530 821 855 826 2531 821 2504 827 879 822 857 824 875 816 867 824 2529 823 854 827 2530 821 853 817 889 822 2506 825 873 818 866 825 2527 814 2513 818 2564 788
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8840 4439 532 566 534 566 534 1668 532 1674 536 1669 531 562 538 566 534 563 537 1667 533 567 533 563 537 563 537 562 538 1662 538 1671 529 568 532 565 535 566 534 1668 532 1674 536 1669 531 562 538 1672 528 1675 536 1668 532 1675 535 559 531 1676 534 565 535 558 532 1678 532 565 535 562 538 563 537 1665 535 565 535 1670 530 1669 531 572 538 1666 534 1669 531 1676 534 22777 8858 4447 535 92577 8858 4413 538
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 289 2112 261 2109 295 2101 262 918 294 912 259 915 297 2098 265 916 296 909 262 2107 297 905 266 913 289 918 263 910 292 909 262 918 294 24789 263 2106 298 2098 265 2110 294 913 258 916 296 905 266 2108 296 911 260 914 288 2107 266 914 298 908 263 911 291 910 261 919 293 913 258
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8898 4453 569 578 573 577 574 571 570 1745 567 1747 565 1743 569 583 568 579 572 1740 572 1744 568 1742 570 579 572 576 575 568 573 1746 566 1746 566 580 571 1745 567 577 574 576 575 1739 573 569 572 581 570 577 574 1738 574 576 575 1735 567 1748 574 574 567 1742 570 1748 574 1737 575 41005 8876 2261 571 93850 8898 2264 568
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 3215 1637 410 430 405 439 406 1242 408 435 410 1242 408 428 407 440 405 435 410 1240 410 1243 407 431 404 440 405 437 408 1238 402 1254 406 434 401 439 406 438 407 431 404 440 405 437 408 428 407 439 406 434 401 439 406 438 407 1241 409 434 401 441 404 432 403 444 401 1249 401 439 406 438 407 1241 409 434 401 441 404 433 402 444 401 1249 401 439 406 1248 402 436 409 434 401 441 404 433 402 444 401 439 406 45471 3239 1614 403 435 400 444 401 1250 400 437 408 1248 402 438 407 433 402 442 403 1245 405 1248 423 420 405 431 404 443 402 1248 402 1248 422 421 404 435 400 443 402 440 405 431 404 443 402 438 407 433 402 442 403 435 400 443 402 1250 400 436 399 447 408 432 403 438 407 1246 404 434 401 443 402 1250 400 436 399 447 408 432 403 437 408 1246 404 434 401 1253 407 434 401 436 399 447 408 432 403 437 408 436 399
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 7928 3948 504 515 503 518 500 1583 505 516 502 1584 504 510 508 516 502 516 502 3952 510 1579 509 507 501 1587 501 519 510 1571 507 518 500 517 501 517 501 23073 7931 3943 509 514 504 515 503 1578 500 524 505 1580 508 510 508 514 504 511 507 3951 511 1576 502 513 505 1586 502 515 503 1582 506 515 503 513 505 516 502
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8837 4464 538 610 531 619 532 613 538 1748 534 1750 532 611 540 613 538 609 532 615 536 614 537 608 533 1753 539 1745 537 606 535 618 533 614 537 609 532 619 532 613 538 611 540 609 532 611 540 1748 534 1749 533 1750 532 1754 538 1743 539 1747 535 1750 532 1747 535 618 533 613 538 44105 8864 2224 537 93399 8912 2202 538
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 492 4975 496 4993 498 498 500 4056 498 504 494 4055 499 4963 497 532 496 4031 492 4996 495 502 496 4060 494 4972 499 4990 491 506 492 4063 491 511 497 4052 492 4970 490 539 500 4027 496 103358 500 4961 500 4995 496 505 493 4056 498 499 499 4057 497 4969 491 533 496 4026 497 4997 494 508 490 4059 495 4967 494 5001 490 511 497 4053 491 505 493 4063 491 4975 496 528 490 4032 491
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 2357 610 1183 592 1191 614 1179 595 1188 618 584 613 1180 593 588 613 1190 612 590 605 587 613 589 605 587 25398 2355 623 1180 591 1181 627 1186 589 1183 618 584 616 1187 587 584 614 1189 615 587 605 587 615 587 609 593
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 3425 3482 848 2607 846 2639 845 2608 846 2639 845 2612 852 2624 850 2613 851 911 851 885 847 919 843 891 851 915 847 890 852 907 845 897 845 917 845 891 851 915 847 887 845 2639 845 2612 852 2625 849 2613 851 2630 844 34282 3455 3478 852 2601 852 2633 851 2605 848 2629 845 2617 847 2633 851 2604 849 917 845 890 852 913 849 889 843 915 847 896 846 916 846 890 852 914 848 885 847 919 843 895 847 2630 844 2617 847 2634 850 2605 848 2636 848
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 500 500 498 4066 498 5058 504 502 506 4061 503 508 500 4060 504 5055 497 5055 497 511 497 4071 503 5047 505 507 501 4065 499 5049 503 512 496 124314 501 508 500 4067 507 5043 499 513 505 4060 504 501 497 4073 501 5052 500 5052 500 512 496 4066 498 5058 504 506 502 4058 506 5053 499 509 499
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 176 7763 174 8817 169 10842 544 1955 541 967 540 1952 544 959 538 972 546 962 545 1947 538 1952 544 967 540 1955 541 964 543 1947 539 972 546 1949 547 7873 170 7746 170 10350 175 11811 543 960 537 1961 535 972 535 970 537 965 542 1956 540 1956 540 965 542 1947 539 973 534 1960 536 969 538 1952 534
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 2570 2682 1189 1208 1186 2665 1186 1217 1187 2668 1183 1215 1179 2671 1190 2695 1186 1187 1187 2692 1179 2671 1190 1213 1181 1193 1191 1207 1187 2663 1188 1215 1179 2676 1185 46941 2563 2685 1186 1191 1183 2698 1184 1188 1186 2691 1180 1197 1187 2694 1187 2666 1185 1210 1184 2674 1187 2695 1186 1185 1189 1206 1188 1189 1185 2696 1186 1186 1187 2689 1182
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 873 916 1773 906 877 925 878 919 874 928 875 925 878 1806 1770 914 879 1809 870 928 1772 88684 870 926 1774 908 875 926 877 917 876 929 874 925 878 1809 1777 905 877 1808 871 930 1770
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 874 906 877 912 1767 904 879 908 874 918 875 915 878 907 875 920 873 1795 874 914 1775 897 875 88704 879 914 868 922 1767 897 875 919 874 915 878 911 872 920 873 914 879 1792 877 914 1775 889 873
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 3325 1560 406 444 401 453 402 1226 404 449 406 1226 404 443 402 454 401 449 406 1224 406 1228 402 446 409 444 401 451 404 1223 407 1230 410 440 405 445 410 443 402 446 409 444 401 451 404 442 403 453 402 448 407 443 402 451 404 1224 406 448 407 444 401 445 410 446 409 1221 409 442 403 1231 409 439 406 1227 403 450 405 441 404 452 403 1227 403 448 407 446 409 439 406 447 408 444 401 445 400 456 410 440 405 52348 3320 1553 403 445 400 454 401 1230 400 447 408 1228 402 449 406 444 401 452 403 1225 405 1229 431 421 404 442 403 454 401 1229 401 1229 431 423 402 446 399 455 400 451 404 442 403 453 402 448 407 443 402 451 404 444 401 452 403 1229 401 445 400 457 398 451 404 446 399 1235 405 443 402 1232 408 444 401 1225 405 452 403 447 398 452 403 1231 399 449 406 447 408 443 402 444 401 456 399 450 405 445 400 453 402
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 990 915 980 909 986 924 981 2829 981 934 981 2823 987 923 982 2828 982 933 982 906 989 33895 989 907 988 927 988 900 985 2841 979 915 980 2851 980 909 986 2840 980 914 981 934 981
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 821 5754 848 2490 841 2492 819 2524 817 5726 845 2492 839 5727 844 5757 845 5727 854 2483 848
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 5092 1621 406 2599 406 2598 407 2605 1653 1616 411 2619 1609 1606 1654 1618 409 2623 382 2600 405
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8879 4446 566 1747 565 584 567 1744 568 581 570 1744 568 574 567 586 565 582 569 578 563 1753 570 575 566 1749 563 585 566 1743 569 1749 563 1748 564 582 569 1747 565 580 571 578 573 1741 571 572 569 584 567 580 571 1741 571 578 573 1738 564 1751 572 577 564 1744 568 1750 572 1740 572 41007 8906 2257 565 93855 8872 2265 567
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 1144 1010 6795 26754 1151 997 6798
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 1144 1009 1120 1006 1143 1991 1116 26758 1146 1006 1123 1003 1146 1988 1119
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 170 46238 169
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8906 4165 572 1672 569 1678 563 640 572 637 565 643 569 633 569 643 569 1674 567 639 563 1684 567 637 565 1681 570 1675 566 1673 568 1681 570 636 566 640 572 637 565 639 563 1684 567 640 572 630 572 640 572 634 568 1675 566 1681 570 1670 571 638 564 1681 570 1669 572 1678 563 1680 571 40485 8898 2252 570 85621 8955 2194 567
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 446 1191 449 1194 446 1195 445 1204 446 1200 1316 459 447 1193 447 1202 448 1197 443 1201 449 1191 449 34491 443 1204 446 1197 443 1198 442 1207 443 1202 1314 436 440 1201 449 1199 441 1205 445 1198 442 1199 441
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 4268 4327 522 1593 516 1603 516 1597 522 519 520 520 519 515 514 531 518 520 519 519 520 521 518 519 520 1597 522 1595 514 1597 522 1599 520 1595 514 524 515 1604 515 521 518 523 516 524 515 519 520 525 514 524 515 1599 520 522 517 1596 513 1605 514 1602 517 1595 514 1607 522 1592 516 40481 8748 2187 523 93986 8721 2189 521
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 247 3006 244 153 178 1007 251 117 637 597 381 678 218 156 175 529 382 679 217 157 174 24963 247 3038 252 117 219 994 249 119 217 483 250 117 173 531 278 779 173 167 169 569 383 679 217 156 175 126538 246 3039 251 118 218 995 247 120 195 504 249 118 172 532 277 780 172 168 178 560 382 680 216 157 174
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8872 4454 568 579 572 578 573 572 569 581 570 1744 568 575 566 587 564 582 569 1743 569 1747 565 1745 567 1748 564 584 567 1741 571 1747 565 1747 565 1747 565 1751 571 1739 563 1752 570 578 563 1745 567 1751 572 1741 571 575 566 585 566 578 573 577 564 1750 573 571 570 583 568 579 572 41007 8905 2258 574 93846 8871 2266 566
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 4278 4318 521 517 522 520 519 517 522 520 519 521 518 516 513 531 518 520 519 1595 514 1605 514 1599 520 1598 521 1595 513 1598 521 1600 519 1596 513 1602 517 1601 518 1595 514 1604 515 525 514 520 519 526 513 525 514 524 515 527 522 513 516 526 513 1603 516 1595 514 1607 522 1593 516 40481 8749 2186 524 93985 8722 2189 521
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 2746 8423 2744 19607 2746 19601 2742 8431 2745 8424 2742 19608 2745 8419 2747 19608 2745 19607 2746 8422 2744
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 170 6683 174 4889 175 10382 372 849 821 2498 176 10378 264 2479 842 2492 839 2475 846 2483 838 2481 840 2495 836 2477 844 845 846 37009 172 6681 176 4888 175 10381 373 848 924 2395 844 2490 174 10383 248 2492 172 10386 245 2495 169
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8898 4453 569 578 573 577 574 1737 565 584 567 582 569 574 567 1751 572 1741 571 1741 571 1744 568 576 575 1741 571 1743 569 1739 573 579 572 575 566 581 570 580 571 574 567 1748 575 1739 573 570 571 582 569 578 573 1739 573 1742 570 1740 572 577 574 575 566 1742 570 1749 574 1738 574 41006 8875 2262 570 93850 8907 2256 566
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8872 4454 568 1745 567 1749 563 1746 566 584 567 1747 565 1743 569 583 568 579 572 575 566 584 567 578 563 1752 571 578 563 580 571 1747 565 1747 565 581 570 1746 566 578 573 577 564 1751 572 571 570 583 568 579 572 1740 572 578 563 1747 565 1750 573 576 565 1743 569 1749 563 1749 563 41017 8906 2257 565 93855 8872 2265 567
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 179 2644 178 8174 170 2646 176 8181 173 2648 174 8177 177 2640 172 5419 174 5413 170 2649 173 2644 178 2646 176 2646 176 5409 174 28831 174 2651 171 8183 171 2648 174 8174 170 2655 177 8177 177 2642 170 5412 171 5420 173 2649 173 2646 176 2640 172 2653 169 5419 174
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 174 2648 174 8178 176 2640 171 8185 169 2653 169 8182 172 2645 177 2647 557 2264 558 5027 174 5410 173 5418 175 5413 170 28837 168 2649 173 8184 170 2652 170 8181 173 2643 169 8188 176 2646 176 2643 168 2648 174 5417 176 5411 172 5413 170 5413 170
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 178 706 266 139 268 137 173 173 198 234 178 126768 175 299 169 86 275 130 267 138 172 230 177
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 554 1922 584 3809 582 3782 578 3821 580 1920 555 1941 544 1922 574
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 476 1470 465 3479 474 3469 474 3477 475 1467 468 1471 474 27473 472 1474 472 3475 467 3478 475 3468 474 1471 475 1468 467
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 301 2188 236 2169 235 2205 230 1009 234 1070 183 1064 179 2198 206 1046 207 1069 173 2207 207 1042 211 1062 201 1043 210 1032 231 1005 237 1039 234 1006 236
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8872 4453 570 1744 568 582 569 1741 571 1744 568 580 571 1738 564 1754 569 578 563 584 567 1749 563 581 570 580 571 1743 569 573 568 585 566 1746 566 580 571 580 571 1739 563 586 565 1749 563 579 572 582 569 577 564 1748 564 1752 571 574 567 1748 564 584 567 1742 570 1748 564 1747 565 41015 8898 2265 567 93853 8875 2262 570
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8904 4446 576 572 569 581 570 575 566 584 567 582 569 1739 573 579 572 575 566 1746 566 1750 572 1738 574 1741 571 1742 570 573 568 1750 572 1740 572 1740 572 578 573 572 569 581 570 1744 568 574 567 586 575 572 569 578 573 1742 570 1740 572 1743 569 579 572 1737 565 1753 570 1743 569 41010 8881 2257 565 93855 8903 2259 573
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8878 4448 564 584 567 583 568 577 564 586 565 584 567 1741 571 582 569 1743 569 1743 569 1746 566 1744 568 1747 565 1749 563 579 572 1747 565 581 570 1743 569 1746 566 578 573 1743 569 579 572 571 570 583 568 579 572 575 566 584 567 1743 569 581 570 1744 568 1740 572 1746 566 1746 566 41013 8898 2264 568 93853 8872 2265 567
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8900 4450 572 575 566 585 566 578 573 1743 569 579 572 1736 566 587 574 572 569 1743 569 1747 565 1745 567 582 569 1745 567 575 566 1753 570 1742 570 1742 570 1746 566 578 573 1742 570 578 573 570 571 582 569 578 573 574 567 583 568 1742 570 579 572 1742 570 1738 574 1744 568 1744 568 41012 8871 2266 566 93855 8903 2258 574
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8872 4454 568 1745 567 1749 563 1747 565 1750 562 1752 571 1737 565 1754 568 1743 569 578 563 587 564 581 570 580 571 577 564 579 572 581 570 576 565 1748 564 1751 572 1739 563 1752 571 1743 569 1739 563 590 571 575 566 581 570 580 571 574 567 583 568 580 571 572 569 1750 562 1749 563 41017 8905 2257 575 93846 8871 2266 566
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 176 7764 173 11361 544 1951 545 1948 176 8815 171 2319 177 2322 174 2321 175 2318 178 2313 173 18281 170 7746 170 11369 536 1954 542 1957 539 969 538 1954 542 1949 536 1962 534 1960 174 2320 176 2315 170 2328 178 2317 168
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 172 23035 176 2267 178 2285 170 2270 175 2288 177 11602 222 2218 216 2246 173 183 173 935 221 218 174 864 221 1250 171 1310 223 2219 216 2247 218 1244 223 216 176 869 170 1296 217 2239 216 1254 223 216 176 866 219 9127 169 7642 173 2284 171 2273 172 2290 175 2263 171 10143 178 10623 222 1245 222 217 175 1843 220 2226 219 1264 223 1237 174 183 178 952 219 2222 223 216 176 866 219 1249 172 9190 173 7637 178 2266 169 2286 169 2280 175 2284 171 10125 175 10622 224 215 177 868 216 2228 217 2238 171 1299 224 215 177 865 174 183 173 934 222 216 176 1848 215 1247 220 1265 222 762 170
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 7410 1482 382 2742 375 2747 380 2751 1630 1535 400 2724 1657 1529 1629 1538 407 2720 407 2716 401 2722 4125 1549 376 2751 376 2748 379 2744 1626 1541 405 2723 1658 1530 1628 1531 404 2726 401 2726 401 2723 4124 1542 383 2747 380 2747 380 2745 1626 1534 401 2729 1652 1539 1629 1532 403 2719 408 2722 405
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 4277 4319 520 518 521 521 518 518 521 1597 522 1594 515 1597 522 1599 520 1594 515 1600 519 1600 519 1594 515 526 513 527 522 512 517 528 521 517 522 516 513 1605 514 522 517 525 514 525 514 521 518 526 513 525 514 1600 519 523 516 1597 522 1596 513 1603 516 1595 514 1607 522 1593 516 40481 8749 2186 524 93986 8721 2188 522
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 1325 431 445 1199 1317 455 441 1207 443 1202 1294 457 449 1190 440 1209 441 1205 445 1198 1318 454 442 93237 1320 434 442 1201 1325 448 448 1200 440 1205 1291 460 446 1193 447 1202 448 1198 442 1201 1325 447 449
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8876 4450 572 575 566 585 566 578 573 577 564 585 566 577 564 589 572 574 567 1745 567 1749 563 1747 565 1750 562 1751 571 1737 565 1754 569 1743 569 1743 569 1747 565 579 572 1743 569 579 572 571 570 583 568 579 572 575 566 584 567 1743 569 581 570 1744 568 1740 572 1746 566 1746 566 41013 8898 2265 567 93853 8873 2264 568
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 300 1791 297 744 295 743 296 751 298 745 294 747 302 736 293 1837 271 745 294 747 302 1793 295 752 297 1802 296 1801 297 742 297 1806 302 31592 296 1801 297 742 297 749 300 744 295 745 294 745 294 752 297 1829 269 746 293 745 294 1809 300 744 295 1802 296 1799 299 748 301
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 178 2003 177 2899 177 1996 174 2908 168 2910 177 2000 170 2004 176
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8898 4173 564 642 570 1677 564 1677 564 645 567 640 572 631 571 641 571 635 567 639 563 1683 568 1673 568 641 571 636 566 637 565 647 565 641 571 634 568 642 570 1671 570 639 563 1682 569 632 570 643 569 636 566 1677 564 1683 568 636 566 1680 571 636 566 1674 567 1682 569 1674 567 40489 8904 2246 566 85626 8902 2248 564
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8897 4454 569 578 573 1743 569 576 565 1750 572 576 575 1733 569 584 567 1745 567 1745 567 583 568 1742 570 579 572 1742 570 573 568 1750 573 574 567 580 571 580 571 573 568 582 569 580 571 572 569 584 567 1744 568 1744 568 1748 575 1735 567 1749 574 1740 572 1736 566 1752 571 576 575 41005 8878 2259 563 93858 8901 2260 572
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8880 4446 566 1747 565 585 566 578 573 577 564 1750 573 571 570 1748 564 582 569 578 573 1743 569 1741 571 1744 568 580 571 1737 565 588 563 1749 563 583 568 582 569 576 565 1750 573 576 565 578 573 580 571 576 565 1747 565 1751 571 1738 564 586 565 1749 563 1745 567 1751 572 1741 571 41008 8905 2258 574 93846 8871 2266 566
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 3892 3856 525 978 529 977 530 969 528 977 530 974 523 975 532 1924 531 971 526 1924 531 975 532 1916 529 976 531 1921 524 1947 508 1925 530 1920 525 1926 529 1925 530 970 527 1927 528 976 531 1915 530 978 529 1921 1033 9201 3871 3867 524 977 530 975 522 981 526 972 525 983 524 978 529 1921 524 982 525 1923 532 973 524 1928 527 971 526 1931 524 1950 505 1922 523 1931 524 1924 531 1923 532 972 525 1922 523 985 533 1918 527 975 532 1922 1032
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8900 4451 571 576 575 1742 570 1739 573 1742 570 578 573 1736 566 1752 570 576 575 1737 575 575 566 579 572 578 573 1741 571 571 570 583 568 1745 567 579 572 578 573 1738 574 575 566 1748 575 568 573 581 570 576 575 1737 565 1751 572 573 568 1747 576 573 568 1741 571 1747 565 1747 565 41014 8878 2260 562 93858 8901 2261 571
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 875 904 1745 924 879 913 880 1786 873 919 874 917 1742 922 871 1802 877 912 1747 921 872 88714 880 907 1742 930 873 917 876 1788 871 924 879 910 1749 919 874 1798 871 916 1743 928 875
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 4758 1543 403 2731 407 2726 402 2739 1601 1514 401 2760 1580 1530 1577 1540 406 2758 400 2708 1602 1535 400 2740 408 2729 409 2726 401 2731 1599 1520 405 2758 1572 1540 1578 1532 403 2737 431 2706 1604 1535 411 2722 405 2734 403 2734 404 2731 1599 1512 403 2764 1576 1539 1578 1533 402 2730 428 2712 1608 1534 402
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8873 4453 570 578 563 1753 570 575 566 1749 563 585 566 1742 570 583 568 1744 568 1744 568 582 569 1741 571 578 573 1741 571 572 569 1749 563 583 568 1745 567 1748 564 1746 566 583 568 581 570 1738 564 589 572 1740 572 574 567 584 567 577 564 1752 571 1743 569 573 568 1751 572 575 566 41014 8900 2263 569 93851 8878 2259 563
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 171 313 176 798 337 133 600 232 170 126777 176 65 169 496 176 200 609
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 500 527 491 4033 500 4986 495 510 498 4054 500 499 499 4048 496 4974 497 530 499 4026 497 4989 492 513 495 4057 497 4967 493 4992 499 506 492 4060 494 505 493 4054 500 98563 497 529 500 4025 498 4988 493 512 496 4056 498 501 497 4050 493 4976 495 532 497 4028 495 4991 500 505 493 4059 495 4969 491 4994 497 508 490 4062 492 507 491 4056 498
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 879 901 871 1796 1770 903 869 917 876 916 877 913 880 906 877 918 875 914 879 1788 1768 1784 875 87826 871 921 872 1797 1769 897 875 919 874 915 878 910 873 920 873 914 879 913 870 1800 1776 1767 871
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 874 905 1774 894 878 914 879 908 875 917 876 915 878 907 876 919 874 1793 876 913 1777 895 878 88703 872 920 1769 901 872 913 870 925 878 910 873 916 877 916 877 910 873 1798 871 919 1770 894 878
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 3339 1714 415 445 420 1283 418 440 415 448 418 444 422 435 420 446 420 440 415 445 421 443 412 445 421 443 412 449 416 1279 412 455 421 439 416 443 412 452 414 444 411 452 414 1287 414 442 413 453 413 1287 414 446 419 444 422 437 418 445 421 441 414 442 413 452 414 447 419 1281 420 443 412 1285 416 1287 414 1287 414 1282 419 447 419 441 414 1286 415 448 418 1280 421 1282 419 443 412 1283 418 448 418 1283 418 73871 3336 1694 414 444 411 1291 410 452 414 442 413 453 413 448 418 442 413 450 416 443 412 450 416 447 419 437 418 448 418 1282 419 441 414 449 417 442 413 449 417 446 420 436 419 1287 414 446 420 440 415 1288 413 445 410 453 413 449 417 439 416 450 416 445 421 439 416 447 419 1279 412 451 415 1287 414 1282 419 1287 414 1285 416 444 411 453 413 1285 416 447 419 1283 418 1278 413 453 413 1287 414 446 419 1284 417
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 4411 4332 558 1660 561 596 565 612 559 597 564 617 565 585 566 620 561 591 560 620 561 595 566 611 560 597 564 1653 558 592 559 627 565 589 562 617 564 1630 560 617 564 592 559 22591 4439 4322 558 1639 561 618 563 590 561 622 560 592 559 624 557 597 564 612 559 600 561 618 563 590 561 622 559 1628 562 621 561 594 567 609 562 597 564 1652 559 595 566 617 564
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 3444 1767 413 487 419 1274 417 481 415 1277 414 488 418 1267 414 492 414 1276 415 484 412 1282 419 478 418 1275 416 1276 415 480 416 1280 421 479 417 1272 419 1275 416 1272 419 1274 417 484 412 484 412 493 413 1277 414 485 421 1273 418 479 417 486 420 1271 420 476 420 486 420 479 417 482 414 1280 411 1276 415 488 418 1273 418 478 418 488 418 481 415 1275 416 487 419 478 418 485 411 1280 421 475 421 1275 416 1273 418 69071 3439 1759 441 456 440 1253 438 463 443 1243 438 468 438 1251 440 460 446 1247 444 454 442 1251 440 461 445 1241 440 1256 445 455 441 1248 443 461 445 1242 439 1254 447 1245 446 1240 441 465 441 458 438 462 444 1249 442 456 440 1252 439 463 443 452 444 1252 439 461 445 454 442 461 445 452 444 1249 442 1250 441 454 442 1254 437 463 443 456 440 463 443 1245 446 456 440 462 444 451 445 1251 440 460 436 1253 438 1256 445
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8705 4317 583 682 581 688 585 678 585 1721 581 1722 580 681 582 690 583 682 581 1721 581 1725 587 1713 579 689 584 683 580 1718 584 1724 588 1714 588 677 586 683 580 683 580 1726 586 680 583 678 585 687 586 679 584 1718 584 1721 581 1719 583 685 588 1716 586 1713 579 1729 583 1719 583 41145 8706 2217 585 94686 8705 2217 584
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8888 4470 532 576 534 576 534 571 539 572 538 1706 535 568 532 581 529 578 532 1711 530 581 529 1711 530 1717 534 574 536 1703 538 575 535 572 538 1705 536 1711 530 1711 530 1716 535 1709 532 571 529 585 535 571 529 579 531 579 531 574 536 574 536 573 537 1701 530 1720 531 1712 529 39045 8912 2261 540 94838 8911 2235 536
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 874 915 1774 904 879 923 870 1816 1770 1800 1776 904 879 1805 874 931 1769 909 874 88698 876 927 1773 904 879 922 871 1819 1767 1796 1770 914 879 1809 870 928 1772 910 873
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 178 7753 174 2308 178 2284 171 2316 170 2298 177 10228 174 10724 223 1256 221 217 175 1868 169 2293 172 1327 216 1263 178 1316 217 2245 220 218 174 887 218 1261 170 10707 174 7752 175 2296 169 2314 171 2293 172 2307 179 10216 176 6265 174 10729 219 1258 219 1272 215 1268 173 2310 221 1255 222 217 175 877 172
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 532 1692 559 561 529 574 567 559 531 566 564 555 535 1694 557 568 532 1691 560 560 530 573 557 568 532 565 565 555 535 567 563 1688 533 564 567 554 536 567 563 562 538 558 562 558 532 1697 565 561 539 1683 558 1689 532 1697 564 1687 534 1689 562 1684 537
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 874 915 1774 904 879 923 870 927 876 1814 876 925 1775 900 872 1821 879 920 1769 909 874 88702 871 926 1774 907 876 925 878 917 876 1817 873 927 1773 905 878 1813 876 921 1769 912 871
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8884 4474 538 569 531 1716 535 570 530 580 530 1715 536 567 533 580 530 577 533 1710 531 1715 536 1705 536 1710 531 1714 537 1702 529 1720 531 1712 529 578 532 1715 536 1705 536 1710 531 577 533 570 530 584 536 571 529 1714 537 573 537 568 532 578 532 1713 538 1701 530 1719 532 1711 530 39044 8913 2260 531 94848 8907 2239 532
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 446 1694 455 1706 453 1705 424 628 452 597 452 622 458 1673 456 625 455 594 455 1706 454 590 459 621 459 591 458 616 453 591 458 622 539 22750 459 1675 454 1733 427 1712 427 622 458 588 451 622 458 1681 458 618 451 595 454 1705 455 598 451 625 454 592 457 616 453 598 451 626 535
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 3429 3445 875 2555 868 875 867 871 871 2560 873 868 874 2551 872 874 868 871 871 869 873 870 872 865 867 2565 868 873 869 2556 867 2567 866 874 868 2560 873 870 872 2555 868 2564 869 2586 847 2577 846 2589 844 870 872 32983 3470 3430 869 2559 874 868 874 867 875 2550 873 873 869 2559 874 865 867 877 875 862 870 873 869 872 870 2555 868 877 875 2554 869 2559 874 869 873 2554 869 873 869 2562 871 2553 870 2590 843 2586 847 2581 842 876 866
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8873 4452 571 1743 569 580 571 574 567 583 568 1746 566 1742 570 1748 564 582 569 578 563 1753 570 1740 572 1743 569 579 572 571 570 583 568 1744 568 579 572 578 573 572 569 1746 566 582 569 574 567 586 565 582 569 1743 569 1746 566 1744 568 581 570 1745 567 1741 571 1747 565 1746 566 41014 8898 2264 568 93853 8874 2263 569
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8902 4448 574 1739 573 1742 570 575 566 584 567 581 570 573 568 585 566 1746 566 580 571 580 571 1739 573 1742 570 1743 569 1739 573 1745 567 579 572 1741 571 1744 568 1742 570 1745 567 1747 565 1743 569 1749 573 1739 573 573 568 583 568 576 575 575 566 583 568 575 566 587 574 572 569 41011 8871 2266 566 93854 8902 2260 572
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 4275 4320 519 520 519 523 516 520 519 1599 520 520 519 515 524 521 518 520 519 1595 524 1595 524 1588 520 521 518 1599 520 1591 517 1603 516 1599 520 1595 524 1594 525 1588 521 1597 522 518 521 513 526 519 520 518 521 517 522 520 519 517 522 519 520 1597 522 1589 519 1601 518 1597 522 40475 8724 2186 514 93995 8752 2183 516
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 10380 4892 599 620 592 605 597 620 592 604 598 623 589 2081 598 627 595 2080 599 2101 598 2105 574 2099 590 2088 591 2111 599 591 590 2116 594 599 593 626 596 2082 597 619 593 2086 593 626 596 594 598 627 595 598 594 2106 593 604 598 2100 589 607 595 2107 593 2079 590 2116 594 2082 750 41149 8722 2109 590 94682 8727 2104 596
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 8879 4446 566 1747 565 1751 571 573 568 582 569 580 571 571 570 584 567 1744 568 579 572 578 573 1737 565 1751 572 1742 570 1738 564 1754 568 578 573 574 567 584 567 577 564 1752 571 577 564 580 571 582 569 577 564 1748 564 1752 571 1739 563 587 564 1750 572 1736 566 1752 571 1742 570 41009 8903 2260 572 93848 8880 2257 565
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 4271 4324 515 1600 519 1600 519 1594 515 1603 516 1601 518 1593 516 1605 514 1601 518 520 519 522 517 520 519 522 517 523 516 518 521 523 516 522 517 1598 521 1597 522 1591 518 1600 519 521 518 516 523 522 517 521 518 520 519 523 516 520 519 522 517 1599 520 1591 518 1603 516 1599 520 40477 8753 2183 516 93993 8724 2185 515
+#
+name: POWER
+type: raw
+frequency: 38000
+duty_cycle: 0.33
+data: 7847 3931 470 1448 467 495 472 1443 472 490 467 1451 464 491 466 499 468 491 466 4413 467 1455 470 486 471 1449 466 495 472 1441 464 501 466 492 465 494 463 22093 7851 3934 467 1454 471 490 467 1446 469 496 471 1446 469 489 468 494 473 484 473 4410 470 1449 466 489 468 1455 470 489 468 1449 466 496 471 486 471 490 467
diff --git a/lib/app-scened-template/file_worker.c b/lib/app-scened-template/file_worker.c
index 6ef2f0d4..f32d10d7 100644
--- a/lib/app-scened-template/file_worker.c
+++ b/lib/app-scened-template/file_worker.c
@@ -435,5 +435,6 @@ bool file_worker_is_file_exist(FileWorker* file_worker, const char* filename, bo
storage_file_close(file);
storage_file_free(file);
- return file_worker_check_common_errors(file_worker);
+ bool result = file_worker_check_common_errors(file_worker);
+ return result;
}
diff --git a/lib/flipper_file/flipper_file.c b/lib/flipper_file/flipper_file.c
index bfae395f..5e96c13a 100644
--- a/lib/flipper_file/flipper_file.c
+++ b/lib/flipper_file/flipper_file.c
@@ -159,7 +159,7 @@ bool flipper_file_get_value_count(FlipperFile* flipper_file, const char* key, ui
if(last) break;
}
- } while(true);
+ } while(false);
if(!storage_file_seek(flipper_file->file, position, true)) {
result = false;
diff --git a/lib/irda/encoder_decoder/irda.h b/lib/irda/encoder_decoder/irda.h
index c204ec3e..ac7c6026 100644
--- a/lib/irda/encoder_decoder/irda.h
+++ b/lib/irda/encoder_decoder/irda.h
@@ -7,8 +7,8 @@
extern "C" {
#endif
-#define IRDA_COMMON_CARRIER_FREQUENCY 38000
-#define IRDA_COMMON_DUTY_CYCLE 0.33
+#define IRDA_COMMON_CARRIER_FREQUENCY ((uint32_t)38000)
+#define IRDA_COMMON_DUTY_CYCLE ((float)0.33)
/* if we want to see splitted raw signals during brutforce,
* we have to have RX raw timing delay less than TX */
diff --git a/lib/irda/worker/irda_worker.c b/lib/irda/worker/irda_worker.c
index eda0ab74..0f9d3660 100644
--- a/lib/irda/worker/irda_worker.c
+++ b/lib/irda/worker/irda_worker.c
@@ -326,7 +326,6 @@ void irda_worker_tx_start(IrdaWorker* instance) {
osEventFlagsClear(instance->events, IRDA_WORKER_ALL_EVENTS);
furi_thread_set_callback(instance->thread, irda_worker_tx_thread);
- furi_thread_start(instance->thread);
instance->tx.steady_signal_sent = false;
instance->tx.need_reinitialization = false;
@@ -335,6 +334,7 @@ void irda_worker_tx_start(IrdaWorker* instance) {
irda_worker_furi_hal_message_sent_isr_callback, instance);
instance->state = IrdaWorkerStateStartTx;
+ furi_thread_start(instance->thread);
}
static void irda_worker_furi_hal_message_sent_isr_callback(void* context) {