diff --git a/README.md b/README.md index ec86f98..80e9ad0 100644 --- a/README.md +++ b/README.md @@ -54,4 +54,15 @@ The factory firmware is based on an [Arduino example sketch](examples/factory-v1 This repository provides an Arduino library that implements a driver for the magnetic sensors and computes wind speed and direction, exposing the values through a simple API. -[**How to install WindNerd Core library and program the board**](docs/PROGRAM.md) \ No newline at end of file +[**How to install WindNerd Core library and program the board**](docs/PROGRAM.md) + +## 4G Integration + +The WindNerd Core can be integrated with 4G modules for remote data transmission. An example implementation with the **Luat Air780E** 4G board is provided, featuring: + +- Periodic wake-up every 15 minutes +- Automatic transmission of wind speed and direction data +- Power-efficient operation with sleep mode +- AT command-based communication protocol + +[**4G Integration Guide**](docs/4G-INTEGRATION.md) | [**Example Sketch**](examples/4g-air780e/) \ No newline at end of file diff --git a/examples/air780e/MD5.cpp b/examples/air780e/MD5.cpp new file mode 100644 index 0000000..890f03d --- /dev/null +++ b/examples/air780e/MD5.cpp @@ -0,0 +1,127 @@ +#include "MD5.h" +#include +#include +#include +#include + +namespace { + +inline uint32_t leftrotate(uint32_t x, uint32_t c) { + return (x << c) | (x >> (32 - c)); +} + +void md5(const unsigned char* initial_msg, size_t initial_len, unsigned char* digest) { + static const uint32_t r[] = { + 7,12,17,22, 7,12,17,22, 7,12,17,22, 7,12,17,22, + 5,9,14,20, 5,9,14,20, 5,9,14,20, 5,9,14,20, + 4,11,16,23, 4,11,16,23, 4,11,16,23, 4,11,16,23, + 6,10,15,21, 6,10,15,21, 6,10,15,21, 6,10,15,21 + }; + + static const uint32_t k[] = { + 0xd76aa478,0xe8c7b756,0x242070db,0xc1bdceee, + 0xf57c0faf,0x4787c62a,0xa8304613,0xfd469501, + 0x698098d8,0x8b44f7af,0xffff5bb1,0x895cd7be, + 0x6b901122,0xfd987193,0xa679438e,0x49b40821, + 0xf61e2562,0xc040b340,0x265e5a51,0xe9b6c7aa, + 0xd62f105d,0x02441453,0xd8a1e681,0xe7d3fbc8, + 0x21e1cde6,0xc33707d6,0xf4d50d87,0x455a14ed, + 0xa9e3e905,0xfcefa3f8,0x676f02d9,0x8d2a4c8a, + 0xfffa3942,0x8771f681,0x6d9d6122,0xfde5380c, + 0xa4beea44,0x4bdecfa9,0xf6bb4b60,0xbebfbc70, + 0x289b7ec6,0xeaa127fa,0xd4ef3085,0x04881d05, + 0xd9d4d039,0xe6db99e5,0x1fa27cf8,0xc4ac5665, + 0xf4292244,0x432aff97,0xab9423a7,0xfc93a039, + 0x655b59c3,0x8f0ccc92,0xffeff47d,0x85845dd1, + 0x6fa87e4f,0xfe2ce6e0,0xa3014314,0x4e0811a1, + 0xf7537e82,0xbd3af235,0x2ad7d2bb,0xeb86d391 + }; + + uint32_t h0 = 0x67452301; + uint32_t h1 = 0xefcdab89; + uint32_t h2 = 0x98badcfe; + uint32_t h3 = 0x10325476; + + size_t new_len = (((initial_len + 8) / 64) + 1) * 64; + unsigned char* msg = (unsigned char*)calloc(new_len + 64, 1); + if (!msg) return; + memcpy(msg, initial_msg, initial_len); + msg[initial_len] = 0x80; + + uint64_t bits_len = (uint64_t)initial_len * 8; + memcpy(msg + new_len - 8, &bits_len, 8); + + for (size_t offset = 0; offset < new_len; offset += 64) { + uint32_t w[16]; + for (int i = 0; i < 16; ++i) { + const unsigned char* p = msg + offset + i*4; + w[i] = (uint32_t)p[0] | ((uint32_t)p[1] << 8) | ((uint32_t)p[2] << 16) | ((uint32_t)p[3] << 24); + } + + uint32_t a = h0; + uint32_t b = h1; + uint32_t c = h2; + uint32_t d = h3; + + for (uint32_t i = 0; i < 64; ++i) { + uint32_t f, g; + if (i < 16) { + f = (b & c) | ((~b) & d); + g = i; + } else if (i < 32) { + f = (d & b) | ((~d) & c); + g = (5*i + 1) % 16; + } else if (i < 48) { + f = b ^ c ^ d; + g = (3*i + 5) % 16; + } else { + f = c ^ (b | (~d)); + g = (7*i) % 16; + } + uint32_t tmp = d; + d = c; + c = b; + uint32_t to_add = a + f + k[i] + w[g]; + b = b + leftrotate(to_add, r[i]); + a = tmp; + } + + h0 += a; + h1 += b; + h2 += c; + h3 += d; + } + + free(msg); + + memcpy(digest + 0, &h0, 4); + memcpy(digest + 4, &h1, 4); + memcpy(digest + 8, &h2, 4); + memcpy(digest + 12, &h3, 4); +} + +} // namespace + +unsigned char* MD5::make_hash(char* input) { + if (!input) return nullptr; + size_t len = strlen(input); + unsigned char* out = (unsigned char*)malloc(16); + if (!out) return nullptr; + md5((const unsigned char*)input, len, out); + return out; +} + +char* MD5::make_digest(const unsigned char* hash, std::size_t len) { + if (!hash || len == 0) return nullptr; + const char hex[] = "0123456789abcdef"; + size_t out_len = len * 2 + 1; + char* out = (char*)malloc(out_len); + if (!out) return nullptr; + for (size_t i = 0; i < len; ++i) { + unsigned char v = hash[i]; + out[i*2] = hex[(v >> 4) & 0x0F]; + out[i*2 + 1] = hex[v & 0x0F]; + } + out[out_len - 1] = '\0'; + return out; +} diff --git a/examples/air780e/MD5.h b/examples/air780e/MD5.h new file mode 100644 index 0000000..7d558ef --- /dev/null +++ b/examples/air780e/MD5.h @@ -0,0 +1,17 @@ +#ifndef MD5_H +#define MD5_H + +#include + +class MD5 { +public: + // Compute raw 16-byte MD5 hash of a NUL-terminated C string. + // Caller must free() the returned buffer using free(). + static unsigned char* make_hash(char* input); + + // Convert raw hash bytes into a lowercase hex NUL-terminated string. + // Caller must free() the returned buffer using free(). + static char* make_digest(const unsigned char* hash, std::size_t len); +}; + +#endif // MD5_H diff --git a/examples/air780e/README.md b/examples/air780e/README.md new file mode 100644 index 0000000..3efafae --- /dev/null +++ b/examples/air780e/README.md @@ -0,0 +1,144 @@ +# Air780E Dual Upload - WindNerd WTP + Windguru + +This example uploads wind data to **both** WindNerd WTP and Windguru platforms using the Air780E 4G LTE modem. Designed for **long-term unattended deployment** with solar + battery power. + +## Features + +- **Dual platform upload**: Sends data to WindNerd WTP (POST) and Windguru (GET) +- **Auto APN detection**: Modem auto-detects carrier APN (fallback configurable) +- **Unique salt generation**: STM32 UID + 32-bit random (64-bit total, collision-proof) +- **Deep sleep**: Both MCU and modem enter low power modes between uploads +- **Bearer management**: Proper SAPBR setup for Air780E module +- **Configurable intervals**: Easy to adjust reporting frequency +- **Data efficient**: Optional sample upload toggle saves ~90% data + +### Reliability Features (for unattended operation) + +- **Independent Watchdog (IWDG)**: Auto-resets MCU if firmware hangs (10s timeout) +- **State timeout**: Aborts upload cycle if any state takes >90 seconds +- **Periodic modem reset**: AT+CFUN=1,1 every 96 cycles (~24 hours at 15-min intervals) + +## Configuration + +Edit these values in the sketch: + +\`\`\`cpp +// WindNerd WTP +#define WTP_SECRET_KEY "your-secret-key" // From windnerd.net device settings +#define ENABLE_WTP_SAMPLES false // true = send 3-sec samples, false = reports only + +// Windguru +#define WINDGURU_UID "your-station-uid" // From windguru.cz station settings +#define WINDGURU_PASSWORD "your-password" // Upload password +#define ENABLE_WINDGURU true // Set false to disable Windguru uploads + +// Network +#define APN_FALLBACK "internet" // Fallback APN (usually auto-detected) + +// Timing +#define REPORT_INTERVAL_MN 15 // Minutes between uploads + +// Reliability +#define WATCHDOG_TIMEOUT_SEC 10 // MCU reset if stuck for 10s +#define STATE_TIMEOUT_SEC 90 // Abort cycle if state exceeds 90s +#define MODEM_RESET_CYCLES 96 // Full modem reset every N cycles +\`\`\` + +## Data Sent + +### WindNerd WTP (HTTP POST) +- \`k=\` - Device secret key +- \`r,wa=,wd=,wn=,wx=\` - Report lines (avg, direction, min, max) +- \`s,wi=,wd=\` - Sample lines (optional, if ENABLE_WTP_SAMPLES=true) + +### Windguru (HTTP GET) +| Parameter | Description | +|-----------|-------------| +| \`uid\` | Station UID | +| \`salt\` | Unique ID (STM32 UID + random) | +| \`hash\` | MD5(salt + uid + password) | +| \`interval\` | Measurement interval in seconds | +| \`wind_avg\` | Average wind speed (knots) | +| \`wind_max\` | Maximum wind speed (knots) | +| \`wind_min\` | Minimum wind speed (knots) | +| \`wind_direction\` | Wind direction (degrees) | + +## Upload Sequence + +1. **Diagnostics**: CSQ (signal), CREG (GSM), CEREG (LTE), CGATT (GPRS) +2. **APN Query**: AT+CGCONTRDP (auto-detect carrier APN) +3. **Bearer setup**: SAPBR APN and open connection +4. **WindNerd WTP**: HTTP POST with wind reports (and optional samples) +5. **Windguru**: HTTP GET with wind data + interval +6. **Sleep**: AT+CSCLK=2 for modem, HAL_PWR_EnterSLEEPMode for MCU + +## Reliability Mechanisms + +### Watchdog Timer (IWDG) +The STM32's Independent Watchdog runs on the internal LSI clock (~32kHz) and operates independently of the main clock. If the firmware hangs for any reason: + +- \`kickWatchdog()\` must be called within 10 seconds +- Called automatically in \`loop()\` and \`processModem()\` +- MCU auto-resets if watchdog times out +- Watchdog persists across software resets (only power cycle disables) + +### State Timeout +If any modem state takes longer than 90 seconds (e.g., stuck waiting for network): + +- Current upload cycle is aborted +- HTTP session is cleaned up (\`AT+HTTPTERM\`) +- State machine jumps to SLEEP state +- Next cycle starts fresh on next interval + +### Periodic Modem Reset +Every 96 upload cycles (~24 hours at 15-min intervals): + +- Full modem reset via \`AT+CFUN=1,1\` +- Clears accumulated connection issues +- Prevents long-term modem memory leaks +- Modem restarts fresh for next cycle + +## Salt Generation + +The Windguru API requires a unique salt for each upload. This implementation uses: + +\`\`\` +salt = STM32_UID[31:0] + random(32-bit) +\`\`\` + +- **STM32 UID**: 32-bit portion of the chip's unique 96-bit factory ID (survives reflash) +- **Random**: 32-bit random seeded from full 96-bit UID (different each upload) +- **Total**: 64-bit uniqueness = ~18 quintillion combinations + +At 35,000 uploads/year, collision probability is negligible for centuries. + +## Data Usage Estimates + +| Interval | With Samples | Reports Only | +|----------|--------------|--------------| +| 2 min | ~1.8 GB/year | ~180 MB/year | +| 15 min | ~245 MB/year | **~25 MB/year** | +| 30 min | ~123 MB/year | ~13 MB/year | + +## Hardware + +- **MCU**: STM32G031F8 @ 8MHz (low power clock config) +- **Modem**: Air780E 4G LTE on USART2 +- **Debug**: USART1 @ 115200 baud +- **Power**: 2x 18650 batteries + solar panel (unattended operation) + +## Debug Output + +Connect FTDI RX to modem TX (USART2) to see AT commands and responses. +Debug serial (USART1) shows state transitions and error messages. + +## Memory Usage + +- **Flash**: ~62KB (94% of 64KB) +- **RAM**: ~5KB (60% of 8KB) + +Optimizations: +- No EEPROM library (uses STM32 UID directly) +- Char arrays instead of String class +- Reduced buffer sizes +- No sample storage (reports only mode) diff --git a/examples/air780e/air780e.ino b/examples/air780e/air780e.ino new file mode 100644 index 0000000..93a9875 --- /dev/null +++ b/examples/air780e/air780e.ino @@ -0,0 +1,804 @@ +/* + * Copyright (c) 2025, windnerd.net + * All rights reserved. + * + * This source code is licensed under the BSD 3-Clause License found in the + * LICENSE file in the root directory of this source tree. + * + * Air780E 4G - Dual Upload to WindNerd WTP + Windguru + * Uses STM32 UID + random for unique Windguru salt + * + * Reliability features for unattended deployment: + * - Independent Watchdog (IWDG) - auto-reset if MCU hangs + * - State timeout - escape stuck modem states + * - Periodic modem reset - clear accumulated errors + * - Ultra-low power mode - extends battery life + */ + +#include "Arduino.h" +#include "Windnerd_Core.h" +#include "MD5.h" +#include "stm32g0xx_hal.h" + +// STM32 Unique Device ID address +#define STM32_UID_BASE 0x1FFF7590 + +// ==================== CONFIGURATION ==================== +#define REPORT_INTERVAL_MN 15 // Interval in minutes between uploads + +// If set to 1, rotate reported wind direction by 180° because the +// vane magnet is installed upside-down. Set to 0 for normal polarity. +#define INVERT_VANE_POLARITY 1 + +// WindNerd WTP configuration +#define WTP_SECRET_KEY "YOUR_SECRET_KEY_HERE" // Replace with your WTP device secret key +#define ENABLE_WTP_SAMPLES false // Set to false to send only reports (saves ~90% data) + +// Windguru configuration +#define WINDGURU_UID "YOUR_UID_HERE" // Replace with your Windguru station UID +#define WINDGURU_PASSWORD "YOUR_PASSWORD_HERE" // Replace with your Windguru station password +#define ENABLE_WINDGURU true // Set to false to disable Windguru uploads + +// Network configuration +#define APN_FALLBACK "internet" // Add an APN as fallback if modem doesnt auto-detect + +// Sleep configuration +#define MODEM_BAUD_RATE 9600 // 9600 baud for reliable sleep/wake (per datasheet) +#define SLEEP_WAIT_TIME_SEC 3 // Time to wait before sleeping (1-5 sec recommended) +#define ULTRA_LOW_POWER_MODE 1 // 0=Sleep mode 2, 1=Sleep mode 3 (ultra-low power) + +// Reliability configuration (for unattended deployment) +#define WATCHDOG_TIMEOUT_SEC 10 // Watchdog timeout - MCU resets if not kicked +#define STATE_TIMEOUT_SEC 90 // Max time in any state before aborting cycle +#define MODEM_RESET_CYCLES 96 // Hard reset modem every N cycles (96 = daily at 15min) + +// ==================== GLOBALS ==================== +WN_Core Anemometer; +HardwareSerial SerialDebug(USART1); // Debug output +HardwareSerial SerialOutput(USART2); // 4G modem + +// First upload after 30 seconds (not full interval) to get modem sleeping faster +unsigned long last_uploading_time = 0; // Will be set in setup() +uint16_t post_cnt = 0; + +// Delay before first upload (seconds) - allows modem to connect +#define FIRST_UPLOAD_DELAY_SEC 30 + +// Unique salt for Windguru (STM32 UID + random) +char salt_str[16] = "0"; +uint32_t device_uid = 0; // Part of STM32 unique ID + +// Wind data for Windguru (latest report) +float last_avg_speed = 0.0f; +float last_max_speed = 0.0f; +float last_min_speed = 0.0f; +int16_t last_avg_dir = 0; + +// Modem sleep state tracking +bool modem_is_sleeping = false; // Start awake until first sleep + +// ==================== STATE MACHINE ==================== +enum Modem_steps +{ + START = 0, + CHECK_CSQ, // Signal quality + CHECK_CREG, // GSM registration + CHECK_CEREG, // LTE registration + CHECK_CGATT, // GPRS attach status + QUERY_APN, // Query APN from network + GET_TIME, // Get network time for Windguru salt + CHECK_CGPADDR, // Check IP address + CGATT, // GPRS attach + SAPBR_APN, // Set APN in bearer profile + SAPBR_OPEN, // Open bearer + SAPBR_QUERY, // Query bearer status/IP + + // WindNerd WTP upload + WTP_TERMINATE, + WTP_INIT, + WTP_SET_CID, + WTP_SET_CONTENT, + WTP_SET_URL, + WTP_SET_DATA_LEN, + WTP_SEND_DATA, + WTP_POST, + WTP_READ, + + // Windguru upload + WG_TERMINATE, + WG_INIT, + WG_SET_CID, + WG_SET_URL, + WG_GET, + WG_READ, + + GO_SLEEP, + SLEEP, +}; + +unsigned long last_step_time = millis(); +unsigned long time_to_wait_before_next_step = 0; +unsigned long cycle_start_time = 0; // For state timeout detection +Modem_steps modem_step = SLEEP; + +// ==================== HELPER FUNCTIONS ==================== + +void waitForNextStep(uint16_t time_to_wait) +{ + last_step_time = millis(); + time_to_wait_before_next_step = time_to_wait; + modem_step = static_cast(modem_step + 1); +} + +void jumpToStep(Modem_steps step, uint16_t time_to_wait) +{ + last_step_time = millis(); + time_to_wait_before_next_step = time_to_wait; + modem_step = step; +} + +void sendCommandToModem(const char *cmd) +{ + SerialOutput.println(cmd); + SerialDebug.printf("\r\n>>> %s\r\n", cmd); +} + +void sendTextToModem(const char *txt) +{ + SerialOutput.print(txt); + SerialDebug.printf(">>> %s\r\n", txt); +} + +// ==================== MODEM POWER MANAGEMENT ==================== + +void configureModemSleep() { + SerialDebug.println("Configuring modem sleep parameters..."); + + // Disable sleep first to ensure commands are received + SerialOutput.println("AT+CSCLK=0"); + delay(200); + + // Set sleep wait time (seconds of UART idle before sleeping) + // Default is 5s, we use 3s for faster sleep entry + char buffer[32]; + sprintf(buffer, "AT+WAKETIM=%d", SLEEP_WAIT_TIME_SEC); + SerialOutput.println(buffer); + SerialDebug.printf(">>> %s\r\n", buffer); + delay(200); + + // Save to NV so it persists across resets + SerialOutput.println("AT&W"); + delay(200); + + SerialDebug.println("Modem sleep config complete"); + modem_is_sleeping = false; +} + +void wakeModem() { + if (!modem_is_sleeping) { + return; // Already awake + } + + SerialDebug.println("Waking modem..."); + + // Send multiple AT commands to wake modem + // First bytes may be lost while modem wakes from sleep + // No RX connected, so we can't check for response - just use delays + for (int i = 0; i < 3; i++) { + SerialOutput.println("AT"); + delay(200); + } + + modem_is_sleeping = false; + SerialDebug.println("Wake sequence sent"); +} + +void putModemToSleep() { + SerialDebug.println("Enabling modem auto-sleep..."); + + // Enable auto-sleep mode + SerialOutput.println("AT+CSCLK=2"); + + // CRITICAL: Modem needs WAKETIM seconds of UART silence to actually sleep! + // We must NOT send anything during this time + SerialDebug.printf("Waiting %ds for modem to enter sleep...\r\n", SLEEP_WAIT_TIME_SEC + 1); + + // Wait slightly longer than WAKETIM to ensure modem is actually sleeping + // Kick watchdog during this wait to prevent reset + for (int i = 0; i < (SLEEP_WAIT_TIME_SEC + 1) * 10; i++) { + delay(100); + kickWatchdog(); + } + + modem_is_sleeping = true; + SerialDebug.println("Modem should now be sleeping"); +} + +// ==================== WINDNERD WTP FUNCTIONS ==================== + +void composeReportLine(unsigned i, char *buffer) +{ + wn_wind_report_t report = Anemometer.computeReportForPeriodInSecIndexedFromLast(60, i); + char wa[6], wn[6], wx[6]; + dtostrf(report.avg_speed, 4, 1, wa); // Fixed width 4 chars (e.g., " 0.0" or "12.3") + dtostrf(report.min_speed, 4, 1, wn); + dtostrf(report.max_speed, 4, 1, wx); + sprintf(buffer, "r,wa=%s,wd=%03d,wn=%s,wx=%s;", wa, report.avg_dir, wn, wx); + + // Store for Windguru (use most recent report) + if (i == 0) { + last_avg_speed = report.avg_speed; + last_max_speed = report.max_speed; + last_min_speed = report.min_speed; + last_avg_dir = report.avg_dir; + } +} + +void composeSampleLine(unsigned i, char *buffer) +{ + wn_instant_wind_sample_t sample = Anemometer.getSampleIndexedFromLast(i); + char wi[6]; + dtostrf(sample.speed, 4, 1, wi); + sprintf(buffer, "s,wi=%s,wd=%03d;", wi, sample.dir); +} + +int calculateWtpPayloadLength() +{ + // k=<16chars>; = 19 bytes + // r,wa=XX.X,wd=XXX,wn=XX.X,wx=XX.X; = 33 bytes per report + // s,wi=XX.X,wd=XXX; = 17 bytes per sample + int len = 19 + 33 * REPORT_INTERVAL_MN; + #if ENABLE_WTP_SAMPLES + len += 17 * REPORT_INTERVAL_MN * 20; + #endif + return len; +} + +// ==================== WINDGURU FUNCTIONS ==================== + +void generateWindguruHash(char* hashOut, const char* salt, const char* uid, const char* password) +{ + // Hash = MD5(salt + uid + password) + // Build input string in a small buffer + char input[80]; + snprintf(input, sizeof(input), "%s%s%s", salt, uid, password); + + unsigned char* hash = MD5::make_hash(input); + char* md5str = MD5::make_digest(hash, 16); + strcpy(hashOut, md5str); + + free(hash); + free(md5str); +} + +void buildWindguruUrl(char* url, size_t maxLen) +{ + // Use upload_counter as salt (unique, persists in flash) + char hash[33]; + generateWindguruHash(hash, salt_str, WINDGURU_UID, WINDGURU_PASSWORD); + + // Convert wind speeds from m/s to knots (1 m/s = 1.94384 knots) + float avgKnots = last_avg_speed * 1.94384f; + float maxKnots = last_max_speed * 1.94384f; + float minKnots = last_min_speed * 1.94384f; + + // Build URL with wind data (use minimal width to avoid spaces) + char avgStr[8], maxStr[8], minStr[8]; + dtostrf(avgKnots, 1, 1, avgStr); // Width 1 = no padding + dtostrf(maxKnots, 1, 1, maxStr); + dtostrf(minKnots, 1, 1, minStr); + + // interval = reporting period in seconds + int interval = REPORT_INTERVAL_MN * 60; + + snprintf(url, maxLen, + "AT+HTTPPARA=\"URL\",\"http://www.windguru.cz/upload/api.php?uid=%s&salt=%s&hash=%s&interval=%d&wind_avg=%s&wind_max=%s&wind_min=%s&wind_direction=%d\"", + WINDGURU_UID, salt_str, hash, interval, avgStr, maxStr, minStr, last_avg_dir); +} + +// ==================== STATE MACHINE ==================== + +void processModem() +{ + // Kick watchdog in every call (prevents reset during normal operation) + kickWatchdog(); + + // STATE TIMEOUT: If cycle takes too long, abort and go to sleep + if (modem_step != SLEEP && modem_step != START && + (millis() - cycle_start_time > STATE_TIMEOUT_SEC * 1000UL)) + { + SerialDebug.println("\r\n!!! STATE TIMEOUT - Aborting cycle !!!"); + sendCommandToModem("AT+HTTPTERM"); // Clean up HTTP + delay(100); + putModemToSleep(); + modem_step = SLEEP; + return; + } + + // START state - no wait needed + if (modem_step == START) + { + cycle_start_time = millis(); // Record cycle start for timeout + + // Wake modem if sleeping + if (modem_is_sleeping) { + wakeModem(); + } + + // PERIODIC MODEM RESET: Every N cycles, hard reset modem + if (post_cnt > 0 && post_cnt % MODEM_RESET_CYCLES == 0) + { + SerialDebug.println("\r\n*** PERIODIC MODEM RESET ***"); + SerialOutput.println("AT+CFUN=1,1"); // Full modem reset + delay(5000); // Wait for modem to restart + + // Re-establish communication at 9600 + SerialOutput.println("AT"); + delay(200); + SerialOutput.println("AT"); + delay(200); + + configureModemSleep(); + } + + // Disable auto-sleep during active operations + SerialOutput.println("AT+CSCLK=0"); + delay(100); + + // Generate unique salt: 32-bit UID + 32-bit random = 64-bit total uniqueness + // Salt format: 8 hex chars (UID) + 8 hex chars (random) = 16 chars max + // This ensures billions of uploads before any collision risk + uint32_t rnd = (uint32_t)random(0, 0x7FFFFFFF) ^ ((uint32_t)random(0, 0x7FFFFFFF) << 1); + sprintf(salt_str, "%lx%lx", device_uid, rnd); + + SerialDebug.println("\r\n========== UPLOAD CYCLE START =========="); + post_cnt++; + sendCommandToModem("AT"); + waitForNextStep(100); + return; + } + + // All other states wait for timeout + if (modem_step != SLEEP && (millis() - last_step_time > time_to_wait_before_next_step)) + { + // ==================== DIAGNOSTICS ==================== + if (modem_step == CHECK_CSQ) + { + sendCommandToModem("AT+CSQ"); + waitForNextStep(100); + return; + } + + if (modem_step == CHECK_CREG) + { + sendCommandToModem("AT+CREG?"); + waitForNextStep(100); + return; + } + + if (modem_step == CHECK_CEREG) + { + sendCommandToModem("AT+CEREG?"); + waitForNextStep(100); + return; + } + + if (modem_step == CHECK_CGATT) + { + sendCommandToModem("AT+CGATT?"); + waitForNextStep(100); + return; + } + + if (modem_step == QUERY_APN) + { + // Query APN from active PDP context + // Response: +CGCONTRDP: 1,5,"apnname",... + sendCommandToModem("AT+CGCONTRDP=1"); + waitForNextStep(500); + return; + } + + if (modem_step == GET_TIME) + { + // Get network time for Windguru salt + // Response: +CCLK: "YY/MM/DD,HH:MM:SS+TZ" + sendCommandToModem("AT+CCLK?"); + waitForNextStep(200); + return; + } + + if (modem_step == CHECK_CGPADDR) + { + sendCommandToModem("AT+CGPADDR=1"); + waitForNextStep(100); + return; + } + + // ==================== BEARER SETUP ==================== + if (modem_step == CGATT) + { + sendCommandToModem("AT+CGATT=1"); + waitForNextStep(500); + return; + } + + if (modem_step == SAPBR_APN) + { + char buffer[64]; + sprintf(buffer, "AT+SAPBR=3,1,\"APN\",\"%s\"", APN_FALLBACK); + sendCommandToModem(buffer); + waitForNextStep(100); + return; + } + + if (modem_step == SAPBR_OPEN) + { + sendCommandToModem("AT+SAPBR=1,1"); + waitForNextStep(2000); + return; + } + + if (modem_step == SAPBR_QUERY) + { + sendCommandToModem("AT+SAPBR=2,1"); + waitForNextStep(100); + return; + } + + // ==================== WINDNERD WTP UPLOAD ==================== + if (modem_step == WTP_TERMINATE) + { + SerialDebug.println("\r\n--- WindNerd WTP Upload ---"); + sendCommandToModem("AT+HTTPTERM"); + waitForNextStep(100); + return; + } + + if (modem_step == WTP_INIT) + { + sendCommandToModem("AT+HTTPINIT"); + waitForNextStep(100); + return; + } + + if (modem_step == WTP_SET_CID) + { + sendCommandToModem("AT+HTTPPARA=\"CID\",1"); + waitForNextStep(100); + return; + } + + if (modem_step == WTP_SET_CONTENT) + { + sendCommandToModem("AT+HTTPPARA=\"CONTENT\",\"text/plain\""); + waitForNextStep(100); + return; + } + + if (modem_step == WTP_SET_URL) + { + sendCommandToModem("AT+HTTPPARA=\"URL\",\"http://wtp.windnerd.net/post\""); + waitForNextStep(100); + return; + } + + if (modem_step == WTP_SET_DATA_LEN) + { + char buffer[32]; + sprintf(buffer, "AT+HTTPDATA=%d,10000", calculateWtpPayloadLength()); + sendCommandToModem(buffer); + waitForNextStep(200); // Wait for DOWNLOAD prompt + return; + } + + if (modem_step == WTP_SEND_DATA) + { + char buffer[64]; + + // Send key + sprintf(buffer, "k=%s;", WTP_SECRET_KEY); + sendTextToModem(buffer); + + // Send reports + for (unsigned i = 0; i < REPORT_INTERVAL_MN; i++) + { + composeReportLine(i, buffer); + sendTextToModem(buffer); + } + + // Send samples (if enabled) + #if ENABLE_WTP_SAMPLES + for (unsigned i = 0; i < REPORT_INTERVAL_MN * 20; i++) + { + composeSampleLine(i, buffer); + sendTextToModem(buffer); + } + #endif + + waitForNextStep(500); + return; + } + + if (modem_step == WTP_POST) + { + SerialDebug.println(">>> WTP POST <<<"); + sendCommandToModem("AT+HTTPACTION=1"); + waitForNextStep(15000); // Wait longer for server response + return; + } + + if (modem_step == WTP_READ) + { + SerialDebug.println(">>> WTP READ <<<"); + sendCommandToModem("AT+HTTPREAD"); + waitForNextStep(1000); + return; + } + + // ==================== WINDGURU UPLOAD ==================== + if (modem_step == WG_TERMINATE) + { + #if ENABLE_WINDGURU + SerialDebug.println("\r\n--- Windguru Upload ---"); + sendCommandToModem("AT+HTTPTERM"); + waitForNextStep(100); + #else + jumpToStep(GO_SLEEP, 10); + #endif + return; + } + + if (modem_step == WG_INIT) + { + sendCommandToModem("AT+HTTPINIT"); + waitForNextStep(100); + return; + } + + if (modem_step == WG_SET_CID) + { + sendCommandToModem("AT+HTTPPARA=\"CID\",1"); + waitForNextStep(100); + return; + } + + if (modem_step == WG_SET_URL) + { + char url[240]; // Increased for wind_min + interval params + buildWindguruUrl(url, sizeof(url)); + sendCommandToModem(url); + waitForNextStep(100); + return; + } + + if (modem_step == WG_GET) + { + sendCommandToModem("AT+HTTPACTION=0"); // GET request + waitForNextStep(10000); + return; + } + + if (modem_step == WG_READ) + { + sendCommandToModem("AT+HTTPREAD"); + waitForNextStep(1000); + return; + } + + // ==================== CLEANUP & SLEEP ==================== + if (modem_step == GO_SLEEP) + { + // Terminate HTTP session + sendCommandToModem("AT+HTTPTERM"); + delay(500); // Give modem time to close HTTP + + SerialDebug.printf("\r\n========== CYCLE %d COMPLETE ==========\r\n", post_cnt); + + // Put modem to sleep - this waits for WAKETIM+1 seconds + putModemToSleep(); + + modem_step = SLEEP; + return; + } + } +} + +// ==================== SETUP & LOOP ==================== + +// ==================== WATCHDOG ==================== +// Direct IWDG register access for maximum compatibility + +// IWDG Key register values +#define IWDG_KEY_RELOAD 0xAAAA // Reload the counter +#define IWDG_KEY_ENABLE 0xCCCC // Enable the watchdog +#define IWDG_KEY_WRITE_ACCESS 0x5555 // Enable write access to PR and RLR + +void kickWatchdog() +{ + // Reload the watchdog counter by writing key to KR register + IWDG->KR = IWDG_KEY_RELOAD; +} + +void initWatchdog() +{ + // Configure Independent Watchdog via direct register access + // IWDG runs on ~32kHz LSI clock (varies 30-38kHz) + // Timeout = (Prescaler * (Reload + 1)) / LSI_freq + // With prescaler=128 (PR=5) and reload=2500: timeout ≈ 10 seconds + + // Enable LSI clock first (required for IWDG) + RCC->CSR |= RCC_CSR_LSION; + + // Wait for LSI to be ready (with timeout) + uint32_t timeout = 10000; + while (!(RCC->CSR & RCC_CSR_LSIRDY) && timeout--) { } + + if (timeout == 0) { + SerialDebug.println("LSI clock failed - watchdog disabled"); + return; + } + + // Enable write access to IWDG_PR and IWDG_RLR + IWDG->KR = IWDG_KEY_WRITE_ACCESS; + + // Set prescaler to 128 (PR = 5) + // 0=4, 1=8, 2=16, 3=32, 4=64, 5=128, 6=256, 7=256 + IWDG->PR = 5; + + // Set reload value (12-bit max = 4095) + // Timeout = 128 * 2500 / 32000 ≈ 10 seconds + IWDG->RLR = 2500; + + // Wait for registers to be updated (with timeout) + timeout = 10000; + while ((IWDG->SR != 0) && timeout--) { } + + // Enable the watchdog + IWDG->KR = IWDG_KEY_ENABLE; + + // Initial reload + kickWatchdog(); + + SerialDebug.printf("Watchdog enabled (%ds timeout)\r\n", WATCHDOG_TIMEOUT_SEC); +} + +void setup() +{ + SerialDebug.begin(115200); + SerialOutput.begin(115200); + + // Turn off the onboard LED (usually PA4 or LED_BUILTIN) + #ifdef LED_BUILTIN + pinMode(LED_BUILTIN, OUTPUT); + digitalWrite(LED_BUILTIN, LOW); + #endif + + // Get STM32 unique device ID and seed random generator + device_uid = *(uint32_t*)(STM32_UID_BASE); + randomSeed(device_uid ^ *(uint32_t*)(STM32_UID_BASE + 4) ^ *(uint32_t*)(STM32_UID_BASE + 8)); + + SerialDebug.println("\r\n========================================"); + SerialDebug.println(" WindNerd Core 4G - Air780E"); + SerialDebug.println(" Dual Upload: WTP + Windguru"); + SerialDebug.println(" LOW POWER MODE"); + SerialDebug.println("========================================"); + SerialDebug.printf("Report interval: %d minutes\r\n", REPORT_INTERVAL_MN); + SerialDebug.printf("Modem reset every: %d cycles\r\n", MODEM_RESET_CYCLES); + SerialDebug.printf("Modem baud: %d\r\n", MODEM_BAUD_RATE); + + Anemometer.begin(); + // Apply compile-time inversion setting + Anemometer.invertVanePolarity(INVERT_VANE_POLARITY); +#if INVERT_VANE_POLARITY + SerialDebug.println("Vane polarity inversion ENABLED (180°)"); +#else + SerialDebug.println("Vane polarity inversion DISABLED"); +#endif + + // Wait for modem to boot (2-3 seconds) + SerialDebug.println("Waiting for modem boot..."); + delay(3000); + + // Initialize modem - try 115200 first, then switch to 9600 + // NOTE: No RX connected, so we can't verify responses + SerialDebug.println("Initializing modem..."); + + // Send AT at 115200 (factory default) + SerialOutput.println("AT"); + delay(200); + SerialOutput.println("AT"); + delay(200); + + // Switch modem to 9600 baud for reliable sleep/wake + SerialDebug.printf("Setting modem to %d baud...\r\n", MODEM_BAUD_RATE); + SerialOutput.printf("AT+IPR=%d\r\n", MODEM_BAUD_RATE); + delay(500); // Give modem time to process + + // Switch MCU serial to match + SerialOutput.end(); + delay(100); + SerialOutput.begin(MODEM_BAUD_RATE); + delay(300); + + // Send AT at new baud to verify (modem will respond even if we can't read it) + SerialOutput.println("AT"); + delay(200); + SerialOutput.println("AT"); + delay(200); + + SerialDebug.printf("Modem baud set to %d (assumed OK)\r\n", MODEM_BAUD_RATE); + + // Configure modem sleep parameters (but don't enable sleep yet) + configureModemSleep(); + + // Initialize watchdog AFTER all setup is complete + initWatchdog(); + + // Set first upload to happen after FIRST_UPLOAD_DELAY_SEC + // This gives modem time to connect before first upload, then sleep + last_uploading_time = millis() - (REPORT_INTERVAL_MN * 60 * 1000UL) + (FIRST_UPLOAD_DELAY_SEC * 1000UL); + + delay(1000); + SerialDebug.printf("System ready! First upload in %d seconds\r\n", FIRST_UPLOAD_DELAY_SEC); +} + +void loop() +{ + Anemometer.loop(); + + // Kick watchdog to prevent reset + kickWatchdog(); + + // Start upload cycle when interval expires + if (modem_step == SLEEP && (millis() - last_uploading_time > (REPORT_INTERVAL_MN * 60 * 1000UL))) + { + SerialDebug.println("\r\n>>> UPLOAD INTERVAL EXPIRED <<<"); + + // Wake modem from sleep + wakeModem(); + + // Start the upload cycle + modem_step = START; + last_uploading_time = millis(); + cycle_start_time = millis(); + } + + // Process modem state machine + processModem(); + + // MCU light sleep - millis() keeps running, wakes on any interrupt + HAL_PWR_EnterSLEEPMode(PWR_LOWPOWERREGULATOR_ON, PWR_SLEEPENTRY_WFI); +} + +// ==================== CLOCK CONFIG (8MHz for low power) ==================== + +void SystemClock_Config(void) +{ + RCC_OscInitTypeDef RCC_OscInitStruct = {0}; + RCC_ClkInitTypeDef RCC_ClkInitStruct = {0}; + + HAL_PWREx_ControlVoltageScaling(PWR_REGULATOR_VOLTAGE_SCALE1); + + RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI; + RCC_OscInitStruct.HSIState = RCC_HSI_ON; + RCC_OscInitStruct.HSIDiv = RCC_HSI_DIV2; + RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_DEFAULT; + RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE; + if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) + { + Error_Handler(); + } + + RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_PCLK1; + RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_HSI; + RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1; + RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV1; + + if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_0) != HAL_OK) + { + Error_Handler(); + } + + SystemCoreClockUpdate(); +} \ No newline at end of file diff --git a/examples/air780e/build/air780e-dual.ino.bin b/examples/air780e/build/air780e-dual.ino.bin new file mode 100755 index 0000000..e3d0d15 Binary files /dev/null and b/examples/air780e/build/air780e-dual.ino.bin differ diff --git a/examples/air780e/build/air780e-dual.ino.elf b/examples/air780e/build/air780e-dual.ino.elf new file mode 100755 index 0000000..e1fc80b Binary files /dev/null and b/examples/air780e/build/air780e-dual.ino.elf differ diff --git a/examples/air780e/build/air780e-dual.ino.hex b/examples/air780e/build/air780e-dual.ino.hex new file mode 100644 index 0000000..0290f54 --- /dev/null +++ b/examples/air780e/build/air780e-dual.ino.hex @@ -0,0 +1,3979 @@ +:020000040800F2 +:1000000000200020D58200082583000825830008F1 +:1000100000000000000000000000000000000000E0 +:100020000000000000000000000000002583000820 +:10003000000000000000000025830008D75B0008D6 +:1000400025830008258300082583000825830008F0 +:10005000258300084D5E00085D5E00086D5E0008A7 +:100060000000000025830008258300082583000880 +:1000700025830008D9580008F1580008F9580008ED +:100080001159000825830008258300082959000814 +:100090000000000041590008595900082D7A000855 +:1000A000457A00082583000825830008156C0008A0 +:0C00B0002D6C0008496C000800000000E6 +:1000BC000023C25C0133002AFBD1581E704700009C +:1000CC0002B4714649084900095C49008E4402BCDF +:1000DC007047C04603B47146490840004900095EA8 +:1000EC0049008E4403BC7047002243088B4274D3F2 +:1000FC0003098B425FD3030A8B4244D3030B8B421D +:10010C0028D3030C8B420DD3FF22090212BA030C25 +:10011C008B4202D31212090265D0030B8B4219D306 +:10012C0000E0090AC30B8B4201D3CB03C01A524126 +:10013C00830B8B4201D38B03C01A5241430B8B426E +:10014C0001D34B03C01A5241030B8B4201D30B0357 +:10015C00C01A5241C30A8B4201D3CB02C01A52417E +:10016C00830A8B4201D38B02C01A5241430A8B4241 +:10017C0001D34B02C01A5241030A8B4201D30B022A +:10018C00C01A5241CDD2C3098B4201D3CB01C01A44 +:10019C00524183098B4201D38B01C01A524143094E +:1001AC008B4201D34B01C01A524103098B4201D33C +:1001BC000B01C01A5241C3088B4201D3CB00C01AA9 +:1001CC00524183088B4201D38B00C01A5241430821 +:1001DC008B4201D34B00C01A5241411A00D2014646 +:1001EC00524110467047FFE701B5002000F0F0F8CF +:1001FC0002BDC0460029F7D076E7704703460B4393 +:10020C007FD4002243088B4274D303098B425FD303 +:10021C00030A8B4244D3030B8B4228D3030C8B422F +:10022C000DD3FF22090212BA030C8B4202D3121215 +:10023C00090265D0030B8B4219D300E0090AC30BEA +:10024C008B4201D3CB03C01A5241830B8B4201D397 +:10025C008B03C01A5241430B8B4201D34B03C01A80 +:10026C005241030B8B4201D30B03C01A5241C30AF8 +:10027C008B4201D3CB02C01A5241830A8B4201D369 +:10028C008B02C01A5241430A8B4201D34B02C01A53 +:10029C005241030A8B4201D30B02C01A5241CDD2F8 +:1002AC00C3098B4201D3CB01C01A524183098B4243 +:1002BC0001D38B01C01A524143098B4201D34B012C +:1002CC00C01A524103098B4201D30B01C01A52418F +:1002DC00C3088B4201D3CB00C01A524183088B4216 +:1002EC0001D38B00C01A524143088B4201D34B00FF +:1002FC00C01A5241411A00D2014652411046704771 +:10030C005DE0CA0F00D04942031000D34042534075 +:10031C0000229C4603098B422DD3030A8B4212D335 +:10032C00FC22890112BA030A8B420CD38901921167 +:10033C008B4208D3890192118B4204D389013AD0A4 +:10034C00921100E08909C3098B4201D3CB01C01A79 +:10035C00524183098B4201D38B01C01A524143098C +:10036C008B4201D34B01C01A524103098B4201D37A +:10037C000B01C01A5241C3088B4201D3CB00C01AE7 +:10038C00524183088B4201D38B00C01A5241D9D2FF +:10039C0043088B4201D34B00C01A5241411A00D280 +:1003AC000146634652415B10104601D34042002B7C +:1003BC0000D54942704763465B1000D3404201B5FB +:1003CC00002000F005F802BD0029F8D016E77047B0 +:1003DC007047C0468446100062468C46190063463E +:1003EC0000E0C0461FB50CF0B5FE002801D400217A +:1003FC00C8421FBD10B50CF0F7FD4042013010BDD6 +:10040C0010B50CF0A7FE002801DB002010BD012068 +:10041C0010BDC04610B50CF09DFE002801DD00207B +:10042C0010BD012010BDC04610B50CF023FE0028F5 +:10043C0001DC002010BD012010BDC04610B50CF031 +:10044C0019FE002801DA002010BD012010BDC046A5 +:10045C00844608006146FFE71FB50BF0E5F900285C +:10046C0001D40021C8421FBD10B50BF06DF94042FC +:10047C00013010BD10B50BF0D7F9002801DB0020BE +:10048C0010BD012010BDC04610B50BF0CDF90028F1 +:10049C0001DD002010BD012010BDC04610B50BF0D1 +:1004AC007BF9002801DC002010BD012010BDC046E6 +:1004BC0010B50BF071F9002801DA002010BD0120F5 +:1004CC0010BDC046002B11D1002A0FD1002900D13C +:1004DC00002802D00021C943080007B4024802A139 +:1004EC004018029003BDC046E9FEFFFF03B4684606 +:1004FC0001B502980AF038FD019B9E4602B00CBC77 +:10050C007047C0461C2101231B04984201D3000CE8 +:10051C0010391B0A984201D3000A08391B0998426A +:10052C0001D30009043902A2105C40187047C04680 +:10053C0004030202010101010000000000000000A0 +:10054C0010B5002903D1FFF7DDFF203002E00800D1 +:10055C00FFF7D8FF10BDC04610B5064C2378002B12 +:10056C0007D1054B002B02D0044800E000BF01234B +:10057C00237010BD7C0100200000000000E3000887 +:10058C00044B10B5002B03D00349044800E000BF16 +:10059C0010BDC046000000008001002000E30008F0 +:1005AC00F0B506009BB0002803D1002420001BB03E +:1005BC00F0BDFFF77DFD0500102007F0A7FF041E1E +:1005CC00F3D02B0008339B0901339B011800012148 +:1005DC004030089307F062FF01900028E6D02A0013 +:1005EC00310008F000FB8023019A53551300089A40 +:1005FC009B18083B6A0FED005A601D603B4B06933D +:10060C003B4B05933B4B04933B4B039300230793CA +:10061C00019B079A0AA89918402208F0E4FA039B58 +:10062C00002009930F23049F9C46069E059D02E023 +:10063C002E003D000F000F283AD82B00020073400B +:10064C003B40734002932D498300C958029B920092 +:10065C0059180AABD3588200C918099B0130C91824 +:10066C00274B09969A5820239B1AD941C91940281F +:10067C00DED1039B9B190393049B5B180493059B8E +:10068C00DB190593069B5B190693079B4033079375 +:10069C00079A089B9342BBD8019807F041FF039B34 +:1006AC002360049B6360059BA360069BE3607DE76E +:1006BC001F280AD805222B0042437B4033406B4055 +:1006CC000293013261460A40BDE72F2807D8032266 +:1006DC002B00424373407B4002930532F2E7F34315 +:1006EC0007223B436B4042430293EBE776543210B4 +:1006FC00FEDCBA9889ABCDEF01234567A4EA00086C +:10070C00A4EB0008F0B504000D0087B0002802D15E +:10071C00002007B0F0BD0029FAD001AE1122300044 +:10072C000C496F0008F05FFA781C07F0EFFE002808 +:10073C00EED003006519227801341109715C19702F +:10074C000F210A40B25C5A700233A542F3D1002348 +:10075C00C355DEE718E3000810B5040007F076FE79 +:10076C00044B054A1860054B1C6013780133137059 +:10077C0010BDC046A0010020000000209C010020FC +:10078C0010B504002100044807F0F2FB22000349D5 +:10079C00034807F005FC10BDC001002029E3000848 +:1007AC002403002010B504002100044807F0CAFB04 +:1007BC0022000349034807F0F3FB10BDC0010020E1 +:1007CC002BE300082403002030B5174C89B020001F +:1007DC00164907F0CDFB164D1649280007F0C8FB4B +:1007EC00C82007F037FE03226846134907F088FF3C +:1007FC006946280007F0BCFB6A461049200007F048 +:10080C00CFFBC82007F026FE0D49280007F0B0FBEF +:10081C00C82007F01FFE20000A4907F0A9FB0022A0 +:10082C00094B1A7009B030BD2403002034E30008D2 +:10083C00C00100205AE3000865E300082BE3000820 +:10084C0073E3000878E30008A401002070B50D4E96 +:10085C003378002B14D00C4D0C49280007F088FB82 +:10086C0003240B490B4807F083FB013CC82007F01D +:10087C00F1FD002CF5D128000749347007F078FB06 +:10088C0070BDC046A40100202403002094E300089E +:10089C00A4E30008C0010020A7E3000870B5104CC9 +:1008AC001049200007F064FB0F49104807F060FB6B +:1008BC00042220000E4907F073FB2825642007F062 +:1008CC00C9FD0C4B0C4A013D1A60002DF6D10122DA +:1008DC000A4B20000A491A7007F04AFB70BDC0464B +:1008EC0024030020BAE30008D7E30008C00100206D +:1008FC00E2E3000800300040AAAA0000A401002096 +:10090C000CE40008F0B593B00EAD3C2283B20400A9 +:10091C00079128001E4900F02DFD0E9B0AAE039393 +:10092C00AB8803980493109B08AD0593119B0CAFF7 +:10093C0006930DF00BFC01230422009507F0E8FB55 +:10094C0005980DF003FC01230422009607F0E0FB50 +:10095C0006980DF0FBFB01230422009707F0D8FB4F +:10096C002A000C49049B07980197009607F0C8FED3 +:10097C00002C0BD1084B039A1A60084B069A1A608C +:10098C00074B059A1A60074B049A1A8013B0F0BDF6 +:10099C008804002029E40008B0010020AC010020EC +:1009AC00A8010020A601002070B506000E4896B0E4 +:1009BC00019300920B000200502102A807F05CFE8C +:1009CC0002A8FFF7EDFD10210500FFF79BFE0400C8 +:1009DC000100300008F0FFF8280007F0A1FD20000E +:1009EC0007F09EFD16B070BD46E40008F0B51F4C34 +:1009FC009DB00B911E4922000A901E4B13A8099121 +:100A0C00FFF7D2FF1C4B0DAD18680DF09FFB0123B7 +:100A1C0000951A0007F07CFB184B0FAE18680DF010 +:100A2C0095FB012300961A0007F072FB144B11AFD3 +:100A3C0018680DF08BFB012300971A0007F068FB78 +:100A4C00104B114A00215B5E0A980693E1239B0030 +:100A5C00029313AB0193099B0B9900930597230009 +:100A6C000496039507F008FE1DB0F0BD56E400088F +:100A7C00010000204DE40008B0010020AC01002072 +:100A8C00A8010020A601002068E40008F0B58C4BFA +:100A9C008C4A8D4CBDB01A6023781C2B18D0002BBF +:100AAC0016D007F0D3FC894B1B68C01A884B9842B0 +:100ABC000ED98849884807F05BFA8848FFF760FE32 +:100ACC00642007F0C7FCFFF7E9FE1C2323709CE0B1 +:100ADC002378002B55D107F0B9FC7C4B1860804B68 +:100AEC001B78002B01D0FFF7B1FE7E4D7A4E288883 +:100AFC007D4F7E4C002820D06021FFF77BFB89B214 +:100B0C0000291AD17A49300007F032FA79493800B5 +:100B1C0007F02EFA784807F09DFC2100380007F00A +:100B2C0027FAC82007F096FC2100380007F020FABD +:100B3C00C82007F08FFCFFF747FE7049380007F01C +:100B4C0017FA642007F086FC6D49002007F0D5FAEF +:100B5C006B490700002007F0D0FA6A4A43007B403B +:100B6C0069491268694807F0CBFD3000684907F005 +:100B7C00FFF920002B8801332B80FFF701FE642046 +:100B8C0041E01C2B41D007F061FC624B1B68C01A82 +:100B9C00614B1B68984238D9207801381A2834D810 +:100BAC00FFF78EFA0E101214161C2123252C353744 +:100BBC003D3F4143454C6069733D3F757A6D7F0005 +:100BCC005648DAE75648D8E75648D6E75648D4E7A9 +:100BDC005648FFF7D5FDFA20400014E05448FFF7C3 +:100BEC00CFFDC8200FE05348C7E75348F1E76846EC +:100BFC00524A534907F084FD6846BEE75148FFF757 +:100C0C00BFFDFA20C000FFF7A7FD3DB0F0BD4E4878 +:100C1C00B3E74E49304807F0ABF93048ADE74C48E4 +:100C2C00ABE74C48A9E74C48A7E74C48A5E7684612 +:100C3C004B494C4A07F064FD6846D0E74A4A4B4999 +:100C4C00684607F05DFD6846FFF7ACFD0024200008 +:100C5C006946FFF757FE01346846FFF7A3FD0F2CDA +:100C6C00F5D1B8E742491C4807F082F94148FFF733 +:100C7C0087FD4148C7E74149174807F079F94048D3 +:100C8C00FFF77EFDFA208000BDE73E49C2E7F02168 +:100C9C006846FFF7ABFEAFE73B48FFF771FD3B48FB +:100CAC00B1E70E48FFF76CFDFA20400007F0D2FBCD +:100CBC000C4B37491A88084807F072F903E7C0460D +:100CCC0000300040AAAA000000000020980100207B +:100CDC00905F0100FBE400082403002024E50008D9 +:100CEC00A4010020B8010020C0010020A4E30008EA +:100CFC0030E500084FE50008881300005AE30008AF +:100D0C00FFFFFF7FB40100205BE50008010000201D +:100D1C0062E50008A00100209C0100208DE5000880 +:100D2C0094E500089DE50008A7E50008B1E500087A +:100D3C00C0E50008C9E50008D6E50008E1E50008B3 +:100D4C00EAE5000802E600080FE600081CE60008C9 +:100D5C003AE6000846E600085AE600087DE6000878 +:100D6C00AEE6000802020000C3E60008D4E6000864 +:100D7C00DAE60008EBE60008983A0000FBE600080B +:100D8C000CE7000818E7000832E7000810270000FD +:100D9C0042E700080123154A10B5116E0B430221DE +:100DAC001366134B106E084219D1013BFAD2114B4A +:100DBC00114A1A6005225A60104A9A60104AD96882 +:100DCC00002902D0013A002AF9D10E4A0E491A60C4 +:100DDC000E4A0F481A600A2207F0E2F805E0002BD1 +:100DEC00E5D10C490A4807F0C3F810BD00100240C9 +:100DFC00102700000030004055550000C4090000C9 +:100E0C0011270000CCCC000093E70008AAAA000030 +:100E1C00240300206EE70008E12170B5594C06222E +:100E2C002000490207F012F8E121574D0622280054 +:100E3C00490207F00BF801211D2007F06FFA002181 +:100E4C001D2007F0C7FA514B1868514B1860514BD5 +:100E5C001B685840504B1B68584007F03DF9200068 +:100E6C004E4907F085F820004D4907F081F8200025 +:100E7C004C4907F07DF820004B4907F079F8200029 +:100E8C004A4907F075F80F222000494907F088F805 +:100E9C0060222000474907F083F8962246499201C8 +:100EAC00200007F07DF8454E300000F087F9300047 +:100EBC00012100F0E5F92000414907F059F84149BA +:100ECC00200007F055F8404807F0C4FA20003F49CD +:100EDC0007F04EF83E4E2800310007F049F8C820C4 +:100EEC0007F0B8FA3100280007F042F8C82007F0E4 +:100EFC00B1FA962220003749920107F051F8962258 +:100F0C0035499201280007F04BF8FA20400007F011 +:100F1C00A1FA280006F0CBFE642007F09BFA96217C +:100F2C0006222800890106F091FF9620400007F068 +:100F3C0091FA3100280007F01BF8C82007F08AFA54 +:100F4C003100280007F014F8C82007F083FA962225 +:100F5C0022499201200007F023F8FFF735FCFFF738 +:100F6C0019FF07F073FA1E4A1E4B80181860FA20FE +:100F7C00800007F06FFA1E2220001B4907F010F8C2 +:100F8C0070BDC04624030020C00100209075FF1FD7 +:100F9C00B40100209475FF1F9875FF1FB4E700087B +:100FAC00DFE70008FCE700081AE80008B6E70008CD +:100FBC002BE8000849E8000868E8000888040020CD +:100FCC0079E80008A1E80008B80B0000BBE80008AD +:100FDC00A4E30008D1E80008EFE80008FBE80008EB +:100FEC0090B9F2FFBC0100201FE9000870B514484D +:100FFC0000F004FA134B144A144D1A602B781C2B76 +:10100C0016D107F023FA124C2368C01A114B9842E0 +:10101C000ED91149114806F0ABFFFFF717FC00235E +:10102C002B7007F013FA206007F010FA0C4B1860C5 +:10103C00FFF72CFD80200121C00102F07FF870BD6C +:10104C008804002000300040AAAA00000000002004 +:10105C00BC010020A0BB0D004AE9000824030020BD +:10106C009801002010B592B03822002104A807F096 +:10107C0049FD00211022684607F044FD80208000C5 +:10108C0002F080F802230493FE33079380231B01A4 +:10109C00089340230993002304A80B9302F0CEF885 +:1010AC00011E00D0FEE707230190029003906846D2 +:1010BC00009302F02BFB002800D0FEE705F080F82F +:1010CC0012B010BD10B5094800F052F800220849C2 +:1010DC00084806F055FE00220749084806F050FE65 +:1010EC0007F0B4F9064B186010BDC0468804002008 +:1010FC00003801402403002000440040C0010020BF +:10110C00A00100200122014B1A707047300E002004 +:10111C00064B10B51B78002B03D10121C72007F01B +:10112C0059F9034A13680133136010BD280E0020CF +:10113C002C0E0020012A02D1016000207047022AE7 +:10114C0005D0032AF9D0002AF7D10260F5E70B6825 +:10115C000360F2E710B50368984710BD836810B5BB +:10116C000400002B02D0032201009847200010BD80 +:10117C0070B5002504000561456185611C3000F0E7 +:10118C00CDF9094BE01800F0ACFA084B2000E55003 +:10119C00074BE550074BE38019232372064B236062 +:1011AC003C236381A38170BD840900009809000071 +:1011BC009C090000C711000014AEA73FF0B5050054 +:1011CC0087B00121807907F0A9F80121A87907F0EF +:1011DC0001F90121E87907F0A1F80121E87907F07C +:1011EC00F9F800F02DFAB42004F070FC040000268D +:1011FC001C4904F0C1FB1C4F200002220A213C6058 +:10120C0004F03CFB194B03960293194B02AC009370 +:10121C00E360184B2100A3603868019304F0F8FBDD +:10122C002000FFF79BFF386804F022FA287A31007F +:10123C0007F074F8104B586E431C00D019200F4B5C +:10124C0066600293009B0422E360019B2100A36073 +:10125C0006F0ECFE2000FFF781FF07F0F7F8A8611D +:10126C0007B0F0BD00040040340E0020111100083E +:10127C0061110008411100082CF100081D11000833 +:10128C004175704710B5084BC0791B78002B09D1FC +:10129C0005395F33FF3389B2994203D9012107F035 +:1012AC0099F810BD0021FAE7280E0020034B10B569 +:1012BC00C358002B01D003C9984710BD98090000F2 +:1012CC00034A10B58458002C01D00FC9A04710BD9B +:1012DC009C09000010B50400081C21680AF0ECFA07 +:1012EC0008490AF01BF9237D022B07D0032B07D0EA +:1012FC00012B02D104490AF0DFFA10BD0349FAE7C9 +:10130C000349F8E700004040C0CFF83F66666640EE +:10131C00062A0F4070B5040010880E0080B215002C +:10132C000AF0E4FE011C3000FFF7D4FF20606B884C +:10133C002000A38070BD002370B50E00C38093887D +:10134C0011688380040030001500FFF7C3FF206094 +:10135C00E8680AF0CBFE011C3000FFF7BBFFA06071 +:10136C00A8680AF0C3FE011C3000FFF7B3FFE06071 +:10137C00200070BDF0B506008DB010000F000321E9 +:10138C0014001D00FEF73AFF019020000321684372 +:10139C00FEF734FF84B207A800F0A3F9019BE31811 +:1013AC000193019B03AD9C4210DB1022002128000D +:1013BC0007F0A8FB290007A800F0E2F930002A008A +:1013CC003900FFF7B8FF30000DB0F0BD3900220036 +:1013DC0028001C3100F0D6F82B79002B04D003998F +:1013EC006A6807A800F0C0F90134A4B2D9E710B5B7 +:1013FC0004000023FFF7BEFF200010BDF0B53E4BEC +:10140C0004001A7889B0002A6ED000221A703B4A68 +:10141C000369127801330361002A04D0384A53431C +:10142C00384A934216D800F03DF9B422B421637DBA +:10143C0049005B421340C01880B2FEF7DBFE8DB250 +:10144C0029002000FFF71EFF2F4B2A000121E01876 +:10145C0000F050F90021A07906F0BCFF22692B4B5B +:10146C0053430122D3412A4A93422CD806F0EEFF73 +:10147C00A369284EC01A284B984237D804AF1022C3 +:10148C000021380007F03EFB1F4B3900E01800F03C +:10149C0077F96D460123AB8033682B80BB886B805A +:1014AC000023336006F0D2FFA061200069461C3097 +:1014BC0000F04AF8210002A86A46FFF72BFF200033 +:1014CC0002A9FFF7F3FE0A21A38920695943FEF70D +:1014DC0091FE002908D1210004A86289FFF787FF3B +:1014EC00200004A9FFF7ECFE09B0F0BD0023336027 +:1014FC0006F0ACFFA061E6E7300E0020280E0020BD +:10150C00CDCCCCCC3333333384090000EFEEEEEE8C +:10151C00888888082C0E00201B0C000096221201D3 +:10152C0010B581180300002201241A801C715A8006 +:10153C0006338B42F9D196231B01C250014BC2508A +:10154C0010BDC0466409000070B596260D00C82178 +:10155C0036010400805949000130FEF74BFE06208D +:10156C0048430522A1512018290007F03CFBC82153 +:10157C00034A4900A3588B4201D20133A35070BDDA +:10158C00640900000E4B70B5CB5804000D0093425B +:10159C0005D80023038003714380200070BD96237F +:1015AC00C8211B01E85849008A1A1018FEF722FEC0 +:1015BC00062251432000691807F015FBEDE7C046E1 +:1015CC006409000070B506000D00084C35212000A0 +:1015DC0005F04AFC3100200005F0A1FC2900200098 +:1015EC0005F09DFC200005F075FD70BDA00F0020DE +:1015FC00F8B504001600114D0F002800352105F038 +:10160C0033FC2100280005F08AFC280005F062FD5F +:10161C0032003521280005F056FD0024B4420BD2CF +:10162C00280005F059FB002806D0280005F058FBCF +:10163C0038550134E4B2F1E7F8BDC046A00F0020E4 +:10164C0007B5154A1548D16D154BD9670300926D36 +:10165C00883300211A6005F02FFE0122022001A917 +:10166C00FFF7C6FF50210220FFF7ACFF012202203A +:10167C0001A9FFF7BDFF0C210320FFF7A3FF0C21ED +:10168C000020FFF79FFF01210820FFF79BFF01219E +:10169C000800FFF797FF07BD2CF10008A00F0020F2 +:1016AC00A80F0020012213B510006946FFF7A0FF18 +:1016BC00012006F0CFFE02210120FFF783FF01ACD1 +:1016CC000A2006F0C7FE022221001920FFF790FF26 +:1016DC0001210800FFF776FF208840BAC004C00D36 +:1016EC0016BD00230360436000238360C360013B8D +:1016FC0003617047F8B5040010000D000CF0D4FC29 +:10170C00174B184A0BF094FD0CF068FD071C2800D1 +:10171C000AF0ECFC061C381C08F0F6F9011C301C15 +:10172C000AF0CAF8011C206809F0EAFC2060381C99 +:10173C0008F024FA011C301C0AF0BEF8011C606889 +:10174C0009F0DEFCA36860600133A360E368AB4280 +:10175C0000D2E5602369AB4200D92561F8BDC046D3 +:10176C0046DF913F399D52A207B56B46009101921D +:10177C0019885A8889B292B2FFF7BCFF07BD0000E6 +:10178C00F7B5040080680E00002846D00AF0AEFCC5 +:10179C00051C011C206809F0C1FE291C0190606821 +:1017AC0009F0BCFE0199071C08F08CF91B490AF0E2 +:1017BC0083F80CF0CBFC1A4A1A4B0BF0F7F80CF030 +:1017CC000DFD0021051CFEF755FE002804D0281C39 +:1017DC00154909F095FC051C0199081C0AF06CF8D8 +:1017EC00391C0190381C0AF067F8011C019809F0AB +:1017FC0087FC08F06BF9FC2130608905281C09F086 +:10180C007FFC09F07BFBE368B080B3602369F36075 +:10181C000023236063600023A360F7BD0000344302 +:10182C00182D4454FB2109400000B44370470000BC +:10183C0070B5104B05001978002901D1012070BD3D +:10184C00FA208000FEF750FC0B4C01002068FEF7DC +:10185C004BFC00F081F8041EF0D1032DEED80200F1 +:10186C0001202900404200F031F8044B20001D609B +:10187C00E5E7C046110000205000002014000020B5 +:10188C008023084A5B00116810B50B4300201360DD +:10189C00FFF7CEFF041E03D1FFF7C8FF200010BDD9 +:1018AC000124FBE700200240034A044B11681B781B +:1018BC005B1813607047C046380E002011000020E2 +:1018CC00014B18687047C046380E002010B5FF2435 +:1018DC0003220B0021000240D20091409B012340C7 +:1018EC00C943934000280ADBC0240B4A80088000BF +:1018FC008018A40002590A401343035110BD0F2253 +:10190C0010400838054A800880008018C2691140D0 +:10191C001943C161F2E7C04600E100E000ED00E0D0 +:10192C00002805DB1F2318401E3B8340014A13602F +:10193C007047C04600E100E0002809DB1F23184077 +:10194C001E3B8340034AD367BFF34F8FBFF36F8FA8 +:10195C007047C04604E100E08022431E520401207F +:10196C0093420DD2C021074A07485360036A090607 +:10197C001B021B0A0B4303620020072390601360B9 +:10198C007047C04610E000E000ED00E0002807DBE7 +:10199C001F23C02218401E3B8340024952008B502B +:1019AC007047C04600E100E0704710B5FFF7FCFF40 +:1019BC0010BD704710B5041E01D1012010BD437F2E +:1019CC00DAB2002B02D10277FFF7F3FF0223637721 +:1019DC002379002B1CD118212368124A5A619A686A +:1019EC008A439A6062792368002A19D1013A6021EE +:1019FC001A619A6800208A4361690A4380219A60BF +:101A0C009A688A43A1690A439A6001236377D5E7F0 +:101A1C002000E268A16800F007F80028E2D0CCE7CB +:101A2C002269E4E7B71DC10430B5012504001E236B +:101A3C002800294202D130BD013B21D30800D840F7 +:101A4C002842F9D0102A17D0102A07D8002A0AD019 +:101A5C000120082AEFD10F2BEDD804E00120182A21 +:101A6C00E9D1062BE7D820684161182183688B43A4 +:101A7C00134383600020DEE70120072BF3D9DAE75C +:101A8C000120102AE0D1D6E7F0B5002808D0841D3B +:101A9C00E37F411D022B05D00423C3630023CB77C6 +:101AAC000120F0BD0E250268466C1368AB43136031 +:101ABC003368104D2B403360012316689E4316602B +:101ACC00026C1B331A401B3B93400B4E77683B4315 +:101ADC007360C26C836C5A60036D002B05D01A685E +:101AEC002A401A60436D826D5A6001230020E3770F +:101AFC00C877D6E7FFFEFFFF00000240F8B5811D56 +:101B0C00CB7F022B03D00423C3630120F8BD0E242A +:101B1C0002681C271368456CA343136001231468E7 +:101B2C009C4314602A68104C22402A60026C0F4DB2 +:101B3C003A4093406E6833436B60C26C836C5A605E +:101B4C00036D002B05D01A6822401A60436D826D1C +:101B5C005A6001230022CB77431DDA77836B9342C3 +:101B6C0000D098470020D1E7FFFEFFFF00000240A5 +:101B7C000630C07FC0B270470023F0B585B00A684C +:101B8C001400DC4001D105B0F0BD012514009D40CE +:101B9C002C4000942A4200D191E04A685F009446A0 +:101BAC000322644622400324BC40E4430194541EA7 +:101BBC00012C2ED88668019C2640CC68BC4034434E +:101BCC00846044680126AC432500644624093440F3 +:101BDC009C402C434460C568019C25408C68BC40EB +:101BEC002C43C460022A16D107250F261D40AD00D8 +:101BFC00AE40DC08A40004190294246A0396260063 +:101C0C00039CA64334000E69AE402643029C266218 +:101C1C0001E0032ADFD1BA400468019D25402A4324 +:101C2C00C02402606246A402224248D0254A032501 +:101C3C009C08A400A4180F221D40ED00AA40A02768 +:101C4C00266EFF0596430022B8420CD01E4F01327F +:101C5C00B84208D01D4F0132B84204D01C4F033299 +:101C6C00B84200D1023AAA40674632432266154C6C +:101C7C00009A2668009DD2433543FF0201D43500FB +:101C8C001540674625606668009D3543BF0201D448 +:101C9C0035001540674665600E4C009DE66F354378 +:101CAC00BF0301D4350015406746E5670A4C009E1A +:101CBC00E56F2E43FF0301D415402E00E667013378 +:101CCC005DE7C046001802400004005000080050B8 +:101CDC00000C0050081802400418024070B5084D62 +:101CEC000400EB68184202D0E86004F0A1F82B69FC +:101CFC00234203D020002C6104F09EF870BDC04636 +:101D0C000018024003689A69920701D500229A6272 +:101D1C0001229969114202D199690A439A6170476B +:101D2C0030B5039C00682343120489051A43890DBE +:101D3C00054B45680A43640D234352009D435208EA +:101D4C002A43426030BDC046FF63FF0310B5426BAF +:101D5C001A4C0BB2A2421ED0194CA2421BD0194CE9 +:101D6C00A24218D0B822F224DB171A40CB07DB179B +:101D7C00234013438A0706D5F422134301680A68EB +:101D8C0013430B6010BD102901D19022F5E72029D7 +:101D9C00F4D10B43F2E7B822F224DB171A40CB073D +:101DAC00DB17234013438A07E6D41029EDD02029F2 +:101DBC0001D16022E1E74029EBD0DFE7B92B000825 +:101DCC00E12E00085D2A0008002310B5CA0708D5CB +:101DDC00030041331A7828231A40CA33282A00D129 +:101DEC00B03B8A0708D502002824413212782240E1 +:101DFC00A2420BD14422134309B2002901DAB822C2 +:101E0C00134301680A689A430A6010BDF422F2E792 +:101E1C00F7B505681700AA69102316000400019194 +:101E2C0000201E401A420DD00600EB610090256880 +:101E3C002022AB69134260D1002E30D00426012041 +:101E4C00009B1E438022AB695200134202D001203A +:101E5C00EA6106438022D200134203D008210120FC +:101E6C000E43EA618022920013424BD00223EA61B6 +:101E7C001E432000FFF746FF6B68244A01201340E5 +:101E8C006B60636C202233436364230041331A700C +:101E9C0022000023423240341370237034E0019B43 +:101EAC000133C5D0FFF70CFD019BC01B984201D834 +:101EBC00002BBCD1220023684232586811789A69F1 +:101ECC00C9B212040BD58022D201104207D12029AD +:101EDC0005D059680A435A60FFF7F2FC0700202529 +:101EEC0023689B692B42A2D1FFF7EAFCC01B19287F +:101EFC00F6D920230126009399E7002E9ED12023AA +:101F0C00EB619BE70028B4D1FEBDC04600E800FEA3 +:101F1C00F8B504000D0017001E0023689B692B40C8 +:101F2C005B1B5A425341BB4201D0002026E03100DA +:101F3C002000069AFFF76CFF00281ED1731CECD012 +:101F4C00FFF7BEFC069BC01AB04201D8002EE4D1AC +:101F5C0023689B692B405B1B5A425341BB42DCD12B +:101F6C002022636C13436364230041331A702200F4 +:101F7C00002342324034137023700120F8BDC36A31 +:101F8C00AA2B02D10023C3627047AA23C26A1B0288 +:101F9C009A42F9D180239B04F5E7704770B5040091 +:101FAC000120002C4ED0250041352B78DAB2002BC5 +:101FBC0005D12300403320001A70FFF7EEFF2423D5 +:101FCC0001212B702368E0681A68A6688A431A609E +:101FDC001D4962680A401A619A681C490A409A6055 +:101FEC00012807D18022120232439A605A6818489D +:101FFC00024009E08422120232439A600228F5D191 +:10200C0080225868120102435A605868114A0243F0 +:10201C005A60DA6800200A40DA60616922690A4372 +:10202C00A16909020A43DA60216AE2690A431A606B +:10203C00012219680A431A60202360642B70206304 +:10204C004234207070BDC046FFFFFFF0FF7FFFFFE2 +:10205C00FFF7FFFF00800002704770B504000120FD +:10206C00002C13D02500242341352B7022681368D3 +:10207C00834313602000FFF7EFFF00202300606410 +:10208C0042332870206340341870207070BD0000FB +:10209C00F0B51D00002389B007930300413305926E +:1020AC0003931B7804000220202B3FD1236880224D +:1020BC009F6912023E001640174237D1220040326F +:1020CC001778012F32D00138107024221027039872 +:1020DC00890502708A0D66640492E268012A27D190 +:1020EC002C4A04990A435A60FFF7EAFB060022685F +:1020FC00936992699B06D206DB0FD20F134319D05A +:10210C0023689B6900961A003A403B4226D12B006B +:10211C0020212000FFF7FCFE00281DD1202322687F +:10212C00D3612200403441321370207009B0F0BDED +:10213C00194AD6E76B1CDAD0FFF7C2FB801BA8420A +:10214C0001D8002DD3D12023039A40341370626838 +:10215C0013436360002323700120E7E72B00002268 +:10216C0020212000FFF7D4FE0028F5D1202223687F +:10217C00059EDF61DA610799013107910799B14238 +:10218C00ABD3230041331A70636C40341A43626042 +:10219C002070E1E70020000200280002F0B50500E5 +:1021AC0085B0039141352E7804000A990220202E27 +:1021BC0059D1260040363778012F54D00138307071 +:1021CC0020302870200010254230057000256564F1 +:1021DC006385264BE1626363638D254E6262FF2B40 +:1021EC0014D9FF23802723850E407F040025AE429F +:1021FC0013D115782068013285621D00638D6262EF +:10220C00013B9BB263856B1E238506E0638D0E40FC +:10221C009BB2E76A2385002BE8D1236B112B06D1E7 +:10222C00AA2904D0AA2200231202914207D120002D +:10223C00FFF7A5FE638DFF2B00D8E76A0D4BEAB2C2 +:10224C00002E01D0228DD2B22000039900933B00C6 +:10225C00FFF766FD230000254033200001211D708F +:10226C00FFF774FD280005B0F0BDC0461D2900081D +:10227C00FFFFFFFD00200080F0B50E00010085B0CF +:10228C00039341310D780400170002200A9A202D87 +:10229C003DD1250040352878844663460220012B29 +:1022AC0035D0013828702130087012384870002160 +:1022BC00039B61646385194BE2626363638D6762A0 +:1022CC00FF2B26D9FF23802723857F04236B122B1A +:1022DC0006D1AA2A04D0AA21002309028A4207D1D6 +:1022EC002000FFF74CFE638DFF2B00D8E76A0C4BE8 +:1022FC0031000026228D2000D2B200933B00FFF764 +:10230C000FFD200002212E70FFF720FD300005B0DC +:10231C00F0BD638DE76A2385D8E7C0461D29000808 +:10232C0000240080F0B5060085B0029228220191AD +:10233C0003934136337804001340934202D00120BA +:10234C0005B0F0BD019B002B02D0029B002B03D1EA +:10235C0080239B006364F2E7250025494035FFF795 +:10236C0033FD2B780220012BEAD001232B7033781C +:10237C00204F2A2B16D101002000FFF725FD2368E2 +:10238C001A6812040ED51A68E06B3A401A600028DD +:10239C0008D0194B8363FFF7B1FB002802D0E06B28 +:1023AC00836B9847292333702300202242331A7001 +:1023BC000023636423685A683A405A60019A626247 +:1023CC00029A6285628D2285039AE2620B4A9969B0 +:1023DC0062639A69D20303D50822114200D0DA61F4 +:1023EC000026200002492E70FFF7B0FC3000A7E752 +:1023FC0001800000FF7FFFFF09310008ED2F00086E +:10240C00F7B5070000922822019341373B7804006E +:10241C000D001340934201D00120FEBD002902D0D3 +:10242C00009B002B03D180239B006364F4E7260000 +:10243C0024494036FFF7C8FC33780220012BECD03E +:10244C00012131703B78292B16D12000FFF7BCFC01 +:10245C0023681A6852040FD51A681B49A06B0A40EE +:10246C001A60002808D0194B8363FFF747FB00283C +:10247C0002D0A06B836B98472A233B702300202249 +:10248C0042331A7000236364236811495A680A4066 +:10249C005A60009A65626285628D2285019AE262B9 +:1024AC000C4A996962639A69D20303D408221142D7 +:1024BC0000D0DA610025200002493570FFF746FC98 +:1024CC002800AAE702800000FFBFFFFF09310008C7 +:1024DC00FF7FFFFFED2F0008020010B5413211788D +:1024EC000223202908D1802126331370034B0902C3 +:1024FC004363FFF72BFC0023180010BDED2F0008E1 +:10250C00036810B599691A68436B002B00D0984783 +:10251C0010BD70477047030070B5002520220600DF +:10252C0042331D70013B1978040040361A70212982 +:10253C000AD11123456303632039FFF745FC2000C2 +:10254C003570FFF7E6FF70BD12234563036302216C +:10255C00FFF73AFC20003570FFF7DCFFF3E70000D3 +:10256C000100036810B5040000201A68423108709D +:10257C00510418D51A6818490A401A6023004133CF +:10258C001A78292A14D1013A1A70212320002363C6 +:10259C000121FFF719FC23000022403320001A70A0 +:1025AC0005F031FA10BD1204E8D51A680B49E3E7BF +:1025BC001A782A2AF6D1023A1A70222320002363B1 +:1025CC000221FFF701FC23000022403320001A7087 +:1025DC0005F003FAE6E7C046FFBFFFFFFF7FFFFFF2 +:1025EC000300F7B5282241331B780400016813401F +:1025FC0093423CD1FE278D698E698B68CA68ED03C6 +:10260C000192C268360CED0F3E40022A25D19B0583 +:10261C009A0D5B0F7340180006263040334210D1E0 +:10262C00A36C0133A364A36C022B09D19B19A06486 +:10263C00CB612300403318702900200005F082F98B +:10264C00F7BD802120000902FFF7BEFB230000220A +:10265C0040331A70019A3A40EEE780210902FFF7E5 +:10266C00B3FB2300002240331A703200E4E7082346 +:10267C00CB61002340342370E2E70000184B10B507 +:10268C00C362002302000363040020204132107057 +:10269C00537004226363114212D02368596A636A2F +:1026AC001970636A01336362238D002B08D0013BE0 +:1026BC002385638D013B9BB26385636C1A43626413 +:1026CC0020000849FFF780FB102223682000DA6104 +:1026DC002300002240331A7005F069F910BDC04682 +:1026EC000000FFFF03800000704770477047010037 +:1026FC00020010B541310C7800234032602C06D119 +:10270C00403C0C7003631370FFF7F0FF10BD0363C4 +:10271C00137005F07CF9F9E770B505000022040090 +:10272C00413542302B7802703A48283BE062628592 +:10273C00626C0A436264022B2BD803212000FFF742 +:10274C0043FB28232B70344BA06B6363236B002853 +:10275C0040D01A001021113A8A433BD123681A68E1 +:10276C00520403D51A682D490A401A60FFF700FA83 +:10277C0001282BD0A06B2A4B00228363230040330B +:10278C001A70FFF7BBF9002823D0A06B836B984716 +:10279C001FE020002349FFF717FB2000FFF7B2FAD8 +:1027AC002B78602B10D020222A7023689969114253 +:1027BC000AD09969103A114204D0DA61616C0C3A72 +:1027CC000A4362642022DA610023BDE72000FFF790 +:1027DC008EFF70BDE06B0028F8D01022123B9343A3 +:1027EC00F4D123681A68120403D51A680E490A40FA +:1027FC001A60FFF7BDF90128E8D0E06B084B002206 +:10280C008363230040331A70FFF778F90028E0D077 +:10281C00E06BBBE70000FFFFED2F0008FFBFFFFFE1 +:10282C000931000803800000FF7FFFFFF7B520236C +:10283C00050006684135F3612B7804000F00212B4D +:10284C002BD10121FFF7C0FA1123236373682E4AA1 +:10285C0013407360002363632C4BE36210231F420D +:10286C0004D0F361626C0C3B134363642B78602BD4 +:10287C0005D17F0703D5736ADBB20193019B20005E +:10288C00FFF740FA636C2A78602A01D0002B0CD039 +:10289C002000616CFFF740FFF7BD2B78222BD5D1C0 +:1028AC000221FFF791FA1223CFE72A78212A13D1BC +:1028BC00013A2A7022002100236342321078403101 +:1028CC0013700B70402803D12000FFF70DFFE3E7D6 +:1028DC002000FFF71EFEDFE72A78222ADCD1023A1D +:1028EC002A70220021002363423210784031137089 +:1028FC000B70402803D12000FFF7F7FECCE7200037 +:10290C00FFF708FEC8E7C04600E800FE0000FFFF26 +:10291C00F0B5070040373B7804000D00160002208C +:10292C0085B0012B1AD001233B700F33194217D0FD +:10293C001A4215D022682000D361626C0C3B134301 +:10294C006364FFF7DFF920231D4205D01E4203D03C +:10295C0029002000FFF76AFF0020387005B0F0BD99 +:10296C0004231D4211D01E420FD09D4323685A6A86 +:10297C00636A1A70636A01336362238D013B23859A +:10298C00638D013B9BB26385DDE76B06DA0F002B91 +:10299C000CDB02231D4209D01E4207D0638D002B95 +:1029AC00D1D0636A226819789162E4E72B0635D599 +:1029BC007306C8D5628D2368002A23D0208D002889 +:1029CC0020D15968638D8905890DFF2B08D9FF2209 +:1029DC00802322855B0400902000FFF7A1F9B2E769 +:1029EC00628DE36A92B20393184B22859C46039B3B +:1029FC00D2B2634502D0E36A0090EDE780230090E9 +:102A0C009B04E9E75B689B0103D42000FFF783FD7F +:102A1C0099E740212000FFF77FFE94E7002A00D1C0 +:102A2C0091E7730600D48EE7638D002BF1D12368F8 +:102A3C005A68920100D586E7E16A044A9142E4D1D2 +:102A4C0080225968D2010A435A607CE70000FFFFDC +:102A5C00F7B506004036337804000220012B15D060 +:102A6C00012333700F33194211D01A420FD0226850 +:102A7C002000D361626C0C3B134320216364FFF78D +:102A8C0065F92000FFF73EF900203070FEBD0223EF +:102A9C00194208D01A4206D02368226D9A6201238B +:102AAC005B422365F0E740250B063BD52A4239D023 +:102ABC0001212000FFF788F910212000FFF746F9CB +:102ACC00638D002B29D0638DFF2B1BD90023BF35C1 +:102ADC00E16C2585009380232A0089B25B042000D9 +:102AEC00FFF71EF9638D5B1B9BB26385230041339B +:102AFC001A7823681968222A47D1802212020A43C5 +:102B0C001A60C1E70023658DE16CADB22585009399 +:102B1C008023EAB289B29B04E1E729002000FFF789 +:102B2C00FBFDB1E7294233D02A4231D027000121E5 +:102B3C002000FFF749F9413710212000FFF706F973 +:102B4C003B78223B5A425341174A9B029B18628D99 +:102B5C00FF2A10D9FF25E16C2585009380232A00DC +:102B6C0089B25B042000FFF7DBF8638D5B1B9BB223 +:102B7C0063853A78BDE7658DE16CADB22585009330 +:102B8C008023EAB289B29B04ECE78022D201B6E73B +:102B9C002023194200D177E71A4200D174E72000B4 +:102BAC00FFF744FE70E7C04600200080F7B5070031 +:102BBC0040373B7804000220012B15D001233B70D9 +:102BCC000F33194211D01A420FD022682000D36162 +:102BDC00626C0C3B134320216364FFF7B7F82000B1 +:102BEC00FFF790F800203870FEBD4023080641D551 +:102BFC001A423FD0266832689A433260638D002BAC +:102C0C002CD07168638D8905890DFF2B17D9FF2591 +:102C1C00802325855B040020EAB200902000FFF79A +:102C2C007FF8638D5B1B9BB26385413423783268DC +:102C3C00222B10D180231B0213433360D2E7658D06 +:102C4C001B4BE26AADB225859A4201D0E36AE2E7FA +:102C5C0080239B04DFE78023DB01EDE773689B0196 +:102C6C0003D42000FFF757FCBCE740212000FFF7FE +:102C7C0053FDB7E7194212D01A4210D0638D002BC6 +:102C8C00F3D1226853689B01ACD4E16A084B99429A +:102C9C00E7D180235168DB010B435360A2E720236B +:102CAC0019429FD01A429DD02000FFF7BFFD99E733 +:102CBC000000FFFF70B5802503686D0099691A68E4 +:102CCC00294206D0140604D50124466C34434464CE +:102CDC00DD618025ED00294206D0140604D50824B8 +:102CEC00466C34434464DD618024A400214206D048 +:102CFC00120604D50222416C0A434264DC610B23A8 +:102D0C00416C194201D0FFF707FD70BDF7B505689E +:102D1C0006002B6841360093C36A040001932023FC +:102D2C0030780F002138EB6109280CD8FDF7C8F971 +:102D3C0005680B0B0B0B0B6E056820005D49FFF74C +:102D4C0043F82123236380226B68120213436B60C8 +:102D5C006B68594A200013406B60FEF7D3FF009B51 +:102D6C005B0459D52B68554A13402B60A36B002B81 +:102D7C0003D01B685B689BB2638504231F420FD092 +:102D8C006A6A9F43636A1A70636A01336362238DB4 +:102D9C00002B05D0013B2385638D013B9BB26385E2 +:102DAC00638D002B03D00423626C134363641023E4 +:102DBC001F4211D0009A1A420ED0628D002A49D1BE +:102DCC003378282B33D18023019A9B049A422ED13D +:102DDC0039002000FFF752FC2300002242331A7006 +:102DEC00656C6263954244D02000616CFFF794FCE3 +:102DFC003378282B03D139002000FFF73FFCF7BDB7 +:102E0C0020002F49FEF7E0FF22239BE720002D49ED +:102E1C00FEF7DAFF002395E78022009B1202134293 +:102E2C00ABD02B68284A13402B60E36B9FE73178BB +:102E3C001022236829290BD124490198884207D0F4 +:102E4C002000DA61FEF75EFF2000FFF789FBC3E785 +:102E5C00DA61C1E72268D3610423626C13436364B3 +:102E6C00019A1B4B1A42B7D12000616CFFF754FC3E +:102E7C00B2E72700E36A154A403793420CD0200092 +:102E8C00FFF76EFB2023114A2000E26233702563AA +:102E9C003D7004F08CFDB2E72023327820003370B3 +:102EAC0025633D70222A02D104F097FDA7E704F0B8 +:102EBC00AAFDA4E70180000000E800FEFFBFFFFFB1 +:102ECC000280000003800000FF7FFFFF0000FFFF77 +:102EDC00FFFFFFFEF8B5050040352E780400C36AED +:102EEC000220012E0BD0013828701F30014207D070 +:102EFC00024205D02000FFF709FF00202870F8BD22 +:102F0C00102631425ED032425CD080273F02500402 +:102F1C003A401700C00F074351D0E66B002E1DD06E +:102F2C00002A03D032685268564272412600A76BC1 +:102F3C004136002F05D0002803D03868406800289F +:102F4C0001D0012A1CD13278282A09D1802292047E +:102F5C00934205D12000FFF791FBCEE73200E5E765 +:102F6C00102130782268D1612928C6D11A488342B1 +:102F7C00C3D02000FEF7C6FE2000FFF7F1FABCE735 +:102F8C0010212268D1610422616C0A43626430789A +:102F9C00124AC0B21342B0D12138092808D8FDF723 +:102FAC008FF8050C070707070707050C2123236378 +:102FBC002000616CFFF7B0FB9FE72223F7E7236843 +:102FCC00DE619AE70823194297D01A4200D194E7A0 +:102FDC002000FFF705FB90E70000FFFFFFFFFFFE5F +:102FEC0070B5050040352E780400C36A0220012E0E +:102FFC000BD0013828701F30014207D0024205D097 +:10300C002000FFF783FE0020287070BD10200142C5 +:10301C002FD002422DD0628D002A1CD122004132C9 +:10302C001078282807D180208004834203D1200007 +:10303C00FFF724FBE7E7102110782268D1612928DB +:10304C00E1D12C488342DED02000FEF75BFE20004D +:10305C00FFF786FAD7E72268D0610422616C0A4335 +:10306C006264254A1342CED12000616CFFF754FBF9 +:10307C00C9E70420014219D0024217D0628D002A00 +:10308C000DD02268516A626A1170626A0132626202 +:10309C00228D013A2285628D013A92B26285628D4F +:1030AC00002AB0D1134A9342ADD0D0E70820014298 +:1030BC0005D0024203D02000FFF792FAA3E70220CA +:1030CC000142A0D002429ED0628D002A0DD0636ACC +:1030DC0022681978013391626362638D013B9BB264 +:1030EC006385238D013B23858DE7034A134200D072 +:1030FC0089E7ACE70000FFFFFFFFFFFE806A10B519 +:10310C00836B002B01D000229A63C36B002B01D080 +:10311C0000229A63FFF7EBFA10BD41300078C0B281 +:10312C007047406C704700008023034A5B001168B5 +:10313C000B4313607047C0460070004080230F4A59 +:10314C0010B552690C009B0000280CD01A4201D11A +:10315C0000F044F804210A4A13698B431361012CD3 +:10316C0008D130BF05E01A42F4D000F041F8002835 +:10317C00F0D010BD40BF20BF20BFFAE70070004068 +:10318C0000ED00E010B5114C1149236802000B4012 +:10319C0003432360802300209B009A420ED10D4BE9 +:1031AC000D49186806235843FCF79EFF8022431CE8 +:1031BC00D200616908001040114200D110BD002BF3 +:1031CC0001D0013BF5E70320F8E7C0460070004052 +:1031DC00FFF9FFFF5000002040420F008023034AFC +:1031EC00DB0111680B4313607047C0460070004050 +:1031FC000E4B10B5186806230D495843FCF774FFA5 +:10320C000C4A0D49136801300B4080211360890072 +:10321C00546923000B400C4201D1180010BD00284A +:10322C0001D00138F4E70320F8E7C0465000002035 +:10323C0040420F0000700040FFBFFFFFF0B50400DC +:10324C0085B0002802D1012005B0F0BD0368DB0772 +:10325C0010D423689B075CD423681B0700D5C1E0FE +:10326C0023685B0700D5F2E0E369002B00D079E11D +:10327C000020E9E73822AF4DAB681340EA68102B09 +:10328C0009D1D3439B0708D12B689B03E1D5636815 +:10329C00002BDED1D7E7082BF6D0802263685202D0 +:1032AC00934211D12A6813432B60FEF709FB802748 +:1032BC000600BF022B683B42CBD1FEF701FB801B03 +:1032CC006428F7D90320BFE7A021C9028B4208D19B +:1032DC0080232968DB020B432B602B681A432A607E +:1032EC00E3E72A6894490A402A602A6893490A400D +:1032FC002A60002BD9D1FEF7E3FA80270600BF0223 +:10330C002B683B42A5D0FEF7DBFA801B6428F7D96B +:10331C00D8E73822874DAB681340EA68102B28D1C8 +:10332C0003210A40022A26D12A68520503D5E268F5 +:10333C00002A00D187E7696862698148120201405E +:10334C000A436A60002B0CD12B687E4A7E491340DD +:10335C00226913432B602B687C4A9B045B0FDA4079 +:10336C000A607B4B1868FEF763FA002800D173E7FC +:10337C0069E7002BD8D0E368002B20D02B68714A6A +:10338C00802713402269FF0013432B6080232A6897 +:10339C005B0013432B60FEF793FA06002B683B424D +:1033AC0007D06A68636966491B020A4013436B6065 +:1033BC0052E7FEF785FA801B0228EFD982E72B68CB +:1033CC00644A802713402B60FEF77AFA0600FF0050 +:1033DC002B683B4200D13FE7FEF772FA801B0228B4 +:1033EC00F6D96FE73822534DAB681340182B08D130 +:1033FC002B6E9B0700D433E7A369002B00D02FE77B +:10340C0021E7A2690123002A10D02A6E0227134358 +:10341C002B66FEF755FA06002B6E3B4200D01FE7D9 +:10342C00FEF74EFA801B0228F6D94BE72A6E0227CC +:10343C009A432A66FEF744FA06002B6E3B4200D1F3 +:10344C000EE7FEF73DFA801B0228F6D93AE7382240 +:10345C00384DAB681340202B08D1EB6D9B0700D483 +:10346C0002E7A368002B00D0FEE6ECE680220021E8 +:10347C00EB6B52050091134208D1EB6B1343EB63DA +:10348C00EB6B13400393039B012300938027324E75 +:10349C007F0033683B4215D0A368012B22D1EA6D23 +:1034AC001343EB65FEF70CFA02270600EB6D3B426B +:1034BC0038D0009B012B00D0D6E6EB6B274A13408B +:1034CC00EB63D1E633683B433360FEF7F9F90190C7 +:1034DC0033683B42E0D1FEF7F3F9019BC01A022896 +:1034EC00F6D9EFE6EA6D052B05D1013B1343EB65ED +:1034FC00EA6D0123D4E701218A43EA65EA6D0331C1 +:10350C008A43EA65002BCDD1FEF7DAF902270600D3 +:10351C00EB6D3B42CDD0FEF7D3F9114B801B98429B +:10352C00F6D9CFE6FEF7CCF90D4B801B9842BDD9EE +:10353C00C8E6C04600100240FFFFFEFFFFFFFBFF86 +:10354C00FF80FFFFFFC7FFFF500000200024F400A6 +:10355C0014000020FFFEFFFF00700040FFFFFFEF94 +:10356C00881300003821434DAA680A40102A53D012 +:10357C00414A022B3AD12B68802713402B60FEF76F +:10358C009FF90600BF042B683B4229D1616A236A6C +:10359C00EA680B43394980260A401343E26AB604B1 +:1035AC001343226B1343626B1343A26A120213433D +:1035BC00EB6080232A685B0413432B608023EA684A +:1035CC005B051343EB60FEF77BF904002B68334279 +:1035DC0000D04DE6FEF774F9001B0228F6D971E60F +:1035EC00FEF76EF9801B0228CDD96BE62B6880267E +:1035FC0013402B60FEF764F90400B6042B683342C9 +:10360C0004D1EB681E4A1340EB6031E6FEF758F923 +:10361C00001B0228F2D955E6012B00D113E6032238 +:10362C00E868216A02408A4200D00CE67022616A86 +:10363C0002408A4200D006E6FE21A26AC90101407E +:10364C001202914200D0FEE5F822E16A9203024098 +:10365C008A4200D0F7E5E022216B120502408A4233 +:10366C0000D0F0E5636B400F4007C01A431E984131 +:10367C00C0B2E9E500100240FFFFFFFE8C80C111D3 +:10368C00FCFFFEEE382370B51D4CA2681A4205D122 +:10369C0023681C489B045B0FD84070BDA2681A407D +:1036AC00082A27D0A2681A40102A17D1E368E168CB +:1036BC00DB43E5684906490F6F322D0A013115408D +:1036CC009B0709D11048FCF70FFDE1686843490FCF +:1036DC000131FCF709FDE0E70A48F4E7A2681A405B +:1036EC00202A09D0A26800201340182BD5D1FA202B +:1036FC00C001D2E70448D0E780200002CDE7C046E5 +:10370C00001002400024F40000127A00F7B5040007 +:10371C000D00002801D10120FEBD0727484E33685B +:10372C003B408B422AD3226893073BD4D20748D420 +:10373C00072733683B40AB420AD93368BB432B4362 +:10374C003360FEF7BDF8019033683B40AB4268D163 +:10375C0023683C4D5B076CD4FFF794FFAB683A4988 +:10376C001B051B0F9B005B581F210B40D840374A91 +:10377C00374B10601868FEF75BF8CDE73368BB4336 +:10378C000B433360FEF79CF8019033683B40AB422F +:10379C00C9D0FEF795F8019BC01A2E4B9842F4D96C +:1037AC000320B9E72749530704D5E0238868DB01D8 +:1037BC0003438B608B6828480340A06803438B60ED +:1037CC00B4E760681F4F032829D8FCF779FC200266 +:1037DC001C243B689B039ED50722BB689343034381 +:1037EC00BB60FEF76DF801903823BA681A40636825 +:1037FC00DB009A429CD0FEF763F8019BC01A154B74 +:10380C009842F1D9CCE73B689B01E5D483E73B6850 +:10381C005B05E1D47FE73B6E9B07DDD47BE7FB6D5B +:10382C00FAE7FEF74DF8019BC01A0A4B98428BD968 +:10383C00B6E7AB68094A1340E2681343AB608BE709 +:10384C0000200240001002402CED00085000002027 +:10385C001400002088130000FFF0FFFFFF8FFFFF14 +:10386C00064B07499B68074A5B045B0F9B005B5840 +:10387C001F2110680B40D8407047C0460010024012 +:10388C000CED000850000020072230B5F025094B44 +:10389C0002609C682D01144044609C682C4084603C +:1038AC00E0249B68E4012340C360034B1B68134076 +:1038BC000B6030BD0010024000200240F8B58023A0 +:1038CC000700994C9B0298421FD1C022E36D9200D5 +:1038DC001340E26D920704D580225200934200D12E +:1038EC001AE1226E920704D580229200934200D1F5 +:1038FC0015E122680020920326D58C4A8C489B182F +:10390C005A4253415B4218401EE00322E3681340C5 +:10391C00022B1AD0E06810400338431E9841854BA7 +:10392C0040421840844BC0188025E168ED00AF423E +:10393C0000D1C4E02CD8202F00D199E007D8012F5A +:10394C0043D0102F5ED00020F8BD7C48ECE78023DC +:10395C009B009F42F7D1616DC0220B0012031340F4 +:10396C00114238D0226E920704D58022D2029342A3 +:10397C0000D1D4E02268520504D580221203934270 +:10398C0000D1CFE0E26D00209207DDD56C4A4FE00C +:10399C000726090931400131FCF7A6FB8021020002 +:1039AC00C9018F4246D080239B039F4200D1A2E0E5 +:1039BC0080231B019F42C6D1C020636D00021840BA +:1039CC0088426CD10020E36844E0616D03220B0057 +:1039DC001340114202D1FFF743FFB5E7012B02D18F +:1039EC00FFF750FEB0E722682A4202D0022B00D12A +:1039FC0098E0E26D0020033B9207A5D55A42534153 +:103A0C00D803A1E7616DC0220B00120113401142D3 +:103A1C00E1D0AB42E4D022682A4203D080221201CA +:103A2C0093427FD0E26D0020920700D48CE7454A88 +:103A3C009B18E3E7636D9B0F9907002BD0D0802375 +:103A4C001B0699426ED080230020DB05994200D0E2 +:103A5C007AE7E368DB0300D476E7E068E1684004CA +:103A6C00400E50438902C90E0131FCF73DFB6BE758 +:103A7C00616DC0220B00920113401142ABD0802229 +:103A8C0052019342ACD0226800202A4200D15BE75D +:103A9C002D4A2A489B185A4253415B4233E700286F +:103AAC009ED022682A4203D080221202904239D042 +:103ABC00264BC01843425841254B404223E7616DC9 +:103ACC00C0220B0092031340114284D0226E920745 +:103ADC0003D580225203934221D02268520503D58C +:103AEC008022920393421DD0E26D0020920700D4F5 +:103AFC002AE7184A9CE7636D5B0200D46BE7E36826 +:103B0C000020DB0100D41FE7E368E1685B04580E7A +:103B1C00490E50433140A7E78020000214E7FA20F9 +:103B2C00C00111E705480FE70010024000FDFFFF40 +:103B3C0090D0030000EE85FF00127A000024F40000 +:103B4C000000F4FF00F4FFFF00E0FFFF0040FFFF68 +:103B5C0080BB00000000D0FF01000300012010B565 +:103B6C003D310C78E2B2844219D1001808701B6800 +:103B7C000C498B4206D08021C9058B4202D00A49E0 +:103B8C008B420DD19A6809490A40062A06D007399A +:103B9C008A4203D0012219680A431A60002010BD22 +:103BAC001968F9E7002C01400004004007000100EF +:103BBC00020030B502243C32157803002000012DA0 +:103BCC0008D018003D3004701B6859610123037044 +:103BDC000020107030BD704770470000022203684F +:103BEC0070B5DD681E69040016420DD015420BD06D +:103BFC00053A1A61043202779B699B0700D17CE07D +:103C0C0001F060FF0023237704231E4212D01D42D3 +:103C1C0010D00522236852421A61073222779A6922 +:103C2C00C0239B0020001A4200D16CE001F04AFF37 +:103C3C000023237708231E420FD01D420DD00922EA +:103C4C00236852421A610D322277DB6920009B07F0 +:103C5C005FD001F037FF0023237710231E4211D0D1 +:103C6C001D420FD01122236852421A611932227759 +:103C7C00DA69C0239B0020001A4250D001F022FFC9 +:103C8C000023237701231E4208D01D4206D00222B6 +:103C9C002368524220001A6101F0E9FE82239B0145 +:103CAC001E4207D02B0605D52368204A20001A6136 +:103CBC0000F005FAF30507D52B0605D523681C4A39 +:103CCC0020001A6100F0FCF940231E4208D01D426E +:103CDC0006D041222368524220001A61FFF77CFF74 +:103CEC0020231E4208D01D4206D0212223685242B6 +:103CFC0020001A6100F0E2F970BD01F0DFFE200037 +:103D0C00FFF769FF7EE701F0D9FE2000FFF763FFA4 +:103D1C008EE701F0D3FE2000FFF75DFF9BE701F07B +:103D2C00CDFE2000FFF757FFAAE7C0467FDFFFFF5D +:103D3C00FFFEFFFF10B51C4C0368A04206D080228A +:103D4C00D205904202D0194A904208D17022934376 +:103D5C004A681343164A1A40CB68134308E0154AC5 +:103D6C009042F7D0144A9042F4D0144A9042F1D0C9 +:103D7C00802293434A69134303608B68C3620B68C8 +:103D8C008362A04205D00C4B984202D00B4B984258 +:103D9C0001D10B690363012242610369134202D012 +:103DAC0003699343036110BD002C014000040040E3 +:103DBC00FFFCFFFF00200040004401400048014090 +:103DCC0070B504000120002C23D025003D352B7844 +:103DDC00DAB2002B05D123003C3320001A7002F01C +:103DEC003FFB02232B702068211DFFF7A3FF22004D +:103DFC00012300204832137047340A3A1370537071 +:103E0C009370D370137153719371D37113722370B8 +:103E1C002B7070BD1F2310B5012419408C408A40B3 +:103E2C00036AA3430362036A1A43026210BD0000D3 +:103E3C00020010B508291CD006D800290BD0042983 +:103E4C0014D01300433308E00C2915D01029F8D1F5 +:103E5C000300423301E003003E331B78013B581E44 +:103E6C008341DBB20120002B09D010BD03003F338E +:103E7C00F3E703004033F0E703004133EDE702239F +:103E8C00082930D006D800290BD0042928D01000DE +:103E9C00433008E00C2929D01029F8D11000423009 +:103EAC0001E010003E300370146801222000FFF77F +:103EBC00B1FF184A944205D0174B9C4202D0174BC5 +:103ECC009C4216D18023616C1B020B4363649442A9 +:103EDC0016D1A368124A1340062B16D10020C4E752 +:103EEC0010003F30DFE710004030DCE710004130BD +:103EFC00D9E78023DB059C42EBD00A4B9C42E8D0EF +:103F0C000123226813432360E8E780225202934284 +:103F1C00F6D1E3E7002C0140004401400048014089 +:103F2C00070001000004004010B5FFF781FF10BD31 +:103F3C00030010B5082927D006D800290BD0042976 +:103F4C001FD01A00433224E00C2920D01029F8D1BC +:103F5C00020042321DE002003E3210780632C0B23E +:103F6C001278D2B201284FD1012A3ED10132082950 +:103F7C003FD013D8002918D0042937D0180043306B +:103F8C003CE002003F32E8E702004032E5E7020085 +:103F9C00413210781A00C0B24732E1E70C292BD01D +:103FAC001029EBD11800423028E018003E30027086 +:103FBC0082711C6801222000FFF72CFF134B9C42DE +:103FCC0006D08023DB059C4202D0114B9C4207D1CA +:103FDC00A368104A1340062B06D0073A934203D02D +:103FEC000123226813432360002010BD18003F30CA +:103FFC00DDE718004030DAE71800413002701A0093 +:10400C00022047321070D4E70120EEE7002C01406B +:10401C0000040040070001000F2310B504241940D0 +:10402C008C408A40036AA3430362036A1A43026208 +:10403C0010BD00000300020010B5002905D1443268 +:10404C000120147884420AD010BD042901D14532D4 +:10405C00F6E7082901D14632F2E74732F0E70220B1 +:10406C0010701C6804222000FFF7D6FF8023626CBE +:10407C001B02134363640C4B9C4206D08023DB056C +:10408C009C4202D0094B9C4207D1A368084A1340BA +:10409C00062B06D0073A934203D001232268134320 +:1040AC0023600020D0E7C046002C014000040040F3 +:1040BC000700010010B5FFF7BDFF10BD704770473A +:1040CC007047000030B5EFF31084012282F31088A2 +:1040DC000168134D0B682B400B6084F31088EFF3D1 +:1040EC00108182F3108802680E4C93682340936011 +:1040FC0081F31088C36E012B0AD1EFF3108183F387 +:10410C001088102402681368A343136081F310888D +:10411C00030020228C331A600023C366436730BD32 +:10412C00DFFEFFFFFEFFFFEF30B5EFF3108401223F +:10413C0082F31088802501680B68AB430B6084F315 +:10414C001088EFF3108182F3108840230268106806 +:10415C000343136081F3108830BD030088331B6860 +:10416C0010B5212B06D1020056321388002B02D138 +:10417C00FFF7DAFF10BD036D01681C7801338C6208 +:10418C0003651388013B9BB21380F3E7030088336C +:10419C001B6810B5212B06D1010056310B88002B62 +:1041AC0002D1FFF7C1FF10BD026D04681388023203 +:1041BC00DB05DB0DA36202650B88013B9BB20B8018 +:1041CC00F1E70000030088331B6870B5212B21D167 +:1041DC000300010080246A331B885631002B19D050 +:1041EC000A88002A17D1EFF31084013282F3108869 +:1041FC000168114D8B682B408B6084F31088EFF3B2 +:10420C00108182F310884023026810680343136006 +:10421C0081F3108870BD0568EA69224208D0026DEE +:10422C0016780132AE6202650A88013A92B20A80AF +:10423C00013B9BB2D2E7C046FFFF7FFF03008833F0 +:10424C001B6870B5212B21D10300010080246A3337 +:10425C001B885631002B19D00A88002A17D1EFF38E +:10426C001084013282F310880168124D8B682B4048 +:10427C008B6084F31088EFF3108182F31088402355 +:10428C00026810680343136081F3108870BD0668E0 +:10429C00F26922420AD0056D2A880235D205D20D68 +:1042AC00B26205650A88013A92B20A80013B9BB260 +:1042BC00D0E7C046FFFF7FFF7047704770B5050021 +:1042CC000120002D19D02E002423002488363360C1 +:1042DC002B681A6882431A6028001C605C609C6022 +:1042EC00FFF7EBFF2B00200090331C60043B346085 +:1042FC001C60EC662C6784352C7070BD30B50500E5 +:10430C0088352C6803000220202C38D10138002974 +:10431C0035D0002A33D080209C684001844205D1DE +:10432C001869002802D10130014228D11965190001 +:10433C0054310A804A801A000021903211602122E7 +:10434C0080212A608022586E92054901904217D133 +:10435C00154A8C4204D11969144A002900D0124A1A +:10436C009A67EFF31081012282F310881A68802378 +:10437C0090681B040343936081F31088002030BDC8 +:10438C000B4A8C4204D119690A4A002900D0084A08 +:10439C009A67EFF31081012282F310881A68802348 +:1043AC00106803431360E7E7D14100084942000855 +:1043BC006741000899410008806A0023020010B58B +:1043CC005E321380083A138002F0FCFB10BD70477C +:1043DC00F7B50168C14DCB6904000A6888682B42A7 +:1043EC0010D120252B4200D19BE08026760515406C +:1043FC000640354300D194E0636F2000002B00D0C1 +:10440C0085E085E0B64D05400095B64D009E154003 +:10441C00354300D185E0250001269035334205D087 +:10442C00D70503D50E622F683E432E600226334219 +:10443C000CD0C7070AD527000E6290373E6801974B +:10444C00B446042667463E43019F3E600426334231 +:10445C000CD0C7070AD527000E6290373E6801972B +:10446C00B446022667463E43019F3E600826B4468A +:10447C00334209D02027009E1740374304D06646AC +:10448C000E622F683E432E6080263601334206D0E2 +:10449C00570104D50E6220212E683143296029680A +:1044AC00002935D020210B420AD080235B05114016 +:1044BC000340194304D0636F002B01D020009847B0 +:1044CC0022682B684027966828223E401340200023 +:1044DC001E4322D0FFF7F6FD23689B683B4218D0A1 +:1044EC00EFF31081012383F31088250004CD93682A +:1044FC00BB43936081F31088E86F002809D07A4B96 +:10450C008363FDF7FBFA002802D0E86F836B9847B2 +:10451C00F7BD200002F056FBFAE702F053FB2E60C9 +:10452C00F6E7E56E012D00D09FE01026334200D156 +:10453C009BE0324200D198E00E62896840230A0069 +:10454C001A40194257D0211DCA6F1068426892B2A6 +:10455C00002ADDD027005C373F889742D8D9270046 +:10456C005E373A80026820208446104000906046F6 +:10457C00024232D1EFF3108785F3108820685B4E2E +:10458C0002683240026087F31088EFF3108785F3DE +:10459C00108820688268AA43826087F31088EFF342 +:1045AC00108785F31088206882689A43826087F3AD +:1045BC001088230062468C331A60009BE366EFF38D +:1045CC00108085F3108822680F351368AB43136095 +:1045DC0080F31088C86FFDF757FA02232200236777 +:1045EC0023005C325E331B881188C91A89B2200003 +:1045FC00FFF7EDFE8CE721005E310B8809889BB23A +:10460C00002900D184E721005C310988C91A89B2DC +:10461C00002900D17CE7EFF3108785F31088206820 +:10462C00334E03683340036087F31088EFF3108731 +:10463C0085F3108820682F4E83683340836087F39E +:10464C001088230020208C331860E2666267EFF339 +:10465C00108085F31088102522681368AB43136013 +:10466C0080F3108802232367C1E780256D032B425A +:10467C0006D0460204D520000D6202F0EBFA47E7A3 +:10468C0080210B4207D080252D0411402840014386 +:10469C0001D0A36FB1E640210B4216D00A4214D0D0 +:1046AC00EFF31080012383F31088226813688B4387 +:1046BC00136080F310882300202288331A600023B3 +:1046CC002000A36702F077FA22E7190214D55100F3 +:1046DC0012D5200000F0D7FE1AE7C0460F080000E4 +:1046EC000100001020010004C5430008FFFEFFFF7D +:1046FC00DFFEFFFFFEFFFFEFDB0100D408E7002A1F +:10470C0000DB05E7200000F0BDFE01E701008C3165 +:10471C000A68F8B50368222A5DD1040060345B6A2C +:10472C002488826D234013700200836D5E32013346 +:10473C0083651388013B9BB2138013889CB2002BBA +:10474C0045D1EFF31086013383F310880568244FAD +:10475C002A683A402A6086F31088EFF3108683F3B8 +:10476C0010880568AA689A43AA6086F310882022EC +:10477C000A6002681B49446704678A420DD052687C +:10478C0012020AD5EFF3108183F310880268164CDD +:10479C0013682340136081F31088C36E012B17D16B +:1047AC000022C266EFF3108483F3108801680F3384 +:1047BC000A689A430A6084F310880268D169194226 +:1047CC0000D0136203005C331988FFF700FEF8BDBC +:1047DC0002F0EAF9FBE7082299690A439A61F6E7C5 +:1047EC00DFFEFFFF00800040FFFFFFFB02008C326A +:1047FC001168F8B5036822295CD104006034596A49 +:10480C002488836D214019800100023383655E3159 +:10481C000B88013B9BB20B800B889CB2002B45D1C3 +:10482C00EFF31086013383F310880568244F296851 +:10483C003940296086F31088EFF3108683F31088D3 +:10484C000568A9689943A96086F310882021116036 +:10485C0002681C49446704678A420DD052681202F0 +:10486C000AD5EFF3108183F310880268164C136895 +:10487C002340136081F31088C36E012B17D10022E3 +:10488C00C266EFF3108483F3108801680F330A6853 +:10489C009A430A6084F310880268D169194200D0E7 +:1048AC00136203005C331988FFF791FDF8BD02F029 +:1048BC007BF9FBE7082299690A439A61F6E7C0463F +:1048CC00DFFEFFFF00800040FFFFFFFBF0B5036839 +:1048DC0085B0DD691A68040003929A68019202009F +:1048EC008C321268222A00D0CBE0030068331B887C +:1048FC00002B08D123005E331B889AB2002B00D00A +:10490C009FE005B0F0BD030060331B8802932023A9 +:10491C001D42EFD02600236802995B6AA26D0B4002 +:10492C001370A36D5E360133A36533882268013B97 +:10493C009BB233800723D5691D422FD0063B1D4205 +:10494C0008D00399C90505D5210013629031086878 +:10495C0003430B6002231D4209D00199C90706D5F8 +:10496C002100136290310868DB1803430B600423A9 +:10497C001D4209D00199C90706D513622200903255 +:10498C001168023B0B431360270090373B68002BE8 +:10499C0004D0200002F016F900233B60338899B252 +:1049AC00002BB4D1EFF31086013383F31088206809 +:1049BC00364F02683A40026086F31088EFF3108697 +:1049CC0083F310882068324F82683A40826086F305 +:1049DC001088220020208C321060616721672268C9 +:1049EC002C498A420DD0526812020AD5EFF310817D +:1049FC0083F310882268284813680340136081F3FE +:104A0C001088E36E012B18D10022E266EFF31080C0 +:104A1C0083F3108821680F330A689A430A6080F385 +:104A2C0010882268D169194200D0136223005C33CC +:104A3C0020001988FFF7CBFC69E7200002F0B4F8DE +:104A4C0065E7230068331B88934200D859E7EFF3DE +:104A5C001080012282F310882168104D8B682B4046 +:104A6C008B6080F310880E4B6367EFF3108182F339 +:104A7C0010882023226810680343136081F3108888 +:104A8C003FE7082299690A439A613AE7FFFEFFFF64 +:104A9C00FEFFFFEF00800040FFFFFFFBFFFFFFEF7B +:104AAC0019470008F0B5036885B0DD691A68040081 +:104ABC0003929A68019202008C321268222A00D06A +:104ACC00C9E0030068331B88002B08D123005E3338 +:104ADC001B889AB2002B00D09DE005B0F0BD0300FE +:104AEC0060331B88029320231D42EFD026002368DD +:104AFC000298596AA26D014011800232A2655E369D +:104B0C003288013A92B232800722DD6915422FD0E9 +:104B1C00063A154208D00399C90505D521001A6239 +:104B2C009031086802430A600222154209D00199AB +:104B3C00C90706D521001A62903108689218024301 +:104B4C000A600422154209D00199C90706D51A62D8 +:104B5C0022000223903211680B4313602700903718 +:104B6C003B68002B04D0200002F02CF800233B60A3 +:104B7C00338899B2002BB6D1EFF31086013383F34F +:104B8C0010882068364F02683A40026086F310881D +:104B9C00EFF3108683F310882068324F82683A4016 +:104BAC00826086F31088220020208C3210606167AE +:104BBC00216722682C498A420DD0526812020AD50C +:104BCC00EFF3108183F310882268284813680340A0 +:104BDC00136081F31088E36E012B18D10022E2667A +:104BEC00EFF3108083F3108821680F330A689A431F +:104BFC000A6080F310882268D169194200D01362D0 +:104C0C0023005C3320001988FFF7E1FB6BE72000E1 +:104C1C0001F0CAFF67E7230068331B88934200D872 +:104C2C005BE7EFF31080012282F310882168104DAE +:104C3C008B682B408B6080F310880E4B6367EFF30F +:104C4C00108182F3108820232268106803431360BC +:104C5C0081F3108841E7082299690A439A613CE77D +:104C6C00FFFEFFFFFEFFFFEF00800040FFFFFFFB9A +:104C7C00FFFFFFEFF94700080200F0B5843211780E +:104C8C000300022001291FD01C000121883422308E +:104C9C0011702060EFF3108681F310880C271D68CB +:104CAC002868B843286086F31088EFF3108081F3EE +:104CBC001088196808230D682B430B6080F310884B +:104CCC002023002023601070F0BD0200F0B5843268 +:104CDC0011780300022001291FD01C000121883407 +:104CEC00223011702060EFF3108681F310880C27AE +:104CFC001D682868B843286086F31088EFF310808D +:104D0C0081F31088196804230D682B430B6080F322 +:104D1C0010882023002023601070F0BD030088331E +:104D2C008C301B680068184370470000F8B504000D +:104D3C002569A26823682A4365691968C0692A43F2 +:104D4C00664D024329400A431A605A686449A569B2 +:104D5C000A40E1680A4363495A608B4201D0226AD7 +:104D6C0015439A68604E32402A430F259A60DA6ADE +:104D7C00AA43656A2A43DA625C4A934214D15C4BBB +:104D8C005A6D03231A4080231B02022A00D195E09E +:104D9C00032A00D19EE0012A00D196E0984200D06F +:104DAC0078E0FEF75DFD55E0524A934200D189E070 +:104DBC008B4210D1C02280214D4B12015B6D090139 +:104DCC0013408B4214D004D8002B06D1FEF748FDBB +:104DDC0005E0934239D0012004E0FEF753FC061E97 +:104DEC0007D10020444BA36600236367A367F8BD7B +:104DFC00424E626A424B5200D75A30003900FBF7E0 +:104E0C0073F9032365686B438342E4D82B03834215 +:104E1C00E1D300233A0030001900FBF753FB0027C5 +:104E2C00060E0B02334302026E0892197B411000EE +:104E3C0019002A003B00FBF745FB324BC218324BE2 +:104E4C009A42C8D82368D860CBE780263602D0E7D0 +:104E5C00FEF718FC0028C4D0626A294B5200D15AC4 +:104E6C00FBF742F9656840006B08C0182900FBF796 +:104E7C003BF90200254B103A9A42ACD80F230200A2 +:104E8C0000079A4393B2400F22680343D360A8E70C +:104E9C001A48E1E7FEF7E4FC0028A2D0626A184B3E +:104EAC005200D15AFBF720F965686B08C01829002D +:104EBC00FBF71AF90200154B103AC1E79842E7D0FC +:104ECC000E48EBE780231B0268E79842C0D0FEF740 +:104EDC00D9FBE1E79842BFD01800DFE7F369FFCFB9 +:104EEC00FFCFFFFF00800040FFF4FF1100380140AE +:104EFC000010024000440040010001000024F400B6 +:104F0C00A4EC000800FDFFFFFFFC0F00EFFF00000A +:104F1C00836A30B51A0706D50168284C4A682240C6 +:104F2C00846B22434A60DA0706D50168244C4A6830 +:104F3C002240C46A22434A609A0706D50168214C74 +:104F4C004A682240046B22434A605A0706D501681E +:104F5C001D4C4A682240446B22434A60DA0606D54F +:104F6C0001681A4C8A682240C46B22438A609A06F4 +:104F7C0006D50168164C8A682240046C22438A606C +:104F8C005A0610D50168134D4A68446C2A402243D6 +:104F9C004A6080225203944205D14A680E4C22404A +:104FAC00846C22434A601B0606D502680B49536881 +:104FBC000B40C16C0B43536030BDC046FF7FFFFFFD +:104FCC00FFFFFDFFFFFFFEFFFFFFFBFFFFEFFFFFFC +:104FDC00FFDFFFFFFFFFEFFFFFFF9FFFFFFFF7FF6D +:104FEC00F7B504000D00170000932268D3692B401D +:104FFC005B1B59424B41BB4201D0002026E0089B71 +:10500C000133F3D0FCF75CFC009BC01A089B984260 +:10501C002DD8002B2BD023681A685207E5D52A000F +:10502C004021403A8A43E0D0DA6908261100314029 +:10503C00019132420BD020001E62FFF743F823008F +:10504C0090331E600023012084342370FEBD802227 +:10505C00D96912011142C8D01A622000FFF732F848 +:10506C002300202290331A60019B84342370032088 +:10507C00ECE7F0B51700020087B08832059313688F +:10508C0004000D000220202B39D10138002936D024 +:10509C00002F34D08023A1685B01994204D123698D +:1050AC00002B01D105422AD12300002690331E602B +:1050BC0021231360FCF704FC230054331F800233BC +:1050CC0003931F808023A26804905B019A4204D151 +:1050DC002369B34201D12E001D00230056331B88D7 +:1050EC009AB2002B0DD1059B200000934021049B0C +:1050FC00FFF776FF20238834236000280ED107B0F9 +:10510C00F0BD059B0022009380212000049BFFF73B +:10511C0067FF002804D02023883423600320EEE7A7 +:10512C002268002D0BD133880236DB05DB0D936230 +:10513C00039B039A1B88013B9BB21380CDE72B7812 +:10514C0001359362F4E70000030073B500260400F8 +:10515C0090331E60FCF7B4FB236805001B681B072B +:10516C001FD58021284B32000093890303002000B7 +:10517C00FFF736FFB04214D0EFF31081012383F315 +:10518C0010888020226813688343136081F3108891 +:10519C002300202288331A600320002384342370D8 +:1051AC0076BD260023688C361B685B0723D58021CF +:1051BC00154B0022009320002B00C903FFF710FFB2 +:1051CC00002818D0EFF31080012282F31088216898 +:1051DC000E4D0B682B400B6080F31088EFF31080A2 +:1051EC0082F3108821688B6893438B6080F310885E +:1051FC0020233360D0E723002022002088331A605C +:10520C003260E0662067C8E7FFFFFF01DFFEFFFFAB +:10521C0070B5041E01D1012070BD050088352B68C6 +:10522C00002B04D1020084321370FFF745F82423BD +:10523C00012122682B6013688B431360A36A002B37 +:10524C0002D02000FFF764FE2000FFF76FFD01285D +:10525C00E1D0236807495A6820000A402A215A6085 +:10526C009A688A439A60012219680A431A60FFF708 +:10527C006BFFD1E7FFB7FFFF70B5041E01D1012012 +:10528C0070BD050088352B68002B04D102008432D8 +:10529C001370FFF711F82423012122682B60136887 +:1052AC008B431360A36A002B02D02000FFF730FE63 +:1052BC002000FFF73BFD0128E1D0236809495A681B +:1052CC0020000A4022215A609A688A439A60082278 +:1052DC0099680A439A60012219680A431A60FFF719 +:1052EC0033FFCDE7FFB7FFFF03005C3370B581657B +:1052FC0080241A805A800023816843676401A1428C +:10530C003CD1036959424B411B02FF330100603110 +:10531C000B8003000021903319602231043B19608B +:10532C00EFF31084012383F3108801688D682B43FD +:10533C008B6084F3108880258021466E8468036915 +:10534C00AD054901AE423FD1050068352D88954227 +:10535C003AD88C4233D1002B22D12C4B4367EFF33C +:10536C001081012383F31088802302685B05906809 +:10537C000343936081F31088002070BD002905D190 +:10538C000169FF230029C1D0803BBFE7802464055D +:10539C00A142BBD101697F230029B7D0403BB5E7BF +:1053AC001B4B4367EFF31081012383F310880268D2 +:1053BC00FF3314682343136081F31088CFE7144A3A +:1053CC004267002BCBD0EDE78C421AD1002B0AD1CF +:1053DC00104B4367EFF31081012383F310880268AD +:1053EC001F3310680AE00C4B4367EFF31081012365 +:1053FC0083F31088026820331068FF330343136073 +:10540C00B8E7054A4267002BE4D0EEE7B14A000842 +:10541C00D9480008F94700081947000803008C33E5 +:10542C0070B51C680223202C28D1013B002925D003 +:10543C00002A23D0802384685B019C4205D1036938 +:10544C00002B02D10133194218D100230C4CC36636 +:10545C000368A3420FD05B681B020CD5EFF31085D9 +:10546C00012383F3108880230468DB04266833430C +:10547C00236085F31088FFF737FF0023180070BDF9 +:10548C000080004070477047020010B584321178DC +:10549C000300022001290ED001211170EFF31080BE +:1054AC0081F31088196802230C6823430B6080F386 +:1054BC0010880020107010BD020010B584321178D5 +:1054CC000300022001290ED001211170EFF310808E +:1054DC0081F31088022419680B68A3430B6080F3D6 +:1054EC0010880020107010BD836810B50400002BCC +:1054FC0005D00322010098470023A360E36010BD90 +:10550C004B1E032B00D9FEE78800043870470000BF +:10551C0000B50139425C102013000340024204D054 +:10552C00022917D80C4B4800C35AD20708D50329B7 +:10553C0010D80800FAF7C4FD0206080B0122134329 +:10554C00180000BD1022FAE780225200F7E78022F3 +:10555C005201F4E7FEE7C046C4EC00080139032908 +:10556C0000D9FEE7014B585C7047C046C0EC000800 +:10557C000139032900D9FEE7014B585C7047C0463E +:10558C00BCEC0008F7B504000E00FFF7B9FF3100C2 +:10559C0005002000FFF7E2FF33016433E3180193A9 +:1055AC009B68002B05D0C24323691A61DA68024359 +:1055BC00DA60771E7B00E31898880B2817D8FAF767 +:1055CC007FFD4E1717170606171748484828E35D46 +:1055DC00DB0604D5200029001030FEF76BFDE35DDF +:1055EC00DB0704D5200029001030FEF79DFCF7BD29 +:1055FC00E35DDB0604D5200029001030FEF71AFD10 +:10560C00E35DDB07F3D5200029001030FEF710FC1A +:10561C00EDE7200029001030FEF78AFC3100200055 +:10562C00FFF7A6FF010006002000FFF771FF2569B8 +:10563C002B6A1843019B28629B68002BD7D0310042 +:10564C002000FFF78BFFC3432B61EB681843E86026 +:10565C00CDE7200029001030FEF76AFCC7E723696C +:10566C001B68DB07C3D420001030FEF775FABEE7C9 +:10567C0070B50121040002256B00E35A002B04D005 +:10568C00691E2000FFF77EFF00210135062DF3D1A6 +:10569C00E36E002B07D00222236952421A61D868AC +:1056AC0003320243DA60002907D023691B68DB0749 +:1056BC0003D420001030FEF74FFA70BD10B5012155 +:1056CC001030FEF775FA10BD0369186801231840F5 +:1056DC00704770B505000C00FFF7F6FF00280FD1DE +:1056EC000126E36833420CD0E3682800B343E3603F +:1056FC00FFF7E4FF02235B422361E3681E43E6608D +:10570C0070BD2800FFF7DAFFFAE700000E4A03002D +:10571C00904213D08022D205904211D00B4A904275 +:10572C0010D00B4A0320934209D00A4A013093420D +:10573C0005D0094A0130934201D0FEE700207047A2 +:10574C000120FCE70220FAE7002C01400004004095 +:10575C0000200040004401400048014070B50400A6 +:10576C000069FFF7D3FF05002000103000F0D2FDD8 +:10577C000022084BAD00EA5026002500E260B4354B +:10578C006436B54204D0103D2800FBF7E7FCF8E77F +:10579C00200070BD3C0E0020F8B5040008000D0080 +:1057AC00FFF7B4FF2369002B00D0FEE721001A4A53 +:1057BC0080000C31815022002C32256126001370A0 +:1057CC00203223636363A363E36323646364A3648E +:1057DC001370537003221036300025002700E4604C +:1057EC00E265236600F034FD6435B43728001035CB +:1057FC00FFF77AFEBD42F9D10023084A23606360AB +:10580C00A3606361A3612362636280333000E26151 +:10581C00A362FEF7D5FAF8BD3C0E0020FFFF000096 +:10582C0030B587B002AC050010220021200003F037 +:10583C0069F90023200001A90193FEF725F82869D6 +:10584C0000F033FE012815D1059CFEF709F8C023A2 +:10585C00DB019C4206D007D88022074BD2012340A3 +:10586C00934205D1400003E0E023DB019C42F9D0D8 +:10587C0007B030BDFEE7C046FFEFFFFF70B5050077 +:10588C000C00012A0CD0022A18D023005A1E934176 +:10589C002969E41A2800CC62EC61FFF71AFF70BD8D +:1058AC00FFF7BEFF0849FAF71FFC60432B69010C98 +:1058BC0099620131FAF718FC0400E6E7FFF7B0FF34 +:1058CC002100FAF711FCF1E740420F00044B10B530 +:1058DC001868002802D00430FEF780F910BDC046CD +:1058EC003C0E002010B5FFF7F1FF10BD044B10B5B6 +:1058FC005868002802D00430FEF770F910BDC0467D +:10590C003C0E0020044B10B59868002802D00430DF +:10591C00FEF764F910BDC0463C0E0020044B10B5D8 +:10592C00D868002802D00430FEF758F910BDC046E4 +:10593C003C0E0020044B10B51869002802D004302E +:10594C00FEF74CF910BDC0463C0E0020044B10B5C0 +:10595C005869002802D00430FEF740F910BDC0464B +:10596C003C0E002010B50C220021040003F0CAF8F4 +:10597C0000232000E36010BDF8B50500070004000B +:10598C000E006435B43728001035FFF7EBFFBD422D +:10599C00F9D10023310020002361FFF7FDFE200028 +:1059AC00F8BD70B50C220D000021040003F0AAF81C +:1059BC000023E360AB68002B07D0022229002000F3 +:1059CC009847EB68E360AB68A360200070BD70B5CE +:1059DC00040086B002AD2800FFF7E3FF290008227F +:1059EC00684603F000F92B0022006E4603CA03C37D +:1059FC00230006CE06C3049BA268A360059B0492F9 +:105A0C00E2682800E3600592FBF7A8FB06B070BDC6 +:105A1C00C36E70B504000D006430002B02D0FFF78C +:105A2C00D6FF70BDFFF7D3FFAB68002BF9D0022275 +:105A3C00236952421A61D96803320A43DA60F0E7EB +:105A4C00836810B5002B01D108F050FCC36898474F +:105A5C0010BD10B5002800D1FEE700F0F7FB006880 +:105A6C00C36E002B02D06430FFF7EAFF10BD10B5F7 +:105A7C00FFF7EFFF10BD030010B5002800D1FEE7C3 +:105A8C00007F0138072812D8FAF71AFB04161112F6 +:105A9C00111111140124180000F0D8FB2401006826 +:105AAC00643400198368002B01D0FFF7C9FF10BDC7 +:105ABC000324F0E70424EEE70224ECE710B5FFF72B +:105ACC00DAFF10BD10B5FFF7D6FF10BD10B502F010 +:105ADC001DFD10BD10B502F023FD10BD7FB50023D8 +:105AEC0004280FD81B4B5A6BFAF7EAFA030F18214C +:105AFC002A0001210A435A635B6B0B400193019B03 +:105B0C00A023DB05180007B000BD02210A435A632D +:105B1C005B6B0B400293029B0F4BF3E704210A4390 +:105B2C005A635B6B0B400393039B0C4BEAE7082116 +:105B3C000A435A635B6B0B400493049B084BE1E7ED +:105B4C0020210A435A635B6B0B400593059B054B65 +:105B5C00D8E7C04600100240000400500008005076 +:105B6C00000C005000140050F7B5134B0600190040 +:105B7C00019300F0D5FAFFF7C9FD104F8500EB59E2 +:105B8C00002B0DD1B420FFF7A1FF019904003000C8 +:105B9C0000F0C6FA01002000FFF7EEFEEB591C6086 +:105BAC001C68002C06D02000FFF7D8FDB421200083 +:105BBC00FFF790FFF7BDC046F4EE00083C0E002046 +:105BCC0010B5FBF77DFE10BD704710B5FBF76CFEF2 +:105BDC00FBF7EBFEFFF7F8FF10BD000010B590B01F +:105BEC0038220021040002A802F08CFFFDF79CFA79 +:105BFC008021294BC900DA6B0A43DA63DA6B0A405D +:105C0C000192019A032C0ED82000FAF759FA0215CA +:105C1C00283701211A6E0A431A661B6E9B0702D4A1 +:105C2C00082308910293029B002B33D002A8FDF7A6 +:105C3C0005FB00282ED0FEE780211A6849000A4394 +:105C4C001A601A68154802400A431A601B685B0503 +:105C5C00E9D4022302933E3305910793E3E7012134 +:105C6C00DA6D0A43DA65DA6D9207DCD41820DA6D46 +:105C7C008243DA65042304910293D4E780211A68E5 +:105C8C0049020A431A601B689B03CCD4012303917D +:105C9C000293C8E710B010BD00100240FFC6FFFF12 +:105CAC007047000080210E4B4905DA6B84B00A4323 +:105CBC00DA63DA6B0A4001210192019A1A6C0A43E9 +:105CCC001A641A6C0A4080210292029A9A6B49015A +:105CDC000A439A639B6B0B400393039B04B070477E +:105CEC000010024010B5FFF7DDFFFBF7C9FDFFF711 +:105CFC00D7FFFBF7B7F90248FBF75CFE10BDC046B7 +:105D0C002C00002010B50C220021040002F0FAFE39 +:105D1C000023E36010BD00000F23F0B50127034002 +:105D2C0091B09F4003920C0000220293BBB20192EF +:105D3C00012B5DD10006000FFFF7D0FE051E15D01C +:105D4C00039B2E4A0C93029BC0689B00995803231B +:105D5C0049434B4318400B97FAF7C6F902230BAE95 +:105D6C000D90310028000E93FBF706FF1426019BC3 +:105D7C0007AD0C22002128005E43214F02F0C2FE29 +:105D8C000023EB60A36804369C46F619002B06D062 +:105D9C000222210028009847E3689C46A36828004B +:105DAC0005AA12C812C21424019A280054433A19A5 +:105DBC00043211000194029214C914C0029A05A96C +:105DCC0011C911C2B268B360F36828000A93634624 +:105DDC00F3600992FBF7C2F9019B0022FC560321E8 +:105DEC002000FBF773FD2000FBF79AFD11B0F0BD0E +:105DFC00019A5B080132D2B299E7C046CCEC00089C +:105E0C00540E0020002310B501280BD114225A4344 +:105E1C00064B101DC0188168002902D09B181B6905 +:105E2C00984710BD01334008DBB2EDE7540E00205B +:105E3C0010B5FFF7E7FF10BD10B5FFF7E3FF10BD7E +:105E4C0010B50120FBF74AFF0220FBF747FF10BDFE +:105E5C0010B50420FBF742FF0820FBF73FFF10BDF5 +:105E6C0070B50C241025A8B2013CFBF737FF6D0070 +:105E7C00002CF8D170BD0000F8B505252E4F2F4C25 +:105E8C0038002570FFF73EFF2D4E25753000FFF7CB +:105E9C0039FF2300013528332A481D70FFF732FFE4 +:105EAC00230029483C331D70FFF72CFF23000135DC +:105EBC00503326481D706037FFF724FF24483D708F +:105ECC006036FFF71FFF23483570FFF71BFF2300D9 +:105EDC0021488C331D70FFF715FF23001F48A0339A +:105EEC001D70FFF70FFF23001D48B4331D70FFF723 +:105EFC0009FF23001B48C8331D70FFF703FF230065 +:105F0C001948DC331D70FFF7FDFE23002600F0332B +:105F1C0016481D70FF36FFF7F5FE15487571FFF733 +:105F2C00F1FE14487576FFF7EDFE962312485B00E0 +:105F3C00E554FFF7E7FEF8BD580E0020540E002084 +:105F4C006C0E0020800E0020940E0020A80E002065 +:105F5C00BC0E0020D00E0020E40E0020F80E002015 +:105F6C000C0F0020200F0020340F0020480F0020C1 +:105F7C005C0F0020700F0020840F002010B5044C23 +:105F8C00143C201DFBF7EAF8024B9C42F8D110BDE3 +:105F9C00940F0020540E0020431C04D100207047A5 +:105FAC00834204D00C310B685A1CF9D1F6E701205E +:105FBC00F5E70000F7B505000C00431C00D1FEE727 +:105FCC000F23484A0340C0B29B0009389F5803284E +:105FDC000ED8FAF775F802263035C0232A009B013B +:105FEC001A409A4204D108233F4A11680B431360AC +:105FFC00072628062640000F0196FFF76FFD8268E2 +:10600C00030094463A00032066467A435043C1434A +:10601C00304398600198032852D8FAF751F852543B +:10602C002D15C0232A009B011A409A42E0D12E4A1A +:10603C0010231168DAE708212B4A13688B43D6E743 +:10604C00294A10211368F9E7032050431D68019E6B +:10605C000D402843013E1860012E04D8200734D58A +:10606C00586838435860A406A40F012C30D0022C79 +:10607C0033D0DA680A402EE06004400E84467F2854 +:10608C0001D10220E1E72D070DD50F25586A060036 +:10609C00380A404340434543AE433500664670439F +:1060AC0005435D62EDE7186A0F25060010005043AA +:1060BC004543AE4335006646704305431D62E0E739 +:1060CC00FEE70020C1E70120BFE75868B843C9E7E5 +:1060DC00D86801400A43DA60F7BDD8685200014025 +:1060EC00F8E7C046CCEC00080000014010B5431C9A +:1060FC0007D110BD834203D18968FFF75BFFF8E736 +:10610C000C310B685A1CF5D1FEE70B685A1C01D1F7 +:10611C00002002E0834201D1486870470C31F4E75B +:10612C00002310B5421C02D0FFF7EFFF030018004C +:10613C0010BD4B68002B02D10120404202E083428B +:10614C0001D1086870470C31F3E710B5002802D074 +:10615C00FFF7EFFF10BD01204042FBE703000800F2 +:10616C008B4205D0002B03D0424250414042184094 +:10617C0070470000A0220D4BD20019680C480A434E +:10618C0000211A6099601A6802401A60802252013C +:10619C00DA601A68074802401A60074A99611A6265 +:1061AC008022064B12059A607047C04600100240D0 +:1061BC00FFFFF6FEFFFFFBFF3B03000000ED00E0DE +:1061CC00382210B51C4CA3681340182B2FD009D8BB +:1061DC00082B2FD0102B0AD0236818489B045B0F78 +:1061EC00D84018E0202BF7D18020000213E0E368A0 +:1061FC00E168DB434906490F01319B0715D1104873 +:10620C00F9F772FFE368E1685B045B0E490F5843D2 +:10621C000131F9F769FFA3680A4A1B051B0F9B00A4 +:10622C009B580949D840086010BD0448E8E7FA209B +:10623C00C001F0E70248EEE7001002400024F40031 +:10624C0000127A002CED0008500000200438704732 +:10625C0003682A4A86B0934217D18020284A00014D +:10626C00116C01431164126C02400092009A254A91 +:10627C00934217D18021224BC9021A6C0A431A642B +:10628C001B6C0B400593059B0CE08022D2059342BE +:10629C000AD101211A4BDA6B0A43DA63DB6B0B4030 +:1062AC000193019B06B07047174A934209D1022112 +:1062BC00134BDA6B0A43DA63DB6B0B400293029BE2 +:1062CC00F0E7124A93420AD180210D4B09021A6C55 +:1062DC000A431A641B6C0B400393039BE2E70C4AC2 +:1062EC009342C4D18021064B89021A6C0A431A646A +:1062FC001B6C0B400493049BD4E7C046002C01405C +:10630C000010024000480140000400400020004002 +:10631C00004401400368184A93420BD117491848AE +:10632C000A6C02400A64174A93420CD1134A16496C +:10633C00136C16E08022D205934205D101210F4A3D +:10634C00D36B8B43D3637047104A934203D10B4AF0 +:10635C000221D36BF5E70E4A934205D1074A0D494A +:10636C00136C0B401364EEE70B4A9342DBD1034AE8 +:10637C000A49136CF5E7C046002C0140001002409E +:10638C00FFF7FFFF00480140FFFFFBFF0004004048 +:10639C0000200040FF7FFFFF00440140FFFFFDFF96 +:1063AC000300421C17D0114A904217D00BD8104A48 +:1063BC00904215D00F4A904214D080220F20D20563 +:1063CC00934207D0FEE70C4A90420DD00B4A1620A0 +:1063DC009342F7D170470E204042FBE70D20F9E7BE +:1063EC001020F7E71320F5E71520F3E7002C014008 +:1063FC0000040040002000400044014000480140DF +:10640C000300421C17D0114A904217D00BD8104AE7 +:10641C00904215D00F4A904214D080220F20D20502 +:10642C00934207D0FEE70C4A90420DD00B4A16203F +:10643C009342F7D170470E204042FBE70E20F9E75C +:10644C001020F7E71320F5E71520F3E7002C0140A7 +:10645C00000400400020004000440140004801407E +:10646C00F8B50400FFF7F4FE2068FFF799FF226DE2 +:10647C00E16CFBF72BFA2068FFF792FFFBF750FA61 +:10648C0027683800FFF7BCFF05003800FFF788FFCE +:10649C00854209D02800226DE16CFBF717FA2068C1 +:1064AC00FFF7AEFFFBF73CFAF8BD0130431E9841F5 +:1064BC00C0B27047F0B591B0079316AB069204CBFF +:1064CC0004001B780591099318AB1B7808920A936A +:1064DC0019AB1B780B93002802D1002011B0F0BD32 +:1064EC000500D14BA0351900286827000193FFF750 +:1064FC0017FECE4EA437310002903868FFF710FE1D +:10650C002300A833CA4900901868FFF709FE23003E +:10651C00AC33C84903901868FFF702FE31000490B1 +:10652C002868FFF7FDFD019905003868FFF7F8FDB5 +:10653C00029B0190002B01D1002DCED03B68013382 +:10654C0005D0009B002B02D1019B002BC5D0230052 +:10655C00A8331B68013302D0039B002BBDD0230052 +:10656C00AC331B68013302D0049B002BB5D00099CF +:10657C000298FFF7F3FD2060002804D12800019950 +:10658C00FFF7ECFD20600399FFF7E8FD049920600C +:10659C00FFF7E4FD206000289FD0A74BA74F98423F +:1065AC0000D0D0E08022A64BD201196BA548114334 +:1065BC001963196B01401963196C114319641B6C35 +:1065CC0013400D930D9B00221B232100B1310A7047 +:1065DC002200B0321370029B002B00D1E8E02300A4 +:1065EC00A03318689049FFF781FD009B002B00D069 +:1065FC00D7E0002300260293039BB34207D023006D +:10660C00A8338B491868FFF771FD0136FF36049BE0 +:10661C00002B08D080239B001E432300AC338549FC +:10662C001868FFF763FD2200B1321278864B251DE6 +:10663C009200D5502368E6616360059BA360069BBE +:10664C00E360089B2361079B63610C23A361002318 +:10665C0023620833E362029BE363099B002B04D0A3 +:10666C000A23E36280235B0263630A9B002B06D040 +:10667C000123E26A1343E36280239B0223630B9B97 +:10668C00002B06D00423E26A1343E3628023DB026F +:10669C00A3630022B020626201212056FBF716F999 +:1066AC002368BB4240D19623059A28009B019A424D +:1066BC0000D993E0FEF7E8FE009B2800002B00D0E9 +:1066CC008FE0019B002B00D08BE0FEF7D5FD00285E +:1066DC0000D1A4E09623059A594E9B019A4200D80A +:1066EC0082E033685B0500D5B8E02368BB4203D178 +:1066FC00736D564A13407365009B2800002B00D025 +:10670C00C6E0019B002B00D0C2E0FEF7B5FD0028CF +:10671C0000D184E02368BB4206D1726D4B4B1A400A +:10672C008023DB0013437365009B2800002B00D0F3 +:10673C00B1E0019B002B00D0ADE0FEF79DFD434284 +:10674C005841C0B2CAE6424B984213D180223C4B0E +:10675C009202D96A3F481143D962D96A0140D96281 +:10676C00D96B1143D963DB6B13400E930E9B012243 +:10677C001C232AE7B84200D0AFE68022304B5203EC +:10678C00D96A35481143D962D96A0140D962D96BAB +:10679C001143D963DB6B13400F930F9B02221D2314 +:1067AC0013E72300A43321491868FFF79FFC20E767 +:1067BC00002D00D11DE72300A03318681B49FFF7FB +:1067CC0095FC019B002B02D180231B0212E72300B6 +:1067DC00A43315491868FFF789FCF5E7FEF76CFE42 +:1067EC006AE7FEF715FD72E70220FFF7F7F9F36D84 +:1067FC009B0700D475E72368BB4204D1C023726D9C +:10680C001B0113437365009B2800002B09D1019BCE +:10681C00002B06D1FEF730FD002800D061E70120E7 +:10682C005CE6FEF7F5FCF7E7ACEE000864EE00085A +:10683C0028EE0008ECED0008003801400080004014 +:10684C0000100240FFBFFFFF940F0020FFF3FFFF7B +:10685C0000440040FFFFFDFFFFFFEFFF2368BB423A +:10686C0006D1726D0D4B1A4080231B0113437365C7 +:10687C00009B2800002B08D1019B002B05D1FEF7B3 +:10688C00FBFC002800D030E7C9E7FEF7C1FCF8E7B5 +:10689C00FEF7BEFC3BE7FEF7BBFC50E7FFF3FFFF48 +:1068AC00036810B50400002B20D0B1342378012BE1 +:1068BC001DD0022B29D0002B0CD18021174AC901E5 +:1068CC00106B01431163116B154801401163116C7E +:1068DC0001401164134A9B009858FDF7EFFC124BD2 +:1068EC0022781978914201D103221A7010BD8021AF +:1068FC000A4A8902D06A0143D162D16A0B4801402D +:10690C00D162D16B0140D163E4E78021034A490392 +:10691C00D06A0143D162D16A0548F0E70010024009 +:10692C00FFBFFFFF940F002005010020FFFFFDFFBC +:10693C00FFFFEFFF1FB50E4A0E4B92680E499200F7 +:10694C00D4582000FFF7ECFB002290420CD096218B +:10695C000A4B0B481C6089011300039202920192AE +:10696C000092FFF7A7FD0200100004B010BDC04656 +:10697C00ECF000082CF10008ACEE0008F40000204C +:10698C005400002010B5B1300278064B9200D0585C +:10699C00FEF7C4F922231840223843425841C0B2B2 +:1069AC0010BDC046940F002010B5B1300278064BD4 +:1069BC009200D058FEF7B2F92123184021384342F7 +:1069CC005841C0B210BDC046940F0020F0B585B040 +:1069DC000C000390FAF774FF294B02901B78294D99 +:1069EC00022B16D8FA27B1352A78274B9200D558A6 +:1069FC00BF002E1F3000FFF7D7FF002838D1FA2335 +:106A0C0028000399A2B29B00FEF733FB00280DD19E +:106A1C000DE01E4A1E4B92681E499200D358180076 +:106A2C000193FFF77DFB0023984214D10024200032 +:106A3C0005B0F0BD144F9A00D259002A09D015495F +:106A4C000198FFF76DFB33789A00D2591268824295 +:106A5C000BD00133DBB22E00B1363370022BE9D9E7 +:106A6C00FFF768FF0028BDD1E0E7022BBAD9F7E7A2 +:106A7C00FAF726FF029BC01AB842BBD3D6E7C04632 +:106A8C000501002054000020940F0020ECF00008B9 +:106A9C002CF10008ACEE000870B504000E000028C4 +:106AAC0002D10120404270BDFFF76CFF051EF8D1EA +:106ABC002100B2310B78B13433702078034B800055 +:106ACC000122C058FEF7AAFC2800ECE7940F002026 +:106ADC0070B504000D0000281AD0FFF753FF0028F2 +:106AEC0016D1230098331D6025000020B0352856A0 +:106AFC00FAF722FF2100B1342078064B80000122E6 +:106B0C00C058B231FEF78AFC00202856FAF708FF6D +:106B1C0070BDC046940F002070B50400150000280D +:106B2C001BD00300060000209C331960B036305691 +:106B3C00FAF702FF23002100C233B8311B88096821 +:106B4C00B1342078C918054B8000C058AAB2FDF7A3 +:106B5C00D5FB00203056FAF7E3FE70BD940F0020F1 +:106B6C0010B500280BD00300A4331B68013306D1E9 +:106B7C00B1300278024B9200D058FEF77DF810BD70 +:106B8C00940F002010B500280BD00300A4331B6811 +:106B9C00013306D1B1300278024B9200D058FEF787 +:106BAC0094F810BD940F0020030010B594331B68AB +:106BBC000438984710BD030010B598331B6804388F +:106BCC00984710BD0122036810B5D9690400043838 +:106BDC00114201D01A620BE00222D9691142F9D19B +:106BEC000422D9691142F5D10822D9691142F1D197 +:106BFC00FFF7C8FE002805D1210001222000AE318C +:106C0C00FEF70CFC10BD000010B51B20FAF7BEFE01 +:106C1C00024B1868FDF7DCFB10BDC046940F00203A +:106C2C001C2010B5FAF7B2FE034B5868002801D0AF +:106C3C00FDF7CEFB10BDC046940F002010B51D20F3 +:106C4C00FAF7A4FE024B9868FDF7C2FB10BDC046D4 +:106C5C00940F0020010010B50122AE31FEF7DEFBCF +:106C6C0010BD000003000A4910B50868C318EFF303 +:106C7C000882934205D90C220120064B40421A602F +:106C8C0010BD054A054C121B9342F4D20B60F7E77A +:106C9C001C010020641300200020002000040000D0 +:106CAC0001204042704780239B0100204B607047BD +:106CBC00012070470020704700207047FEE700005D +:106CCC0016220120014B40421A60704764130020C9 +:106CDC000120704700207047038BC08A181A704738 +:106CEC00C28A018B0300914204D90169885C01328C +:106CFC00DA82704701204042FBE7C38A028B9A423A +:106D0C0002D90269D05C704701204042FBE7836DD9 +:106D1C0010B51800D4308268002A03D000225A849F +:106D2C00C368984710BD0000FA23F7B5070000268A +:106D3C0005009B008360354BC43703600C00019247 +:106D4C0031000C224660380001F0DCFEFE6010378A +:106D5C000C223100380001F0D5FE28009C223100B5 +:106D6C00FE60283001F0CEFEE3B21C2B20D8E022CE +:106D7C0027499B00D20022405C5814432B00083357 +:106D8C00DC676B461B791C2B28D8E0220198D200BB +:106D9C00104002001E499B005B5813432A008832A6 +:106DAC00136000232800EB612B842B61AB82FEBDAA +:106DBC00C0222240C02A0ED1CF2B0CD83F2315491C +:106DCC0023409B005B58E021114A9B009B58C90053 +:106DDC000C401C43D2E701246442CFE7C022019946 +:106DEC000A40C02A0ED1CF2B0CD83F230198094959 +:106DFC0003409B005958E023054A8900DB008A5860 +:106E0C000340CAE701235B42C8E7C04674ED0008A3 +:106E1C002CF10008ECF0000870B50400283000F0EC +:106E2C0077FCE069002803D001F07AFB0023E361D2 +:106E3C00002520692584A84202D001F071FB256150 +:106E4C00A58270BD10B50400064B0360FFF7E4FF8C +:106E5C002000D430FAF782F92000C430FAF77EF91A +:106E6C00200010BD74ED00080122431DDA7791401B +:106E7C00002381764384704770B5838A05000C002B +:106E8C008B420AD2202900D220242100286901F04B +:106E9C00C5FC002802D02861AC8270BDFEE7F7B5B6 +:106EAC00846D05002600C436B368876E002B1AD09B +:106EBC00E28A238B9A4216D339002000FFF7DCFFBD +:106ECC0029003A002069743101F08DFE0023E38221 +:106EDC00B36827830197002B01D107F007FA300024 +:106EEC00F36801A99847F7BD802370B5DB00050056 +:106EFC000C00994211D8038C99420BD90E00202911 +:106F0C0000D220263100E86901F088FC002803D06B +:106F1C00E8612E84200070BDFEE70024FAE737B547 +:106F2C006B46DD1D2970431DDB7F0400002B0ED04A +:106F3C00418C0131FFF7D8FF002807D00120638C6A +:106F4C002978E269D154638C013363843EBD0122FC +:106F5C002900283000F016FC43425841F6E770B582 +:106F6C00431DDB7F04000E001500002B13D0418C59 +:106F7C008918FFF7B9FF002802D10025280070BD41 +:106F8C00638CE0692A00C018310001F02CFE638C80 +:106F9C005B196384F2E792B2283000F0F3FB00280F +:106FAC00EBD1EBE70300006910B5002803D00021FA +:106FBC009A8A01F0A7FD10BD0300C06910B5002826 +:106FCC0003D000211A8C01F09DFD10BD70B5AA23D1 +:106FDC00040000291BD1A3652300BE331B780425B4 +:106FEC00012B12D12000638CA17EE269283000F0C5 +:106FFC0047FC031CA84200D92B1C2000DDB2FFF774 +:10700C00DBFF002363840534E377280070BD1B028B +:10701C00E1E7F0B585B002930AAB1B78040000934E +:10702C000BAB1B780E0003930300BE331B781500CB +:10703C0000270193012B30D11100FFF71DFF009B9E +:10704C007600F6B2BB4213D0019A631DDA776B4619 +:10705C0067841F78009BA676032B00D90327FFB209 +:10706C00013FFFB2FF2F1BD100212000FFF7AEFF25 +:10707C00039B002B1DD1AA332000A36531002B00EC +:10708C002269283000F098FB00232F00984201D091 +:10709C001D001F0027832F00E382380005B0F0BDD0 +:1070AC000299FB00D940236820001B68C9B298479D +:1070BC00D6E7AA231B02DFE707B501930023009351 +:1070CC00FFF7A7FF0EBD10B50123D2B2C9B2FFF76F +:1070DC00F3FF10BD10B50121FFF778FF10BD70B59F +:1070EC0000250400C5820583FFF75CFF6584200042 +:1070FC00FFF762FF70BD0000F0B504000F250834E7 +:10710C0089B00600E06F01F0C5F8002101F006F926 +:10711C00E36F1A092A40042A00D975E03D49920010 +:10712C0051583D4C2B409B001A590B6913409A4205 +:10713C0060D08836306801F0ADF8012101F0EEF82E +:10714C00366833092B4002932B00029A3340042AF1 +:10715C005DD89B001B59053503930920FA21029A2F +:10716C002C4B9200D758039B2C4CBB62A368890014 +:10717C0004936368013358430193F8F7B5FF002279 +:10718C00049B0593A36804930599049B994233D2FD +:10719C00059B01999C46049BCB1A6344D218049B13 +:1071AC0005939042EED80920FA21039B8900BB611C +:1071BC00A3680693676801377843F8F795FF0022B8 +:1071CC00069B0793A36806930799069B994217D2CF +:1071DC000799069BFB1A5B18D218069B07939042E3 +:1071EC00F0D8013D002DB8D1300001F053F8290042 +:1071FC0001F094F809B0F0BD059B04995B1ACDE73A +:10720C00079B06995B1AE7E700231B69FFDE002347 +:10721C009B62FBE718000020CCEC000810E000E0BB +:10722C00F7B5040000252700C582058301930E00E5 +:10723C000092FFF7B7FE20006584A576FFF7BCFE31 +:10724C00231DDC67D437BB68AB4205D00322390061 +:10725C0038009847BD60FD600022631DDA77A71DDA +:10726C007300FB772500731E5A425341BE352B70B9 +:10727C002300009ABF331A70019A5A70012E02D162 +:10728C002000FFF739FF28342000FA7F074900F06F +:10729C009DF92B78002B07D12000054900F048FB05 +:1072AC002000044900F03AFBF7BDC046A08601005F +:1072BC001B6D0008AB6E000810B50A0000230121FD +:1072CC00FFF7AEFF10BD000010B51B221C210248B9 +:1072DC00FFF72AFD10BDC046A00F002010B50248D4 +:1072EC00FFF7B0FD10BDC046A00F0020124A0300EE +:1072FC0010B5904217D12020FCF7E0FA002811D1EC +:10730C00C0220E4B92015B6D1340802252019342BE +:10731C0006D08022920193420CD0002B07D0FEE7BE +:10732C00074B186810BD074A00209342FAD1FCF7AE +:10733C0097FAF7E70448F5E70054004000100240C4 +:10734C0050000020005800400024F400F0B5A3B019 +:10735C001091109A8849D20003005058984205D1D8 +:10736C00881840680290002800D001E1834D58082D +:10737C008B5040191900F8F7B7FE1C23109A804C5B +:10738C005A4311590600480840191192F8F7ACFEFF +:10739C00119B1290E718FA8A3B8B0B92B97E0B98D3 +:1073AC003A8A13931218CB1C734313981992BA8907 +:1073BC0071431218323AD21A0392D2430398D2175D +:1073CC0010400390FA890B98F318121A053AFF3AF9 +:1073DC00D31A0493DB43049ADB171A4028000C9150 +:1073EC0079680492F8F780FEB9681A902800F8F7CB +:1073FC007BFE0C9A730032339B181793F518129B73 +:10740C000024159310231693113B1B900D9402939B +:10741C00220720920022E3B21893179B0A92EB1AD0 +:10742C000F93199A0F998A4200D98DE00A9A2099E4 +:10743C000A431F92002294460992039A09998A42A0 +:10744C0077D8049A8A4274D3169A18998A4270D0C3 +:10745C000D9A01320D92072A00D989E07A8A0B998C +:10746C001C92139A5218614652190E920C9AAA1A2F +:10747C0007921F9A0A431E92002211990892404AC1 +:10748C005218219207990C9A52181C99914242D287 +:10749C00079A323A920896423DD20E9A089952199E +:1074AC0001921E9A0595114300221D9106921B9A7A +:1074BC0001998A4220D81A9A8A421DD3219A918A1C +:1074CC00059A8A4218D3964216D2129A0199891AB1 +:1074DC00C8170A181599424014928A420CD21D9A68 +:1074EC00069825491043109A0290D2008918189AD0 +:1074FC0048601692149A15920699019A0131FF313F +:10750C0006918021D2180192059A4902D21805924F +:10751C00069A8A42CBD1089A013208920E9A08999F +:10752C00D2180E92079AD2180792802252009142DA +:10753C00A8D1099AD218099280225202944480222E +:10754C005203944500D078E7802149038C460F9A6A +:10755C00D2180F920A9A62440A9280220A99520413 +:10756C00914200D05DE70134AD19102C00D04FE7EB +:10757C00029823B0F0BDC0468C10002000CA9A3B84 +:10758C0098ED00080E4A030010B5914212D90D4A2D +:10759C00914206D80068FFF7A9FE0121FFF7D6FE3D +:1075AC0010BD094A00209142FAD81868FFF79EFED8 +:1075BC000221F3E70068FFF799FE0021EEE7C046D1 +:1075CC00A0860100801A060040420F00F0B585B07D +:1075DC00041E0091019200D187E0454EC06D310030 +:1075EC00FEF79EFD434F05003900206EFEF798FD17 +:1075FC000100002D79D0002877D02800FEF7AEFDD1 +:10760C002060002871D03C4B251D98424ED1802221 +:10761C003A4B9203D96B1143D963D96B1140029148 +:10762C000299D96A0A43DA62DA6A35490A40DA629F +:10763C002300172264331A70324B1D603900206E00 +:10764C00FEF754FD3100E06DFEF750FD2368009904 +:10765C0063602000FFF796FF019B0022E36001238B +:10766C0023612300A060A261626197331B7826001E +:10767C00591E8B41DB042362230098331B780020B6 +:10768C00591E8B415B046362230045331A706436C8 +:10769C0002213056FAF71AF900203056FAF740F961 +:1076AC002800FAF77BFC00281BD0FEE7164B98420B +:1076BC00C4D18022114BD203D96B1143D963D96B3E +:1076CC00114003910399D96A0A43DA62DA6A0F49C5 +:1076DC000A40DA622300182264331A70094B5D6089 +:1076EC00ACE70223A0669534237005B0F0BDC0460C +:1076FC00B0F0000874F00008005400400010024084 +:10770C00FFFFDFFF8410002000580040FFFFBFFF89 +:10771C0070B50400051D64202056FAF70DF92800F9 +:10772C00FAF79BFC0321206EFEF744FC0321E06D6D +:10773C00FEF740FC23680E4A93420DD180220D4B7C +:10774C009203D96A0A43DA62DA6A0B490A40DA62AE +:10775C00DA6B0A40DA6370BD084A9342FBD180228F +:10776C00044BD203D96A0A43DA62DA6A0449EDE7B8 +:10777C000054004000100240FFFFDFFF00580040A3 +:10778C00FFFFBFFF70B5060014000120202A0AD8A5 +:10779C0035000022943593B29C4205D800202A78FB +:1077AC001219D2B22A7070BD2B78885C9B18F31812 +:1077BC00743318700132EEE7F0B5060087B0039110 +:1077CC0004920593FAF77CF80024376B0290351D70 +:1077DC00059B2800049A03990097FAF74DFD0300C6 +:1077EC00022807D1FAF76CF8029BC41A642CEED964 +:1077FC00062023E00420002B20D1FAF761F80600C4 +:10780C002800FBF78AFC202809D0632C07D8FAF74C +:10781C0057F8841B2800FBF784FC0028F0D02800C4 +:10782C00FBF77FFC03000520632C07D89A0605D4D0 +:10783C0002385A0702D45A1E9341980007B0F0BD83 +:10784C0010B5642304000430FAF722FC022811D08E +:10785C00032808D000280CD0453423780420202B92 +:10786C0007D1023805E0453423780520202B00D1C0 +:10787C00033810BD45342378202BFAD00620F8E7C6 +:10788C00F0B587B005001F0002910592FAF718F8C1 +:10789C000390002F06D1012228000299FFF7D0FF98 +:1078AC0007B0F0BD00242B6B0493049B2E1D00939A +:1078BC0030003B00059A0299FAF770FC030002288D +:1078CC0007D1F9F7FDFF039BC41A642CEDD90620F0 +:1078DC00E6E70420002BE3D1F9F7F2FF05003000B6 +:1078EC00FBF71BFC202809D0632C07D8F9F7E8FF1D +:1078FC00441B3000FBF715FC0028F0D03000FBF7E0 +:10790C0010FC03000520632CCAD89A06C8D4023890 +:10791C005A07C5D45A1E93419800C1E710B50028E8 +:10792C0005D0002903D0C1660430FAF7D5FD10BD8F +:10793C0010B5002805D0002903D001670430FAF7F0 +:10794C00CBFD10BDF8B506009136337805000F005D +:10795C00041F012B09D1A36E002B06D0E36E20006F +:10796C009847022333700023A3660023012F12D102 +:10797C0033702E00226F90369A4202D02000337062 +:10798C0090472900802332782800D2B270319B04B2 +:10799C00FAF7C8FCF8BD0122A3663270A36E28006A +:1079AC007433E11880235B04FAF72AFDF2E770B513 +:1079BC000600913633780400051F012B05D1AB6E00 +:1079CC00002B02D02800EB6E984702233370002363 +:1079DC002000AB66FAF780FD70BD426E031F10B538 +:1079EC001F2A02DC9A6E01329A66020091321178DB +:1079FC00CAB2012906D1996E8023703141185B04FB +:107A0C00FAF7FEFC10BD00239030037070470300A2 +:107A1C0010B592331B78002B01D1FAF75DFD10BD28 +:107A2C00044B10B51C682000FAF76AFD2000FBF728 +:107A3C0041F910BD84100020044B10B55C68200087 +:107A4C00FAF75EFD2000FBF735F910BD841000201D +:107A5C00AA23A8215B00C35A4900405A4033181A84 +:107A6C003F2318407047AA235B00C25A043BC35AF9 +:107A7C009A4203D0FC30C26CD05C7047012040426B +:107A8C00FBE7A923AB225B005200C35C805AC0B257 +:107A9C00834202D3C01A3F307047C01A0138FBE74B +:107AAC0013B56B460268D97107335468190001226B +:107ABC00A04716BD37B56B46DD1D29000400FEF747 +:107ACC00EBFF002810D122003F21C0321388013374 +:107ADC000B402100BC3109888B4205D0B43411888D +:107AEC0020682D784554138037BD00000300010039 +:107AFC0070B5C233C4311A880C6812193F24224065 +:107B0C001A800200BE3212881D880024AA4217D0A7 +:107B1C001D8840321C880B4B521BA4B21A4004D552 +:107B2C004023013A5B421A43013240231B1B9A4209 +:107B3C0000D91A000A6001240349FEF7EDFF6442E4 +:107B4C00200070BD3F000080F97A0008F7B503688B +:107B5C0000919B68019204009847A92340275B0081 +:107B6C00E35A0500FF1A012323742300FC33DB6B5B +:107B7C0001330AD15E23FF33E25C002A05D00022D8 +:107B8C002000E2549430FEF7EBFF236820009B6842 +:107B9C0098470028F9D0019EBE4227D8AE4225D87E +:107BAC00A92327005B00E35AFC37386D9A19C018DB +:107BBC00402A34D83200009901F015F83500A9227A +:107BCC005200A35A3F219B1926000B4094363000DB +:107BDC00A352FEF7E9FE002806D1FC342A0030003F +:107BEC001549E565FEF798FF0198FEBDBD4200D929 +:107BFC003D0023682A005B68009920009847009B91 +:107C0C0020005B1900932368761B9B689847A92377 +:107C1C005B00E75A133BFF3B0500DF1BBCE740252D +:107C2C00ED1A2A00009900F0DEFF009B386D721BE4 +:107C3C00591900F0D8FFC2E7F97A000810B5914243 +:107C4C0001D1012149420400FC342364029BA2634C +:107C5C0063640300AA221433E36400235200E1633B +:107C6C008352020054322265AB2252006365835268 +:107C7C0010BDF7B5037C04000D00002B16D0F9F7EE +:107C8C001FFEA927AB2601907F007600E25BA35B69 +:107C9C009A420BD0002DFAD0F9F712FE019BC01AB4 +:107CAC008542F3D8A923A25B5B00E252F7BDAE2359 +:107CBC000022FA2110B504005B00C2548900FFF7C2 +:107CCC00D8FF20009430FEF7EBFDA8235B00E25AAE +:107CDC000433E25210BD10B50021FFF7CAFF10BDEE +:107CEC00CBB210B51C2B09D8E0220F4C9B00D20054 +:107CFC000A4019591143FC30C16310BDC0220A401F +:107D0C00C02A0ED1CF2B0CD83F23084C0B409B0024 +:107D1C001B59E024044A9B009B58E4002140194362 +:107D2C00E9E701214942E6E72CF10008ECF00008F4 +:107D3C00CBB210B51C2B09D8E0220F4C9B00D20003 +:107D4C000A4019591143FC30816310BDC0220A400E +:107D5C00C02A0ED1CF2B0CD83F23084C0B409B00D4 +:107D6C001B59E024044A9B009B58E4002140194312 +:107D7C00E9E701214942E6E72CF10008ECF00008A4 +:107D8C000023F0B585B04360FA239B0083601E4B43 +:107D9C00050003600123FC355B42EB631B4B0400C5 +:107DAC000E000392984218D1C3212000FFF798FFD0 +:107DBC00C2212000FFF7BCFF0123039A5B42012A7A +:107DCC0000D1EB63009301232000AA6BE96B5B42AB +:107DDC00FFF734FF200005B0F0BD0D4A0D4F92683F +:107DEC000D4B92003900D058FEF79AF98642DBD041 +:107DFC000A493000FEF7A9F93900E8633000FEF7B4 +:107E0C00A4F9A863D8E7C046BCF10008A410002070 +:107E1C00ECF00008ACEE00082CF1000864EE000851 +:107E2C000300FC33DB6B10B5040001330DD1036888 +:107E3C00DB6898475E23FF33E25C002A05D1200003 +:107E4C000132E2549430FEF79DFE10BD0300F0B5F4 +:107E5C00FC3385B05966AF235B00C254583BFF3BE3 +:107E6C001340023BDBB204000026042B01D8194856 +:107E7C00C65C30231340302B25D1C0230136DB00E8 +:107E8C00073E022E25D82500E77C12070397A77C16 +:107E9C0011480297677CD20F52039435B6000092BA +:107EAC00019732582800FEF705FBAE235B00E05427 +:107EBC00002806D02000FFF7B3FF28000749FEF783 +:107ECC0007FE05B0F0BD00239006D9D580230136FE +:107EDC00D5E7FEE7ACF10008A0F10008C17A000874 +:107EEC0010B50400FFF79CFFAA23A8225B005200E8 +:107EFC00E15AA35A994208D02100FC31C96CC85CE4 +:107F0C003F2101330B40A35210BD01204042FBE73F +:107F1C0010B5002202480349FFF732FF10BDC046DE +:107F2C00A41000200080004070B505000C00081E55 +:107F3C0007D0F8F7BDF82B680200210028005B6819 +:107F4C00984770BD10B5FFF7EFFF10BD10B5024993 +:107F5C00FFF7EAFF10BDC0461CE9000870B504002D +:107F6C00FFF7E2FF05002000FFF7F0FF401970BD9E +:107F7C0010B5FFF7F3FF10BD030070B50800140037 +:107F8C00002B05D05A1E012A04D82100FEF71EFD35 +:107F9C00200070BD1A68180055682200A847F7E742 +:107FAC000EB403B503AA02CA019200F011FD02B08F +:107FBC0008BC03B0184710B5040000F047FAE060A5 +:107FCC00236820005B699847002808DA00F03EFA25 +:107FDC00E368C01AA3689842F2D30120404210BD56 +:107FEC00F8B506000F0015000024AC4201D12000AA +:107FFC00F8BD3000FFF7DFFF431CF8D038550134D3 +:10800C00F3E7F7B50F0016001D001C1E01900BD0F6 +:10801C0000240198FFF7CFFF431C05D0B84203D0D2 +:10802C0030550134A542F4D12000FEBDF0B5C3B2E9 +:10803C0005000E0085B01C2B2FD8E02124489B0096 +:10804C00C90029401D580D43022A3CD0032A3DD0BB +:10805C00531E9A4184235442240D24059B03E41897 +:10806C000C220021684600F04DFD00230393B368F9 +:10807C006F46002B07D00222310068469847F36800 +:10808C000393B3680293220039002800FDF744FEE5 +:10809C003800F9F763F805B0F0BDC0210140C029E4 +:1080AC000ED1CF2B0CD83F230A482B409B001B58DA +:1080BC00E02007499B005B58C00005401D43C3E707 +:1080CC0001256D42C0E7C424A403C9E78424FBE75F +:1080DC002CF10008ECF0000810B5002801D000F0DD +:1080EC0031FB10BD10B5041E05D000F059FB21006A +:1080FC00F8F76AF90C00200010BD10B50400884296 +:10810C0003DA081AFFF7EEFF2418200010BD000058 +:10811C00F0B5ABB0079202930022002306000F00CB +:10812C00309CF8F76DF9002800D180E08021090619 +:10813C007B181F0001230393002500204749029B55 +:10814C00AB4200DD75E00B0002003900300004F09A +:10815C0013F80490059102F0E9FE029B0500002B38 +:10816C0000D16CE0002300263D4F06930022300026 +:10817C0039003C4B05F05CF8069B06000133069376 +:10818C00069A029B0F009342F0DC280005F0BAFF20 +:10819C0002000B000498059905F012FB3B0032001D +:1081AC0005F046F805F044FF039B2F49002B00D146 +:1081BC002E4900902A002000029B00F0A1FA002614 +:1081CC008122002109A800F09DFC079DB54201DA2F +:1081DC006D4201362000F7F76BFFA84224D28022B3 +:1081EC00202109A800F08EFC2000F7F761FF0C217C +:1081FC00002306AA2D1A521853559E4229D120004D +:10820C00F7F756FF013000F081F90500210000F06E +:10821C00E2FC09A9200000F0DEFC2900200000F09F +:10822C0079FC280000F07CF920002BB0F0BD039005 +:10823C0082E700220B4B04F0B9FB01357FE7039B6F +:10824C000B49002B00D10B492A00200000F058FAF2 +:10825C00B5E7200009A900F05DFCE5E70000E03F70 +:10826C000000F03F000024406CE900086DE90008B4 +:10827C0077E9000878E9000810B500F009F910BD9D +:10828C0010B500E000BFF8F7C7FDF8F7AFFE00F03F +:10829C00EFF8FAE70206030010B51D20120F042AAE +:1082AC000AD80020074AD9B2840014598C4204D150 +:1082BC00E022D2001340184310BD01301D28F3D129 +:1082CC00FAE7C0462CF100080D488546FDF752FF31 +:1082DC000C480D490D4A002302E0D458C450043315 +:1082EC00C4188C42F9D30A4A0A4C002301E01360EB +:1082FC000432A242FBD300F047FCFFF7C1FFFEE7BC +:10830C0000200020000000207C010020D8F600088E +:10831C007C01002068130020FEE70000F7B5C3B213 +:10832C00040001911C2B29D8E02226499B005C58A3 +:10833C00D20002401443631C37D00F262509354068 +:10834C00214FAD00EB592640F340DB070DD5200043 +:10835C001E49FDF721FE002802D02000FDF704FC89 +:10836C000122B2407B5993437B51019B052B27D8AB +:10837C001800F7F7A5FE16211B1D1F23C022024073 +:10838C00C02A12D1CF2B10D83F23114903409B0098 +:10839C005B58E0210B4A9B009B58C9000C401C43C6 +:1083AC00C9E700212000FDF705FEF7BD1021F9E714 +:1083BC002021F7E70321F5E70121F3E70921F1E794 +:1083CC00FEE7C0462CF1000808120020F4EE00086D +:1083DC00ECF00008C3B210B51C2B19D8E022174CD6 +:1083EC009B00D200024018591043431C0FD00306C7 +:1083FC0000221B0F042B02D8114A9B009A580F2401 +:10840C00104B20408000C358002914D0936110BD3C +:10841C00C0220240C02AFAD1CF2BF8D83F230A4CF5 +:10842C0003409B001B59E024044A9B009B58E4002A +:10843C0020401843D9E79362E9E7C0462CF10008C5 +:10844C0018000020CCEC0008ECF0000810B5FDF78B +:10845C00B7FB10BD70B5041E09D0FDF7B1FB0500CC +:10846C0000F01AF8FDF7ACFB401BA042F8D370BD2E +:10847C00054B10B5002B06D00448FFF7E9FA00288D +:10848C0001D000E000BF10BD00000000A4100020CF +:10849C0010B5FDF727FC10BD7047000010B5034B5D +:1084AC000A000100186800F003F810BD2C01002030 +:1084BC0070B50B0C150C002B1ED1002D0CD189B2F4 +:1084CC0094B24C43210000F057F8051E1BD022003B +:1084DC00002100F017FB16E02B1C0C1C89B292B289 +:1084EC004A439BB2A1B25943140C0C19230C07D16B +:1084FC00240492B21443E5E7002D01D1141CEDE7DE +:10850C000C2300250360280070BD000010B5034B40 +:10851C000100186800F030F810BDC0462C01002096 +:10852C0010B5034B0100186800F084FB10BDC04669 +:10853C002C01002070B50F4E0D003168040000298D +:10854C0002D100F0F5FA30602900200000F0F0FABA +:10855C00431C03D101256D42280070BD0323C51CAB +:10856C009D43A842F8D0291A200000F0E1FA01300E +:10857C00F2D1EFE71C120020F7B50322CB1C93437A +:10858C00083305001F000C2B34D20C27B94233D80A +:10859C00280000F0A5F8374E33681C00002C2FD1B2 +:1085AC0039002800FFF7C6FF0400431C5FD1346874 +:1085BC000094009B002B4AD1002C52D02368280039 +:1085CC00E3180099019300F0B3FA019B834248D160 +:1085DC0023682800FF1A3900FFF7ACFF013040D0A8 +:1085EC002368DB19236033685A68002A33D1009B57 +:1085FC00336019E0002BC9DA0C232B600020FEBD80 +:10860C002168C91B20D40B290AD9E2192760A3427F +:10861C0004D1326063681160536005E05A60F9E779 +:10862C006268A3420ED13260280000F061F820008D +:10863C0007220B30231D9043C21A9842DFD01B1A1D +:10864C00A350DCE75A60EFE723006468A6E7009CC0 +:10865C0063680093ADE71A005B68A342FBD100236B +:10866C00DAE70C2328002B6000F042F8C6E707601D +:10867C00DAE7C046201200200CB430B5174B0C00C2 +:10868C001D689DB0002908DA8B2301202B60404225 +:10869C001DB030BC08BC02B01847822302A99B0055 +:1086AC008B81002302904B6608619C4200D0631EB4 +:1086BC008B604B6101235B42CB81280021AB209A5C +:1086CC00019300F065FB431C01DA8B232B60002C1B +:1086DC00DED00022029B1A70DAE7C0462C01002083 +:1086EC0010B5024800F075FA10BDC04660130020AA +:1086FC0010B5024800F06EFA10BDC04660130020A1 +:10870C000EB410B500249DB0029006900A481FAB21 +:10871C0007900490094804CB0590094802A9006809 +:10872C0001934C6600F034FB029B1C701DB010BC16 +:10873C0008BC03B01847C046FFFFFF7F0802FFFFCD +:10874C002C010020104B70B51D6804002A6B002A08 +:10875C0016D11820FFF7DAFE021E286304D1462139 +:10876C000A4B0B4800F048FA0A4B002103600A4BF5 +:10877C0043600A4B83600B2383810120106151619C +:10878C0000231461536170BD2C0100207CE90008AA +:10879C0093E900080E33CDAB34126DE6ECDE050028 +:1087AC00164B70B51D682C6B002C17D11820FFF7D9 +:1087BC00ADFE041E286305D122005221104B114836 +:1087CC0000F01AFA104B01220360104B4360104B5F +:1087DC0083600B23838100230261436120696169FB +:1087EC000C4A0D4B02F05CFB01220023801859410E +:1087FC00206161614800400870BDC0462C0100201A +:10880C007CE9000893E900080E33CDAB34126DE619 +:10881C00ECDE05002D7F954C2DF4515810B5034B13 +:10882C000A000100186800F0DFF810BD2C010020D0 +:10883C00002310B5040003604360836081814366AC +:10884C00C281036143618361190008225C3000F02E +:10885C0059F90B4B246263620A4BA3620A4BE36225 +:10886C000A4B23630A4B9C4205D00A4B9C4202D014 +:10887C00094B9C4203D12000583000F0A9F910BDDF +:10888C00199400084194000879940008A5940008F4 +:10889C00241200208C120020F412002010B5034A80 +:1088AC000349044800F0D0F810BDC0462001002058 +:1088BC00B19300083001002041680B4B10B5040047 +:1088CC00994201D000F06EFDA168084B994202D08C +:1088DC00200000F067FDE168054B994202D02000B2 +:1088EC0000F060FD10BDC046241200208C12002048 +:1088FC00F412002010B5094B094A04211A600948EA +:10890C000022FFF795FF012209210748FFF790FF8E +:10891C00022212210548FFF78BFF10BD5C130020CB +:10892C00A9880008241200208C120020F4120020C8 +:10893C0010B5024800F04DF910BDC046611300207F +:10894C0010B5024800F046F910BDC0466113002076 +:10895C0010B50400FFF7ECFF236A002B02D0FFF7E1 +:10896C00EFFF10BD044B2362044B1B68002BF6D1A8 +:10897C00FFF7C0FFF3E7C046C58800085C13002072 +:10898C00F0B50E008021114C8900A54404AF039171 +:10899C0000933900130003AA050000F071F8041EBF +:1089AC0011D0020031002800039B00F0D3F8039093 +:1089BC00BC4203D02100280000F03CF90398852329 +:1089CC009B009D44F0BD01204042F8E7ECFDFFFF09 +:1089DC0010B5044C13000A0001002068FFF7D0FF0B +:1089EC0010BDC0462C010020F7B506000C00150088 +:1089FC00002905D11100FFF7BFFD04002000FEBDCA +:108A0C00002A03D100F016F92C00F7E700F0F5FC72 +:108A1C000700854202D84308AB42EFD3290030004F +:108A2C00FFF7AAFD0190002801D1019CE6E72A007E +:108A3C00BD4200D93A002100019800F0D4F8210081 +:108A4C00300000F0F7F8F0E7F7B5140000260090BE +:108A5C000191A5686768013F04D52468002CF8D102 +:108A6C003000FEBDAB89012B08D90E22AB5E013361 +:108A7C0004D029000098019B984706436835EAE723 +:108A8C00F0B515009BB01A00002912D02F68002FEA +:108A9C0013D1A22339009B006C460026A3811996A2 +:108AAC0000910491B7420BDA8B23036000201BB0BA +:108ABC00F0BDA2230F009B00EEE7C123DB00EBE728 +:108ACC0001235B42E3816946209B0297059700F0E6 +:108ADC005FF90028EADB009B28601E700498E6E72B +:108AEC0010B5884202D98B18984208D300239A42B9 +:108AFC0007D0CC5CC4540133F9E78B5C8354013A46 +:108B0C00FBD210BD03008218934200D1704719703C +:108B1C000133F9E7020010B5137814000132002B71 +:108B2C00FAD1CA5CE2540133002AFAD110BD00001C +:108B3C00002370B5064D040008002B60FEF792F878 +:108B4C00431C03D12B68002B00D0236070BDC046A2 +:108B5C006413002070B50400080011001A000023F3 +:108B6C00054D2B60FFF708FA431C03D12B68002B33 +:108B7C0000D0236070BDC04664130020014B186800 +:108B8C007047C0462C01002070B500260C4C0D4DD2 +:108B9C00641BA410A64209D1002605F0ABFB0A4CBD +:108BAC000A4D641BA410A64205D170BDB300EB584E +:108BBC0098470136EEE7B300EB5898470136F2E7D9 +:108BCC00B4F60008B4F60008CCF60008B4F60008B9 +:108BDC0070477047704703000A7801311A700133EF +:108BEC00002AF9D17047002310B59A4200D110BD6C +:108BFC00CC5CC4540133F8E77FB514001A00094B60 +:108C0C0005001B680E00D868074B002C01D1074BE0 +:108C1C001C000749019302942B00009600F042FCC3 +:108C2C0000F095FC2C01002044EA00081EE9000825 +:108C3C0051EA000870B505000C1E10D0043C2368E6 +:108C4C00002B00DAE4182800FFF74AFD1D4A1368D0 +:108C5C00002B05D1636014602800FFF749FD70BD3F +:108C6C00A34208D9206821188B42F3D119685B689C +:108C7C0009182160EEE71A005B68002B01D0A342B3 +:108C8C00F9D911685018A0420BD120680918501856 +:108C9C0011608342E0D118685B6841181160536021 +:108CAC00DAE7A04202D90C232B60D5E72068211803 +:108CBC008B4203D119685B680918216063605460AA +:108CCC00CAE7C04620120020F0B58E6885B01F00A0 +:108CDC000C00330002900392BE4254D80C22885EE2 +:108CEC009022D20010422CD00322096923685B1A0F +:108CFC00019363695343019ADD0FED187B1C6D10D2 +:108D0C009B182A00AB4201D91D001A00400527D53B +:108D1C0011000298FFF730FC061E2AD0019A216937 +:108D2C00FFF761FFA289194B1A4080231343A381DB +:108D3C00019B2661F618266065613E00ED1A3B002A +:108D4C00A5601F003A0003992068FFF7C9FE0020B8 +:108D5C00A3689B1BA3602368DB19236005B0F0BDDF +:108D6C000298FFF741FE061EE2D121690298FFF737 +:108D7C0061FF0C230120029A40421360A289343314 +:108D8C001343A381EAE73E00DCE7C0467FFBFFFF0D +:108D9C00F0B59FB002901C008B890E0015001B06CD +:108DAC0011D50B69002B0ED14021FFF7E5FB30608C +:108DBC003061002805D10C23029A13600120404237 +:108DCC00D4E0402373610023292102AA52180B938B +:108DDC0020331370013102AA10335218137005940A +:108DEC002C002378002B01D0252B48D1671BAC42DB +:108DFC000BD03B002A0031000298FFF765FF0130D1 +:108E0C0000D1AEE00B9BDB190B932378002B00D128 +:108E1C00A7E00122532100235242079202AA5218C2 +:108E2C00651C06930993089313701C93554F29786E +:108E3C000522380000F080FB6C1C069906AB00285C +:108E4C001FD1CA0604D55327202202A8C0190270CC +:108E5C000A0704D553272B2202A8C01902702A78BE +:108E6C002A2A15D02C0000200A27DA682178651CE4 +:108E7C003039092950D9002811D009920FE001345A +:108E8C00AFE70123C01B83400B4325000693CDE7BE +:108E9C00059A101D12680590002A37DBDA602278DB +:108EAC002E2A0CD162782A2A3BD1059A0234111D44 +:108EBC0012680591002A01DA012252425A60324DA1 +:108ECC0003222800217800F037FB06AF002806D0DB +:108EDC004023401B8340069A0134134306932178A8 +:108EEC0006222A48651C397600F026FB00283FD064 +:108EFC00274B002B29D10722059B073393430833BB +:108F0C0005930B9B03995B180B9369E75242DA604C +:108F1C0002220A430692C2E77A432C00012052181F +:108F2C00A4E700220A205A601100130001342278B1 +:108F3C00651C303A092A03D9002BC0D00791BEE733 +:108F4C0041432C0001238918F1E705AA009239004E +:108F5C003200104B029800E000BF0390039B0133DA +:108F6C00CFD1B3890B985B0600D527E71FB0F0BDB6 +:108F7C0005AA009239003200064B029800F07CF8EA +:108F8C00EBE7C04680EA000886EA00088AEA000897 +:108F9C0000000000D58C0008F7B5160001938A6814 +:108FAC000B690C000090934200DA1300220033602E +:108FBC0043321278002A01D00133336023689B06B8 +:108FCC0002D53368023333602268062315001D4036 +:108FDC001A4227D0230043331B785A1E9341226830 +:108FEC00920630D4220001990098089D4332A8477C +:108FFC00013025D00622236800251340042B05D10F +:10900C003368E568ED1AEB43DB171D40A368226952 +:10901C00934201DD9B1AED180026B54220D10020A9 +:10902C0010E00135E36832689B1AAB42D2DD2200B6 +:10903C00012301990098089F1932B8470130F0D1EB +:10904C0001204042FEBD3020E11843310870210060 +:10905C005A1C45310978A218433202331170C1E70A +:10906C002200012301990098089F1A32B847013059 +:10907C00E6D00136D1E70000F0B58BB006920A00BD +:10908C0043320793059003920A7E0C00109B782ABA +:10909C0009D8622A0BD8002A00D1BAE07A49049187 +:1090AC00582A00D18EE0250042352A7022E01000AB +:1090BC0063381528F7D8F7F70DF816001F00F6FFE0 +:1090CC00F6FFF6FFF6FF1F00F6FFF6FFF6FFF6FFC2 +:1090DC009F0036007E00F6FFF6FFB000F6FF36006C +:1090EC00F6FFF6FF820025001A684235111D196043 +:1090FC0013682B7001239EE018680968021D0D0689 +:10910C000BD506681A60002E03DA2D23039A7642DB +:10911C0013705D4B0A27049318E006681A60490621 +:10912C00F1D536B2EFE70868196840C9050602D4D4 +:10913C00400600D5B6B21960534B0A2704936F2A28 +:10914C0000D1023F2300002243331A706368A360EE +:10915C00002B06DB04212268039D8A4322603343E3 +:10916C000CD0039D30003900F7F744F8049B013D07 +:10917C005B5C2B70330006009F42F3D9082F09D19A +:10918C002368DB0706D5626823699A4202DC302328 +:10919C00013D2B70039B5B1B2361079B21000093FC +:1091AC000598069B09AAFFF7F7FE013048D101206C +:1091BC0040420BB0F0BD202209680A43226078229D +:1091CC0032490491210045310A701968226840C95E +:1091DC00100602D4500600D5B6B21960D30702D5DA +:1091EC00202313432360002E01D01027AAE720224E +:1091FC00236893432360F8E71A680D68101D4969CA +:10920C00186013682E0601D5196002E06D06FBD5B7 +:10921C0019800023039D2361BFE71A68111D196093 +:10922C00156800212800626800F086F9002801D03A +:10923C00401B6060636823610023039A1370ACE7E2 +:10924C002A00236906990598079DA8470130AED0DE +:10925C0023689B0715D4099BE0689842A9DA18008B +:10926C00A7E72200012306990598079E1932B047FB +:10927C0001309CD00135E368099A9B1AAB42F0DCB3 +:10928C00E9E70025F7E7C04691EA000818E3000873 +:10929C00F7B50C228B5E05000C001A075AD44A68ED +:1092AC00002A02DC0A6C002A4FDDE76A002F4CD042 +:1092BC00002280212E682A601A0049010A400B42C4 +:1092CC0034D0626DA3895B0706D56368D21A636BD1 +:1092DC00002B01D0236CD21A00232800E76A216AE4 +:1092EC00B8470C23E25E431C06D129681D292ED8F1 +:1092FC002B4BCB40DB072AD500236360236923600B +:10930C00D20405D5431C02D12B68002B00D160651B +:10931C00616B2E60002918D023004433994202D08F +:10932C002800FFF787FC002363630EE0012328006D +:10933C00216AB8470200431CC4D12B68002BC1D052 +:10934C001D2B01D0162B1DD12E60002021E04023B7 +:10935C0013431BE00E69002EF7D00F680E60BA1B8A +:10936C00019200229B0700D14A69A260019B002B4D +:10937C00EBDDA36A32001F002800019B216AB8476D +:10938C00002807DC4023A28913431BB20120A381D0 +:10939C004042FEBD019B36181B1A0193E6E7C046FE +:1093AC00010040200B6970B505000C00002B02D1A8 +:1093BC000025280070BD002804D0036A002B01D1C1 +:1093CC00FFF7C6FA0C22A35E002BF1D0626ED20717 +:1093DC0004D49B0502D4A06DFFF7FBFB28002100F1 +:1093EC00FFF756FF636E0500DB07E2D4A3899B05EC +:1093FC00DFD4A06DFFF7EEFBDBE70B1F1B68181F1C +:10940C00002B01DA0B58C0187047000070B50C0027 +:10941C000E25495F00F06AF8002803DB636D1B180A +:10942C00636570BDA389024A1340A381F9E7C04666 +:10943C00FFEFFFFFF8B51F008B8905000C0016002D +:10944C00DB0505D50E23C95E0022022300F03AF895 +:10945C00A389054A28001340A38132000E23E15E44 +:10946C003B00FFF777FBF8BDFFEFFFFF70B50C007B +:10947C000E25495F00F026F80C22A35E421C03D196 +:10948C00044A1340A38170BD802252011343A3816F +:10949C006065F8E7FFEFFFFF10B50E23C95E00F023 +:1094AC0039F810BD0EB417B5054C05AB04CB010053 +:1094BC002068019300F07AF81EBC08BC03B0184772 +:1094CC002C01002070B50400080011001A000023C4 +:1094DC00054D2B60FDF7EEFB431C03D12B68002BD5 +:1094EC0000D0236070BDC0466413002070B504002A +:1094FC00080011001A000023054D2B60FDF7DCFB62 +:10950C00431C03D12B68002B00D0236070BDC046D8 +:10951C0064130020002370B5064D040008002B6076 +:10952C00FDF7BEFB431C03D12B68002B00D023603E +:10953C0070BDC04664130020C9B28218904201D19C +:10954C000020704703788B42FBD00130F6E70620F1 +:10955C0010B500F073FA0120FDF7B0FB936810B55D +:10956C00013B9360002B04DA9469A34207DB0A29C0 +:10957C0005D01368581C10601970080010BD00F05D +:10958C0035F90100F9E7F8B506000F001400D518FD +:10959C00AC4201D1002007E021783A003000FFF7FF +:1095AC00DDFF0134431CF3D1F8BD0000F0B59FB0D2 +:1095BC000D0016001C000290002804D0036A002B3A +:1095CC0001D1FFF7C5F96B6EDB0705D4AB899B05A1 +:1095DC0002D4A86DFFF7FDFAAB891B0702D52B69E6 +:1095EC00002B13D12900029800F042F900280DD06D +:1095FC006B6EDB0703D5012040421FB0F0BDAB8979 +:10960C009B05F8D4A86DFFF7E5FAF4E700232921B0 +:10961C0002AA52180B9320331370013102AA103393 +:10962C0052181370059434002378002B01D0252B8D +:10963C0048D1A71BB4420BD03B0032002900029842 +:10964C00FFF7A1FF013000D1AEE00B9BDB190B93B0 +:10965C002378002B00D1A7E0012253210023524292 +:10966C00079202AA5218661C06930993089313706A +:10967C001C93594F317805223800FFF75DFF741C9D +:10968C00069906AB00281FD1CA0604D55327202201 +:10969C0002A8C01902700A0704D553272B2202A86E +:1096AC00C019027032782A2A15D0340000200A27FB +:1096BC00DA682178661C3039092950D9002811D074 +:1096CC0009920FE00134AFE70123C01B83400B4329 +:1096DC0026000693CDE7059A101D12680590002A06 +:1096EC0037DBDA6022782E2A0CD162782A2A3BD119 +:1096FC00059A0234111D12680591002A01DA012223 +:10970C0052425A60354E032230002178FFF714FF85 +:10971C0006AF002806D04023801B8340069A0134F4 +:10972C0013430693217806222D48661C3976FFF7E1 +:10973C0003FF002847D02B4B002B29D10722059B78 +:10974C0007339343083305930B9B03995B180B93D7 +:10975C0069E75242DA6002220A430692C2E77A4370 +:10976C00340001205218A4E700220A205A6011008C +:10977C00130001342278661C303A092A03D9002BD5 +:10978C00C0D00791BEE74143340001238918F1E7AB +:10979C0005AA009239002A00134B029800E000BF82 +:1097AC000390039B0133CFD16B6EDB0705D4AB89E0 +:1097BC009B0502D4A86DFFF70DFAAB895B0600D5AB +:1097CC0019E70B9819E705AA009239002A00064BF5 +:1097DC000298FFF751FCE3E780EA000886EA0008EC +:1097EC008AEA00080000000093950008F8B506000E +:1097FC000D001400002804D0036A002B01D1FFF7E0 +:10980C00A7F8A369A360A3891B0702D52369002BC2 +:10981C0009D12100300000F02BF8002803D00125DD +:10982C006D422800F8BD23692068EFB2C01A636945 +:10983C00EDB2834205DC21003000FFF7B3FD0028B8 +:10984C00EDD1A3680130013BA36023685A1C226050 +:10985C001F706369834204D0A389DB07E1D50A2D0D +:10986C00DFD121003000FFF79DFD0028D9D0D6E7CD +:10987C002B4B70B5050018680C00002804D0036A47 +:10988C00002B01D1FFF764F80C22A35E1A0722D437 +:10989C00DA0607D409222A60373201201343A38148 +:1098AC00404270BD5A0713D5616B002908D02300C4 +:1098BC004433994202D02800FFF7BCF900236363BC +:1098CC002422A38993430022626022691BB2226086 +:1098DC0008221343A3812269002A07D19A0501D5D6 +:1098EC001B0603D52100280000F046F80C23E25E8D +:1098FC00012113000B400A420CD00023A3606369C2 +:10990C005B42A361002023698342CAD11306C8D5E8 +:10991C004023C2E7910700D46369A360F2E7C04615 +:10992C002C010020F0B50E001D000E23C95E1400A2 +:10993C0097B000290CDAB2898023110019401A4221 +:10994C0014D18023DB0000202960236017B0F0BD08 +:10995C006A4600F0A5F80028EDDBF02301991B0204 +:10996C001940044BC9184B425941EAE700214023E6 +:10997C00E9E7C04600E0FFFFF7B502268B8905003A +:10998C000C00334206D023004733236023610123AC +:10999C006361F7BD6A4601ABFFF7C4FF009F280067 +:1099AC003900FEF7E9FD0C22A35E002806D19A05CA +:1099BC00EFD4032293431E43A681E4E78022134392 +:1099CC00A381019B206020616761002BE1D02800FE +:1099DC000E23E15E00F03CF80028DAD00323A289C4 +:1099EC009A43023B1343A381D3E770B504000D00E7 +:1099FC001F2904D9162303600120404270BDC36B9C +:109A0C00002B04D08A009B181A68002A08D1200069 +:109A1C0000F042F82A000100200000F02BF8EDE7DE +:109A2C00012A09D0511C03D1162303600120E5E75C +:109A3C0000212800196090470020DFE710B5034B88 +:109A4C0001001868FFF7D1FF10BDC0462C010020A3 +:109A5C00002370B5064D040008002B60FDF728F9B3 +:109A6C00431C03D12B68002B00D0236070BDC04673 +:109A7C0064130020002370B5064D0400080011008B +:109A8C002B60FDF71DF9431C03D12B68002B00D074 +:109A9C00236070BD6413002010B5FDF719F910BDDB +:109AAC00002370B5064D0400080011002B60FDF773 +:109ABC00FAF8431C03D12B68002B00D0236070BD37 +:109ACC006413002010B500F0D3F910BD70B5041C60 +:109ADC0000F056FA211C051C201C02F081FA00280B +:109AEC0005D10021201CF6F7C5FC002801D1281C4B +:109AFC0070BDFFF743F8212300210360081C01F01F +:109B0C000DFD051CF3E7C04610B51B4A430082B09F +:109B1C005B08934218D9FF22D205934204D3011C4F +:109B2C0002F01CF802B010BD694600F09FFA032346 +:109B3C00019903400098012B11D0022B08D0002B67 +:109B4C0015D100F055F8EDE7002100F051F8E9E7E8 +:109B5C0000F04EF880231B069C466044E2E701228D +:109B6C0000F00EF980231B069C466044DAE70122C4 +:109B7C0000F006F9D6E7C046D80F493F10B51B4A8E +:109B8C00430082B05B08934219D9FF22D20593425D +:109B9C0004D3011C01F0E2FF02B010BD694600F0D5 +:109BAC0065FA0323019903400098012B14D0022B72 +:109BBC000AD0002B13D1012200F0E2F8ECE70022CE +:109BCC00002100F0DDF8E7E7012200F0D9F880234E +:109BDC001B069C466044DFE700F00AF8DCE700F067 +:109BEC0007F880231B069C466044D5E7D80F493FF5 +:109BFC00F8B54746CE46C823460080B5051C0F1C59 +:109C0C0076089B059E4248D202F000FA002800D14B +:109C1C009FE0291C281C01F04FFE4F49041C01F049 +:109C2C004BFE4E4901F06CFA211C01F045FE4C49EB +:109C3C0001F094FF211C01F03FFE4A4901F060FA4B +:109C4C00211C01F039FE484901F088FF211C01F06C +:109C5C0033FE464901F054FA211C01F02DFE8046DA +:109C6C00FC21201C890501F027FE4146061C201C06 +:109C7C0001F022FE391C041C281C01F01DFE011CE5 +:109C8C00201C01F06BFF011C301C01F067FF011C54 +:109C9C00FE20800501F062FF53E0011C01F00CFE78 +:109CAC002D49041C01F008FE2C4901F029FA211C55 +:109CBC0001F002FE2A4901F051FF211C01F0FCFDCC +:109CCC00284901F01DFA211C01F0F6FD264901F08E +:109CDC0045FF211C01F0F0FD244901F011FA211C73 +:109CEC0001F0EAFD224B80469E42B9D9214B9E429F +:109CFC002BD8FF231B069C46FE206644311C800596 +:109D0C0001F02CFF8146FC21201C890501F0D4FDBB +:109D1C00311C01F023FF4146061C201C01F0CCFD38 +:109D2C00391C041C281C01F0C7FD011C201C01F06F +:109D3C0015FF011C301C01F011FF011C484601F0FD +:109D4C000DFFC0BCB946B046F8BD0B4B0B4E994647 +:109D5C00D9E7FE208005F4E74ED747ADF6740F31F6 +:109D6C007CF29334010DD037610BB63AABAA2A3D85 +:109D7C009999993E0000483F0000383F0000903E02 +:109D8C00F8B54746CE4680B51700C8224300041CE0 +:109D9C000E1C5B089205934205D202F037F90300C2 +:109DAC00201C002B32D0211C201C01F085FD051C31 +:109DBC00011C201C01F080FD27498046281C01F065 +:109DCC007BFD264901F0CAFE291C01F075FD2449D2 +:109DDC0001F096F9291C01F06FFD224901F0BEFE3D +:109DEC00291C01F069FD204901F08AF98146002FF8 +:109DFC0010D1011C281C01F05FFD1C4901F0AEFEC6 +:109E0C00414601F059FD211C01F07AF9C0BCB9465C +:109E1C00B046F8BDFC21301C890501F04DFD4946CA +:109E2C00071C404601F048FD011C381C01F096FE51 +:109E3C00291C01F041FD311C01F090FE0B49051C61 +:109E4C00404601F039FD011C281C01F059F9011C98 +:109E5C00201C01F083FED9E7D3C92E2F342FD73223 +:109E6C001BEF3836010D50398988083CABAA2A3EC5 +:109E7C00F8B5FF254A00031C5208081CED05AA4240 +:109E8C002BD859009C464908A94226D8FE24A40583 +:109E9C00A04234D0022487173C40DF0F3C430029FA +:109EAC001FD0002A24D0AA4231D0A94220D0891A2E +:109EBC00C9153C2929DC002833DA3C3131DA002081 +:109ECC00012C3FD0022C35D0002C09D0244901F0B4 +:109EDC0017F9244901F042FE02E0191C01F010F9B7 +:109EEC00F8BD022C09D0181C032CF9D11E48F7E739 +:109EFC006346002B07DB1D48F2E71A48F0E7181CF5 +:109F0C0000F030FAECE71A48EAE71848D8E7013CC9 +:109F1C0091421CD00020022CE2D8164BA400E05831 +:109F2C00DEE7011C181C01F0F9FA00F039FB00F017 +:109F3C0019FAC5E70A4901F0E3F8011C094801F0D8 +:109F4C000DFECDE780231B069C466044C8E7022C1F +:109F5C0003D8094BA400E058C2E70848C0E7C04644 +:109F6C002EBDBB33DB0F4940DB0F49C0DB0FC93FB4 +:109F7C00DB0FC9BFE0F10008ECF10008DB0F493F33 +:109F8C00F0B5FF21C6464300020000B5041C5B0877 +:109F9C00C9058B4251D2002B4CD0002856DBC3157F +:109FAC00014208D180210023090452001C00013316 +:109FBC000A42FAD0634280241E005202520A240440 +:109FCC007F3E1443DB073FD5802219210027002553 +:109FDC00761064005204A8182300A04202DC8518F5 +:109FEC00231ABF1801395C0052080029F3D1002B49 +:109FFC0019D01C4C1C4D206829682368984601F028 +:10A00C00ADFD011C4046F6F73FFA00280BD0206846 +:10A01C00296801F075F82468011C201CF6F72AFA4F +:10A02C0000281AD00237FC239B059C467F106744FE +:10A03C00F005C01980BCB846F0BD011C01F03CFC19 +:10A04C00211C01F05DF8F5E76400BDE7011C01F08F +:10A05C0085FD011C01F062FAECE7012301379F43F7 +:10A06C00E1E7C046FCF10008F8F10008F0B5454600 +:10A07C004E46DE465746E0B5AB4B45000E008046DB +:10A08C0089B0041C6D089D4200D874E0A74B9D421A +:10A09C0022D8A74DA7490540002800DC1DE101F09E +:10A0AC005DFDA54B041C9D4200D170E0A34901F05D +:10A0BC0055FD011C051C201C01F050FD9F4901F0B1 +:10A0CC004DFD012735607060380009B0F0BCBB460F +:10A0DC00B246A946A046F0BD994B9D4267D9FF23D5 +:10A0EC00DB059D424CD2EC15863CE705EF1B381C7A +:10A0FC0001F08CFF01F0AAFF011C0590381C01F047 +:10A10C002DFD8721C90501F0D7FB814601F07EFFAB +:10A11C0001F09CFF011C0690071C484601F01EFD37 +:10A12C008721C90501F0C8FB0021079005ADF6F7A2 +:10A13C009BF9002800D1CEE00021381CF6F794F9E9 +:10A14C004342434101337F4A3100019202222800ED +:10A15C000092220000F028FA43460700002BB3DAE5 +:10A16C008022120694463368474263443360736816 +:10A17C0063447360A8E70023002708604B60A3E7E3 +:10A18C00011C01F0EBFC0027706030609CE76E490D +:10A19C0001F0E4FC6D49041C01F0E0FC011C051C01 +:10A1AC00201C01F0DBFC694901F0D8FC89E700F0C8 +:10A1BC00F7F96749814601F07FFBFC21890500F026 +:10A1CC009FFF01F023FF070001F040FF5949834630 +:10A1DC0001F072FB011C484601F0C0FC5749824655 +:10A1EC00584601F069FB011C0290504601F0B6FC88 +:10A1FC0081461F2F20DC574A791E8900564B8A58FE +:10A20C002340934218D04B4649463360504601F0E8 +:10A21C00A5FC029901F0A2FC43467060002B00DB08 +:10A22C0052E780231B064B44336080231B069C465D +:10A23C00604470607F4247E74B46FF24DB0DED1511 +:10A24C002340EB1A082BDEDD3F49584601F034FB66 +:10A25C008146011C504601F081FC011C03905046C4 +:10A26C0001F07CFC494601F079FC8146374958469F +:10A27C0001F022FB494601F071FC039B0290011C8A +:10A28C00181C9A4601F06AFCC30D1C4081462D1B1C +:10A29C00192DB8DD3149584601F00EFB039D041C05 +:10A2AC00011C281C01F05AFC011C8246281C01F0E0 +:10A2BC0055FC211C01F052FC2949041C584601F0A4 +:10A2CC00FBFA211C01F04AFC011C0290504601F0E3 +:10A2DC0045FC814697E7032335E700F011FF164B49 +:10A2EC00071C9D420FD0154900F00AFF011C041CED +:10A2FC00381C01F033FC114900F002FF01273460D7 +:10A30C0070607F42E0E6104900F0FAFE0F49051C30 +:10A31C0000F0F6FE011C041C281C01F01FFC0B496C +:10A32C0000F0EEFEEAE7C046D80F493FE3CB1640FB +:10A33C00F0FFFF7F800FC93FD00FC93F4344353733 +:10A34C00800F494380F200080044353708A3852E5E +:10A35C0084F9223F00F2000800FFFF7F00A3852E46 +:10A36C0032318D24F0B5A123C6464500060000B558 +:10A37C00041C6D08DB059D420BD3FF23DB059D42BE +:10A38C0000D978E0002800DCA6E0704880BCB84614 +:10A39C00F0BD6F4B9D4200D980E0C4239B059D42CC +:10A3AC006DD301235B429846211C201C01F084FADA +:10A3BC00011C071C01F080FA6649051C01F07CFAAF +:10A3CC00654900F09DFE291C01F076FA634900F006 +:10A3DC0097FE291C01F070FA614900F091FE291CCE +:10A3EC0001F06AFA5F4900F08BFE291C01F064FA57 +:10A3FC005D4900F085FE391C01F05EFA5B49071CD3 +:10A40C00281C01F059FA5A4901F0A8FB291C01F04B +:10A41C0053FA584901F0A2FB291C01F04DFA564998 +:10A42C0001F09CFB291C01F047FA544901F096FB02 +:10A43C00291C01F041FA011C381C00F061FE211CA2 +:10A44C0001F03AFA4346013348D043469F004C4B47 +:10A45C004C4DF95801F082FB211C01F07FFB011CD3 +:10A46C00785901F07BFB002E00DB8FE780231B0665 +:10A47C009C4660448AE7011C00F042FE86E7424994 +:10A48C0000F03EFEFE218905F6F708F80300201CBB +:10A49C00002B00D07AE7013B984685E700F080F866 +:10A4AC003A4B041C9D421ED8394B9D423CD8011C92 +:10A4BC0000F026FEFE21890501F050FB8021051CD1 +:10A4CC00C905201C00F01CFE011C281C01F026F8FC +:10A4DC000023041C984667E72E4857E7011C201CF4 +:10A4EC0001F03CFB52E72C4B9D4215D8FF2189050E +:10A4FC0001F034FBFF21051C8905201C01F0DCF95F +:10A50C00FE21890500F0FCFD011C281C01F006F859 +:10A51C000223041C984647E7011C204800F0FEFF6C +:10A52C000323041C98463FE7FE21890501F016FB26 +:10A53C00FE21051C8905201C00F0E2FD011C281CD5 +:10A54C0000F0ECFF0123041C98462DE7DB0FC93FFC +:10A55C00FFFFDF3ED769853C59DA4B3D356B883DB3 +:10A56C006E2EBA3D2549123EABAAAA3E21A215BDBC +:10A57C006BF16E3D95879D3D388EE33DCDCC4C3EC9 +:10A58C0098F50008A8F50008CAF24971FFFF973F3B +:10A59C00FFFF2F3FDB0FC9BFFFFF1B40000080BF39 +:10A5AC00400040087047C046F0B5DE4657464E4660 +:10A5BC004546E0B5DFB0039018000B9168990893FD +:10A5CC00D94B14000D928A00D1580300013B8B46E5 +:10A5DC0022000293231D00DAC8E20723033AD117A5 +:10A5EC000B409B18DB1006930133DB000C930C9A89 +:10A5FC000D9B9B1A0493069A029BD41A5A46D618A2 +:10A60C000ED40136699F22AD36190020002C03DBD5 +:10A61C00A300F85801F01AFD013401C5B442F4D17D +:10A62C005B464AAD002B1ADB029B22A98846994651 +:10A63C009F00089BB8445B440593039B00219C46F8 +:10A64C002A0040464B4604376744029C002C00DB32 +:10A65C00C4E1059C013302C20430A342F5D15B4630 +:10A66C000DAA9B00D2180A920EAA9446699A083B2E +:10A67C0063449446089A0993069B9600039A9B00A0 +:10A68C00634494465A46DA469B46664405920695C0 +:10A69C005346069A9B00D45801935346002B26DD53 +:10A6AC00A24BB14653449B00D7180EAB90461E00EC +:10A6BC00EE21201C890501F0FFF801F0A7FC01F048 +:10A6CC00C5FC8721C905051C01F0F6F8011C201CEE +:10A6DC0001F044FA01F09AFC396801C6281C00F01C +:10A6EC000FFD3B00041C043F9845E1D14E46049FEE +:10A6FC00201C390000F072FBF8218905051C01F0C3 +:10A70C00DBF800F021FB8221C90501F0D5F8011C12 +:10A71C00281C01F023FA051C01F078FC814601F09D +:10A72C0095FC011C281C01F019FA8046002F78DDDD +:10A73C0053465A1E92000EAB985808210300C91BB1 +:10A74C000B4199448B400EA9C31A8B50072118005A +:10A75C00C91B08410790002800DDCEE000214046CF +:10A76C00F5F782FE00286FD0059B9A450FDD0EAAE7 +:10A77C00944600226D4B0A9853449B00634419681D +:10A78C00043B0A438342FAD1002A00D049E1012359 +:10A79C0053449846059B0EAA013B9B00D358002BB3 +:10A7AC0000D019E10122099B1968043B01320029F0 +:10A7BC00FAD0524491460699089B8C4653449B0010 +:10A7CC0022ADEA18019B63449A4643469046019396 +:10A7DC005A46019B9B00D05801F038FC4346186048 +:10A7EC00029B002B1BDB45460027039C296801CCF0 +:10A7FC0001F062F8011C381C00F082FC043D071CBF +:10A80C00B442F3D10422534694465F60019BE0446A +:10A81C0001330193E2444B45DADDCA4638E70027A1 +:10A82C00F0E7049B002B00D1BBE0FC218905F5F778 +:10A83C003FFE002800D09EE10023002140460793F4 +:10A84C00F5F712FE00288FD14B460893059B0D9A05 +:10A85C009B460C9B4046991A069D00F0BFFA872137 +:10A86C00C9055746041CF5F723FE002800D11BE24E +:10A87C00EE21201C890501F01FF801F0C7FB01F047 +:10A88C00E5FB8721C905061C01F016F8011C201CEC +:10A89C0001F064F901F0BAFB019A0EAB9850049BDD +:10A8AC003C000833301C049301F0B0FB0134A700CA +:10A8BC000EABD851FE200499800500F08FFA002CC5 +:10A8CC0000DBD4E0689B022B00DD23E2002B00DDD3 +:10A8DC0028E2689B0020002B05D1079B002B00D0A1 +:10A8EC00F7E10B9B18600720089B18405FB0F0BC89 +:10A8FC00BB46B246A946A046F0BD01218C46514646 +:10A90C00E144002900DCF4E10EAB180000215246B2 +:10A91C000E9D002D3ED0924680225200521B0260AA +:10A92C005446FF2007E0C046E4F50008FFFFFF3F58 +:10A93C001A68821A1A60013104338C42F8DCA24680 +:10A94C000125049B002B0DDD012B00D104E1022B12 +:10A95C0008D15346013B9B000EAAD1583F220A4016 +:10A96C000EA9CA50079B022B00D0F7E6FE204146E9 +:10A97C00800501F0F3F88046002D00D1EEE6FE20B4 +:10A98C000499800500F02AFA011C404601F0E6F813 +:10A99C008046E3E6013104338A4240DD18001D682D +:10A9AC00B7E75346013B0EAA9B00D358DA11079226 +:10A9BC007F2B00DCD2E601239C465346E144002B5E +:10A9CC00A2DC079B022B00D0C8E6FE204146800586 +:10A9DC0001F0C4F88046C1E6C146ECE699469046C3 +:10A9EC00AA4601900025019E039C316801CC00F021 +:10A9FC0063FF011C281C00F083FB043E051CBC42B9 +:10AA0C00F3D1434601C39846019B043301930123C0 +:10AA1C009C46059BE1449945E4D155461FE6924678 +:10AA2C008FE74A4653460892059A5C1E19009346D6 +:10AA3C00A300049A0EA8C358083A069D0492002B52 +:10AA4C000DD10B00BE498C46634484469B00634485 +:10AA5C001968043B013C083A0029F9D00492FE2005 +:10AA6C000499800500F0BAF9002C00DA2AE7A3005B +:10AA7C000EAA1E009446EF183D00A04603936644B0 +:10AA8C00041C306801F0E2FA211C00F015FFEE21E5 +:10AA9C0028608905201C00F00FFF0EAA3300041C4F +:10AAAC00043E043D9A42ECD136AB99460293002306 +:10AABC00444698465A464B4641460194002A00DAD1 +:10AACC0091E099469F4BCB468846B9469A4617006B +:10AADC00049443460024B846002500261F000EE0CF +:10AAEC004B4619595346185900F0E6FE011C281C18 +:10AAFC0000F006FB0136051C0434B04501DBB742FF +:10AB0C00EEDA3B00474698465B4620C39B46012342 +:10AB1C009C46053BE0449C46019BE144013B01D330 +:10AB2C000193D6E7049C689B022B65DC002B2CDC84 +:10AB3C0000D0D8E6029B00209C46039E66443168F8 +:10AB4C0000F0DEFA029A3300043E9A42F7D1079BDA +:10AB5C00002B00D1C5E6BCE05346013B9B000EAA7E +:10AB6C00D1587F220A400EA9CA50FBE608230C9349 +:10AB7C00002306933BE501239C4601330793534680 +:10AB8C00E144002B00DDBFE61FE7029B00259C463D +:10AB9C00039E369F6644281C316800F0B1FA029A75 +:10ABAC003300043E9A42F7D1079B051C002B00D0C2 +:10ABBC0082E0011C381C00F0D1FF0B9B1D60002CA7 +:10ABCC000ED0012537AE02CE013500F099FAAC4219 +:10ABDC00F9DA079B002B03D080231B069C466044AC +:10ABEC000B9B58607FE6002001C301980131043FA4 +:10ABFC00013898D3019061E7689B032B00D072E673 +:10AC0C00002C00D18CE0029B03991A008C46624404 +:10AC1C009C460D1F654490462E00A946A246176817 +:10AC2C003368381C191C9B4600F06AFA3C1C011C4A +:10AC3C00071C584600F092FF211C00F061FA029BA1 +:10AC4C00350070603760043EAB42E9D154464D4646 +:10AC5C00012C65D043461C682F68201C391C00F061 +:10AC6C004FFA261C011C041C381C00F077FF311C09 +:10AC7C0000F046FA029B2E0068602C60043DAB424B +:10AC8C00EAD1444600202168043C00F039FAA6427F +:10AC9C00F9D1029B0799369A5B6800291ED10B9952 +:10ACAC000A604B6088601EE6201C01F0AFF9019A27 +:10ACBC000EAB3C009850D2E680230B9A1B06C318AF +:10ACCC00011C1360381C00F049FF002C00D078E701 +:10ACDC0082E780231B069C46604402E6802109061D +:10ACEC008C460B996244634460440A604B608860F4 +:10ACFC00F9E5049901290BD0022900D061E63F2126 +:10AD0C000B400EA98B50079B022B00D026E55CE66E +:10AD1C007F21F5E736AB0293689B032B00D0E2E56D +:10AD2C000020B6E7079B3698002B04D080230B9AA3 +:10AD3C001B06136050E700230B9A136050E7C046C4 +:10AD4C00FEFFFF3FB8F50008F0B5C64644006708A3 +:10AD5C00240E7F3C060000B5051C162C1CDC80461E +:10AD6C00002C22DB1A4F2741074211D0194900F061 +:10AD7C00C7F90021F5F792FB002809D0002D04DA61 +:10AD8C0080231B0423419846A8444346BB431E0022 +:10AD9C00301C80BCB846F0BDFF23DB059F42F7D3C7 +:10ADAC00011C00F0ADF9061CF2E70A4900F0A8F905 +:10ADBC000021F5F773FB0028EAD0002D01DB0026FB +:10ADCC00E6E7002F02D180263606E1E7024EDFE7E8 +:10ADDC00FFFF7F00CAF24971000080BF420070B5CE +:10ADEC00031C0C0006005508002A1AD0FF21C905C7 +:10ADFC008D4217D2014219D19821C90500F05CFD92 +:10AE0C00204A031C94422CDB42001F49120E060000 +:10AE1C00193A8C420EDD1D48002B1DDB1B4900F03E +:10AE2C004BFD70BD011C00F06BF9FAE71649120ED0 +:10AE3C008C42F0DC1119FE29EDDC002915DC0A002E +:10AE4C00163217DB1931C805CC21114B89051E4070 +:10AE5C00304300F031FDE4E70C490E4800F02CFDC6 +:10AE6C00DFE70D4900F028FDDBE70948C905304054 +:10AE7C000843D6E70848002B00DA0848064900F0DA +:10AE8C001BFDCEE7B03CFFFF50C30000CAF2497176 +:10AE9C00FFFF7F80CAF249F16042A20D6042A28D91 +:10AEAC00F0B5CE469946030C9C46130447461B0C42 +:10AEBC001D000E0061460404240C80B50700100C24 +:10AECC004B436543414360432C0CC01824188C46FB +:10AEDC00A34203D980235B029846C4444946794374 +:10AEEC005643230C2D042D0C89196344240460193A +:10AEFC00C918C0BCB946B046F0BDC0469E2110B5BD +:10AF0C00C905041CF5F7D4FA002803D1201C01F064 +:10AF1C007DF810BD9E21201CC90500F01FFE01F01C +:10AF2C0075F880231B069C466044F2E770B500223E +:10AF3C000C4B04000D00F5F781FA002804D1200019 +:10AF4C00290003F075F870BD064B00222000290083 +:10AF5C0002F036FC03F06CF880231B069C46604420 +:10AF6C00F1E7C0460000E041F0B557464E46454675 +:10AF7C00DE46E0B504000D009246994683B08B4244 +:10AF8C0030D82DD049465046F5F7DAFA290006009C +:10AF9C002000F5F7D5FA331A9846203B34D49B465B +:10AFAC0053465A46934042461F00534693401E0058 +:10AFBC00AF423BD8AF4200D179E05B46A41BBD4108 +:10AFCC00002B00DA76E0002200230092019301238B +:10AFDC005A4693400193012342469340009329E043 +:10AFEC008242CFD900220023009201930C9B002BAC +:10AFFC0001D01C605D600098019903B0F0BCBB46A9 +:10B00C00B246A946A046F0BD42469B4620239B1A59 +:10B01C005246DA40414613004A468A4017004246DF +:10B02C001F43534693401E00AF42C3D90022002356 +:10B03C00009201934346002BD8D0FB0772081A43A9 +:10B04C0046467B080EE0AB4201D1A2420CD8A41AB2 +:10B05C009D41012024196D410021013E24184D41D0 +:10B06C00002E06D0AB42EED9013E24196D41002EC4 +:10B07C00F8D1009801995B4600196941002B24DB3B +:10B08C002B005A464646D3402A001C00F2405B4631 +:10B09C001500002B2ADB26009E4033002600474675 +:10B0AC00BE403200801A9941009001919EE7A34264 +:10B0BC00BCD882E74246202300219B1A0022009133 +:10B0CC0001920122DA40019285E7424620239B1A25 +:10B0DC002A0046469A402300F340464613432A0072 +:10B0EC001C00F2405B461500002BD4DA20234246AC +:10B0FC002F009B1B97402600DE403B003343CDE7DF +:10B10C004A02F8B5530ACE4699464B00C90F47463A +:10B11C00884646004502360E1B0E80B5C40F6F0ADA +:10B12C009209AD09F11A44454BD0002938DD002BAA +:10B13C0000D174E0FF2E00D1BEE08023DB041A4363 +:10B14C001B2900DCFDE0013D6B0100D4AFE00125C3 +:10B15C006D42AD01AF093800F5F7D4F93B00053865 +:10B16C008340864200DCD3E0B94D311A1D405A07AA +:10B17C0000D19EE00F221340042B00D199E004353E +:10B18C006B0100D495E0481CFE2951D1FF2000230F +:10B19C00C0051843E4072043C0BCB946B046F8BD0F +:10B1AC00002949D0991B002E72D1002D00D133E11A +:10B1BC004C1E012900D159E1FF2900D14CE121009D +:10B1CC006CE0002900DC81E0002B55D1002A70D006 +:10B1DC004B1E012900D12BE1FF296DD01B2B50DC1C +:10B1EC00190020235B1A10009A40C840531E9A4144 +:10B1FC000243AD188023DB041D4200D1ADE0711C6D +:10B20C00FE2EC3D001206A082840924D15400543FC +:10B21C006A0700D08BE01D42B5D1EF0834E0002A5C +:10B22C0047D04B1E012966D0FF2945D0190087E76E +:10B23C00C0B2AB015B0AABE7FE239C46701C03005B +:10B24C006046184200D092E0002E00D0E7E0002DBE +:10B25C0000D119E1002A17D08023AF1ADB041F425A +:10B26C0000D142E14446551B00D187E001201D422C +:10B27C00DFD10021EF0807E0FF2E1DD01B2900DCD9 +:10B28C0094E031000535EF087B025B0AC8B27FE71A +:10B29C00FF2B00D1E0E08020C00405431B2900DC1B +:10B2AC0088E0551E44461E00690100D54FE7310069 +:10B2BC000435EF08FF29E7D1002F00D166E7802382 +:10B2CC00DB033B435B02FF205B0A61E7002958D09C +:10B2DC00991B002E00D089E0002D00D19DE04E1E60 +:10B2EC00012900D1A4E0FF2900D1B6E01B2E00DD1E +:10B2FC00B8E0310081E0AA1A530100D4AFE0970105 +:10B30C00BF093800F5F7FEF83B00053883400126ED +:10B31C001D00811B20200131CD40411A8B40591E4C +:10B32C008B411D432AD000216B0700D1F0E00F2385 +:10B33C002B40042B00D022E76B0100D523E7EF084C +:10B34C00A2E720235B1A10009A40C840531E9A4172 +:10B35C000243AD1A6B0100D5FBE66B0700D1D5E0BB +:10B36C000F2331002B40042B00D008E7A1E7AF1AC4 +:10B37C007B014ED4002F00D0EDE6002400200023EA +:10B38C0006E7FE23711C0B4221D1002E00D081E078 +:10B39C00002D00D19FE0002A00D1B2E0AB185A0179 +:10B3AC0000D4B0E09B0101205B0AF1E68023DB04B2 +:10B3BC001A4316E720242800C840611A8D40290042 +:10B3CC004C1EA141014344461E00551AC2E7FF29F9 +:10B3DC0000D1DBE6AF187F087B0705D00F233D1D9E +:10B3EC003B40042B00D064E7FF084DE7FF2B34D023 +:10B3FC001B2937DC8020C004054328002026C840C8 +:10B40C00711A8D4029004D1EA94101431E008D1853 +:10B41C00F0E64446571B9EE64446150049E7002DCE +:10B42C0046D1002A66D180230024FF20DB03AFE63F +:10B43C00AA18530113D5074F52081740530744D08D +:10B44C000F231340042B40D002213D1D31E7C04691 +:10B45C00FFFFFFFBFFFFFF7D44464F462CE701211A +:10B46C00D70811E705321900D7080DE7571B7B01E8 +:10B47C0037D5BF01BF093800F5F744F83B00053854 +:10B48C0083404446013643E7002A00D175E7444621 +:10B49C004F46F9E6002DE0D08023DB03002A17D0BD +:10B4AC009F4200D20BE7994500D308E74F4606E7C9 +:10B4BC008023DB03002A0BD09F4200D2FFE6994584 +:10B4CC0000D3FCE644464F46F9E60221FF08DBE6D2 +:10B4DC00FF203B435CE6002A00D14FE70021D70850 +:10B4EC00D2E644460121FF08CEE6002F00D07BE7D0 +:10B4FC00002443E780234A46DB034446FF201343E2 +:10B50C0046E60021C0E60021DF08BDE63100D0E6AA +:10B51C0001206A0100D58BE62A00DFE7F0B546462C +:10B52C004F46D6464502C0B5C30F470098460E1C81 +:10B53C006D0A3F0E5BD0FF2F21D08023ED00DB0482 +:10B54C001D43002399469A467F3F74027300640A98 +:10B55C001B0EF60F002B20D0FF2B43D08022002097 +:10B56C00E400D20414437F3B4246FF1A4B46724020 +:10B57C000F2B00D99DE071499B00CB589F46002DA5 +:10B58C005AD108239946063B74029A467300FF274A +:10B59C00640A1B0EF60F002BDED1002C3BD10123CD +:10B5AC0042464946724019430E2918D8644889000E +:10B5BC0041588F465346022B00D1B8E0032B6ED076 +:10B5CC0042462C00012B40D100200024C005204312 +:10B5DC00D2071043E0BCBA46B146A846F0BDFF20E6 +:10B5EC000024F3E7002C20D10223FF3FD8E7002DE5 +:10B5FC0005D104239946033B00279A46A5E728006A +:10B60C00F4F780FF7627431F9D4000237F42994625 +:10B61C009A463F1A99E72000F4F774FF431F9C40A9 +:10B62C0076235B421B1A00209EE703234A461A43EB +:10B63C0091460320FC3397E70C239946093BFF27DF +:10B64C009A4682E703282CD0320038007F3000283D +:10B65C0047DD630704D00F232340042B00D00434B0 +:10B66C00230103D53800374B80301C40FE28B6DC54 +:10B67C00A401640AC0B2A9E780240022FF20E403DD +:10B68C00A4E78023DB031D4201D01C420BD0802495 +:10B69C00E4032C4364024246FF20640A96E74646C4 +:10B6AC002C008023DB031C4364023200FF20640A5D +:10B6BC008CE76D01600185422DD21B230024013FD4 +:10B6CC000126290064006D00002901DB854201D3AD +:10B6DC002D1A3443013B002BF3D16B1E9D412C439F +:10B6EC00B3E701231B1A1B2B00DD6DE721009E37EE +:10B6FC00D940BC400B00611E8C412343590704D038 +:10B70C000F211940042900D00433590113D49B0193 +:10B71C0000205C0A5AE71A2301242D1AD0E7981E40 +:10B72C0043425841404232000024C0B24EE74246E8 +:10B73C00FF2000244AE70120002447E7F0F5000829 +:10B74C0030F60008FFFFFFF770B542004E024C00C8 +:10B75C0045026D0A120EC30F760A240EC90FFF2A7A +:10B76C0010D0FF2C0CD00120A2420AD1B54208D136 +:10B77C008B420FD0002A04D12800431E984100E0D0 +:10B78C00012070BD0120FF2CFBD13543F9D14B407A +:10B79C001800F6E70020F4E730B5420044024D02F1 +:10B7AC00C30F4800640A120E6D0A000EC90FFF2A5F +:10B7BC0018D0FF280AD0002A1ED100280AD1002D4B +:10B7CC0029D0002C2DD14800013830BD002D25D1B9 +:10B7DC00002A01D1002CF6D08B4219D001205B42FB +:10B7EC001843F2E7002C19D1FF28F7D1002D15D101 +:10B7FC0000208B42F2D1E8E70028EFD08B42EDD14C +:10B80C008242EBDC04DBAC42E8D80020AC42DCD258 +:10B81C0058000138D9E7002CD7D0DFE7022040428E +:10B82C00D3E78B42DAD1EEE730B5420044024D0249 +:10B83C00C30F4800640A120E6D0A000EC90FFF2ACE +:10B84C0017D0FF280AD0002A1BD100280AD1002DBE +:10B85C001DD0002C2DD14800013811E0002D0ED147 +:10B86C00002A01D1002CF6D08B420CD158000138A3 +:10B87C0006E0002C03D1FF2805D1002D15D00220A5 +:10B88C0030BD002806D101205B421843F8E7002C9C +:10B89C00F6D0F8E78B42F6D18242F4DCE6DBAC4220 +:10B8AC00F1D80020AC42EBD2E0E700208B42EAD189 +:10B8BC00E6E78B42E7D1F2E7F0B54F464646D6466F +:10B8CC004502C0B546000F1C6D0A360EC40F002E83 +:10B8DC0000D1CDE0FF2E72D08023ED00DB041D43A0 +:10B8EC00002399469A467F3E7B025B0A98467B0072 +:10B8FC001B0EFF0F002B72D0FF2B00D1A9E07F3B5A +:10B90C00F6184B460A2B00DD85E043468022DB000F +:10B91C00D2041A434B4690467C400022022B0FDD8A +:10B92C00494601238B40A621C9000B4200D072E08E +:10B93C00902189000B4200D0DAE08821194267D1AE +:10B94C00280C42462D042D0C4346290012041B0CD6 +:10B95C00120C51435D4342435843AD180B0C5B1919 +:10B96C009A4203D9802252029446604409041A0474 +:10B97C00090C52189501691E8D411B0C920E1B1857 +:10B98C0015439B011D431B0100D5CFE030007F30D8 +:10B99C00002800DCB1E06B070BD00F2332002B40EA +:10B9AC00042B06D004352B0103D5803210006A4BD2 +:10B9BC001D40FE2864DCAB015B0AC0B21FE0002D09 +:10B9CC0000D08FE008239946063B9A467B025B0A1F +:10B9DC0098467B00FF261B0EFF0F002B8CD1434695 +:10B9EC00002B5CD14A4601331A43914613000A2AB4 +:10B9FC0011DC01227C40022B92DC00200023C005CC +:10BA0C001843E4072043E0BCBA46B146A846F0BD53 +:10BA1C003C00454692465346022B31D0032B11D0A5 +:10BA2C00012BEAD030008030721C002866DD6B07D9 +:10BA3C00B9D00F232B40042BB4D1B4E70F2A7AD002 +:10BA4C003C0045468023DB032B435B02FF205B0A53 +:10BA5C00D5E74346FF36002B34D14A460233134315 +:10BA6C000A2BD8DC7C40002A0AD09946022257E7E0 +:10BA7C00002D08D104239946033B00269A4633E750 +:10BA8C00FF200023BBE72800F4F73CFD7626431F7C +:10BA9C009D400023764299469A46361A24E7404642 +:10BAAC00F4F730FD4B46361A763E0A2BB3DC434690 +:10BABC000538834098464B4600227C40022B00DD23 +:10BACC002EE73DE703234A461A4313000A2AB5DC46 +:10BADC0001229A40882113007C400322194200D194 +:10BAEC002EE795E70C239946093BFF269A46FBE681 +:10BAFC0080230024FF20DB0381E7320001231B1A83 +:10BB0C001B2B00DD79E79E3229009540D9406A1E37 +:10BB1C0095410D436B0704D00F232B40042B00D011 +:10BB2C0004356B0113D50120002368E701236A0853 +:10BB3C001D40154376E78023DB031D4282D042462D +:10BB4C001A4200D07EE73C00FF20134357E7AB01BD +:10BB5C0000205B0A53E7C046FFFFFFF7F8B54746E6 +:10BB6C00CE464B02460080B5C40F4702580A8446A5 +:10BB7C0048007A0A360EBF09000ECD0F9B09FF282C +:10BB8C006DD001214D40311AAC423AD0002900DC75 +:10BB9C009CE1002800D19EE0FF2E00D188E080229D +:10BBAC00D20413431B2900DCF6E0013F7A0100D4D8 +:10BBBC0079E001277F42BF01BB0998464046F4F764 +:10BBCC00A1FC434605388340864200DCCCE0B44FF0 +:10BBDC00311A1F405A0768D00F221340042B64D02F +:10BBEC0004377B0161D5481CFE2900D081E0FF2081 +:10BBFC000023C0051843E4072043C0BCB946B04637 +:10BC0C00F8BD002900DC79E1002876D1002B4CD05E +:10BC1C00481E012900D147E1FF2949D01B2871DCBE +:10BC2C0001001A002020CA40411A8B40591E8B413A +:10BC3C001343FF188023DB041F4200D1B8E0711CB2 +:10BC4C00FE2ED4D0012297483A407F080740174374 +:10BC5C007A0700D096E01F42C5D1FA0855E03100B2 +:10BC6C00FF398946002B2CD101214D40AC4200D12B +:10BC7C00B4E0494600294CD0002E00D0F9E0FF2159 +:10BC8C00002F00D108E14A1E012900D156E1FF29FD +:10BC9C0000D142E11B2A00DC24E15F1E2C000600CF +:10BCAC007A0100D585E731000437FA08FF292CD139 +:10BCBC00002A9CD08023DB0313435B02FF205B0A2A +:10BCCC0097E7AC4200D1A7E0002922D0002ED6D0B5 +:10BCDC0062462C00EEE7002BE7D0481E012936D037 +:10BCEC00FF29E5D001005DE701203B007A0100D47B +:10BCFC0057E1C0B2BB015B0A7BE7FF2ED8D01B29F2 +:10BD0C0000DC9FE031000537FA0853025B0AC8B229 +:10BD1C006FE7FE20711C084254D1002E00D0B1E018 +:10BD2C00002F00D102E1002B00D1F9E08021FA1A9A +:10BD3C00C9040A4200D13BE10124DF1B2C40002F37 +:10BD4C0049D001200F42D5D10021FA08DDE7FF1AB6 +:10BD5C007B0100D4DEE0BD01AD092800F4F7D2FB75 +:10BD6C002B000538834001262022811B0131521AF9 +:10BD7C001F009340CF405A1E93411F432BD00021EC +:10BD8C007B07B1D00F233B40042B00D028E77B016D +:10BD9C0000D528E7FA08B8E71A002020CA40411A53 +:10BDAC008B40591E8B411343FF1A7B0100D502E7D0 +:10BDBC007B0700D10DE10F2331003B40042B00D059 +:10BDCC000EE772E7FA1A9046520156D44346002BFE +:10BDDC0000D0F3E60024002000230AE7494600299E +:10BDEC001CD0002E00D002E7FF21002F55D04A1E98 +:10BDFC00012959D0FF2900D190E01B2A00DD91E0E8 +:10BE0C0011003A002025CA40691A8F40791E8F41D3 +:10BE1C0017430600FF180DE7002926D1FE20711CE0 +:10BE2C00084213D1002E00D096E0002F00D1B4E0D0 +:10BE3C00002B75D0FB185A0100D4B2E09B015B0AB1 +:10BE4C00FD38D6E68022D2041343EAE6FF2900D15E +:10BE5C00CDE6FA185208530705D00F23171D1340CF +:10BE6C00042B00D021E7D2084FE7002EBCD062464D +:10BE7C0020E72C00FF200023BBE60124DB1B9846A7 +:10BE8C002C409BE6002F75D1002B00D096E0802330 +:10BE9C000024FF20DB03ACE62C001F0005E7C046A6 +:10BEAC00FFFFFFFBFFFFFF7DFB185A0100D48DE065 +:10BEBC004A4A5B081A40590700D18CE00F210B400D +:10BECC000D39042BCFD00221171DEEE6002900D12D +:10BEDC001FE7821B1100002E00D1D1E68021C9047E +:10BEEC000F43D7E639002024D140A21A97407A1E7E +:10BEFC0097410F432C000600DF1B56E700298DD01D +:10BF0C00811B002E00D170E71B290BDC8022D20490 +:10BF1C00174376E70121FA08F7E62C006246C7E6DC +:10BF2C000021F2E605330100DA08EEE6002B00D121 +:10BF3C0050E70124002162462C40E6E6DA1B53014F +:10BF4C0032D5920194092000F4F7DCFA230005386D +:10BF5C0083402C00012607E7002FDFD0002B17D0E1 +:10BF6C008023DB039A4200D2A4E69C4500D3A1E6D1 +:10BF7C0062469FE6002B0BD08023DB039A4200D253 +:10BF8C0098E69C4500D395E6012462462C4091E648 +:10BF9C008023DB03FF2013432BE60020002B00D172 +:10BFAC0027E60021DA08B0E62C000121D208ACE625 +:10BFBC00002A00D10EE70021D208A6E680236246B3 +:10BFCC000124DB03FF2013432C4012E60121DA0885 +:10BFDC009BE6310069E60221D20896E6FFFFFF7D61 +:10BFEC0043024A02400049005B0A520A090E000E45 +:10BFFC00FF2806D00020FF2902D1531E9A411000C1 +:10C00C007047FE38002BFBD1F4E7C04641024200DA +:10C01C00C30F490A0020120E7E2A03DD9D2A02DD81 +:10C02C00094A98187047802000040143952A07DCC0 +:10C03C009620821AD1404842002BF3D10800F1E738 +:10C04C00963A9140F7E7C046FFFFFF7F70B5002896 +:10C05C0012D0C317C5185D40C40F2800F4F752FA6C +:10C06C009E231B1A962B0FDC082838D008388540E5 +:10C07C006D026D0AD8B202E0002400200025C00534 +:10C08C002843E407204370BD992B14DC421F9540D4 +:10C09C002A001549114055071CD00F252A40042AA7 +:10C0AC0018D00431CA08490115D59F235202181A19 +:10C0BC00550AC0B2E3E7020029001B3291404A1E28 +:10C0CC0091410522121AD5402A000A430649114013 +:10C0DC005507E2D1CA085202550AD8B2CFE76D0211 +:10C0EC006D0A8E30CBE7C046FFFFFFFB10B5041E78 +:10C0FC000DD0F4F707FA9E231B1A962B0CDC08289C +:10C10C0034D0083884406402640AD8B201E00020BC +:10C11C000024C005204310BD992B13DC421F944012 +:10C12C00144A224061071CD00F212140042918D049 +:10C13C000432D408520115D59F236402181A640ADC +:10C14C00C0B2E6E7020021001B3291400A00511EEA +:10C15C008A410521091ACC401443064A2240610742 +:10C16C00E2D1D4086402640AD8B2D2E76402640A49 +:10C17C008E30CEE7FFFFFFFBF0B54F464646D64666 +:10C18C00C0B50D0382B0009201934E00C300CC0FDA +:10C19C00690A450F9C46009A019B0D435F001903E9 +:10C1AC00D80F009B490A5B0F1943009B760D7F0D3E +:10C1BC00DA00F31B844258D0002B13DD002F00D083 +:10C1CC0088E00800104300D159E1581E012B00D122 +:10C1DC00C2E2B14FBB4200D141E1382800DD6AE236 +:10C1EC00030064E1002B00D1B1E0BB1B002E00D09A +:10C1FC00E1E164462C4300D176E25C1E012B00D1B8 +:10C20C00E8E2A54EB34200D1B7E2382C00DC6BE378 +:10C21C00541EA242924152428D1AA0461E000400A6 +:10C22C002A0268D443461F1D47459B415B42ED18CB +:10C23C002B0200D49DE3984A0136964200D1EBE0E4 +:10C24C00964A73052A405B0D5107FF0852020F43B3 +:10C25C00120B1B051343E40723433800190002B0EB +:10C26C00E0BCBA46B146A846F0BD002B00DCD7E0D6 +:10C27C00002F00D09AE00800104300D1FFE0581EB8 +:10C28C00012B00D148E2844FBB4200D1E7E03828B3 +:10C29C0000DCB8E280221204154200D149E31E00F2 +:10C2AC000023150098467C4B01369E4200D1B3E02A +:10C2BC007A4B01211D4043465A081940EF070A43A7 +:10C2CC0017436D087B07B3D00F233B40042BAFD033 +:10C2DC00B846A7E77048864200D1C0E0382B00DC96 +:10C2EC00E2E001235B4263449C45804140422D1AAD +:10C2FC0098462B0296D501235B429846684D280040 +:10C30C00F4F700F90300083B20214046CA1AD0403C +:10C31C00020040469D4098402A438046B34200DAD2 +:10C32C0072E1981B43460130091A45468B40C540C3 +:10C33C005E1EB34117008F402B431F43C2403B008E +:10C34C00150000261343BDD10027002281E7554F6D +:10C35C00731C3B4200D01BE163460F002B43174379 +:10C36C00002E00D0C4E1002B00D145E2002F00D1FB +:10C37C0007E163469B1A9846C445B6416B1A764250 +:10C38C009B1B80263604334200D1CBE26346D31A82 +:10C39C009A4292411F00491B52428A1A9C461743EB +:10C3AC0000D0EDE204000023002252E73A48864216 +:10C3BC0055D0382B00DD48E18020000401431F2BB1 +:10C3CC0000DDE3E12027F81A824608005746B84002 +:10C3DC00814610004F46D840074338005746BA40B4 +:10C3EC00D940571EBA416D18104360448046E04551 +:10C3FC00804140422D182B0200D554E743465B0781 +:10C40C0000D1B9E20F2342461340042B00D009E7B8 +:10C41C0033004246D20834E033000022002718E7EC +:10C42C00002B00D18FE0BB1B002E00D033E1604607 +:10C43C00284300D140E2581E012B00D10AE2164ECF +:10C44C00B34200D185E2382800DC87E280252D0438 +:10C45C00294200D19CE21E000023984623E7634644 +:10C46C006E07D8080643ED0837002F4311D0802201 +:10C47C0012032A4312033700074B120BE9E66246FC +:10C48C00D2086E071643044AED089342ECD03700ED +:10C49C00D6E0014B0022DCE6FF070000FFFF7FFF28 +:10C4AC00FFFF7F00FE0700008020000401431F2BCC +:10C4BC0000DDB1E02027F81A824608005746B84044 +:10C4CC00814610004F46D840074338005746BA40C3 +:10C4DC00D940571EBA416D1A104363461B1A9C452E +:10C4EC008041984640422D1A2B0287D56D026D0A69 +:10C4FC00002D00D003E74046F4F704F8030018338E +:10C50C001F2B00DC00E74246083882409E4200DDCB +:10C51C0091E09B1B581C1F2800DCF8E117001F3B07 +:10C52C00DF40202805D040231B1A9A40531E9A4105 +:10C53C001743002F3CD000267B0700D0C4E6350003 +:10C54C00B846330065E7CB48731C034200D085E046 +:10C55C0063462B43002E00D092E10F001743002BB3 +:10C56C0000D1D8E1002F0CD06244624580416D1897 +:10C57C0040422D182B0200D5F2E1170094462F43B0 +:10C58C0016D063466F07D80807430023ED0857E021 +:10C59C0063469B1A9846C445BF416B1A7F42DB1B0E +:10C5AC001F0200D5AEE047461D001F43A0D100245A +:10C5BC00002300224DE6B04CA74200D1DDE0382B21 +:10C5CC0000DD85E08024240425431F2B00DDECE0F6 +:10C5DC002026F41AA1462C004E46B4406646DE4096 +:10C5EC003443A04666464C46A640DD40741EA64128 +:10C5FC004446491B3443131B9A429241524298467B +:10C60C0004003E008D1A6FE7F61A03009B4D15408F +:10C61C005B0700D0F6E6FBE618000F002038C74099 +:10C62C00202B03D04020C31A99400A43531E9A4131 +:10C63C001000384351E79149F31A0A405707D508BF +:10C64C002A035B05120B5B0D03E680231B041D42C2 +:10C65C0000D1BBE01D000023984624E686488342A7 +:10C66C0000D1DAE6624462458041691840420918FB +:10C67C00C8075208104380464D08520705D00F22B8 +:10C68C001E000240042A00D0CCE542466F07D208B7 +:10C69C0017430D09D4E77848874200D1D5E0382BF1 +:10C6AC0000DCB2E080252D04294200D14CE10023AE +:10C6BC003E009846F7E5012252426244944580417F +:10C6CC0040422D1A90461E002A0200D513E6A9E519 +:10C6DC00531E9A42924152428D1A984604003E00D3 +:10C6EC002B0200D507E69DE504000D00D208C8E634 +:10C6FC00002B00D0E3E0002F3FD1802200245E4BC2 +:10C70C001203A6E56346D31A9A4292414D1B52423C +:10C71C0098460400AD1AEBE662441600664580416B +:10C72C006A1840421218130200D49DE05349730852 +:10C73C000A40D107194357085B0700D1FEE00F23CD +:10C74C000B40042B00D1F9E00B1D98468845AD41F8 +:10C75C006D420223ED195CE663469B1A9C458041B1 +:10C76C006D1A40422D1A98462B020DD443466F0782 +:10C77C00DB081F43ED08012362E74E07D2080400D3 +:10C78C001643CD0870E604000126AFE618000F0032 +:10C79C002038C740202B03D04020C31A99400A43AD +:10C7AC00531E9A41100038431FE61C002E00203CFB +:10C7BC00E640202B05D04024E31A9D4063462B43D2 +:10C7CC009C466446631E9C41344314E70123634436 +:10C7DC00984627E56346D31A9A4292414D1B524222 +:10C7EC00AD1A98462B02CED443466F07DB081F4385 +:10C7FC0004000123ED0823E7002F00D1D7E6040045 +:10C80C000D009446BDE60300D9E5802000040543E5 +:10C81C001F2B6BDC2020C01A804628004646B040F7 +:10C82C006646DE400643B14660464646B040DD40B3 +:10C83C00461EB0414E4649193043804690449045BF +:10C84C00924152423E005518D5E54E07D208164388 +:10C85C00CD0809E663469E189642924169185242E9 +:10C86C008A18130200D561E75707F60801233743EE +:10C87C00D508E5E6FE070000FF070000FFFF7FFF7D +:10C88C00002BE2D06346DE086B071E430B00ED085D +:10C89C00134300D1E8E580231B031D4206D0C808D2 +:10C8AC00184203D10500D60849070E43730FF60052 +:10C8BC00F6085B071E43D7E50D00D208E1E5634699 +:10C8CC00DE086B071E43ED08002F00D1CCE580235A +:10C8DC001B031D42EAD0CF081F42E7D1D6084907F7 +:10C8EC0004003D000E43E1E723006EE618002E0025 +:10C8FC002038C640202B05D04020C31A9D406346EB +:10C90C002B439C466046431E9841304395E72021BB +:10C91C000023091A0EE50023002F00D1BAE50D0003 +:10C92C00904676E547461F4300D140E61D00C446BD +:10C93C0027E60122624490461E0073E4C9087F0773 +:10C94C0002230F4315097BE6531C98460D003E004D +:10C95C0068E4D6084B071E43CD0885E5030057E76E +:10C96C00114BD2082B405F0717435A02120B0123BD +:10C97C006FE43300B8464CE54346DA08330080E5F3 +:10C98C0032420AD0084B04001A40674601235BE48C +:10C99C00013290460D001E0044E4DB0857071F438C +:10C9AC0004000023D5084BE6FFFF7FFFF0B5DE4601 +:10C9BC00454657464E46E0B587B0009201930B03AF +:10C9CC001B0B9B46CA0F4B00040080465B0D02926A +:10C9DC0000D1BFE08F4A934238D05946420FC9006C +:10C9EC000A43802109041143C20090468A4A8946B1 +:10C9FC0092469A44002300240393009E019F3B031C +:10CA0C001B0B7A0030009B46520DFD0F002A00D103 +:10CA1C007FE0804B9A426ED05946730FC9000B438E +:10CA2C008021090419438B467B49F3008C465146FF +:10CA3C0062448A1A92460021029E6E40F6B20F2C76 +:10CA4C0000D9F9E0754AA400125997465A46024398 +:10CA5C00914600D0B6E09A460223904608240393F0 +:10CA6C00CBE72E0000210023002288461B05134330 +:10CA7C00F60733434046190007B0F0BCBB46B2463C +:10CA8C00A946A046F0BDCB464346029D0399022918 +:10CA9C0000D1FAE1032900D1A1E00129E1D0604ADB +:10CAAC00524490464446002C00DC00E25A0704D065 +:10CABC000F221A40042A00D07FE22E00DA085B46CF +:10CACC00DB0106D55946574B802419408B46E400B0 +:10CADC005444554B9C4209DC5B465B071343984618 +:10CAEC005B4664055A02120B630DBFE7002100225E +:10CAFC008846484BBAE75B46009A13434B4A944628 +:10CB0C00E244002B59D10222144300220221934605 +:10CB1C0092E75B46009A134349D05B46002B00D149 +:10CB2C00A4E15846F3F7EEFC030002000B3B1D2773 +:10CB3C00009EFB1A11005846DE400839884033002D +:10CB4C0003439B46009B8B40394952448A46002143 +:10CB5C00924471E75B460343994621D05B46002B18 +:10CB6C0000D171E15846F3F7CDFC0B235B429C4698 +:10CB7C000200844466461D239B1B26001100584668 +:10CB8C00DE400839884033000343994623008B402C +:10CB9C009846284B00249B1A9A46002303932CE7B3 +:10CBAC00002398469A4601330424039325E7012277 +:10CBBC0014430022012193463EE7032303211C4327 +:10CBCC00330039E79A460323D9460C24039314E720 +:10CBDC0000238022984600260E4B120346E7802243 +:10CBEC00594612030A43120398462E00094B120BA6 +:10CBFC003CE7802249461203114202D059461142A9 +:10CC0C00F0D080224B4612031A431203029E014BB2 +:10CC1C00120B2BE7FF07000001FCFFFF6CF600086E +:10CC2C00FF030000FFFFFFFEFE07000001F8FFFFFF +:10CC3C00F30300000DFCFFFFCB4500D2FAE000D15E +:10CC4C00F5E0012252429446002244464846904662 +:10CC5C00E2445A461F0E12021B020293130C994611 +:10CC6C0017433B041B0C49460093F3F7C3FA009A95 +:10CC7C000B044243210C050019438A4207D9C919F8 +:10CC8C00013D8F4203D88A4201D9851EC919881AE1 +:10CC9C004946F3F7AFFA009A240442430904240CE2 +:10CCAC0003000C43A24204D9E419013BA74200D86B +:10CCBC00F7E00299A01A2D040C0C09041D43090C71 +:10CCCC002A0C2B04AB460D001B0C5D4305916343F2 +:10CCDC005143049462435B182C0CE318994203D91A +:10CCEC00802149028C466244190C2D041B042D0C26 +:10CCFC008A185D19904200D287E000D182E0434649 +:10CD0C005D1BA8459B41801A5B42C01AB14B534432 +:10CD1C0098461C00874200D10CE14946F3F76AFAA9 +:10CD2C000200009B03905A430B04290C19438A42BE +:10CD3C000AD90300C919013B03938F4204D88A42D4 +:10CD4C0002D9831E0393C919881A4946F3F752FA7C +:10CD5C000A00120494462A0465460099120C4143B9 +:10CD6C0003002A43914207D9D2190138974203D8BC +:10CD7C00914201D9981ED219039B521A1B040343EA +:10CD8C000598190C05008C461904090C4D4389466D +:10CD9C00614600956546484304994D43AC464D4663 +:10CDAC004D432918009D2D0CA9464944884203D9AE +:10CDBC00802040028146CC44009D080C2D040904BF +:10CDCC002D0C60444D1982420FD30BD0012213431A +:10CDDC00814A92456CDB1A1D9A429B415B42D208F8 +:10CDEC009B446CE6002D00D193E0591EBA188C467A +:10CDFC00BA4200D285E0824200D2C7E000D1D5E031 +:10CE0C000B00E3E7A84500D379E75B46591E029B6C +:10CE1C009C46E0441C0098459B415B42DB19C018C2 +:10CE2C00874238D2824278D875D08B4667E7434523 +:10CE3C0000D906E74A46D407500842465208144324 +:10CE4C004246D207904604E7F3F75CFB15239C4659 +:10CE5C0084440200634620321C2B00DC8AE623004B +:10CE6C000838834099460023984692E6F3F74AFB2C +:10CE7C0003000200153320321C2B00DC57E600990E +:10CE8C000838814000238B465EE600212E000022EC +:10CE9C008846524BEAE58742C7D14445C2D98B46F6 +:10CEAC002DE7A24200D804E7831EE41901E72E0007 +:10CEBC0001224146521A382A00DDD3E51F2A3FDCF5 +:10CECC0047481C005044594683408140D440581E6A +:10CEDC00834121430B435946D1400A00590709D0DD +:10CEEC000F211940042905D0191D99429B415B4221 +:10CEFC00D2180B00110268D50021012300228846AC +:10CF0C00B4E50B00824200D060E7029A954200D053 +:10CF1C005CE73500C6E5454587D902235B429C4654 +:10CF2C00029BE3449C46E04498459B415B42DB19E1 +:10CF3C00C018E4E6002B36DD012300229B44BEE53D +:10CF4C001F2140464942091A5846C8400100202A70 +:10CF5C0004D05846234A5244904003435A1E9341EE +:10CF6C0007200B43010000221940184209D00F2161 +:10CF7C00194004291FD0181D9842894103004942C9 +:10CF8C004907DB080B43984600236FE50299023BE7 +:10CF9C0049008C4602998C4589414942C91952185D +:10CFAC0061460291AEE701235B4281E70299A942F7 +:10CFBC00ECD36346A9E70021E3E71A1D9A429B4193 +:10CFCC005B422E00D2089B4479E551075202120BAA +:10CFDC00D7E7C046FF03000002FCFFFFFF0700007D +:10CFEC001E0400003E040000F0B55746DE464E46D7 +:10CFFC004546E0B50D000400E80F83460903D80F41 +:10D00C00090B82461A488C461F0369005E00490DC5 +:10D01C003F0B760D81421AD0864211D00120B142CD +:10D02C000FD1BC450DD1A2420BD1D3451ED0002946 +:10D03C0007D1614611430A00531E9A41100000E0CB +:10D04C000120F0BCBB46B246A946A046F0BD01206B +:10D05C008E42F6D1614639430F0017432743F0D176 +:10D06C005B465246981A431E9841EAE70020E8E7CF +:10D07C00FF070000F0B557464E464546DE46E0B584 +:10D08C000D000E034900490D8A46DF0FE90FBC461F +:10D09C0083B02F4F0400804601915800190391462C +:10D0AC00360B090B400DBA451DD0B8420DD0574672 +:10D0BC00002F2AD13443002824D10A4336D0002C27 +:10D0CC0041D163465800013815E0114338D153461D +:10D0DC00002B01D12643F4D0019B634507D1019B62 +:10D0EC005800013807E026432AD1504521D00120B1 +:10D0FC00019B5F42384303B0F0BCBB46B246A94625 +:10D10C00A046F0BD002CDCD0E6E70028EFD0019B58 +:10D11C006345ECD18245EADCE1DB8E42E7D8DED117 +:10D12C00C845E4D80020C845E5D2D8E7002CE2D0A9 +:10D13C00DDE7114304D1019B6345D8D10020DAE728 +:10D14C0002204042D7E7019B6345E6D0CFE7C046BB +:10D15C00FF070000F0B557464E464546DE46E0B5A3 +:10D16C000D000E034900490D8A46DF0FE90FBC463E +:10D17C0083B02E4F0400804601915800190391464C +:10D18C00360B090B400DBA451ED0B8420DD0574690 +:10D19C00002F27D13443002833D10A4334D0002C3C +:10D1AC0040D163465800013815E0114312D1534663 +:10D1BC00002B01D12643F4D0019B63451DD00120E7 +:10D1CC00019B5F42384306E0264303D15045F6D11C +:10D1DC0011431CD0022003B0F0BCBB46B246A9469A +:10D1EC00A046F0BD0028EAD0019B6345E7D18245FB +:10D1FC00E5DC02DB8E42E2D80ED0019B58000138F0 +:10D20C00E9E7002CCDD0D7E7002CE4D0D7E7019B81 +:10D21C0000206345DFD0D2E7C845D0D80020C845F0 +:10D22C00D9D2EAE7019B6345E4D0C8E7FF070000C9 +:10D23C00F0B557464E464546DE46E0B51F000B039B +:10D24C001B0B16009846CA0F4B000400924685B083 +:10D25C005B0D00D1C2E1CC4A934200D128E141469A +:10D26C00420FC9000A43802109041143C2009146B0 +:10D27C00C64A884693469B440023002501933C03F1 +:10D28C007A00FB0F3000240B520D009300D185E186 +:10D29C00BD4B9A4200D160E1BC4B9C466244934426 +:10D2AC000A2D00DD14E1730FE4001C4380231B04E2 +:10D2BC002343F0005246009900264A409246022D24 +:10D2CC0011DD0122AA40A6211400C9000C400A421B +:10D2DC0000D0FDE0902189000A4200D0D4E18821E1 +:10D2EC00114200D0EFE049464A460904140C090CDF +:10D2FC00020C0F0015000004000C65434743019518 +:10D30C00B9462F000D0006005543AC464D4666430A +:10D31C002D0CB4446544AE4205D93E0080277F02F3 +:10D32C00BC46664401964F463F043F0C2E0C2D0420 +:10D33C00ED1902951D0C1B041B0C00951D001F0004 +:10D34C0065434F43AC46009D69436C433D0CA94675 +:10D35C00614449448C4503D980256D02AC46644434 +:10D36C003F040D0C3F0C0904C919AC467518039504 +:10D37C0045462E04360C2F0C350045437843804629 +:10D38C0038006444AC462D0CA946504372434244C9 +:10D39C004A44904503D980256D02A8464044150C9B +:10D3AC00A84665462D042D0CAC4635005D43120491 +:10D3BC006244AC467B43009D404498462B006E4330 +:10D3CC0065467B4346442D0CAD191F000093A845C0 +:10D3DC0004D980235B02984647440097039B019E27 +:10D3EC0098462B044644984663468E4289411B045A +:10D3FC001B0C4344B61849421B195F1896429241C4 +:10D40C00BC465242804691468C458941A3429B4181 +:10D41C00E044C14449425B42914592410B438045F3 +:10D42C0089412D0C494252420A435B199B18009AC0 +:10D43C00029994464A4663445B02D20D1A439046C5 +:10D44C0072020A43511E8A41F60D16434A46520295 +:10D45C001643B146DB0154D44D4A5A44002A00DC31 +:10D46C0018E133005B0715D00F215B4631400429CE +:10D47C0010D04946081D4845894181464942884497 +:10D48C004146C90106D54146424A11408022884690 +:10D49C00D2009A18404B9A4200DD2BE141464B4694 +:10D4AC004C07DB081C4352054B021B0B520D1AE0B8 +:10D4BC0042460243914600D0E0E09B460223904650 +:10D4CC0008250193DBE6009A984692468146019620 +:10D4DC00019B022B00D10DE1032B35D0012B1BD16D +:10D4EC0000220023002412051A435346DB071A437B +:10D4FC002000110005B0F0BCBB46B246A946A046C0 +:10D50C00F0BD01227308324013434246D207134345 +:10D51C00994643465B08984680225B46D2005A44A3 +:10D52C000133002A00DCB6E049464907A8D00F2198 +:10D53C004846014004299CD1A2E70F2D00D1FDE003 +:10D54C00009BA0469A46B146802342461B031343D8 +:10D55C001B034C460C4A1B0BC5E70B4933008C468E +:10D56C002343E344002B77D1022129430A29AFDC62 +:10D57C005046009C60408246002D00D10EE10D000B +:10D58C00002002269DE6C046FF07000001FCFFFFBD +:10D59C00FF030000FFFFFFFEFE07000023003343E4 +:10D5AC004BD0002C00D1BBE02000F2F7ABFF030006 +:10D5BC0002000B3B1D20C31A3000D84011000300A1 +:10D5CC00300008398C408840234359468A1A7849E0 +:10D5DC008B4693440A2D00DC6CE679E74346034303 +:10D5EC00994623D04346002B00D187E04046F2F702 +:10D5FC0089FF0B235B429C46020084441100404689 +:10D60C00083988401D23804660461B1A2000D840EC +:10D61C00030040460343984623008B409946644BD5 +:10D62C0000259B1A9B460023019328E6002398466D +:10D63C009B4601330425019321E6012215430A2D53 +:10D64C0000DD45E7524600994A409246022D00DC27 +:10D65C0046E70020012634E603231D430A2D00DD96 +:10D66C006BE75346009A882153400122AA409A4600 +:10D67C0003262300114200D135E624E79B46032301 +:10D68C0081460C250193FAE500239A468023494AEA +:10D69C001B0328E75B460121891A382900DD1FE7A7 +:10D6AC001F295ADD1F204042821A4046D0402029B3 +:10D6BC0008D0414A9446424663449A4013004A4675 +:10D6CC001A4391464A460721531E9A410C000243C5 +:10D6DC0000231440114209D008311140042960D0B4 +:10D6EC00111D9142A4410A0064426407D2081443FC +:10D6FC000022F8E6002300242E4AF4E6F2F702FF9B +:10D70C0015239C4684440200634620321C2B00DC0B +:10D71C0074E70023994623000838834098467EE737 +:10D72C00F2F7F0FE03000200153320321C2B00DC54 +:10D73C0040E7330008388340002046E78023424608 +:10D74C001B031A4200D1FFE61C4200D0FCE6009AF3 +:10D75C00234392463400174AC5E6184A404694467D +:10D76C004A4663449840CA4010434A469A40531E66 +:10D77C009A4143460243CB40510709D00F21114037 +:10D78C00042905D0111D9142924152429B180A0066 +:10D79C00190208D5012200230024A4E6002300244A +:10D7AC00A1E60024A2E75C075B021B0B9EE7C046C8 +:10D7BC000DFCFFFFFF0700003E0400001E040000EC +:10D7CC00F0B54E464546DE465746E0B583B0009070 +:10D7DC0001910D034E000199760DCC0F690A009D45 +:10D7EC006D0F0D43009900920193C8001903019B22 +:10D7FC00CB4A5B005B0D9946019B8346DB0F984639 +:10D80C004B0A0099490F1943009BDB009C469A4632 +:10D81C00914500D173E0012347465F404B46B84623 +:10D82C00F31ABC4216D0002B00DC9AE24F46002FB4 +:10D83C0000D082E067460F4300D13AE15F1E012B16 +:10D84C0000D1A4E2934200D12EE1382F00DD43E257 +:10D85C003B003EE1002B00DCD7E24F46002F00D00E +:10D86C00F8E067460F4300D123E15F1E012B00D186 +:10D87C0057E2934200D117E1382F00DC04E38022F9 +:10D88C001204154200D1AAE31E0015000027A44B78 +:10D89C0001369E4200D103E10122A24B3A401D40C9 +:10D8AC0079081143EA070A436D08530709D00F237F +:10D8BC001340042B05D017003A1DBA42BF417F42DA +:10D8CC00ED192B0200D477E3954901368E4200D135 +:10D8DC00E6E0944973050D405B0D6907D2086D02B3 +:10D8EC000A432D0B1B052B43E4072343100019009F +:10D8FC0003B0F0BCBB46B246A946A046F0BD8A4B6D +:10D90C00F21863460B434CD0444550D0002A6CD0DF +:10D91C00002E00D17DE1634644464F07DA081743D9 +:10D92C00C8083A00024300D1CDE080252D03054301 +:10D93C002D033A007A4B2D0BD4E7964200D1B3E07D +:10D94C00382B00DCC2E0471EB842804140422D1A01 +:10D95C002B02B1D50127754D7F422800F2F7D2FD7D +:10D96C000838202339001A1A8540D14087402943B2 +:10D97C00B04200DA45E1801B01301B1A3D009F408C +:10D98C00C5407A1E97410A009A402F433A43C14042 +:10D99C0013000D0000260B4300D086E70022002563 +:10D9AC00A0E7474601235F40B8464445AED1002A64 +:10D9BC0000D1EFE0002E00D088E14B462A00024354 +:10D9CC0000D1A0E25A1E012B00D1B7E2544EB34253 +:10D9DC0000D17BE1382A00DC12E380252D0429429A +:10D9EC0000D112E31E00002751E7514A731C134269 +:10D9FC0000D0F4E062462B000A430343002E00D013 +:10DA0C0074E1002B00D123E2002A00D1E0E0634650 +:10DA1C00C71AB842924180266B1A52429B1A36049E +:10DA2C00334200D1C1E26346181A844592414D1B22 +:10DA3C005242AD1A0124020043462A431C40002ADC +:10DA4C0000D1DBE0354200D1E9E2364B02001D404B +:10DA5C00012342E7964227D0382B00DD11E18022CA +:10DA6C00120411431F2B00DDA1E120220F00D21A5A +:10DA7C00914697406246DA401743B84662464F4695 +:10DA8C00BA40D940571EBA4147466D1817433F1844 +:10DA9C008742804140422D182B0200D5F7E634E036 +:10DAAC003300002500221DE7C0086F070743E80874 +:10DABC0037E7C7086A071743194AE808934200D1A9 +:10DACC002FE73A00D8E0164B00250BE78022120412 +:10DADC0011431F2B00DDB7E020220F00D21A914614 +:10DAEC0097406246DA401743B84662464F46BA4002 +:10DAFC00D940571EBA4147466D1A1743C71BB84247 +:10DB0C00804140422D1A2B0216D47B0700D179E2BA +:10DB1C000F233B40042B00D0CEE63300FF08C9E7AF +:10DB2C00FF070000FFFF7FFF01F8FFFFFFFF7F00F3 +:10DB3C00FE070000444601266D026D0A002D00D040 +:10DB4C000BE73800F2F7DEFC030018301F2800DC6E +:10DB5C0007E73900083B9940864200DD87E0831BCC +:10DB6C00581C1F2800DC14E20A001F3BDA40202856 +:10DB7C0005D040231B1A99404B1E99410A43002A99 +:10DB8C003CD00026530700D091E617003500330037 +:10DB9C00FF088FE7CA4A731C13427AD12B00034348 +:10DBAC00002E00D092E162460A43002B00D1F4E132 +:10DBBC00002A0DD06346C718874280416D18404239 +:10DBCC002D182B0200D512E23A00BB462A4315D081 +:10DBDC005B466A07DF083A430023E8084CE06346DB +:10DBEC00C71AB84292416B1A52429B1A1A0200D5BC +:10DBFC0087E03A001D001A43A0D100240023002521 +:10DC0C0070E6B04D361A0D407B0700D080E733002C +:10DC1C0084E74B462A0002437ED05A1E012B00D1CA +:10DC2C001FE1A94CA34200D198E1382A00DC9CE109 +:10DC3C006246571EBC45924152428D1A44461E0004 +:10DC4C002A0200D586E637E61A000F00203AD740A4 +:10DC5C00B846202B05D04022D31A994063460B437B +:10DC6C009A4657467B1E9F4143461F4346E7954ABB +:10DC7C00331A11404A07C80805035B052D0B5B0DD1 +:10DC8C0030E680231B041D4200D1FBE01D00002761 +:10DC9C00FDE58D4A934200D103E762468218824229 +:10DCAC008041691840420818C707520817434508B5 +:10DCBC00520700D4AEE10F221E003A40042A00D0D5 +:10DCCC00FAE5FF086A073A430009D5E763464F07B0 +:10DCDC00DA081743C80824E6471EB8428041404280 +:10DCEC002D1A1E002A0200D534E6E5E5002B00D0E3 +:10DCFC000DE1002A00D069E180250024724B2D0330 +:10DD0C00F0E563461F1ABC459241012443464D1B66 +:10DD1C005242AD1A1C4011E7624644460D00D7082A +:10DD2C00C8E66346C6188642804169184042091805 +:10DD3C000B0200D40CE1634B70081940CB07034372 +:10DD4C004A08400700D43BE10F201840042800D1BA +:10DD5C0036E11F1D9F42AD416D420223AD18FF08F5 +:10DD6C00A8E6002B00D140E64B469B1B002E00D1B1 +:10DD7C0050E7382B2EDD63465F1EBC459241524264 +:10DD8C008D1A44464E462B0200D5E3E594E56346D6 +:10DD9C00C71AB84280416D1A40422D1A2B0200D589 +:10DDAC00C9E66A07FF0801233A43E80864E71A004A +:10DDBC000F00203AD740B846202B05D04022D31A6A +:10DDCC00994063460B439A4657467B1E9F414346F8 +:10DDDC001F435CE680223C00120415431F2B26DCFB +:10DDEC0020222F00D21A060090409740DE40421E9F +:10DDFC009041DD4037430743491B6346DF1BBC455D +:10DE0C00924152424E468D1A7DE6002B00D1C1E65E +:10DE1C004B469B1B002E00D1D0E5382B36DD8025E0 +:10DE2C002D04294200D1DDE04E4600272FE51A00D3 +:10DE3C002E00203AD640202B05D04022D31A9D40EC +:10DE4C002F000743BB465F467B1E9F413743D4E7F9 +:10DE5C00002A00D1D1E6012443460D00E3461C40C4 +:10DE6C00B6E663461F1ABC4592414D1B5242AD1A91 +:10DE7C002B0200D55EE66A07FF08444601233A43AD +:10DE8C00E808F9E6471C17E53B00EBE58022120495 +:10DE9C0015431F2B6CDC20222F00D21A0600904059 +:10DEAC009740DE40421E9041DD40374307434919FD +:10DEBC0067446745924152424E465518ECE5C046C0 +:10DECC00FE070000FFFF7FFFFF070000002B00D1C3 +:10DEDC00FCE6C7086B071F436346E8080B4300D1F9 +:10DEEC001FE580231B03184207D0CA081A4204D12D +:10DEFC0063461000DF0849070F437B0FFF00FF0844 +:10DF0C005B071F430DE562460D00D708D2E5C70835 +:10DF1C006B071F43E808002A00D102E580231B038E +:10DF2C001842EAD0CA081A42E7D163460124DF0836 +:10DF3C004346490710000F431C40DEE76044604530 +:10DF4C00924169185242891806000B0200D5F2E67C +:10DF5C004A07F60801233243C8088DE66346DF08FA +:10DF6C004B0744461F43C808DBE44446130035E71F +:10DF7C001A002E00203AD640202B05D04022D31A6E +:10DF8C009D402F000743BB465F467B1E9F41374396 +:10DF9C008EE7202300271B1AF5E40023002A00D16A +:10DFAC0092E567460D00FF0884E53A001A4300D15C +:10DFBC0023E61D00BB460BE617003300FF0879E58E +:10DFCC00DB0852071A430809022355E6634601246D +:10DFDC00DA0843464F071743C8081C40A1E41E004B +:10DFEC00471C69E467460D004E46013764E40F4B4D +:10DFFC00FF081D406A076D0201233A432D0B71E4A3 +:10E00C00130046E73300FF0854E567460D001E0079 +:10E01C00013751E46A07FF083A4300092CE6C008AF +:10E02C006A0702430023E80826E6C046FFFF7FFF8D +:10E03C000B00020070B5164D0C0382B04900002095 +:10E04C0000920193240B490DDE0FA94204DD114807 +:10E05C00814203DD104BF01802B070BD80204003EC +:10E06C0020430E4C641A1F2C08DD0D4B5B1AD84054 +:10E07C0003005842002EEFD11800EDE7094B009A2F +:10E08C009C46030061448B40E2401343F1E7C046D9 +:10E09C00FE0300001D040000FFFFFF7F330400009F +:10E0AC0013040000EDFBFFFF70B5002816D0C3175A +:10E0BC00C5185D40C40F2800F2F724FA104B1B1A48 +:10E0CC005B055B0D0A2814DC02002E00153296400D +:10E0DC000B22121AD5402D032D0B03E00024002334 +:10E0EC00002500261B052B43E407234330001900B1 +:10E0FC0070BD0B3885402D0300262D0BF2E7C04672 +:10E10C001E04000010B5041E10D0F2F7FBF90E4BE4 +:10E11C001B1A5B055B0D0A280FDC0B222100121A5F +:10E12C00D14015300A038440120B01E00023002279 +:10E13C001B0513432000190010BD22000B38824030 +:10E14C0012030024120BF3E71E04000070B5420208 +:10E15C004300C40FFE201B0E591C550A08420CD05C +:10E16C00E02189008C466D07120B63441B05134399 +:10E17C00E40723432800190070BD002B14D1002D97 +:10E18C001BD02800F2F7BEF90A281CDC0B232A004E +:10E19C001B1ADA40030015339D400E4B12031B1A59 +:10E1AC005B05120B5B0DE1E7002D09D0130B8022F0 +:10E1BC0012031A436D07084BD8E700230022D5E75A +:10E1CC000022054BD2E703002A000B3B9A400025A6 +:10E1DC00E3E7C04689030000FF070000F0B54B00E1 +:10E1EC000F035B0D3D4C450F83B07F0A5E1C2F4324 +:10E1FC0000900191CA0FC50026420BD038495C181B +:10E20C00FE2C12DDFF200023C0051843D20710435B +:10E21C0003B0F0BD00203D43002BF5D0002DF1D014 +:10E22C008023DB03FF203B43EEE7002C0CDD009B3F +:10E23C00FF009B01581E8341690F3B430B43590759 +:10E24C0025D1DB08E0B2DFE7210017312EDB80217E +:10E25C001E2009043943001B1F282ADD02267642A2 +:10E26C00341B0E00E6403400202804D01D488446A0 +:10E27C00634499400D432B00591E8B4123430721C6 +:10E28C00180008400B421FD19B015B0ABCE70F2111 +:10E29C001940042903D19B015B0AE0B2B4E70433B3 +:10E2AC005901F8D501340023E0B2ADE7002000237A +:10E2BC00AAE70D4C1C192B00A540C340A140681EB9 +:10E2CC00854129430B43DAE70F2100241940042927 +:10E2DC00E5D19B0120005B0A96E7C046FE070000D3 +:10E2EC0080FCFFFFA2FCFFFF82FCFFFF10B5FBF7D9 +:10E2FC002EF90000F8B5C046F8BC08BC9E46704725 +:0CE30C00F8B5C046F8BC08BC9E4670473F +:10E318003031323334353637383961626364656693 +:10E32800000D0A3E3E3E2025730D0A00436F6E66BF +:10E3380069677572696E67206D6F64656D20736CAF +:10E3480065657020706172616D65746572732E2EDB +:10E358002E0041542B4353434C4B3D300041542B2A +:10E3680057414B4554494D3D2564004154265700BB +:10E378004D6F64656D20736C65657020636F6E66A4 +:10E38800696720636F6D706C6574650057616B69B0 +:10E398006E67206D6F64656D2E2E2E0041540057F8 +:10E3A800616B652073657175656E63652073656E55 +:10E3B8007400456E61626C696E67206D6F64656D8F +:10E3C800206175746F2D736C6565702E2E2E00415B +:10E3D800542B4353434C4B3D320057616974696E6B +:10E3E800672025647320666F72206D6F64656D20E9 +:10E3F800746F20656E74657220736C6565702E2E5F +:10E408002E0D0A004D6F64656D2073686F756C641E +:10E41800206E6F7720626520736C656570696E6722 +:10E4280000722C77613D25732C77643D2530336469 +:10E438002C776E3D25732C77783D25733B0025732B +:10E44800257325730070617373776F72640062615E +:10E458006C6F6B2D77696E6473746174696F6E008D +:10E4680041542B48545450504152413D2255524C2E +:10E47800222C22687474703A2F2F7777772E776959 +:10E488006E64677572752E637A2F75706C6F616430 +:10E498002F6170692E7068703F7569643D25732619 +:10E4A80073616C743D257326686173683D25732616 +:10E4B800696E74657276616C3D25642677696E6451 +:10E4C8005F6176673D25732677696E645F6D617855 +:10E4D8003D25732677696E645F6D696E3D257326E9 +:10E4E80077696E645F646972656374696F6E3D25F0 +:10E4F8006422000D0A2121212053544154452054FF +:10E50800494D454F5554202D2041626F7274696EF4 +:10E5180067206379636C65202121210041542B48D1 +:10E528005454505445524D000D0A2A2A2A20504569 +:10E5380052494F444943204D4F44454D205245537D +:10E548004554202A2A2A0041542B4346554E3D3132 +:10E558002C3100256C78256C78000D0A3D3D3D3D39 +:10E568003D3D3D3D3D3D2055504C4F414420435994 +:10E57800434C45205354415254203D3D3D3D3D3D83 +:10E588003D3D3D3D0041542B4353510041542B43E5 +:10E598005245473F0041542B43455245473F0041B0 +:10E5A800542B43474154543F0041542B4347434F56 +:10E5B8004E545244503D310041542B43434C4B3F41 +:10E5C8000041542B434750414444523D310041548B +:10E5D8002B43474154543D310063656C636F6D3480 +:10E5E800670041542B53415042523D332C312C2269 +:10E5F80041504E222C222573220041542B53415066 +:10E6080042523D312C310041542B53415042523D2E +:10E61800322C31000D0A2D2D2D2057696E644E6560 +:10E628007264205754502055706C6F6164202D2DF2 +:10E638002D0041542B48545450494E4954004154DC +:10E648002B48545450504152413D22434944222CB6 +:10E65800310041542B48545450504152413D2243BB +:10E668004F4E54454E54222C22746578742F706C8A +:10E6780061696E220041542B485454505041524114 +:10E688003D2255524C222C22687474703A2F2F77F1 +:10E6980074702E77696E646E6572642E6E65742F61 +:10E6A800706F7374220041542B48545450444154A1 +:10E6B800413D25642C3130303030006432396132CC +:10E6C8003262333334646166303839006B3D257308 +:10E6D8003B003E3E3E2057545020504F5354203C60 +:10E6E8003C3C0041542B48545450414354494F4EEC +:10E6F8003D31003E3E3E2057545020524541442073 +:10E708003C3C3C0041542B48545450524541440031 +:10E718000D0A2D2D2D2057696E6467757275205569 +:10E72800706C6F6164202D2D2D0041542B4854547A +:10E7380050414354494F4E3D30000D0A3D3D3D3D4B +:10E748003D3D3D3D3D3D204359434C4520256420FA +:10E75800434F4D504C455445203D3D3D3D3D3D3D8D +:10E768003D3D3D0D0A004C534920636C6F636B209F +:10E778006661696C6564202D207761746368646FD5 +:10E78800672064697361626C6564005761746368CB +:10E79800646F6720656E61626C6564202825647308 +:10E7A8002074696D656F7574290D0A000D0A3D3D69 +:10E7B8003D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D81 +:10E7C8003D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D71 +:10E7D8003D3D3D3D3D3D00202057696E644E6572CC +:10E7E8006420436F7265203447202D2041697237B9 +:10E7F8003830450020204475616C2055706C6F617D +:10E80800643A20575450202B2057696E64677572FC +:10E81800750020204C4F5720504F574552204D4FE0 +:10E828004445005265706F727420696E7465727623 +:10E83800616C3A202564206D696E757465730D0AE4 +:10E84800004D6F64656D207265736574206576652B +:10E8580072793A202564206379636C65730D0A0028 +:10E868004D6F64656D20626175643A2025640D0AF8 +:10E878000056616E6520706F6C61726974792069E9 +:10E888006E76657273696F6E20454E41424C454401 +:10E898002028313830C2B0290057616974696E6721 +:10E8A80020666F72206D6F64656D20626F6F742EC5 +:10E8B8002E2E00496E697469616C697A696E6720E9 +:10E8C8006D6F64656D2E2E2E0053657474696E67C6 +:10E8D800206D6F64656D20746F20256420626175FA +:10E8E800642E2E2E0D0A0041542B4950523D2564AA +:10E8F8000D0A004D6F64656D206261756420736553 +:10E908007420746F2025642028617373756D6564A5 +:10E91800204F4B290D0A0053797374656D20726579 +:10E92800616479212046697273742075706C6F6117 +:10E938006420696E202564207365636F6E64730DAF +:10E948000A000D0A3E3E3E2055504C4F4144204996 +:10E958004E54455256414C20455850495245442042 +:10E968003C3C3C002D256C642E25302A6C64002D1F +:10E97800256C64005245454E54206D616C6C6F6384 +:10E9880020737563636565646564002F55736572EC +:10E99800732F696C672F616374696F6E732D72755D +:10E9A8006E6E6572732F787061636B2D6465762D5A +:10E9B800746F6F6C732F5F776F726B2F61726D2D31 +:10E9C8006E6F6E652D656162692D6763632D787062 +:10E9D80061636B2F61726D2D6E6F6E652D6561625F +:10E9E800692D6763632D787061636B2F6275696C3D +:10E9F800642D6173736574732F6275696C642F6419 +:10EA0800617277696E2D61726D36342F736F75720E +:10EA18006365732F6E65776C69622D6379677769B3 +:10EA28006E2F6E65776C69622F6C6962632F7374E1 +:10EA3800646C69622F72616E642E63002C206675A7 +:10EA48006E6374696F6E3A200061737365727469DE +:10EA58006F6E2022257322206661696C65643A20F6 +:10EA680066696C6520222573222C206C696E6520EE +:10EA78002564257325730A00232D302B2000686C2C +:10EA88004C006566674546470030313233343536C9 +:10EA980037383941424344454600000078A46AD7D4 +:10EAA80056B7C7E8DB702024EECEBDC1AF0F7CF5AA +:10EAB8002AC68747134630A8019546FDD89880692D +:10EAC800AFF7448BB15BFFFFBED75C892211906B17 +:10EAD800937198FD8E4379A62108B44962251EF6E4 +:10EAE80040B340C0515A5E26AAC7B6E95D102FD67A +:10EAF8005314440281E6A1D8C8FBD3E7E6CDE1214F +:10EB0800D60737C3870DD5F4ED145A4505E9E3A9AF +:10EB1800F8A3EFFCD9026F678A4C2A8D4239FAFFB5 +:10EB280081F6718722619D6D0C38E5FD44EABEA42B +:10EB3800A9CFDE4B604BBBF670BCBFBEC67E9B2820 +:10EB4800FA27A1EA8530EFD4051D880439D0D4D935 +:10EB5800E599DBE6F87CA21F6556ACC4442229F48B +:10EB680097FF2A43A72394AB39A093FCC3595B654D +:10EB780092CC0C8F7DF4EFFFD15D84854F7EA86F1A +:10EB8800E0E62CFE144301A3A111084E827E53F740 +:10EB980035F23ABDBBD2D72A91D386EB07000000E5 +:10EBA8000C00000011000000160000000700000023 +:10EBB8000C00000011000000160000000700000013 +:10EBC8000C00000011000000160000000700000003 +:10EBD8000C000000110000001600000005000000F5 +:10EBE800090000000E0000001400000005000000ED +:10EBF800090000000E0000001400000005000000DD +:10EC0800090000000E0000001400000005000000CC +:10EC1800090000000E0000001400000004000000BD +:10EC28000B000000100000001700000004000000A6 +:10EC38000B00000010000000170000000400000096 +:10EC48000B00000010000000170000000400000086 +:10EC58000B00000010000000170000000600000074 +:10EC68000A0000000F000000150000000600000068 +:10EC78000A0000000F000000150000000600000058 +:10EC88000A0000000F000000150000000600000048 +:10EC98000A0000000F00000015000000010002003B +:10ECA8000400060008000A000C00100020004000C4 +:10ECB800800000010201040302040810040040005F +:10ECC8000004000001000000020000000400000031 +:10ECD80008000000100000002000000040000000B4 +:10ECE8008000000000010000000200000004000095 +:10ECF8000008000000100000002000000040000094 +:10ED0800008000000000000000000000000000007B +:10ED180000000000010000000200000003000000E5 +:10ED280004000000000000000000000000000000D7 +:10ED380000000000000000000000000000000000CB +:10ED480000000000010000000200000003000000B5 +:10ED58000400000006000000070000000800000092 +:10ED68000900000000000000000000002B6F0008F0 +:10ED78006B6F0008E16C0008EB700008E56C000898 +:10ED8800ED6C0008076D0008ED7F00080F80000893 +:10ED9800A086010080380100C0D4010000007A0D6F +:10EDA800FA005C12A00F800214000000801A06000E +:10EDB80000E2040000530700000084036400140507 +:10EDC8005802FA006400000040420F0000350C00B1 +:10EDD800804F12000000C2013200F40104013C001F +:10EDE8006400000000000000004400401201000020 +:10EDF8000600000000800040120600000B00000022 +:10EE080000380140120100001400000000380140E1 +:10EE180012040000FFFFFFFF0000000000000000D8 +:10EE28000100000000440040120100000C00000036 +:10EE3800003801401201000011000000008000406D +:10EE48001206000013000000003801401204000000 +:10EE5800FFFFFFFF000000000000000003000000AB +:10EE6800008000401206000003010000004400403A +:10EE7800120100000A3000000038014012010000B1 +:10EE88000F000000004400401201000017000000BD +:10EE98000038014012000000FFFFFFFF00000000E3 +:10EEA8000000000002000000008000401206000080 +:10EEB8000201000000440040120100000930000077 +:10EEC80000380140120100000E000000004400401C +:10EED8001201000016000000003801401200000076 +:10EEE800FFFFFFFF0000000000000000000000001E +:10EEF80000000040128200000100000000000040F5 +:10EF0800120201000200000000000040128201000D +:10EF1800030000000000004012020200040000008C +:10EF2800002000401284000005000000000000409E +:10EF38001282000006000000000400401281000058 +:10EF4800060100000044014012850000070000008F +:10EF5800002C01401282100007010000000400404C +:10EF68001201010007020000002000401284000086 +:10EF78000703000000480140128500000800000057 +:10EF8800002C01401282000009300000002C0140D2 +:10EF9800120201000A300000002C01401282010018 +:10EFA8000B000000002C0140120202000F000000BC +:10EFB800000000401282000010000000002C0140F8 +:10EFC800120211001001000000040040128101002B +:10EFD80011000000002C01401282110011010000F4 +:10EFE800000400401201020011020000002000404D +:10EFF8001280000013000000002C014012010100E3 +:10F00800130100000000004012020100140000007B +:10F0180000040040128100001500000000040040B8 +:10F028001201010016000000002C014012810100AD +:10F038001601000000440140128210001700000071 +:10F0480000480140128210001800000000440140EE +:10F0580012820000190000000048014012820000DE +:10F06800FFFFFFFF00000000000000000930000063 +:10F07800005400400A0600000B0000000058004041 +:10F088000A06000016000000005400400A060000AE +:10F0980018000000005400400A060000FFFFFFFFB0 +:10F0A80000000000000000000A300000005400408A +:10F0B8000A0600000C000000005800400A06000084 +:10F0C80017000000005400400A0600001900000064 +:10F0D800005400400A060000FFFFFFFF0000000088 +:10F0E8000000000000000000010000000200000015 +:10F0F80003000000040000000500000006000000F6 +:10F1080007000000090000000A0000000B000000D2 +:10F118000C0000000E0000000F00000010000000AE +:10F1280015000000000000000100000002000000BF +:10F1380003000000040000000500000006000000B5 +:10F1480007000000080000000B0000000C00000091 +:10F158000D0000000E0000000F000000100000006D +:10F16800110000001200000013000000140000004D +:10F17800150000001600000017000000180000002D +:10F18800190000002E0000002F00000042000000BF +:10F19800093000000A3000000000001000000000E4 +:10F1A8000010000006000700080000000000000032 +:10F1B80000000000AD7A0008597B00088F7A00082B +:10F1C800E37C00085D7A0008ED7E0008737A000889 +:10F1D800ED7F00080F80000800000080DB0F494029 +:10F1E800DB0F49C0DB0F49BFE4CB1640E4CB16C0A8 +:10F1F8006042A20D0000803F000FC93F000F494048 +:10F2080000CB9640000FC9400053FB4000CB16418D +:10F2180000ED2F41000F49410031624100537B410D +:10F22800003A8A4100CB9641005CA34100EDAF4112 +:10F23800007EBC41000FC94100A0D5410031E24128 +:10F2480000C2EE410053FB4100F20342003A0A4279 +:10F258000083104200CB164200141D42005C23427A +:10F2680000A5294200ED2F4200363642007E3C427E +:10F2780000C74242000F4942A2000000F900000006 +:10F28800830000006E0000004E00000044000000F3 +:10F298001500000029000000FC0000002700000005 +:10F2A80057000000D1000000F50000003400000005 +:10F2B800DD000000C0000000DB000000620000006C +:10F2C80095000000990000003C0000004300000089 +:10F2D8009000000041000000FE0000005100000006 +:10F2E80063000000AB000000DE000000BB0000006F +:10F2F800C500000061000000B70000002400000005 +:10F308006E0000003A000000420000004D000000BE +:10F31800D2000000E00000000600000049000000E4 +:10F328002E000000EA00000009000000D1000000E3 +:10F33800920000001C000000FE0000001D000000FC +:10F34800EB0000001C000000B100000029000000D4 +:10F35800A70000003E000000E80000008200000056 +:10F3680035000000F50000002E000000BB00000082 +:10F378004400000084000000E90000009C00000038 +:10F388007000000026000000B40000005F000000CC +:10F398007E000000410000003900000091000000DC +:10F3A800D600000039000000830000005300000070 +:10F3B80039000000F40000009C00000084000000F8 +:10F3C8005F0000008B000000BD000000F900000095 +:10F3D800280000003B0000001F000000F8000000AB +:10F3E80097000000FF000000DE000000050000009C +:10F3F800980000000F000000EF0000002F00000040 +:10F40800110000008B0000005A0000000A000000F4 +:10F418006D0000001F0000006D00000036000000B5 +:10F428007E000000CF00000027000000CB00000095 +:10F4380009000000B70000004F000000460000006F +:10F448003F000000660000009E0000005F00000012 +:10F45800EA0000002D0000007500000027000000F1 +:10F46800BA000000C7000000EB000000E500000043 +:10F47800F10000007B0000003D00000007000000D4 +:10F4880039000000F70000008A0000005200000068 +:10F4980092000000EA0000006B000000FB00000082 +:10F4A8005F000000B10000001F0000008D00000098 +:10F4B8005D00000008000000560000000300000086 +:10F4C8003000000046000000FC0000007B00000047 +:10F4D8006B000000AB000000F0000000CF0000004F +:10F4E800BC000000200000009A000000F4000000AA +:10F4F800360000001D000000A9000000E300000025 +:10F5080091000000610000005E000000E6000000BD +:10F518001B000000080000006500000099000000C2 +:10F52800850000005F00000014000000A00000003B +:10F5380068000000400000008D000000FF0000008F +:10F54800D8000000800000004D000000730000009B +:10F55800270000003100000006000000060000003F +:10F568001500000056000000CA00000073000000EB +:10F57800A8000000C900000060000000E2000000D0 +:10F588007B000000C00000008C0000006B00000041 +:10F598006937AC3168212233B40F14336821A233A0 +:10F5A8003863ED3EDA0F493F5E987B3FDA0FC93F7B +:10F5B8000000C93F0000F0390000DA370000A2332C +:10F5C8000000842E0000502B0000C2270000D0222B +:10F5D8000000C41F0000C61B000044170400000000 +:10F5E8000700000009000000BEB60008EAB50008E0 +:10F5F800D4B5000850B60008D4B5000884B6000891 +:10F60800D4B5000850B60008EAB50008EAB5000805 +:10F6180084B6000850B60008C0B50008C0B5000898 +:10F62800C0B500088EB60008EAB50008EAB50008BB +:10F63800D4B500082AB70008D4B5000884B6000875 +:10F64800D4B500082AB70008EAB50008EAB50008EA +:10F6580084B600082AB70008C0B50008C0B500087D +:10F66800C0B5000844CC0008F8CA000870CA0008F1 +:10F678009ACA000870CA0008DCCB000870CA0008E3 +:10F688009ACA0008F8CA0008F8CA0008DCCB0008C3 +:10F698009ACA000892CA000892CA000892CA0008CA +:04F6A800FECB00088D +:08F6AC00C8B8FF7F0100000057 +:10F6B400858200088D050008D1100008855E0008C9 +:08F6C400D57200081D7F00084B +:0CF6CC0065050008895F0008E97200086D +:10F6D8001C300000000000000000000000000000D6 +:10F6E8000001000004000000000000500004005069 +:10F6F80000080050000C0050001400500030024078 +:10F7080000000000000000000000000000000000F1 +:10F7180000000000000000000000000001000000E0 +:10F728000024F400000000000000000000000000B9 +:10F7380000000000000000000000000000000000C1 +:10F7480000000000000000000000000000000000B1 +:10F7580000000000000000000000000000000000A1 +:10F768000000000000000000000000000000000091 +:10F778000000000000000000000000000000000081 +:10F788000000000000000000000000000000000071 +:10F798000000000000000000000000000000000061 +:10F7A8000000000000000000000000000000000051 +:10F7B8000000000000000000000000000000000041 +:10F7C80000000000FFFFFFFFFFFFFFFFFFFFFFFF3D +:10F7D800FFFFFFFF00030000000000000000000022 +:10F7E8000000000000000000000000006813002076 +:10F7F8000000000003000000241200203001002057 +:10F8080000000000241200208C120020F4120020B6 +:10F8180000000000000000000000000000000000E0 +:10F8280000000000000000000000000000000000D0 +:10F8380000000000000000000000000000000000C0 +:0CF84800000000000000000000000000B4 +:04000005080082D598 +:00000001FF diff --git a/examples/air780e/build/air780e-dual.ino.map b/examples/air780e/build/air780e-dual.ino.map new file mode 100644 index 0000000..f41df4e --- /dev/null +++ b/examples/air780e/build/air780e-dual.ino.map @@ -0,0 +1,9281 @@ +Archive member included to satisfy reference by file (symbol) + +/Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o (HardwareSerial::end()) +/Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o (Print::print(char const*)) +/Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o (Stream::readBytes(char*, unsigned int)) +/Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o (attachInterrupt(unsigned long, std::function, unsigned long)) +/Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o (randomSeed(unsigned long)) +/Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) (String::String(char const*)) +/Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o (dtostrf) +/Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(itoa.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) (ltoa) +/Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(main.cpp.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o (main) +/Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(pins_arduino.c.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o (pinNametoDigitalPin) +/Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) + (Reset_Handler) +/Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o (pinMode) +/Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_time.c.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o (millis) +/Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WSerial.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(main.cpp.o) (serialEventRun()) +/Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(board.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(main.cpp.o) (init) +/Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(hooks.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_time.c.o) (yield) +/Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) (g_anOutputPinConfigured) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-isspace.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) (isspace) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atexit.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o (atexit) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atof.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) (atof) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atol.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) (atol) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-calloc.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/MD5.cpp.o (calloc) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-callocr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-calloc.o) (_calloc_r) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-tolower.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) (tolower) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-toupper.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) (toupper) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-exit.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o (exit) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-malloc.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/MD5.cpp.o (malloc) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-callocr.o) (_malloc_r) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-snprintf.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o (snprintf) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mlock.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o) (__malloc_lock) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sprintf.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o (sprintf) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-rand.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) (srand) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-realloc.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o (realloc) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-exit.o) (__stdio_exit_handler) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vdprintf.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) (vdprintf) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reallocr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-realloc.o) (_realloc_r) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atof.o) (strtod) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtol.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atol.o) (_strtol_r) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fwalk.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) (_fwalk_sglue) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vasnprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vdprintf.o) (_vasnprintf_r) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memmove.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) (memmove) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memset.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o (memset) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strcat.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) (strcat) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strchr.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) (strchr) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strncmp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) (strncmp) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strncpy.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) (strncpy) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strrchr.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) (strrchr) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strstr.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) (strstr) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sbrkr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o) (_sbrk_r) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-writer.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vdprintf.o) (_write_r) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-errno.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) (__errno) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-init.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o (__libc_init_array) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fini.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o (__libc_fini_array) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) (__retarget_lock_init_recursive) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) (__global_locale) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reent.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o (errno) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-impure.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-calloc.o) (_impure_ptr) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strcmp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) (strcmp) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strcpy.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o (strcpy) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memcpy-stub.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/MD5.cpp.o (memcpy) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strlen.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/MD5.cpp.o (strlen) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-ctype_.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-isspace.o) (_ctype_) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__atexit.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atexit.o) (__register_exitproc) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libm_a-s_nan.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) (nan) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libm_a-sf_nan.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) (nanf) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__call_atexit.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__atexit.o) (__call_exitprocs) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-assert.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-rand.o) (__assert_func) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-freer.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-malloc.o) (_free_r) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-gethex.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) (__gethex) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-hexnan.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) (__match) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-snprintf.o) (_svfprintf_r) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mbtowc_r.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) (__ascii_mbtowc) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf_i.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) (_printf_i) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) (_fflush_r) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) (_Balloc) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-msizer.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reallocr.o) (_malloc_usable_size_r) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) (__sread) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-assert.o) (fiprintf) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wctomb_r.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) (__ascii_wctomb) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lseekr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) (_lseek_r) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-readr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) (_read_r) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-closer.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) (_close_r) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memchr-stub.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) (memchr) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-abort.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-assert.o) (abort) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fprintf.o) (_vfprintf_r) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wbuf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) (__swbuf_r) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wsetup.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) (__swsetup_r) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fvwrite.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) (__sfvwrite_r) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-makebuf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wsetup.o) (__smakebuf_r) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-abort.o) (raise) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-isattyr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-makebuf.o) (_isatty_r) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signalr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) (_kill_r) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fstatr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-makebuf.o) (_fstat_r) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_atan2.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o (atan2f) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_sqrt.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o (sqrtf) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_cos.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o (cosf) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_sin.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o (sinf) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_cos.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_cos.o) (__kernel_cosf) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_sin.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_cos.o) (__kernel_sinf) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_atan2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_atan2.o) (__ieee754_atan2f) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_sqrt.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_sqrt.o) (__ieee754_sqrtf) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_rem_pio2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_cos.o) (__ieee754_rem_pio2f) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_atan.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_atan2.o) (atanf) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_fabs.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_atan2.o) (fabsf) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_rem_pio2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_rem_pio2.o) (__kernel_rem_pio2f) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_floor.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_rem_pio2.o) (floorf) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_scalbn.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_rem_pio2.o) (scalbnf) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_thumb1_case_uqi.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o (__gnu_thumb1_case_uqi) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_thumb1_case_shi.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf_i.o) (__gnu_thumb1_case_shi) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o (__aeabi_uidiv) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_divsi3.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o (__aeabi_idiv) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_dvmd_tls.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o) (__aeabi_idiv0) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpdf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) (__aeabi_dcmpeq) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpsf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_rem_pio2.o) (__aeabi_fcmpeq) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_aeabi_uldivmod.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o (__aeabi_uldivmod) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_muldi3.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-rand.o) (__aeabi_lmul) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunssfsi.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o (__aeabi_f2uiz) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfsi.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o (__aeabi_d2uiz) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixdfdi.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) (__aeabi_d2lz) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfdi.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixdfdi.o) (__aeabi_d2ulz) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_floatdidf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) (__aeabi_l2d) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_udivmoddi4.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_aeabi_uldivmod.o) (__udivmoddi4) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(addsf3.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o (__aeabi_fadd) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(divsf3.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o (__aeabi_fdiv) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(eqsf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpsf2.o) (__eqsf2) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(gesf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpsf2.o) (__gesf2) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(lesf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpsf2.o) (__lesf2) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(mulsf3.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o (__aeabi_fmul) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(subsf3.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) (__aeabi_fsub) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(unordsf2.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) (__aeabi_fcmpun) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(fixsfsi.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_cos.o) (__aeabi_f2iz) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatsisf.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) (__aeabi_i2f) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatunsisf.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o (__aeabi_ui2f) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(adddf3.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) (__aeabi_dadd) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(divdf3.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o (__aeabi_ddiv) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(eqdf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpdf2.o) (__eqdf2) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(gedf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpdf2.o) (__gedf2) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(ledf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpdf2.o) (__ledf2) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(muldf3.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o (__aeabi_dmul) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(subdf3.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) (__aeabi_dsub) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(unorddf2.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) (__aeabi_dcmpun) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(fixdfsi.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) (__aeabi_d2iz) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatsidf.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o (__aeabi_i2d) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatunsidf.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o (__aeabi_ui2d) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(extendsfdf2.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o (__aeabi_f2d) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(truncdfsf2.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o (__aeabi_d2f) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_clzsi2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(addsf3.o) (__clzsi2) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_clzdi2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_udivmoddi4.o) (__clzdi2) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o (std::__throw_bad_function_call()) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) (std::exception::~exception()) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) (vtable for __cxxabiv1::__si_class_type_info) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) (std::type_info::__is_pointer_p() const) +/Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) (__cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const) + +Discarded input sections + + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crti.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crti.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crti.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtbegin.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtbegin.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtbegin.o + .rodata.all_implied_fbits + 0x00000000 0x24 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtbegin.o + .data.__dso_handle + 0x00000000 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtbegin.o + .text 0x00000000 0x74 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o + .ARM.extab 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o + .ARM.exidx 0x00000000 0x10 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o + .ARM.attributes + 0x00000000 0x1b /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/MD5.cpp.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/MD5.cpp.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/MD5.cpp.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .text._gettimeofday + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .text._Z10jumpToStep11Modem_stepst + 0x00000000 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .rodata._Z17composeSampleLinejPc.str1.1 + 0x00000000 0x11 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .text._Z17composeSampleLinejPc + 0x00000000 0x3c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .text._Z25calculateWtpPayloadLengthv + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .text._Z12kickWatchdogv + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/requiredLibraries.cpp.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/requiredLibraries.cpp.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/requiredLibraries.cpp.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/requiredLibraries.cpp.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/requiredLibraries.cpp.o + .group 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + .group 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + .group 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + .text._gettimeofday + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + .text._ZN7WN_Core23setAveragingPeriodInSecEt + 0x00000000 0x1c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + .text._ZN7WN_Core25setReportingIntervalInSecEt + 0x00000000 0xe /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + .text._ZN7WN_Core19onInstantWindUpdateEPFv24wn_instant_wind_sample_tE + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + .text._ZN7WN_Core15onNewWindReportEPFv16wn_wind_report_tE + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + .text._ZN7WN_Core12setSpeedUnitE14wn_wind_unit_t + 0x00000000 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + .text._ZN7WN_Core24getSampleIndexedFromLastEt + 0x00000000 0x1c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + .text._ZN7WN_Core18enableLowPowerModeEv + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + .text._ZN7WN_Core19disableLowPowerModeEv + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + .text._ZN7WN_Core14isLowPowerModeEv + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Rolling_Buffer.cpp.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Rolling_Buffer.cpp.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Rolling_Buffer.cpp.o + .text._gettimeofday + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Rolling_Buffer.cpp.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o + .text._gettimeofday + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o + .text._gettimeofday + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_MspDeInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_DeInit + 0x00000000 0x28 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_GetTickPrio + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_SetTickFreq + 0x00000000 0x28 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_GetTickFreq + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_Delay + 0x00000000 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_SuspendTick + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_ResumeTick + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_GetHalVersion + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_GetREVID + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_GetDEVID + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_GetUIDw0 + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_GetUIDw1 + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_GetUIDw2 + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_DBGMCU_EnableDBGStopMode + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_DBGMCU_DisableDBGStopMode + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_DBGMCU_EnableDBGStandbyMode + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_DBGMCU_DisableDBGStandbyMode + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_SYSCFG_VREFBUF_VoltageScalingConfig + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_SYSCFG_VREFBUF_HighImpedanceConfig + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_SYSCFG_VREFBUF_TrimmingConfig + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_SYSCFG_EnableVREFBUF + 0x00000000 0x30 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_SYSCFG_DisableVREFBUF + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_SYSCFG_EnableIOAnalogSwitchBooster + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_SYSCFG_DisableIOAnalogSwitchBooster + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_SYSCFG_EnableRemap + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_SYSCFG_DisableRemap + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_SYSCFG_EnableClampingDiode + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text.HAL_SYSCFG_DisableClampingDiode + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.LL_ADC_SetAnalogWDMonitChannels + 0x00000000 0x30 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.LL_ADC_REG_IsConversionOngoing + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.HAL_ADC_MspInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.HAL_ADC_Init + 0x00000000 0x220 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.HAL_ADC_MspDeInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.HAL_ADC_PollForConversion + 0x00000000 0xc8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.HAL_ADC_PollForEvent + 0x00000000 0xa8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.HAL_ADC_GetValue + 0x00000000 0x6 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.HAL_ADC_ConvCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.HAL_ADC_ConvHalfCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.ADC_DMAHalfConvCplt + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.HAL_ADC_LevelOutOfWindowCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.HAL_ADC_ErrorCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.ADC_DMAError + 0x00000000 0x1a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.ADC_DMAConvCplt + 0x00000000 0x84 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.HAL_ADC_IRQHandler + 0x00000000 0x15c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.HAL_ADC_ConfigChannel + 0x00000000 0x248 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.HAL_ADC_GetState + 0x00000000 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.HAL_ADC_GetError + 0x00000000 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.ADC_ConversionStop + 0x00000000 0x60 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.ADC_Enable + 0x00000000 0xb8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.HAL_ADC_Start + 0x00000000 0x5c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.HAL_ADC_Start_IT + 0x00000000 0x80 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.HAL_ADC_Start_DMA + 0x00000000 0xb0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.ADC_Disable + 0x00000000 0x78 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.HAL_ADC_DeInit + 0x00000000 0xac /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.HAL_ADC_Stop + 0x00000000 0x40 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.HAL_ADC_Stop_IT + 0x00000000 0x4c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.HAL_ADC_Stop_DMA + 0x00000000 0x7c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text.HAL_ADC_AnalogWDGConfig + 0x00000000 0x304 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o + .text.HAL_ADCEx_Calibration_Start + 0x00000000 0x164 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o + .text.HAL_ADCEx_Calibration_GetValue + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o + .text.HAL_ADCEx_Calibration_SetValue + 0x00000000 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o + .text.HAL_ADCEx_LevelOutOfWindow2Callback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o + .text.HAL_ADCEx_LevelOutOfWindow3Callback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o + .text.HAL_ADCEx_EndOfSamplingCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o + .text.HAL_ADCEx_ChannelConfigReadyCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o + .text.HAL_ADCEx_DisableVoltageRegulator + 0x00000000 0x20 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_can.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_can.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_can.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_can.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_can.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ccb.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ccb.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ccb.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ccb.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ccb.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cec.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cec.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cec.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cec.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cec.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_comp.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_comp.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_comp.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_comp.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_comp.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_comp_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_comp_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_comp_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_comp_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_comp_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cordic.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cordic.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cordic.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cordic.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cordic.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + .text.HAL_NVIC_SystemReset + 0x00000000 0x1c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + .text.HAL_NVIC_GetPriority + 0x00000000 0x3c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + .text.HAL_NVIC_SetPendingIRQ + 0x00000000 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + .text.HAL_NVIC_GetPendingIRQ + 0x00000000 0x1c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + .text.HAL_SYSTICK_CLKSourceConfig + 0x00000000 0x1c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + .text.HAL_MPU_Enable + 0x00000000 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + .text.HAL_MPU_Disable + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + .text.HAL_MPU_EnableRegion + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + .text.HAL_MPU_DisableRegion + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + .text.HAL_MPU_ConfigRegion + 0x00000000 0x4c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o + .text.CRC_Handle_8 + 0x00000000 0x58 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o + .text.CRC_Handle_16 + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o + .text.HAL_CRC_MspDeInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o + .text.HAL_CRC_DeInit + 0x00000000 0x32 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o + .text.HAL_CRC_Accumulate + 0x00000000 0x3e /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o + .text.HAL_CRC_Calculate + 0x00000000 0x4a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o + .text.HAL_CRC_GetState + 0x00000000 0x6 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc_ex.c.o + .text.HAL_CRCEx_Input_Data_Reverse + 0x00000000 0x1a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc_ex.c.o + .text.HAL_CRCEx_Output_Data_Reverse + 0x00000000 0x1a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cryp.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cryp.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cryp.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cryp.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cryp.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cryp_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cryp_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cryp_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cryp_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cryp_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dac.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dac.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dac.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dac.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dac.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dac_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dac_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dac_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dac_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dac_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dcache.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dcache.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dcache.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dcache.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dcache.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dcmi.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dcmi.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dcmi.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dcmi.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dcmi.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dcmi_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dcmi_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dcmi_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dcmi_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dcmi_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dfsdm.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dfsdm.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dfsdm.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dfsdm.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dfsdm.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dfsdm_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dfsdm_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dfsdm_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dfsdm_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dfsdm_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + .text.DMA_SetConfig + 0x00000000 0x40 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + .text.DMA_CalcDMAMUXChannelBaseAndMask + 0x00000000 0x34 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + .text.HAL_DMA_Init + 0x00000000 0xb4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + .text.HAL_DMA_DeInit + 0x00000000 0x88 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + .text.HAL_DMA_Start + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + .text.HAL_DMA_Start_IT + 0x00000000 0x90 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + .text.HAL_DMA_PollForTransfer + 0x00000000 0x118 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + .text.HAL_DMA_IRQHandler + 0x00000000 0xa8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + .text.HAL_DMA_RegisterCallback + 0x00000000 0x42 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + .text.HAL_DMA_UnRegisterCallback + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + .text.HAL_DMA_GetError + 0x00000000 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma2d.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma2d.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma2d.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma2d.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma2d.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma_ex.c.o + .text.HAL_DMAEx_ConfigMuxSync + 0x00000000 0x4a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma_ex.c.o + .text.HAL_DMAEx_ConfigMuxRequestGenerator + 0x00000000 0x4a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma_ex.c.o + .text.HAL_DMAEx_EnableMuxRequestGenerator + 0x00000000 0x20 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma_ex.c.o + .text.HAL_DMAEx_DisableMuxRequestGenerator + 0x00000000 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma_ex.c.o + .text.HAL_DMAEx_MUX_IRQHandler + 0x00000000 0x64 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dsi.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dsi.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dsi.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dsi.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dsi.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dts.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dts.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dts.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dts.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dts.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_eth.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_eth.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_eth.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_eth.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_eth.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_eth_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_eth_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_eth_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_eth_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_eth_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_exti.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_exti.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_exti.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_exti.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_exti.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fdcan.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fdcan.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fdcan.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fdcan.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fdcan.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_firewall.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_firewall.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_firewall.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_firewall.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_firewall.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o + .RamFunc 0x00000000 0x38 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o + .text.HAL_FLASH_EndOfOperationCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o + .text.HAL_FLASH_OperationErrorCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o + .text.HAL_FLASH_IRQHandler + 0x00000000 0x98 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o + .text.HAL_FLASH_Unlock + 0x00000000 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o + .text.HAL_FLASH_OB_Unlock + 0x00000000 0x28 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o + .text.HAL_FLASH_OB_Launch + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o + .text.HAL_FLASH_GetError + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o + .text.FLASH_WaitForLastOperation + 0x00000000 0x70 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o + .text.HAL_FLASH_Program + 0x00000000 0x68 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o + .text.HAL_FLASH_Program_IT + 0x00000000 0x6c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o + .text.HAL_FLASH_Lock + 0x00000000 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o + .text.HAL_FLASH_OB_Lock + 0x00000000 0x28 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o + .bss.pFlash 0x00000000 0x1c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o + .text.HAL_FLASHEx_OBProgram + 0x00000000 0x14c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o + .text.HAL_FLASHEx_OBGetConfig + 0x00000000 0xac /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o + .text.HAL_FLASHEx_EnableDebugger + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o + .text.HAL_FLASHEx_DisableDebugger + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o + .text.HAL_FLASHEx_FlashEmptyCheck + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o + .text.HAL_FLASHEx_ForceFlashEmpty + 0x00000000 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o + .text.HAL_FLASHEx_EnableSecMemProtection + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o + .text.FLASH_PageErase + 0x00000000 0x20 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o + .text.HAL_FLASHEx_Erase + 0x00000000 0x94 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o + .text.HAL_FLASHEx_Erase_IT + 0x00000000 0x6c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o + .text.FLASH_FlushCaches + 0x00000000 0x3c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ramfunc.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ramfunc.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ramfunc.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ramfunc.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ramfunc.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmac.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmac.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmac.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmac.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmac.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpi2c.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpi2c.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpi2c.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpi2c.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpi2c.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpi2c_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpi2c_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpi2c_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpi2c_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpi2c_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpsmbus.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpsmbus.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpsmbus.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpsmbus.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpsmbus.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpsmbus_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpsmbus_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpsmbus_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpsmbus_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpsmbus_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gfxmmu.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gfxmmu.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gfxmmu.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gfxmmu.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gfxmmu.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gfxtim.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gfxtim.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gfxtim.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gfxtim.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gfxtim.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o + .text.HAL_GPIO_DeInit + 0x00000000 0xe4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o + .text.HAL_GPIO_ReadPin + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o + .text.HAL_GPIO_WritePin + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o + .text.HAL_GPIO_TogglePin + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o + .text.HAL_GPIO_LockPin + 0x00000000 0x2a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o + .text.HAL_GPIO_EXTI_Rising_Callback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o + .text.HAL_GPIO_EXTI_Falling_Callback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpu2d.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpu2d.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpu2d.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpu2d.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpu2d.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gtzc.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gtzc.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gtzc.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gtzc.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gtzc.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hash.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hash.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hash.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hash.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hash.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hash_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hash_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hash_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hash_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hash_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hcd.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hcd.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hcd.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hcd.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hcd.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hrtim.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hrtim.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hrtim.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hrtim.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hrtim.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hsem.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hsem.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hsem.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hsem.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hsem.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_WaitOnTXISFlagUntilTimeout + 0x00000000 0x5c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_WaitOnSTOPFlagUntilTimeout + 0x00000000 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_WaitOnRXNEFlagUntilTimeout + 0x00000000 0x98 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Master_Transmit + 0x00000000 0x148 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Master_Receive + 0x00000000 0x11c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Slave_Transmit + 0x00000000 0x190 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Slave_Receive + 0x00000000 0x154 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Master_Transmit_IT + 0x00000000 0xc8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Master_Receive_IT + 0x00000000 0x94 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Slave_Transmit_IT + 0x00000000 0x88 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Slave_Receive_IT + 0x00000000 0x5c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Master_Transmit_DMA + 0x00000000 0x150 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Master_Receive_DMA + 0x00000000 0x13c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Slave_Transmit_DMA + 0x00000000 0x11c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Slave_Receive_DMA + 0x00000000 0xe0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Mem_Write + 0x00000000 0x1b4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Mem_Read + 0x00000000 0x1bc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Mem_Write_IT + 0x00000000 0xcc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Mem_Read_IT + 0x00000000 0xc4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Mem_Write_DMA + 0x00000000 0x128 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Mem_Read_DMA + 0x00000000 0x128 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Master_Seq_Transmit_DMA + 0x00000000 0x1a0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Master_Seq_Receive_DMA + 0x00000000 0x150 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Slave_Seq_Transmit_DMA + 0x00000000 0x180 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Slave_Seq_Receive_DMA + 0x00000000 0x17c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_DisableListen_IT + 0x00000000 0x34 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_Master_Abort_IT + 0x00000000 0x70 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_SlaveTxCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_SlaveRxCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_DMASlaveTransmitCplt + 0x00000000 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_DMASlaveReceiveCplt + 0x00000000 0x30 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_AddrCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_ListenCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_ErrorCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_DMAError + 0x00000000 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_DMAMasterTransmitCplt + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_DMAMasterReceiveCplt + 0x00000000 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_Mem_ISR_IT + 0x00000000 0x11c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_GetMode + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c_ex.c.o + .text.HAL_I2CEx_ConfigAnalogFilter + 0x00000000 0x4c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c_ex.c.o + .text.HAL_I2CEx_ConfigDigitalFilter + 0x00000000 0x48 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c_ex.c.o + .text.HAL_I2CEx_EnableWakeUp + 0x00000000 0x42 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c_ex.c.o + .text.HAL_I2CEx_DisableWakeUp + 0x00000000 0x44 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c_ex.c.o + .text.HAL_I2CEx_EnableFastModePlus + 0x00000000 0x28 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c_ex.c.o + .text.HAL_I2CEx_DisableFastModePlus + 0x00000000 0x28 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.I2S_WaitFlagStateUntilTimeout + 0x00000000 0x46 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.HAL_I2S_MspInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.HAL_I2S_Init + 0x00000000 0xe4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.HAL_I2S_MspDeInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.HAL_I2S_DeInit + 0x00000000 0x34 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.HAL_I2S_Transmit + 0x00000000 0x118 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.HAL_I2S_Receive + 0x00000000 0xe0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.HAL_I2S_Transmit_IT + 0x00000000 0x6e /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.HAL_I2S_Receive_IT + 0x00000000 0x6e /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.HAL_I2S_Transmit_DMA + 0x00000000 0xb0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.HAL_I2S_Receive_DMA + 0x00000000 0xcc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.HAL_I2S_DMAPause + 0x00000000 0x3a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.HAL_I2S_DMAResume + 0x00000000 0x48 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.HAL_I2S_DMAStop + 0x00000000 0xf4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.HAL_I2S_TxHalfCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.I2S_DMATxHalfCplt + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.HAL_I2S_TxCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.I2S_DMATxCplt + 0x00000000 0x26 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.HAL_I2S_RxHalfCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.I2S_DMARxHalfCplt + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.HAL_I2S_RxCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.I2S_DMARxCplt + 0x00000000 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.HAL_I2S_ErrorCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.I2S_DMAError + 0x00000000 0x2a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.HAL_I2S_IRQHandler + 0x00000000 0xb8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.HAL_I2S_GetState + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text.HAL_I2S_GetError + 0x00000000 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i3c.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i3c.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i3c.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i3c.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i3c.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_icache.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_icache.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_icache.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_icache.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_icache.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ipcc.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ipcc.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ipcc.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ipcc.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ipcc.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_irda.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_irda.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_irda.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_irda.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_irda.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_iwdg.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_iwdg.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_iwdg.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_iwdg.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_iwdg.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_jpeg.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_jpeg.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_jpeg.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_jpeg.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_jpeg.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_lcd.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_lcd.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_lcd.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_lcd.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_lcd.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_lptim.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_lptim.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_lptim.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_lptim.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_lptim.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ltdc.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ltdc.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ltdc.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ltdc.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ltdc.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ltdc_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ltdc_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ltdc_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ltdc_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ltdc_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mdf.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mdf.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mdf.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mdf.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mdf.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mdios.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mdios.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mdios.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mdios.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mdios.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mdma.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mdma.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mdma.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mdma.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mdma.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mmc.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mmc.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mmc.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mmc.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mmc.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mmc_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mmc_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mmc_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mmc_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mmc_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_nand.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_nand.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_nand.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_nand.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_nand.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_nor.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_nor.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_nor.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_nor.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_nor.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_opamp.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_opamp.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_opamp.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_opamp.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_opamp.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_opamp_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_opamp_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_opamp_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_opamp_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_opamp_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ospi.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ospi.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ospi.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ospi.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ospi.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_otfdec.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_otfdec.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_otfdec.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_otfdec.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_otfdec.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pccard.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pccard.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pccard.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pccard.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pccard.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pcd.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pcd.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pcd.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pcd.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pcd.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pcd_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pcd_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pcd_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pcd_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pcd_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pka.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pka.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pka.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pka.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pka.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pssi.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pssi.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pssi.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pssi.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pssi.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o + .text.HAL_PWR_DeInit + 0x00000000 0x20 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o + .text.HAL_PWR_DisableBkUpAccess + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o + .text.HAL_PWR_EnableWakeUpPin + 0x00000000 0x1c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o + .text.HAL_PWR_DisableWakeUpPin + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o + .text.HAL_PWR_EnterSTOPMode + 0x00000000 0x44 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o + .text.HAL_PWR_EnterSTANDBYMode + 0x00000000 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o + .text.HAL_PWR_EnableSleepOnExit + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o + .text.HAL_PWR_DisableSleepOnExit + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o + .text.HAL_PWR_EnableSEVOnPend + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o + .text.HAL_PWR_DisableSEVOnPend + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_EnableBatteryCharging + 0x00000000 0x1c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_DisableBatteryCharging + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_EnablePORMonitorSampling + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_DisablePORMonitorSampling + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_ConfigPVD + 0x00000000 0x84 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_EnablePVD + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_DisablePVD + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_EnableInternalWakeUpLine + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_DisableInternalWakeUpLine + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_EnableGPIOPullUp + 0x00000000 0x7c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_DisableGPIOPullUp + 0x00000000 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_EnableGPIOPullDown + 0x00000000 0x7c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_DisableGPIOPullDown + 0x00000000 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_EnablePullUpPullDownConfig + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_DisablePullUpPullDownConfig + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_EnableSRAMRetention + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_DisableSRAMRetention + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_EnableFlashPowerDown + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_DisableFlashPowerDown + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_GetVoltageRange + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_EnterSHUTDOWNMode + 0x00000000 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_PVD_Rising_Callback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_PVD_Falling_Callback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text.HAL_PWREx_PVD_IRQHandler + 0x00000000 0x28 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_qspi.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_qspi.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_qspi.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_qspi.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_qspi.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_radio.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_radio.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_radio.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_radio.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_radio.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_radio_timer.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_radio_timer.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_radio_timer.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_radio_timer.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_radio_timer.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ramcfg.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ramcfg.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ramcfg.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ramcfg.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ramcfg.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ramecc.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ramecc.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ramecc.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ramecc.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ramecc.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + .text.HAL_RCC_DeInit + 0x00000000 0xb4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + .text.HAL_RCC_MCOConfig + 0x00000000 0x5c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + .text.HAL_RCC_GetHCLKFreq + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + .text.HAL_RCC_GetOscConfig + 0x00000000 0x94 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + .text.HAL_RCC_EnableCSS + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + .text.HAL_RCC_EnableLSECSS + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + .text.HAL_RCC_DisableLSECSS + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + .text.HAL_RCC_CSSCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + .text.HAL_RCC_LSECSSCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + .text.HAL_RCC_NMI_IRQHandler + 0x00000000 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + .text.HAL_RCC_GetResetSource + 0x00000000 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o + .text.HAL_RCCEx_PeriphCLKConfig + 0x00000000 0x1c0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o + .text.HAL_RCCEx_GetPeriphCLKConfig + 0x00000000 0x68 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o + .text.HAL_RCCEx_EnableLSCO + 0x00000000 0x94 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o + .text.HAL_RCCEx_DisableLSCO + 0x00000000 0x60 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rng.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rng.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rng.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rng.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rng.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rng_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rng_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rng_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rng_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rng_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.HAL_RTC_MspInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.HAL_RTC_MspDeInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.HAL_RTC_DeactivateAlarm + 0x00000000 0xbc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.HAL_RTC_AlarmAEventCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.HAL_RTC_AlarmIRQHandler + 0x00000000 0x42 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.HAL_RTC_PollForAlarmAEvent + 0x00000000 0x40 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.HAL_RTC_WaitForSynchro + 0x00000000 0x34 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.HAL_RTC_GetState + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.RTC_EnterInitMode + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.RTC_ExitInitMode + 0x00000000 0x48 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.HAL_RTC_Init + 0x00000000 0xb0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.HAL_RTC_DeInit + 0x00000000 0xa4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.RTC_ByteToBcd2 + 0x00000000 0x16 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.HAL_RTC_SetTime + 0x00000000 0xd8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.HAL_RTC_SetDate + 0x00000000 0xb0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.HAL_RTC_SetAlarm + 0x00000000 0x174 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.HAL_RTC_SetAlarm_IT + 0x00000000 0x190 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.RTC_Bcd2ToByte + 0x00000000 0x12 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.HAL_RTC_GetTime + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.HAL_RTC_GetDate + 0x00000000 0x44 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.HAL_RTC_GetAlarm + 0x00000000 0x8c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.HAL_RTC_DST_Add1Hour + 0x00000000 0x1a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.HAL_RTC_DST_Sub1Hour + 0x00000000 0x1a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.HAL_RTC_DST_SetStoreOperation + 0x00000000 0x1a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.HAL_RTC_DST_ClearStoreOperation + 0x00000000 0x1c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text.HAL_RTC_DST_ReadStoreOperation + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_SetTimeStamp + 0x00000000 0x4c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_SetTimeStamp_IT + 0x00000000 0x64 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_DeactivateTimeStamp + 0x00000000 0x48 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_SetInternalTimeStamp + 0x00000000 0x3a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_DeactivateInternalTimeStamp + 0x00000000 0x3c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_GetTimeStamp + 0x00000000 0x90 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_TimeStampEventCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_TimeStampIRQHandler + 0x00000000 0x20 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_PollForTimeStampEvent + 0x00000000 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_SetWakeUpTimer + 0x00000000 0xa8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_SetWakeUpTimer_IT + 0x00000000 0xc8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_DeactivateWakeUpTimer + 0x00000000 0x84 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_GetWakeUpTimer + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_WakeUpTimerEventCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_WakeUpTimerIRQHandler + 0x00000000 0x20 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_PollForWakeUpTimerEvent + 0x00000000 0x42 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_SetSmoothCalib + 0x00000000 0x82 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_SetSynchroShift + 0x00000000 0x9e /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_SetCalibrationOutPut + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_DeactivateCalibrationOutPut + 0x00000000 0x3c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_SetRefClock + 0x00000000 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_DeactivateRefClock + 0x00000000 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_EnableBypassShadow + 0x00000000 0x38 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_DisableBypassShadow + 0x00000000 0x38 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_AlarmBEventCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_PollForAlarmBEvent + 0x00000000 0x42 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_SetTamper + 0x00000000 0x74 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_SetTamper_IT + 0x00000000 0x8c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_DeactivateTamper + 0x00000000 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_PollForTamperEvent + 0x00000000 0x34 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_SetInternalTamper + 0x00000000 0x3c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_SetInternalTamper_IT + 0x00000000 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_DeactivateInternalTamper + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_PollForInternalTamperEvent + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_Tamper1EventCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_Tamper2EventCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_InternalTamper3EventCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_InternalTamper4EventCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_InternalTamper5EventCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_InternalTamper6EventCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_TamperIRQHandler + 0x00000000 0x4a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_BKUPWrite + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text.HAL_RTCEx_BKUPRead + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sai.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sai.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sai.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sai.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sai.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sai_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sai_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sai_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sai_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sai_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sd.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sd.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sd.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sd.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sd.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sd_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sd_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sd_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sd_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sd_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sdadc.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sdadc.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sdadc.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sdadc.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sdadc.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sdio.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sdio.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sdio.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sdio.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sdio.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sdram.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sdram.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sdram.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sdram.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sdram.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smartcard.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smartcard.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smartcard.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smartcard.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smartcard.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smartcard_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smartcard_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smartcard_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smartcard_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smartcard_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smbus.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smbus.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smbus.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smbus.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smbus.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smbus_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smbus_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smbus_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smbus_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smbus_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spdifrx.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spdifrx.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spdifrx.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spdifrx.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spdifrx.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_WaitFlagStateUntilTimeout.constprop.0 + 0x00000000 0xb8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_WaitFifoStateUntilTimeout.constprop.0 + 0x00000000 0xd8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_AbortRx_ISR + 0x00000000 0x80 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_EndRxTransaction + 0x00000000 0x7a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_EndRxTxTransaction + 0x00000000 0x46 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_AbortTx_ISR + 0x00000000 0xe0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_MspInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_Init + 0x00000000 0xf0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_MspDeInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_DeInit + 0x00000000 0x2e /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_Transmit + 0x00000000 0x184 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_TransmitReceive + 0x00000000 0x214 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_Receive + 0x00000000 0x180 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_Transmit_IT + 0x00000000 0x94 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_TransmitReceive_IT + 0x00000000 0xc8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_Receive_IT + 0x00000000 0xd0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_Transmit_DMA + 0x00000000 0x110 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_TransmitReceive_DMA + 0x00000000 0x1ac /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_Receive_DMA + 0x00000000 0x168 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_Abort + 0x00000000 0x184 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_DMAPause + 0x00000000 0x1e /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_DMAResume + 0x00000000 0x1e /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_DMAStop + 0x00000000 0x4c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_TxCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_RxCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_TxRxCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_TxHalfCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_DMAHalfTransmitCplt + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_RxHalfCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_DMAHalfReceiveCplt + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_TxRxHalfCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_DMAHalfTransmitReceiveCplt + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_ErrorCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_CloseTx_ISR + 0x00000000 0x58 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_TxISR_8BIT + 0x00000000 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_TxISR_16BIT + 0x00000000 0x22 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_CloseRx_ISR + 0x00000000 0x44 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_RxISR_8BIT + 0x00000000 0x28 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_RxISR_16BIT + 0x00000000 0x26 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_CloseRxTx_ISR + 0x00000000 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_2linesTxISR_8BIT + 0x00000000 0x4c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_2linesRxISR_8BIT + 0x00000000 0x60 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_2linesTxISR_16BIT + 0x00000000 0x34 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_2linesRxISR_16BIT + 0x00000000 0x34 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_DMAError + 0x00000000 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_DMATransmitCplt + 0x00000000 0x6e /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_DMAReceiveCplt + 0x00000000 0x70 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_DMATransmitReceiveCplt + 0x00000000 0x62 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_IRQHandler + 0x00000000 0x118 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_DMAAbortOnError + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_AbortCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_Abort_IT + 0x00000000 0x150 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_DMARxAbortCallback + 0x00000000 0x8e /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.SPI_DMATxAbortCallback + 0x00000000 0x90 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_GetState + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text.HAL_SPI_GetError + 0x00000000 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi_ex.c.o + .text.HAL_SPIEx_FlushRxFifo + 0x00000000 0x28 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sram.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sram.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sram.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sram.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sram.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_subghz.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_subghz.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_subghz.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_subghz.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_subghz.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_swpmi.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_swpmi.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_swpmi.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_swpmi.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_swpmi.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.TIM_OC1_SetConfig + 0x00000000 0x6c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.TIM_OC3_SetConfig + 0x00000000 0x84 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.TIM_OC4_SetConfig + 0x00000000 0x68 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.TIM_OC5_SetConfig + 0x00000000 0x60 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.TIM_OC6_SetConfig + 0x00000000 0x68 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_Base_MspInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_Base_MspDeInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_Base_DeInit + 0x00000000 0x5c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_Base_Stop + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_Base_Start_IT + 0x00000000 0x60 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_Base_Stop_IT + 0x00000000 0x34 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_Base_Start_DMA + 0x00000000 0xa0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_Base_Stop_DMA + 0x00000000 0x44 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_OC_MspInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_OC_MspDeInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_OC_DeInit + 0x00000000 0x5c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_PWM_MspInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_PWM_MspDeInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_PWM_DeInit + 0x00000000 0x5c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_IC_MspInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_IC_MspDeInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_IC_DeInit + 0x00000000 0x5c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_OnePulse_MspInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_OnePulse_MspDeInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_OnePulse_DeInit + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_OnePulse_Start + 0x00000000 0x98 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_OnePulse_Stop + 0x00000000 0x88 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_OnePulse_Start_IT + 0x00000000 0xa4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_OnePulse_Stop_IT + 0x00000000 0x98 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_Encoder_MspInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_Encoder_MspDeInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_Encoder_DeInit + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_Encoder_Start + 0x00000000 0xb0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_Encoder_Stop + 0x00000000 0x7c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_Encoder_Start_IT + 0x00000000 0xd6 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_Encoder_Stop_IT + 0x00000000 0xa8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_Encoder_Start_DMA + 0x00000000 0x1e4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_Encoder_Stop_DMA + 0x00000000 0xcc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_DMABurst_MultiWriteStart + 0x00000000 0xe4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_DMABurst_WriteStart + 0x00000000 0x12 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_DMABurst_WriteStop + 0x00000000 0x74 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_DMABurst_MultiReadStart + 0x00000000 0xe4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_DMABurst_ReadStart + 0x00000000 0x12 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_DMABurst_ReadStop + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_ConfigTI1Input + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_ReadCapturedValue + 0x00000000 0x2e /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_PeriodElapsedCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.TIM_DMAPeriodElapsedCplt + 0x00000000 0x1a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_PeriodElapsedHalfCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.TIM_DMAPeriodElapsedHalfCplt + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_OC_DelayElapsedCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_IC_CaptureCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.TIM_DMACaptureCplt + 0x00000000 0x74 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_IC_CaptureHalfCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.TIM_DMACaptureHalfCplt + 0x00000000 0x38 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.TIM_DMADelayPulseCplt + 0x00000000 0x70 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_PWM_PulseFinishedHalfCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.TIM_DMADelayPulseHalfCplt + 0x00000000 0x38 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.TIM_DMATriggerCplt + 0x00000000 0x1a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_TriggerHalfCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.TIM_DMATriggerHalfCplt + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_ErrorCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.TIM_DMAError + 0x00000000 0x5c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_Base_GetState + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_OC_GetState + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_PWM_GetState + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_IC_GetState + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_OnePulse_GetState + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_Encoder_GetState + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_GetActiveChannel + 0x00000000 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_GetChannelState + 0x00000000 0x32 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_DMABurstState + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_OC_Init + 0x00000000 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_PWM_Init + 0x00000000 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_IC_Init + 0x00000000 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_OnePulse_Init + 0x00000000 0x5a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_Encoder_Init + 0x00000000 0xac /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.TIM_OC2_SetConfig + 0x00000000 0x78 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_OC_ConfigChannel + 0x00000000 0x64 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_PWM_ConfigChannel + 0x00000000 0x10c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.TIM_TI1_SetConfig + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_IC_ConfigChannel + 0x00000000 0x154 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_OnePulse_ConfigChannel + 0x00000000 0x120 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.TIM_ETR_SetConfig + 0x00000000 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_ConfigOCrefClear + 0x00000000 0x144 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_ConfigClockSource + 0x00000000 0x130 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.TIM_SlaveTimer_SetConfig.constprop.0 + 0x00000000 0xd4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_SlaveConfigSynchro_IT + 0x00000000 0x4c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_SlaveConfigSynchro + 0x00000000 0x4c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_OC_Stop + 0x00000000 0x9c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_PWM_Stop + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_OC_Start_IT + 0x00000000 0x10c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_PWM_Start_IT + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_OC_Stop_IT + 0x00000000 0xbc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_PWM_Stop_IT + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_OC_Start_DMA + 0x00000000 0x1f0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_PWM_Start_DMA + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_OC_Stop_DMA + 0x00000000 0xec /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_PWM_Stop_DMA + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_IC_Stop + 0x00000000 0x84 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_IC_Start_IT + 0x00000000 0x114 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_IC_Stop_IT + 0x00000000 0x94 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_IC_Start_DMA + 0x00000000 0x1d0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text.HAL_TIM_IC_Stop_DMA + 0x00000000 0xc0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.TIM_DMAErrorCCxN + 0x00000000 0x46 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.TIM_DMADelayPulseNCplt + 0x00000000 0x58 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_HallSensor_MspInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_HallSensor_Init + 0x00000000 0xc8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_HallSensor_MspDeInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_HallSensor_DeInit + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_HallSensor_Start + 0x00000000 0xa0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_HallSensor_Stop + 0x00000000 0x44 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_HallSensor_Start_IT + 0x00000000 0xa4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_HallSensor_Stop_IT + 0x00000000 0x4c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_HallSensor_Start_DMA + 0x00000000 0xb8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_HallSensor_Stop_DMA + 0x00000000 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_OCN_Stop + 0x00000000 0x6c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_OCN_Start_IT + 0x00000000 0xa8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_OCN_Stop_IT + 0x00000000 0x90 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_OCN_Start_DMA + 0x00000000 0x15c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_OCN_Stop_DMA + 0x00000000 0xac /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_PWMN_Stop + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_PWMN_Start_IT + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_PWMN_Stop_IT + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_PWMN_Start_DMA + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_PWMN_Stop_DMA + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_OnePulseN_Start + 0x00000000 0x82 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_OnePulseN_Stop + 0x00000000 0x70 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_OnePulseN_Start_IT + 0x00000000 0x8e /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_OnePulseN_Stop_IT + 0x00000000 0x80 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_ConfigCommutEvent + 0x00000000 0x64 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_ConfigCommutEvent_IT + 0x00000000 0x64 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_ConfigCommutEvent_DMA + 0x00000000 0x7c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_MasterConfigSynchronization + 0x00000000 0x68 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_ConfigBreakDeadTime + 0x00000000 0xbc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_ConfigBreakInput + 0x00000000 0x68 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_RemapConfig + 0x00000000 0x28 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_TISelection + 0x00000000 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_GroupChannel5 + 0x00000000 0x34 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_DisarmBreakInput + 0x00000000 0x4c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_ReArmBreakInput + 0x00000000 0x70 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.TIMEx_DMACommutationCplt + 0x00000000 0x12 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_CommutHalfCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.TIMEx_DMACommutationHalfCplt + 0x00000000 0x12 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_HallSensor_GetState + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text.HAL_TIMEx_GetChannelNState + 0x00000000 0x20 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tsc.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tsc.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tsc.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tsc.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tsc.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.UART_EndTxTransfer + 0x00000000 0x3c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_Transmit_DMA + 0x00000000 0xa4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_DMAPause + 0x00000000 0x88 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_DMAResume + 0x00000000 0x82 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_DMAStop + 0x00000000 0xa6 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_Abort + 0x00000000 0x118 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_AbortTransmit + 0x00000000 0xa0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_AbortReceive + 0x00000000 0xc0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_TxCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.UART_DMATransmitCplt + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_TxHalfCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.UART_DMATxHalfCplt + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_RxCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_RxHalfCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_ErrorCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.UART_DMAError + 0x00000000 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_AbortCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_Abort_IT + 0x00000000 0x150 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.UART_DMARxAbortCallback + 0x00000000 0x44 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.UART_DMATxAbortCallback + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_AbortTransmitCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_AbortTransmit_IT + 0x00000000 0xb0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.UART_DMATxOnlyAbortCallback + 0x00000000 0x2e /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_AbortReceiveCpltCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_AbortReceive_IT + 0x00000000 0xd0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.UART_DMARxOnlyAbortCallback + 0x00000000 0x2a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.UART_DMARxHalfCplt + 0x00000000 0x22 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.UART_DMAReceiveCplt + 0x00000000 0xa0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_ReceiverTimeout_Config + 0x00000000 0x1c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_EnableReceiverTimeout + 0x00000000 0x3c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_DisableReceiverTimeout + 0x00000000 0x40 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_MultiProcessor_EnterMuteMode + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_LIN_SendBreak + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_GetError + 0x00000000 0x6 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_Receive + 0x00000000 0x100 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_LIN_Init + 0x00000000 0x90 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_MultiProcessor_Init + 0x00000000 0x90 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_MultiProcessor_EnableMuteMode + 0x00000000 0x3e /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_MultiProcessor_DisableMuteMode + 0x00000000 0x40 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.UART_Start_Receive_DMA + 0x00000000 0xac /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_Receive_DMA + 0x00000000 0x68 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + .text.UARTEx_SetNbDataToProcess + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + .text.HAL_RS485Ex_Init + 0x00000000 0x8c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + .text.HAL_UARTEx_WakeupCallback + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + .text.HAL_MultiProcessorEx_AddressLength_Set + 0x00000000 0x34 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + .text.HAL_UARTEx_StopModeWakeUpSourceConfig + 0x00000000 0x90 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + .text.HAL_UARTEx_EnableFifoMode + 0x00000000 0x3c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + .text.HAL_UARTEx_DisableFifoMode + 0x00000000 0x3c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + .text.HAL_UARTEx_SetTxFifoThreshold + 0x00000000 0x40 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + .text.HAL_UARTEx_SetRxFifoThreshold + 0x00000000 0x44 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + .text.HAL_UARTEx_ReceiveToIdle + 0x00000000 0x158 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + .text.HAL_UARTEx_ReceiveToIdle_IT + 0x00000000 0x62 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + .text.HAL_UARTEx_ReceiveToIdle_DMA + 0x00000000 0x64 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + .text.HAL_UARTEx_GetRxEventType + 0x00000000 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + .rodata.denominator.0 + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + .rodata.numerator.1 + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_usart.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_usart.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_usart.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_usart.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_usart.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_usart_ex.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_usart_ex.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_usart_ex.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_usart_ex.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_usart_ex.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_wwdg.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_wwdg.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_wwdg.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_wwdg.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_wwdg.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_xspi.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_xspi.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_xspi.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_xspi.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_xspi.c.o + .group 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .group 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .group 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .group 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._gettimeofday + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZNSt14_Function_baseD2Ev + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer5pauseEv + 0x00000000 0x58 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer12pauseChannelEm + 0x00000000 0xbe /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer17getPrescaleFactorEv + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer7setModeEm12TimerModes_t7PinName20ChannelInputFilter_t + 0x00000000 0x160 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer7setModeEm12TimerModes_tm20ChannelInputFilter_t + 0x00000000 0x58 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer7getModeEm + 0x00000000 0x12 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer16setPreloadEnableEb + 0x00000000 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer20setInterruptPriorityEmm + 0x00000000 0x3c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer15detachInterruptEv + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer15detachInterruptEm + 0x00000000 0x26 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer12hasInterruptEv + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer12hasInterruptEm + 0x00000000 0x16 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer9getHandleEv + 0x00000000 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer16isRunningChannelEm + 0x00000000 0x36 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer17setPrescaleFactorEm + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer11getOverflowE13TimerFormat_t + 0x00000000 0x60 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer8getCountE13TimerFormat_t + 0x00000000 0x5c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer8setCountEm13TimerFormat_t + 0x00000000 0x40 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer17setCaptureCompareEmm20TimerCompareFormat_t + 0x00000000 0xa4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer17getCaptureCompareEm20TimerCompareFormat_t + 0x00000000 0x9c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer17timerHandleDeinitEv + 0x00000000 0x12 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimerC2Ev + 0x00000000 0x20 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer15attachInterruptEmSt8functionIFvvEE + 0x00000000 0x42 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer6setPWMEm7PinNamemmSt8functionIFvvEES3_ + 0x00000000 0xa0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer6setPWMEmmmmSt8functionIFvvEES2_ + 0x00000000 0x8c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_adc.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_adc.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_adc.c.o + .text.LL_ADC_CommonDeInit + 0x00000000 0x20 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_adc.c.o + .text.LL_ADC_CommonInit + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_adc.c.o + .text.LL_ADC_CommonStructInit + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_adc.c.o + .text.LL_ADC_DeInit + 0x00000000 0x110 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_adc.c.o + .text.LL_ADC_Init + 0x00000000 0x38 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_adc.c.o + .text.LL_ADC_StructInit + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_adc.c.o + .text.LL_ADC_REG_Init + 0x00000000 0x58 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_adc.c.o + .text.LL_ADC_REG_StructInit + 0x00000000 0x16 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_adc.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_adc.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_adc.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_bdma.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_bdma.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_bdma.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_bdma.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_bdma.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_comp.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_comp.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_comp.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_comp.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_comp.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_cordic.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_cordic.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_cordic.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_cordic.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_cordic.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_crc.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_crc.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_crc.c.o + .text.LL_CRC_DeInit + 0x00000000 0x30 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_crc.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_crc.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_crc.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_crs.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_crs.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_crs.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_crs.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_crs.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dac.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dac.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dac.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dac.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dac.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_delayblock.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_delayblock.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_delayblock.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_delayblock.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_delayblock.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dlyb.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dlyb.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dlyb.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dlyb.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dlyb.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dma.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dma.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dma.c.o + .text.LL_DMA_DeInit + 0x00000000 0xd4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dma.c.o + .text.LL_DMA_Init + 0x00000000 0x74 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dma.c.o + .text.LL_DMA_StructInit + 0x00000000 0x1a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dma.c.o + .rodata.CHANNEL_OFFSET_TAB + 0x00000000 0x5 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dma.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dma.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dma.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dma2d.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dma2d.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dma2d.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dma2d.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dma2d.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_exti.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_exti.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_exti.c.o + .text.LL_EXTI_DeInit + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_exti.c.o + .text.LL_EXTI_Init + 0x00000000 0xa8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_exti.c.o + .text.LL_EXTI_StructInit + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_exti.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_exti.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_exti.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fmac.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fmac.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fmac.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fmac.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fmac.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fmc.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fmc.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fmc.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fmc.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fmc.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fmpi2c.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fmpi2c.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fmpi2c.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fmpi2c.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fmpi2c.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fsmc.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fsmc.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fsmc.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fsmc.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fsmc.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_gpio.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_gpio.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_gpio.c.o + .text.LL_GPIO_DeInit + 0x00000000 0x6c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_gpio.c.o + .text.LL_GPIO_Init + 0x00000000 0xa0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_gpio.c.o + .text.LL_GPIO_StructInit + 0x00000000 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_gpio.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_gpio.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_gpio.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_hrtim.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_hrtim.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_hrtim.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_hrtim.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_hrtim.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_i2c.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_i2c.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_i2c.c.o + .text.LL_I2C_DeInit + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_i2c.c.o + .text.LL_I2C_Init + 0x00000000 0x74 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_i2c.c.o + .text.LL_I2C_StructInit + 0x00000000 0x16 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_i2c.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_i2c.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_i2c.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_i3c.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_i3c.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_i3c.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_i3c.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_i3c.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_icache.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_icache.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_icache.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_icache.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_icache.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lpgpio.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lpgpio.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lpgpio.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lpgpio.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lpgpio.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lptim.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lptim.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lptim.c.o + .text.LL_LPTIM_DeInit + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lptim.c.o + .text.LL_LPTIM_StructInit + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lptim.c.o + .text.LL_LPTIM_Init + 0x00000000 0x30 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lptim.c.o + .text.LL_LPTIM_Disable + 0x00000000 0x118 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lptim.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lptim.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lptim.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lpuart.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lpuart.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lpuart.c.o + .text.LL_LPUART_DeInit + 0x00000000 0x30 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lpuart.c.o + .text.LL_LPUART_Init + 0x00000000 0xa8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lpuart.c.o + .text.LL_LPUART_StructInit + 0x00000000 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lpuart.c.o + .rodata.LPUART_PRESCALER_TAB + 0x00000000 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lpuart.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lpuart.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lpuart.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_mdma.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_mdma.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_mdma.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_mdma.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_mdma.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_opamp.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_opamp.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_opamp.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_opamp.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_opamp.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_pka.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_pka.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_pka.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_pka.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_pka.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_pwr.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_pwr.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_pwr.c.o + .text.LL_PWR_DeInit + 0x00000000 0x20 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_pwr.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_pwr.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_pwr.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + .text.LL_RCC_HSI_IsReady + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + .text.LL_RCC_LSE_IsReady + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + .text.LL_RCC_PLL_IsReady + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + .text.RCC_GetHCLKClockFreq + 0x00000000 0x20 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + .text.RCC_GetPCLK1ClockFreq + 0x00000000 0x20 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + .text.RCC_GetSystemClockFreq + 0x00000000 0x68 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + .text.RCC_PLL_GetFreqDomain_ADC + 0x00000000 0x44 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + .text.LL_RCC_DeInit + 0x00000000 0x5c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + .text.LL_RCC_GetSystemClocksFreq + 0x00000000 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + .text.LL_RCC_GetUSARTClockFreq + 0x00000000 0x64 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + .text.LL_RCC_GetI2CClockFreq + 0x00000000 0x58 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + .text.LL_RCC_GetI2SClockFreq + 0x00000000 0x58 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + .text.LL_RCC_GetLPUARTClockFreq + 0x00000000 0x68 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + .text.LL_RCC_GetLPTIMClockFreq + 0x00000000 0x94 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + .text.LL_RCC_GetTIMClockFreq + 0x00000000 0x74 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + .text.LL_RCC_GetADCClockFreq + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + .text.LL_RCC_GetRTCClockFreq + 0x00000000 0x4c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rng.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rng.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rng.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rng.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rng.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o + .text.LL_RTC_StructInit + 0x00000000 0xe /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o + .text.LL_RTC_TIME_StructInit + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o + .text.LL_RTC_DATE_StructInit + 0x00000000 0xe /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o + .text.LL_RTC_ALMA_Init + 0x00000000 0x130 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o + .text.LL_RTC_ALMB_Init + 0x00000000 0x130 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o + .text.LL_RTC_ALMA_StructInit + 0x00000000 0x12 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o + .text.LL_RTC_ALMB_StructInit + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o + .text.LL_RTC_EnterInitMode + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o + .text.LL_RTC_Init + 0x00000000 0x4c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o + .text.LL_RTC_ExitInitMode + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o + .text.LL_RTC_WaitForSynchro + 0x00000000 0x90 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o + .text.LL_RTC_DeInit + 0x00000000 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o + .text.LL_RTC_TIME_Init + 0x00000000 0xd0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o + .text.LL_RTC_DATE_Init + 0x00000000 0xe0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_sdmmc.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_sdmmc.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_sdmmc.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_sdmmc.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_sdmmc.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_spi.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_spi.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_spi.c.o + .text.LL_SPI_DeInit + 0x00000000 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_spi.c.o + .text.LL_SPI_Init + 0x00000000 0x80 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_spi.c.o + .text.LL_SPI_StructInit + 0x00000000 0x1e /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_spi.c.o + .text.LL_I2S_DeInit + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_spi.c.o + .text.LL_I2S_Init + 0x00000000 0xa0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_spi.c.o + .text.LL_I2S_StructInit + 0x00000000 0x12 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_spi.c.o + .text.LL_I2S_ConfigPrescaler + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_spi.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_spi.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_spi.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_swpmi.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_swpmi.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_swpmi.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_swpmi.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_swpmi.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_system.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_system.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_system.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_system.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_system.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o + .text.LL_TIM_DeInit + 0x00000000 0xbc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o + .text.LL_TIM_StructInit + 0x00000000 0x12 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o + .text.LL_TIM_Init + 0x00000000 0x80 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o + .text.LL_TIM_OC_StructInit + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o + .text.LL_TIM_OC_Init + 0x00000000 0x2b8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o + .text.LL_TIM_IC_StructInit + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o + .text.LL_TIM_IC_Init + 0x00000000 0xe8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o + .text.LL_TIM_ENCODER_StructInit + 0x00000000 0x1c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o + .text.LL_TIM_ENCODER_Init + 0x00000000 0x60 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o + .text.LL_TIM_HALLSENSOR_StructInit + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o + .text.LL_TIM_HALLSENSOR_Init + 0x00000000 0x60 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o + .text.LL_TIM_BDTR_StructInit + 0x00000000 0x1e /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o + .text.LL_TIM_BDTR_Init + 0x00000000 0x9c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_ucpd.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_ucpd.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_ucpd.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_ucpd.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_ucpd.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usart.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usart.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usart.c.o + .text.LL_USART_DeInit + 0x00000000 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usart.c.o + .text.LL_USART_Init + 0x00000000 0xd8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usart.c.o + .text.LL_USART_StructInit + 0x00000000 0x1a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usart.c.o + .text.LL_USART_ClockInit + 0x00000000 0x30 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usart.c.o + .text.LL_USART_ClockStructInit + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usart.c.o + .rodata.USART_PRESCALER_TAB + 0x00000000 0x30 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usart.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usart.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usart.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usb.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usb.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usb.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usb.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usb.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_utils.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_utils.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_utils.c.o + .text.LL_Init1msTick + 0x00000000 0x20 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_utils.c.o + .text.LL_mDelay + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_utils.c.o + .text.LL_SetSystemCoreClock + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_utils.c.o + .text.LL_SetFlashLatency + 0x00000000 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_utils.c.o + .text.UTILS_EnablePLLAndSwitchSystem + 0x00000000 0xa0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_utils.c.o + .text.LL_PLL_ConfigSystemClock_HSI + 0x00000000 0x70 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_utils.c.o + .text.LL_PLL_ConfigSystemClock_HSE + 0x00000000 0x8c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_utils.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_utils.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_utils.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/new.cpp.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/new.cpp.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/new.cpp.o + .text._Znaj 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/new.cpp.o + .text._ZdlPv 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/new.cpp.o + .text._ZdaPv 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/new.cpp.o + .text._ZdaPvj 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/new.cpp.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/PortNames.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/PortNames.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/PortNames.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + .text.get_adc_channel + 0x00000000 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + .text.get_adc_internal_channel + 0x00000000 0x1c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + .text.HAL_ADC_MspInit + 0x00000000 0x3c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + .text.HAL_ADC_MspDeInit + 0x00000000 0x30 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + .text.adc_read_value + 0x00000000 0x15c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + .text.pwm_start + 0x00000000 0x98 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + .rodata.CSWTCH.17 + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + .rodata.CSWTCH.15 + 0x00000000 0x4c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + .data._ZL13g_current_pin + 0x00000000 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/bootloader.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/bootloader.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/bootloader.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/bootloader.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/bootloader.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + .text.getCurrentMicros + 0x00000000 0x48 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/core_callback.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/core_callback.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/core_callback.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/core_callback.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/core_callback.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/dwt.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/dwt.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/dwt.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/dwt.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/dwt.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/hw_config.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/hw_config.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/hw_config.c.o + .group 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + .group 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + .group 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + .text._ZNSt17_Function_handlerIFvvEPS0_E10_M_managerERSt9_Any_dataRKS3_St18_Manager_operation + 0x00000000 0x20 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + .text._ZNSt17_Function_handlerIFvvEPS0_E9_M_invokeERKSt9_Any_data + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + .text._ZNSt14_Function_baseD2Ev + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + .text._Z22stm32_interrupt_enable7PinNamePFvvEm + 0x00000000 0x70 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + .text._Z23stm32_interrupt_disableP12GPIO_TypeDeft + 0x00000000 0x6c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + .rodata._ZL13ll_exti_lines + 0x00000000 0x40 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/otp.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/otp.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/otp.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/otp.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/otp.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + .text.pinmap_find_function + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + .text.pinmap_function + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/stm32_def.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/stm32_def.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/stm32_def.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/stm32_def.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/stm32_def.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/system_stm32yyxx.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/system_stm32yyxx.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/system_stm32yyxx.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + .text.HAL_TIM_IC_MspInit + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + .text.HAL_TIM_IC_MspDeInit + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + .text.HAL_TIM_OC_MspInit + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + .text.HAL_TIM_Base_MspDeInit + 0x00000000 0x1e /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + .text.HAL_TIM_OC_MspDeInit + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + .text.getTimerChannel + 0x00000000 0x20 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + .text._gettimeofday + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + .text.get_serial_obj + 0x00000000 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + .text.uart_config_lowpower + 0x00000000 0x58 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + .group 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .group 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .group 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .group 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .group 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .text._ZNSt14_Function_baseD2Ev + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .text._gettimeofday + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .text._ZN7TwoWire8setClockEm + 0x00000000 0x30 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .text._ZN7TwoWire17beginTransmissionEh + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .text._ZN7TwoWire9onReceiveESt8functionIFviEE + 0x00000000 0x68 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .text._ZN7TwoWire9onRequestESt8functionIFvvEE + 0x00000000 0x68 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .text._ZN7TwoWire11requestFromEhjb + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .text._ZN7TwoWire11requestFromEhh + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .text._ZN7TwoWire11requestFromEiii + 0x00000000 0xe /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .text._ZN7TwoWire5beginEmm + 0x00000000 0xa0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .text._ZN7TwoWire5beginEibb + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + .text.i2c_setTiming + 0x00000000 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + .text.get_i2c_obj + 0x00000000 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + .text._gettimeofday + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + .rodata.PinMap_SPI_SSEL + 0x00000000 0x48 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + .rodata.PinMap_SPI_SCLK + 0x00000000 0x48 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + .rodata.PinMap_SPI_MISO + 0x00000000 0x60 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + .rodata.PinMap_SPI_MOSI + 0x00000000 0x60 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + .rodata.PinMap_ADC + 0x00000000 0xcc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/generic_clock.c.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/generic_clock.c.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/generic_clock.c.o + .text.SystemClock_Config + 0x00000000 0x76 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/generic_clock.c.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/generic_clock.c.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/generic_clock.c.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/variant_generic.cpp.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/variant_generic.cpp.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/variant_generic.cpp.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .text._gettimeofday + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .text._ZN14HardwareSerialC2Emmmm + 0x00000000 0x12c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .text._ZN14HardwareSerialC2E7PinNameS0_S0_S0_ + 0x00000000 0x24 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .text._ZN14HardwareSerialC2Em + 0x00000000 0x70 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .text._ZN14HardwareSerialC2E7PinName + 0x00000000 0x28 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .text._ZN14HardwareSerial5setRxE7PinName + 0x00000000 0x6 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .text._ZN14HardwareSerial5setTxE7PinName + 0x00000000 0x6 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .text._ZN14HardwareSerial6setRtsEm + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .text._ZN14HardwareSerial6setCtsEm + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .text._ZN14HardwareSerial9setRtsCtsEmm + 0x00000000 0x94 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .text._ZN14HardwareSerial6setRtsE7PinName + 0x00000000 0x6 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .text._ZN14HardwareSerial6setCtsE7PinName + 0x00000000 0x6 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .text._ZN14HardwareSerial9setRtsCtsE7PinNameS0_ + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .text._ZN14HardwareSerial13setHalfDuplexEv + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .text._ZNK14HardwareSerial12isHalfDuplexEv + 0x00000000 0xe /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .text._ZN14HardwareSerial17configForLowPowerEv + 0x00000000 0x24 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .text._ZN14HardwareSerial11setRxInvertEv + 0x00000000 0x6 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .text._ZN14HardwareSerial11setTxInvertEv + 0x00000000 0x6 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .text._ZN14HardwareSerial13setDataInvertEv + 0x00000000 0x6 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .group 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .group 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .group 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .group 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .group 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print17availableForWriteEv + 0x00000000 0x4 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print5flushEv + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print5writeEPKhj + 0x00000000 0x24 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._gettimeofday + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print5printEPK19__FlashStringHelper + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print5printERK6String + 0x00000000 0xe /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print5printEc + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print5printERK9Printable + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print7printlnERK6String + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print7printlnEc + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print7printlnERK9Printable + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print6printfEPK19__FlashStringHelperz + 0x00000000 0x16 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print7vprintfEPKcSt9__va_list + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print7vprintfEPK19__FlashStringHelperSt9__va_list + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print11printNumberEmh + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print5printEli + 0x00000000 0x3e /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print5printEii + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print7printlnEii + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print7printlnEli + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print5printEmi + 0x00000000 0x18 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print5printEhi + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print7printlnEhi + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print5printEji + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print7printlnEji + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print7printlnEmi + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print14printULLNumberEyh + 0x00000000 0xec /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print5printExi + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print7printlnExi + 0x00000000 0x18 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print5printEyi + 0x00000000 0x1e /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print7printlnEyi + 0x00000000 0x18 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .rodata._ZN5Print10printFloatIfEEjT_h.str1.1 + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print10printFloatIfEEjT_h + 0x00000000 0x120 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print5printEfi + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print7printlnEfi + 0x00000000 0x16 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print10printFloatIdEEjT_h + 0x00000000 0x16c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print5printEdi + 0x00000000 0xe /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .text._ZN5Print7printlnEdi + 0x00000000 0x1a /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .rodata._ZTV5Print + 0x00000000 0x18 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .group 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .group 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .text._ZN5Print17availableForWriteEv + 0x00000000 0x4 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .text._ZN5Print5flushEv + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .text._gettimeofday + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .text._ZN6Stream9timedPeekEv + 0x00000000 0x2a /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .text._ZN6Stream13peekNextDigitE13LookaheadModeb + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .text._ZN6Stream10setTimeoutEm + 0x00000000 0x4 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .text._ZN6Stream8parseIntE13LookaheadModec + 0x00000000 0x54 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .text._ZN6Stream10parseFloatE13LookaheadModec + 0x00000000 0xa4 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .rodata._ZN6Stream10readStringEv.str1.1 + 0x00000000 0x1 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .text._ZN6Stream10readStringEv + 0x00000000 0x28 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .text._ZN6Stream15readStringUntilEc + 0x00000000 0x30 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .text._ZN6Stream9findMultiEPNS_11MultiTargetEi + 0x00000000 0xb4 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .text._ZN6Stream9findUntilEPKcjS1_j + 0x00000000 0x46 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .text._ZN6Stream9findUntilEPKcS1_ + 0x00000000 0x26 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .text._ZN6Stream4findEPKcj + 0x00000000 0x1e /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .text._ZN6Stream4findEPKc + 0x00000000 0x2a /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .rodata._ZTV6Stream + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .group 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + .group 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + .group 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + .text._ZNSt17_Function_handlerIFvvEPS0_E10_M_managerERSt9_Any_dataRKS3_St18_Manager_operation + 0x00000000 0x20 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + .text._ZNSt17_Function_handlerIFvvEPS0_E9_M_invokeERKSt9_Any_data + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + .text._ZNSt14_Function_baseD2Ev + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + .text._gettimeofday + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + .text._Z15attachInterruptmPFvvEm + 0x00000000 0x70 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + .text._Z15detachInterruptm + 0x00000000 0x74 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) + .text._Z3maplllll + 0x00000000 0x16 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) + .text._Z8makeWordt + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) + .text._Z8makeWordhh + 0x00000000 0x6 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) + .group 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6String14StringIfHelperEv + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6StringD2Ev + 0x00000000 0xe /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String10invalidateEv + 0x00000000 0x18 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String12changeBufferEj + 0x00000000 0x18 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String7reserveEj + 0x00000000 0x28 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String4copyEPKcj + 0x00000000 0x28 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6StringC2EPKc + 0x00000000 0x26 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String4copyEPK19__FlashStringHelperj + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String4moveERS_ + 0x00000000 0x40 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6StringC2EOS_ + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6StringC2EO15StringSumHelper + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6StringaSERKS_ + 0x00000000 0x20 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6StringC2ERKS_ + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6StringaSEOS_ + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6StringaSEO15StringSumHelper + 0x00000000 0x10 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6StringaSEPKc + 0x00000000 0x22 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6StringC2Ec + 0x00000000 0x1c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6StringC2Ehh + 0x00000000 0x22 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6StringC2Eih + 0x00000000 0x24 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6StringC2Ejh + 0x00000000 0x24 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6StringC2Elh + 0x00000000 0x24 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6StringC2Emh + 0x00000000 0x24 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6StringC2Efh + 0x00000000 0x34 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6StringC2Edh + 0x00000000 0x30 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6StringC2EPK19__FlashStringHelper + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6StringaSEPK19__FlashStringHelper + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String6concatEPKcj + 0x00000000 0x30 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String6concatERKS_ + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String6concatEPKc + 0x00000000 0x1a /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String6concatEc + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String6concatEh + 0x00000000 0x20 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String6concatEi + 0x00000000 0x22 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String6concatEj + 0x00000000 0x22 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String6concatEl + 0x00000000 0x22 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String6concatEm + 0x00000000 0x22 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String6concatEf + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String6concatEd + 0x00000000 0x2a /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String6concatEPK19__FlashStringHelper + 0x00000000 0x38 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZplRK15StringSumHelperRK6String + 0x00000000 0x1a /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZplRK15StringSumHelperPKc + 0x00000000 0x28 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZplRK15StringSumHelperc + 0x00000000 0x16 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZplRK15StringSumHelperh + 0x00000000 0x16 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZplRK15StringSumHelperi + 0x00000000 0x16 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZplRK15StringSumHelperj + 0x00000000 0x16 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZplRK15StringSumHelperl + 0x00000000 0x16 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZplRK15StringSumHelperm + 0x00000000 0x16 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZplRK15StringSumHelperf + 0x00000000 0x16 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZplRK15StringSumHelperd + 0x00000000 0x16 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZplRK15StringSumHelperPK19__FlashStringHelper + 0x00000000 0x16 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6String9compareToERKS_ + 0x00000000 0x36 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6String6equalsERKS_ + 0x00000000 0x1a /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6String6equalsEPKc + 0x00000000 0x28 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6StringltERKS_ + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6StringgtERKS_ + 0x00000000 0xe /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6StringleERKS_ + 0x00000000 0xe /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6StringgeERKS_ + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6String16equalsIgnoreCaseERKS_ + 0x00000000 0x40 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6String10startsWithERKS_j + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6String10startsWithERKS_ + 0x00000000 0x18 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6String8endsWithERKS_ + 0x00000000 0x2a /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String9setCharAtEjc + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6StringixEj + 0x00000000 0x1c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6StringixEj + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6String6charAtEj + 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6String8getBytesEPhjj + 0x00000000 0x34 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6String7indexOfEcj + 0x00000000 0x1e /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6String7indexOfEc + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6String7indexOfERKS_j + 0x00000000 0x20 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6String7indexOfERKS_ + 0x00000000 0xa /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6String11lastIndexOfEcj + 0x00000000 0x32 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6String11lastIndexOfEc + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6String11lastIndexOfERKS_j + 0x00000000 0x50 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6String11lastIndexOfERKS_ + 0x00000000 0xe /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .rodata._ZNK6String9substringEjj.str1.1 + 0x00000000 0x1 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6String9substringEjj + 0x00000000 0x48 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String7replaceEcc + 0x00000000 0x18 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String7replaceERKS_S1_ + 0x00000000 0x126 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String6removeEjj + 0x00000000 0x34 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String6removeEj + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String11toLowerCaseEv + 0x00000000 0x1a /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String11toUpperCaseEv + 0x00000000 0x1a /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZN6String4trimEv + 0x00000000 0x52 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6String5toIntEv + 0x00000000 0x12 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6String8toDoubleEv + 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text._ZNK6String7toFloatEv + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .bss._ZZN6StringixEjE19dummy_writable_char + 0x00000000 0x1 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(itoa.c.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(itoa.c.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(itoa.c.o) + .text.ltoa 0x00000000 0x84 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(itoa.c.o) + .text.itoa 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(itoa.c.o) + .text.ultoa 0x00000000 0x64 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(itoa.c.o) + .text.utoa 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(itoa.c.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(itoa.c.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(itoa.c.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(main.cpp.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(main.cpp.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(main.cpp.o) + .text._gettimeofday + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(main.cpp.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(pins_arduino.c.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(pins_arduino.c.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(pins_arduino.c.o) + .text.analogInputToPinName + 0x00000000 0x100 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(pins_arduino.c.o) + .text.digitalpinIsAnalogInput + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(pins_arduino.c.o) + .text.digitalPinToAnalogInput + 0x00000000 0x38 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(pins_arduino.c.o) + .text 0x00000000 0x14 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + .text._gettimeofday + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + .text.digitalRead + 0x00000000 0x80 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + .text.digitalToggle + 0x00000000 0x80 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_time.c.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_time.c.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_time.c.o) + .text._gettimeofday + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_time.c.o) + .text.micros 0x00000000 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_time.c.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WSerial.cpp.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WSerial.cpp.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WSerial.cpp.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(board.c.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(board.c.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(board.c.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(hooks.c.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(hooks.c.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(hooks.c.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + .text.mapResolution + 0x00000000 0x28 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + .text._gettimeofday + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + .text.analogReadResolution + 0x00000000 0x34 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + .text.analogWriteResolution + 0x00000000 0x20 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + .text.analogWriteFrequency + 0x00000000 0xc /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + .text.analogReference + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + .text.analogRead + 0x00000000 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + .text.analogOutputInit + 0x00000000 0x2 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + .text.analogWrite + 0x00000000 0xc0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + .data._writeFreq + 0x00000000 0x4 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + .data._internalWriteResolution + 0x00000000 0x4 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + .data._writeResolution + 0x00000000 0x4 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + .data._internalReadResolution + 0x00000000 0x4 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + .data._readResolution + 0x00000000 0x4 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-isspace.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-isspace.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-isspace.o) + .text.isspace 0x00000000 0x10 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-isspace.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-isspace.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-isspace.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atexit.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atexit.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atexit.o) + .text.atexit 0x00000000 0x10 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atexit.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atexit.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atexit.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atof.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atof.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atof.o) + .text.atof 0x00000000 0xa /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atof.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atof.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atof.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atol.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atol.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atol.o) + .text.atol 0x00000000 0xc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atol.o) + .text._atol_r 0x00000000 0xc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atol.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atol.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atol.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-calloc.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-calloc.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-calloc.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-callocr.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-callocr.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-callocr.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-tolower.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-tolower.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-tolower.o) + .text.tolower 0x00000000 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-tolower.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-tolower.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-tolower.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-toupper.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-toupper.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-toupper.o) + .text.toupper 0x00000000 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-toupper.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-toupper.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-toupper.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-exit.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-exit.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-exit.o) + .text.exit 0x00000000 0x28 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-exit.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-exit.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-exit.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-malloc.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-malloc.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-malloc.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-snprintf.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-snprintf.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-snprintf.o) + .text._snprintf_r + 0x00000000 0x62 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-snprintf.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mlock.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mlock.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mlock.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sprintf.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sprintf.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sprintf.o) + .text._sprintf_r + 0x00000000 0x3c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sprintf.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-rand.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-rand.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-rand.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-realloc.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-realloc.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-realloc.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + .text.__fp_lock + 0x00000000 0x18 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + .text.__fp_unlock + 0x00000000 0x18 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + .text.__sfp 0x00000000 0xa8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + .text.__fp_lock_all + 0x00000000 0x1c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + .text.__fp_unlock_all + 0x00000000 0x1c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vdprintf.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vdprintf.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vdprintf.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reallocr.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reallocr.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reallocr.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + .text.sulp 0x00000000 0x30 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + .rodata._strtod_l.str1.1 + 0x00000000 0xf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + .text._strtod_l + 0x00000000 0xc04 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + .text._strtod_r + 0x00000000 0x10 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + .text.strtod_l + 0x00000000 0x18 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + .text.strtod 0x00000000 0x1c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + .text.strtof_l + 0x00000000 0xac /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + .text.strtof 0x00000000 0xc0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + .rodata.fpinan.0 + 0x00000000 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + .rodata.fpi.1 0x00000000 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + .rodata.tinytens + 0x00000000 0x28 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtol.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtol.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtol.o) + .text._strtol_l.isra.0 + 0x00000000 0x114 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtol.o) + .text._strtol_r + 0x00000000 0x8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtol.o) + .text.strtol_l + 0x00000000 0x18 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtol.o) + .text.strtol 0x00000000 0x18 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtol.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtol.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtol.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fwalk.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fwalk.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fwalk.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vasnprintf.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vasnprintf.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vasnprintf.o) + .text.vasnprintf + 0x00000000 0x18 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vasnprintf.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memmove.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memmove.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memmove.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memset.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memset.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memset.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strcat.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strcat.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strcat.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strchr.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strchr.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strchr.o) + .text.strchr 0x00000000 0x1c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strchr.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strchr.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strchr.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strncmp.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strncmp.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strncmp.o) + .text.strncmp 0x00000000 0x22 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strncmp.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strncmp.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strncmp.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strncpy.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strncpy.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strncpy.o) + .text.strncpy 0x00000000 0x28 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strncpy.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strncpy.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strncpy.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strrchr.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strrchr.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strrchr.o) + .text.strrchr 0x00000000 0x28 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strrchr.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strrchr.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strrchr.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strstr.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strstr.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strstr.o) + .text.strstr 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strstr.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strstr.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strstr.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sbrkr.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sbrkr.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sbrkr.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-writer.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-writer.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-writer.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-errno.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-errno.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-errno.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-init.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-init.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-init.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fini.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fini.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fini.o) + .text.__libc_fini_array + 0x00000000 0x28 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fini.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fini.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fini.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + .text.__retarget_lock_init + 0x00000000 0x2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + .text.__retarget_lock_close + 0x00000000 0x2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + .text.__retarget_lock_close_recursive + 0x00000000 0x2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + .text.__retarget_lock_acquire + 0x00000000 0x2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + .text.__retarget_lock_try_acquire + 0x00000000 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + .text.__retarget_lock_try_acquire_recursive + 0x00000000 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + .text.__retarget_lock_release + 0x00000000 0x2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + .bss.__lock___arc4random_mutex + 0x00000000 0x1 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + .bss.__lock___dd_hash_mutex + 0x00000000 0x1 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + .bss.__lock___tz_mutex + 0x00000000 0x1 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + .bss.__lock___env_recursive_mutex + 0x00000000 0x1 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + .bss.__lock___at_quick_exit_mutex + 0x00000000 0x1 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + .bss.__lock___atexit_recursive_mutex + 0x00000000 0x1 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) + .rodata._setlocale_r.str1.1 + 0x00000000 0x9 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) + .text._setlocale_r + 0x00000000 0x40 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) + .text.__locale_mb_cur_max + 0x00000000 0x10 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) + .text.setlocale + 0x00000000 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) + .rodata.str1.1 + 0x00000000 0x2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) + .data.__global_locale + 0x00000000 0x16c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) + .bss._PathLocale + 0x00000000 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reent.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reent.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reent.o) + .text._reclaim_reent + 0x00000000 0xd4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reent.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-impure.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-impure.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-impure.o) + .text 0x00000000 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strcmp.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strcmp.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strcmp.o) + .ARM.attributes + 0x00000000 0x1c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strcmp.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strcpy.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strcpy.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strcpy.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memcpy-stub.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memcpy-stub.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memcpy-stub.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strlen.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strlen.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-ctype_.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-ctype_.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-ctype_.o) + .rodata._ctype_ + 0x00000000 0x101 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-ctype_.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-ctype_.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-ctype_.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__atexit.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__atexit.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__atexit.o) + .text.__register_exitproc + 0x00000000 0xc0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__atexit.o) + .bss.__atexit0 + 0x00000000 0x8c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__atexit.o) + .data.__atexit_dummy + 0x00000000 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__atexit.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__atexit.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__atexit.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libm_a-s_nan.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libm_a-s_nan.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libm_a-s_nan.o) + .text.nan 0x00000000 0xc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libm_a-s_nan.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libm_a-s_nan.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libm_a-s_nan.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libm_a-sf_nan.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libm_a-sf_nan.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libm_a-sf_nan.o) + .text.nanf 0x00000000 0x8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libm_a-sf_nan.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libm_a-sf_nan.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libm_a-sf_nan.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__call_atexit.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__call_atexit.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__call_atexit.o) + .text.__call_exitprocs + 0x00000000 0xb4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__call_atexit.o) + .bss.__atexit 0x00000000 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__call_atexit.o) + .data.__atexit_recursive_mutex + 0x00000000 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__call_atexit.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__call_atexit.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__call_atexit.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-assert.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-assert.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-assert.o) + .text.__assert + 0x00000000 0xa /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-assert.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-freer.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-freer.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-freer.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-gethex.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-gethex.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-gethex.o) + .text.rshift 0x00000000 0xa6 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-gethex.o) + .text.__hexdig_fun + 0x00000000 0x2a /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-gethex.o) + .rodata.__gethex.str1.1 + 0x00000000 0xcc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-gethex.o) + .text.__gethex + 0x00000000 0x448 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-gethex.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-gethex.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-gethex.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-hexnan.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-hexnan.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-hexnan.o) + .text.L_shift 0x00000000 0x24 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-hexnan.o) + .text.__match 0x00000000 0x28 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-hexnan.o) + .text.__hexnan + 0x00000000 0x154 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-hexnan.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-hexnan.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-hexnan.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) + .text.__ssprint_r + 0x00000000 0xf8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mbtowc_r.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mbtowc_r.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mbtowc_r.o) + .text._mbtowc_r + 0x00000000 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mbtowc_r.o) + .text.__ascii_mbtowc + 0x00000000 0x24 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mbtowc_r.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mbtowc_r.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mbtowc_r.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf_i.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf_i.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf_i.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o) + .text.fflush 0x00000000 0x30 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .rodata._Balloc.str1.1 + 0x00000000 0xc9 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .text._Balloc 0x00000000 0x84 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .text._Bfree 0x00000000 0x48 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .rodata.__multadd.str1.1 + 0x00000000 0x11 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .text.__multadd + 0x00000000 0x88 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .text.__s2b 0x00000000 0x98 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .text.__hi0bits + 0x00000000 0x42 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .text.__lo0bits + 0x00000000 0x5c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .text.__i2b 0x00000000 0x30 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .text.__multiply + 0x00000000 0x158 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .text.__pow5mult + 0x00000000 0xc4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .text.__lshift + 0x00000000 0xd8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .text.__mcmp 0x00000000 0x36 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .text.__mdiff 0x00000000 0x148 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .text.__ulp 0x00000000 0x40 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .text.__b2d 0x00000000 0x98 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .text.__d2b 0x00000000 0xc0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .text.__ratio 0x00000000 0x54 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .text._mprec_log10 + 0x00000000 0x34 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .text.__copybits + 0x00000000 0x42 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .text.__any_on + 0x00000000 0x46 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .rodata.p05.0 0x00000000 0xc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .rodata.__mprec_tinytens + 0x00000000 0x28 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .rodata.__mprec_bigtens + 0x00000000 0x28 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .rodata.__mprec_tens + 0x00000000 0xc8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-msizer.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-msizer.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-msizer.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) + .text.__seofread + 0x00000000 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fprintf.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fprintf.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fprintf.o) + .text._fprintf_r + 0x00000000 0x16 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fprintf.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wctomb_r.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wctomb_r.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wctomb_r.o) + .text._wctomb_r + 0x00000000 0x10 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wctomb_r.o) + .text.__ascii_wctomb + 0x00000000 0x1a /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wctomb_r.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wctomb_r.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wctomb_r.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lseekr.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lseekr.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lseekr.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-readr.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-readr.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-readr.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-closer.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-closer.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-closer.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memchr-stub.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memchr-stub.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memchr-stub.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-abort.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-abort.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-abort.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) + .text.__sprint_r + 0x00000000 0x20 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) + .text.vfprintf + 0x00000000 0x18 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wbuf.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wbuf.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wbuf.o) + .text.__swbuf 0x00000000 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wbuf.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wsetup.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wsetup.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wsetup.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fvwrite.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fvwrite.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fvwrite.o) + .text.__sfvwrite_r + 0x00000000 0x2c4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fvwrite.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fvwrite.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fvwrite.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-makebuf.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-makebuf.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-makebuf.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) + .text._init_signal_r + 0x00000000 0x2a /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) + .text._signal_r + 0x00000000 0x32 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) + .text.__sigtramp_r + 0x00000000 0x46 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) + .text.signal 0x00000000 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) + .text._init_signal + 0x00000000 0x10 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) + .text.__sigtramp + 0x00000000 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-isattyr.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-isattyr.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-isattyr.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signalr.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signalr.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signalr.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fstatr.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fstatr.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fstatr.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_atan2.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_atan2.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_atan2.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_sqrt.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_sqrt.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_sqrt.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_cos.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_cos.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_cos.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_sin.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_sin.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_sin.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_cos.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_cos.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_cos.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_sin.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_sin.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_sin.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_atan2.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_atan2.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_atan2.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_sqrt.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_sqrt.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_sqrt.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_rem_pio2.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_rem_pio2.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_rem_pio2.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_atan.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_atan.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_atan.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_fabs.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_fabs.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_fabs.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_rem_pio2.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_rem_pio2.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_rem_pio2.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_floor.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_floor.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_floor.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_scalbn.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_scalbn.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_scalbn.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_thumb1_case_uqi.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_thumb1_case_uqi.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_thumb1_case_shi.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_thumb1_case_shi.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_divsi3.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_divsi3.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_dvmd_tls.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_dvmd_tls.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpdf2.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpdf2.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpsf2.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpsf2.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_aeabi_uldivmod.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_aeabi_uldivmod.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_muldi3.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_muldi3.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_muldi3.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunssfsi.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunssfsi.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunssfsi.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfsi.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfsi.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfsi.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixdfdi.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixdfdi.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixdfdi.o) + .text.__fixdfdi + 0x00000000 0x38 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixdfdi.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixdfdi.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixdfdi.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfdi.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfdi.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfdi.o) + .text.__fixunsdfdi + 0x00000000 0x3c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfdi.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfdi.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfdi.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_floatdidf.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_floatdidf.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_floatdidf.o) + .text.__floatdidf + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_floatdidf.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_floatdidf.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_floatdidf.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_udivmoddi4.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_udivmoddi4.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_udivmoddi4.o) + .ARM.extab.text.__udivmoddi4 + 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_udivmoddi4.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(addsf3.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(addsf3.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(addsf3.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(divsf3.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(divsf3.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(divsf3.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(eqsf2.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(eqsf2.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(eqsf2.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(gesf2.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(gesf2.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(gesf2.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(lesf2.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(lesf2.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(lesf2.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(mulsf3.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(mulsf3.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(mulsf3.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(subsf3.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(subsf3.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(subsf3.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(unordsf2.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(unordsf2.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(unordsf2.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(fixsfsi.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(fixsfsi.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(fixsfsi.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatsisf.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatsisf.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatsisf.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatunsisf.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatunsisf.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatunsisf.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(adddf3.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(adddf3.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(adddf3.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(divdf3.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(divdf3.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(divdf3.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(eqdf2.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(eqdf2.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(eqdf2.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(gedf2.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(gedf2.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(gedf2.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(ledf2.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(ledf2.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(ledf2.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(muldf3.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(muldf3.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(muldf3.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(subdf3.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(subdf3.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(subdf3.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(unorddf2.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(unorddf2.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(unorddf2.o) + .text.__aeabi_dcmpun + 0x00000000 0x44 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(unorddf2.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(unorddf2.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(unorddf2.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(fixdfsi.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(fixdfsi.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(fixdfsi.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatsidf.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatsidf.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatsidf.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatunsidf.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatunsidf.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatunsidf.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(extendsfdf2.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(extendsfdf2.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(extendsfdf2.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(truncdfsf2.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(truncdfsf2.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(truncdfsf2.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_clzsi2.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_clzsi2.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_clzdi2.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_clzdi2.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) + .rodata._ZNKSt17bad_function_call4whatEv.str1.1 + 0x00000000 0x12 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) + .text._ZNKSt17bad_function_call4whatEv + 0x00000000 0x8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) + .text._ZNSt17bad_function_callD2Ev + 0x00000000 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) + .text._ZNSt17bad_function_callD0Ev + 0x00000000 0x12 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) + .rodata._ZTSSt17bad_function_call + 0x00000000 0x16 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) + .rodata._ZTISt17bad_function_call + 0x00000000 0xc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) + .rodata._ZTVSt17bad_function_call + 0x00000000 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .text._ZNSt9exceptionD2Ev + 0x00000000 0x2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .text._ZNSt13bad_exceptionD2Ev + 0x00000000 0x2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .rodata._ZNKSt9exception4whatEv.str1.1 + 0x00000000 0xf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .text._ZNKSt9exception4whatEv + 0x00000000 0x8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .rodata._ZNKSt13bad_exception4whatEv.str1.1 + 0x00000000 0x13 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .text._ZNKSt13bad_exception4whatEv + 0x00000000 0x8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .text._ZNSt9exceptionD0Ev + 0x00000000 0xe /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .text._ZNSt13bad_exceptionD0Ev + 0x00000000 0xe /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .text._ZN10__cxxabiv115__forced_unwindD2Ev + 0x00000000 0x2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .text._ZN10__cxxabiv115__forced_unwindD0Ev + 0x00000000 0xe /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .text._ZN10__cxxabiv119__foreign_exceptionD2Ev + 0x00000000 0x2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .text._ZN10__cxxabiv119__foreign_exceptionD0Ev + 0x00000000 0xe /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .text._ZGTtNKSt9exceptionD1Ev + 0x00000000 0x2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .text._ZGTtNKSt13bad_exceptionD1Ev + 0x00000000 0x2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .rodata._ZTSSt9exception + 0x00000000 0xd /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .rodata._ZTISt9exception + 0x00000000 0x8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .rodata._ZTSSt13bad_exception + 0x00000000 0x12 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .rodata._ZTISt13bad_exception + 0x00000000 0xc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .rodata._ZTSN10__cxxabiv115__forced_unwindE + 0x00000000 0x20 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .rodata._ZTIN10__cxxabiv115__forced_unwindE + 0x00000000 0x8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .rodata._ZTSN10__cxxabiv119__foreign_exceptionE + 0x00000000 0x24 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .rodata._ZTIN10__cxxabiv119__foreign_exceptionE + 0x00000000 0x8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .rodata._ZTVSt9exception + 0x00000000 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .rodata._ZTVSt13bad_exception + 0x00000000 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .rodata._ZTVN10__cxxabiv115__forced_unwindE + 0x00000000 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .rodata._ZTVN10__cxxabiv119__foreign_exceptionE + 0x00000000 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) + .text._ZN10__cxxabiv120__si_class_type_infoD2Ev + 0x00000000 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) + .text._ZN10__cxxabiv120__si_class_type_infoD0Ev + 0x00000000 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) + .text._ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ + 0x00000000 0x32 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) + .text._ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE + 0x00000000 0x72 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) + .text._ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE + 0x00000000 0x22 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) + .rodata._ZTSN10__cxxabiv120__si_class_type_infoE + 0x00000000 0x25 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) + .rodata._ZTIN10__cxxabiv120__si_class_type_infoE + 0x00000000 0xc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) + .rodata._ZTVN10__cxxabiv120__si_class_type_infoE + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + .text._ZNSt9type_infoD2Ev + 0x00000000 0x2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + .text._ZNKSt9type_info14__is_pointer_pEv + 0x00000000 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + .text._ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv + 0x00000000 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + .text._ZNSt9type_infoD0Ev + 0x00000000 0xe /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + .text._ZNKSt9type_infoeqERKS_ + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + .text._ZNKSt9type_info10__do_catchEPKS_PPvj + 0x00000000 0x8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + .rodata._ZTSSt9type_info + 0x00000000 0xd /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + .rodata._ZTISt9type_info + 0x00000000 0x8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + .rodata._ZTVSt9type_info + 0x00000000 0x20 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv + 0x00000000 0x34 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + .text._ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ + 0x00000000 0xc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + .text._ZN10__cxxabiv117__class_type_infoD2Ev + 0x00000000 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + .text._ZN10__cxxabiv117__class_type_infoD0Ev + 0x00000000 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + .text._ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE + 0x00000000 0x3a /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE + 0x00000000 0x1a /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + .text._ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj + 0x00000000 0x24 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + .rodata._ZTSN10__cxxabiv117__class_type_infoE + 0x00000000 0x22 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + .rodata._ZTIN10__cxxabiv117__class_type_infoE + 0x00000000 0xc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + .rodata._ZTVN10__cxxabiv117__class_type_infoE + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtend.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtend.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtend.o + .rodata.all_implied_fbits + 0x00000000 0x24 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtend.o + .eh_frame 0x00000000 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtend.o + .comment 0x00000000 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtend.o + .ARM.attributes + 0x00000000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtend.o + .text 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtn.o + .data 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtn.o + .bss 0x00000000 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtn.o + +Memory Configuration + +Name Origin Length Attributes +*default* 0x00000000 0xffffffff +RAM 0x20000000 0x00002000 xrw +FLASH 0x08000000 0x00010000 xr + +Linker script and memory map + +START GROUP +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/MD5.cpp.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/requiredLibraries.cpp.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Rolling_Buffer.cpp.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_can.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ccb.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cec.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_comp.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_comp_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cordic.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cryp.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cryp_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dac.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dac_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dcache.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dcmi.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dcmi_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dfsdm.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dfsdm_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma2d.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dsi.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dts.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_eth.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_eth_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_exti.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fdcan.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_firewall.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ramfunc.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmac.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpi2c.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpi2c_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpsmbus.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_fmpsmbus_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gfxmmu.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gfxtim.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpu2d.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gtzc.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hash.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hash_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hcd.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hrtim.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_hsem.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i3c.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_icache.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ipcc.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_irda.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_iwdg.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_jpeg.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_lcd.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_lptim.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ltdc.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ltdc_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mdf.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mdios.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mdma.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mmc.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_mmc_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_nand.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_nor.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_opamp.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_opamp_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ospi.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_otfdec.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pccard.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pcd.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pcd_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pka.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pssi.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_qspi.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_radio.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_radio_timer.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ramcfg.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_ramecc.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rng.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rng_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sai.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sai_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sd.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sd_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sdadc.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sdio.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sdram.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smartcard.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smartcard_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smbus.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_smbus_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spdifrx.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_sram.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_subghz.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_swpmi.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tsc.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_usart.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_usart_ex.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_wwdg.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_xspi.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_adc.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_bdma.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_comp.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_cordic.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_crc.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_crs.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dac.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_delayblock.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dlyb.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dma.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dma2d.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_exti.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fmac.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fmc.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fmpi2c.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_fsmc.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_gpio.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_hrtim.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_i2c.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_i3c.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_icache.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lpgpio.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lptim.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lpuart.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_mdma.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_opamp.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_pka.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_pwr.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rng.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_sdmmc.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_spi.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_swpmi.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_system.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_ucpd.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usart.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usb.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_utils.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/new.cpp.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/PortNames.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/bootloader.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/core_callback.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/dwt.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/hw_config.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/otp.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/stm32_def.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/system_stm32yyxx.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/generic_clock.c.o +LOAD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/variant_generic.cpp.o +LOAD /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a +LOAD /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a +END GROUP +LOAD /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a +LOAD /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a +LOAD /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a +START GROUP +LOAD /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a +LOAD /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a +END GROUP +START GROUP +LOAD /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a +LOAD /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a +END GROUP +LOAD /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtend.o +LOAD /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtn.o + 0x20002000 _estack = (ORIGIN (RAM) + LENGTH (RAM)) + 0x00000200 _Min_Heap_Size = 0x200 + 0x00000400 _Min_Stack_Size = 0x400 + +.isr_vector 0x08000000 0xbc + 0x08000000 . = ALIGN (0x4) + *(.isr_vector) + .isr_vector 0x08000000 0xbc /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) + 0x08000000 g_pfnVectors + 0x080000bc . = ALIGN (0x4) + +.text 0x080000bc 0xe25c + 0x080000bc . = ALIGN (0x4) + *(.text) + .text 0x080000bc 0xe /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strlen.o) + 0x080000bc strlen + *fill* 0x080000ca 0x2 + .text 0x080000cc 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_thumb1_case_uqi.o) + 0x080000cc __gnu_thumb1_case_uqi + .text 0x080000e0 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_thumb1_case_shi.o) + 0x080000e0 __gnu_thumb1_case_shi + .text 0x080000f4 0x114 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o) + 0x080000f4 __udivsi3 + 0x080000f4 __aeabi_uidiv + 0x08000200 __aeabi_uidivmod + .text 0x08000208 0x1d4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_divsi3.o) + 0x08000208 __aeabi_idiv + 0x08000208 __divsi3 + 0x080003d4 __aeabi_idivmod + .text 0x080003dc 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_dvmd_tls.o) + 0x080003dc __aeabi_ldiv0 + 0x080003dc __aeabi_idiv0 + .text 0x080003e0 0x7c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpdf2.o) + 0x080003e0 __aeabi_cdrcmple + 0x080003f0 __aeabi_cdcmple + 0x080003f0 __aeabi_cdcmpeq + 0x08000400 __aeabi_dcmpeq + 0x0800040c __aeabi_dcmplt + 0x08000420 __aeabi_dcmple + 0x08000434 __aeabi_dcmpgt + 0x08000448 __aeabi_dcmpge + .text 0x0800045c 0x74 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpsf2.o) + 0x0800045c __aeabi_cfrcmple + 0x08000464 __aeabi_cfcmple + 0x08000464 __aeabi_cfcmpeq + 0x08000474 __aeabi_fcmpeq + 0x08000480 __aeabi_fcmplt + 0x08000494 __aeabi_fcmple + 0x080004a8 __aeabi_fcmpgt + 0x080004bc __aeabi_fcmpge + .text 0x080004d0 0x40 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_aeabi_uldivmod.o) + 0x080004d0 __aeabi_uldivmod + .text 0x08000510 0x3c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_clzsi2.o) + 0x08000510 __clzsi2 + .text 0x0800054c 0x18 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_clzdi2.o) + 0x0800054c __clzdi2 + *(.text*) + .text.__do_global_dtors_aux + 0x08000564 0x28 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtbegin.o + .text.frame_dummy + 0x0800058c 0x20 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtbegin.o + .text._ZN3MD59make_hashEPc + 0x080005ac 0x164 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/MD5.cpp.o + 0x080005ac MD5::make_hash(char*) + .text._ZN3MD511make_digestEPKhj + 0x08000710 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/MD5.cpp.o + 0x08000710 MD5::make_digest(unsigned char const*, unsigned int) + .text._Z15waitForNextStept + 0x08000764 0x28 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x08000764 waitForNextStep(unsigned short) + .text._Z18sendCommandToModemPKc + 0x0800078c 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x0800078c sendCommandToModem(char const*) + .text._Z15sendTextToModemPKc + 0x080007b0 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x080007b0 sendTextToModem(char const*) + .text._Z19configureModemSleepv + 0x080007d4 0x84 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x080007d4 configureModemSleep() + .text._Z9wakeModemv + 0x08000858 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x08000858 wakeModem() + .text._Z15putModemToSleepv + 0x080008a8 0x68 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x080008a8 putModemToSleep() + .text._Z17composeReportLinejPc + 0x08000910 0xa4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x08000910 composeReportLine(unsigned int, char*) + .text._Z20generateWindguruHashPcPKcS1_S1_ + 0x080009b4 0x44 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x080009b4 generateWindguruHash(char*, char const*, char const*, char const*) + .text._Z16buildWindguruUrlPcj + 0x080009f8 0xa0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x080009f8 buildWindguruUrl(char*, unsigned int) + .text._Z12processModemv + 0x08000a98 0x308 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x08000a98 processModem() + .text._Z12initWatchdogv + 0x08000da0 0x84 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x08000da0 initWatchdog() + .text.setup 0x08000e24 0x1d4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x08000e24 setup + .text.loop 0x08000ff8 0x78 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x08000ff8 loop + .text.SystemClock_Config + 0x08001070 0x60 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x08001070 SystemClock_Config + .text.startup._GLOBAL__sub_I_Anemometer + 0x080010d0 0x40 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .text._Z16onTickerTimerISRv + 0x08001110 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + 0x08001110 onTickerTimerISR() + .text._Z15onSpeedPulseISRv + 0x0800111c 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + 0x0800111c onSpeedPulseISR() + .text._ZNSt17_Function_handlerIFvvEPS0_E10_M_managerERSt9_Any_dataRKS3_St18_Manager_operation + 0x08001140 0x20 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + 0x08001140 std::_Function_handler::_M_manager(std::_Any_data&, std::_Any_data const&, std::_Manager_operation) + .text._ZNSt17_Function_handlerIFvvEPS0_E9_M_invokeERKSt9_Any_data + 0x08001160 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + 0x08001160 std::_Function_handler::_M_invoke(std::_Any_data const&) + .text._ZNSt14_Function_baseD2Ev + 0x08001168 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + 0x08001168 std::_Function_base::~_Function_base() + 0x08001168 std::_Function_base::~_Function_base() + .text._ZN7WN_CoreC2Ev + 0x0800117c 0x4c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + 0x0800117c WN_Core::WN_Core() + 0x0800117c WN_Core::WN_Core() + .text._ZN7WN_Core5beginEv + 0x080011c8 0xc4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + 0x080011c8 WN_Core::begin() + .text._ZN7WN_Core18invertVanePolarityEb + 0x0800128c 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + 0x0800128c WN_Core::invertVanePolarity(bool) + .text._ZN7WN_Core13signalIfNorthEt + 0x08001290 0x28 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + 0x08001290 WN_Core::signalIfNorth(unsigned short) + .text._ZN7WN_Core20triggerInstantWindCbER24wn_instant_wind_sample_t + 0x080012b8 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + 0x080012b8 WN_Core::triggerInstantWindCb(wn_instant_wind_sample_t&) + .text._ZN7WN_Core16triggerAvgWindCbER16wn_wind_report_t + 0x080012cc 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + 0x080012cc WN_Core::triggerAvgWindCb(wn_wind_report_t&) + .text._ZN7WN_Core22pulsesToSpeedUnitInUseEf + 0x080012e0 0x40 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + 0x080012e0 WN_Core::pulsesToSpeedUnitInUse(float) + .text._ZN7WN_Core15formatRawSampleER20wn_raw_wind_sample_t + 0x08001320 0x22 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + 0x08001320 WN_Core::formatRawSample(wn_raw_wind_sample_t&) + .text._ZN7WN_Core15formatRawReportER20wn_raw_wind_report_t + 0x08001342 0x3e /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + 0x08001342 WN_Core::formatRawReport(wn_raw_wind_report_t&) + .text._ZN7WN_Core42computeReportForPeriodInSecIndexedFromLastEtt + 0x08001380 0x7a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + 0x08001380 WN_Core::computeReportForPeriodInSecIndexedFromLast(unsigned short, unsigned short) + .text._ZN7WN_Core33computeReportForRecentPeriodInSecEt + 0x080013fa 0xe /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + 0x080013fa WN_Core::computeReportForRecentPeriodInSec(unsigned short) + .text._ZN7WN_Core4loopEv + 0x08001408 0x120 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + 0x08001408 WN_Core::loop() + .text._ZN16WN_ROLLINGBUFFERC2Ev + 0x08001528 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Rolling_Buffer.cpp.o + 0x08001528 WN_ROLLINGBUFFER::WN_ROLLINGBUFFER() + 0x08001528 WN_ROLLINGBUFFER::WN_ROLLINGBUFFER() + .text._ZN16WN_ROLLINGBUFFER12addRawSampleER20wn_raw_wind_sample_t + 0x08001554 0x3c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Rolling_Buffer.cpp.o + 0x08001554 WN_ROLLINGBUFFER::addRawSample(wn_raw_wind_sample_t&) + .text._ZN16WN_ROLLINGBUFFER3getEj + 0x08001590 0x40 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Rolling_Buffer.cpp.o + 0x08001590 WN_ROLLINGBUFFER::get(unsigned int) + .text._Z30wn_write_angle_sensor_registerhh + 0x080015d0 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o + 0x080015d0 wn_write_angle_sensor_register(unsigned char, unsigned char) + .text._Z29wn_read_angle_sensor_registerhPhj + 0x080015fc 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o + 0x080015fc wn_read_angle_sensor_register(unsigned char, unsigned char*, unsigned int) + .text._Z20wn_init_angle_sensorv + 0x0800164c 0x64 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o + 0x0800164c wn_init_angle_sensor() + .text._Z36wn_read_then_make_angle_sensor_sleepv + 0x080016b0 0x3e /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o + 0x080016b0 wn_read_then_make_angle_sensor_sleep() + .text._ZN18WN_VECTOR_AVERAGERC2Ev + 0x080016ee 0x12 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o + 0x080016ee WN_VECTOR_AVERAGER::WN_VECTOR_AVERAGER() + 0x080016ee WN_VECTOR_AVERAGER::WN_VECTOR_AVERAGER() + .text._ZN18WN_VECTOR_AVERAGER10accumulateEmt + 0x08001700 0x74 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o + 0x08001700 WN_VECTOR_AVERAGER::accumulate(unsigned long, unsigned short) + .text._ZN18WN_VECTOR_AVERAGER10accumulateE20wn_raw_wind_sample_t + 0x08001774 0x16 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o + 0x08001774 WN_VECTOR_AVERAGER::accumulate(wn_raw_wind_sample_t) + *fill* 0x0800178a 0x2 + .text._ZN18WN_VECTOR_AVERAGER34computeReportFromAccumulatedValuesEP20wn_raw_wind_report_t + 0x0800178c 0xac /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o + 0x0800178c WN_VECTOR_AVERAGER::computeReportFromAccumulatedValues(wn_raw_wind_report_t*) + .text.HAL_MspInit + 0x08001838 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + 0x08001838 HAL_MspInit + *fill* 0x0800183a 0x2 + .text.HAL_InitTick + 0x0800183c 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + 0x0800183c HAL_InitTick + .text.HAL_Init + 0x0800188c 0x28 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + 0x0800188c HAL_Init + .text.HAL_IncTick + 0x080018b4 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + 0x080018b4 HAL_IncTick + .text.HAL_GetTick + 0x080018cc 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + 0x080018cc HAL_GetTick + .text.HAL_NVIC_SetPriority + 0x080018d8 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + 0x080018d8 HAL_NVIC_SetPriority + .text.HAL_NVIC_EnableIRQ + 0x0800192c 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + 0x0800192c HAL_NVIC_EnableIRQ + .text.HAL_NVIC_DisableIRQ + 0x08001944 0x20 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + 0x08001944 HAL_NVIC_DisableIRQ + .text.HAL_SYSTICK_Config + 0x08001964 0x34 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + 0x08001964 HAL_SYSTICK_Config + .text.HAL_NVIC_ClearPendingIRQ + 0x08001998 0x1c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + 0x08001998 HAL_NVIC_ClearPendingIRQ + .text.HAL_SYSTICK_Callback + 0x080019b4 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + 0x080019b4 HAL_SYSTICK_Callback + .text.HAL_SYSTICK_IRQHandler + 0x080019b6 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + 0x080019b6 HAL_SYSTICK_IRQHandler + .text.HAL_CRC_MspInit + 0x080019be 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o + 0x080019be HAL_CRC_MspInit + .text.HAL_CRC_Init + 0x080019c0 0x74 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o + 0x080019c0 HAL_CRC_Init + .text.HAL_CRCEx_Polynomial_Set + 0x08001a34 0x60 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc_ex.c.o + 0x08001a34 HAL_CRCEx_Polynomial_Set + .text.HAL_DMA_Abort + 0x08001a94 0x74 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + 0x08001a94 HAL_DMA_Abort + .text.HAL_DMA_Abort_IT + 0x08001b08 0x74 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + 0x08001b08 HAL_DMA_Abort_IT + .text.HAL_DMA_GetState + 0x08001b7c 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + 0x08001b7c HAL_DMA_GetState + .text.HAL_GPIO_Init + 0x08001b84 0x164 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o + 0x08001b84 HAL_GPIO_Init + .text.HAL_GPIO_EXTI_IRQHandler + 0x08001ce8 0x28 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o + 0x08001ce8 HAL_GPIO_EXTI_IRQHandler + .text.I2C_Flush_TXDR + 0x08001d10 0x1c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_TransferConfig + 0x08001d2c 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_Enable_IRQ + 0x08001d58 0x7c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_Disable_IRQ + 0x08001dd4 0x48 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_IsErrorOccurred + 0x08001e1c 0x100 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_WaitOnFlagUntilTimeout + 0x08001f1c 0x6e /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_ConvertOtherXferOptions + 0x08001f8a 0x1c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_MspInit + 0x08001fa6 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + 0x08001fa6 HAL_I2C_MspInit + .text.HAL_I2C_Init + 0x08001fa8 0xbc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + 0x08001fa8 HAL_I2C_Init + .text.HAL_I2C_MspDeInit + 0x08002064 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + 0x08002064 HAL_I2C_MspDeInit + .text.HAL_I2C_DeInit + 0x08002066 0x34 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + 0x08002066 HAL_I2C_DeInit + *fill* 0x0800209a 0x2 + .text.HAL_I2C_IsDeviceReady + 0x0800209c 0x10c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + 0x0800209c HAL_I2C_IsDeviceReady + .text.HAL_I2C_Master_Seq_Transmit_IT + 0x080021a8 0xdc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + 0x080021a8 HAL_I2C_Master_Seq_Transmit_IT + .text.HAL_I2C_Master_Seq_Receive_IT + 0x08002284 0xac /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + 0x08002284 HAL_I2C_Master_Seq_Receive_IT + .text.HAL_I2C_Slave_Seq_Transmit_IT + 0x08002330 0xdc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + 0x08002330 HAL_I2C_Slave_Seq_Transmit_IT + .text.HAL_I2C_Slave_Seq_Receive_IT + 0x0800240c 0xd8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + 0x0800240c HAL_I2C_Slave_Seq_Receive_IT + .text.HAL_I2C_EnableListen_IT + 0x080024e4 0x28 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + 0x080024e4 HAL_I2C_EnableListen_IT + .text.HAL_I2C_EV_IRQHandler + 0x0800250c 0x12 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + 0x0800250c HAL_I2C_EV_IRQHandler + .text.HAL_I2C_MasterTxCpltCallback + 0x0800251e 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + 0x0800251e HAL_I2C_MasterTxCpltCallback + .text.HAL_I2C_MasterRxCpltCallback + 0x08002520 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + 0x08002520 HAL_I2C_MasterRxCpltCallback + .text.I2C_ITMasterSeqCplt + 0x08002522 0x48 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + *fill* 0x0800256a 0x2 + .text.I2C_ITSlaveSeqCplt + 0x0800256c 0x80 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_ITAddrCplt.constprop.0 + 0x080025ec 0x9a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + *fill* 0x08002686 0x2 + .text.I2C_ITListenCplt + 0x08002688 0x6c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_MemTxCpltCallback + 0x080026f4 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + 0x080026f4 HAL_I2C_MemTxCpltCallback + .text.HAL_I2C_MemRxCpltCallback + 0x080026f6 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + 0x080026f6 HAL_I2C_MemRxCpltCallback + .text.HAL_I2C_AbortCpltCallback + 0x080026f8 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + 0x080026f8 HAL_I2C_AbortCpltCallback + .text.I2C_TreatErrorCallback + 0x080026fa 0x2a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_ITError + 0x08002724 0x114 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_ITMasterCplt + 0x08002838 0xe4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_Master_ISR_IT + 0x0800291c 0x140 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_Mem_ISR_DMA + 0x08002a5c 0x15c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_Master_ISR_DMA + 0x08002bb8 0x108 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_ER_IRQHandler + 0x08002cc0 0x58 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + 0x08002cc0 HAL_I2C_ER_IRQHandler + .text.I2C_ITSlaveCplt.constprop.0 + 0x08002d18 0x1c8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_Slave_ISR_DMA + 0x08002ee0 0x10c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_Slave_ISR_IT + 0x08002fec 0x11c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.I2C_DMAAbort + 0x08003108 0x1e /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .text.HAL_I2C_GetState + 0x08003126 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + 0x08003126 HAL_I2C_GetState + .text.HAL_I2C_GetError + 0x0800312e 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + 0x0800312e HAL_I2C_GetError + *fill* 0x08003132 0x2 + .text.HAL_PWR_EnableBkUpAccess + 0x08003134 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o + 0x08003134 HAL_PWR_EnableBkUpAccess + .text.HAL_PWR_EnterSLEEPMode + 0x08003148 0x48 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o + 0x08003148 HAL_PWR_EnterSLEEPMode + .text.HAL_PWREx_ControlVoltageScaling + 0x08003190 0x58 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + 0x08003190 HAL_PWREx_ControlVoltageScaling + .text.HAL_PWREx_EnableLowPowerRunMode + 0x080031e8 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + 0x080031e8 HAL_PWREx_EnableLowPowerRunMode + .text.HAL_PWREx_DisableLowPowerRunMode + 0x080031fc 0x4c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + 0x080031fc HAL_PWREx_DisableLowPowerRunMode + .text.HAL_RCC_OscConfig + 0x08003248 0x448 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + 0x08003248 HAL_RCC_OscConfig + .text.HAL_RCC_GetSysClockFreq + 0x08003690 0x88 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + 0x08003690 HAL_RCC_GetSysClockFreq + .text.HAL_RCC_ClockConfig + 0x08003718 0x154 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + 0x08003718 HAL_RCC_ClockConfig + .text.HAL_RCC_GetPCLK1Freq + 0x0800386c 0x28 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + 0x0800386c HAL_RCC_GetPCLK1Freq + .text.HAL_RCC_GetClockConfig + 0x08003894 0x34 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + 0x08003894 HAL_RCC_GetClockConfig + .text.HAL_RCCEx_GetPeriphCLKFreq + 0x080038c8 0x29c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o + 0x080038c8 HAL_RCCEx_GetPeriphCLKFreq + .text.HAL_TIM_Base_Start + 0x08003b64 0x58 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + 0x08003b64 HAL_TIM_Base_Start + .text.HAL_TIM_GenerateEvent + 0x08003bbc 0x26 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + 0x08003bbc HAL_TIM_GenerateEvent + .text.HAL_TIM_PWM_PulseFinishedCallback + 0x08003be2 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + 0x08003be2 HAL_TIM_PWM_PulseFinishedCallback + .text.HAL_TIM_TriggerCallback + 0x08003be4 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + 0x08003be4 HAL_TIM_TriggerCallback + *fill* 0x08003be6 0x2 + .text.HAL_TIM_IRQHandler + 0x08003be8 0x158 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + 0x08003be8 HAL_TIM_IRQHandler + .text.TIM_Base_SetConfig + 0x08003d40 0x8c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + 0x08003d40 TIM_Base_SetConfig + .text.HAL_TIM_Base_Init + 0x08003dcc 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + 0x08003dcc HAL_TIM_Base_Init + .text.TIM_CCxChannelCmd + 0x08003e20 0x1a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + 0x08003e20 TIM_CCxChannelCmd + *fill* 0x08003e3a 0x2 + .text.HAL_TIM_OC_Start + 0x08003e3c 0xf8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + 0x08003e3c HAL_TIM_OC_Start + .text.HAL_TIM_PWM_Start + 0x08003f34 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + 0x08003f34 HAL_TIM_PWM_Start + .text.HAL_TIM_IC_Start + 0x08003f3c 0xe8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + 0x08003f3c HAL_TIM_IC_Start + .text.TIM_CCxNChannelCmd + 0x08004024 0x1a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + *fill* 0x0800403e 0x2 + .text.HAL_TIMEx_OCN_Start + 0x08004040 0x80 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + 0x08004040 HAL_TIMEx_OCN_Start + .text.HAL_TIMEx_PWMN_Start + 0x080040c0 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + 0x080040c0 HAL_TIMEx_PWMN_Start + .text.HAL_TIMEx_CommutCallback + 0x080040c8 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + 0x080040c8 HAL_TIMEx_CommutCallback + .text.HAL_TIMEx_BreakCallback + 0x080040ca 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + 0x080040ca HAL_TIMEx_BreakCallback + .text.HAL_TIMEx_Break2Callback + 0x080040cc 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + 0x080040cc HAL_TIMEx_Break2Callback + *fill* 0x080040ce 0x2 + .text.UART_EndRxTransfer + 0x080040d0 0x64 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.UART_TxISR_8BIT.part.0 + 0x08004134 0x32 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.UART_TxISR_8BIT + 0x08004166 0x32 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.UART_TxISR_16BIT + 0x08004198 0x36 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + *fill* 0x080041ce 0x2 + .text.UART_TxISR_8BIT_FIFOEN + 0x080041d0 0x78 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.UART_TxISR_16BIT_FIFOEN + 0x08004248 0x7c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UART_MspInit + 0x080042c4 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + 0x080042c4 HAL_UART_MspInit + .text.HAL_UART_MspDeInit + 0x080042c6 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + 0x080042c6 HAL_UART_MspDeInit + .text.HAL_UART_DeInit + 0x080042c8 0x40 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + 0x080042c8 HAL_UART_DeInit + .text.HAL_UART_Transmit_IT + 0x08004308 0xbc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + 0x08004308 HAL_UART_Transmit_IT + .text.UART_DMAAbortOnError + 0x080043c4 0x16 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_UARTEx_RxEventCallback + 0x080043da 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + 0x080043da HAL_UARTEx_RxEventCallback + .text.HAL_UART_IRQHandler + 0x080043dc 0x33c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + 0x080043dc HAL_UART_IRQHandler + .text.UART_RxISR_8BIT + 0x08004718 0xe0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.UART_RxISR_16BIT + 0x080047f8 0xe0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.UART_RxISR_8BIT_FIFOEN + 0x080048d8 0x1d8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.UART_RxISR_16BIT_FIFOEN + 0x08004ab0 0x1d4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .text.HAL_HalfDuplex_EnableTransmitter + 0x08004c84 0x52 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + 0x08004c84 HAL_HalfDuplex_EnableTransmitter + .text.HAL_HalfDuplex_EnableReceiver + 0x08004cd6 0x52 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + 0x08004cd6 HAL_HalfDuplex_EnableReceiver + .text.HAL_UART_GetState + 0x08004d28 0xe /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + 0x08004d28 HAL_UART_GetState + *fill* 0x08004d36 0x2 + .text.UART_SetConfig + 0x08004d38 0x1e4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + 0x08004d38 UART_SetConfig + .text.UART_AdvFeatureConfig + 0x08004f1c 0xd0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + 0x08004f1c UART_AdvFeatureConfig + .text.UART_WaitOnFlagUntilTimeout + 0x08004fec 0x92 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + 0x08004fec UART_WaitOnFlagUntilTimeout + .text.HAL_UART_Transmit + 0x0800507e 0xd4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + 0x0800507e HAL_UART_Transmit + *fill* 0x08005152 0x2 + .text.UART_CheckIdleState + 0x08005154 0xc8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + 0x08005154 UART_CheckIdleState + .text.HAL_UART_Init + 0x0800521c 0x68 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + 0x0800521c HAL_UART_Init + .text.HAL_HalfDuplex_Init + 0x08005284 0x70 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + 0x08005284 HAL_HalfDuplex_Init + .text.UART_Start_Receive_IT + 0x080052f4 0x134 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + 0x080052f4 UART_Start_Receive_IT + .text.HAL_UART_Receive_IT + 0x08005428 0x68 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + 0x08005428 HAL_UART_Receive_IT + .text.HAL_UARTEx_RxFifoFullCallback + 0x08005490 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + 0x08005490 HAL_UARTEx_RxFifoFullCallback + .text.HAL_UARTEx_TxFifoEmptyCallback + 0x08005492 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + 0x08005492 HAL_UARTEx_TxFifoEmptyCallback + .text.HAL_UARTEx_EnableStopMode + 0x08005494 0x30 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + 0x08005494 HAL_UARTEx_EnableStopMode + .text.HAL_UARTEx_DisableStopMode + 0x080054c4 0x30 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + 0x080054c4 HAL_UARTEx_DisableStopMode + .text._ZNSt8functionIFvvEEaSEDn.isra.0 + 0x080054f4 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer10getChannelEm + 0x0800550c 0xe /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x0800550c HardwareTimer::getChannel(unsigned long) + *fill* 0x0800551a 0x2 + .text._ZN13HardwareTimer12getLLChannelEm + 0x0800551c 0x4c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x0800551c HardwareTimer::getLLChannel(unsigned long) + .text._ZN13HardwareTimer5getITEm + 0x08005568 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x08005568 HardwareTimer::getIT(unsigned long) + .text._ZN13HardwareTimer20getAssociatedChannelEm + 0x0800557c 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x0800557c HardwareTimer::getAssociatedChannel(unsigned long) + .text._ZN13HardwareTimer13resumeChannelEm + 0x08005590 0xec /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x08005590 HardwareTimer::resumeChannel(unsigned long) + .text._ZN13HardwareTimer6resumeEv + 0x0800567c 0x4c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x0800567c HardwareTimer::resume() + .text._ZN13HardwareTimer7refreshEv + 0x080056c8 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x080056c8 HardwareTimer::refresh() + .text._ZN13HardwareTimer9isRunningEv + 0x080056d4 0xa /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x080056d4 HardwareTimer::isRunning() + .text._ZN13HardwareTimer27updateRegistersIfNotRunningEP11TIM_TypeDef + 0x080056de 0x38 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x080056de HardwareTimer::updateRegistersIfNotRunning(TIM_TypeDef*) + *fill* 0x08005716 0x2 + .text._Z15get_timer_indexP11TIM_TypeDef + 0x08005718 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x08005718 get_timer_index(TIM_TypeDef*) + .text._ZN13HardwareTimerD2Ev + 0x08005768 0x3c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x08005768 HardwareTimer::~HardwareTimer() + 0x08005768 HardwareTimer::~HardwareTimer() + .text._ZN13HardwareTimer5setupEP11TIM_TypeDef + 0x080057a4 0x88 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x080057a4 HardwareTimer::setup(TIM_TypeDef*) + .text._ZN13HardwareTimer15getTimerClkFreqEv + 0x0800582c 0x5c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x0800582c HardwareTimer::getTimerClkFreq() + .text._ZN13HardwareTimer11setOverflowEm13TimerFormat_t + 0x08005888 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x08005888 HardwareTimer::setOverflow(unsigned long, TimerFormat_t) + .text.TIM1_BRK_UP_TRG_COM_IRQHandler + 0x080058d8 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x080058d8 TIM1_BRK_UP_TRG_COM_IRQHandler + .text.TIM1_CC_IRQHandler + 0x080058f0 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x080058f0 TIM1_CC_IRQHandler + .text.TIM2_IRQHandler + 0x080058f8 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x080058f8 TIM2_IRQHandler + .text.TIM3_IRQHandler + 0x08005910 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x08005910 TIM3_IRQHandler + .text.TIM14_IRQHandler + 0x08005928 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x08005928 TIM14_IRQHandler + .text.TIM16_IRQHandler + 0x08005940 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x08005940 TIM16_IRQHandler + .text.TIM17_IRQHandler + 0x08005958 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x08005958 TIM17_IRQHandler + .text._ZNSt8functionIFvvEEC2Ev + 0x08005970 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x08005970 std::function::function() + 0x08005970 std::function::function() + .text._ZN13HardwareTimerC2EP11TIM_TypeDef + 0x08005984 0x2a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x08005984 HardwareTimer::HardwareTimer(TIM_TypeDef*) + 0x08005984 HardwareTimer::HardwareTimer(TIM_TypeDef*) + .text._ZNSt8functionIFvvEEC2ERKS1_ + 0x080059ae 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x080059ae std::function::function(std::function const&) + 0x080059ae std::function::function(std::function const&) + .text._ZNSt8functionIFvvEEaSERKS1_.isra.0 + 0x080059da 0x42 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .text._ZN13HardwareTimer15attachInterruptESt8functionIFvvEE + 0x08005a1c 0x30 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x08005a1c HardwareTimer::attachInterrupt(std::function) + .text._ZNKSt8functionIFvvEEclEv + 0x08005a4c 0x12 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x08005a4c std::function::operator()() const + .text._ZN13HardwareTimer14updateCallbackEP17TIM_HandleTypeDef + 0x08005a5e 0x1c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x08005a5e HardwareTimer::updateCallback(TIM_HandleTypeDef*) + .text.HAL_TIM_PeriodElapsedCallback + 0x08005a7a 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x08005a7a HAL_TIM_PeriodElapsedCallback + .text._ZN13HardwareTimer22captureCompareCallbackEP17TIM_HandleTypeDef + 0x08005a82 0x46 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x08005a82 HardwareTimer::captureCompareCallback(TIM_HandleTypeDef*) + .text.HAL_TIM_OC_DelayElapsedCallback + 0x08005ac8 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x08005ac8 HAL_TIM_OC_DelayElapsedCallback + .text.HAL_TIM_IC_CaptureCallback + 0x08005ad0 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x08005ad0 HAL_TIM_IC_CaptureCallback + .text._Znwj 0x08005ad8 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/new.cpp.o + 0x08005ad8 operator new(unsigned int) + .text._ZdlPvj 0x08005ae0 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/new.cpp.o + 0x08005ae0 operator delete(void*, unsigned int) + .text.set_GPIO_Port_Clock + 0x08005ae8 0x8c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/PortNames.c.o + 0x08005ae8 set_GPIO_Port_Clock + .text.pwm_stop + 0x08005b74 0x58 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + 0x08005b74 pwm_stop + .text.getCurrentMillis + 0x08005bcc 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + 0x08005bcc getCurrentMillis + .text.noOsSystickHandler + 0x08005bd4 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + 0x08005bd4 noOsSystickHandler + 0x08005bd4 osSystickHandler + .text.SysTick_Handler + 0x08005bd6 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + 0x08005bd6 SysTick_Handler + *fill* 0x08005be6 0x2 + .text.enableClock + 0x08005be8 0xc4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + 0x08005be8 enableClock + .text.configHSECapacitorTuning + 0x08005cac 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + 0x08005cac configHSECapacitorTuning + *fill* 0x08005cae 0x2 + .text.configIPClock + 0x08005cb0 0x40 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + 0x08005cb0 configIPClock + .text.hw_config_init + 0x08005cf0 0x20 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/hw_config.c.o + 0x08005cf0 hw_config_init + .text.startup._ZNSt8functionIFvvEEC2EDn.constprop.0.isra.0 + 0x08005d10 0x12 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + *fill* 0x08005d22 0x2 + .text._Z22stm32_interrupt_enable7PinNameSt8functionIFvvEEm + 0x08005d24 0xec /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + 0x08005d24 stm32_interrupt_enable(PinName, std::function, unsigned long) + .text._Z22HAL_GPIO_EXTI_Callbackt + 0x08005e10 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + 0x08005e10 HAL_GPIO_EXTI_Callback(unsigned short) + .text.HAL_GPIO_EXTI_Rising_Callback + 0x08005e3c 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + 0x08005e3c HAL_GPIO_EXTI_Rising_Callback + .text.HAL_GPIO_EXTI_Falling_Callback + 0x08005e44 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + 0x08005e44 HAL_GPIO_EXTI_Falling_Callback + .text.EXTI0_1_IRQHandler + 0x08005e4c 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + 0x08005e4c EXTI0_1_IRQHandler + .text.EXTI2_3_IRQHandler + 0x08005e5c 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + 0x08005e5c EXTI2_3_IRQHandler + .text.EXTI4_15_IRQHandler + 0x08005e6c 0x16 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + 0x08005e6c EXTI4_15_IRQHandler + *fill* 0x08005e82 0x2 + .text.startup._GLOBAL__sub_I__Z22stm32_interrupt_enable7PinNameSt8functionIFvvEEm + 0x08005e84 0x104 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + .text.exit._GLOBAL__sub_D__Z22stm32_interrupt_enable7PinNameSt8functionIFvvEEm + 0x08005f88 0x1c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + .text.pin_in_pinmap + 0x08005fa4 0x1a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + 0x08005fa4 pin_in_pinmap + *fill* 0x08005fbe 0x2 + .text.pin_function + 0x08005fc0 0x138 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + 0x08005fc0 pin_function + .text.pinmap_pinout + 0x080060f8 0x1e /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + 0x080060f8 pinmap_pinout + .text.pinmap_find_peripheral + 0x08006116 0x16 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + 0x08006116 pinmap_find_peripheral + .text.pinmap_peripheral + 0x0800612c 0x12 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + 0x0800612c pinmap_peripheral + .text.pinmap_find_pin + 0x0800613e 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + 0x0800613e pinmap_find_pin + .text.pinmap_pin + 0x08006156 0x12 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + 0x08006156 pinmap_pin + .text.pinmap_merge_peripheral + 0x08006168 0x16 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + 0x08006168 pinmap_merge_peripheral + *fill* 0x0800617e 0x2 + .text.SystemInit + 0x08006180 0x4c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/system_stm32yyxx.c.o + 0x08006180 SystemInit + .text.SystemCoreClockUpdate + 0x080061cc 0x8c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/system_stm32yyxx.c.o + 0x080061cc SystemCoreClockUpdate + .text.get_timer_obj + 0x08006258 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + 0x08006258 get_timer_obj + .text.enableTimerClock + 0x0800625c 0xc4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + 0x0800625c enableTimerClock + .text.disableTimerClock + 0x08006320 0x8c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + 0x08006320 disableTimerClock + .text.getTimerUpIrq + 0x080063ac 0x60 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + 0x080063ac getTimerUpIrq + .text.getTimerCCIrq + 0x0800640c 0x60 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + 0x0800640c getTimerCCIrq + .text.HAL_TIM_Base_MspInit + 0x0800646c 0x4a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + 0x0800646c HAL_TIM_Base_MspInit + .text.getTimerClkSrc + 0x080064b6 0xa /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + 0x080064b6 getTimerClkSrc + .text.uart_init + 0x080064c0 0x3ec /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + 0x080064c0 uart_init + .text.uart_deinit + 0x080068ac 0x94 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + 0x080068ac uart_deinit + .text.uart_debug_init + 0x08006940 0x50 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + 0x08006940 uart_debug_init + .text.serial_rx_active + 0x08006990 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + 0x08006990 serial_rx_active + .text.serial_tx_active + 0x080069b4 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + 0x080069b4 serial_tx_active + .text.uart_debug_write + 0x080069d8 0xcc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + 0x080069d8 uart_debug_write + .text.uart_getc + 0x08006aa4 0x38 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + 0x08006aa4 uart_getc + .text.uart_attach_rx_callback + 0x08006adc 0x48 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + 0x08006adc uart_attach_rx_callback + .text.uart_attach_tx_callback + 0x08006b24 0x48 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + 0x08006b24 uart_attach_tx_callback + .text.uart_enable_tx + 0x08006b6c 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + 0x08006b6c uart_enable_tx + .text.uart_enable_rx + 0x08006b90 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + 0x08006b90 uart_enable_rx + .text.HAL_UART_RxCpltCallback + 0x08006bb4 0xe /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + 0x08006bb4 HAL_UART_RxCpltCallback + .text.HAL_UART_TxCpltCallback + 0x08006bc2 0xe /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + 0x08006bc2 HAL_UART_TxCpltCallback + .text.HAL_UART_ErrorCallback + 0x08006bd0 0x42 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + 0x08006bd0 HAL_UART_ErrorCallback + *fill* 0x08006c12 0x2 + .text.USART1_IRQHandler + 0x08006c14 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + 0x08006c14 USART1_IRQHandler + .text.USART2_IRQHandler + 0x08006c2c 0x1c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + 0x08006c2c USART2_IRQHandler + .text.LPUART1_IRQHandler + 0x08006c48 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + 0x08006c48 LPUART1_IRQHandler + .text.HAL_UARTEx_WakeupCallback + 0x08006c60 0xe /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + 0x08006c60 HAL_UARTEx_WakeupCallback + *fill* 0x08006c6e 0x2 + .text._sbrk 0x08006c70 0x3c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + 0x08006c70 _sbrk + .text._close 0x08006cac 0x6 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + 0x08006cac _close + .text._fstat 0x08006cb2 0xa /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + 0x08006cb2 _fstat + .text._isatty 0x08006cbc 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + 0x08006cbc _isatty + .text._lseek 0x08006cc0 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + 0x08006cc0 _lseek + .text._read 0x08006cc4 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + 0x08006cc4 _read + .text._exit 0x08006cc8 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + 0x08006cc8 _exit + *fill* 0x08006cca 0x2 + .text._kill 0x08006ccc 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + 0x08006ccc _kill + .text._getpid 0x08006cdc 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + 0x08006cdc _getpid + .text._ZN5Print17availableForWriteEv + 0x08006ce0 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x08006ce0 Print::availableForWrite() + .text._ZN7TwoWire9availableEv + 0x08006ce4 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x08006ce4 TwoWire::available() + .text._ZN7TwoWire4readEv + 0x08006cec 0x1a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x08006cec TwoWire::read() + .text._ZN7TwoWire4peekEv + 0x08006d06 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x08006d06 TwoWire::peek() + .text._ZN7TwoWire16onRequestServiceEP5i2c_s + 0x08006d1a 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x08006d1a TwoWire::onRequestService(i2c_s*) + *fill* 0x08006d32 0x2 + .text._ZN7TwoWireC2Emm + 0x08006d34 0xf0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x08006d34 TwoWire::TwoWire(unsigned long, unsigned long) + 0x08006d34 TwoWire::TwoWire(unsigned long, unsigned long) + .text._ZN7TwoWire3endEv + 0x08006e24 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x08006e24 TwoWire::end() + .text._ZN7TwoWireD2Ev + 0x08006e50 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x08006e50 TwoWire::~TwoWire() + 0x08006e50 TwoWire::~TwoWire() + .text._ZN7TwoWire17beginTransmissionEi + 0x08006e74 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x08006e74 TwoWire::beginTransmission(int) + .text._ZN7TwoWire16allocateRxBufferEj + 0x08006e84 0x26 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x08006e84 TwoWire::allocateRxBuffer(unsigned int) + .text._ZN7TwoWire16onReceiveServiceEP5i2c_s + 0x08006eaa 0x4a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x08006eaa TwoWire::onReceiveService(i2c_s*) + .text._ZN7TwoWire16allocateTxBufferEj + 0x08006ef4 0x36 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x08006ef4 TwoWire::allocateTxBuffer(unsigned int) + .text._ZN7TwoWire5writeEh + 0x08006f2a 0x40 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x08006f2a TwoWire::write(unsigned char) + .text._ZN7TwoWire5writeEPKhj + 0x08006f6a 0x46 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x08006f6a TwoWire::write(unsigned char const*, unsigned int) + .text._ZN7TwoWire13resetRxBufferEv + 0x08006fb0 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x08006fb0 TwoWire::resetRxBuffer() + .text._ZN7TwoWire13resetTxBufferEv + 0x08006fc4 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x08006fc4 TwoWire::resetTxBuffer() + .text._ZN7TwoWire15endTransmissionEh + 0x08006fd8 0x46 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x08006fd8 TwoWire::endTransmission(unsigned char) + .text._ZN7TwoWire11requestFromEhhmhh + 0x0800701e 0xa6 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x0800701e TwoWire::requestFrom(unsigned char, unsigned char, unsigned long, unsigned char, unsigned char) + .text._ZN7TwoWire11requestFromEhhh + 0x080070c4 0xe /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x080070c4 TwoWire::requestFrom(unsigned char, unsigned char, unsigned char) + .text._ZN7TwoWire11requestFromEii + 0x080070d2 0xe /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x080070d2 TwoWire::requestFrom(int, int) + .text._ZN7TwoWire15endTransmissionEv + 0x080070e0 0xa /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x080070e0 TwoWire::endTransmission() + .text._ZN7TwoWire5flushEv + 0x080070ea 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x080070ea TwoWire::flush() + *fill* 0x08007102 0x2 + .text._ZN7TwoWire10recoverBusEv + 0x08007104 0x128 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x08007104 TwoWire::recoverBus() + .text._ZN7TwoWire5beginEhbb + 0x0800722c 0x98 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x0800722c TwoWire::begin(unsigned char, bool, bool) + .text._ZN7TwoWire5beginEb + 0x080072c4 0xe /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x080072c4 TwoWire::begin(bool) + *fill* 0x080072d2 0x2 + .text.startup._GLOBAL__sub_I__ZN7TwoWireC2Emm + 0x080072d4 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .text.exit._GLOBAL__sub_D__ZN7TwoWireC2Emm + 0x080072e8 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .text.i2c_getClkFreq + 0x080072f8 0x60 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + .text.i2c_computeTiming + 0x08007358 0x238 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + .text.i2c_getTiming + 0x08007590 0x48 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + .text.i2c_init + 0x080075d8 0x144 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + 0x080075d8 i2c_init + .text.i2c_deinit + 0x0800771c 0x74 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + 0x0800771c i2c_deinit + .text.i2c_slave_write_IT + 0x08007790 0x34 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + 0x08007790 i2c_slave_write_IT + .text.i2c_master_read + 0x080077c4 0x88 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + 0x080077c4 i2c_master_read + .text.i2c_IsDeviceReady + 0x0800784c 0x40 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + 0x0800784c i2c_IsDeviceReady + .text.i2c_master_write + 0x0800788c 0x9c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + 0x0800788c i2c_master_write + .text.i2c_attachSlaveRxEvent + 0x08007928 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + 0x08007928 i2c_attachSlaveRxEvent + .text.i2c_attachSlaveTxEvent + 0x0800793c 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + 0x0800793c i2c_attachSlaveTxEvent + .text.HAL_I2C_AddrCallback + 0x08007950 0x6a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + 0x08007950 HAL_I2C_AddrCallback + .text.HAL_I2C_ListenCpltCallback + 0x080079ba 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + 0x080079ba HAL_I2C_ListenCpltCallback + .text.HAL_I2C_SlaveRxCpltCallback + 0x080079e6 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + 0x080079e6 HAL_I2C_SlaveRxCpltCallback + .text.HAL_I2C_SlaveTxCpltCallback + 0x08007a12 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + 0x08007a12 HAL_I2C_SlaveTxCpltCallback + .text.HAL_I2C_ErrorCallback + 0x08007a1a 0x12 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + 0x08007a1a HAL_I2C_ErrorCallback + .text.I2C1_IRQHandler + 0x08007a2c 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + 0x08007a2c I2C1_IRQHandler + .text.I2C2_IRQHandler + 0x08007a44 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + 0x08007a44 I2C2_IRQHandler + .text._ZN14HardwareSerial9availableEv + 0x08007a5c 0x16 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + 0x08007a5c HardwareSerial::available() + .text._ZN14HardwareSerial4peekEv + 0x08007a72 0x1c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + 0x08007a72 HardwareSerial::peek() + .text._ZN14HardwareSerial17availableForWriteEv + 0x08007a8e 0x1e /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + 0x08007a8e HardwareSerial::availableForWrite() + .text._ZN14HardwareSerial5writeEh + 0x08007aac 0x14 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + 0x08007aac HardwareSerial::write(unsigned char) + .text._ZN14HardwareSerial16_rx_complete_irqEP8serial_s + 0x08007ac0 0x36 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + 0x08007ac0 HardwareSerial::_rx_complete_irq(serial_s*) + *fill* 0x08007af6 0x2 + .text._ZN14HardwareSerial16_tx_complete_irqEP8serial_s + 0x08007af8 0x60 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + 0x08007af8 HardwareSerial::_tx_complete_irq(serial_s*) + .text._ZN14HardwareSerial5writeEPKhj + 0x08007b58 0xf0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + 0x08007b58 HardwareSerial::write(unsigned char const*, unsigned int) + .text._ZN14HardwareSerial4initE7PinNameS0_S0_S0_ + 0x08007c48 0x36 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + 0x08007c48 HardwareSerial::init(PinName, PinName, PinName, PinName) + .text._ZN14HardwareSerial5flushEm + 0x08007c7e 0x3c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + 0x08007c7e HardwareSerial::flush(unsigned long) + .text._ZN14HardwareSerial3endEv + 0x08007cba 0x28 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + 0x08007cba HardwareSerial::end() + .text._ZN14HardwareSerial5flushEv + 0x08007ce2 0xa /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + 0x08007ce2 HardwareSerial::flush() + .text._ZN14HardwareSerial5setRxEm + 0x08007cec 0x50 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + 0x08007cec HardwareSerial::setRx(unsigned long) + .text._ZN14HardwareSerial5setTxEm + 0x08007d3c 0x50 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + 0x08007d3c HardwareSerial::setTx(unsigned long) + .text._ZN14HardwareSerialC2EPv16HalfDuplexMode_t + 0x08007d8c 0xa0 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + 0x08007d8c HardwareSerial::HardwareSerial(void*, HalfDuplexMode_t) + 0x08007d8c HardwareSerial::HardwareSerial(void*, HalfDuplexMode_t) + .text._ZN14HardwareSerial18enableHalfDuplexRxEv + 0x08007e2c 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + 0x08007e2c HardwareSerial::enableHalfDuplexRx() + .text._ZN14HardwareSerial5beginEmh + 0x08007e58 0x94 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + 0x08007e58 HardwareSerial::begin(unsigned long, unsigned char) + .text._ZN14HardwareSerial4readEv + 0x08007eec 0x30 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + 0x08007eec HardwareSerial::read() + .text.startup._GLOBAL__sub_I_SerialLP1 + 0x08007f1c 0x18 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .text._ZN5Print5writeEPKc + 0x08007f34 0x1c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + 0x08007f34 Print::write(char const*) + .text._ZN5Print5printEPKc + 0x08007f50 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + 0x08007f50 Print::print(char const*) + .text._ZN5Print7printlnEv + 0x08007f58 0x10 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + 0x08007f58 Print::println() + .text._ZN5Print7printlnEPK19__FlashStringHelper + 0x08007f68 0x14 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + 0x08007f68 Print::println(__FlashStringHelper const*) + .text._ZN5Print7printlnEPKc + 0x08007f7c 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + 0x08007f7c Print::println(char const*) + .text._write 0x08007f84 0x28 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + 0x08007f84 _write + .text._ZN5Print6printfEPKcz + 0x08007fac 0x16 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + 0x08007fac Print::printf(char const*, ...) + .text._ZN6Stream9timedReadEv + 0x08007fc2 0x2a /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + 0x08007fc2 Stream::timedRead() + .text._ZN6Stream9readBytesEPcj + 0x08007fec 0x22 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + 0x08007fec Stream::readBytes(char*, unsigned int) + .text._ZN6Stream14readBytesUntilEcPcj + 0x0800800e 0x2a /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + 0x0800800e Stream::readBytesUntil(char, char*, unsigned int) + .text._Z15attachInterruptmSt8functionIFvvEEm + 0x08008038 0xac /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + 0x08008038 attachInterrupt(unsigned long, std::function, unsigned long) + .text._Z10randomSeedm + 0x080080e4 0xc /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) + 0x080080e4 randomSeed(unsigned long) + .text._Z6randoml + 0x080080f0 0x16 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) + 0x080080f0 random(long) + .text._Z6randomll + 0x08008106 0x14 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) + 0x08008106 random(long, long) + *fill* 0x0800811a 0x2 + .text.dtostrf 0x0800811c 0x168 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) + 0x0800811c dtostrf + .text.startup._Z7premainv + 0x08008284 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(main.cpp.o) + 0x08008284 premain() + .text.startup.main + 0x0800828c 0x14 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(main.cpp.o) + 0x0800828c main + .text.pinNametoDigitalPin + 0x080082a0 0x34 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(pins_arduino.c.o) + 0x080082a0 pinNametoDigitalPin + .text.Reset_Handler + 0x080082d4 0x50 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) + 0x080082d4 Reset_Handler + .text.Default_Handler + 0x08008324 0x2 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) + 0x08008324 LPTIM1_IRQHandler + 0x08008324 PVD_IRQHandler + 0x08008324 PendSV_Handler + 0x08008324 NMI_Handler + 0x08008324 LPTIM2_IRQHandler + 0x08008324 RTC_TAMP_IRQHandler + 0x08008324 SPI1_IRQHandler + 0x08008324 DMA1_Ch4_5_DMAMUX1_OVR_IRQHandler + 0x08008324 ADC1_IRQHandler + 0x08008324 RCC_IRQHandler + 0x08008324 DMA1_Channel1_IRQHandler + 0x08008324 Default_Handler + 0x08008324 SPI2_IRQHandler + 0x08008324 SVC_Handler + 0x08008324 WWDG_IRQHandler + 0x08008324 DMA1_Channel2_3_IRQHandler + 0x08008324 FLASH_IRQHandler + 0x08008324 HardFault_Handler + *fill* 0x08008326 0x2 + .text.pinMode 0x08008328 0xb8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + 0x08008328 pinMode + .text.digitalWrite + 0x080083e0 0x78 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + 0x080083e0 digitalWrite + .text.millis 0x08008458 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_time.c.o) + 0x08008458 millis + .text.delay 0x08008460 0x1c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_time.c.o) + 0x08008460 delay + .text._Z14serialEventRunv + 0x0800847c 0x20 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WSerial.cpp.o) + 0x0800847c serialEventRun() + .text.init 0x0800849c 0x8 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(board.c.o) + 0x0800849c init + .text.__empty 0x080084a4 0x2 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(hooks.c.o) + 0x080084a4 yield + *fill* 0x080084a6 0x2 + .text.calloc 0x080084a8 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-calloc.o) + 0x080084a8 calloc + .text._calloc_r + 0x080084bc 0x5a /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-callocr.o) + 0x080084bc _calloc_r + *fill* 0x08008516 0x2 + .text.malloc 0x08008518 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-malloc.o) + 0x08008518 malloc + .text.free 0x0800852c 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-malloc.o) + 0x0800852c free + .text.sbrk_aligned + 0x08008540 0x44 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o) + .text._malloc_r + 0x08008584 0x100 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o) + 0x08008584 _malloc_r + .text.snprintf + 0x08008684 0x68 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-snprintf.o) + 0x08008684 snprintf + 0x08008684 sniprintf + .text.__malloc_lock + 0x080086ec 0x10 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mlock.o) + 0x080086ec __malloc_lock + .text.__malloc_unlock + 0x080086fc 0x10 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mlock.o) + 0x080086fc __malloc_unlock + .text.sprintf 0x0800870c 0x44 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sprintf.o) + 0x0800870c sprintf + 0x0800870c siprintf + .text.srand 0x08008750 0x5c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-rand.o) + 0x08008750 srand + .text.rand 0x080087ac 0x7c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-rand.o) + 0x080087ac rand + .text.realloc 0x08008828 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-realloc.o) + 0x08008828 realloc + .text.std 0x0800883c 0x6c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + .text.stdio_exit_handler + 0x080088a8 0x1c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + .text.cleanup_stdio + 0x080088c4 0x3c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + .text.global_stdio_init.part.0 + 0x08008900 0x3c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + .text.__sfp_lock_acquire + 0x0800893c 0x10 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + 0x0800893c __sfp_lock_acquire + .text.__sfp_lock_release + 0x0800894c 0x10 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + 0x0800894c __sfp_lock_release + .text.__sinit 0x0800895c 0x30 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + 0x0800895c __sinit + .text._vdprintf_r + 0x0800898c 0x50 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vdprintf.o) + 0x0800898c _vdprintf_r + 0x0800898c _vdiprintf_r + .text.vdprintf + 0x080089dc 0x18 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vdprintf.o) + 0x080089dc vdiprintf + 0x080089dc vdprintf + .text._realloc_r + 0x080089f4 0x60 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reallocr.o) + 0x080089f4 _realloc_r + .text._fwalk_sglue + 0x08008a54 0x38 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fwalk.o) + 0x08008a54 _fwalk_sglue + .text._vasnprintf_r + 0x08008a8c 0x60 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vasnprintf.o) + 0x08008a8c _vasniprintf_r + 0x08008a8c _vasnprintf_r + .text.memmove 0x08008aec 0x24 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memmove.o) + 0x08008aec memmove + .text.memset 0x08008b10 0x10 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memset.o) + 0x08008b10 memset + .text.strcat 0x08008b20 0x1a /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strcat.o) + 0x08008b20 strcat + *fill* 0x08008b3a 0x2 + .text._sbrk_r 0x08008b3c 0x24 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sbrkr.o) + 0x08008b3c _sbrk_r + .text._write_r + 0x08008b60 0x28 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-writer.o) + 0x08008b60 _write_r + .text.__errno 0x08008b88 0xc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-errno.o) + 0x08008b88 __errno + .text.__libc_init_array + 0x08008b94 0x48 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-init.o) + 0x08008b94 __libc_init_array + .text.__retarget_lock_init_recursive + 0x08008bdc 0x2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + 0x08008bdc __retarget_lock_init_recursive + .text.__retarget_lock_acquire_recursive + 0x08008bde 0x2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + 0x08008bde __retarget_lock_acquire_recursive + .text.__retarget_lock_release_recursive + 0x08008be0 0x2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + 0x08008be0 __retarget_lock_release_recursive + .text.strcpy 0x08008be2 0x10 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strcpy.o) + 0x08008be2 strcpy + .text.memcpy 0x08008bf2 0x12 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memcpy-stub.o) + 0x08008bf2 memcpy + .text.__assert_func + 0x08008c04 0x3c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-assert.o) + 0x08008c04 __assert_func + .text._free_r 0x08008c40 0x94 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-freer.o) + 0x08008c40 _free_r + .text.__ssputs_r + 0x08008cd4 0xc8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) + 0x08008cd4 __ssputs_r + .text._svfprintf_r + 0x08008d9c 0x208 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) + 0x08008d9c _svfprintf_r + 0x08008d9c _svfiprintf_r + .text._printf_common + 0x08008fa4 0xde /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf_i.o) + 0x08008fa4 _printf_common + *fill* 0x08009082 0x2 + .text._printf_i + 0x08009084 0x218 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf_i.o) + 0x08009084 _printf_i + .text.__sflush_r + 0x0800929c 0x114 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o) + 0x0800929c __sflush_r + .text._fflush_r + 0x080093b0 0x56 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o) + 0x080093b0 _fflush_r + .text._malloc_usable_size_r + 0x08009406 0x10 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-msizer.o) + 0x08009406 _malloc_usable_size_r + *fill* 0x08009416 0x2 + .text.__sread 0x08009418 0x28 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) + 0x08009418 __sread + .text.__swrite + 0x08009440 0x38 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) + 0x08009440 __swrite + .text.__sseek 0x08009478 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) + 0x08009478 __sseek + .text.__sclose + 0x080094a4 0xc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) + 0x080094a4 __sclose + .text.fprintf 0x080094b0 0x20 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fprintf.o) + 0x080094b0 fprintf + 0x080094b0 fiprintf + .text._lseek_r + 0x080094d0 0x28 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lseekr.o) + 0x080094d0 _lseek_r + .text._read_r 0x080094f8 0x28 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-readr.o) + 0x080094f8 _read_r + .text._close_r + 0x08009520 0x24 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-closer.o) + 0x08009520 _close_r + .text.memchr 0x08009544 0x16 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memchr-stub.o) + 0x08009544 memchr + .text.abort 0x0800955a 0xe /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-abort.o) + 0x0800955a abort + .text.__sfputc_r + 0x08009568 0x2a /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) + .text.__sfputs_r + 0x08009592 0x24 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) + 0x08009592 __sfputs_r + *fill* 0x080095b6 0x2 + .text._vfprintf_r + 0x080095b8 0x240 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) + 0x080095b8 _vfiprintf_r + 0x080095b8 _vfprintf_r + .text.__swbuf_r + 0x080097f8 0x84 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wbuf.o) + 0x080097f8 __swbuf_r + .text.__swsetup_r + 0x0800987c 0xb4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wsetup.o) + 0x0800987c __swsetup_r + .text.__swhatbuf_r + 0x08009930 0x54 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-makebuf.o) + 0x08009930 __swhatbuf_r + .text.__smakebuf_r + 0x08009984 0x72 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-makebuf.o) + 0x08009984 __smakebuf_r + .text._raise_r + 0x080099f6 0x52 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) + 0x080099f6 _raise_r + .text.raise 0x08009a48 0x14 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) + 0x08009a48 raise + .text._isatty_r + 0x08009a5c 0x24 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-isattyr.o) + 0x08009a5c _isatty_r + .text._kill_r 0x08009a80 0x24 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signalr.o) + 0x08009a80 _kill_r + .text._getpid_r + 0x08009aa4 0x8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signalr.o) + 0x08009aa4 _getpid_r + .text._fstat_r + 0x08009aac 0x24 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fstatr.o) + 0x08009aac _fstat_r + .text.atan2f 0x08009ad0 0x8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_atan2.o) + 0x08009ad0 atan2f + .text.sqrtf 0x08009ad8 0x3c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_sqrt.o) + 0x08009ad8 sqrtf + .text.cosf 0x08009b14 0x74 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_cos.o) + 0x08009b14 cosf + .text.sinf 0x08009b88 0x74 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_sin.o) + 0x08009b88 sinf + .text.__kernel_cosf + 0x08009bfc 0x190 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_cos.o) + 0x08009bfc __kernel_cosf + .text.__kernel_sinf + 0x08009d8c 0xf0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_sin.o) + 0x08009d8c __kernel_sinf + .text.__ieee754_atan2f + 0x08009e7c 0x110 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_atan2.o) + 0x08009e7c __ieee754_atan2f + .text.__ieee754_sqrtf + 0x08009f8c 0xec /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_sqrt.o) + 0x08009f8c __ieee754_sqrtf + .text.__ieee754_rem_pio2f + 0x0800a078 0x2f8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_rem_pio2.o) + 0x0800a078 __ieee754_rem_pio2f + .text.atanf 0x0800a370 0x23c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_atan.o) + 0x0800a370 atanf + .text.fabsf 0x0800a5ac 0x8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_fabs.o) + 0x0800a5ac fabsf + .text.__kernel_rem_pio2f + 0x0800a5b4 0x7a0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_rem_pio2.o) + 0x0800a5b4 __kernel_rem_pio2f + .text.floorf 0x0800ad54 0x94 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_floor.o) + 0x0800ad54 floorf + .text.scalbnf 0x0800ade8 0xc4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_scalbn.o) + 0x0800ade8 scalbnf + .text.__muldi3 + 0x0800aeac 0x5c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_muldi3.o) + 0x0800aeac __aeabi_lmul + 0x0800aeac __muldi3 + .text.__fixunssfsi + 0x0800af08 0x30 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunssfsi.o) + 0x0800af08 __aeabi_f2uiz + 0x0800af08 __fixunssfsi + .text.__fixunsdfsi + 0x0800af38 0x3c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfsi.o) + 0x0800af38 __fixunsdfsi + 0x0800af38 __aeabi_d2uiz + .text.__udivmoddi4 + 0x0800af74 0x198 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_udivmoddi4.o) + 0x0800af74 __udivmoddi4 + .text.__aeabi_fadd + 0x0800b10c 0x41c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(addsf3.o) + 0x0800b10c __aeabi_fadd + .text.__aeabi_fdiv + 0x0800b528 0x22c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(divsf3.o) + 0x0800b528 __aeabi_fdiv + .text.__eqsf2 0x0800b754 0x50 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(eqsf2.o) + 0x0800b754 __nesf2 + 0x0800b754 __eqsf2 + .text.__gesf2 0x0800b7a4 0x90 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(gesf2.o) + 0x0800b7a4 __gtsf2 + 0x0800b7a4 __gesf2 + .text.__lesf2 0x0800b834 0x90 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(lesf2.o) + 0x0800b834 __lesf2 + 0x0800b834 __ltsf2 + .text.__aeabi_fmul + 0x0800b8c4 0x2a4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(mulsf3.o) + 0x0800b8c4 __aeabi_fmul + .text.__aeabi_fsub + 0x0800bb68 0x484 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(subsf3.o) + 0x0800bb68 __aeabi_fsub + .text.__aeabi_fcmpun + 0x0800bfec 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(unordsf2.o) + 0x0800bfec __aeabi_fcmpun + .text.__aeabi_f2iz + 0x0800c018 0x40 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(fixsfsi.o) + 0x0800c018 __aeabi_f2iz + .text.__aeabi_i2f + 0x0800c058 0xa0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatsisf.o) + 0x0800c058 __aeabi_i2f + .text.__aeabi_ui2f + 0x0800c0f8 0x8c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatunsisf.o) + 0x0800c0f8 __aeabi_ui2f + .text.__aeabi_dadd + 0x0800c184 0x834 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(adddf3.o) + 0x0800c184 __aeabi_dadd + .text.__aeabi_ddiv + 0x0800c9b8 0x63c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(divdf3.o) + 0x0800c9b8 __aeabi_ddiv + .text.__eqdf2 0x0800cff4 0x8c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(eqdf2.o) + 0x0800cff4 __eqdf2 + 0x0800cff4 __nedf2 + .text.__gedf2 0x0800d080 0xe0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(gedf2.o) + 0x0800d080 __gtdf2 + 0x0800d080 __gedf2 + .text.__ledf2 0x0800d160 0xdc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(ledf2.o) + 0x0800d160 __ltdf2 + 0x0800d160 __ledf2 + .text.__aeabi_dmul + 0x0800d23c 0x590 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(muldf3.o) + 0x0800d23c __aeabi_dmul + .text.__aeabi_dsub + 0x0800d7cc 0x870 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(subdf3.o) + 0x0800d7cc __aeabi_dsub + .text.__aeabi_d2iz + 0x0800e03c 0x78 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(fixdfsi.o) + 0x0800e03c __aeabi_d2iz + .text.__aeabi_i2d + 0x0800e0b4 0x5c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatsidf.o) + 0x0800e0b4 __aeabi_i2d + .text.__aeabi_ui2d + 0x0800e110 0x48 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatunsidf.o) + 0x0800e110 __aeabi_ui2d + .text.__aeabi_f2d + 0x0800e158 0x90 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(extendsfdf2.o) + 0x0800e158 __aeabi_f2d + .text.__aeabi_d2f + 0x0800e1e8 0x110 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(truncdfsf2.o) + 0x0800e1e8 __aeabi_d2f + .text.unlikely._ZSt25__throw_bad_function_callv + 0x0800e2f8 0x6 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) + 0x0800e2f8 std::__throw_bad_function_call() + *(.glue_7) + .glue_7 0x0800e2fe 0x0 linker stubs + *(.glue_7t) + .glue_7t 0x0800e2fe 0x0 linker stubs + *(.eh_frame) + *fill* 0x0800e2fe 0x2 + .eh_frame 0x0800e300 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtbegin.o + *(.init) + .init 0x0800e300 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crti.o + 0x0800e300 _init + .init 0x0800e304 0x8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtn.o + *(.fini) + .fini 0x0800e30c 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crti.o + 0x0800e30c _fini + .fini 0x0800e310 0x8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtn.o + 0x0800e318 . = ALIGN (0x4) + 0x0800e318 _etext = . + +.vfp11_veneer 0x0800e318 0x0 + .vfp11_veneer 0x0800e318 0x0 linker stubs + +.v4_bx 0x0800e318 0x0 + .v4_bx 0x0800e318 0x0 linker stubs + +.iplt 0x0800e318 0x0 + .iplt 0x0800e318 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtbegin.o + +.rodata 0x0800e318 0x1394 + 0x0800e318 . = ALIGN (0x4) + *(.rodata) + *(.rodata*) + .rodata._ZN3MD511make_digestEPKhj.str1.1 + 0x0800e318 0x78a /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/MD5.cpp.o + 0x11 (size before relaxing) + *fill* 0x0800eaa2 0x2 + .rodata._ZZN12_GLOBAL__N_13md5EPKhjPhE1k + 0x0800eaa4 0x100 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/MD5.cpp.o + .rodata._ZZN12_GLOBAL__N_13md5EPKhjPhE1r + 0x0800eba4 0x100 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/MD5.cpp.o + .rodata._Z18sendCommandToModemPKc.str1.1 + 0x0800eca4 0xb /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .rodata._Z15sendTextToModemPKc.str1.1 + 0x0800eca4 0x9 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .rodata._Z19configureModemSleepv.str1.1 + 0x0800eca4 0x60 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .rodata._Z9wakeModemv.str1.1 + 0x0800eca4 0x26 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .rodata._Z15putModemToSleepv.str1.1 + 0x0800eca4 0x6f /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .rodata._Z17composeReportLinejPc.str1.1 + 0x0800eca4 0x1d /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .rodata._Z20generateWindguruHashPcPKcS1_S1_.str1.1 + 0x0800eca4 0x7 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .rodata._Z16buildWindguruUrlPcj.str1.1 + 0x0800eca4 0xae /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .rodata._Z12processModemv.str1.1 + 0x0800eca4 0x273 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .rodata._Z12initWatchdogv.str1.1 + 0x0800eca4 0x46 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .rodata.setup.str1.1 + 0x0800eca4 0x1bf /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .rodata.loop.str1.1 + 0x0800eca4 0x22 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .rodata.UARTPrescTable + 0x0800eca4 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + 0x0800eca4 UARTPrescTable + .rodata.CSWTCH.79 + 0x0800ecbc 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .rodata.CSWTCH.77 + 0x0800ecc0 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .rodata.CSWTCH.75 + 0x0800ecc4 0x6 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + *fill* 0x0800ecca 0x2 + .rodata.pin_map_ll + 0x0800eccc 0x40 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + 0x0800eccc pin_map_ll + .rodata.APBPrescTable + 0x0800ed0c 0x20 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/system_stm32yyxx.c.o + 0x0800ed0c APBPrescTable + .rodata.AHBPrescTable + 0x0800ed2c 0x40 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/system_stm32yyxx.c.o + 0x0800ed2c AHBPrescTable + .rodata._ZTV7TwoWire + 0x0800ed6c 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x0800ed6c vtable for TwoWire + .rodata.I2C_Charac + 0x0800ed98 0x54 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + .rodata.PinMap_UART_CTS + 0x0800edec 0x3c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + 0x0800edec PinMap_UART_CTS + .rodata.PinMap_UART_RTS + 0x0800ee28 0x3c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + 0x0800ee28 PinMap_UART_RTS + .rodata.PinMap_UART_RX + 0x0800ee64 0x48 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + 0x0800ee64 PinMap_UART_RX + .rodata.PinMap_UART_TX + 0x0800eeac 0x48 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + 0x0800eeac PinMap_UART_TX + .rodata.PinMap_TIM + 0x0800eef4 0x180 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + 0x0800eef4 PinMap_TIM + .rodata.PinMap_I2C_SCL + 0x0800f074 0x3c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + 0x0800f074 PinMap_I2C_SCL + .rodata.PinMap_I2C_SDA + 0x0800f0b0 0x3c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + 0x0800f0b0 PinMap_I2C_SDA + .rodata.analogInputPin + 0x0800f0ec 0x40 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/variant_generic.cpp.o + 0x0800f0ec analogInputPin + .rodata.digitalPin + 0x0800f12c 0x74 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/variant_generic.cpp.o + 0x0800f12c digitalPin + .rodata.CSWTCH.73 + 0x0800f1a0 0xc /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .rodata.CSWTCH.72 + 0x0800f1ac 0x5 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + *fill* 0x0800f1b1 0x3 + .rodata._ZTV14HardwareSerial + 0x0800f1b4 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + 0x0800f1b4 vtable for HardwareSerial + .rodata._ZN5Print7printlnEv.str1.1 + 0x0800f1e0 0x3 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .rodata.dtostrf.str1.1 + 0x0800f1e0 0x1e /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) + .rodata.srand.str1.1 + 0x0800f1e0 0xc8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-rand.o) + .rodata.__assert_func.str1.1 + 0x0800f1e0 0x3d /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-assert.o) + .rodata._svfprintf_r.str1.1 + 0x0800f1e0 0x11 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) + .rodata._printf_i.str1.1 + 0x0800f1e0 0x22 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf_i.o) + .rodata._vfprintf_r.str1.1 + 0x0800f1e0 0x11 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) + .rodata.CSWTCH.9 + 0x0800f1e0 0xc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_atan2.o) + .rodata.CSWTCH.8 + 0x0800f1ec 0xc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_atan2.o) + .rodata.tiny 0x0800f1f8 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_sqrt.o) + .rodata.one 0x0800f1fc 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_sqrt.o) + .rodata.npio2_hw + 0x0800f200 0x80 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_rem_pio2.o) + .rodata.two_over_pi + 0x0800f280 0x318 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_rem_pio2.o) + .rodata.atanlo + 0x0800f598 0x10 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_atan.o) + .rodata.atanhi + 0x0800f5a8 0x10 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_atan.o) + .rodata.PIo2 0x0800f5b8 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_rem_pio2.o) + .rodata.init_jk + 0x0800f5e4 0xc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_rem_pio2.o) + .rodata.__aeabi_fdiv + 0x0800f5f0 0x7c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(divsf3.o) + .rodata.__aeabi_ddiv + 0x0800f66c 0x40 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(divdf3.o) + 0x0800f6ac . = ALIGN (0x4) + +.ARM.extab 0x0800f6ac 0x0 + 0x0800f6ac . = ALIGN (0x4) + *(.ARM.extab* .gnu.linkonce.armextab.*) + 0x0800f6ac . = ALIGN (0x4) + +.ARM 0x0800f6ac 0x8 + 0x0800f6ac . = ALIGN (0x4) + 0x0800f6ac __exidx_start = . + *(.ARM.exidx*) + .ARM.exidx.text.__udivmoddi4 + 0x0800f6ac 0x8 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_udivmoddi4.o) + 0x0800f6b4 __exidx_end = . + 0x0800f6b4 . = ALIGN (0x4) + +.preinit_array 0x0800f6b4 0x0 + 0x0800f6b4 . = ALIGN (0x4) + 0x0800f6b4 PROVIDE (__preinit_array_start = .) + *(.preinit_array*) + 0x0800f6b4 PROVIDE (__preinit_array_end = .) + 0x0800f6b4 . = ALIGN (0x4) + +.init_array 0x0800f6b4 0x18 + 0x0800f6b4 . = ALIGN (0x4) + 0x0800f6b4 PROVIDE (__init_array_start = .) + *(SORT_BY_NAME(.init_array.*)) + .init_array.00101 + 0x0800f6b4 0x4 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(main.cpp.o) + *(.init_array*) + .init_array 0x0800f6b8 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtbegin.o + .init_array 0x0800f6bc 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .init_array 0x0800f6c0 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + .init_array 0x0800f6c4 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .init_array 0x0800f6c8 0x4 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + 0x0800f6cc PROVIDE (__init_array_end = .) + 0x0800f6cc . = ALIGN (0x4) + +.fini_array 0x0800f6cc 0xc + 0x0800f6cc . = ALIGN (0x4) + 0x0800f6cc PROVIDE (__fini_array_start = .) + *(SORT_BY_NAME(.fini_array.*)) + *(.fini_array*) + .fini_array 0x0800f6cc 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtbegin.o + .fini_array 0x0800f6d0 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + .fini_array 0x0800f6d4 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x0800f6d8 PROVIDE (__fini_array_end = .) + 0x0800f6d8 . = ALIGN (0x4) + 0x0800f6d8 _sidata = LOADADDR (.data) + +.rel.dyn 0x0800f6d8 0x0 + .rel.iplt 0x0800f6d8 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtbegin.o + +.data 0x20000000 0x17c load address 0x0800f6d8 + 0x20000000 . = ALIGN (0x4) + 0x20000000 _sdata = . + *(.data) + *(.data*) + .data.modem_step + 0x20000000 0x1 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x20000000 modem_step + .data.salt_str + 0x20000001 0x10 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x20000001 salt_str + .data.uwTickFreq + 0x20000011 0x1 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + 0x20000011 uwTickFreq + *fill* 0x20000012 0x2 + .data.uwTickPrio + 0x20000014 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + 0x20000014 uwTickPrio + .data.GPIOPort + 0x20000018 0x14 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/PortNames.c.o + 0x20000018 GPIOPort + .data.hcrc 0x2000002c 0x24 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/hw_config.c.o + 0x2000002c hcrc + .data.SystemCoreClock + 0x20000050 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/system_stm32yyxx.c.o + 0x20000050 SystemCoreClock + .data.serial_debug + 0x20000054 0xc8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + .data.heap_end.0 + 0x2000011c 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + .data.__sglue 0x20000120 0xc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + 0x20000120 __sglue + .data._impure_ptr + 0x2000012c 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-impure.o) + 0x2000012c _impure_ptr + .data._impure_data + 0x20000130 0x4c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-impure.o) + 0x20000130 _impure_data + *(.RamFunc) + *(.RamFunc*) + 0x2000017c . = ALIGN (0x4) + 0x2000017c _edata = . + +.igot.plt 0x2000017c 0x0 load address 0x0800f854 + .igot.plt 0x2000017c 0x0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtbegin.o + 0x2000017c . = ALIGN (0x4) + +.bss 0x2000017c 0x11ec load address 0x0800f854 + 0x2000017c _sbss = . + 0x2000017c __bss_start__ = _sbss + *(.bss) + *(.bss*) + .bss.completed.1 + 0x2000017c 0x1 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtbegin.o + *fill* 0x2000017d 0x3 + .bss.object.0 0x20000180 0x18 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtbegin.o + .bss.cycle_start_time + 0x20000198 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x20000198 cycle_start_time + .bss.time_to_wait_before_next_step + 0x2000019c 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x2000019c time_to_wait_before_next_step + .bss.last_step_time + 0x200001a0 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x200001a0 last_step_time + .bss.modem_is_sleeping + 0x200001a4 0x1 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x200001a4 modem_is_sleeping + *fill* 0x200001a5 0x1 + .bss.last_avg_dir + 0x200001a6 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x200001a6 last_avg_dir + .bss.last_min_speed + 0x200001a8 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x200001a8 last_min_speed + .bss.last_max_speed + 0x200001ac 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x200001ac last_max_speed + .bss.last_avg_speed + 0x200001b0 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x200001b0 last_avg_speed + .bss.device_uid + 0x200001b4 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x200001b4 device_uid + .bss.post_cnt 0x200001b8 0x2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x200001b8 post_cnt + *fill* 0x200001ba 0x2 + .bss.last_uploading_time + 0x200001bc 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x200001bc last_uploading_time + .bss.SerialOutput + 0x200001c0 0x164 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x200001c0 SerialOutput + .bss.SerialDebug + 0x20000324 0x164 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x20000324 SerialDebug + .bss.Anemometer + 0x20000488 0x9a0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + 0x20000488 Anemometer + .bss._ZL14low_power_mode + 0x20000e28 0x1 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + *fill* 0x20000e29 0x3 + .bss._ZL17speed_pulse_count + 0x20000e2c 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + .bss._ZL9wn_ticker + 0x20000e30 0x1 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + *fill* 0x20000e31 0x3 + .bss.tickerTimer + 0x20000e34 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + 0x20000e34 tickerTimer + .bss.uwTick 0x20000e38 0x4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + 0x20000e38 uwTick + .bss.HardwareTimer_Handle + 0x20000e3c 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + 0x20000e3c HardwareTimer_Handle + .bss._ZL13gpio_irq_conf + 0x20000e54 0x140 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + .bss.uart_handlers + 0x20000f94 0xc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + .bss.Wire 0x20000fa0 0xe4 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + 0x20000fa0 Wire + .bss.i2c_handles + 0x20001084 0x8 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + .bss.I2C_ClockTiming + 0x2000108c 0x18 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + .bss.SerialLP1 + 0x200010a4 0x164 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + 0x200010a4 SerialLP1 + .bss.g_anOutputPinConfigured + 0x20001208 0x14 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + 0x20001208 g_anOutputPinConfigured + .bss.__malloc_sbrk_start + 0x2000121c 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o) + 0x2000121c __malloc_sbrk_start + .bss.__malloc_free_list + 0x20001220 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o) + 0x20001220 __malloc_free_list + .bss.__sf 0x20001224 0x138 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + 0x20001224 __sf + .bss.__stdio_exit_handler + 0x2000135c 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + 0x2000135c __stdio_exit_handler + .bss.__lock___malloc_recursive_mutex + 0x20001360 0x1 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + 0x20001360 __lock___malloc_recursive_mutex + .bss.__lock___sfp_recursive_mutex + 0x20001361 0x1 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + 0x20001361 __lock___sfp_recursive_mutex + *fill* 0x20001362 0x2 + .bss.errno 0x20001364 0x4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reent.o) + 0x20001364 errno + *(COMMON) + 0x20001368 . = ALIGN (0x4) + 0x20001368 _ebss = . + 0x20001368 __bss_end__ = _ebss +LOAD /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crti.o +LOAD /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtbegin.o +LOAD /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o + 0x00000000 LD_FLASH_OFFSET = 0x0 + 0x00010000 LD_MAX_SIZE = 0x10000 + 0x00002000 LD_MAX_DATA_SIZE = 0x2000 + +.noinit 0x20001368 0x0 + 0x20001368 . = ALIGN (0x4) + 0x20001368 _snoinit = . + *(.noinit) + *(.noinit*) + 0x20001368 . = ALIGN (0x4) + 0x20001368 _enoinit = . + +._user_heap_stack + 0x20001368 0x600 + 0x20001368 . = ALIGN (0x8) + [!provide] PROVIDE (end = .) + 0x20001368 PROVIDE (_end = .) + 0x20001568 . = (. + _Min_Heap_Size) + *fill* 0x20001368 0x200 + 0x20001968 . = (. + _Min_Stack_Size) + *fill* 0x20001568 0x400 + 0x20001968 . = ALIGN (0x8) + +/DISCARD/ + libc.a(*) + libm.a(*) + libgcc.a(*) + +.ARM.attributes + 0x00000000 0x28 + *(.ARM.attributes) + .ARM.attributes + 0x00000000 0x1e /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crti.o + .ARM.attributes + 0x0000001e 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtbegin.o + .ARM.attributes + 0x0000004a 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/MD5.cpp.o + .ARM.attributes + 0x00000076 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .ARM.attributes + 0x000000a2 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + .ARM.attributes + 0x000000ce 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Rolling_Buffer.cpp.o + .ARM.attributes + 0x000000fa 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o + .ARM.attributes + 0x00000126 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o + .ARM.attributes + 0x00000152 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .ARM.attributes + 0x0000017e 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + .ARM.attributes + 0x000001aa 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o + .ARM.attributes + 0x000001d6 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc_ex.c.o + .ARM.attributes + 0x00000202 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + .ARM.attributes + 0x0000022e 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o + .ARM.attributes + 0x0000025a 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .ARM.attributes + 0x00000286 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o + .ARM.attributes + 0x000002b2 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .ARM.attributes + 0x000002de 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + .ARM.attributes + 0x0000030a 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o + .ARM.attributes + 0x00000336 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .ARM.attributes + 0x00000362 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .ARM.attributes + 0x0000038e 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .ARM.attributes + 0x000003ba 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + .ARM.attributes + 0x000003e6 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .ARM.attributes + 0x00000412 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/new.cpp.o + .ARM.attributes + 0x0000043e 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/PortNames.c.o + .ARM.attributes + 0x0000046a 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + .ARM.attributes + 0x00000496 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + .ARM.attributes + 0x000004c2 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/hw_config.c.o + .ARM.attributes + 0x000004ee 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + .ARM.attributes + 0x0000051a 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + .ARM.attributes + 0x00000546 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/system_stm32yyxx.c.o + .ARM.attributes + 0x00000572 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + .ARM.attributes + 0x0000059e 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + .ARM.attributes + 0x000005ca 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + .ARM.attributes + 0x000005f6 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .ARM.attributes + 0x00000622 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + .ARM.attributes + 0x0000064e 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + .ARM.attributes + 0x0000067a 0x2c /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/variant_generic.cpp.o + .ARM.attributes + 0x000006a6 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .ARM.attributes + 0x000006d2 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .ARM.attributes + 0x000006fe 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .ARM.attributes + 0x0000072a 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + .ARM.attributes + 0x00000756 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) + .ARM.attributes + 0x00000782 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) + .ARM.attributes + 0x000007ae 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(main.cpp.o) + .ARM.attributes + 0x000007da 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(pins_arduino.c.o) + .ARM.attributes + 0x00000806 0x22 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) + .ARM.attributes + 0x00000828 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + .ARM.attributes + 0x00000854 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_time.c.o) + .ARM.attributes + 0x00000880 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WSerial.cpp.o) + .ARM.attributes + 0x000008ac 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(board.c.o) + .ARM.attributes + 0x000008d8 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(hooks.c.o) + .ARM.attributes + 0x00000904 0x2c /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + .ARM.attributes + 0x00000930 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-calloc.o) + .ARM.attributes + 0x0000095c 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-callocr.o) + .ARM.attributes + 0x00000988 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-malloc.o) + .ARM.attributes + 0x000009b4 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o) + .ARM.attributes + 0x000009e0 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-snprintf.o) + .ARM.attributes + 0x00000a0c 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mlock.o) + .ARM.attributes + 0x00000a38 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sprintf.o) + .ARM.attributes + 0x00000a64 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-rand.o) + .ARM.attributes + 0x00000a90 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-realloc.o) + .ARM.attributes + 0x00000abc 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + .ARM.attributes + 0x00000ae8 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vdprintf.o) + .ARM.attributes + 0x00000b14 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reallocr.o) + .ARM.attributes + 0x00000b40 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fwalk.o) + .ARM.attributes + 0x00000b6c 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vasnprintf.o) + .ARM.attributes + 0x00000b98 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memmove.o) + .ARM.attributes + 0x00000bc4 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memset.o) + .ARM.attributes + 0x00000bf0 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strcat.o) + .ARM.attributes + 0x00000c1c 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sbrkr.o) + .ARM.attributes + 0x00000c48 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-writer.o) + .ARM.attributes + 0x00000c74 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-errno.o) + .ARM.attributes + 0x00000ca0 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-init.o) + .ARM.attributes + 0x00000ccc 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + .ARM.attributes + 0x00000cf8 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reent.o) + .ARM.attributes + 0x00000d24 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-impure.o) + .ARM.attributes + 0x00000d50 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strcpy.o) + .ARM.attributes + 0x00000d7c 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memcpy-stub.o) + .ARM.attributes + 0x00000da8 0x1c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strlen.o) + .ARM.attributes + 0x00000dc4 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-assert.o) + .ARM.attributes + 0x00000df0 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-freer.o) + .ARM.attributes + 0x00000e1c 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) + .ARM.attributes + 0x00000e48 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf_i.o) + .ARM.attributes + 0x00000e74 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o) + .ARM.attributes + 0x00000ea0 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-msizer.o) + .ARM.attributes + 0x00000ecc 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) + .ARM.attributes + 0x00000ef8 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fprintf.o) + .ARM.attributes + 0x00000f24 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lseekr.o) + .ARM.attributes + 0x00000f50 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-readr.o) + .ARM.attributes + 0x00000f7c 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-closer.o) + .ARM.attributes + 0x00000fa8 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memchr-stub.o) + .ARM.attributes + 0x00000fd4 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-abort.o) + .ARM.attributes + 0x00001000 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) + .ARM.attributes + 0x0000102c 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wbuf.o) + .ARM.attributes + 0x00001058 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wsetup.o) + .ARM.attributes + 0x00001084 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-makebuf.o) + .ARM.attributes + 0x000010b0 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) + .ARM.attributes + 0x000010dc 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-isattyr.o) + .ARM.attributes + 0x00001108 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signalr.o) + .ARM.attributes + 0x00001134 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fstatr.o) + .ARM.attributes + 0x00001160 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_atan2.o) + .ARM.attributes + 0x0000118c 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_sqrt.o) + .ARM.attributes + 0x000011b8 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_cos.o) + .ARM.attributes + 0x000011e4 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_sin.o) + .ARM.attributes + 0x00001210 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_cos.o) + .ARM.attributes + 0x0000123c 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_sin.o) + .ARM.attributes + 0x00001268 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_atan2.o) + .ARM.attributes + 0x00001294 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_sqrt.o) + .ARM.attributes + 0x000012c0 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_rem_pio2.o) + .ARM.attributes + 0x000012ec 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_atan.o) + .ARM.attributes + 0x00001318 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_fabs.o) + .ARM.attributes + 0x00001344 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_rem_pio2.o) + .ARM.attributes + 0x00001370 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_floor.o) + .ARM.attributes + 0x0000139c 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_scalbn.o) + .ARM.attributes + 0x000013c8 0x1e /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_thumb1_case_uqi.o) + .ARM.attributes + 0x000013e6 0x1e /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_thumb1_case_shi.o) + .ARM.attributes + 0x00001404 0x1e /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o) + .ARM.attributes + 0x00001422 0x1e /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_divsi3.o) + .ARM.attributes + 0x00001440 0x1e /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_dvmd_tls.o) + .ARM.attributes + 0x0000145e 0x1e /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpdf2.o) + .ARM.attributes + 0x0000147c 0x1e /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpsf2.o) + .ARM.attributes + 0x0000149a 0x1e /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_aeabi_uldivmod.o) + .ARM.attributes + 0x000014b8 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_muldi3.o) + .ARM.attributes + 0x000014e4 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunssfsi.o) + .ARM.attributes + 0x00001510 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfsi.o) + .ARM.attributes + 0x0000153c 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_udivmoddi4.o) + .ARM.attributes + 0x00001568 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(addsf3.o) + .ARM.attributes + 0x00001594 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(divsf3.o) + .ARM.attributes + 0x000015c0 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(eqsf2.o) + .ARM.attributes + 0x000015ec 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(gesf2.o) + .ARM.attributes + 0x00001618 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(lesf2.o) + .ARM.attributes + 0x00001644 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(mulsf3.o) + .ARM.attributes + 0x00001670 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(subsf3.o) + .ARM.attributes + 0x0000169c 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(unordsf2.o) + .ARM.attributes + 0x000016c8 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(fixsfsi.o) + .ARM.attributes + 0x000016f4 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatsisf.o) + .ARM.attributes + 0x00001720 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatunsisf.o) + .ARM.attributes + 0x0000174c 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(adddf3.o) + .ARM.attributes + 0x00001778 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(divdf3.o) + .ARM.attributes + 0x000017a4 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(eqdf2.o) + .ARM.attributes + 0x000017d0 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(gedf2.o) + .ARM.attributes + 0x000017fc 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(ledf2.o) + .ARM.attributes + 0x00001828 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(muldf3.o) + .ARM.attributes + 0x00001854 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(subdf3.o) + .ARM.attributes + 0x00001880 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(fixdfsi.o) + .ARM.attributes + 0x000018ac 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatsidf.o) + .ARM.attributes + 0x000018d8 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatunsidf.o) + .ARM.attributes + 0x00001904 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(extendsfdf2.o) + .ARM.attributes + 0x00001930 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(truncdfsf2.o) + .ARM.attributes + 0x0000195c 0x1e /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_clzsi2.o) + .ARM.attributes + 0x0000197a 0x1e /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_clzdi2.o) + .ARM.attributes + 0x00001998 0x2c /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) + .ARM.attributes + 0x000019c4 0x1e /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtn.o +OUTPUT(/Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/air780e-dual.ino.elf elf32-littlearm) +LOAD linker stubs +LOAD /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc.a +LOAD /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a +LOAD /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a + +.comment 0x00000000 0x38 + .comment 0x00000000 0x38 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtbegin.o + 0x39 (size before relaxing) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/MD5.cpp.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Rolling_Buffer.cpp.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc_ex.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/new.cpp.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/PortNames.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/hw_config.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/system_stm32yyxx.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/variant_generic.cpp.o + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(main.cpp.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(pins_arduino.c.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_time.c.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WSerial.cpp.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(board.c.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(hooks.c.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-calloc.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-callocr.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-malloc.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-snprintf.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mlock.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sprintf.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-rand.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-realloc.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vdprintf.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reallocr.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fwalk.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vasnprintf.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memmove.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memset.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strcat.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sbrkr.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-writer.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-errno.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-init.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reent.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-impure.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strcpy.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memcpy-stub.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-assert.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-freer.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf_i.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-msizer.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fprintf.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lseekr.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-readr.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-closer.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memchr-stub.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-abort.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wbuf.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wsetup.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-makebuf.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-isattyr.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signalr.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fstatr.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_atan2.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_sqrt.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_cos.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_sin.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_cos.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_sin.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_atan2.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_sqrt.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_rem_pio2.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_atan.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_fabs.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_rem_pio2.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_floor.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_scalbn.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_muldi3.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunssfsi.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfsi.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_udivmoddi4.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(addsf3.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(divsf3.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(eqsf2.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(gesf2.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(lesf2.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(mulsf3.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(subsf3.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(unordsf2.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(fixsfsi.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatsisf.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatunsisf.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(adddf3.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(divdf3.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(eqdf2.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(gedf2.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(ledf2.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(muldf3.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(subdf3.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(fixdfsi.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatsidf.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatunsidf.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(extendsfdf2.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(truncdfsf2.o) + .comment 0x00000038 0x39 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) + +Cross Reference Table + +Symbol File +ADC1_IRQHandler /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +ADC_ConversionStop /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +ADC_Disable /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o +ADC_Enable /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +AHBPrescTable /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/system_stm32yyxx.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_utils.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o +APBPrescTable /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/system_stm32yyxx.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o +Anemometer /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +DMA1_Ch4_5_DMAMUX1_OVR_IRQHandler /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +DMA1_Channel1_IRQHandler /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +DMA1_Channel2_3_IRQHandler /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +Default_Handler /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +EXTI0_1_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o +EXTI2_3_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o +EXTI4_15_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o +FLASH_FlushCaches /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o +FLASH_IRQHandler /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +FLASH_PageErase /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o +FLASH_WaitForLastOperation /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o +GPIOPort /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/PortNames.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +HAL_ADCEx_Calibration_GetValue /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o +HAL_ADCEx_Calibration_SetValue /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o +HAL_ADCEx_Calibration_Start /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o +HAL_ADCEx_ChannelConfigReadyCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +HAL_ADCEx_DisableVoltageRegulator /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o +HAL_ADCEx_EndOfSamplingCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +HAL_ADCEx_LevelOutOfWindow2Callback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +HAL_ADCEx_LevelOutOfWindow3Callback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +HAL_ADC_AnalogWDGConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +HAL_ADC_ConfigChannel /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o +HAL_ADC_ConvCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +HAL_ADC_ConvHalfCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +HAL_ADC_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o +HAL_ADC_ErrorCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +HAL_ADC_GetError /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +HAL_ADC_GetState /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o +HAL_ADC_GetValue /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o +HAL_ADC_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +HAL_ADC_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o +HAL_ADC_LevelOutOfWindowCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +HAL_ADC_MspDeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +HAL_ADC_MspInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +HAL_ADC_PollForConversion /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o +HAL_ADC_PollForEvent /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +HAL_ADC_Start /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o +HAL_ADC_Start_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +HAL_ADC_Start_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +HAL_ADC_Stop /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o +HAL_ADC_Stop_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +HAL_ADC_Stop_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +HAL_CRCEx_Input_Data_Reverse /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc_ex.c.o +HAL_CRCEx_Output_Data_Reverse /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc_ex.c.o +HAL_CRCEx_Polynomial_Set /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o +HAL_CRC_Accumulate /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o +HAL_CRC_Calculate /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o +HAL_CRC_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o +HAL_CRC_GetState /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o +HAL_CRC_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/hw_config.c.o +HAL_CRC_MspDeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o +HAL_CRC_MspInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_crc.c.o +HAL_DBGMCU_DisableDBGStandbyMode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_DBGMCU_DisableDBGStopMode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_DBGMCU_EnableDBGStandbyMode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_DBGMCU_EnableDBGStopMode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_DMAEx_ConfigMuxRequestGenerator /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma_ex.c.o +HAL_DMAEx_ConfigMuxSync /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma_ex.c.o +HAL_DMAEx_DisableMuxRequestGenerator /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma_ex.c.o +HAL_DMAEx_EnableMuxRequestGenerator /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma_ex.c.o +HAL_DMAEx_MUX_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma_ex.c.o +HAL_DMA_Abort /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +HAL_DMA_Abort_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_DMA_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o +HAL_DMA_GetError /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_DMA_GetState /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_DMA_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o +HAL_DMA_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o +HAL_DMA_PollForTransfer /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o +HAL_DMA_RegisterCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o +HAL_DMA_Start /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o +HAL_DMA_Start_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +HAL_DMA_UnRegisterCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o +HAL_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_Delay /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_FLASHEx_DisableDebugger /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o +HAL_FLASHEx_EnableDebugger /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o +HAL_FLASHEx_EnableSecMemProtection /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o +HAL_FLASHEx_Erase /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o +HAL_FLASHEx_Erase_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o +HAL_FLASHEx_FlashEmptyCheck /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o +HAL_FLASHEx_ForceFlashEmpty /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o +HAL_FLASHEx_OBGetConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o +HAL_FLASHEx_OBProgram /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o +HAL_FLASH_EndOfOperationCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o +HAL_FLASH_GetError /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o +HAL_FLASH_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o +HAL_FLASH_Lock /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o +HAL_FLASH_OB_Launch /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o +HAL_FLASH_OB_Lock /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o +HAL_FLASH_OB_Unlock /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o +HAL_FLASH_OperationErrorCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o +HAL_FLASH_Program /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o +HAL_FLASH_Program_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o +HAL_FLASH_Unlock /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o +HAL_GPIO_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o +HAL_GPIO_EXTI_Callback(unsigned short) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o +HAL_GPIO_EXTI_Falling_Callback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o +HAL_GPIO_EXTI_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o +HAL_GPIO_EXTI_Rising_Callback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o +HAL_GPIO_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o +HAL_GPIO_LockPin /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o +HAL_GPIO_ReadPin /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o +HAL_GPIO_TogglePin /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o +HAL_GPIO_WritePin /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_gpio.c.o +HAL_GetDEVID /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_GetHalVersion /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_GetREVID /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_GetTick /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o +HAL_GetTickFreq /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_GetTickPrio /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_GetUIDw0 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_GetUIDw1 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_GetUIDw2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_HalfDuplex_EnableReceiver /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +HAL_HalfDuplex_EnableTransmitter /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +HAL_HalfDuplex_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +HAL_I2CEx_ConfigAnalogFilter /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c_ex.c.o +HAL_I2CEx_ConfigDigitalFilter /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c_ex.c.o +HAL_I2CEx_DisableFastModePlus /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c_ex.c.o +HAL_I2CEx_DisableWakeUp /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c_ex.c.o +HAL_I2CEx_EnableFastModePlus /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c_ex.c.o +HAL_I2CEx_EnableWakeUp /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c_ex.c.o +HAL_I2C_AbortCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_AddrCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o +HAL_I2C_DisableListen_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_ER_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o +HAL_I2C_EV_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o +HAL_I2C_EnableListen_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o +HAL_I2C_ErrorCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_GetError /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o +HAL_I2C_GetMode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_GetState /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o +HAL_I2C_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o +HAL_I2C_IsDeviceReady /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o +HAL_I2C_ListenCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_MasterRxCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_MasterTxCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Master_Abort_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Master_Receive /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Master_Receive_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Master_Receive_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Master_Seq_Receive_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Master_Seq_Receive_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o +HAL_I2C_Master_Seq_Transmit_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Master_Seq_Transmit_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o +HAL_I2C_Master_Transmit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Master_Transmit_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Master_Transmit_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_MemRxCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_MemTxCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Mem_Read /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Mem_Read_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Mem_Read_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Mem_Write /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Mem_Write_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Mem_Write_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_MspDeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_MspInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_SlaveRxCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_SlaveTxCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Slave_Receive /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Slave_Receive_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Slave_Receive_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Slave_Seq_Receive_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Slave_Seq_Receive_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o +HAL_I2C_Slave_Seq_Transmit_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Slave_Seq_Transmit_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o +HAL_I2C_Slave_Transmit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Slave_Transmit_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2C_Slave_Transmit_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o +HAL_I2S_DMAPause /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +HAL_I2S_DMAResume /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +HAL_I2S_DMAStop /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +HAL_I2S_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +HAL_I2S_ErrorCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +HAL_I2S_GetError /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +HAL_I2S_GetState /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +HAL_I2S_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +HAL_I2S_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +HAL_I2S_MspDeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +HAL_I2S_MspInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +HAL_I2S_Receive /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +HAL_I2S_Receive_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +HAL_I2S_Receive_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +HAL_I2S_RxCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +HAL_I2S_RxHalfCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +HAL_I2S_Transmit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +HAL_I2S_Transmit_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +HAL_I2S_Transmit_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +HAL_I2S_TxCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +HAL_I2S_TxHalfCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +HAL_IncTick /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o +HAL_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/hw_config.c.o +HAL_InitTick /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o +HAL_LIN_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_LIN_SendBreak /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_MPU_ConfigRegion /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o +HAL_MPU_Disable /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o +HAL_MPU_DisableRegion /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o +HAL_MPU_Enable /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o +HAL_MPU_EnableRegion /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o +HAL_MspDeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_MspInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_MultiProcessorEx_AddressLength_Set /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o +HAL_MultiProcessor_DisableMuteMode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_MultiProcessor_EnableMuteMode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_MultiProcessor_EnterMuteMode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_MultiProcessor_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_NVIC_ClearPendingIRQ /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +HAL_NVIC_DisableIRQ /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o +HAL_NVIC_EnableIRQ /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o +HAL_NVIC_GetPendingIRQ /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o +HAL_NVIC_GetPriority /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o +HAL_NVIC_SetPendingIRQ /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o +HAL_NVIC_SetPriority /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_NVIC_SystemReset /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o +HAL_PWREx_ConfigPVD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_ControlVoltageScaling /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/generic_clock.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +HAL_PWREx_DisableBatteryCharging /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_DisableFlashPowerDown /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_DisableGPIOPullDown /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_DisableGPIOPullUp /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_DisableInternalWakeUpLine /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_DisableLowPowerRunMode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o +HAL_PWREx_DisablePORMonitorSampling /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_DisablePVD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_DisablePullUpPullDownConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_DisableSRAMRetention /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_EnableBatteryCharging /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_EnableFlashPowerDown /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_EnableGPIOPullDown /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_EnableGPIOPullUp /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_EnableInternalWakeUpLine /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_EnableLowPowerRunMode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o +HAL_PWREx_EnablePORMonitorSampling /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_EnablePVD /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_EnablePullUpPullDownConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_EnableSRAMRetention /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_EnterSHUTDOWNMode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_GetVoltageRange /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_PVD_Falling_Callback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_PVD_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWREx_PVD_Rising_Callback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o +HAL_PWR_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o +HAL_PWR_DisableBkUpAccess /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o +HAL_PWR_DisableSEVOnPend /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o +HAL_PWR_DisableSleepOnExit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o +HAL_PWR_DisableWakeUpPin /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o +HAL_PWR_EnableBkUpAccess /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o +HAL_PWR_EnableSEVOnPend /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o +HAL_PWR_EnableSleepOnExit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o +HAL_PWR_EnableWakeUpPin /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o +HAL_PWR_EnterSLEEPMode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +HAL_PWR_EnterSTANDBYMode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o +HAL_PWR_EnterSTOPMode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr.c.o +HAL_RCCEx_DisableLSCO /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o +HAL_RCCEx_EnableLSCO /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o +HAL_RCCEx_GetPeriphCLKConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o +HAL_RCCEx_GetPeriphCLKFreq /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o +HAL_RCCEx_PeriphCLKConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o +HAL_RCC_CSSCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o +HAL_RCC_ClockConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/generic_clock.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +HAL_RCC_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o +HAL_RCC_DisableLSECSS /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o +HAL_RCC_EnableCSS /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o +HAL_RCC_EnableLSECSS /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o +HAL_RCC_GetClockConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HAL_RCC_GetHCLKFreq /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o +HAL_RCC_GetOscConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o +HAL_RCC_GetPCLK1Freq /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o +HAL_RCC_GetResetSource /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o +HAL_RCC_GetSysClockFreq /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o +HAL_RCC_LSECSSCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o +HAL_RCC_MCOConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o +HAL_RCC_NMI_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o +HAL_RCC_OscConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/generic_clock.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +HAL_RS485Ex_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o +HAL_RTCEx_AlarmBEventCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +HAL_RTCEx_BKUPRead /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_BKUPWrite /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_DeactivateCalibrationOutPut /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_DeactivateInternalTamper /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_DeactivateInternalTimeStamp /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_DeactivateRefClock /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_DeactivateTamper /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_DeactivateTimeStamp /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_DeactivateWakeUpTimer /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_DisableBypassShadow /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_EnableBypassShadow /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_GetTimeStamp /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_GetWakeUpTimer /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_InternalTamper3EventCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_InternalTamper4EventCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_InternalTamper5EventCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_InternalTamper6EventCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_PollForAlarmBEvent /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_PollForInternalTamperEvent /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_PollForTamperEvent /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_PollForTimeStampEvent /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_PollForWakeUpTimerEvent /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_SetCalibrationOutPut /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_SetInternalTamper /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_SetInternalTamper_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_SetInternalTimeStamp /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_SetRefClock /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_SetSmoothCalib /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_SetSynchroShift /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_SetTamper /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_SetTamper_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_SetTimeStamp /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_SetTimeStamp_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_SetWakeUpTimer /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_SetWakeUpTimer_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_Tamper1EventCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_Tamper2EventCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_TamperIRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_TimeStampEventCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_TimeStampIRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_WakeUpTimerEventCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTCEx_WakeUpTimerIRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_RTC_AlarmAEventCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +HAL_RTC_AlarmIRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +HAL_RTC_DST_Add1Hour /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +HAL_RTC_DST_ClearStoreOperation /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +HAL_RTC_DST_ReadStoreOperation /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +HAL_RTC_DST_SetStoreOperation /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +HAL_RTC_DST_Sub1Hour /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +HAL_RTC_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +HAL_RTC_DeactivateAlarm /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +HAL_RTC_GetAlarm /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +HAL_RTC_GetDate /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +HAL_RTC_GetState /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +HAL_RTC_GetTime /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +HAL_RTC_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +HAL_RTC_MspDeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +HAL_RTC_MspInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +HAL_RTC_PollForAlarmAEvent /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +HAL_RTC_SetAlarm /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +HAL_RTC_SetAlarm_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +HAL_RTC_SetDate /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +HAL_RTC_SetTime /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +HAL_RTC_WaitForSynchro /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +HAL_ResumeTick /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_SPIEx_FlushRxFifo /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi_ex.c.o +HAL_SPI_Abort /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_AbortCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_Abort_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_DMAPause /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_DMAResume /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_DMAStop /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_ErrorCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_GetError /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_GetState /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_MspDeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_MspInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_Receive /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_Receive_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_Receive_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_RxCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_RxHalfCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_Transmit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_TransmitReceive /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_TransmitReceive_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_TransmitReceive_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_Transmit_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_Transmit_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_TxCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_TxHalfCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_TxRxCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SPI_TxRxHalfCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o +HAL_SYSCFG_DisableClampingDiode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_SYSCFG_DisableIOAnalogSwitchBooster /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_SYSCFG_DisableRemap /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_SYSCFG_DisableVREFBUF /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_SYSCFG_EnableClampingDiode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_SYSCFG_EnableIOAnalogSwitchBooster /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_SYSCFG_EnableRemap /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_SYSCFG_EnableVREFBUF /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_SYSCFG_VREFBUF_HighImpedanceConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_SYSCFG_VREFBUF_TrimmingConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_SYSCFG_VREFBUF_VoltageScalingConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_SYSTICK_CLKSourceConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o +HAL_SYSTICK_Callback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o +HAL_SYSTICK_Config /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_SYSTICK_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_cortex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o +HAL_SetTickFreq /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_SuspendTick /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +HAL_TIMEx_Break2Callback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIMEx_BreakCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIMEx_CommutCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIMEx_CommutHalfCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_ConfigBreakDeadTime /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_ConfigBreakInput /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_ConfigCommutEvent /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_ConfigCommutEvent_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_ConfigCommutEvent_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_DisarmBreakInput /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_GetChannelNState /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_GroupChannel5 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_HallSensor_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_HallSensor_GetState /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_HallSensor_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_HallSensor_MspDeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_HallSensor_MspInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_HallSensor_Start /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_HallSensor_Start_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_HallSensor_Start_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_HallSensor_Stop /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_HallSensor_Stop_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_HallSensor_Stop_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_MasterConfigSynchronization /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_OCN_Start /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HAL_TIMEx_OCN_Start_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_OCN_Start_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_OCN_Stop /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_OCN_Stop_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_OCN_Stop_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_OnePulseN_Start /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_OnePulseN_Start_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_OnePulseN_Stop /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_OnePulseN_Stop_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_PWMN_Start /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HAL_TIMEx_PWMN_Start_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_PWMN_Start_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_PWMN_Stop /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_PWMN_Stop_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_PWMN_Stop_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_ReArmBreakInput /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_RemapConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIMEx_TISelection /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIM_Base_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HAL_TIM_Base_GetState /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_Base_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HAL_TIM_Base_MspDeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_Base_MspInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_Base_Start /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HAL_TIM_Base_Start_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_Base_Start_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_Base_Stop /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HAL_TIM_Base_Stop_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_Base_Stop_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HAL_TIM_ConfigClockSource /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_ConfigOCrefClear /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_ConfigTI1Input /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_DMABurstState /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_DMABurst_MultiReadStart /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_DMABurst_MultiWriteStart /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_DMABurst_ReadStart /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_DMABurst_ReadStop /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_DMABurst_WriteStart /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_DMABurst_WriteStop /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_Encoder_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_Encoder_GetState /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_Encoder_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_Encoder_MspDeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_Encoder_MspInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_Encoder_Start /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_Encoder_Start_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_Encoder_Start_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_Encoder_Stop /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_Encoder_Stop_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_Encoder_Stop_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_ErrorCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIM_GenerateEvent /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HAL_TIM_GetActiveChannel /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_GetChannelState /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_IC_CaptureCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_IC_CaptureHalfCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_IC_ConfigChannel /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HAL_TIM_IC_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_IC_GetState /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_IC_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_IC_MspDeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_IC_MspInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_IC_Start /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HAL_TIM_IC_Start_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_IC_Start_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_IC_Stop /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_IC_Stop_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_IC_Stop_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HAL_TIM_OC_ConfigChannel /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HAL_TIM_OC_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_OC_DelayElapsedCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_OC_GetState /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_OC_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_OC_MspDeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_OC_MspInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_OC_Start /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HAL_TIM_OC_Start_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_OC_Start_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_OC_Stop /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_OC_Stop_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_OC_Stop_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_OnePulse_ConfigChannel /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_OnePulse_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_OnePulse_GetState /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_OnePulse_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_OnePulse_MspDeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_OnePulse_MspInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_OnePulse_Start /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_OnePulse_Start_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_OnePulse_Stop /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_OnePulse_Stop_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_PWM_ConfigChannel /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HAL_TIM_PWM_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_PWM_GetState /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_PWM_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_PWM_MspDeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_PWM_MspInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_PWM_PulseFinishedCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +HAL_TIM_PWM_PulseFinishedHalfCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_PWM_Start /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HAL_TIM_PWM_Start_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_PWM_Start_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_PWM_Stop /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_PWM_Stop_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_PWM_Stop_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_PeriodElapsedCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_PeriodElapsedHalfCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_ReadCapturedValue /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_SlaveConfigSynchro /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_SlaveConfigSynchro_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_TriggerCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_TIM_TriggerHalfCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +HAL_UARTEx_DisableFifoMode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o +HAL_UARTEx_DisableStopMode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +HAL_UARTEx_EnableFifoMode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o +HAL_UARTEx_EnableStopMode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +HAL_UARTEx_GetRxEventType /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o +HAL_UARTEx_ReceiveToIdle /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o +HAL_UARTEx_ReceiveToIdle_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o +HAL_UARTEx_ReceiveToIdle_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o +HAL_UARTEx_RxEventCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UARTEx_RxFifoFullCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UARTEx_SetRxFifoThreshold /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o +HAL_UARTEx_SetTxFifoThreshold /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o +HAL_UARTEx_StopModeWakeUpSourceConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o +HAL_UARTEx_TxFifoEmptyCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UARTEx_WakeupCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_Abort /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_AbortCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_AbortReceive /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_AbortReceiveCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_AbortReceive_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_AbortTransmit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_AbortTransmitCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_AbortTransmit_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_Abort_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_DMAPause /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_DMAResume /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_DMAStop /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +HAL_UART_DisableReceiverTimeout /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_EnableReceiverTimeout /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_ErrorCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_GetError /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_GetState /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +HAL_UART_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +HAL_UART_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +HAL_UART_MspDeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_MspInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o +HAL_UART_Receive /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_Receive_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_Receive_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +HAL_UART_ReceiverTimeout_Config /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_RxCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_RxHalfCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_Transmit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +HAL_UART_Transmit_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_Transmit_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +HAL_UART_TxCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HAL_UART_TxHalfCpltCallback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +HardFault_Handler /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +HardwareSerial::HardwareSerial(PinName) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::HardwareSerial(PinName) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::HardwareSerial(PinName, PinName, PinName, PinName) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::HardwareSerial(PinName, PinName, PinName, PinName) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::HardwareSerial(unsigned long) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::HardwareSerial(unsigned long) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::HardwareSerial(unsigned long, unsigned long, unsigned long, unsigned long) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::HardwareSerial(unsigned long, unsigned long, unsigned long, unsigned long) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::HardwareSerial(void*, HalfDuplexMode_t) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +HardwareSerial::HardwareSerial(void*, HalfDuplexMode_t) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::_rx_complete_irq(serial_s*) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::_tx_complete_irq(serial_s*) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::available() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WSerial.cpp.o) +HardwareSerial::availableForWrite() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::begin(unsigned long, unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +HardwareSerial::configForLowPower() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::enableHalfDuplexRx() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::end() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +HardwareSerial::flush() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::flush(unsigned long) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::init(PinName, PinName, PinName, PinName) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::isHalfDuplex() const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::peek() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::read() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::setCts(PinName) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::setCts(unsigned long) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::setDataInvert() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::setHalfDuplex() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::setRts(PinName) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::setRts(unsigned long) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::setRtsCts(PinName, PinName) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::setRtsCts(unsigned long, unsigned long) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::setRx(PinName) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::setRx(unsigned long) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::setRxInvert() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::setTx(PinName) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::setTx(unsigned long) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::setTxInvert() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::write(unsigned char const*, unsigned int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareSerial::write(unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +HardwareTimer::HardwareTimer() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::HardwareTimer() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::HardwareTimer(TIM_TypeDef*) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::HardwareTimer(TIM_TypeDef*) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +HardwareTimer::attachInterrupt(std::function) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +HardwareTimer::attachInterrupt(unsigned long, std::function) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::captureCompareCallback(TIM_HandleTypeDef*) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::detachInterrupt() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::detachInterrupt(unsigned long) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::getAssociatedChannel(unsigned long) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::getCaptureCompare(unsigned long, TimerCompareFormat_t) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::getChannel(unsigned long) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::getCount(TimerFormat_t) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::getHandle() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::getIT(unsigned long) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::getLLChannel(unsigned long) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::getMode(unsigned long) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o +HardwareTimer::getOverflow(TimerFormat_t) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::getPrescaleFactor() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::getTimerClkFreq() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::hasInterrupt() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::hasInterrupt(unsigned long) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::isRunning() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::isRunningChannel(unsigned long) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::pause() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::pauseChannel(unsigned long) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::refresh() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::resume() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +HardwareTimer::resumeChannel(unsigned long) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::setCaptureCompare(unsigned long, unsigned long, TimerCompareFormat_t) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o +HardwareTimer::setCount(unsigned long, TimerFormat_t) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::setInterruptPriority(unsigned long, unsigned long) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::setMode(unsigned long, TimerModes_t, PinName, ChannelInputFilter_t) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o +HardwareTimer::setMode(unsigned long, TimerModes_t, unsigned long, ChannelInputFilter_t) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::setOverflow(unsigned long, TimerFormat_t) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +HardwareTimer::setPWM(unsigned long, PinName, unsigned long, unsigned long, std::function, std::function) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::setPWM(unsigned long, unsigned long, unsigned long, unsigned long, std::function, std::function) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::setPreloadEnable(bool) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::setPrescaleFactor(unsigned long) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::setup(TIM_TypeDef*) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::timerHandleDeinit() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::updateCallback(TIM_HandleTypeDef*) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::updateRegistersIfNotRunning(TIM_TypeDef*) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer::~HardwareTimer() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o +HardwareTimer::~HardwareTimer() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +HardwareTimer_Handle /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o +I2C1_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o +I2C2_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o +LL_ADC_CommonDeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_adc.c.o +LL_ADC_CommonInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_adc.c.o +LL_ADC_CommonStructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_adc.c.o +LL_ADC_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_adc.c.o +LL_ADC_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_adc.c.o +LL_ADC_REG_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_adc.c.o +LL_ADC_REG_StructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_adc.c.o +LL_ADC_StructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_adc.c.o +LL_CRC_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_crc.c.o +LL_DMA_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dma.c.o +LL_DMA_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dma.c.o +LL_DMA_StructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dma.c.o +LL_EXTI_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_exti.c.o +LL_EXTI_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_exti.c.o +LL_EXTI_StructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_exti.c.o +LL_GPIO_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_gpio.c.o +LL_GPIO_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_gpio.c.o +LL_GPIO_StructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_gpio.c.o +LL_I2C_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_i2c.c.o +LL_I2C_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_i2c.c.o +LL_I2C_StructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_i2c.c.o +LL_I2S_ConfigPrescaler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_spi.c.o +LL_I2S_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_spi.c.o +LL_I2S_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_spi.c.o +LL_I2S_StructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_spi.c.o +LL_Init1msTick /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_utils.c.o +LL_LPTIM_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lptim.c.o +LL_LPTIM_Disable /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lptim.c.o +LL_LPTIM_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lptim.c.o +LL_LPTIM_StructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lptim.c.o +LL_LPUART_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lpuart.c.o +LL_LPUART_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lpuart.c.o +LL_LPUART_StructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lpuart.c.o +LL_PLL_ConfigSystemClock_HSE /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_utils.c.o +LL_PLL_ConfigSystemClock_HSI /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_utils.c.o +LL_PWR_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_pwr.c.o +LL_RCC_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o +LL_RCC_GetADCClockFreq /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o +LL_RCC_GetI2CClockFreq /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o +LL_RCC_GetI2SClockFreq /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o +LL_RCC_GetLPTIMClockFreq /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o +LL_RCC_GetLPUARTClockFreq /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lpuart.c.o +LL_RCC_GetRTCClockFreq /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o +LL_RCC_GetSystemClocksFreq /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_spi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lptim.c.o +LL_RCC_GetTIMClockFreq /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o +LL_RCC_GetUSARTClockFreq /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usart.c.o +LL_RTC_ALMA_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o +LL_RTC_ALMA_StructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o +LL_RTC_ALMB_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o +LL_RTC_ALMB_StructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o +LL_RTC_DATE_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o +LL_RTC_DATE_StructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o +LL_RTC_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o +LL_RTC_EnterInitMode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o +LL_RTC_ExitInitMode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o +LL_RTC_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o +LL_RTC_StructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o +LL_RTC_TIME_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o +LL_RTC_TIME_StructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o +LL_RTC_WaitForSynchro /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o +LL_SPI_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_spi.c.o +LL_SPI_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_spi.c.o +LL_SPI_StructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_spi.c.o +LL_SetFlashLatency /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_utils.c.o +LL_SetSystemCoreClock /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_utils.c.o +LL_TIM_BDTR_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o +LL_TIM_BDTR_StructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o +LL_TIM_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o +LL_TIM_ENCODER_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o +LL_TIM_ENCODER_StructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o +LL_TIM_HALLSENSOR_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o +LL_TIM_HALLSENSOR_StructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o +LL_TIM_IC_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o +LL_TIM_IC_StructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o +LL_TIM_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o +LL_TIM_OC_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o +LL_TIM_OC_StructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o +LL_TIM_StructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_tim.c.o +LL_USART_ClockInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usart.c.o +LL_USART_ClockStructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usart.c.o +LL_USART_DeInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usart.c.o +LL_USART_Init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usart.c.o +LL_USART_StructInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usart.c.o +LL_mDelay /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_utils.c.o +LPTIM1_IRQHandler /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +LPTIM2_IRQHandler /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +LPUART1_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +MD5::make_digest(unsigned char const*, unsigned int) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/MD5.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +MD5::make_hash(char*) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/MD5.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +NMI_Handler /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +PVD_IRQHandler /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +PendSV_Handler /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +PinMap_ADC /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o +PinMap_I2C_SCL /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o +PinMap_I2C_SDA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o +PinMap_SPI_MISO /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o +PinMap_SPI_MOSI /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o +PinMap_SPI_SCLK /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o +PinMap_SPI_SSEL /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o +PinMap_TIM /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +PinMap_UART_CTS /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +PinMap_UART_RTS /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +PinMap_UART_RX /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +PinMap_UART_TX /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +Print::availableForWrite() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::flush() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) +Print::print(Printable const&) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::print(String const&) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::print(__FlashStringHelper const*) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::print(char const*) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +Print::print(char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::print(double, int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::print(float, int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::print(int, int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::print(long long, int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::print(long, int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::print(unsigned char, int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::print(unsigned int, int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::print(unsigned long long, int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::print(unsigned long, int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::printNumber(unsigned long, unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::printULLNumber(unsigned long long, unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::printf(__FlashStringHelper const*, ...) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::printf(char const*, ...) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +Print::println() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::println(Printable const&) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::println(String const&) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::println(__FlashStringHelper const*) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::println(char const*) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +Print::println(char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::println(double, int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::println(float, int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::println(int, int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::println(long long, int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::println(long, int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::println(unsigned char, int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::println(unsigned int, int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::println(unsigned long long, int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::println(unsigned long, int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::vprintf(__FlashStringHelper const*, std::__va_list) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::vprintf(char const*, std::__va_list) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::write(char const*) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +Print::write(unsigned char const*, unsigned int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) +RCC_IRQHandler /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +RTC_Bcd2ToByte /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +RTC_ByteToBcd2 /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o +RTC_EnterInitMode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +RTC_ExitInitMode /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rtc_ex.c.o +RTC_TAMP_IRQHandler /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +Reset_Handler /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +SPI1_IRQHandler /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +SPI2_IRQHandler /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +SVC_Handler /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +SerialDebug /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +SerialLP1 /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WSerial.cpp.o) +SerialOutput /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +Stream::find(char const*) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) +Stream::find(char const*, unsigned int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) +Stream::findMulti(Stream::MultiTarget*, int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) +Stream::findUntil(char const*, char const*) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) +Stream::findUntil(char const*, unsigned int, char const*, unsigned int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) +Stream::parseFloat(LookaheadMode, char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) +Stream::parseInt(LookaheadMode, char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) +Stream::peekNextDigit(LookaheadMode, bool) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) +Stream::readBytes(char*, unsigned int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +Stream::readBytesUntil(char, char*, unsigned int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +Stream::readString() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) +Stream::readStringUntil(char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) +Stream::setTimeout(unsigned long) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) +Stream::timedPeek() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) +Stream::timedRead() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) +String::String(String const&) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(String const&) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(String&&) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(String&&) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(StringSumHelper&&) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(StringSumHelper&&) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(__FlashStringHelper const*) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(__FlashStringHelper const*) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(char const*) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) +String::String(char const*) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(double, unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(double, unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(float, unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(float, unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(int, unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(int, unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(long, unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(long, unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(unsigned char, unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(unsigned char, unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(unsigned int, unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(unsigned int, unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(unsigned long, unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::String(unsigned long, unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::StringIfHelper() const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::changeBuffer(unsigned int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::charAt(unsigned int) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::compareTo(String const&) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::concat(String const&) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::concat(__FlashStringHelper const*) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::concat(char const*) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::concat(char const*, unsigned int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::concat(char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) +String::concat(double) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::concat(float) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::concat(int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::concat(long) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::concat(unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::concat(unsigned int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::concat(unsigned long) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::copy(__FlashStringHelper const*, unsigned int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::copy(char const*, unsigned int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::endsWith(String const&) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::equals(String const&) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::equals(char const*) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::equalsIgnoreCase(String const&) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::getBytes(unsigned char*, unsigned int, unsigned int) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::indexOf(String const&) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::indexOf(String const&, unsigned int) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::indexOf(char) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::indexOf(char, unsigned int) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::invalidate() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::lastIndexOf(String const&) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::lastIndexOf(String const&, unsigned int) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::lastIndexOf(char) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::lastIndexOf(char, unsigned int) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::move(String&) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::operator<(String const&) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::operator<=(String const&) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::operator=(String const&) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::operator=(String&&) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::operator=(StringSumHelper&&) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::operator=(__FlashStringHelper const*) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::operator=(char const*) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::operator>(String const&) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::operator>=(String const&) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::operator[](unsigned int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::operator[](unsigned int) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::remove(unsigned int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::remove(unsigned int, unsigned int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::replace(String const&, String const&) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::replace(char, char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::reserve(unsigned int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::setCharAt(unsigned int, char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::startsWith(String const&) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::startsWith(String const&, unsigned int) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::substring(unsigned int, unsigned int) const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::toDouble() const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::toFloat() const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::toInt() const /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::toLowerCase() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::toUpperCase() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::trim() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::~String() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +String::~String() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +SysTick_Handler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o +SystemClock_Config /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/hw_config.c.o +SystemCoreClock /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/system_stm32yyxx.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_utils.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +SystemCoreClockUpdate /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/system_stm32yyxx.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +SystemInit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/system_stm32yyxx.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +TIM14_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +TIM16_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +TIM17_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +TIM1_BRK_UP_TRG_COM_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +TIM1_CC_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +TIM2_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +TIM3_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +TIMEx_DMACommutationCplt /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +TIMEx_DMACommutationHalfCplt /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +TIM_Base_SetConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +TIM_CCxChannelCmd /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +TIM_DMACaptureCplt /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +TIM_DMACaptureHalfCplt /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +TIM_DMADelayPulseHalfCplt /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +TIM_DMAError /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +TIM_ETR_SetConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o +TIM_OC2_SetConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +TIM_TI1_SetConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_tim_ex.c.o +TwoWire::TwoWire(unsigned long, unsigned long) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::TwoWire(unsigned long, unsigned long) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::allocateRxBuffer(unsigned int) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::allocateTxBuffer(unsigned int) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::available() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o +TwoWire::begin(bool) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o +TwoWire::begin(int, bool, bool) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::begin(unsigned char, bool, bool) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::begin(unsigned long, unsigned long) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::beginTransmission(int) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o +TwoWire::beginTransmission(unsigned char) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::end() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::endTransmission() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o +TwoWire::endTransmission(unsigned char) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::flush() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::onReceive(std::function) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::onReceiveService(i2c_s*) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::onRequest(std::function) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::onRequestService(i2c_s*) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::peek() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::read() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o +TwoWire::recoverBus() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::requestFrom(int, int) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o +TwoWire::requestFrom(int, int, int) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::requestFrom(unsigned char, unsigned char) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::requestFrom(unsigned char, unsigned char, unsigned char) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::requestFrom(unsigned char, unsigned char, unsigned long, unsigned char, unsigned char) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::requestFrom(unsigned char, unsigned int, bool) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::resetRxBuffer() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::resetTxBuffer() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::setClock(unsigned long) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::write(unsigned char const*, unsigned int) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::write(unsigned char) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o +TwoWire::~TwoWire() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +TwoWire::~TwoWire() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +UARTPrescTable /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +UART_AdvFeatureConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o +UART_CheckIdleState /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o +UART_SetConfig /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o +UART_Start_Receive_DMA /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o +UART_Start_Receive_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o +UART_WaitOnFlagUntilTimeout /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o +USART1_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +USART2_IRQHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +WN_Core::WN_Core() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WN_Core::WN_Core() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +WN_Core::begin() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +WN_Core::computeReportForPeriodInSecIndexedFromLast(unsigned short, unsigned short) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +WN_Core::computeReportForRecentPeriodInSec(unsigned short) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WN_Core::disableLowPowerMode() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WN_Core::enableLowPowerMode() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WN_Core::formatRawReport(wn_raw_wind_report_t&) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WN_Core::formatRawSample(wn_raw_wind_sample_t&) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WN_Core::getSampleIndexedFromLast(unsigned short) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +WN_Core::invertVanePolarity(bool) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +WN_Core::isLowPowerMode() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WN_Core::loop() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +WN_Core::onInstantWindUpdate(void (*)(wn_instant_wind_sample_t)) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WN_Core::onNewWindReport(void (*)(wn_wind_report_t)) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WN_Core::pulsesToSpeedUnitInUse(float) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WN_Core::setAveragingPeriodInSec(unsigned short) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WN_Core::setReportingIntervalInSec(unsigned short) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WN_Core::setSpeedUnit(wn_wind_unit_t) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WN_Core::signalIfNorth(unsigned short) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WN_Core::triggerAvgWindCb(wn_wind_report_t&) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WN_Core::triggerInstantWindCb(wn_instant_wind_sample_t&) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WN_ROLLINGBUFFER::WN_ROLLINGBUFFER() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Rolling_Buffer.cpp.o +WN_ROLLINGBUFFER::WN_ROLLINGBUFFER() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Rolling_Buffer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WN_ROLLINGBUFFER::addRawSample(wn_raw_wind_sample_t&) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Rolling_Buffer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WN_ROLLINGBUFFER::get(unsigned int) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Rolling_Buffer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WN_VECTOR_AVERAGER::WN_VECTOR_AVERAGER() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o +WN_VECTOR_AVERAGER::WN_VECTOR_AVERAGER() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WN_VECTOR_AVERAGER::accumulate(unsigned long, unsigned short) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WN_VECTOR_AVERAGER::accumulate(wn_raw_wind_sample_t) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WN_VECTOR_AVERAGER::computeReportFromAccumulatedValues(wn_raw_wind_report_t*) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +WWDG_IRQHandler /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +Wire /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o +_Balloc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-gethex.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +_Bfree /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-gethex.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +_Min_Stack_Size /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o +_PathLocale /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) +__aeabi_cdcmpeq /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpdf2.o) +__aeabi_cdcmple /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpdf2.o) +__aeabi_cdrcmple /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpdf2.o) +__aeabi_cfcmpeq /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpsf2.o) +__aeabi_cfcmple /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpsf2.o) +__aeabi_cfrcmple /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpsf2.o) +__aeabi_d2f /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(truncdfsf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o +__aeabi_d2iz /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(fixdfsi.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfsi.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) +__aeabi_d2lz /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixdfdi.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +__aeabi_d2uiz /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfsi.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfdi.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +__aeabi_d2ulz /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfdi.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixdfdi.o) +__aeabi_dadd /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(adddf3.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_floatdidf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +__aeabi_dcmpeq /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpdf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +__aeabi_dcmpge /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpdf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfsi.o) +__aeabi_dcmpgt /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpdf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +__aeabi_dcmple /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpdf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +__aeabi_dcmplt /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpdf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixdfdi.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +__aeabi_dcmpun /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(unorddf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +__aeabi_ddiv /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(divdf3.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o +__aeabi_dmul /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(muldf3.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_floatdidf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfdi.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o +__aeabi_dsub /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(subdf3.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfdi.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfsi.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +__aeabi_f2d /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(extendsfdf2.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +__aeabi_f2iz /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(fixsfsi.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunssfsi.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_rem_pio2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_rem_pio2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_sin.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_cos.o) +__aeabi_f2uiz /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunssfsi.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o +__aeabi_fadd /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(addsf3.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_scalbn.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_floor.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_rem_pio2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_atan.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_rem_pio2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_sqrt.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_atan2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_sin.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_cos.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o +__aeabi_fcmpeq /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpsf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_rem_pio2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_rem_pio2.o) +__aeabi_fcmpge /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpsf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunssfsi.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_rem_pio2.o) +__aeabi_fcmpgt /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpsf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_floor.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_atan.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +__aeabi_fcmple /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpsf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_sqrt.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +__aeabi_fcmplt /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpsf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_sqrt.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_sqrt.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o +__aeabi_fcmpun /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(unordsf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_sqrt.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +__aeabi_fdiv /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(divsf3.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_atan.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_sqrt.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_atan2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_sqrt.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +__aeabi_fmul /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(mulsf3.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_scalbn.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_rem_pio2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_atan.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_rem_pio2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_sqrt.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_sin.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_cos.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +__aeabi_fsub /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(subsf3.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunssfsi.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_rem_pio2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_atan.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_rem_pio2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_sqrt.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_atan2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_sin.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_cos.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_sin.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_cos.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +__aeabi_i2d /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatsidf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_floatdidf.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o +__aeabi_i2f /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatsisf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_rem_pio2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_rem_pio2.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) +__aeabi_idiv /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_divsi3.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fvwrite.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +__aeabi_idiv0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_dvmd_tls.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_divsi3.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o) +__aeabi_idivmod /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_divsi3.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) +__aeabi_l2d /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_floatdidf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +__aeabi_ldiv0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_dvmd_tls.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_aeabi_uldivmod.o) +__aeabi_lmul /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_muldi3.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-rand.o) +__aeabi_ui2d /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatunsidf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_floatdidf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfdi.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +__aeabi_ui2f /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatunsisf.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +__aeabi_uidiv /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_time.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(main.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/system_stm32yyxx.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_utils.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_usart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_spi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rcc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_spi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2s.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_adc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Rolling_Buffer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +__aeabi_uidivmod /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(divdf3.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf_i.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtol.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(itoa.c.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_rtc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Rolling_Buffer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +__aeabi_uldivmod /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_aeabi_uldivmod.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_lpuart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_uart.c.o +__any_on /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-gethex.o) +__ascii_mbtowc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mbtowc_r.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) +__ascii_wctomb /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wctomb_r.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) +__assert /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-assert.o) +__assert_func /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-assert.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-gethex.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-rand.o) +__atexit /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__call_atexit.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__atexit.o) +__atexit0 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__atexit.o) +__atexit_dummy /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__atexit.o) +__atexit_recursive_mutex /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__call_atexit.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__atexit.o) +__b2d /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) +__bss_end__ /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o +__bss_start__ /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o +__call_exitprocs /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__call_atexit.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__atexit.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-exit.o) +__clzdi2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_clzdi2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_udivmoddi4.o) +__clzsi2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_clzsi2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_clzdi2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(extendsfdf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatunsidf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatsidf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(subdf3.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(muldf3.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(divdf3.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(adddf3.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatunsisf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(floatsisf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(subsf3.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(mulsf3.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(divsf3.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(addsf3.o) +__copybits /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +__cxa_pure_virtual /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +__cxxabiv1::__class_type_info::__do_catch(std::type_info const*, void**, unsigned int) const /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) +__cxxabiv1::__class_type_info::__do_dyncast(int, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) +__cxxabiv1::__class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) +__cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) +__cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) +__cxxabiv1::__class_type_info::~__class_type_info() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) +__cxxabiv1::__class_type_info::~__class_type_info() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) +__cxxabiv1::__class_type_info::~__class_type_info() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) +__cxxabiv1::__forced_unwind::~__forced_unwind() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +__cxxabiv1::__forced_unwind::~__forced_unwind() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +__cxxabiv1::__forced_unwind::~__forced_unwind() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +__cxxabiv1::__foreign_exception::~__foreign_exception() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +__cxxabiv1::__foreign_exception::~__foreign_exception() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +__cxxabiv1::__foreign_exception::~__foreign_exception() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +__cxxabiv1::__si_class_type_info::__do_dyncast(int, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::~__si_class_type_info() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::~__si_class_type_info() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::~__si_class_type_info() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) +__d2b /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +__deregister_frame_info /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtbegin.o +__divsi3 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_divsi3.o) +__dso_handle /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtbegin.o +__eqdf2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(eqdf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpdf2.o) +__eqsf2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(eqsf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpsf2.o) +__errno /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-errno.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_sqrt.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtol.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +__fini_array_end /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fini.o) +__fini_array_start /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fini.o) +__fixdfdi /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixdfdi.o) +__fixunsdfdi /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfdi.o) +__fixunsdfsi /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunsdfsi.o) +__fixunssfsi /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_fixunssfsi.o) +__floatdidf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_floatdidf.o) +__fp_lock_all /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) +__fp_unlock_all /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) +__gedf2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(gedf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpdf2.o) +__gesf2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(gesf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpsf2.o) +__gethex /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-gethex.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +__global_locale /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wctomb_r.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mbtowc_r.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +__gnu_thumb1_case_shi /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_thumb1_case_shi.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf_i.o) +__gnu_thumb1_case_uqi /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_thumb1_case_uqi.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/PortNames.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/LL/stm32yyxx_ll_dma.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_pwr_ex.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_i2c.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_dma.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +__gtdf2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(gedf2.o) +__gtsf2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(gesf2.o) +__hexdig_fun /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-gethex.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-hexnan.o) +__hexnan /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-hexnan.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +__hi0bits /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-gethex.o) +__i2b /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +__ieee754_atan2f /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_atan2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_atan2.o) +__ieee754_rem_pio2f /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_rem_pio2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_sin.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_cos.o) +__ieee754_sqrtf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_sqrt.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_sqrt.o) +__init_array_end /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-init.o) +__init_array_start /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-init.o) +__kernel_cosf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_cos.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_sin.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_cos.o) +__kernel_rem_pio2f /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_rem_pio2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_rem_pio2.o) +__kernel_sinf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_sin.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_sin.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_cos.o) +__ledf2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(ledf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpdf2.o) +__lesf2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(lesf2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_arm_cmpsf2.o) +__libc_fini_array /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fini.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o +__libc_init_array /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-init.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o +__lo0bits /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) +__locale_mb_cur_max /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) +__lock___arc4random_mutex /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) +__lock___at_quick_exit_mutex /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) +__lock___atexit_recursive_mutex /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__call_atexit.o) +__lock___dd_hash_mutex /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) +__lock___env_recursive_mutex /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) +__lock___malloc_recursive_mutex /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mlock.o) +__lock___sfp_recursive_mutex /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) +__lock___tz_mutex /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) +__lshift /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-gethex.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +__ltdf2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(ledf2.o) +__ltsf2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(lesf2.o) +__malloc_free_list /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-freer.o) +__malloc_lock /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mlock.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-freer.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o) +__malloc_sbrk_start /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o) +__malloc_unlock /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mlock.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-freer.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o) +__match /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-hexnan.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +__mcmp /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +__mdiff /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +__mprec_bigtens /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +__mprec_tens /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +__mprec_tinytens /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) +__muldi3 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_muldi3.o) +__multadd /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) +__multiply /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +__nedf2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(eqdf2.o) +__nesf2 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(eqsf2.o) +__on_exit_args /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__atexit.o) +__pow5mult /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +__preinit_array_end /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-init.o) +__preinit_array_start /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-init.o) +__ratio /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +__register_exitproc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__atexit.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atexit.o) +__register_frame_info /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crtbegin.o +__retarget_lock_acquire /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) +__retarget_lock_acquire_recursive /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__call_atexit.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__atexit.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mlock.o) +__retarget_lock_close /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) +__retarget_lock_close_recursive /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) +__retarget_lock_init /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) +__retarget_lock_init_recursive /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) +__retarget_lock_release /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) +__retarget_lock_release_recursive /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__call_atexit.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__atexit.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mlock.o) +__retarget_lock_try_acquire /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) +__retarget_lock_try_acquire_recursive /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o) +__s2b /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +__sclose /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) +__seofread /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) +__sf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-impure.o) +__sflush_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o) +__sfp /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) +__sfp_lock_acquire /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) +__sfp_lock_release /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) +__sfputs_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) +__sfvwrite_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fvwrite.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) +__sglue /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o) +__sigtramp /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) +__sigtramp_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) +__sinit /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wsetup.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wbuf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o) +__smakebuf_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-makebuf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wsetup.o) +__sprint_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) +__sread /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) +__sseek /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) +__ssprint_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) +__ssputs_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) +__stack /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o +__stdio_exit_handler /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-exit.o) +__swbuf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wbuf.o) +__swbuf_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wbuf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) +__swhatbuf_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-makebuf.o) +__swrite /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) +__swsetup_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wsetup.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fvwrite.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wbuf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) +__udivmoddi4 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_udivmoddi4.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_aeabi_uldivmod.o) +__udivsi3 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o) +__ulp /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +_atol_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atol.o) +_calloc_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-callocr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-calloc.o) +_close /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-closer.o) +_close_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-closer.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) +_ctype_ /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-ctype_.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtol.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-toupper.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-tolower.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-isspace.o) +_ebss /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +_edata /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +_end /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o +_estack /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o +_exit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-abort.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-exit.o) +_fflush_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fvwrite.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wbuf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) +_fini /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crti.o + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fini.o) +_fiprintf_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fprintf.o) +_fprintf_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fprintf.o) +_free_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-freer.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fvwrite.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wsetup.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reent.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reallocr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vdprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-malloc.o) +_fstat /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fstatr.o) +_fstat_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fstatr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-makebuf.o) +_fwalk_sglue /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fwalk.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) +_getpid /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signalr.o) +_getpid_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signalr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) +_gettimeofday /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +_impure_data /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-impure.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) +_impure_ptr /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-impure.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wsetup.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wbuf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-assert.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reent.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-errno.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vasnprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtol.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vdprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-realloc.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-rand.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-snprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-malloc.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-calloc.o) +_init /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/thumb/v6-m/nofp/crti.o + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-init.o) +_init_signal /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) +_init_signal_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) +_isatty /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-isattyr.o) +_isatty_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-isattyr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-makebuf.o) +_kill /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signalr.o) +_kill_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signalr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) +_lseek /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lseekr.o) +_lseek_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lseekr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) +_mainCRTStartup /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o +_malloc_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-makebuf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fvwrite.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reallocr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-malloc.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-callocr.o) +_malloc_usable_size_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-msizer.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reallocr.o) +_mbtowc_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mbtowc_r.o) +_mprec_log10 /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) +_printf_common /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf_i.o) +_printf_float /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) +_printf_i /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf_i.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) +_raise_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) +_read /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-readr.o) +_read_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-readr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) +_realloc_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reallocr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fvwrite.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-realloc.o) +_reclaim_reent /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reent.o) +_sbrk /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sbrkr.o) +_sbrk_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sbrkr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o) +_sbss /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +_sdata /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +_setlocale_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) +_sidata /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +_signal_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) +_siprintf_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sprintf.o) +_sniprintf_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-snprintf.o) +_snprintf_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-snprintf.o) +_sprintf_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sprintf.o) +_stack_init /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o +_start /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o +_strtod_l /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +_strtod_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +_strtol_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtol.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atol.o) +_svfiprintf_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) +_svfprintf_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vasnprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-snprintf.o) +_vasniprintf_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vasnprintf.o) +_vasnprintf_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vasnprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vdprintf.o) +_vdiprintf_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vdprintf.o) +_vdprintf_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vdprintf.o) +_vfiprintf_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) +_vfprintf_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fprintf.o) +_wctomb_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-wctomb_r.o) +_write /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-writer.o) +_write_r /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-writer.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vdprintf.o) +abort /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-abort.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-assert.o) +adc_read_value /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) +analogInputPin /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/variant_generic.cpp.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(pins_arduino.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +analogInputToPinName /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(pins_arduino.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) +analogOutputInit /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) +analogRead /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) +analogReadResolution /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) +analogReference /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) +analogWrite /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) +analogWriteFrequency /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) +analogWriteResolution /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) +atan2f /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_atan2.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o +atanf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_atan.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_atan2.o) +atexit /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atexit.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o +atof /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atof.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +atol /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atol.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +attachInterrupt(unsigned long, std::function, unsigned long) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +attachInterrupt(unsigned long, void (*)(), unsigned long) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) +buildWindguruUrl(char*, unsigned int) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +calculateWtpPayloadLength() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +calloc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-calloc.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/MD5.cpp.o +composeReportLine(unsigned int, char*) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +composeSampleLine(unsigned int, char*) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +configHSECapacitorTuning /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/hw_config.c.o +configIPClock /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/hw_config.c.o +configureModemSleep() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +cosf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_cos.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o +cycle_start_time /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +delay /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_time.c.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +detachInterrupt(unsigned long) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) +device_uid /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +digitalPin /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/variant_generic.cpp.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(pins_arduino.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +digitalPinToAnalogInput /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(pins_arduino.c.o) +digitalRead /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) +digitalToggle /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) +digitalWrite /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +digitalpinIsAnalogInput /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(pins_arduino.c.o) +disableTimerClock /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +dtostrf /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +enableClock /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +enableTimerClock /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +errno /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reent.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fstatr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signalr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-isattyr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-closer.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-readr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lseekr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-writer.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sbrkr.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/syscalls.c.o +exit /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-exit.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o +fabsf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_fabs.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_atan.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_rem_pio2.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-ef_atan2.o) +fflush /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o) +fiprintf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-assert.o) +floorf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_floor.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_rem_pio2.o) +fprintf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fprintf.o) +free /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-malloc.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/new.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/MD5.cpp.o +g_anOutputPinConfigured /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) +g_pfnVectors /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) +generateWindguruHash(char*, char const*, char const*, char const*) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +getCurrentMicros /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_time.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(main.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Rolling_Buffer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +getCurrentMillis /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_time.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(main.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/PeripheralPins.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Rolling_Buffer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +getTimerCCIrq /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +getTimerChannel /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +getTimerClkSrc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +getTimerUpIrq /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +get_adc_channel /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o +get_adc_internal_channel /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o +get_i2c_obj /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o +get_serial_obj /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +get_timer_index(TIM_TypeDef*) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o +get_timer_obj /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +hardware_init_hook /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o +hcrc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/hw_config.c.o +hw_config_init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/hw_config.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(board.c.o) +i2c_IsDeviceReady /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o +i2c_attachSlaveRxEvent /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +i2c_attachSlaveTxEvent /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +i2c_deinit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +i2c_init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +i2c_master_read /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +i2c_master_write /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +i2c_setTiming /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +i2c_slave_write_IT /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +init /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(board.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(main.cpp.o) +initVariant /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(main.cpp.o) +initWatchdog() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +isspace /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-isspace.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +itoa /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(itoa.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +jumpToStep(Modem_steps, unsigned short) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +kickWatchdog() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +last_avg_dir /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +last_avg_speed /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +last_max_speed /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +last_min_speed /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +last_step_time /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +last_uploading_time /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +loop /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(main.cpp.o) +ltoa /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(itoa.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +main /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(main.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(startup_stm32yyxx.S.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o +makeWord(unsigned char, unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) +makeWord(unsigned short) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) +malloc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-malloc.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-__atexit.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-rand.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/new.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/MD5.cpp.o +map(long, long, long, long, long) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) +memchr /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memchr-stub.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fvwrite.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf_i.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) +memcpy /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memcpy-stub.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fvwrite.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mprec.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-gethex.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reallocr.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Rolling_Buffer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/MD5.cpp.o +memmove /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memmove.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fvwrite.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-svfprintf.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +memset /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memset.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-callocr.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/core/generic_clock.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o +micros /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_time.c.o) +millis /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_time.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +modem_is_sleeping /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +modem_step /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +nan /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libm_a-s_nan.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +nanf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libm_a-sf_nan.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +noOsSystickHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o +onSpeedPulseISR() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +onTickerTimerISR() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +operator delete(void*) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/new.cpp.o + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) +operator delete(void*, unsigned int) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/new.cpp.o + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o +operator delete[](void*) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/new.cpp.o +operator delete[](void*, unsigned int) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/new.cpp.o +operator new(unsigned int) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/new.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +operator new[](unsigned int) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/new.cpp.o +operator+(StringSumHelper const&, String const&) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +operator+(StringSumHelper const&, __FlashStringHelper const*) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +operator+(StringSumHelper const&, char const*) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +operator+(StringSumHelper const&, char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +operator+(StringSumHelper const&, double) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +operator+(StringSumHelper const&, float) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +operator+(StringSumHelper const&, int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +operator+(StringSumHelper const&, long) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +operator+(StringSumHelper const&, unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +operator+(StringSumHelper const&, unsigned int) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +operator+(StringSumHelper const&, unsigned long) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +osSystickHandler /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/clock.c.o +pFlash /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_flash_ex.c.o +pinMode /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +pinNametoDigitalPin /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(pins_arduino.c.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +pin_function /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o +pin_in_pinmap /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) +pin_map_ll /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o +pinmap_find_function /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o +pinmap_find_peripheral /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o +pinmap_find_pin /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o +pinmap_function /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/timer.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +pinmap_merge_peripheral /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +pinmap_peripheral /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o +pinmap_pin /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +pinmap_pinout /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/utility/twi.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +post_cnt /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +premain() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(main.cpp.o) +processModem() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +putModemToSleep() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +pwm_start /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_analog.c.o) +pwm_stop /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/analog.cpp.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_digital.c.o) +raise /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-abort.o) +rand /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-rand.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) +random(long) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) +random(long, long) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +randomSeed(unsigned long) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +realloc /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-realloc.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +salt_str /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +scalbnf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_scalbn.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-kf_rem_pio2.o) +sendCommandToModem(char const*) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +sendTextToModem(char const*) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +serialEventLP1() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WSerial.cpp.o) +serialEventRun() /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WSerial.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(main.cpp.o) +serial_rx_active /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +serial_tx_active /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +set_GPIO_Port_Clock /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/PortNames.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/pinmap.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o +setlocale /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) +setup /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(main.cpp.o) +signal /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-signal.o) +sinf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-sf_sin.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o +siprintf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sprintf.o) +sniprintf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-snprintf.o) +snprintf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-snprintf.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +software_init_hook /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o +sprintf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sprintf.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +sqrtf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a(libm_a-wf_sqrt.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Vector_Averager.cpp.o +srand /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-rand.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WMath.cpp.o) +std::_Function_base::~_Function_base() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +std::_Function_base::~_Function_base() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +std::_Function_handler::_M_invoke(std::_Any_data const&) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o +std::_Function_handler::_M_manager(std::_Any_data&, std::_Any_data const&, std::_Manager_operation) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o +std::__throw_bad_function_call() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +std::bad_exception::what() const /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +std::bad_exception::~bad_exception() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +std::bad_exception::~bad_exception() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +std::bad_exception::~bad_exception() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +std::bad_function_call::what() const /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) +std::bad_function_call::~bad_function_call() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) +std::bad_function_call::~bad_function_call() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) +std::bad_function_call::~bad_function_call() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) +std::exception::what() const /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +std::exception::~exception() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) +std::exception::~exception() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +std::exception::~exception() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +std::function::function() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +std::function::function() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +std::function::function(std::function const&) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +std::function::function(std::function const&) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +std::function::operator()() const /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HardwareTimer.cpp.o +std::type_info::__do_catch(std::type_info const*, void**, unsigned int) const /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) +std::type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) +std::type_info::__equal(std::type_info const&) const /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) +std::type_info::__is_function_p() const /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) +std::type_info::__is_pointer_p() const /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) +std::type_info::operator==(std::type_info const&) const /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) +std::type_info::~type_info() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) +std::type_info::~type_info() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) +std::type_info::~type_info() /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) +stm32_interrupt_disable(GPIO_TypeDef*, unsigned short) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) +stm32_interrupt_enable(PinName, std::function, unsigned long) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WInterrupts.cpp.o) +stm32_interrupt_enable(PinName, void (*)(), unsigned long) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/interrupt.cpp.o +strcat /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strcat.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) +strchr /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strchr.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strrchr.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +strcmp /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strcmp.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-locale.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +strcpy /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strcpy.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +strlen /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strlen.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(dtostrf.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/MD5.cpp.o +strncmp /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strncmp.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-gdtoa-gethex.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +strncpy /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strncpy.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +strrchr /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strrchr.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +strstr /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strstr.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +strtod /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atof.o) +strtod_l /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +strtof /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +strtof_l /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtod.o) +strtol /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtol.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-atol.o) +strtol_l /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-strtol.o) +tickerTimer /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +time_to_wait_before_next_step /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +tolower /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-tolower.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +toupper /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-toupper.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +transaction clone for std::bad_exception::what() const /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +transaction clone for std::bad_exception::~bad_exception() const /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +transaction clone for std::exception::what() const /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +transaction clone for std::exception::~exception() const /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +typeinfo for __cxxabiv1::__class_type_info /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) +typeinfo for __cxxabiv1::__forced_unwind /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +typeinfo for __cxxabiv1::__foreign_exception /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +typeinfo for __cxxabiv1::__si_class_type_info /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) +typeinfo for std::bad_exception /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +typeinfo for std::bad_function_call /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) +typeinfo for std::exception /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) +typeinfo for std::type_info /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) +typeinfo name for __cxxabiv1::__class_type_info /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) +typeinfo name for __cxxabiv1::__forced_unwind /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +typeinfo name for __cxxabiv1::__foreign_exception /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +typeinfo name for __cxxabiv1::__si_class_type_info /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) +typeinfo name for std::bad_exception /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +typeinfo name for std::bad_function_call /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) +typeinfo name for std::exception /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +typeinfo name for std::type_info /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) +uart_attach_rx_callback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +uart_attach_tx_callback /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +uart_config_lowpower /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +uart_debug_init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o +uart_debug_write /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +uart_deinit /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +uart_enable_rx /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +uart_enable_tx /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +uart_getc /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +uart_init /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/stm32/uart.c.o + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +ultoa /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(itoa.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +unsigned int Print::printFloat(double, unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +unsigned int Print::printFloat(float, unsigned char) /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +utoa /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(itoa.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(WString.cpp.o) +uwTick /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +uwTickFreq /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o +uwTickPrio /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal.c.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/SrcWrapper/HAL/stm32yyxx_hal_rcc.c.o +vasniprintf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vasnprintf.o) +vasnprintf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vasnprintf.o) +vdiprintf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vdprintf.o) +vdprintf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-vdprintf.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +vfiprintf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) +vfprintf /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-nano-vfprintf.o) +vtable for HardwareSerial /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(HardwareSerial.cpp.o) +vtable for Print /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Print.cpp.o) +vtable for Stream /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(Stream.cpp.o) +vtable for TwoWire /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Wire/Wire.cpp.o +vtable for __cxxabiv1::__class_type_info /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +vtable for __cxxabiv1::__forced_unwind /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +vtable for __cxxabiv1::__foreign_exception /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +vtable for __cxxabiv1::__si_class_type_info /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(si_class_type_info.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(class_type_info.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) + /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) +vtable for std::bad_exception /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +vtable for std::bad_function_call /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(functional.o) +vtable for std::exception /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(eh_exception.o) +vtable for std::type_info /Users/gregorynicol/Library/Arduino15/packages/STMicroelectronics/tools/xpack-arm-none-eabi-gcc/14.2.1-1.1/bin/../lib/gcc/arm-none-eabi/14.2.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libstdc++_nano.a(tinfo.o) +waitForNextStep(unsigned short) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +wakeModem() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/sketch/air780e-dual.ino.cpp.o +wn_init_angle_sensor() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +wn_read_angle_sensor_register(unsigned char, unsigned char*, unsigned int) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o +wn_read_then_make_angle_sensor_sleep() /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o + /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_Core.cpp.o +wn_write_angle_sensor_register(unsigned char, unsigned char) /Users/gregorynicol/Library/Caches/arduino/sketches/F742AD3DDF8DD7479B2EC729167BF00B/libraries/Windnerd-Core/Windnerd_TMAG5273.cpp.o +yield /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(hooks.c.o) + /Users/gregorynicol/Library/Caches/arduino/cores/STMicroelectronics_stm32_GenG0_pnum_GENERIC_G031F8PX_7d8d9785a0552619f68bb23da6f071f9/core.a(wiring_time.c.o) diff --git a/examples/compile_flash.sh b/examples/compile_flash.sh new file mode 100755 index 0000000..92c1d43 --- /dev/null +++ b/examples/compile_flash.sh @@ -0,0 +1,66 @@ +#!/bin/bash + +# WindNerd Core - Compile and Flash Script +# Uses STM32CubeProgrammer (more reliable than OpenOCD for STM32G0) +# Usage: ./compile_flash.sh + +echo "=== WindNerd Core Compile & Flash ===" +echo "" + +# Check if .ino file path is provided +if [ $# -eq 0 ]; then + echo "Usage: $0 " + echo "Example: $0 examples/4g-air780e/4g-air780e.ino" + echo "Example: $0 examples/4g-air780e/4g-test-simple.ino" + exit 1 +fi + +INO_FILE="$1" + +# Check if file exists +if [ ! -f "$INO_FILE" ]; then + echo "❌ Error: File '$INO_FILE' not found!" + exit 1 +fi + +# Get directory and filename +INO_DIR=$(dirname "$INO_FILE") +INO_NAME=$(basename "$INO_FILE") +BUILD_DIR="$INO_DIR/build" + +echo "📁 Source file: $INO_FILE" +echo "📁 Build directory: $BUILD_DIR" +echo "" + +# Navigate to the .ino file directory +cd "$INO_DIR" || { echo "❌ Cannot access directory: $INO_DIR"; exit 1; } + +echo "1. Compiling firmware for STM32G031F8Px..." +arduino-cli compile --fqbn STMicroelectronics:stm32:GenG0:pnum=GENERIC_G031F8PX --output-dir ./build "$INO_NAME" + +if [ $? -eq 0 ]; then + echo "✅ Compilation successful!" + echo "" + + # Generate binary filename from .ino filename + BIN_FILE="./build/${INO_NAME}.bin" + + echo "2. Flashing firmware using STM32CubeProgrammer..." + echo "📎 Binary file: $BIN_FILE" + STM32_Programmer_CLI -c port=SWD -w "$BIN_FILE" 0x08000000 -v -rst + + if [ $? -eq 0 ]; then + echo "" + echo "✅ Flash and verify successful!" + echo "✅ Device reset completed!" + echo "" + echo "📡 Serial output available on TX2 (USART2) at 115200 baud" + echo "🔌 Connect TTL adapter: RX->TX2 (Yellow wire), GND->GND" + else + echo "❌ Flash failed!" + exit 1 + fi +else + echo "❌ Compilation failed!" + exit 1 +fi \ No newline at end of file