hexsha
stringlengths
40
40
size
int64
5
2.72M
ext
stringclasses
5 values
lang
stringclasses
1 value
max_stars_repo_path
stringlengths
3
976
max_stars_repo_name
stringlengths
5
113
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
listlengths
1
10
max_stars_count
float64
1
191k
max_stars_repo_stars_event_min_datetime
stringdate
2015-01-01 00:01:43
2022-03-31 23:59:48
max_stars_repo_stars_event_max_datetime
stringdate
2015-01-01 00:06:24
2022-03-31 23:59:53
max_issues_repo_path
stringlengths
3
976
max_issues_repo_name
stringlengths
5
116
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
listlengths
1
10
max_issues_count
float64
1
134k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
976
max_forks_repo_name
stringlengths
5
116
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
listlengths
1
10
max_forks_count
float64
1
105k
max_forks_repo_forks_event_min_datetime
stringdate
2015-01-01 00:01:19
2022-03-31 23:59:49
max_forks_repo_forks_event_max_datetime
stringdate
2015-01-03 12:00:57
2022-03-31 23:59:49
content
stringlengths
5
2.72M
avg_line_length
float64
1.38
573k
max_line_length
int64
2
1.01M
alphanum_fraction
float64
0
1
bde95d7d5c5e41e69bba2b0fca95750b0c867f0b
1,488
h
C
NitroXMR/src/miner/Console.h
quartz010/XMR
bf9f462662ad80e7a7361c9844b02ef520b90431
[ "MIT" ]
4
2017-10-25T05:16:33.000Z
2018-10-25T14:22:30.000Z
NitroXMR/src/miner/Console.h
quartz010/XMR
bf9f462662ad80e7a7361c9844b02ef520b90431
[ "MIT" ]
null
null
null
NitroXMR/src/miner/Console.h
quartz010/XMR
bf9f462662ad80e7a7361c9844b02ef520b90431
[ "MIT" ]
3
2018-04-05T14:25:50.000Z
2018-10-25T14:22:32.000Z
/* XMRig * Copyright 2010 Jeff Garzik <[email protected]> * Copyright 2012-2014 pooler <[email protected]> * Copyright 2014 Lucas Jones <https://github.com/lucasjones> * Copyright 2014-2016 Wolf9466 <https://github.com/OhGodAPet> * Copyright 2016 Jay D Dee <[email protected]> * Copyright 2016-2017 XMRig <[email protected]> * * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __CONSOLE_H__ #define __CONSOLE_H__ #include <uv.h> class IConsoleListener; class Console { public: Console(IConsoleListener *listener); private: static void onAllocBuffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf); static void onRead(uv_stream_t *stream, ssize_t nread, const uv_buf_t *buf); char m_buf[1]; IConsoleListener *m_listener; uv_tty_t m_tty; }; #endif /* __CONSOLE_H__ */
29.76
89
0.71707
bde999e24fedc0bed43664e04e135d0a3258564a
13,376
h
C
software/firmware/ChibiOS-Contrib/os/hal/ports/TIVA/LLD/UART/hal_serial_lld.h
lowerrandom/DaBomb_dc27_badge
4bba0e58a304671b48755b99113b3d489259760a
[ "Apache-2.0" ]
29
2018-12-13T02:33:42.000Z
2022-02-28T13:26:35.000Z
sw/firmware/ChibiOS-Contrib/os/hal/ports/TIVA/LLD/UART/hal_serial_lld.h
netik/dc26_spqr_badge
231f04963f47a6731eb6d8e1b91585cf8203b52d
[ "Apache-2.0" ]
47
2019-03-21T05:23:28.000Z
2019-12-07T23:37:44.000Z
sw/firmware/ChibiOS-Contrib/os/hal/ports/TIVA/LLD/UART/hal_serial_lld.h
netik/dc26_spqr_badge
231f04963f47a6731eb6d8e1b91585cf8203b52d
[ "Apache-2.0" ]
13
2019-01-16T12:06:21.000Z
2020-04-25T02:14:06.000Z
/* Copyright (C) 2014..2017 Marco Veeneman Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ /** * @file UART/hal_serial_lld.h * @brief Tiva low level serial driver header. * * @addtogroup SERIAL * @{ */ #ifndef HAL_SERIAL_LLD_H #define HAL_SERIAL_LLD_H #if HAL_USE_SERIAL || defined(__DOXYGEN__) /*===========================================================================*/ /* Driver constants. */ /*===========================================================================*/ /** * @brief Advanced buffering support switch. * @details This constants enables the advanced buffering support in the * low level driver, the queue buffer is no more part of the * @p SerialDriver structure, each driver can have a different * queue size. */ #define SERIAL_ADVANCED_BUFFERING_SUPPORT TRUE /*===========================================================================*/ /* Driver pre-compile time settings. */ /*===========================================================================*/ /** * @name Configuration options * @{ */ /** * @brief UART0 driver enable switch. * @details If set to @p TRUE the support for UART0 is included. * @note The default is @p TRUE. */ #if !defined(TIVA_SERIAL_USE_UART0) || defined(__DOXYGEN__) #define TIVA_SERIAL_USE_UART0 FALSE #endif /** * @brief UART1 driver enable switch. * @details If set to @p TRUE the support for UART1 is included. * @note The default is @p FALSE . */ #if !defined(TIVA_SERIAL_USE_UART1) || defined(__DOXYGEN__) #define TIVA_SERIAL_USE_UART1 FALSE #endif /** * @brief UART2 driver enable switch. * @details If set to @p TRUE the support for UART2 is included. * @note The default is @p FALSE . */ #if !defined(TIVA_SERIAL_USE_UART2) || defined(__DOXYGEN__) #define TIVA_SERIAL_USE_UART2 FALSE #endif /** * @brief UART3 driver enable switch. * @details If set to @p TRUE the support for UART3 is included. * @note The default is @p FALSE . */ #if !defined(TIVA_SERIAL_USE_UART3) || defined(__DOXYGEN__) #define TIVA_SERIAL_USE_UART3 FALSE #endif /** * @brief UART4 driver enable switch. * @details If set to @p TRUE the support for UART4 is included. * @note The default is @p FALSE . */ #if !defined(TIVA_SERIAL_USE_UART4) || defined(__DOXYGEN__) #define TIVA_SERIAL_USE_UART4 FALSE #endif /** * @brief UART5 driver enable switch. * @details If set to @p TRUE the support for UART5 is included. * @note The default is @p FALSE . */ #if !defined(TIVA_SERIAL_USE_UART5) || defined(__DOXYGEN__) #define TIVA_SERIAL_USE_UART5 FALSE #endif /** * @brief UART6 driver enable switch. * @details If set to @p TRUE the support for UART6 is included. * @note The default is @p FALSE . */ #if !defined(TIVA_SERIAL_USE_UART6) || defined(__DOXYGEN__) #define TIVA_SERIAL_USE_UART6 FALSE #endif /** * @brief UART7 driver enable switch. * @details If set to @p TRUE the support for UART7 is included. * @note The default is @p FALSE . */ #if !defined(TIVA_SERIAL_USE_UART7) || defined(__DOXYGEN__) #define TIVA_SERIAL_USE_UART7 FALSE #endif /** * @brief UART0 interrupt priority level setting. */ #if !defined(TIVA_SERIAL_UART0_PRIORITY) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART0_PRIORITY 5 #endif /** * @brief UART1 interrupt priority level setting. */ #if !defined(TIVA_SERIAL_UART1_PRIORITY) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART1_PRIORITY 5 #endif /** * @brief UART2 interrupt priority level setting. */ #if !defined(TIVA_SERIAL_UART2_PRIORITY) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART2_PRIORITY 5 #endif /** * @brief UART3 interrupt priority level setting. */ #if !defined(TIVA_SERIAL_UART3_PRIORITY) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART3_PRIORITY 5 #endif /** * @brief UART4 interrupt priority level setting. */ #if !defined(TIVA_SERIAL_UART4_PRIORITY) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART4_PRIORITY 5 #endif /** * @brief UART5 interrupt priority level setting. */ #if !defined(TIVA_SERIAL_UART5_PRIORITY) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART5_PRIORITY 5 #endif /** * @brief UART6 interrupt priority level setting. */ #if !defined(TIVA_SERIAL_UART6_PRIORITY) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART6_PRIORITY 5 #endif /** * @brief UART7 interrupt priority level setting. */ #if !defined(TIVA_SERIAL_UART7_PRIORITY) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART7_PRIORITY 5 #endif /** * @brief Input buffer size for UART0. */ #if !defined(TIVA_SERIAL_UART0_IN_BUF_SIZE) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART0_IN_BUF_SIZE SERIAL_BUFFERS_SIZE #endif /** * @brief Output buffer size for UART0. */ #if !defined(TIVA_SERIAL_UART0_OUT_BUF_SIZE) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART0_OUT_BUF_SIZE SERIAL_BUFFERS_SIZE #endif /** * @brief Input buffer size for UART1. */ #if !defined(TIVA_SERIAL_UART1_IN_BUF_SIZE) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART1_IN_BUF_SIZE SERIAL_BUFFERS_SIZE #endif /** * @brief Output buffer size for UART1. */ #if !defined(TIVA_SERIAL_UART1_OUT_BUF_SIZE) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART1_OUT_BUF_SIZE SERIAL_BUFFERS_SIZE #endif /** * @brief Input buffer size for UART2. */ #if !defined(TIVA_SERIAL_UART2_IN_BUF_SIZE) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART2_IN_BUF_SIZE SERIAL_BUFFERS_SIZE #endif /** * @brief Output buffer size for UART2. */ #if !defined(TIVA_SERIAL_UART2_OUT_BUF_SIZE) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART2_OUT_BUF_SIZE SERIAL_BUFFERS_SIZE #endif /** * @brief Input buffer size for UART3. */ #if !defined(TIVA_SERIAL_UART3_IN_BUF_SIZE) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART3_IN_BUF_SIZE SERIAL_BUFFERS_SIZE #endif /** * @brief Output buffer size for UART3. */ #if !defined(TIVA_SERIAL_UART3_OUT_BUF_SIZE) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART3_OUT_BUF_SIZE SERIAL_BUFFERS_SIZE #endif /** * @brief Input buffer size for UART4. */ #if !defined(TIVA_SERIAL_UART4_IN_BUF_SIZE) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART4_IN_BUF_SIZE SERIAL_BUFFERS_SIZE #endif /** * @brief Output buffer size for UART4. */ #if !defined(TIVA_SERIAL_UART4_OUT_BUF_SIZE) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART4_OUT_BUF_SIZE SERIAL_BUFFERS_SIZE #endif /** * @brief Input buffer size for UART5. */ #if !defined(TIVA_SERIAL_UART5_IN_BUF_SIZE) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART5_IN_BUF_SIZE SERIAL_BUFFERS_SIZE #endif /** * @brief Output buffer size for UART5. */ #if !defined(TIVA_SERIAL_UART5_OUT_BUF_SIZE) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART5_OUT_BUF_SIZE SERIAL_BUFFERS_SIZE #endif /** * @brief Input buffer size for UART6. */ #if !defined(TIVA_SERIAL_UART6_IN_BUF_SIZE) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART6_IN_BUF_SIZE SERIAL_BUFFERS_SIZE #endif /** * @brief Output buffer size for UART6. */ #if !defined(TIVA_SERIAL_UART6_OUT_BUF_SIZE) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART6_OUT_BUF_SIZE SERIAL_BUFFERS_SIZE #endif /** * @brief Input buffer size for UART7. */ #if !defined(TIVA_SERIAL_UART7_IN_BUF_SIZE) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART7_IN_BUF_SIZE SERIAL_BUFFERS_SIZE #endif /** * @brief Output buffer size for UART7. */ #if !defined(TIVA_SERIAL_UART7_OUT_BUF_SIZE) || defined(__DOXYGEN__) #define TIVA_SERIAL_UART7_OUT_BUF_SIZE SERIAL_BUFFERS_SIZE #endif /** @} */ /*===========================================================================*/ /* Derived constants and error checks. */ /*===========================================================================*/ #if !TIVA_SERIAL_USE_UART0 && !TIVA_SERIAL_USE_UART1 && \ !TIVA_SERIAL_USE_UART2 && !TIVA_SERIAL_USE_UART3 && \ !TIVA_SERIAL_USE_UART4 && !TIVA_SERIAL_USE_UART5 && \ !TIVA_SERIAL_USE_UART6 && !TIVA_SERIAL_USE_UART7 #error "SERIAL driver activated but no UART peripheral assigned" #endif #if TIVA_SERIAL_USE_UART0 && \ !OSAL_IRQ_IS_VALID_PRIORITY(TIVA_SERIAL_UART0_PRIORITY) #error "Invalid IRQ priority assigned to UART0" #endif #if TIVA_SERIAL_USE_UART1 && \ !OSAL_IRQ_IS_VALID_PRIORITY(TIVA_SERIAL_UART1_PRIORITY) #error "Invalid IRQ priority assigned to UART1" #endif #if TIVA_SERIAL_USE_UART2 && \ !OSAL_IRQ_IS_VALID_PRIORITY(TIVA_SERIAL_UART2_PRIORITY) #error "Invalid IRQ priority assigned to UART2" #endif #if TIVA_SERIAL_USE_UART3 && \ !OSAL_IRQ_IS_VALID_PRIORITY(TIVA_SERIAL_UART3_PRIORITY) #error "Invalid IRQ priority assigned to UART3" #endif #if TIVA_SERIAL_USE_UART4 && \ !OSAL_IRQ_IS_VALID_PRIORITY(TIVA_SERIAL_UART4_PRIORITY) #error "Invalid IRQ priority assigned to UART4" #endif #if TIVA_SERIAL_USE_UART5 && \ !OSAL_IRQ_IS_VALID_PRIORITY(TIVA_SERIAL_UART5_PRIORITY) #error "Invalid IRQ priority assigned to UART5" #endif #if TIVA_SERIAL_USE_UART6 && \ !OSAL_IRQ_IS_VALID_PRIORITY(TIVA_SERIAL_UART6_PRIORITY) #error "Invalid IRQ priority assigned to UART6" #endif #if TIVA_SERIAL_USE_UART7 && \ !OSAL_IRQ_IS_VALID_PRIORITY(TIVA_SERIAL_UART7_PRIORITY) #error "Invalid IRQ priority assigned to UART7" #endif /*===========================================================================*/ /* Driver data structures and types. */ /*===========================================================================*/ /** * @brief Tiva Serial Driver configuration structure. * @details An instance of this structure must be passed to @p sdStart() * in order to configure and start a serial driver operations. * @note This structure content is architecture dependent, each driver * implementation defines its own version and the custom static * initializers. */ typedef struct { /** * @brief Bit rate. */ uint32_t speed; /* End of the mandatory fields. */ /** * @brief Initialization value for the CTL register. */ uint16_t ctl; /** * @brief Initialization value for the LCRH register. */ uint8_t lcrh; /** * @brief Initialization value for the IFLS register. */ uint8_t ifls; /** * @brief Initialization value for the CC register. */ uint8_t cc; } SerialConfig; /** * @brief @p SerialDriver specific data. */ #define _serial_driver_data \ _base_asynchronous_channel_data \ /* Driver state.*/ \ sdstate_t state; \ /* Input queue.*/ \ input_queue_t iqueue; \ /* Output queue.*/ \ output_queue_t oqueue; \ /* End of the mandatory fields.*/ \ /* Pointer to the USART registers block.*/ \ uint32_t uart; /*===========================================================================*/ /* Driver macros. */ /*===========================================================================*/ /*===========================================================================*/ /* External declarations. */ /*===========================================================================*/ #if TIVA_SERIAL_USE_UART0 && !defined(__DOXYGEN__) extern SerialDriver SD1; #endif #if TIVA_SERIAL_USE_UART1 && !defined(__DOXYGEN__) extern SerialDriver SD2; #endif #if TIVA_SERIAL_USE_UART2 && !defined(__DOXYGEN__) extern SerialDriver SD3; #endif #if TIVA_SERIAL_USE_UART3 && !defined(__DOXYGEN__) extern SerialDriver SD4; #endif #if TIVA_SERIAL_USE_UART4 && !defined(__DOXYGEN__) extern SerialDriver SD5; #endif #if TIVA_SERIAL_USE_UART5 && !defined(__DOXYGEN__) extern SerialDriver SD6; #endif #if TIVA_SERIAL_USE_UART6 && !defined(__DOXYGEN__) extern SerialDriver SD7; #endif #if TIVA_SERIAL_USE_UART7 && !defined(__DOXYGEN__) extern SerialDriver SD8; #endif #ifdef __cplusplus extern "C" { #endif void sd_lld_init(void); void sd_lld_start(SerialDriver *sdp, const SerialConfig *config); void sd_lld_stop(SerialDriver *sdp); #ifdef __cplusplus } #endif #endif /* HAL_USE_SERIAL */ #endif /* HAL_SERIAL_LLD_H */ /** @} */
29.790646
79
0.634495
bdea9cea9942b92638f0a3b977c88f2450edfaf7
21,749
c
C
src/latex.c
fabiocolacio/scidown
99b5d1803a68dd351058029b413b61235c0604c6
[ "ISC" ]
null
null
null
src/latex.c
fabiocolacio/scidown
99b5d1803a68dd351058029b413b61235c0604c6
[ "ISC" ]
3
2018-05-11T19:13:49.000Z
2018-05-16T17:45:52.000Z
src/latex.c
geoffmcl/scidown
833cef2bc843bd83a62297a85d2f0a64fb1fb42c
[ "ISC" ]
null
null
null
#include "latex.h" #include <string.h> #include <stdlib.h> #include <stdio.h> #include <ctype.h> #include "charter/src/parser.h" #include "charter/src/renderer.h" #include "escape.h" #define MAX_FILE_SIZE 1000000 scidown_render_tag scidown_latex_is_tag(const uint8_t *data, size_t size, const char *tagname) { size_t i; int closed = 0; if (size < 3 || data[0] != '<') return SCIDOWN_RENDER_TAG_NONE; i = 1; if (data[i] == '/') { closed = 1; i++; } for (; i < size; ++i, ++tagname) { if (*tagname == 0) break; if (data[i] != *tagname) return SCIDOWN_RENDER_TAG_NONE; } if (i == size) return SCIDOWN_RENDER_TAG_NONE; if (isspace(data[i]) || data[i] == '>') return closed ? SCIDOWN_RENDER_TAG_CLOSE : SCIDOWN_RENDER_TAG_OPEN; return SCIDOWN_RENDER_TAG_NONE; } static void escape_href(hoedown_buffer *ob, const uint8_t *source, size_t length) { hoedown_escape_href(ob, source, length); } /******************** * GENERIC RENDERER * ********************/ static int rndr_autolink(hoedown_buffer *ob, const hoedown_buffer *link, hoedown_autolink_type type, const hoedown_renderer_data *data) { scidown_latex_renderer_state *state = data->opaque; if (!link || !link->size) return 0; HOEDOWN_BUFPUTSL(ob, "\\href{"); if (type == HOEDOWN_AUTOLINK_EMAIL) HOEDOWN_BUFPUTSL(ob, "mailto:"); escape_href(ob, link->data, link->size); if (state->link_attributes) { hoedown_buffer_putc(ob, '\"'); state->link_attributes(ob, link, data); hoedown_buffer_puts(ob, "}{"); } else { HOEDOWN_BUFPUTSL(ob, "\"}{"); } /* * Pretty printing: if we get an email address as * an actual URI, e.g. `mailto:[email protected]`, we don't * want to print the `mailto:` prefix */ if (hoedown_buffer_prefix(link, "mailto:") == 0) { hoedown_buffer_put(ob, link->data + 7, link->size - 7); } else { hoedown_buffer_put(ob, link->data, link->size); } HOEDOWN_BUFPUTSL(ob, "}"); return 1; } static void rndr_blockcode(hoedown_buffer *ob, const hoedown_buffer *text, const hoedown_buffer *lang, const hoedown_renderer_data *data) { if (ob->size) hoedown_buffer_putc(ob, '\n'); scidown_latex_renderer_state *state = data->opaque; if (lang && (state->flags & SCIDOWN_RENDER_CHARTER) != 0 && hoedown_buffer_eqs(lang, "charter") != 0){ if (text){ char * copy = malloc((text->size + 1)*sizeof(char)); memset(copy, 0, text->size+1); memcpy(copy, text->data, text->size); chart * c = parse_chart(copy); char * tex = chart_to_latex(c); int n = strlen(tex); hoedown_buffer_printf(ob, tex, n); free(copy); chart_free(c); free(tex); } return; } if (lang) { HOEDOWN_BUFPUTSL(ob, "\\begin{lstlisting}[language="); hoedown_buffer_put(ob, lang->data, lang->size); HOEDOWN_BUFPUTSL(ob, "]\n"); } else { HOEDOWN_BUFPUTSL(ob, "\\begin{lstlisting}\n"); } if (text) hoedown_buffer_put(ob, text->data, text->size); HOEDOWN_BUFPUTSL(ob, "\\end{lstlisting}\n"); } static void rndr_blockquote(hoedown_buffer *ob, const hoedown_buffer *content, const hoedown_renderer_data *data) { if (ob->size) hoedown_buffer_putc(ob, '\n'); HOEDOWN_BUFPUTSL(ob, "\\begin{quote}\n"); if (content) hoedown_buffer_put(ob, content->data, content->size); HOEDOWN_BUFPUTSL(ob, "\\end{qoute}\n"); } static int rndr_codespan(hoedown_buffer *ob, const hoedown_buffer *text, const hoedown_renderer_data *data) { HOEDOWN_BUFPUTSL(ob, "\\texttt{"); if (text) hoedown_buffer_put(ob, text->data, text->size); HOEDOWN_BUFPUTSL(ob, "}"); return 1; } static int rndr_strikethrough(hoedown_buffer *ob, const hoedown_buffer *content, const hoedown_renderer_data *data) { if (!content || !content->size) return 0; HOEDOWN_BUFPUTSL(ob, "\\st{"); hoedown_buffer_put(ob, content->data, content->size); HOEDOWN_BUFPUTSL(ob, "}"); return 1; } static int rndr_double_emphasis(hoedown_buffer *ob, const hoedown_buffer *content, const hoedown_renderer_data *data) { if (!content || !content->size) return 0; HOEDOWN_BUFPUTSL(ob, "{\\bf "); hoedown_buffer_put(ob, content->data, content->size); HOEDOWN_BUFPUTSL(ob, "}"); return 1; } static int rndr_emphasis(hoedown_buffer *ob, const hoedown_buffer *content, const hoedown_renderer_data *data) { if (!content || !content->size) return 0; HOEDOWN_BUFPUTSL(ob, "{\\em "); if (content) hoedown_buffer_put(ob, content->data, content->size); HOEDOWN_BUFPUTSL(ob, "}"); return 1; } static int rndr_underline(hoedown_buffer *ob, const hoedown_buffer *content, const hoedown_renderer_data *data) { if (!content || !content->size) return 0; HOEDOWN_BUFPUTSL(ob, "\\underline{"); hoedown_buffer_put(ob, content->data, content->size); HOEDOWN_BUFPUTSL(ob, "}"); return 1; } static int rndr_highlight(hoedown_buffer *ob, const hoedown_buffer *content, const hoedown_renderer_data *data) { if (!content || !content->size) return 0; HOEDOWN_BUFPUTSL(ob, "\\hl{"); hoedown_buffer_put(ob, content->data, content->size); HOEDOWN_BUFPUTSL(ob, "}"); return 1; } static int rndr_quote(hoedown_buffer *ob, const hoedown_buffer *content, const hoedown_renderer_data *data) { if (!content || !content->size) return 0; HOEDOWN_BUFPUTSL(ob, "\""); hoedown_buffer_put(ob, content->data, content->size); HOEDOWN_BUFPUTSL(ob, "\""); return 1; } static int rndr_linebreak(hoedown_buffer *ob, const hoedown_renderer_data *data) { hoedown_buffer_puts(ob, "\n"); return 1; } static void rndr_header(hoedown_buffer *ob, const hoedown_buffer *content, int level, const hoedown_renderer_data *data, h_counter counter, int numbering) { if (data->meta->doc_class == CLASS_BOOK || data->meta->doc_class == CLASS_REPORT) { level --; } if (ob->size) hoedown_buffer_putc(ob, '\n'); if (!content) return; if (level == 0) { hoedown_buffer_puts(ob, "\\chapter{"); } else if (level == 1) { if (data->meta->doc_class == CLASS_BEAMER) hoedown_buffer_puts(ob, "\\frametitle{"); else hoedown_buffer_puts(ob, "\\section{"); } else if (level == 2) { hoedown_buffer_puts(ob, "\\subsection{"); } else if (level == 3) { hoedown_buffer_puts(ob, "\\subsubsection{"); } else if (level == 4) { hoedown_buffer_puts(ob, "\\paragraph{"); } else if (level == 5) { hoedown_buffer_puts(ob, "\\subparagraph{"); } hoedown_buffer_put(ob, content->data, content->size); hoedown_buffer_puts(ob, "}\n"); } static int rndr_link(hoedown_buffer *ob, const hoedown_buffer *content, const hoedown_buffer *link, const hoedown_buffer *title, const hoedown_renderer_data *data) { scidown_latex_renderer_state *state = data->opaque; HOEDOWN_BUFPUTSL(ob, "\\href{"); if (link && link->size) escape_href(ob, link->data, link->size); if (title && title->size) { HOEDOWN_BUFPUTSL(ob, "\" title=\""); hoedown_buffer_put(ob, title->data, title->size); } if (state->link_attributes) { hoedown_buffer_putc(ob, '\"'); state->link_attributes(ob, link, data); hoedown_buffer_puts(ob, "}{"); } else { HOEDOWN_BUFPUTSL(ob, "\"}{"); } if (content && content->size) hoedown_buffer_put(ob, content->data, content->size); HOEDOWN_BUFPUTSL(ob, "}"); return 1; } static void rndr_list(hoedown_buffer *ob, const hoedown_buffer *content, hoedown_list_flags flags, const hoedown_renderer_data *data) { if (ob->size) hoedown_buffer_putc(ob, '\n'); hoedown_buffer_puts(ob, (flags & HOEDOWN_LIST_ORDERED ? "\\begin{enumerate}" : "\\begin{itemize}")); if (content) hoedown_buffer_put(ob, content->data, content->size); hoedown_buffer_puts(ob, (flags & HOEDOWN_LIST_ORDERED ? "\\end{enumerate}\n" : "\\end{itemize}\n")); } static void rndr_listitem(hoedown_buffer *ob, const hoedown_buffer *content, hoedown_list_flags flags, const hoedown_renderer_data *data) { HOEDOWN_BUFPUTSL(ob, "\n\\item "); if (content) { size_t size = content->size; while (size && content->data[size - 1] == '\n') size--; hoedown_buffer_put(ob, content->data, size); } } static void rndr_paragraph(hoedown_buffer *ob, const hoedown_buffer *content, const hoedown_renderer_data *data) { scidown_latex_renderer_state *state = data->opaque; size_t i = 0; if (ob->size) hoedown_buffer_puts(ob, "\n"); if (!content || !content->size) return; while (i < content->size && isspace(content->data[i])) i++; if (i == content->size) return; if (state->flags) { size_t org; while (i < content->size) { org = i; while (i < content->size && content->data[i] != '\n') i++; if (i > org) hoedown_buffer_put(ob, content->data + org, i - org); /* * do not insert a line break if this newline * is the last character on the paragraph */ if (i >= content->size - 1) break; rndr_linebreak(ob, data); i++; } } else { hoedown_buffer_put(ob, content->data + i, content->size - i); } HOEDOWN_BUFPUTSL(ob, "\n\n"); } static void rndr_raw_block(hoedown_buffer *ob, const hoedown_buffer *text, const hoedown_renderer_data *data) { size_t org, sz; if (!text) return; /* FIXME: Do we *really* need to trim the HTML? How does that make a difference? */ sz = text->size; while (sz > 0 && text->data[sz - 1] == '\n') sz--; org = 0; while (org < sz && text->data[org] == '\n') org++; if (org >= sz) return; if (ob->size) hoedown_buffer_putc(ob, '\n'); hoedown_buffer_put(ob, text->data + org, sz - org); hoedown_buffer_putc(ob, '\n'); } static int rndr_triple_emphasis(hoedown_buffer *ob, const hoedown_buffer *content, const hoedown_renderer_data *data) { if (!content || !content->size) return 0; HOEDOWN_BUFPUTSL(ob, "{\\bf{\\em "); hoedown_buffer_put(ob, content->data, content->size); HOEDOWN_BUFPUTSL(ob, "}}"); return 1; } static void rndr_hrule(hoedown_buffer *ob, const hoedown_renderer_data *data) { if (ob->size) hoedown_buffer_putc(ob, '\n'); if (data->meta->doc_class == CLASS_BEAMER) { hoedown_buffer_puts(ob, "\\end{frame}\n"); hoedown_buffer_puts(ob, "\\begin{frame}\n"); } else { hoedown_buffer_puts(ob, "\\rule{\\linewidth}{.1pt}\n"); } } static int rndr_image(hoedown_buffer *ob, const hoedown_buffer *link, const hoedown_buffer *title, const hoedown_buffer *alt, const hoedown_renderer_data *data) { /*scidown_latex_renderer_state *state = data->opaque;*/ if (!link || !link->size) return 0; HOEDOWN_BUFPUTSL(ob, "\\includegraphics[width=\\linewidth]{"); escape_href(ob, link->data, link->size); HOEDOWN_BUFPUTSL(ob, "}"); return 1; } static int rndr_raw_html(hoedown_buffer *ob, const hoedown_buffer *text, const hoedown_renderer_data *data) { scidown_latex_renderer_state *state = data->opaque; /* ESCAPE overrides SKIP_HTML. It doesn't look to see if * there are any valid tags, just escapes all of them. */ if((state->flags) != 0) { hoedown_buffer_put(ob, text->data, text->size); return 1; } if ((state->flags) != 0) return 1; hoedown_buffer_put(ob, text->data, text->size); return 1; } static void rndr_table(hoedown_buffer *ob, const hoedown_buffer *content, const hoedown_renderer_data *data, hoedown_table_flags *flags, int cols) { if (ob->size) hoedown_buffer_putc(ob, '\n'); HOEDOWN_BUFPUTSL(ob, "\\begin{tabular}{"); int i; for (i = 0;i < cols;i++) { hoedown_buffer_puts(ob, " | "); switch(flags[i] & HOEDOWN_TABLE_ALIGNMASK) { case HOEDOWN_TABLE_ALIGN_RIGHT: hoedown_buffer_putc(ob, 'r'); break; case HOEDOWN_TABLE_ALIGN_CENTER: hoedown_buffer_putc(ob, 'c'); break; default: hoedown_buffer_putc(ob, 'l'); } } hoedown_buffer_puts(ob, " | }\n\\hline\n"); hoedown_buffer_put(ob, content->data, content->size); HOEDOWN_BUFPUTSL(ob, "\\hline\n\\end{tabular}\n"); } static void rndr_table_header(hoedown_buffer *ob, const hoedown_buffer *content, const hoedown_renderer_data *data) { /* TODO implement */ if (ob->size) hoedown_buffer_putc(ob, '\n'); hoedown_buffer_put(ob, content->data, content->size); HOEDOWN_BUFPUTSL(ob, "\\hline\n"); } static void rndr_table_body(hoedown_buffer *ob, const hoedown_buffer *content, const hoedown_renderer_data *data) { /* TODO implement */ hoedown_buffer_put(ob, content->data, content->size); } static void rndr_tablerow(hoedown_buffer *ob, const hoedown_buffer *content, const hoedown_renderer_data *data) { /* TODO implement */ if (content) hoedown_buffer_put(ob, content->data, content->size); hoedown_buffer_replace_last(ob, "\\\\\n"); } static void rndr_tablecell(hoedown_buffer *ob, const hoedown_buffer *content, hoedown_table_flags flags, const hoedown_renderer_data *data) { /* TODO implement */ if (flags & HOEDOWN_TABLE_HEADER) { HOEDOWN_BUFPUTSL(ob, "{\\bf "); } if (content) hoedown_buffer_put(ob, content->data, content->size); if (flags & HOEDOWN_TABLE_HEADER) { hoedown_buffer_putc(ob, '}'); } HOEDOWN_BUFPUTSL(ob, " & "); } static int rndr_superscript(hoedown_buffer *ob, const hoedown_buffer *content, const hoedown_renderer_data *data) { if (!content || !content->size) return 0; HOEDOWN_BUFPUTSL(ob, "\\textsuperscript{"); hoedown_buffer_put(ob, content->data, content->size); HOEDOWN_BUFPUTSL(ob, "}"); return 1; } static void rndr_normal_text(hoedown_buffer *ob, const hoedown_buffer *content, const hoedown_renderer_data *data) { if (content) hoedown_buffer_put(ob, content->data, content->size); } static void rndr_footnotes(hoedown_buffer *ob, const hoedown_buffer *content, const hoedown_renderer_data *data) { /*TOOD fix that*/ /*scidown_latex_renderer_state *state = data->opaque;*/ hoedown_buffer_puts(ob, "\\begin{thebibliography}{00}\n"); if (content) hoedown_buffer_put(ob, content->data, content->size); hoedown_buffer_puts(ob, "\\end{thebibliography}\n"); } static void rndr_footnote_def(hoedown_buffer *ob, const hoedown_buffer *content, unsigned int num, const hoedown_renderer_data *data) { /*TODO fix that*/ if (!content) return; char * tmp = malloc(content->size+1); tmp[content->size] = 0; memcpy(tmp, content->data, content->size); hoedown_buffer_printf(ob, "\\bibitem{fnref:%d}%s\n", num, tmp); free(tmp); } static int rndr_footnote_ref(hoedown_buffer *ob, int num, const hoedown_renderer_data *data) { if (num > 0) hoedown_buffer_printf(ob, "\\cite{fnref:%d}", num); return 1; } static int rndr_math(hoedown_buffer *ob, const hoedown_buffer *text, int displaymode, const hoedown_renderer_data *data) { hoedown_buffer_put(ob, (const uint8_t *)(displaymode ? "\\[" : "\\("), 2); hoedown_buffer_put(ob, text->data, text->size); hoedown_buffer_put(ob, (const uint8_t *)(displaymode ? "\\]" : "\\)"), 2); return 1; } static int rndr_eq_math(hoedown_buffer *ob, const hoedown_buffer *text, int displaymode, const hoedown_renderer_data *data) { hoedown_buffer_put(ob, text->data+1, text->size-1); return 1; } static void rndr_head(hoedown_buffer *ob, metadata * doc_meta, ext_definition * extension) { hoedown_buffer_printf(ob, "\\documentclass[%s, %dpt]{%s}\n", paper_to_latex(doc_meta->paper_size), doc_meta->font_size, class_to_string(doc_meta->doc_class)); hoedown_buffer_puts(ob, "\\usepackage[utf8]{inputenc}\n" "\\usepackage{cite}\n" "\\usepackage{amsmath,amssymb,amsfonts}\n" "\\usepackage{algorithmic}\n" "\\usepackage{float}\n" "\\usepackage{hyperref}\n" "\\usepackage{graphicx}\n" "\\usepackage{textcomp}\n" "\\usepackage{listings}\n" "\\usepackage{epsfig}\n" "\\usepackage{tikz}\n" "\\usepackage{pgfplots}\n\n" "\\pgfplotsset{compat=1.15}\n\n" "\\providecommand{\\keywords}[1]{{\\bf{\\em Index terms---}} #1}\n" "\\newfloat{program}{thp}{lop}\n\\floatname{program}{Listing}\n" ); if (doc_meta->title){ hoedown_buffer_printf(ob, "\\title{%s}\n\\date{}\n", doc_meta->title); } if (doc_meta->authors) { hoedown_buffer_puts(ob, "\\author{"); Strings* it; for (it = doc_meta->authors; it != NULL; it = it->next){ if (it->size == 1) { hoedown_buffer_puts(ob, it->str); } else { hoedown_buffer_printf(ob, "%s \\and ", it->str); } } hoedown_buffer_puts(ob, "}\n"); } if (extension && extension->extra_header) { hoedown_buffer_puts(ob, extension->extra_header); } hoedown_buffer_puts(ob,"\n\\begin{document}\n"); } static void rndr_title(hoedown_buffer *ob, const hoedown_buffer *content, const metadata *data) { if (data->doc_class == CLASS_BEAMER) { hoedown_buffer_puts(ob, "\\frame{\\titlepage}"); } else { hoedown_buffer_puts(ob, "\\maketitle"); } } static void rndr_authors(hoedown_buffer *ob, Strings *authors) { } static void rndr_affiliation(hoedown_buffer *ob, const hoedown_buffer *content, const hoedown_renderer_data *data) { } static void rndr_keywords(hoedown_buffer *ob, const hoedown_buffer *content, const hoedown_renderer_data *data) { hoedown_buffer_puts(ob, "\\keywords{"); hoedown_buffer_put(ob, content->data, content->size); hoedown_buffer_puts(ob, "}\n"); } static void rndr_begin(hoedown_buffer *ob, const hoedown_renderer_data *data) { } static void rndr_inner(hoedown_buffer *ob , const hoedown_renderer_data *data) { if (data->meta->doc_class == CLASS_BEAMER) hoedown_buffer_puts(ob, "\\begin{frame}\n"); } static void rndr_end(hoedown_buffer *ob, ext_definition * extension, const hoedown_renderer_data *data) { if (ob->size) hoedown_buffer_putc(ob, '\n'); if (data->meta->doc_class == CLASS_BEAMER) { hoedown_buffer_puts(ob, "\\end{frame}\n"); } if (extension && extension->extra_closing) { hoedown_buffer_puts(ob, extension->extra_closing); } hoedown_buffer_puts(ob, "\\end{document}\n"); } static void rndr_pagebreak(hoedown_buffer *ob) { hoedown_buffer_puts(ob, "\\newpage\n"); } static void rndr_abstract(hoedown_buffer *ob){ hoedown_buffer_puts(ob, "\\begin{abstract}\n"); } static void rndr_close(hoedown_buffer *ob){ hoedown_buffer_puts(ob, "\\end{abstract}"); } static int rndr_ref (hoedown_buffer *ob, char * id, int count) { hoedown_buffer_printf(ob, "(\\ref{%s})", id); return 1; } static void rndr_open_equation(hoedown_buffer *ob, const char * ref, const hoedown_renderer_data *data) { hoedown_buffer_puts(ob,"\\begin{equation}\n"); if (ref){ hoedown_buffer_puts(ob,"\\label{"); hoedown_buffer_puts(ob, ref); hoedown_buffer_puts(ob, "}\n"); } } static void rndr_close_equation(hoedown_buffer *ob, const hoedown_renderer_data *data) { /* scidown_latex_renderer_state *state = data->opaque; */ hoedown_buffer_puts(ob, "\n\\end{equation}"); } static void rndr_open_float(hoedown_buffer *ob, float_args args, const hoedown_renderer_data *data) { switch (args.type) { case FIGURE: hoedown_buffer_puts(ob, "\\begin{figure}[ht!]\n"); break; case LISTING: /**TODO make it better**/ hoedown_buffer_puts(ob, "\\begin{program}\n"); break; case TABLE: hoedown_buffer_puts(ob, "\\begin{table}\n"); break; default: break; } hoedown_buffer_puts(ob, "\\begin{center}\n"); } static void rnrd_close_float(hoedown_buffer *ob, float_args args, const hoedown_renderer_data *data) { if (args.caption){ hoedown_buffer_puts(ob, "\\caption{"); hoedown_buffer_puts(ob, args.caption); hoedown_buffer_puts(ob, "}\n"); } if (args.id) { hoedown_buffer_puts(ob, "\\label{"); hoedown_buffer_puts(ob, args.id); hoedown_buffer_puts(ob, "}\n"); } hoedown_buffer_puts(ob, "\\end{center}\n"); switch (args.type) { case FIGURE: hoedown_buffer_puts(ob, "\\end{figure}\n"); break; case LISTING: /**TODO make it better**/ hoedown_buffer_puts(ob, "\\end{program}\n"); break; case TABLE: hoedown_buffer_puts(ob, "\\end{table}\n"); break; default: break; } } static void rndr_toc(hoedown_buffer *ob, toc * tree, int numbering) { hoedown_buffer_puts(ob, "\\tableofcontents"); } hoedown_renderer * scidown_latex_renderer_new(scidown_render_flags render_flags, int nesting_level, localization local) { static const hoedown_renderer cb_default = { NULL, rndr_head, rndr_title, rndr_authors, rndr_affiliation, rndr_keywords, rndr_begin, rndr_inner, rndr_end, rndr_pagebreak, rndr_close, rndr_abstract, rndr_open_equation, rndr_close_equation, rndr_open_float, rnrd_close_float, rndr_blockcode, rndr_blockquote, rndr_header, rndr_hrule, rndr_list, rndr_listitem, rndr_paragraph, rndr_table, rndr_table_header, rndr_table_body, rndr_tablerow, rndr_tablecell, rndr_footnotes, rndr_footnote_def, rndr_raw_block, rndr_toc, rndr_autolink, rndr_codespan, rndr_double_emphasis, rndr_emphasis, rndr_underline, rndr_highlight, rndr_quote, rndr_image, rndr_linebreak, rndr_link, rndr_triple_emphasis, rndr_strikethrough, rndr_superscript, rndr_footnote_ref, rndr_math, rndr_eq_math, rndr_ref, rndr_raw_html, NULL, rndr_normal_text, NULL, NULL }; scidown_latex_renderer_state *state; hoedown_renderer *renderer; /* Prepare the state pointer */ state = hoedown_malloc(sizeof(scidown_latex_renderer_state)); memset(state, 0x0, sizeof(scidown_latex_renderer_state)); state->flags = render_flags; state->counter.figure = 0; state->counter.equation = 0; state->counter.listing = 0; state->counter.table = 0; state->localization = local; state->toc_data.nesting_level = nesting_level; /* Prepare the renderer */ renderer = hoedown_malloc(sizeof(hoedown_renderer)); memcpy(renderer, &cb_default, sizeof(hoedown_renderer)); renderer->opaque = state; return renderer; } void scidown_latex_renderer_free(hoedown_renderer *renderer) { free(renderer->opaque); free(renderer); }
24.575141
152
0.690055
bdeaea3f708b329e9aba1a50c5303ab2aa6f8b45
477
h
C
src/main.h
zqianem/pebble
481c272bbb12ca1b16b776255cc9227696d3edef
[ "MIT" ]
null
null
null
src/main.h
zqianem/pebble
481c272bbb12ca1b16b776255cc9227696d3edef
[ "MIT" ]
null
null
null
src/main.h
zqianem/pebble
481c272bbb12ca1b16b776255cc9227696d3edef
[ "MIT" ]
null
null
null
#ifndef __MAIN_H #define __MAIN_H #include <string> #include <vector> #include <map> #include "abstract.h" #include "utils.h" // --------------------------------------------------------------------------------------------------------------------- // Typedefs typedef std::string String; /// if true will turn on output for 'print' command of the language extern bool g_outputOn; /// if true will use the BytecodeRuntime engine extern bool g_useBytecodeRuntime; #endif
19.08
120
0.555556
bdeaf51073fa5980131150cdcd62aefafa301ef9
883
h
C
src/pl/pljava/src/C/include/pljava/type/LargeObject.h
YangHao666666/hawq
10cff8350f1ba806c6fec64eb67e0e6f6f24786c
[ "Artistic-1.0-Perl", "ISC", "bzip2-1.0.5", "TCL", "Apache-2.0", "BSD-3-Clause-No-Nuclear-License-2014", "MIT", "PostgreSQL", "BSD-3-Clause" ]
450
2015-09-05T09:12:51.000Z
2018-08-30T01:45:36.000Z
src/pl/pljava/src/C/include/pljava/type/LargeObject.h
YangHao666666/hawq
10cff8350f1ba806c6fec64eb67e0e6f6f24786c
[ "Artistic-1.0-Perl", "ISC", "bzip2-1.0.5", "TCL", "Apache-2.0", "BSD-3-Clause-No-Nuclear-License-2014", "MIT", "PostgreSQL", "BSD-3-Clause" ]
1,274
2015-09-22T20:06:16.000Z
2018-08-31T22:14:00.000Z
src/pl/pljava/src/C/include/pljava/type/LargeObject.h
YangHao666666/hawq
10cff8350f1ba806c6fec64eb67e0e6f6f24786c
[ "Artistic-1.0-Perl", "ISC", "bzip2-1.0.5", "TCL", "Apache-2.0", "BSD-3-Clause-No-Nuclear-License-2014", "MIT", "PostgreSQL", "BSD-3-Clause" ]
278
2015-09-21T19:15:06.000Z
2018-08-31T00:36:51.000Z
/* * Copyright (c) 2004, 2005, 2006 TADA AB - Taby Sweden * Distributed under the terms shown in the file COPYRIGHT * found in the root folder of this project or at * http://eng.tada.se/osprojects/COPYRIGHT.html * * @author Thomas Hallgren */ #ifndef __pljava_LargeObject_h #define __pljava_LargeObject_h #include "pljava/type/Type.h" #ifdef __cplusplus extern "C" { #endif #include <storage/large_object.h> /***************************************************************** * The LargeObject java class extends the NativeStruct and provides JNI * access to some of the attributes of the LargeObjectDesc structure. * * @author Thomas Hallgren *****************************************************************/ /* * Create the org.postgresql.pljava.LargeObject instance */ extern jobject LargeObject_create(LargeObjectDesc* lo); #ifdef __cplusplus } #endif #endif
25.228571
71
0.642129
bdeb09c74d13de85dccdec8ef0000063e03d2ec7
305,754
h
C
esplay-sdk/esplay-components/osd-menu/include/menu_bg.h
NewLeafG/esplay-retro-emulation
f78137cda7bc4e3cf025f930c2352999bece3243
[ "MIT" ]
270
2019-03-18T16:01:11.000Z
2022-03-31T07:52:15.000Z
esplay-sdk/esplay-components/osd-menu/include/menu_bg.h
NewLeafG/esplay-retro-emulation
f78137cda7bc4e3cf025f930c2352999bece3243
[ "MIT" ]
20
2019-05-10T02:01:38.000Z
2021-09-15T03:42:34.000Z
esplay-sdk/esplay-components/osd-menu/include/menu_bg.h
NewLeafG/esplay-retro-emulation
f78137cda7bc4e3cf025f930c2352999bece3243
[ "MIT" ]
48
2019-05-09T14:45:55.000Z
2022-03-17T07:28:52.000Z
/* GIMP RGB C-Source image dump (menu_bg.h) */ static const struct { unsigned int width; unsigned int height; unsigned int bytes_per_pixel; /* 2:RGB16, 3:RGB, 4:RGBA */ unsigned char pixel_data[150 * 240 * 2 + 1]; } menu_bg = { 150, 240, 2, "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\266\265\266\265" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\226\265,c\353Z\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\313Z\000\000\000\000" "\327\275\327\275\327\275\327\275\327\275\266\265\266\265\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275Mk\000\000\000\000\000\000\327\275\327\275\327\275\327\275\327\275\307" "\071\040\000\262\224\266\265\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\020\204\000\000\000\000\000\000\000\000\327\275\327\275\327" "\275\327\275\327\275Q\214e)\000\000\256{\266\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\222\224\000\000\000\000\000\000\000\000\000\000\327\275" "\327\275\327\275\327\275\327\275\327\275u\255\212R\000\000Mk\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\266\275\266\275\266\275\327\275\363\234\000\000\000\000\000\000\000\000\000\000\000\000" "\327\275\327\275\327\275\222\224\064\245\327\275\327\275u\265(Ba\010\222\224" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275q\224\317{\317{\317{\317{\303\030\000\000\000\000\000\000\000\000\000\000\000\000\327\275" "\327\275\226\265\000\000\242\020\222\224\327\275\327\275\064\245\000\000iJ\226\265" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\202\020\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327\275" "\024\245$!\000\000\363\234\327\275\327\275\317{\000\000\363\244\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327\275\327\275\262\234\303" "\030(B\327\275\327\275u\255\000\000\256s\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\327\275\327\275\327\275\327\275\327\275\212R\004!\024\245\327\275\226" "\265(BIJ\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275" "\327\275\327\275\327\275\357{\000\000\222\224\327\275\226\265\313Z\303\030\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327\275\327" "\275\327\275\357{\000\000\222\224\327\275\226\265\313Z\303\030\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327\275\327\275\327\275" "\212R\004!\024\245\327\275\226\265(BIJ\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\327\275\327\275\327\275\327\275\323\234\303\030(B\327\275\327\275" "u\255\000\000\256s\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\202\020\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327" "\275\327\275\024\245$!\000\000\363\234\327\275\327\275\317{\000\000\363\244\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275q\224\317" "{\317{\317{\317{\303\030\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275u\265\000\000" "\202\020\222\224\327\275\327\275\064\245\000\000iJ\226\265\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\266\275\266" "\275\266\275\327\275\363\234\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327" "\275Q\214\064\245\327\275\327\275u\265(Ba\010\222\224\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\222\224\000\000\000\000\000\000\000\000\000\000\327\275\327" "\275\327\275\327\275\327\275\327\275u\255\212R\000\000Mk\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\020\204\000\000\000\000\000\000\000" "\000\327\275\327\275\327\275\327\275\327\275Q\214e)\000\000\256{\266\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "mk\000\000\000\000\000\000\327\275\327\275\327\275\327\275\327\275\307\071\040\000\262\224" "\266\265\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\313Z\000\000\000\000\327\275\327\275\327\275\327" "\275\327\275\266\265\266\265\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\226" "\265,c,c\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\266\265\266\265\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\064\245\000\000\000\000\064" "\245\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\064\245\000\000\000\000\064\245\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\266\265\327\275\327\275\327\275\327\275\327\275\064\245\000\000\000\000\064" "\245\327\275\327\275\327\275\327\275\327\275\266\265\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\222\224$!\024\245\327\275\327\275\327" "\275\327\275\064\245\000\000\000\000\064\245\327\275\327\275\327\275\327\275\024\245" "$!\222\224\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\226\265$!\000\000$!\024\245\327" "\275\327\275\327\275\064\245\000\000\000\000\064\245\327\275\327\275\327\275\024\245" "$!\000\000$!\226\265\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\024\245$!\000\000$!\024" "\245\327\275\327\275\064\245\000\000\000\000\064\245\327\275\327\275\024\245$!\000\000$" "!\024\245\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\024\245$" "!\000\000$!\024\245\327\275\327\275\327\275\327\275\327\275\327\275\024\245$!\000" "\000$!\024\245\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\024\245$!(Bu\255u\265\060\214\252Z\313Z\060\204\226\265u\255(B$!\024" "\245\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\024\245u\255\064\245$!\000\000\000\000\000\000\000\000$!\064\245u\255\024" "\245\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\226\265$!\000\000\000\000\000\000\000\000\000\000\000\000$!" "\226\265\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\064\245\064" "\245\064\245\064\245\064\245\064\245\327\275Q\214\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\060\204\327\275\064\245\064\245\064\245\064\245\064\245\064\245\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000" "\000\000\000\000\000\000\327\275\252R\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\252R\327\275\000" "\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\000\000\000\000\000\000\000\000\000\000\000\000\327\275\252R\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\252R\327\275\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\064\245\064\245\064\245" "\064\245\064\245\064\245\327\275Q\214\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000Q\214\327" "\275\064\245\064\245\064\245\064\245\064\245\064\245\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\226\265$!\000\000\000\000\000\000\000\000\000\000\000\000$!u\255\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\024\245u\255\064\245$!\000\000\000\000\000\000\000\000$!\064\245" "u\255\024\245\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\024\245$!(Bu\255u\265Q\214\252R\252RQ\214u\255" "u\255(B$!\024\245\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" "\377\377\377\377\377\377\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\024\245$!\000\000$!\024\245\327\275\327\275\327\275\327\275\327" "\275\327\275\024\245$!\000\000$!\024\245\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\024\245$!\000\000$!\024\245\327\275\327\275\064\245\000\000\000\000\064" "\245\327\275\327\275\024\245$!\000\000$!\024\245\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\226\265$!\000\000$!\024\245\327\275\327\275\327\275\064\245\000\000\000\000\064" "\245\327\275\327\275\327\275\024\245$!\000\000$!\226\265\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\262\224$!\024\245\327\275\327\275\327\275\327\275\064\245" "\000\000\000\000\064\245\327\275\327\275\327\275\327\275\024\245$!\222\224\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\226\265\327\275\327\275" "\327\275\327\275\327\275\064\245\000\000\000\000\064\245\327\275\327\275\327\275\327" "\275\327\275\226\265\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\064\245\000\000\000" "\000\064\245\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\064\245\000\000\000\000\064\245\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275u\255Mk\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\313Zu\255\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275Mk\000\000\000\000\000\000\014c\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\266\265\064\245\064\245u\255\327\275,c\000\000E)\064\245" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\000\000\000\000\000\000\000\000\317{\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\064\245\000\000\000\000\317{\327\275\317{\000\000\000\000\004!" "\064\245\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\000\000\000\000\000\000\000\000\317{\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\064\245\000\000\000\000\317{\327\275\317{\000\000\000\000\000\000E)u" "\255\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\000\000\000\000\000\000\000\000\317{\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\064\245\000\000\000\000\317{\327\275\317{\000\000\000\000\000\000\000\000\313Z\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000" "\000\000\000\000\000\000\317{\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\064\245\000\000\000\000\317{\327\275\317{\000\000\000\000\000\000\000\000\000\000\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000" "\000\000\317{\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\064\245\000\000\000\000\317{\327\275\317{\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000\317" "{\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\064\245" "\000\000\000\000\317{\327\275\317{\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275u\255\020\204iJ\004!e)Mku\255\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\000\000\000\000\000\000\000\000Mk\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\226\265\222\224\222\224\024\245\327\275\216s\000\000\000\000" "\000\000\000\000\000\000\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\323\234$)\000\000\000\000\000\000\000\000\000\000Mk\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000\000\000" "\212R\252Z\252Z\252Z\252Z\252Z\252Z\252Z\252Z\252Z\252Z\252Z\252R\000\000\000\000" "\000\000\000\000\000\000\000\000\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\024\245\202\020\004!\020\204U\255\266\265u\255iJq\214\327\275\327\275\327\275" "\266\265\060\204\347\071IJu\265\327\275\266\265\323\234\266\265\327\275\327" "\275\327\275\327\275u\255q\214\226\265\327\275\327\275\323\234\212R$!ms\266" "\265\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275mk\000\000\323\234\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\266\265\014c\000\000\000\000\000\000E)U\255Q" "\214\000\000\262\224\327\275\327\275\327\275u\255\307\071\000\000\323\234\327\275" "Q\214\000\000\000\000\000\000\000\000\363\234\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\327\275\327\275\327\275\327\275\327\275\327\275\327\275Mk\000\000\262\234" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\216s\000\000" ",cu\265\313Z\000\000U\255Q\214\000\000q\214\327\275\327\275\266\265\252Z\000\000\060\204" "\327\275\363\234\000\000\347\071\024\245\222\224\000\000\024\245\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\000\000\000\000\347\071\226\265\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\226\265\347\071\000\000\000\000\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\363\244\242\020\000\000\014cq\214u\255\327\275\327\275\327\275\327" "\275\323\234\000\000\252R\266\265\327\275\252R\303\030\266\275\363\234\000\000\317" "{\327\275\327\275\060\204\000\000\317{\327\275\266\275iJ\303\030U\255\024\245\010" "B,c\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\000\000\000\000\252Z\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\252Z\000\000\000\000\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\064\245mk\303\030\000\000\000\000" "\014c\064\245\327\275\327\275iJ\303\030U\255\327\275\363\234\000\000IJ\327\275\266" "\265\303\030iJ\327\275U\255\303\030iJ\266\265\327\275\064\245\000\000\307\071\252" "R\000\000\256s\266\265\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000\252Z\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\252Z\000\000\000\000" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\226\265\262\224Mka\010\303\030U\255\064\245\000\000\216s\327\275U\255\246" "\061\000\000\313Z\327\275\327\275Mk\000\000U\255\014ca\010\064\245\327\275\327\275\262" "\224\000\000E)\256{\024\245\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000" "\000\000\252Z\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\252Z\000\000\000\000\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275Mk\000\000\323\234\222\224" "\000\000\060\204\024\245\347\071\252R\313ZIJ\327\275\327\275\262\234\000\000\014c\000\000" "\256{\327\275\327\275\327\275\323\234\000\000Mk\266\265u\265\363\234Mk\014c\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\000\000\000\000\252Z\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\252Z\000\000\000\000\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\266\265U\255q\214\252R\000\000\212" "R\266\265\262\224\000\000\000\000\000\000(Bu\255mk\000\000\323\234\327\275\266\265\004!\000\000" "E)\226\265\327\275\327\275\327\275\226\265E)\000\000\000\000\000\000\000\000\206\061\024\245" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\000\000\000\000\252Z\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\252Z\000\000\000\000\327\275\327\275\327\275" "\327\275\327\275\327\275\024\245\202\020\000\000\000\000\000\000\000\000\202\020\317{\226\265" "\327\275\266\265\014ce)\216s\226\265\327\275\363\234e)\020\204\327\275\327" "\275\014c\000\000Q\214\327\275\327\275\327\275\327\275\327\275\363\244\212R\004" "!iJ\020\204\226\265\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000\252Z\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\252Z\000\000\000\000" "\327\275\327\275\327\275\327\275\327\275\327\275U\255IJ\242\020\246\061\353" "bQ\214u\255\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275U\255Q\214\266\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\000\000\000\000\252Z\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\252Z\000\000\000\000\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000" "\252Z\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\252Z\000\000\000\000\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\000\000\000\000\252Z\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\252Z\000\000\000\000\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275Mk\000\000(B\266\265\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\266\265(B\000\000Mk\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275u\255Mk\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000Mk" "u\255\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\060\214\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\307\071" "U\255\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\222\224\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\020\204\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\060\204" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\216s\216s\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275u\255\000\000\353Z\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000(B\317{\317{(B\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\060\204" "\307\071U\255\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\323\234\000\000Q\214\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\317{\327\275\327\275\357{\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\212R\000\000\024\245\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\020\204\000\000U\255\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\020\204\327\275\327\275\020\204" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275e)\000\000\226\265\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\266\265\060\204\347\071IJu\265\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\014c(B\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\060\204\327\275\327\275\060\204" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\266\265\000\000\206\061\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\222\224iJ\343\030\353ZU\255\327\275" "\327\275\327\275\266\265\014c\000\000\000\000\000\000E)U\255\327\275\327\275\327\275\363" "\244\313Z\004!\357{E)\216s\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\060\204\327\275\327\275\262\224\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\327\275\327\275\327\275\327\275\327\275\327\275\327\275U\255\000\000\252" "R\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\060\204" "\000\000\000\000\000\000\000\000iR\266\275\327\275\327\275\216s\000\000,cu\265\313Z\000\000U\255" "\327\275\327\275q\224\040\000\000\000\000\000\000\000\000\000\222\224\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\216s\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\317{\000\000\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\024\245\000\000mk\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\024\245\000\000\307\071\064\245\226\265\252R\000\000\024" "\245\327\275\323\234\000\000\252R\266\265\327\275\252R\303\030\266\275\327\275" "\363\234\040\000\206\061\323\234\226\265Mk\000\000\024\245\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\064\245\327\275\327\275\327\275\327\275\327\275\327" "\275\024\245\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\262\224\000\000\357{\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\014c\000\000\363\234\327\275\327\275Q\214\000\000\262\224" "\327\275iJ\303\030U\255\327\275\363\234\000\000IJ\327\275\266\265(B\004!\064\245" "\327\275\266\265IJ\000\000u\265\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\010Bu\255\327\275\327\275\327\275\327\275\226\265IJ\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\327\275\327\275\327\275\327\275\327\275\327\275\327\275Q\214\000" "\000q\214\327\275\327\275\327\275\327\275\327\275\327\275\226\265\000\000\212R" "\327\275\327\275\327\275\317{\000\000\024\245\064\245\000\000\216s\327\275U\255\246" "\061\000\000\313Z\327\275\363\234\000\000\020\204\327\275\266\265mk\000\000\000\000\266\265" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\014c\266\275\327\275" "\327\275\327\275\014c\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\317{\000\000\323\234\327\275\327\275" "\327\275\327\275\327\275\327\275\024\245\000\000\216s\327\275\327\275U\255\004!" "IJ\266\275\222\224\000\000\060\204\024\245\347\071\252R\313ZIJ\327\275Q\214\000\000" "\222\224U\255\014c\303\030\252Z\000\000U\255\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\357{\327\275\327\275\020\204\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\014c\000\000\323\234\222\224\313Z\040\000\000\000\000\000\252R\064\245\000\000iJ\266\265\363" "\234\307\071\040\000\323\234\327\275\262\224\000\000\000\000\000\000(Bu\255mk\000\000\323\234" "\262\224\000\000\000\000\000\000\303\030\323\234\060\214\000\000\000\000\303\030\266\265\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\262\234\363\234\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\246\061\000\000\000\000\000\000\000\000\000\000\000\000\000\000\014c\266\265\010B\000\000\000\000\000\000\000" "\000Q\214\327\275\327\275\266\265\014ce)\216s\226\265\327\275\363\234e)\020\204" "\266\265,c$)\014c\064\245\327\275u\255IJIJ\323\234\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\327\275\327\275\327\275\327\275\327\275\327\275\327\275,c\347\071" "\256s\262\224U\255\226\265\266\265\226\265\327\275\327\275\064\255\252Z\004" "!\313Z\363\234\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\060\204\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\357{\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\222\224\313Z\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\313Z\222\224\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\256{\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\256s\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\222\224\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\222\224\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\313" "Z\000\000\000\000\000\000\000\000\000\000\000\000\000\000\202\020,c\060\204\222\224q\214\216s\246\061\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\252R\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000\000\000\000\000\000\000\317{\226\265" "\327\275\327\275\327\275\327\275\327\275\266\275\262\224\246\061\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\000\000\000\000\000\000\000\000\000\000$!\363\234\327\275u\265\060\204\313Z\010" "B\212R\216s\024\245\327\275u\255\212R\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275q\224\347\071\266\265" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000" "\000\000\323\234\327\275\262\224$!\000\000\000\000\000\000\000\000\000\000\000\000\216s\266\265\226\265" "\010B\252R\313Z\000\000\000\000\000\000\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\266\265mk\313ZIJe)\202\020\307\071Mk\064\245\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\313Z\000\000u\255\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000\216" "s\327\275\262\234\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000Mk\327\275u\255\327" "\275\256s\000\000\000\000\000\000\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\266\265E)\000\000\000\000\000\000\000\000\000\000\000\000\343\030U\255\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\266\265\303\030\246\061\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000U\255" "\226\265E)\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\256s\266\265\327\275\327\275" "\317{\000\000\000\000\000\000\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\266\275E)\000\000\024\245\266\265\266\275u\255Mk\000\000Q\214\327\275\327\275\327" "\275\327\275\323\234\212R$!ms\266\265\327\275\327\275u\265\317{\307\071e)" "\024\245\327\275\327\275\327\275\323\234\212R$!ms\266\265\327\275\327\275" "\024\245\000\000Mk\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\000\000\000\000\000\000\000\000\226\265\060\204\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\313" "ZU\255\327\275\327\275\327\275\317{\000\000\000\000\000\000\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275U\255\000\000IJ\327\275\327\275\327\275\327\275\357" "{\000\000\323\234\327\275\327\275\327\275Q\214\000\000\000\000\000\000\000\000\363\234\327\275" "\363\244E)\000\000\000\000\303\030\363\234\327\275\327\275Q\214\000\000\000\000\000\000\000\000\363" "\234\216s\000\000\000\000\000\000\347\071iJe)IJ\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\202\020\317" "{\226\265\327\275\317{\000\000\000\000\000\000\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\262\224\000\000\216s\327\275\327\275\064\245mk\000\000,c\266\275" "\327\275\327\275\363\234\000\000\347\071\024\245\222\224\000\000\024\245\226\265e)a" "\010\060\204\226\265\327\275\327\275\327\275\363\234\000\000\347\071\024\245\222" "\224\000\000\024\245\357{\000\000\000\000\000\000\000\000iJ\020\204\064\245\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000$!\020\204\216s\000\000\000\000\000\000\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\020\204\000\000\357{(B$!\000\000\303\030\020\204\266\265" "\327\275\327\275\266\275iJ\303\030U\255\024\245\010B,c\327\275\024\245\000\000\353" "b\327\275\327\275\327\275\327\275\266\275iJ\303\030U\255\024\245\010B,c\327" "\275\327\275\226\265E)$!u\255\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\000\000\000\000\000\000\216s\020\204$!\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275mk\000\000q\214e)\000\000\202\020\363\234\327\275\327" "\275\327\275\327\275\064\245\000\000\307\071\252R\000\000\256s\266\265\327\275\226" "\265e)a\010\357{\226\265\327\275\327\275\064\245\000\000\307\071\252R\000\000\256s\266" "\265\327\275\327\275U\255\000\000\014c\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\000\000\000\000\000\000\317{\327\275\226\265\317{\040" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\313Z\000\000U\255\226\265\216" "s\000\000\004!\222\224\327\275\327\275\327\275\262\224\000\000E)\256{\024\245\327\275" "\327\275\327\275\327\275\064\245\212R\000\000e)\262\224\327\275\262\224\000\000E)" "\256{\024\245\327\275\327\275\327\275\327\275\262\224\000\000\060\204\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000" "\317{\327\275\327\275\327\275U\255\313Z\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\020\204\226\265\000\000\000\000\000\000\000\000\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\010B\000\000\226\265\327\275\327\275\222\224\303\030\000\000,cu\255" "\327\275\323\234\000\000Mk\266\265u\265\363\234Mk\014c\327\275\327\275\266\275" "\262\224\307\071\000\000\064\245\323\234\000\000Mk\266\265u\265\363\234Mk\014c\327\275" "\020\204\000\000\323\234\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\000\000\000\000\000\000\317{\327\275\327\275\266\265\256{\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000$)\226\265U\255\000\000\000\000\000\000\000\000\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\246\061\000\000u\255\327\275\327\275" "\327\275\064\245IJ\000\000$!\363\234\226\265E)\000\000\000\000\000\000\000\000\206\061\024\245\327" "\275\327\275\226\265\024\245\353Z\000\000\323\234\226\265E)\000\000\000\000\000\000\000\000\206" "\061\024\245\327\275\256{\000\000\222\224u\265\357{\252R\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\000\000\000\000\000\000\216s\327\275u\255\327\275Mk\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\262\224\327\275\256s\000\000\000\000\000\000\000\000\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275ms\010B\226\265\327\275\327" "\275\327\275\327\275\266\265\317{e)\323\234\327\275\363\244\212R\004!iJ\020" "\204\226\265\266\275\212R\000\000\000\000\000\000\000\000\014c\266\265\327\275\363\244\212" "R\004!iJ\020\204\226\265\327\275\327\275Q\214\000\000\000\000\000\000\000\000\222\224\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000\252R\313Z\010B\226\265" "\266\265\216s\000\000\000\000\000\000\000\000\000\000\000\000$!\222\224\327\275\363\234\000\000\000\000\000" "\000\000\000\000\000\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\353Z\343\030\010Bmk\323\234\266\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\226\265\014c$)\313Z\363\234\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\000\000\000\000\000\000\000\000\000\000\000\000" "\252Ru\255\327\275\024\245msiJ\246\061\252R\020\204u\255\327\275\363\244$)\000" "\000\000\000\000\000\000\000\000\000\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\000\000\000\000\000\000\000\000\000\000\000\000\000\000\246\061\262\224\327\275\327\275" "\327\275\327\275\327\275\327\275\226\265\357{\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\252R\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\307\071\256sq\224\222\224\060\214Mk\303" "\030\000\000\000\000\000\000\000\000\000\000\000\000\000\000\252R\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\222\224\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\222\224\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\256s\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\216s\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\222\224\252R\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\252R\222\224\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\064\255Q\214\216s\313Z\313Z\216sQ\214U\255\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\024\245\313Z\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\313Z\024\245\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\266\265\317{\000\000\000\000\000\000\000\000\040\000\206\061\206\061\040\000" "\000\000\000\000\000\000\000\000\317{\266\265\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\266\265Mk\000\000\000\000\000\000mk\363\234\266\265\327\275\327\275\266" "\265\363\234mk\000\000\000\000\000\000Mk\266\265\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275U\255\010B\010" "B\226\265\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\317{\000\000\000\000\307\071\024\245\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\024\245\307\071\000\000\000\000\317{\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\064\245\313ZE)mk\266\265" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275U\255\347\071\014c\266\265" "\327\275\327\275q\224\347\071\266\265\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\024\245\000\000\000\000\307\071" "u\255\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275U\255\307\071\000\000\000\000\024\245\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275u\255\020\204iJ\004!e)M" "ku\255\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\226" "\265\307\071\000\000\000\000\000\000Q\214\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\226\265\363\234\060\204,c\307\071a\010\060\204\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\313Z\000\000u\255\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\252Z\000\000" "\000\000\024\245\327\275\266\265\060\204\262\224\327\275\327\275\327\275\327\275" "\262\224\060\204\266\265\327\275\024\245\000\000\000\000\313Z\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\323\234$)\000\000\000" "\000\000\000\000\000\000\000Mk\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\323\234\000\000\256s\064\245\000\000\256s\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\014c\000\000\000\000\000\000\000\000\000\000\000\000\000\000Q\214\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\266\265\303\030\246\061\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\064\255\000\000\000\000m" "k\327\275\327\275\060\204\000\000\000\000\060\204\327\275\327\275\060\204\000\000\000\000\060" "\204\327\275\327\275mk\000\000\000\000U\255\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\024\245\202\020\004!\020\204U\255\266\265u\255iJq\214" "\327\275\327\275\327\275\266\265\060\204\347\071IJu\265\327\275\266\265\323" "\234\266\265\327\275\327\275\327\275\327\275u\255q\214\226\265\327\275\327" "\275\323\234\212R$!ms\266\265\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\262\224\000\000\222\224\363\234\000\000\222\224\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\216s\000\000\216s\363\234\064\245u\255\226\265\266" "\265\327\275\327\275q\214\246\061u\265\327\275\327\275U\255\307\071q\214\327" "\275\226\265\347\071\357{\327\275\327\275\327\275\024\245\000\000Mk\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275Q\214\000\000\000\000\363\234\327\275\327\275\262\224\000\000\000\000\000\000\060\204\060\204" "\000\000\000\000\000\000\262\224\327\275\327\275\363\234\000\000\000\000Q\214\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275mk\000\000\323\234\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\266\265\014c\000\000\000\000" "\000\000E)U\255Q\214\000\000\262\224\327\275\327\275\327\275u\255\307\071\000\000\323" "\234\327\275Q\214\000\000\000\000\000\000\000\000\363\234\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275U\255\000\000\212RE),c\266\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275mk\000\000\064\245\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275mk\000\000\323\234\327\275\266\275\014c\000\000q\224\327\275\363" "\234\000\000mk\327\275\216s\000\000\000\000\000\000\347\071iJe)IJ\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275ms\000\000\040\000\266\265\327\275\327\275" "\327\275\060\204\000\000\000\000\000\000\000\000\000\000\000\000\060\204\256s\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327\275Mk\000\000\262\234\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\216s\000\000,cu\265\313" "Z\000\000U\255Q\214\000\000q\214\327\275\327\275\266\265\252Z\000\000\060\204\327\275" "\363\234\000\000\347\071\024\245\222\224\000\000\024\245\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\064\245\040\000\000\000Mk\266\265\216" "se)(B\010B\004!q\214\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\252R\206\061\266\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275Q\214\000\000\020\204\327\275\357\203\000\000Mk\327\275\327\275q\224\000" "\000q\224\327\275\357{\000\000\000\000\000\000\000\000iJ\020\204\064\245\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\313Z\000\000\246\061\327\275\327" "\275\327\275\327\275\327\275\060\204\000\000\000\000\000\000\000\000\060\204\327\275\000\000\000" "\000\000\000\327\275\222\224q\214\000\000\000\000\363\234\252Za\010\323\234\327\275\327" "\275\327\275\363\244\242\020\000\000\014cq\214u\255\327\275\327\275\327\275\327" "\275\323\234\000\000\252R\266\265\327\275\252R\303\030\266\275\363\234\000\000\317" "{\327\275\327\275\060\204\000\000\317{\327\275\266\275iJ\303\030U\255\024\245\010" "B,c\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\262\224\303\030IJ\000\000\256s\327\275\357{a\010\000\000\000\000e)\024\245\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275e)\000\000\000\000\000\000\000\000\000" "\000\303\030\222\224\327\275\327\275\226\265\004!\246\061\060\204\000\000\014c\266\265" "\327\275\327\275\357{\000\000U\255\327\275\327\275\226\265E)$!u\255\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\313Z\000\000\246\061\327\275\327\275\327\275\327\275\327\275\060\204\000\000\000" "\000\000\000\000\000\060\204\327\275\000\000\000\000\363\234\327\275\266\265U\255\000\000\000\000\363" "\234\252Z\000\000E)\327\275\327\275\327\275\327\275\064\245mk\303\030\000\000\000\000\014" "c\064\245\327\275\327\275iJ\303\030U\255\327\275\363\234\000\000IJ\327\275\266" "\265\303\030iJ\327\275U\255\303\030iJ\266\265\327\275\064\245\000\000\307\071\252" "R\000\000\256s\266\265\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275U\255\202\020\353b\266\265Mk\000\000\262\224\327\275\256{\000\000\323\234" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\226\265\000\000\000\000\000\000\000\000$!iJMk\064\245\327\275\327\275\327\275\060\204\000\000" "\000\000,c\266\265\327\275\327\275\327\275\014c\303\030\266\275\327\275\327\275" "U\255\000\000\014c\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275ms\000\000\040\000\266\265\327\275\327\275\327" "\275\060\204\000\000\000\000\000\000\000\000\000\000\000\000\060\204\000\000\000\000\363\234\266\265\064\245" "\226\265\000\000\000\000\363\234\252Z\000\000\000\000\327\275\327\275\327\275\327\275\327" "\275\327\275\226\265\262\224Mka\010\303\030U\255\064\245\000\000\216s\327\275U\255" "\246\061\000\000\313Z\327\275\327\275Mk\000\000U\255\014ca\010\064\245\327\275\327\275" "\262\224\000\000E)\256{\024\245\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\357{\000\000\323\234\327\275u\255\246\061\303" "\030\216s\000\000\020\204\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\024\245\000\000,c\064\255\226\265\327\275\327\275\327" "\275\327\275\327\275\327\275\266\265,c\000\000\000\000\323\234\327\275\327\275\327" "\275\327\275\307\071\010B\327\275\327\275\327\275\262\224\000\000\060\204\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275Q\214\000\000\000\000\363\234\327\275\327\275\262\224\000\000\000\000\000\000" "\060\204\060\204\000\000\000\000\000\000\000\000\000\000\256s\357{\014c\014c\317{\317{Q\214\307\071" "\000\000\000\000\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275Mk\000\000\323\234\222\224\000\000\060\204\024\245\347\071\252R\313ZIJ\327\275" "\327\275\262\234\000\000\014c\000\000\256{\327\275\327\275\327\275\323\234\000\000Mk\266" "\265u\265\363\234Mk\014c\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\256s\000\000\256s\226\265\226\265q\214\000\000\000\000\010BU\255\226\265\226\265" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\222\224" "\000\000\222\224\327\275\327\275\327\275\327\275\327\275\327\275\327\275\266" "\265,c\000\000\256{E)\303\030\262\224\327\275\327\275\266\265\000\000IJ\327\275\327" "\275\327\275\020\204\000\000\323\234\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\064\255\000\000\000\000mk\327" "\275\327\275\060\204\000\000\000\000\060\204\327\275\327\275\060\204\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\327\275\327\275\327\275\327\275" "\327\275\266\265U\255q\214\252R\000\000\212R\266\265\262\224\000\000\000\000\000\000(Bu\255" "mk\000\000\323\234\327\275\266\265\004!\000\000E)\226\265\327\275\327\275\327\275\226" "\265E)\000\000\000\000\000\000\000\000\206\061\024\245\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\363\234\000\000\000\000\000\000\000\000\000\000\040\000\004!\000\000\000\000\000\000\357" "{\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\317{\000" "\000\363\244u\265\024\245Q\214mk\246\061\357{\327\275\357{\000\000\216s\327\275\363" "\234\303\030\000\000ms\327\275\226\265\000\000e)\327\275\327\275\327\275\256{\000\000" "\222\224u\265\357{\252R\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\252Z\000\000\000\000\024\245\327\275\266\265\060\204\262" "\224\327\275\327\275\327\275\327\275\262\224\060\204\000\000\000\000\000\000\363\234\226" "\265u\255\327\275\327\275\327\275\327\275q\214\000\000\327\275\327\275\024\245" "\202\020\000\000\000\000\000\000\000\000\202\020\317{\226\265\327\275\266\265\014ce)\216s\226" "\265\327\275\363\234e)\020\204\327\275\327\275\014c\000\000Q\214\327\275\327\275" "\327\275\327\275\327\275\363\244\212R\004!iJ\020\204\226\265\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\222\224iJ\303\030" "\347\071\216s\064\245U\255mke)IJU\255\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275iJ\000\000\000\000\000\000\000\000\000\000\000\000\000\000\212R\226\265\242\020" "E)\226\265\327\275\327\275\024\245IJ\313Z\327\275\327\275\313Z\353b\327\275" "\327\275\327\275Q\214\000\000\000\000\000\000\000\000\222\224\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\024\245\000\000\000\000\307\071" "u\255\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\000\000\000\000\000\000\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\222\224\000\000\327\275\327\275U\255IJ\242\020\246\061\353bQ\214u\255\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275U\255Q\214\266\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\256s\343\030(B\256{\262\224U\255\266\265\327\275\327\275\266\265\212R\060" "\204\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\226\265\014c$)\313Z\363\234\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\317{\000\000\000\000\307\071\024\245\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\000\000\000\000\000\000\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\222\224\000\000\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\266\265,c\000\000\000\000\000\000mk\363\234\266\265\327" "\275\327\275\266\265\363\234mk\000\000\000\000\000\000\266\275\327\275\327\275\327\275" "\327\275\327\275\327\275\222\224\000\000\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\266\265\317{\000\000\000\000\000\000\000\000\040\000\246" "\061\246\061\040\000\000\000\000\000\000\000\303\030\000\000\266\265\327\275\327\275\327\275\327" "\275\327\275\327\275\222\224\000\000\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\024\245\252Z\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\246\061\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\064\255Q\214ms\313Z\313ZmsQ\214\064\255\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\064\255Q\214\216s\313Z\313Z\216sQ\214U\255\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\024\245\313Z\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\313Z\024\245\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\266\265\317{\000\000\000\000\000\000\000\000\040\000\206\061\206\061" "\040\000\000\000\000\000\000\000\000\000\317{\266\265\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\266\265Mk\000\000\000\000\000\000mk\363\234\266\265\327\275\327\275" "\266\265\363\234mk\000\000\000\000\000\000Mk\266\265\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\317{\000\000\000\000\307\071\024\245\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\024\245\307\071\000\000\000\000\317{\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275U\255\010B\010B\226\265\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\024\245\000\000\000\000\307\071u\255\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275U\255\307\071\000\000\000\000\024\245\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275U\255\347\071\014c\266\265\327\275\327\275q\224\347\071" "\266\265\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\252Z\000\000\000\000\024\245\327\275\266\265\060\204\262\224\327\275" "\327\275\327\275\327\275\262\224\060\204\266\265\327\275\024\245\000\000\000\000\313" "Z\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\226\265\363\234\060\204,c\307\071a\010\060\204\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\313Z\000\000u\255\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\064\255" "\000\000\000\000mk\327\275\327\275\060\204\000\000\000\000\060\204\327\275\327\275\060\204\000" "\000\000\000\060\204\327\275\327\275mk\000\000\000\000U\255\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\014c\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000Q\214\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\266\265" "\303\030\246\061\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275Q\214\000\000\000\000\363\234\327\275\327\275\262\224\000\000\000\000" "\000\000\060\204\060\204\000\000\000\000\000\000\262\224\327\275\327\275\363\234\000\000\000\000Q\214" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\216s\000\000\216s\363\234\064\245u\255\226\265\266\265\327\275\327\275q\214\246" "\061u\265\327\275\327\275U\255\307\071q\214\327\275\226\265\347\071\357{\327" "\275\327\275\327\275\024\245\000\000Mk\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275ms\000\000\040\000\266\265\327\275\327\275" "\327\275\060\204\000\000\000\000\000\000\000\000\000\000\000\000\060\204\327\275\327\275\327\275\266" "\265\040\000\000\000\216s\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275mk\000\000\064\245\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275mk\000\000\323\234\327\275\266\275\014c\000\000q\224\327\275\363\234\000" "\000mk\327\275\216s\000\000\000\000\000\000\347\071iJe)IJ\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\313Z\000\000\246\061\327\275\327\275\327\275\327\275" "\327\275\060\204\000\000\000\000\000\000\000\000\060\204\327\275\327\275\327\275\327\275\327" "\275\206\061\000\000\313Z\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\252R\206\061\266\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275Q\214\000\000\020\204\327\275\357\203\000\000Mk\327\275\327" "\275q\224\000\000q\224\327\275\357{\000\000\000\000\000\000\000\000iJ\020\204\064\245\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\313Z\000\000\246\061\327\275\327" "\275\327\275\327\275\327\275\060\204\000\000\000\000\000\000\000\000\060\204\327\275\327\275" "\327\275\327\275\327\275\206\061\000\000\313Z\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275e)\000\000\000\000\000\000\000\000\000\000\303\030\222" "\224\327\275\327\275\226\265\004!\246\061\060\204\000\000\014c\266\265\327\275\327" "\275\357{\000\000U\255\327\275\327\275\226\265E)$!u\255\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275ms\000\000\040\000\266\265" "\327\275\327\275\327\275\060\204\000\000\000\000\000\000\000\000\000\000\000\000\060\204\327\275\327" "\275\327\275\266\265\040\000\000\000\216s\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\226\265\000\000\000\000\000\000\000\000$!iJMk\064\245\327\275\327" "\275\327\275\060\204\000\000\000\000,c\266\265\327\275\327\275\327\275\014c\303\030" "\266\275\327\275\327\275U\255\000\000\014c\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275Q\214\000\000\000\000\363\234" "\327\275\327\275\262\224\000\000\000\000\000\000\060\204\060\204\000\000\000\000\000\000\262\224\327" "\275\327\275\363\234\000\000\000\000Q\214\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\024\245\000\000,c\064\255\226\265\327\275\327\275\327" "\275\327\275\327\275\327\275\266\265,c\000\000\000\000\323\234\327\275\327\275\327" "\275\327\275\307\071\010B\327\275\327\275\327\275\262\224\000\000\060\204\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\064\255\000\000\000\000mk\327\275\327\275\060\204\000\000\000\000\060\204\327\275\327" "\275\060\204\000\000\000\000\060\204\327\275\327\275mk\000\000\000\000\064\255\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\222\224\000\000\222\224\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\266\265,c\000\000\256{E" ")\303\030\262\224\327\275\327\275\266\265\000\000IJ\327\275\327\275\327\275\020" "\204\000\000\323\234\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\252Z\000\000\000\000\024\245\327\275\266" "\265\060\204\262\224\327\275\327\275\327\275\327\275\262\224\060\204\266\265" "\327\275\024\245\000\000\000\000\313Z\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\317{\000\000\363\244u\265\024\245Q\214mk\246\061\357" "{\327\275\357{\000\000\216s\327\275\363\234\303\030\000\000ms\327\275\226\265\000\000" "e)\327\275\327\275\327\275\256{\000\000\222\224u\265\357{\252R\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\024\245\000\000\000\000\307" "\071u\255\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275u\255\307\071\000\000\000\000\024\245\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275iJ\000\000\000\000\000\000\000\000\000\000\000\000\000\000\212" "R\226\265\242\020E)\226\265\327\275\327\275\024\245IJ\313Z\327\275\327\275" "\313Z\353b\327\275\327\275\327\275Q\214\000\000\000\000\000\000\000\000\222\224\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\317" "{\000\000\000\000\307\071\024\245\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\024\245\307\071\000\000\000\000\317{\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\256s\343\030(B\256{\262\224U" "\255\266\265\327\275\327\275\266\265\212R\060\204\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\226\265\014c$)\313Z\363\234\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\266\265,c\000\000\000\000\000\000mk" "\363\234\266\265\327\275\327\275\266\265\363\234mk\000\000\000\000\000\000Mk\266\265" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\266\265\317{\000\000" "\000\000\000\000\000\000\040\000\246\061\246\061\040\000\000\000\000\000\000\000\000\000\317{\266\265\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\024\245\252Z\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\252Z\024\245\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\064\255Q\214ms\313Z\313ZmsQ\214\064\255\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\266\265\064\245\323\234" "\323\234\064\245\266\265\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\323\234,c\040\000\000\000\000\000\000\000\000\000\040\000,c\323\234\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "U\255\313Z\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\313ZU\255\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\024\245$!\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000$!\024\245\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\064\245$!\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000$!\064\245\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275U\255" "\010B\010B\226\265\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\266\265" "(B\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000(B\266" "\265\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\266\275\222\224\252R\004!\212R\064\255" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275q\224\347\071\266\265\327\275\327" "\275\327\275U\255\347\071\014c\266\265\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275Q\214\000\000\000\000\000\000\000\000\000\000\000\000\060\204\353Z\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000Q\214\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275u\265\252Z\000\000\000\000\000\000\000" "\000\212R\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\313Z\000\000u\255\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\266\265\246\061\000\000\000\000\000\000\000\000\000\000\000\000\262\224\327\275q\214$!\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\246\061\266\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275u\255IJ\000\000IJ\323\234" "\226\265\303\030\040\000\266\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\266\265\303\030\246\061" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\363\234\000\000\000\000\000\000\000\000\000\000\000\000\000\000\262" "\224\327\275\327\275U\255\353Z\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\363\234\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\266" "\265\212R\000\000\353b\266\265\327\275\226\265\000\000E)\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\024\245\000\000Mk\327\275\327\275\327\275\226\265\347\071\357{\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\323\234\212R$!ms\266\265" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\060\204\000\000\000\000\000\000\000\000\000\000\000\000\000\000\262\224" "\327\275\327\275\327\275\327\275q\214$!\000\000\000\000\000\000\000\000\000\000\000\000\060\204\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\020\204" "\000\000\252R\266\265\327\275\327\275\226\265\307\071q\214\327\275\327\275\327" "\275\222\224iJ\343\030\353ZU\255\327\275\327\275Q\214\010B\266\265u\265,cE" ")\317{\327\275\327\275\327\275\216s\000\000\000\000\000\000\347\071iJe)IJ\363\234\000\000" "mk\327\275\327\275Q\214\010B\266\265u\265,cE)\317{\327\275\327\275\327\275" "\327\275U\255\246\061Q\214\327\275\327\275u\255\307\071\323\234\327\275\327" "\275\327\275Q\214\000\000\000\000\000\000\000\000\363\234\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\317{\000\000\000\000\000\000\000\000\000\000\000\000\000\000\262\224\327\275\327\275\327\275\327\275" "\327\275u\255\353Z\000\000\000\000\000\000\000\000\000\000\317{\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275U\255\202\020$!U\255\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\060\204\000\000\000\000\000\000\000\000iR\266\275" "\327\275\252R\000\000U\255iJ\000\000\000\000\000\000\024\245\327\275\327\275\357{\000\000\000\000" "\000\000\000\000iJ\020\204\064\245q\224\000\000q\224\327\275\327\275\252R\000\000U\255iJ\000" "\000\000\000\000\000\024\245\327\275\327\275\327\275\222\224\000\000\060\204\327\275\327" "\275\060\204\000\000\262\234\327\275\327\275\363\234\000\000\347\071\024\245\222\224" "\000\000\024\245\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\256s\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\262\224\327\275\327\275\327\275\327\275\327\275\327\275U\255\206\061\000\000" "\000\000\000\000\000\000\256s\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\317{\000\000\020\204\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\024\245\000\000\307\071\064\245\226\265\252R\000\000\024\245\327\275" "iJ\242\020\020\204\000\000q\214q\214\000\000\060\204\327\275\327\275\327\275\226\265" "E)$!u\255\327\275\327\275\327\275\357{\000\000U\255\327\275\327\275iJ\242\020" "\020\204\000\000q\214q\214\000\000\060\204\327\275\327\275\327\275\256s\000\000U\255\327" "\275\327\275IJ\000\000u\255\327\275\266\275iJ\303\030U\255\024\245\010B,c\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\317{\000\000\000\000\000\000\000\000\000\000\000\000\000\000\262\224" "\327\275\327\275\327\275\327\275\327\275Q\214\004!\000\000\000\000\000\000\000\000\000\000\317" "{\327\275\327\275\327\275\327\275\327\275\327\275\327\275\266\275\206\061" "\040\000\226\265\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\014c\000\000\363\234\327\275\327\275Q\214\000\000\262\224\327\275\010B\010B$!\256" "s\327\275U\255\000\000\216s\327\275\327\275\327\275U\255\000\000\014c\327\275\327" "\275\327\275\327\275\014c\303\030\266\275\327\275\327\275\010B\010B$!\256s\327" "\275U\255\000\000\216s\327\275\327\275\327\275IJIJ\327\275\327\275\323\234\000" "\000\303\030\327\275\327\275\064\245\000\000\307\071\252R\000\000\256s\266\265\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275q\214\000\000\000\000\000\000\000\000\000\000\000\000\000\000\262\224" "\327\275\327\275\327\275U\255\353Z\000\000\000\000\000\000\000\000\000\000\000\000\000\000q\214\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275U\255\000\000IJ\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\226\265\000\000\212R\327\275" "\327\275\327\275\317{\000\000\024\245\266\265a\010\000\000\347\071\226\265\327\275\226" "\265\000\000\313Z\327\275\327\275\327\275\262\224\000\000\060\204\327\275\327\275" "\327\275\327\275\307\071\010B\327\275\327\275\266\265a\010\000\000\347\071\226\265" "\327\275\226\265\000\000\313Z\327\275\327\275\226\265\000\000\256{\327\275u\255\206" "\061\303\030\246\061\327\275\327\275\262\224\000\000E)\256{\024\245\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275U\255\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\262\224\327\275\327\275Q\214\004!\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000U\255\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\064\255\000\000\010B\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\024\245\000\000\216s" "\327\275\327\275U\255\004!IJ\266\275U\255\000\000\000\000\262\234\327\275\327\275\327" "\275E)\343\030u\265\226\265\327\275\020\204\000\000\323\234\327\275\327\275\327" "\275\266\265\000\000IJ\327\275\327\275U\255\000\000\000\000\262\234\327\275\327\275\327" "\275E)\343\030u\265\226\265U\255\000\000\256s\064\245(B\010B\256{\343\030\266\275" "\327\275\323\234\000\000Mk\266\265u\265\363\234Mk\014c\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\252R\000\000\000\000\000\000\000\000\000\000\000\000\262\224U\255\353Z\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\252R\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\266\265\303\030\000\000\060\204\226\265\226\265\024\245\020" "\204IJ\020\204\327\275\064\245\000\000iJ\266\265\363\234\307\071\040\000\323\234\327" "\275\363\234\000\000\212R\327\275\327\275\327\275\327\275\014c\000\000\000\000Q\214\327" "\275\256{\000\000\222\224u\265\357{\252R\226\265\000\000e)\327\275\327\275\363\234" "\000\000\212R\327\275\327\275\327\275\327\275\014c\000\000\000\000Q\214\266\265\303\030" "\000\000\000\000\004!\024\245q\224\000\000\363\234\327\275\226\265E)\000\000\000\000\000\000\000\000\206" "\061\024\245\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\363\234\000\000\000\000\000\000\000\000" "\000\000\000\000,c$!\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\363\234\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\060\204\000\000\000" "\000\000\000\000\000\000\000\000\000,c\226\265\327\275\266\265\010B\000\000\000\000\000\000\000\000Q\214\327" "\275\327\275U\255\246\061\323\234\327\275\327\275\327\275\327\275\024\245\246" "\061\353Z\226\265\327\275Q\214\000\000\000\000\000\000\000\000\222\224\327\275\313Z\353b\327" "\275\327\275U\255\246\061\323\234\327\275\327\275\327\275\327\275\024\245\246" "\061\353Z\226\265\327\275\222\224\206\061\313Z\064\245\327\275u\265\010B\357" "\203\327\275\327\275\363\244\212R\004!iJ\020\204\226\265\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275mk\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000mk\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\262\234\252Z$!(B\216s\024" "\245\327\275\327\275\327\275\327\275\064\255\252Z\004!\313Z\363\234\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\226\265\014c$)\313Z\363\234\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\266\265\252R\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\252R\266\265\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\226\265\014c\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\014c\226\265\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275q\214\206\061\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\206\061q\214\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275" "\327\275\327\275\327\275\327\275\327\275\327\275\266\265\222\224Mk\010B\000" "\000\000\000\010BMk\222\224\266\265\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327\275\327" "\275\327\275\327\275\327\275\327\275\327\275", };
80.865908
149
0.694316
bded10b665cae00375e9c09c1483457981c9942f
162
h
C
Foreman/SafeGroupView.h
flyingmachine/foreman
008b4f3de77315360e493b1ae7594f42561e11f4
[ "MIT" ]
5
2015-08-03T15:46:23.000Z
2018-12-07T22:04:13.000Z
Foreman/SafeGroupView.h
flyingmachine/foreman
008b4f3de77315360e493b1ae7594f42561e11f4
[ "MIT" ]
null
null
null
Foreman/SafeGroupView.h
flyingmachine/foreman
008b4f3de77315360e493b1ae7594f42561e11f4
[ "MIT" ]
null
null
null
#import <Cocoa/Cocoa.h> @class SafeGroupViewController; @interface SafeGroupView : NSView @property (strong) IBOutlet SafeGroupViewController* controller; @end
20.25
64
0.808642
bdeda7086acfbba086c61b0e3f0d0fa92f787fdd
1,099
h
C
external/GTEngine/Include/GTLowLevel.h
yushuiqiang/geometry3cpp
2727986b89da2d40ffbd0dddb6947183c8bf68b0
[ "BSL-1.0" ]
1
2021-02-18T10:25:42.000Z
2021-02-18T10:25:42.000Z
external/GTEngine/Include/GTLowLevel.h
yushuiqiang/geometry3cpp
2727986b89da2d40ffbd0dddb6947183c8bf68b0
[ "BSL-1.0" ]
null
null
null
external/GTEngine/Include/GTLowLevel.h
yushuiqiang/geometry3cpp
2727986b89da2d40ffbd0dddb6947183c8bf68b0
[ "BSL-1.0" ]
null
null
null
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2018 // Distributed under the Boost Software License, Version 1.0. // http://www.boost.org/LICENSE_1_0.txt // http://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // File Version: 3.0.0 (2016/06/19) #pragma once // DataTypes #include <LowLevel/GteArray2.h> #include <LowLevel/GteArray3.h> #include <LowLevel/GteArray4.h> #include <LowLevel/GteAtomicMinMax.h> #include <LowLevel/GteComputeModel.h> #include <LowLevel/GteLexicoArray2.h> #include <LowLevel/GteMinHeap.h> #include <LowLevel/GteRangeIteration.h> #include <LowLevel/GteThreadSafeMap.h> #include <LowLevel/GteThreadSafeQueue.h> #include <LowLevel/GteWrapper.h> // Logger #include <LowLevel/GteLogger.h> #include <LowLevel/GteLogReporter.h> #include <LowLevel/GteLogToFile.h> #include <LowLevel/GteLogToStdout.h> #include <LowLevel/GteLogToStringArray.h> #if defined(__MSWINDOWS__) #include <LowLevel/MSW/GteLogToMessageBox.h> #include <LowLevel/MSW/GteLogToOutputWindow.h> #endif // Timer #include <LowLevel/GteTimer.h>
30.527778
63
0.755232
bdef6e6cc23c69c511bd909d1fdaccb18193344a
1,566
h
C
larcv/app/SBNDImageMod/ApplyLabel.h
mmajewsk/larcv2
9ee74e42b293d547d3a8510fa2139b2d4ccf6b89
[ "MIT" ]
14
2017-10-19T15:08:29.000Z
2021-03-31T21:21:07.000Z
larcv/app/SBNDImageMod/ApplyLabel.h
mmajewsk/larcv2
9ee74e42b293d547d3a8510fa2139b2d4ccf6b89
[ "MIT" ]
32
2017-10-25T22:54:06.000Z
2019-10-01T13:57:15.000Z
larcv/app/SBNDImageMod/ApplyLabel.h
mmajewsk/larcv2
9ee74e42b293d547d3a8510fa2139b2d4ccf6b89
[ "MIT" ]
16
2017-12-07T12:04:40.000Z
2021-11-15T00:53:31.000Z
/** * \file ApplyLabel.h * * \ingroup ImageMod * * \brief Class def header for a class ApplyLabel * * Merge all cluster2d voxel sets into a single set if they have a common ancestor * @author cadams */ /** \addtogroup ImageMod @{*/ #ifndef __APPLYLABEL_H__ #define __APPLYLABEL_H__ #include "larcv/core/Processor/ProcessBase.h" #include "larcv/core/Processor/ProcessFactory.h" #include "larcv/core/DataFormat/Image2D.h" #include "larcv/core/DataFormat/Particle.h" #include "larcv/core/DataFormat/Voxel2D.h" namespace larcv { /** \class ProcessBase User defined class ApplyLabel ... these comments are used to generate doxygen documentation! */ class ApplyLabel : public ProcessBase { public: /// Default constructor ApplyLabel( const std::string name = "ApplyLabel"); /// Default destructor ~ApplyLabel() {} void configure(const PSet&); void initialize(); bool process(IOManager& mgr); void finalize(); private: std::string _output_producer; int _output_id; }; /** \class larcv::ApplyLabelFactory \brief A concrete factory class for larcv::ApplyLabel */ class ApplyLabelProcessFactory : public ProcessFactoryBase { public: /// ctor ApplyLabelProcessFactory() { ProcessFactory::get().add_factory("ApplyLabel", this); } /// dtor ~ApplyLabelProcessFactory() {} /// creation method ProcessBase* create(const std::string instance_name) { return new ApplyLabel(instance_name); } }; } #endif /** @} */ // end of doxygen group
18.642857
82
0.683269
bdf0b52e79b7064d8106c15182195a46e2407706
3,813
h
C
PrivateFrameworks/PhotosUICore/PXGAnchor.h
phatblat/macOSPrivateFrameworks
9047371eb80f925642c8a7c4f1e00095aec66044
[ "MIT" ]
17
2018-11-13T04:02:58.000Z
2022-01-20T09:27:13.000Z
PrivateFrameworks/PhotosUICore/PXGAnchor.h
phatblat/macOSPrivateFrameworks
9047371eb80f925642c8a7c4f1e00095aec66044
[ "MIT" ]
3
2018-04-06T02:02:27.000Z
2018-10-02T01:12:10.000Z
PrivateFrameworks/PhotosUICore/PXGAnchor.h
phatblat/macOSPrivateFrameworks
9047371eb80f925642c8a7c4f1e00095aec66044
[ "MIT" ]
1
2018-09-28T13:54:23.000Z
2018-09-28T13:54:23.000Z
// // Generated by class-dump 3.5 (64 bit). // // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. // #import "NSObject.h" #import "PXGDiagnosticsProvider.h" #import "PXGSpriteIndexReferencing.h" @class NSArray, NSDate, NSString, PXGLayout; @interface PXGAnchor : NSObject <PXGSpriteIndexReferencing, PXGDiagnosticsProvider> { struct { char visibleRectOriginForProposedVisibleRectForLayout; } _delegateRespondsTo; BOOL _needsUpdate; BOOL _autoInvalidated; id <PXGAnchorDelegate> _delegate; id _context; PXGLayout *_layout; long long _type; long long _priority; NSArray *_spriteReferences; NSArray *_spriteRects; unsigned long long _referencingOptions; unsigned long long _edges; unsigned long long _scrollPosition; NSDate *_date; NSArray *_constraints; CDUnknownBlockType _customOffset; struct CGSize _contentSize; struct CGRect _visibleRect; struct NSEdgeInsets _padding; } @property(readonly, nonatomic, getter=isAutoInvalidated) BOOL autoInvalidated; // @synthesize autoInvalidated=_autoInvalidated; @property(nonatomic) BOOL needsUpdate; // @synthesize needsUpdate=_needsUpdate; @property(copy, nonatomic) CDUnknownBlockType customOffset; // @synthesize customOffset=_customOffset; @property(copy, nonatomic) NSArray *constraints; // @synthesize constraints=_constraints; @property(retain, nonatomic) NSDate *date; // @synthesize date=_date; @property(nonatomic) unsigned long long scrollPosition; // @synthesize scrollPosition=_scrollPosition; @property(nonatomic) struct NSEdgeInsets padding; // @synthesize padding=_padding; @property(nonatomic) unsigned long long edges; // @synthesize edges=_edges; @property(nonatomic) unsigned long long referencingOptions; // @synthesize referencingOptions=_referencingOptions; @property(copy, nonatomic) NSArray *spriteRects; // @synthesize spriteRects=_spriteRects; @property(copy, nonatomic) NSArray *spriteReferences; // @synthesize spriteReferences=_spriteReferences; @property(nonatomic) struct CGSize contentSize; // @synthesize contentSize=_contentSize; @property(nonatomic) struct CGRect visibleRect; // @synthesize visibleRect=_visibleRect; @property(nonatomic) long long priority; // @synthesize priority=_priority; @property(nonatomic) long long type; // @synthesize type=_type; @property(readonly, nonatomic) __weak PXGLayout *layout; // @synthesize layout=_layout; @property(retain, nonatomic) id context; // @synthesize context=_context; @property(nonatomic) __weak id <PXGAnchorDelegate> delegate; // @synthesize delegate=_delegate; - (void).cxx_destruct; @property(readonly, copy, nonatomic) NSString *diagnosticDescription; - (void)_enumerateSpriteConstraintsUsingBlock:(CDUnknownBlockType)arg1; - (void)enumerateSpritesWithEnumerationOptions:(unsigned long long)arg1 referencingOptions:(unsigned long long)arg2 usingBlock:(CDUnknownBlockType)arg3; - (id)copyWithLayout:(id)arg1; - (void)enumerateAllSpriteReferencesUsingBlock:(CDUnknownBlockType)arg1; - (void)adjustReferencedSpriteIndexesWithChangeDetails:(id)arg1 appliedToLayout:(id)arg2; @property(readonly, nonatomic) BOOL isScrollingAnimationAnchor; - (unsigned int)anchoredSpriteIndexInLayout:(id)arg1; @property(readonly, nonatomic) BOOL shouldFaultInContentAtAnchoredContentEdges; @property(readonly, nonatomic) unsigned long long anchoredContentEdges; - (struct CGRect)adjustVisibleRect:(struct CGRect)arg1; @property(readonly, nonatomic) BOOL canBeReused; - (id)autoInvalidate; - (void)invalidate; @property(readonly, copy) NSString *description; - (id)initWithLayout:(id)arg1; - (id)init; // Remaining properties @property(readonly, copy) NSString *debugDescription; @property(readonly) unsigned long long hash; @property(readonly) Class superclass; @end
45.939759
152
0.791765
bdf1103d8a435e44b4970fa4d041e21f6fd02b08
307
h
C
openwrt-18.06/package/system/mtd/src/fis.h
bingchunjin/1806_SDK
d5ed0258fc22f60e00ec025b802d175f33da6e41
[ "MIT" ]
1,144
2018-12-18T09:46:47.000Z
2022-03-07T14:51:46.000Z
openwrt-18.06/package/system/mtd/src/fis.h
bingchunjin/1806_SDK
d5ed0258fc22f60e00ec025b802d175f33da6e41
[ "MIT" ]
40
2018-12-03T19:48:52.000Z
2021-03-10T06:34:26.000Z
openwrt-18.06/package/system/mtd/src/fis.h
bingchunjin/1806_SDK
d5ed0258fc22f60e00ec025b802d175f33da6e41
[ "MIT" ]
129
2018-12-18T09:46:50.000Z
2022-03-30T07:30:13.000Z
#ifndef __FIS_H #define __FIS_H struct fis_part { unsigned char name[16]; uint32_t offset; uint32_t loadaddr; uint32_t size; }; int fis_validate(struct fis_part *old, int n_old, struct fis_part *new, int n_new); int fis_remap(struct fis_part *old, int n_old, struct fis_part *new, int n_new); #endif
20.466667
83
0.7557
bdf2c8d8c9dbaf71820f62db80cd317f05029fe2
4,189
h
C
global_planner/include/global_planner/node.h
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
3
2019-10-13T11:47:41.000Z
2022-02-27T22:18:46.000Z
global_planner/include/global_planner/node.h
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
1
2020-08-24T03:28:49.000Z
2020-08-24T03:28:49.000Z
global_planner/include/global_planner/node.h
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
1
2019-10-12T17:07:01.000Z
2019-10-12T17:07:01.000Z
#ifndef GLOBAL_PLANNER_NODE #define GLOBAL_PLANNER_NODE #include <string> #include <unordered_set> #include "global_planner/cell.h" #include "global_planner/common.h" namespace global_planner { class Node { public: Node() = default; Node(const Cell& cell, const Cell& parent) : cell_(cell), parent_(parent) {} virtual ~Node() = default; virtual bool isEqual(const Node& other) const; virtual bool isSmaller(const Node& other) const; virtual std::size_t hash() const; virtual std::shared_ptr<Node> nextNode(const Cell& nextCell) const; virtual std::vector<std::shared_ptr<Node> > getNeighbors() const; virtual std::unordered_set<Cell> getCells() const; virtual double getLength() const; virtual double getRotation(const Node& other) const; virtual double getXYRotation(const Node& other) const; std::string asString() const; Cell cell_; Cell parent_; }; bool operator==(const Node& lhs, const Node& rhs) { return lhs.isEqual(rhs); } bool operator<(const Node& lhs, const Node& rhs) { return lhs.isSmaller(rhs); } bool operator!=(const Node& lhs, const Node& rhs) { return !operator==(lhs, rhs); } bool operator>(const Node& lhs, const Node& rhs) { return operator<(rhs, lhs); } bool operator<=(const Node& lhs, const Node& rhs) { return !operator>(lhs, rhs); } bool operator>=(const Node& lhs, const Node& rhs) { return !operator<(lhs, rhs); } typedef std::shared_ptr<Node> NodePtr; typedef std::pair<Node, double> NodeDistancePair; typedef std::pair<NodePtr, double> PointerNodeDistancePair; class CompareDist { public: bool operator()(const CellDistancePair& n1, const CellDistancePair& n2) { return n1.second > n2.second; } bool operator()(const NodeDistancePair& n1, const NodeDistancePair& n2) { return n1.second > n2.second; } bool operator()(const PointerNodeDistancePair& n1, const PointerNodeDistancePair& n2) { return n1.second > n2.second; } }; // Node that only represents 3D position, ignores parent class NodeWithoutSmooth : public Node { public: NodeWithoutSmooth() = default; NodeWithoutSmooth(const Cell& cell, const Cell& parent) : Node(cell, parent) {} ~NodeWithoutSmooth() = default; bool isEqual(const Node& other) const { return cell_ == other.cell_; } std::size_t hash() const { return std::hash<global_planner::Cell>()(cell_); } NodePtr nextNode(const Cell& nextCell) const { return NodePtr(new NodeWithoutSmooth(nextCell, cell_)); } double getRotation(const Node& other) const { return 0.0; } }; double SPEEDNODE_RADIUS = 5.0; // Node represents 3D position, orientation and speed // TODO: Needs to check the risk of Cells between cell and parent class SpeedNode : public Node { public: SpeedNode() = default; SpeedNode(const Cell& cell, const Cell& parent) : Node(cell, parent) {} ~SpeedNode() = default; NodePtr nextNode(const Cell& nextCell) const { return NodePtr(new SpeedNode(nextCell, cell_)); } std::vector<NodePtr> getNeighbors() const { std::vector<NodePtr> neighbors; Cell extrapolate_cell = (cell_ - parent_) + cell_; neighbors.push_back(nextNode(extrapolate_cell)); for (const Cell& neighborCell : extrapolate_cell.getNeighbors()) { double dist = cell_.distance3D(neighborCell); if (dist > 0 && dist < SPEEDNODE_RADIUS) { neighbors.push_back(nextNode(neighborCell)); } } return neighbors; } }; struct HashNodePtr { std::size_t operator()(const std::shared_ptr<Node>& node_ptr) const { return node_ptr->hash(); } }; struct EqualsNodePtr { std::size_t operator()(const std::shared_ptr<Node>& node_ptr1, const std::shared_ptr<Node>& node_ptr2) const { return node_ptr1->isEqual(*node_ptr2); } }; } // namespace global_planner namespace std { template <> struct hash<global_planner::Node> { std::size_t operator()(const global_planner::Node& node) const { return node.hash(); } }; template <> struct hash<global_planner::NodeWithoutSmooth> { std::size_t operator()(const global_planner::NodeWithoutSmooth& node) const { return node.hash(); } }; } // namespace std #endif // GLOBAL_PLANNER_NODE
28.889655
80
0.702316
bdf4f1b8b8fe854846bfef8993d203565c13b0a6
10,763
h
C
src/hir2mpl/common/include/feir_builder.h
venshine/OpenArkCompiler
264cd4463834356658154f0d254672ef559f245f
[ "MulanPSL-1.0" ]
2
2019-09-06T07:02:41.000Z
2019-09-09T12:24:46.000Z
src/hir2mpl/common/include/feir_builder.h
venshine/OpenArkCompiler
264cd4463834356658154f0d254672ef559f245f
[ "MulanPSL-1.0" ]
null
null
null
src/hir2mpl/common/include/feir_builder.h
venshine/OpenArkCompiler
264cd4463834356658154f0d254672ef559f245f
[ "MulanPSL-1.0" ]
null
null
null
/* * Copyright (c) [2020-2021] Huawei Technologies Co.,Ltd.All rights reserved. * * OpenArkCompiler is licensed under Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR * FIT FOR A PARTICULAR PURPOSE. * See the Mulan PSL v2 for more details. */ #ifndef HIR2MPL_INCLUDE_COMMON_FEIR_BUILDER_H #define HIR2MPL_INCLUDE_COMMON_FEIR_BUILDER_H #include <memory> #include "mir_function.h" #include "mpl_logging.h" #include "feir_var.h" #include "feir_stmt.h" namespace maple { class FEIRBuilder { public: FEIRBuilder() = default; ~FEIRBuilder() = default; // Type static UniqueFEIRType CreateType(PrimType basePty, const GStrIdx &baseNameIdx, uint32 dim); static UniqueFEIRType CreateArrayElemType(const UniqueFEIRType &arrayType); static UniqueFEIRType CreateRefType(const GStrIdx &baseNameIdx, uint32 dim); static UniqueFEIRType CreateTypeByJavaName(const std::string &typeName, bool inMpl); // Var static UniqueFEIRVar CreateVarReg(uint32 regNum, PrimType primType, bool isGlobal = false); static UniqueFEIRVar CreateVarReg(uint32 regNum, UniqueFEIRType type, bool isGlobal = false); static UniqueFEIRVar CreateVarName(GStrIdx nameIdx, PrimType primType, bool isGlobal = false, bool withType = false); static UniqueFEIRVar CreateVarName(const std::string &name, PrimType primType, bool isGlobal = false, bool withType = false); static UniqueFEIRVar CreateVarNameForC(GStrIdx nameIdx, MIRType &mirType, bool isGlobal = false, bool withType = false); static UniqueFEIRVar CreateVarNameForC(const std::string &name, MIRType &mirType, bool isGlobal = false, bool withType = false); static UniqueFEIRVar CreateVarNameForC(const std::string &name, UniqueFEIRType type, bool isGlobal = false, bool withType = false); // Expr static UniqueFEIRExpr CreateExprSizeOfType(UniqueFEIRType ty); static UniqueFEIRExpr CreateExprDRead(UniqueFEIRVar srcVar); static UniqueFEIRExpr CreateExprDReadAggField(UniqueFEIRVar srcVar, FieldID fieldID, UniqueFEIRType fieldType); static UniqueFEIRExpr CreateExprAddrofLabel(const std::string &lbName, UniqueFEIRType exprTy); static UniqueFEIRExpr CreateExprAddrofVar(UniqueFEIRVar srcVar); static UniqueFEIRExpr CreateExprAddrofFunc(const std::string &addr); static UniqueFEIRExpr CreateExprAddrofArray(UniqueFEIRType argTypeNativeArray, UniqueFEIRExpr argExprArray, std::string argArrayName, std::list<UniqueFEIRExpr> &argExprIndexs); static UniqueFEIRExpr CreateExprIRead(UniqueFEIRType returnType, UniqueFEIRType ptrType, UniqueFEIRExpr expr, FieldID id = 0); static UniqueFEIRExpr CreateExprTernary(Opcode op, UniqueFEIRType type, UniqueFEIRExpr cExpr, UniqueFEIRExpr tExpr, UniqueFEIRExpr fExpr); static UniqueFEIRExpr CreateExprConstRefNull(); static UniqueFEIRExpr CreateExprConstPtrNull(); static UniqueFEIRExpr CreateExprConstI8(int8 val); static UniqueFEIRExpr CreateExprConstI16(int16 val); static UniqueFEIRExpr CreateExprConstI32(int32 val); static UniqueFEIRExpr CreateExprConstU32(uint32 val); static UniqueFEIRExpr CreateExprConstI64(int64 val); static UniqueFEIRExpr CreateExprConstU64(uint64 val); static UniqueFEIRExpr CreateExprConstF32(float val); static UniqueFEIRExpr CreateExprConstF64(double val); static UniqueFEIRExpr CreateExprConstPtr(int64 val); static UniqueFEIRExpr CreateExprConstAnyScalar(PrimType primType, int64 val); static UniqueFEIRExpr CreateExprVdupAnyVector(PrimType primtype, int64 val); static UniqueFEIRExpr CreateExprMathUnary(Opcode op, UniqueFEIRVar var0); static UniqueFEIRExpr CreateExprMathUnary(Opcode op, UniqueFEIRExpr expr); static UniqueFEIRExpr CreateExprZeroCompare(Opcode op, UniqueFEIRExpr expr); static UniqueFEIRExpr CreateExprMathBinary(Opcode op, UniqueFEIRVar var0, UniqueFEIRVar var1); static UniqueFEIRExpr CreateExprMathBinary(Opcode op, UniqueFEIRExpr expr0, UniqueFEIRExpr expr1); static UniqueFEIRExpr CreateExprBinary(Opcode op, UniqueFEIRExpr expr0, UniqueFEIRExpr expr1); static UniqueFEIRExpr CreateExprBinary(UniqueFEIRType exprType, Opcode op, UniqueFEIRExpr expr0, UniqueFEIRExpr expr1); static UniqueFEIRExpr CreateExprSExt(UniqueFEIRVar srcVar); static UniqueFEIRExpr CreateExprSExt(UniqueFEIRExpr srcExpr, PrimType dstType); static UniqueFEIRExpr CreateExprZExt(UniqueFEIRVar srcVar); static UniqueFEIRExpr CreateExprZExt(UniqueFEIRExpr srcExpr, PrimType dstType); static UniqueFEIRExpr CreateExprCvtPrim(UniqueFEIRVar srcVar, PrimType dstType); static UniqueFEIRExpr CreateExprCvtPrim(UniqueFEIRExpr srcExpr, PrimType dstType); static UniqueFEIRExpr CreateExprCvtPrim(UniqueFEIRExpr srcExpr, PrimType srcType, PrimType dstType); static UniqueFEIRExpr CreateExprCvtPrim(Opcode argOp, UniqueFEIRExpr srcExpr, PrimType dstType); static UniqueFEIRExpr CreateExprCastPrim(UniqueFEIRExpr srcExpr, PrimType dstType); static UniqueFEIRExpr CreateExprJavaNewInstance(UniqueFEIRType type); static UniqueFEIRExpr CreateExprJavaNewInstance(UniqueFEIRType type, uint32 argTypeID); static UniqueFEIRExpr CreateExprJavaNewInstance(UniqueFEIRType type, uint32 argTypeID, bool isRcPermanent); static UniqueFEIRExpr CreateExprJavaNewArray(UniqueFEIRType type, UniqueFEIRExpr exprSize); static UniqueFEIRExpr CreateExprJavaNewArray(UniqueFEIRType type, UniqueFEIRExpr exprSize, uint32 typeID); static UniqueFEIRExpr CreateExprJavaNewArray(UniqueFEIRType type, UniqueFEIRExpr exprSize, uint32 typeID, bool isRcPermanent); static UniqueFEIRExpr CreateExprJavaArrayLength(UniqueFEIRExpr exprArray); // Stmt static UniqueFEIRStmt CreateStmtDAssign(UniqueFEIRVar dstVar, UniqueFEIRExpr srcExpr, bool hasException = false); static UniqueFEIRStmt CreateStmtDAssignAggField(UniqueFEIRVar dstVar, UniqueFEIRExpr srcExpr, FieldID fieldID); static UniqueFEIRStmt CreateStmtIAssign(UniqueFEIRType dstType, UniqueFEIRExpr dstExpr, UniqueFEIRExpr srcExpr, FieldID fieldID = 0); static UniqueFEIRStmt CreateStmtGoto(uint32 targetLabelIdx); static UniqueFEIRStmt CreateStmtGoto(const std::string &labelName); static UniqueFEIRStmt CreateStmtIGoto(UniqueFEIRExpr targetExpr); static UniqueFEIRStmt CreateStmtCondGoto(uint32 targetLabelIdx, Opcode op, UniqueFEIRExpr expr); static UniqueFEIRStmt CreateStmtSwitch(UniqueFEIRExpr expr); static UniqueFEIRStmt CreateStmtIfWithoutElse(UniqueFEIRExpr cond, std::list<UniqueFEIRStmt> &thenStmts); static UniqueFEIRStmt CreateStmtIf(UniqueFEIRExpr cond, std::list<UniqueFEIRStmt> &thenStmts, std::list<UniqueFEIRStmt> &elseStmts); static UniqueFEIRStmt CreateStmtJavaConstClass(UniqueFEIRVar dstVar, UniqueFEIRType type); static UniqueFEIRStmt CreateStmtJavaConstString(UniqueFEIRVar dstVar, const std::string &strVal); static UniqueFEIRStmt CreateStmtJavaCheckCast(UniqueFEIRVar dstVar, UniqueFEIRVar srcVar, UniqueFEIRType type); static UniqueFEIRStmt CreateStmtJavaCheckCast(UniqueFEIRVar dstVar, UniqueFEIRVar srcVar, UniqueFEIRType type, uint32 argTypeID); static UniqueFEIRStmt CreateStmtJavaInstanceOf(UniqueFEIRVar dstVar, UniqueFEIRVar srcVar, UniqueFEIRType type); static UniqueFEIRStmt CreateStmtJavaInstanceOf(UniqueFEIRVar dstVar, UniqueFEIRVar srcVar, UniqueFEIRType type, uint32 argTypeID); static UniqueFEIRStmt CreateStmtJavaFillArrayData(UniqueFEIRVar argVar, const int8 *arrayData, uint32 size, const std::string &arrayName); static std::list<UniqueFEIRStmt> CreateStmtArrayStore(UniqueFEIRVar varElem, UniqueFEIRVar varArray, UniqueFEIRVar varIndex); static UniqueFEIRStmt CreateStmtArrayStoreOneStmt(UniqueFEIRVar varElem, UniqueFEIRVar varArray, UniqueFEIRExpr exprIndex); static UniqueFEIRStmt CreateStmtArrayStoreOneStmtForC(UniqueFEIRExpr exprElem, UniqueFEIRExpr exprArray, UniqueFEIRExpr exprIndex, UniqueFEIRType arrayType); static UniqueFEIRStmt CreateStmtArrayStoreOneStmtForC(UniqueFEIRExpr exprElem, UniqueFEIRExpr exprArray, UniqueFEIRExpr exprIndex, UniqueFEIRType arrayType, const std::string &argArrayName); static UniqueFEIRStmt CreateStmtArrayStoreOneStmtForC(UniqueFEIRExpr exprElem, UniqueFEIRExpr exprArray, std::list<UniqueFEIRExpr> exprIndexs, UniqueFEIRType arrayType, const std::string &argArrayName); static UniqueFEIRStmt CreateStmtArrayStoreOneStmtForC(UniqueFEIRExpr exprElem, UniqueFEIRExpr exprArray, UniqueFEIRExpr exprIndex, UniqueFEIRType arrayType, UniqueFEIRType elemType, const std::string &argArrayName); static std::list<UniqueFEIRStmt> CreateStmtArrayLoad(UniqueFEIRVar varElem, UniqueFEIRVar varArray, UniqueFEIRVar varIndex); static UniqueFEIRStmt CreateStmtArrayLength(UniqueFEIRVar varLength, UniqueFEIRVar varArray); static UniqueFEIRStmt CreateStmtRetype(UniqueFEIRVar varDst, const UniqueFEIRVar &varSrc); static UniqueFEIRStmt CreateStmtComment(const std::string &comment); static UniqueFEIRExpr ReadExprField(UniqueFEIRExpr expr, FieldID fieldID, UniqueFEIRType fieldType); static UniqueFEIRStmt AssginStmtField(const UniqueFEIRExpr &addrExpr, UniqueFEIRExpr srcExpr, FieldID fieldID); static bool IsZeroConstExpr(const UniqueFEIRExpr &expr); }; // class FEIRBuilder } // namespace maple #endif // HIR2MPL_INCLUDE_COMMON_FEIR_BUILDER_H
72.722973
115
0.73158
bdf5e1e7740ff0aa21fc785217cda268ea84adaa
920
h
C
src/main/cpp/Simulation/Properties/script_loader.h
JamesTerm/FRC2019
2794d3cc4f2b4702c59e402904db2f4cdc2ab68d
[ "BSD-3-Clause" ]
1
2021-11-12T04:34:31.000Z
2021-11-12T04:34:31.000Z
src/main/cpp/Simulation/Properties/script_loader.h
JamesTerm/FRC2019
2794d3cc4f2b4702c59e402904db2f4cdc2ab68d
[ "BSD-3-Clause" ]
null
null
null
src/main/cpp/Simulation/Properties/script_loader.h
JamesTerm/FRC2019
2794d3cc4f2b4702c59e402904db2f4cdc2ab68d
[ "BSD-3-Clause" ]
null
null
null
#pragma once #include <memory> #include "../Base/AssetManager.h" #pragma region _description_ //This is similar to an interface in that the script loader implementation can be whatever, but to keep things simple //it is wrapped per usual, so that limits to only one script loader to be used (which is good) as there needn't be any //complexity on interfacing here. For the sake of testing multiple assemblies, use a dispatch implementation which //can call the appropriate loader, but for the real robot code none of that will be necessary, and in either case this //file needn't change #pragma endregion namespace properties { class script_loader_impl; class script_loader { public: script_loader(); //The launcher will pass its empty database to be filled through this method void load_script(Framework::Base::asset_manager &assets); private: std::shared_ptr<script_loader_impl> m_script_loader; }; }
35.384615
118
0.778261
bdf7456e10307ac8a260fc30e391bce5a3a1b4ef
6,444
c
C
projects/driver_controls_center_console/src/main.c
uw-midsun/project-template
a4e8093b3ce453e88f8eb2bceb5318e02afbc0ba
[ "MIT" ]
14
2017-09-15T01:02:34.000Z
2020-05-26T16:12:41.000Z
projects/driver_controls_center_console/src/main.c
uw-midsun/firmware
a4e8093b3ce453e88f8eb2bceb5318e02afbc0ba
[ "MIT" ]
158
2016-10-09T15:21:53.000Z
2019-06-28T01:47:19.000Z
projects/driver_controls_center_console/src/main.c
uw-midsun/firmware
a4e8093b3ce453e88f8eb2bceb5318e02afbc0ba
[ "MIT" ]
9
2017-01-05T23:37:30.000Z
2021-06-10T21:45:06.000Z
#include <stdbool.h> #include "center_console_event.h" #include "config.h" #include "adc.h" #include "bps_indicator.h" #include "button_led.h" #include "button_led_radio.h" #include "center_console.h" #include "gpio.h" #include "gpio_expander.h" #include "gpio_it.h" #include "i2c.h" #include "interrupt.h" #include "soft_timer.h" #include "status.h" #include "wait.h" #include "can.h" #include "can_msg_defs.h" #include "can_transmit.h" #include "can_unpack.h" static CanStorage s_can_storage = { 0 }; static GpioExpanderStorage s_expander = { 0 }; #if defined(CENTER_CONSOLE_FLAG_ENABLE_5V_MONITOR) #define CENTER_CONSOLE_5V_RAIL_MONITOR_PERIOD_MILLIS 100 static void prv_adc_monitor(SoftTimerId timer_id, void *context) { uint16_t *rail_monitor_5v = context; GpioAddress monitor_5v = CENTER_CONSOLE_CONFIG_PIN_5V_MONITOR; AdcChannel adc_channel_5v_monitor = NUM_ADC_CHANNELS; adc_get_channel(monitor_5v, &adc_channel_5v_monitor); adc_read_converted(adc_channel_5v_monitor, rail_monitor_5v); // TODO(ELEC-637): Any logic here to monitor 5V rail and raise appropriate // event? soft_timer_start_millis(CENTER_CONSOLE_5V_RAIL_MONITOR_PERIOD_MILLIS, prv_adc_monitor, context, NULL); } #endif int main() { // Standard module inits gpio_init(); interrupt_init(); gpio_it_init(); soft_timer_init(); event_queue_init(); // CAN initialization const CanSettings can_settings = { .device_id = SYSTEM_CAN_DEVICE_DRIVER_CONTROLS_CENTER_CONSOLE, .bitrate = CAN_HW_BITRATE_500KBPS, .rx_event = CENTER_CONSOLE_EVENT_CAN_RX, .tx_event = CENTER_CONSOLE_EVENT_CAN_TX, .fault_event = CENTER_CONSOLE_EVENT_CAN_FAULT, .tx = CENTER_CONSOLE_CONFIG_PIN_CAN_TX, .rx = CENTER_CONSOLE_CONFIG_PIN_CAN_RX, }; can_init(&s_can_storage, &can_settings); // Use I/O Expander for button LEDs I2CSettings settings = { .speed = I2C_SPEED_FAST, // .sda = CENTER_CONSOLE_CONFIG_PIN_I2C_SDA, // .scl = CENTER_CONSOLE_CONFIG_PIN_I2C_SDL, // }; i2c_init(I2C_PORT_2, &settings); // Configure the expander to be output only gpio_expander_init(&s_expander, I2C_PORT_2, GPIO_EXPANDER_ADDRESS_0, NULL); // Initialize normal toggle buttons ButtonLedGpioExpanderPins expander_pins = { .bps_indicator = CENTER_CONSOLE_CONFIG_GPIO_EXPANDER_LED_BPS, .power_indicator = CENTER_CONSOLE_CONFIG_GPIO_EXPANDER_LED_POWER, .lights_drl = CENTER_CONSOLE_CONFIG_GPIO_EXPANDER_LED_DRL, .lights_low_beams = CENTER_CONSOLE_CONFIG_GPIO_EXPANDER_LED_LOW_BEAMS, .lights_hazards = CENTER_CONSOLE_CONFIG_GPIO_EXPANDER_LED_HAZARDS, }; button_led_init(&s_expander, &expander_pins); // Initialize radio button groups ButtonLedRadioSettings radio_settings = { .reverse_pin = CENTER_CONSOLE_CONFIG_GPIO_EXPANDER_LED_REVERSE, .neutral_pin = CENTER_CONSOLE_CONFIG_GPIO_EXPANDER_LED_NEUTRAL, .drive_pin = CENTER_CONSOLE_CONFIG_GPIO_EXPANDER_LED_DRIVE, }; button_led_radio_init(&s_expander, &radio_settings); // Initialize Center Console CenterConsoleStorage cc_storage = { .momentary_switch_lights_low_beam = { .pin_address = CENTER_CONSOLE_CONFIG_PIN_LOW_BEAM, .can_event = EE_CENTER_CONSOLE_DIGITAL_INPUT_LOW_BEAM, }, .momentary_switch_lights_drl = { .pin_address = CENTER_CONSOLE_CONFIG_PIN_DRL, .can_event = EE_CENTER_CONSOLE_DIGITAL_INPUT_DRL, }, .toggle_switch_lights_hazards = { .pin_address = CENTER_CONSOLE_CONFIG_PIN_HAZARDS, .can_event = EE_CENTER_CONSOLE_DIGITAL_INPUT_HAZARDS, }, .radio_button_drive = { .pin_address = CENTER_CONSOLE_CONFIG_PIN_DRIVE, .can_event = EE_CENTER_CONSOLE_DIGITAL_INPUT_DRIVE, }, .radio_button_neutral = { .pin_address = CENTER_CONSOLE_CONFIG_PIN_NEUTRAL, .can_event = EE_CENTER_CONSOLE_DIGITAL_INPUT_NEUTRAL, }, .radio_button_reverse = { .pin_address = CENTER_CONSOLE_CONFIG_PIN_REVERSE, .can_event = EE_CENTER_CONSOLE_DIGITAL_INPUT_REVERSE, }, .toggle_switch_power = { .pin_address = CENTER_CONSOLE_CONFIG_PIN_POWER, .can_event = EE_CENTER_CONSOLE_DIGITAL_INPUT_POWER, }, }; status_ok_or_return(center_console_init(&cc_storage)); status_ok_or_return(bps_indicator_init()); #if defined(CENTER_CONSOLE_FLAG_ENABLE_5V_MONITOR) // Enable 5V monitor const GpioSettings adc_input_settings = { .direction = GPIO_DIR_IN, // .state = GPIO_STATE_LOW, // .resistor = GPIO_RES_NONE, // .alt_function = GPIO_ALTFN_ANALOG, // }; GpioAddress monitor_5v = CENTER_CONSOLE_CONFIG_PIN_5V_MONITOR; status_ok_or_return(gpio_init_pin(&monitor_5v, &adc_input_settings)); AdcChannel adc_channel_5v_monitor = NUM_ADC_CHANNELS; adc_init(ADC_MODE_SINGLE); uint16_t rail_monitor_5v = 0u; status_ok_or_return(adc_get_channel(monitor_5v, &adc_channel_5v_monitor)); status_ok_or_return(adc_set_channel(adc_channel_5v_monitor, true)); status_ok_or_return(soft_timer_start_millis(CENTER_CONSOLE_5V_RAIL_MONITOR_PERIOD_MILLIS, prv_adc_monitor, (void *)&rail_monitor_5v, NULL)); #endif const GpioSettings enable_output_rail = { .direction = GPIO_DIR_OUT, .state = GPIO_STATE_HIGH, .resistor = GPIO_RES_NONE, .alt_function = GPIO_ALTFN_NONE, }; #if defined(CENTER_CONSOLE_FLAG_ENABLE_5V_RAIL) // Enable 5V rail const GpioAddress rail_5v = CENTER_CONSOLE_CONFIG_PIN_5V_ENABLE; status_ok_or_return(gpio_init_pin(&rail_5v, &enable_output_rail)); #endif #if defined(CENTER_CONSOLE_FLAG_ENABLE_DISPLAY) // Enable Driver Display const GpioAddress display_rail = CENTER_CONSOLE_CONFIG_PIN_DISPLAY_ENABLE; status_ok_or_return(gpio_init_pin(&display_rail, &enable_output_rail)); #endif // Enable fan const GpioAddress fan_enable = CENTER_CONSOLE_CONFIG_PIN_FAN_ENABLE; status_ok_or_return(gpio_init_pin(&fan_enable, &enable_output_rail)); Event e = { 0 }; while (true) { // TODO(HW-200): Remove this once the HW fix goes in center_console_poll(&cc_storage); while (status_ok(event_process(&e))) { can_process_event(&e); button_led_process_event(&e); button_led_radio_process_event(&e); } } return 0; }
33.046154
97
0.734947
bdf75e939258560b6e7e53b2ba9bfa52063560a3
422
h
C
source/host/option.h
raymond1860/idr
04b9a0046a5c31c1c953883d7a3e6d59a4789ab8
[ "Apache-2.0" ]
2
2017-08-13T12:35:55.000Z
2020-07-21T17:05:29.000Z
source/host/option.h
raymond1860/idr
04b9a0046a5c31c1c953883d7a3e6d59a4789ab8
[ "Apache-2.0" ]
3
2016-11-29T02:05:12.000Z
2018-05-14T21:58:14.000Z
source/host/option.h
raymond1860/idr
04b9a0046a5c31c1c953883d7a3e6d59a4789ab8
[ "Apache-2.0" ]
2
2019-02-21T13:29:26.000Z
2022-02-23T20:06:42.000Z
#ifndef _OPTION_H #define _OPTION_H /* currently building the argc/argv stuff in a global context */ #define ARGV_MAX 255 #define ARGV_TOKEN_MAX 255 extern int _argc; extern char *_argv[ARGV_MAX]; /* * Demo usage char* cmd="quit"; str2argv(cmd); if(_argc){ if(!strcmp(_argv[0],"quit")){ //stuff to handle quit command } } argv_dispose(); */ void str2argv(char *s); void argv_dispose(); #endif
18.347826
64
0.677725
bdf86572c6da108e97b314a59e8b5609f4e2ad31
1,887
h
C
third_party/blink/renderer/modules/peerconnection/testing/mock_rtp_sender.h
zealoussnow/chromium
fd8a8914ca0183f0add65ae55f04e287543c7d4a
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
14,668
2015-01-01T01:57:10.000Z
2022-03-31T23:33:32.000Z
third_party/blink/renderer/modules/peerconnection/testing/mock_rtp_sender.h
zealoussnow/chromium
fd8a8914ca0183f0add65ae55f04e287543c7d4a
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
86
2015-10-21T13:02:42.000Z
2022-03-14T07:50:50.000Z
third_party/blink/renderer/modules/peerconnection/testing/mock_rtp_sender.h
zealoussnow/chromium
fd8a8914ca0183f0add65ae55f04e287543c7d4a
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
5,941
2015-01-02T11:32:21.000Z
2022-03-31T16:35:46.000Z
// Copyright (c) 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_PEERCONNECTION_TESTING_MOCK_RTP_SENDER_H_ #define THIRD_PARTY_BLINK_RENDERER_MODULES_PEERCONNECTION_TESTING_MOCK_RTP_SENDER_H_ #include <string> #include <vector> #include "testing/gmock/include/gmock/gmock.h" #include "third_party/webrtc/api/media_stream_interface.h" #include "third_party/webrtc/api/rtp_parameters.h" #include "third_party/webrtc/api/rtp_sender_interface.h" #include "third_party/webrtc/api/scoped_refptr.h" #include "third_party/webrtc/rtc_base/ref_count.h" namespace blink { class MockRtpSender : public rtc::RefCountedObject<webrtc::RtpSenderInterface> { public: MOCK_METHOD(bool, SetTrack, (webrtc::MediaStreamTrackInterface*), (override)); MOCK_METHOD(rtc::scoped_refptr<webrtc::MediaStreamTrackInterface>, track, (), (const override)); MOCK_METHOD(uint32_t, ssrc, (), (const override)); MOCK_METHOD(cricket::MediaType, media_type, (), (const override)); MOCK_METHOD(std::string, id, (), (const override)); MOCK_METHOD(std::vector<std::string>, stream_ids, (), (const override)); MOCK_METHOD(std::vector<webrtc::RtpEncodingParameters>, init_send_encodings, (), (const override)); MOCK_METHOD(webrtc::RtpParameters, GetParameters, (), (const override)); MOCK_METHOD(webrtc::RTCError, SetParameters, (const webrtc::RtpParameters&), (override)); MOCK_METHOD(rtc::scoped_refptr<webrtc::DtmfSenderInterface>, GetDtmfSender, (), (const override)); }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_MODULES_PEERCONNECTION_TESTING_MOCK_RTP_SENDER_H_
38.510204
87
0.716481
bdf875a50e061942ee3825b400d46818d1e3b0cf
1,074
h
C
qqtw/qqheaders7.2/DownloadPreviewImageHandler.h
onezens/QQTweak
04b9efd1d93eba8ef8fec5cf9a20276637765777
[ "MIT" ]
5
2018-02-20T14:24:17.000Z
2020-08-06T09:31:21.000Z
qqtw/qqheaders7.2/DownloadPreviewImageHandler.h
onezens/QQTweak
04b9efd1d93eba8ef8fec5cf9a20276637765777
[ "MIT" ]
1
2020-06-10T07:49:16.000Z
2020-06-12T02:08:35.000Z
qqtw/qqheaders7.2/DownloadPreviewImageHandler.h
onezens/SmartQQ
04b9efd1d93eba8ef8fec5cf9a20276637765777
[ "MIT" ]
null
null
null
// // Generated by class-dump 3.5 (64 bit). // // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. // #import "NSObject.h" @class QQMessageModel; @interface DownloadPreviewImageHandler : NSObject { QQMessageModel *_currentMessageModel; id <DownloadPreviewImageHandlerDelegate> _delegate; } - (void).cxx_destruct; - (void)dealloc; @property(nonatomic) __weak id <DownloadPreviewImageHandlerDelegate> delegate; // @synthesize delegate=_delegate; - (void)downloadImgWithMessageModel:(id)arg1; - (id)getAvailablePictureNameWithMessageModel:(id)arg1; - (void)handleImageDownloadProgressNotification:(id)arg1; - (void)handleImageDownloadStateNotification:(id)arg1; - (void)handleProgressiveJpgDownloadInfoNotification:(id)arg1; - (_Bool)hasOriginalPhoto; - (id)init; - (_Bool)isAccostTypeImage; - (_Bool)isValidNotificationForBigPicType:(id)arg1; - (void)onMsgStateChange:(id)arg1; - (void)retry; - (void)setDownloadProgress:(double)arg1; - (void)setImageViewWithMessageModel:(id)arg1; - (_Bool)setImageWithImgPath:(id)arg1; @end
29.027027
113
0.771881
bdf8cda62d1bbab25a092a0d770660809f5da948
668
h
C
src/System.h
DimonSE/OpenRC
87ed34d7588c876a44e7bac51f6ae3ca48771ca7
[ "Apache-2.0" ]
null
null
null
src/System.h
DimonSE/OpenRC
87ed34d7588c876a44e7bac51f6ae3ca48771ca7
[ "Apache-2.0" ]
null
null
null
src/System.h
DimonSE/OpenRC
87ed34d7588c876a44e7bac51f6ae3ca48771ca7
[ "Apache-2.0" ]
null
null
null
/******************************************************************************* * System.h * *******************************************************************************/ #ifndef __System_h__ #define __System_h__ uint16_t Get_EEPROM_CRC(); bool Is_EEPROM_CRC_Correct(); void Recalc_EEPROM_CRC(); bool TX_IsFirstStart(); void TX_Init(); void TX_Reset(); void TX_SaveSettings(); void MODEL_Init(int8_t ModelNum); void MODEL_Save_Trimmers(); void MODEL_Save(int8_t To); void MODEL_Copy(int8_t From, int8_t To); void MODEL_Reset(int8_t ModelNum); void MODE_Copy(int8_t From, int8_t To); void Calibration(); #endif // __System_h__
22.266667
81
0.552395
bdf96990339c0c043479005f066bc5377351e334
2,520
h
C
mentos/inc/descriptor_tables/tss.h
zfd-progetti-univr-2021-2022/MentOS
fc4a9456520a9a79a2c3875aff0f527de51bc6e3
[ "MIT" ]
null
null
null
mentos/inc/descriptor_tables/tss.h
zfd-progetti-univr-2021-2022/MentOS
fc4a9456520a9a79a2c3875aff0f527de51bc6e3
[ "MIT" ]
null
null
null
mentos/inc/descriptor_tables/tss.h
zfd-progetti-univr-2021-2022/MentOS
fc4a9456520a9a79a2c3875aff0f527de51bc6e3
[ "MIT" ]
null
null
null
/// MentOS, The Mentoring Operating system project /// @file tss.h /// @brief Data structures concerning the Task State Segment (TSS). /// @copyright (c) 2014-2021 This file is distributed under the MIT License. /// See LICENSE.md for details. /// @addtogroup descriptor_tables Descriptor Tables /// @{ /// @defgroup tss Task State Segment (TSS) /// @brief Is a special structure on x86-based computers which holds information /// about a task. It is used by the operating system kernel for task management. /// @{ #pragma once #include "stdint.h" /// @brief Task state segment entry. typedef struct tss_entry { uint32_t prev_tss; ///< If we used hardware task switching this would form a linked list. uint32_t esp0; ///< The stack pointer to load when we change to kernel mode. uint32_t ss0; ///< The stack segment to load when we change to kernel mode. uint32_t esp1; ///< everything below here is unusued now. uint32_t ss1; ///< TODO: Comment. uint32_t esp2; ///< TODO: Comment. uint32_t ss2; ///< TODO: Comment. uint32_t cr3; ///< TODO: Comment. uint32_t eip; ///< TODO: Comment. uint32_t eflags; ///< TODO: Comment. uint32_t eax; ///< TODO: Comment. uint32_t ecx; ///< TODO: Comment. uint32_t edx; ///< TODO: Comment. uint32_t ebx; ///< TODO: Comment. uint32_t esp; ///< TODO: Comment. uint32_t ebp; ///< TODO: Comment. uint32_t esi; ///< TODO: Comment. uint32_t edi; ///< TODO: Comment. uint32_t es; ///< TODO: Comment. uint32_t cs; ///< TODO: Comment. uint32_t ss; ///< TODO: Comment. uint32_t ds; ///< TODO: Comment. uint32_t fs; ///< TODO: Comment. uint32_t gs; ///< TODO: Comment. uint32_t ldt; ///< TODO: Comment. uint16_t trap; ///< TODO: Comment. uint16_t iomap; ///< TODO: Comment. } tss_entry_t; /// @brief Flushes the Task State Segment. extern void tss_flush(); /// @brief We don't need tss to assist task switching, but it's required to /// have one tss for switching back to kernel mode(system call for /// example). /// @param idx Index. /// @param ss0 Kernel data segment. void tss_init(uint8_t idx, uint32_t ss0); /// @brief This function is used to set the esp the kernel should be using. /// @param kss Kernel data segment. /// @param kesp Kernel stack address. void tss_set_stack(uint32_t kss, uint32_t kesp); /// @} /// @}
39.375
93
0.624206
bdfaaaa2e8e20f01efe5b28cc7e2599d13452bf3
955
h
C
include/Denn/Optimizer.h
Gabriele91/DENN
ac7f32941e125b1d6018768b1298dc688478bcc9
[ "Apache-2.0" ]
5
2017-05-26T12:37:43.000Z
2021-02-03T11:57:12.000Z
include/Denn/Optimizer.h
Gabriele91/DENN
ac7f32941e125b1d6018768b1298dc688478bcc9
[ "Apache-2.0" ]
null
null
null
include/Denn/Optimizer.h
Gabriele91/DENN
ac7f32941e125b1d6018768b1298dc688478bcc9
[ "Apache-2.0" ]
4
2017-03-24T18:40:26.000Z
2021-05-18T14:59:19.000Z
#pragma once #include "Config.h" #include <unordered_map> namespace Denn { class Optimizer { public: Optimizer(Random* random=nullptr) : m_random(random) {} //update virtual void update(AlignedMapColVector w, ConstAlignedMapColVector& dw) const= 0; ///////////////////////////////////////////////////////////////////////// //Random engine Random*& random() { return m_random; } Random* random() const { return m_random; } protected: mutable Random* m_random{nullptr}; }; class SGD : public Optimizer { protected: Scalar m_lrate; Scalar m_decay; Scalar m_momentum; bool m_nesterov; // velocity mutable std::unordered_map<const Scalar*, ColVector> m_v_map; public: SGD( Scalar lrate = Scalar(0.01) , Scalar decay = Scalar(0) , Scalar momentum = Scalar(0) , bool nesterov = false , Random* random = nullptr ); virtual void update(AlignedMapColVector w, ConstAlignedMapColVector& dw) const override; }; }
20.76087
90
0.655497
bdfb319fe3f18678953153c70f7809c5065bacbf
14,206
h
C
ast-8.6.2/polymap.h
astro-datalab/dlapps
18a338a887af19d195b5c1eeed6c0a9e38686125
[ "BSD-3-Clause" ]
1
2020-08-17T21:26:16.000Z
2020-08-17T21:26:16.000Z
ast-8.6.2/polymap.h
noaodatalab/dlapps
33e8fc6161448f2052369b1fbe2765e854c1ac52
[ "BSD-3-Clause" ]
null
null
null
ast-8.6.2/polymap.h
noaodatalab/dlapps
33e8fc6161448f2052369b1fbe2765e854c1ac52
[ "BSD-3-Clause" ]
null
null
null
#if !defined( POLYMAP_INCLUDED ) /* Include this file only once */ #define POLYMAP_INCLUDED /* *+ * Name: * polymap.h * Type: * C include file. * Purpose: * Define the interface to the PolyMap class. * Invocation: * #include "polymap.h" * Description: * This include file defines the interface to the PolyMap class and * provides the type definitions, function prototypes and macros, * etc. needed to use this class. * * A PolyMap is a form of Mapping which performs a general polynomial * transformation. Each output coordinate is a polynomial function of * all the input coordinates. The coefficients are specified separately * for each output coordinate. The forward and inverse transformations * are defined independantly by separate sets of coefficients. * Inheritance: * The PolyMap class inherits from the Mapping class. * Attributes Over-Ridden: * None. * New Attributes Defined: * None. * Methods Over-Ridden: * Public: * None. * * Protected: * astTransform * Apply a PolyMap to transform a set of points. * New Methods Defined: * Public: * None. * * Protected: * None. * Other Class Functions: * Public: * astIsAPolyMap * Test class membership. * astPolyMap * Create a PolyMap. * * Protected: * astCheckPolyMap * Validate class membership. * astInitPolyMap * Initialise a PolyMap. * astInitPolyMapVtab * Initialise the virtual function table for the PolyMap class. * astLoadPolyMap * Load a PolyMap. * Macros: * None. * Type Definitions: * Public: * AstPolyMap * PolyMap object type. * * Protected: * AstPolyMapVtab * PolyMap virtual function table type. * Feature Test Macros: * astCLASS * If the astCLASS macro is undefined, only public symbols are * made available, otherwise protected symbols (for use in other * class implementations) are defined. This macro also affects * the reporting of error context information, which is only * provided for external calls to the AST library. * Copyright: * Copyright (C) 1997-2006 Council for the Central Laboratory of the * Research Councils * Licence: * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either * version 3 of the License, or (at your option) any later * version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General * License along with this program. If not, see * <http://www.gnu.org/licenses/>. * Authors: * DSB: D.S. Berry (Starlink) * History: * 28-SEP-2003 (DSB): * Original version. *- */ /* Include files. */ /* ============== */ /* Interface definitions. */ /* ---------------------- */ #include "mapping.h" /* Coordinate mappings (parent class) */ #if defined(astCLASS) /* Protected */ #include "pointset.h" /* Sets of points/coordinates */ #include "channel.h" /* I/O channels */ #endif /* C header files. */ /* --------------- */ #if defined(astCLASS) /* Protected */ #include <stddef.h> #endif /* Macros */ /* ====== */ /* Define a dummy __attribute__ macro for use on non-GNU compilers. */ #ifndef __GNUC__ # define __attribute__(x) /*NOTHING*/ #endif /* Type Definitions. */ /* ================= */ /* PolyMap structure. */ /* ------------------ */ /* This structure contains all information that is unique to each object in the class (e.g. its instance variables). */ typedef struct AstPolyMap { /* Attributes inherited from the parent class. */ AstMapping mapping; /* Parent class structure */ /* Attributes specific to objects in this class. */ int *ncoeff_f; /* No. of coeffs for each forward polynomial */ int *mxpow_f; /* Max power of each i/p axis for each forward polynomial */ int ***power_f; /* Pointer to i/p powers for all forward coefficients */ double **coeff_f; /* Pointer to values of all forward coefficients */ int *ncoeff_i; /* No. of coeffs for each inverse polynomial */ int *mxpow_i; /* Max power of each i/p axis for each inverse polynomial */ int ***power_i; /* Pointer to i/p powers for all inverse coefficients */ double **coeff_i; /* Pointer to values of all inverse coefficients */ int iterinverse; /* Use an iterative inverse? */ int niterinverse; /* Max number of iterations for iterative inverse */ double tolinverse; /* Target relative error for iterative inverse */ struct AstPolyMap **jacobian;/* PolyMaps defining Jacobian of forward transformation */ } AstPolyMap; /* Virtual function table. */ /* ----------------------- */ #if defined(astCLASS) /* Protected */ /* Structure used to pass data to the Levenberg - Marquardt non-linear minimization algorithm. */ typedef struct AstMinPackData { int order; /* Max power of X1 or X2, plus one. */ int nsamp; /* No. of polynomial samples to fit */ int init_jac; /* Has the constant Jacobian been found yet? */ double *xp1; /* Pointer to powers of X1 (1st poly i/p) at all samples */ double *xp2; /* Pointer to powers of X2 (2nd poly i/p) at all samples */ double *y[ 2 ]; /* Pointers to Y1 and Y2 values at all samples */ } AstMinPackData; /* This structure contains all information that is the same for all objects in the class (e.g. pointers to its virtual functions). */ typedef struct AstPolyMapVtab { /* Properties (e.g. methods) inherited from the parent class. */ AstMappingVtab mapping_vtab; /* Parent class virtual function table */ /* A Unique identifier to determine class membership. */ AstClassIdentifier id; /* Properties (e.g. methods) specific to this class. */ AstPolyMap *(* PolyTran)( AstPolyMap *, int, double, double, int, const double *, const double *, int * ); void (* PolyPowers)( AstPolyMap *, double **, int, const int *, double **, int, int, int * ); void (* PolyCoeffs)( AstPolyMap *, int, int, double *, int *, int *); void (* FitPoly1DInit)( AstPolyMap *, int, double **, AstMinPackData *, double *, int *); void (* FitPoly2DInit)( AstPolyMap *, int, double **, AstMinPackData *, double *, int *); int (*GetIterInverse)( AstPolyMap *, int * ); int (* TestIterInverse)( AstPolyMap *, int * ); void (* ClearIterInverse)( AstPolyMap *, int * ); void (* SetIterInverse)( AstPolyMap *, int, int * ); int (*GetNiterInverse)( AstPolyMap *, int * ); int (* TestNiterInverse)( AstPolyMap *, int * ); void (* ClearNiterInverse)( AstPolyMap *, int * ); void (* SetNiterInverse)( AstPolyMap *, int, int * ); double (*GetTolInverse)( AstPolyMap *, int * ); int (* TestTolInverse)( AstPolyMap *, int * ); void (* ClearTolInverse)( AstPolyMap *, int * ); void (* SetTolInverse)( AstPolyMap *, double, int * ); } AstPolyMapVtab; #if defined(THREAD_SAFE) /* Define a structure holding all data items that are global within the object.c file. */ typedef struct AstPolyMapGlobals { AstPolyMapVtab Class_Vtab; int Class_Init; char GetAttrib_Buff[ AST__GETATTRIB_BUFF_LEN + 1 ]; } AstPolyMapGlobals; /* Thread-safe initialiser for all global data used by this module. */ void astInitPolyMapGlobals_( AstPolyMapGlobals * ); #endif #endif /* Function prototypes. */ /* ==================== */ /* Prototypes for standard class functions. */ /* ---------------------------------------- */ astPROTO_CHECK(PolyMap) /* Check class membership */ astPROTO_ISA(PolyMap) /* Test class membership */ /* Constructor. */ #if defined(astCLASS) /* Protected. */ AstPolyMap *astPolyMap_( int, int, int, const double[], int, const double[], const char *, int *, ...); #else AstPolyMap *astPolyMapId_( int, int, int, const double[], int, const double[], const char *, ... )__attribute__((format(printf,7,8))); #endif #if defined(astCLASS) /* Protected */ /* Initialiser. */ AstPolyMap *astInitPolyMap_( void *, size_t, int, AstPolyMapVtab *, const char *, int, int, int, const double[], int, const double[], int * ); /* Vtab initialiser. */ void astInitPolyMapVtab_( AstPolyMapVtab *, const char *, int * ); /* Loader. */ AstPolyMap *astLoadPolyMap_( void *, size_t, AstPolyMapVtab *, const char *, AstChannel *, int * ); #endif /* Prototypes for member functions. */ /* -------------------------------- */ AstPolyMap *astPolyTran_( AstPolyMap *, int, double, double, int, const double *, const double *, int * ); void astPolyCoeffs_( AstPolyMap *, int, int, double *, int *, int *); # if defined(astCLASS) /* Protected */ void astPolyPowers_( AstPolyMap *, double **, int, const int *, double **, int, int, int * ); void astFitPoly1DInit_( AstPolyMap *, int, double **, AstMinPackData *, double *, int *); void astFitPoly2DInit_( AstPolyMap *, int, double **, AstMinPackData *, double *, int *); int astGetIterInverse_( AstPolyMap *, int * ); int astTestIterInverse_( AstPolyMap *, int * ); void astClearIterInverse_( AstPolyMap *, int * ); void astSetIterInverse_( AstPolyMap *, int, int * ); int astGetNiterInverse_( AstPolyMap *, int * ); int astTestNiterInverse_( AstPolyMap *, int * ); void astClearNiterInverse_( AstPolyMap *, int * ); void astSetNiterInverse_( AstPolyMap *, int, int * ); double astGetTolInverse_( AstPolyMap *, int * ); int astTestTolInverse_( AstPolyMap *, int * ); void astClearTolInverse_( AstPolyMap *, int * ); void astSetTolInverse_( AstPolyMap *, double, int * ); #endif /* Function interfaces. */ /* ==================== */ /* These macros are wrap-ups for the functions defined by this class to make them easier to invoke (e.g. to avoid type mis-matches when passing pointers to objects from derived classes). */ /* Interfaces to standard class functions. */ /* --------------------------------------- */ /* Some of these functions provide validation, so we cannot use them to validate their own arguments. We must use a cast when passing object pointers (so that they can accept objects from derived classes). */ /* Check class membership. */ #define astCheckPolyMap(this) astINVOKE_CHECK(PolyMap,this,0) #define astVerifyPolyMap(this) astINVOKE_CHECK(PolyMap,this,1) /* Test class membership. */ #define astIsAPolyMap(this) astINVOKE_ISA(PolyMap,this) /* Constructor. */ #if defined(astCLASS) /* Protected. */ #define astPolyMap astINVOKE(F,astPolyMap_) #else #define astPolyMap astINVOKE(F,astPolyMapId_) #endif #if defined(astCLASS) /* Protected */ /* Initialiser. */ #define astInitPolyMap(mem,size,init,vtab,name,nin,nout,ncoeff_f,coeff_f,ncoeff_i,coeff_i) \ astINVOKE(O,astInitPolyMap_(mem,size,init,vtab,name,nin,nout,ncoeff_f,coeff_f,ncoeff_i,coeff_i,STATUS_PTR)) /* Vtab Initialiser. */ #define astInitPolyMapVtab(vtab,name) astINVOKE(V,astInitPolyMapVtab_(vtab,name,STATUS_PTR)) /* Loader. */ #define astLoadPolyMap(mem,size,vtab,name,channel) \ astINVOKE(O,astLoadPolyMap_(mem,size,vtab,name,astCheckChannel(channel),STATUS_PTR)) #endif /* Interfaces to public member functions. */ /* -------------------------------------- */ /* Here we make use of astCheckPolyMap to validate PolyMap pointers before use. This provides a contextual error report if a pointer to the wrong sort of Object is supplied. */ #define astPolyTran(this,forward,acc,maxacc,maxorder,lbnd,ubnd) \ astINVOKE(O,astPolyTran_(astCheckPolyMap(this),forward,acc,maxacc,maxorder,lbnd,ubnd,STATUS_PTR)) #define astPolyCoeffs(this,forward,nel,coeffs,ncoeff) \ astINVOKE(V,astPolyCoeffs_(astCheckPolyMap(this),forward,nel,coeffs,ncoeff,STATUS_PTR)) #if defined(astCLASS) /* Protected */ #define astPolyPowers(this,work,ncoord,mxpow,ptr,offset,fwd) \ astINVOKE(V,astPolyPowers_(astCheckPolyMap(this),work,ncoord,mxpow,ptr,point,fwd,STATUS_PTR)) #define astFitPoly1DInit(this,forward,table,data,scales) \ astINVOKE(V,astFitPoly1DInit_(astCheckPolyMap(this),forward,table,data,scales,STATUS_PTR)) #define astFitPoly2DInit(this,forward,table,data,scales) \ astINVOKE(V,astFitPoly2DInit_(astCheckPolyMap(this),forward,table,data,scales,STATUS_PTR)) #define astClearIterInverse(this) \ astINVOKE(V,astClearIterInverse_(astCheckPolyMap(this),STATUS_PTR)) #define astGetIterInverse(this) \ astINVOKE(V,astGetIterInverse_(astCheckPolyMap(this),STATUS_PTR)) #define astSetIterInverse(this,value) \ astINVOKE(V,astSetIterInverse_(astCheckPolyMap(this),value,STATUS_PTR)) #define astTestIterInverse(this) \ astINVOKE(V,astTestIterInverse_(astCheckPolyMap(this),STATUS_PTR)) #define astClearNiterInverse(this) \ astINVOKE(V,astClearNiterInverse_(astCheckPolyMap(this),STATUS_PTR)) #define astGetNiterInverse(this) \ astINVOKE(V,astGetNiterInverse_(astCheckPolyMap(this),STATUS_PTR)) #define astSetNiterInverse(this,value) \ astINVOKE(V,astSetNiterInverse_(astCheckPolyMap(this),value,STATUS_PTR)) #define astTestNiterInverse(this) \ astINVOKE(V,astTestNiterInverse_(astCheckPolyMap(this),STATUS_PTR)) #define astClearTolInverse(this) \ astINVOKE(V,astClearTolInverse_(astCheckPolyMap(this),STATUS_PTR)) #define astGetTolInverse(this) \ astINVOKE(V,astGetTolInverse_(astCheckPolyMap(this),STATUS_PTR)) #define astSetTolInverse(this,value) \ astINVOKE(V,astSetTolInverse_(astCheckPolyMap(this),value,STATUS_PTR)) #define astTestTolInverse(this) \ astINVOKE(V,astTestTolInverse_(astCheckPolyMap(this),STATUS_PTR)) #endif #endif
36.70801
142
0.667676
bdfc6d6447a5db2c8d3bcdaf8f7c6fc5830ab35f
530
h
C
Thermo1 - 20190515_1 set 5018_separate csv/Thermo1/func.h
HectorTa1989/Reflow-soldering-oven-DAQ
84e64a97228ef19431e38df180f803dc564290a8
[ "MIT" ]
null
null
null
Thermo1 - 20190515_1 set 5018_separate csv/Thermo1/func.h
HectorTa1989/Reflow-soldering-oven-DAQ
84e64a97228ef19431e38df180f803dc564290a8
[ "MIT" ]
null
null
null
Thermo1 - 20190515_1 set 5018_separate csv/Thermo1/func.h
HectorTa1989/Reflow-soldering-oven-DAQ
84e64a97228ef19431e38df180f803dc564290a8
[ "MIT" ]
null
null
null
void ADAMDrvOpen(LONG *); void ADAMDrvClose(LONG *); bool SYS_GetVersion(long, DWORD); LONG AIO_SetRanges(long, WORD, WORD, WORD); LONG SYS_GetSlotInfo(long, WORD, struct SlotInfo*); LONG AIO_GetChannelStatus(long, WORD, BYTE*); LONG AI_GetBurnoutValue(long, WORD, DWORD); LONG AI_SetBurnoutValue(long, WORD, DWORD); LONG AI_SetChannelMask(long, WORD, DWORD); LONG AIO_GetValue(long, WORD, WORD, WORD); LONG AIO_GetValues(long, WORD, WORD); LONG AI_SetIntegrationTime(long, WORD, DWORD); LONG SYS_GetModuleID(long, WORD, DWORD);
35.333333
51
0.775472
da0044860ba96694442a30a94e4cd7845769b909
13,498
c
C
netbsd/sys/arch/amiga/stand/bootblock/boot/main.c
MarginC/kame
2ef74fe29e4cca9b4a87a1d5041191a9e2e8be30
[ "BSD-3-Clause" ]
91
2015-01-05T15:18:31.000Z
2022-03-11T16:43:28.000Z
netbsd/sys/arch/amiga/stand/bootblock/boot/main.c
MarginC/kame
2ef74fe29e4cca9b4a87a1d5041191a9e2e8be30
[ "BSD-3-Clause" ]
1
2016-02-25T15:57:55.000Z
2016-02-25T16:01:02.000Z
netbsd/sys/arch/amiga/stand/bootblock/boot/main.c
MarginC/kame
2ef74fe29e4cca9b4a87a1d5041191a9e2e8be30
[ "BSD-3-Clause" ]
21
2015-02-07T08:23:07.000Z
2021-12-14T06:01:49.000Z
/* * $NetBSD: main.c,v 1.10 1998/11/13 22:12:35 is Exp $ * * * Copyright (c) 1996 Ignatios Souvatzis * Copyright (c) 1994 Michael L. Hitch * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by Michael L. Hitch. * 4. The name of the authors may not be used to endorse or promote products * derived from this software without specific prior written permission * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * */ #include <sys/cdefs.h> #include <sys/reboot.h> #include <sys/types.h> #include <sys/exec_aout.h> #include <amiga/cfdev.h> #include <amiga/memlist.h> #include <include/cpu.h> #include <saerrno.h> #include <stand.h> #include "libstubs.h" #include "samachdep.h" #undef __LDPGSZ #define __LDPGSZ 8192 #define __PGSZ 8192 #define DRACOREVISION (*(u_int8_t *)0x02000009) #define DRACOMMUMARGIN 0x200000 #define DRACOZ2OFFSET 0x3000000 #define DRACOZ2MAX 0x1000000 #define EXECMIN 36 void startit __P((void *, u_long, u_long, void *, u_long, u_long, int, void *, int, int, u_long, u_long, u_long, int)); void startit_end __P((void)); int get_cpuid __P((u_int32_t *)); /* * Kernel startup interface version * 1: first version of loadbsd * 2: needs esym location passed in a4 * 3: load kernel image into fastmem rather than chipmem * MAX: highest version with backward compatibility. */ #define KERNEL_STARTUP_VERSION 3 #define KERNEL_STARTUP_VERSION_MAX 9 static long get_number(char **); #define VERSION "2.1" char default_command[] = "netbsd -ASn2"; int pain(aio) void *aio; { long int io = 0; char linebuf[128]; char *kernel_name = default_command; char *path = default_command; int boothowto = RB_AUTOBOOT; u_int32_t cpuid = 0; int amiga_flags = 0; u_int32_t I_flag = 0; int k_flag = 0; int p_flag = 0; int m_value = 0; int S_flag = 0; int t_flag = 0; long stringsz; u_int32_t fmem = 0x0; int fmemsz = 0x0; int cmemsz = 0x0; int eclock = SysBase->EClockFreq; /* int skip_chipmem = 0; */ void (*start_it)(void *, u_long, u_long, void *, u_long, u_long, int, void *, int, int, u_long, u_long, u_long, int) = startit; caddr_t kp; u_int16_t *kvers; struct exec ehs; int textsz, ksize; void *esym = 0; int32_t *nkcd; struct cfdev *cd, *kcd; struct boot_memseg *kmemseg; struct boot_memseg *memseg; struct MemHead *mh; u_int32_t from, size, vfrom, vsize; int contflag, mapped1to1; int ncd, nseg; char c; extern u_int16_t timelimit; extern u_int32_t aio_base; xdinit(aio); if (consinit()) return(1); /* * we need V36 for: EClock, RDB Bootblocks, CacheClearU */ if (SysBase->LibNode.Version < EXECMIN) { printf("Exec V%ld, need V%ld\n", (long)SysBase->LibNode.Version, (long)EXECMIN); goto out; } printf("\2337mNetBSD/Amiga bootblock " VERSION "\2330m\n%s :- ", kernel_name); timelimit = 3; gets(linebuf); if (*linebuf == 'q') return 1; if (*linebuf) path = linebuf; /* * parse boot command for path name and process any options */ while ((c = *path)) { while (c == ' ') c = *++path; if (c == '-') { while ((c = *++path) && c != ' ') { switch (c) { case 'a': /* multi-user state */ boothowto &= ~RB_SINGLE; break; case 'b': /* ask for root device */ boothowto |= RB_ASKNAME; break; case 'c': /* force machine model */ cpuid = get_number(&path) << 16; break; case 'k': /* Reserve first 4M fastmem */ k_flag++; break; case 'm': /* Force fastmem size */ m_value = get_number(&path) * 1024; break; case 'n': /* non-contiguous memory */ amiga_flags |= (get_number(&path) & 3) << 1; break; case 'p': /* Select fastmem by priority */ p_flag++; break; case 's': /* single-user state */ boothowto |= RB_SINGLE; break; case 't': /* test flag */ t_flag = 1; break; case 'A': /* enable AGA modes */ amiga_flags |= 1; break; case 'D': /* enter Debugger */ boothowto |= RB_KDB; break; case 'I': /* inhibit sync negotiation */ I_flag = get_number(&path); break; case 'K': /* remove 1st 4MB fastmem */ break; case 'S': /* include debug symbols */ S_flag = 1; break; } } } else { kernel_name = path; while ((c = *++path) && c != ' ') ; if (c) *path++ = 0; } } while ((c = *kernel_name) && c == ' ') ++kernel_name; path = kernel_name; while ((c = *path) && c != ' ') ++path; if (c) *path = 0; if (get_cpuid(&cpuid)) goto out; ExpansionBase = OpenLibrary("expansion.library", 0); if (!ExpansionBase) { printf("can't open %s\n", "expansion.library"); return 1; } for (ncd=0, cd=0; (cd = FindConfigDev(cd, -1, -1)); ncd++) /* nothing */; /* find memory list */ memseg = (struct boot_memseg *)alloc(16*sizeof(struct boot_memseg)); /* Forbid(); */ nseg = 0; mh = SysBase->MemLst; vfrom = mh->Lower & -__PGSZ; vsize = (mh->Upper & -__PGSZ) - vfrom; contflag = mapped1to1 = 0; do { size = vsize; if (SysBase->LibNode.Version > 36) { from = CachePreDMA(vfrom, &size, contflag); contflag = DMAF_Continue; mapped1to1 = (from == vfrom); vsize -= size; vfrom += size; } else { from = vfrom; mapped1to1 = 1; vsize = 0; } #ifdef DEBUG_MEMORY_LIST printf("%lx %lx %lx %ld/%lx %lx\n", (long)from, (long)size, (long)mh->Attribs, (long)mh->Pri, (long)vfrom, (long)vsize); #endif /* Insert The Evergrowing Kludge List Here: */ /* a) dont load kernel over DraCo MMU table */ if (((cpuid >> 24) == 0x7D) && ((from & -DRACOMMUMARGIN) == 0x40000000) && (size >= DRACOMMUMARGIN)) { memseg[nseg].ms_start = from & -DRACOMMUMARGIN; memseg[nseg].ms_size = DRACOMMUMARGIN; memseg[nseg].ms_attrib = mh->Attribs; memseg[nseg].ms_pri = mh->Pri; size -= DRACOMMUMARGIN - (from & (DRACOMMUMARGIN - 1)); from += DRACOMMUMARGIN - (from & (DRACOMMUMARGIN - 1)); ++nseg; } if ((mh->Attribs & (MEMF_CHIP|MEMF_FAST)) == MEMF_CHIP) { size += from; cmemsz = size;; from = 0; } else if ((fmemsz < size) && mapped1to1) { fmem = from; fmemsz = size; } memseg[nseg].ms_start = from; memseg[nseg].ms_size = size; memseg[nseg].ms_attrib = mh->Attribs; memseg[nseg].ms_pri = mh->Pri; if (vsize == 0) { mh = mh->next; contflag = 0; if (mh->next) { vfrom = mh->Lower & -__PGSZ; vsize = (mh->Upper & -__PGSZ) - vfrom; } } } while ((++nseg <= 16) && vsize); /* Permit(); */ if (k_flag) { fmem += 4*1024*1024; fmemsz -= 4*1024*1024; } if (m_value && m_value < fmemsz) fmemsz = m_value; printf("Loading %s: ", kernel_name); io = open(kernel_name, 0); if (io < 0) goto err; if (read(io, &ehs, sizeof(ehs)) != sizeof(ehs)) { errno = ENOEXEC; goto err; } if ((N_GETMAGIC(ehs) != NMAGIC) || (N_GETMID(ehs) != MID_M68K)) { errno = ENOEXEC; goto err; } textsz = (ehs.a_text + __LDPGSZ - 1) & (-__LDPGSZ); esym = 0; ksize = textsz + ehs.a_data + ehs.a_bss + sizeof(*nkcd) + ncd*sizeof(*cd) + sizeof(*nkcd) + nseg * sizeof(struct boot_memseg); if (S_flag && ehs.a_syms) { if (lseek(io, ehs.a_text+ ehs.a_data+ ehs.a_syms, SEEK_CUR) <= 0 || read(io, &stringsz, 4) != 4 || lseek(io, sizeof(ehs), SEEK_SET) < 0) goto err; ksize += ehs.a_syms + 4 + ((stringsz + 3) & ~3); } kp = alloc(ksize + 256 + ((u_char *)startit_end - (u_char *)startit)); if (kp == 0) { errno = ENOMEM; goto err; } printf("%ld", ehs.a_text); if (read(io, kp, ehs.a_text) != ehs.a_text) goto err; printf("+%ld", ehs.a_data); if (read(io, kp + textsz, ehs.a_data) != ehs.a_data) goto err; printf("+%ld", ehs.a_bss); kvers = (u_short *)(kp + ehs.a_entry - 2); if (*kvers > KERNEL_STARTUP_VERSION_MAX && *kvers != 0x4e73) { printf("\nnewer bootblock required: %ld\n", (long)*kvers); goto freeall; } if (*kvers < KERNEL_STARTUP_VERSION || *kvers == 0x4e73) { printf("\nkernel too old for bootblock\n"); goto freeall; } #if 0 if (*kvers > KERNEL_STARTUP_VERSION) printf("\nKernel V%ld newer than bootblock V%ld\n", (long)*kvers, (long)KERNEL_STARTUP_VERSION); #endif nkcd = (int *)(kp + textsz + ehs.a_data + ehs.a_bss); if (*kvers != 0x4e73 && *kvers > 1 && S_flag && ehs.a_syms) { *nkcd++ = ehs.a_syms; printf("+[%ld", ehs.a_syms); if (read(io, (char *)nkcd, ehs.a_syms) != ehs.a_syms) goto err; nkcd = (int *)((char *)nkcd + ehs.a_syms); printf("+%ld]", stringsz); if (read(io, (char *)nkcd, stringsz) != stringsz) goto err; nkcd = (int*)((char *)nkcd + ((stringsz + 3) & ~3)); esym = (char *)(textsz + ehs.a_data + ehs.a_bss + ehs.a_syms + 4 + ((stringsz + 3) & ~3)); } putchar('\n'); *nkcd = ncd; kcd = (struct cfdev *)(nkcd + 1); while ((cd = FindConfigDev(cd, -1, -1))) { *kcd = *cd; if (((cpuid >> 24) == 0x7D) && ((u_long)kcd->addr < 0x1000000)) { kcd->addr += 0x3000000; } ++kcd; } nkcd = (u_int32_t *)kcd; *nkcd = nseg; kmemseg = (struct boot_memseg *)(nkcd + 1); while (nseg-- > 0) *kmemseg++ = *memseg++; /* * Copy startup code to end of kernel image and set start_it. */ memcpy(kp + ksize + 256, (char *)startit, (char *)startit_end - (char *)startit); CacheClearU(); (caddr_t)start_it = kp + ksize + 256; printf("*** Loading from %08lx to Fastmem %08lx ***\n", (u_long)kp, (u_long)fmem); /* sleep(2); */ #if 0 printf("would start(kp=0x%lx, ksize=%ld, entry=0x%lx,\n" "fmem=0x%lx, fmemsz=%ld, cmemsz=%ld\n" "boothow=0x%lx, esym=0x%lx, cpuid=0x%lx, eclock=%ld\n" "amigaflags=0x%lx, I_flags=0x%lx, ok?\n", (u_long)kp, (u_long)ksize, ehs.a_entry, (u_long)fmem, (u_long)fmemsz, (u_long)cmemsz, (u_long)boothowto, (u_long)esym, (u_long)cpuid, (u_long)eclock, (u_long)amiga_flags, (u_long)I_flag); #endif #ifdef DEBUG_MEMORY_LIST timelimit = 0; #else timelimit = 2; #endif (void)getchar(); start_it(kp, ksize, ehs.a_entry, (void *)fmem, fmemsz, cmemsz, boothowto, esym, cpuid, eclock, amiga_flags, I_flag, aio_base >> 9, 1); /*NOTREACHED*/ freeall: free(kp, ksize); err: printf("\nError %ld\n", (long)errno); close(io); out: timelimit = 10; (void)getchar(); return 1; } static long get_number(ptr) char **ptr; { long value = 0; int base = 10; char *p = *ptr; char c; char sign = 0; c = *++p; while (c == ' ') c = *++p; if (c == '-') { sign = -1; c = *++p; } if (c == '$') { base = 16; c = *++p; } else if (c == '0') { c = *++p; if ((c & 0xdf) == 'X') { base = 16; c = *++p; } } while (c) { if (c >= '0' && c <= '9') c -= '0'; else { c = (c & 0xdf) - 'A' + 10; if (base != 16 || c < 10 || c > 15) break; } value = value * base + c; c = *++p; } *ptr = p - 1; #ifdef TEST fprintf(stderr, "get_number: got %c0x%x", sign ? '-' : '+', value); #endif return (sign ? -value : value); } /* * Try to determine the machine ID by searching the resident module list * for modules only present on specific machines. (Thanks, Bill!) */ int get_cpuid(cpuid) u_int32_t *cpuid; { *cpuid |= SysBase->AttnFlags; /* get FPU and CPU flags */ if (*cpuid & 0xffff0000) { if ((*cpuid >> 24) == 0x7D) return 0; switch (*cpuid >> 16) { case 500: case 600: case 1000: case 1200: case 2000: case 3000: case 4000: return 0; default: printf("Amiga %ld ???\n", (long)(*cpuid >> 16)); return(1); } } if (FindResident("A4000 Bonus") || FindResident("A4000 bonus") || FindResident("A1000 Bonus")) *cpuid |= 4000 << 16; else if (FindResident("A3000 Bonus") || FindResident("A3000 bonus") || (SysBase->LibNode.Version == 36)) *cpuid |= 3000 << 16; else if (OpenResource("card.resource")) { /* Test for AGA? */ *cpuid |= 1200 << 16; } else if (OpenResource("draco.resource")) { *cpuid |= (32000 | DRACOREVISION) << 16; } /* * Nothing found, it's probably an A2000 or A500 */ if ((*cpuid >> 16) == 0) *cpuid |= 2000 << 16; return 0; }
24.017794
78
0.603275
da00da616e68294b742bb9e3e341359427e422ad
4,779
h
C
System/Library/PrivateFrameworks/CDDataAccess.framework/Frameworks/DADaemonSupport.framework/DATokenRegistrationRequest.h
lechium/iOS1351Headers
6bed3dada5ffc20366b27f7f2300a24a48a6284e
[ "MIT" ]
2
2021-11-02T09:23:27.000Z
2022-03-28T08:21:57.000Z
System/Library/PrivateFrameworks/CDDataAccess.framework/Frameworks/DADaemonSupport.framework/DATokenRegistrationRequest.h
lechium/iOS1351Headers
6bed3dada5ffc20366b27f7f2300a24a48a6284e
[ "MIT" ]
null
null
null
System/Library/PrivateFrameworks/CDDataAccess.framework/Frameworks/DADaemonSupport.framework/DATokenRegistrationRequest.h
lechium/iOS1351Headers
6bed3dada5ffc20366b27f7f2300a24a48a6284e
[ "MIT" ]
1
2022-03-28T08:21:59.000Z
2022-03-28T08:21:59.000Z
/* * This header is generated by classdump-dyld 1.5 * on Wednesday, October 27, 2021 at 3:18:00 PM Mountain Standard Time * Operating System: Version 13.5.1 (Build 17F80) * Image Source: /System/Library/PrivateFrameworks/CDDataAccess.framework/Frameworks/DADaemonSupport.framework/DADaemonSupport * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos. Updated by Kevin Bradley. */ #import <libobjc.A.dylib/NSURLSessionDelegate.h> #import <libobjc.A.dylib/NSURLSessionTaskDelegate.h> #import <libobjc.A.dylib/NSURLSessionDataDelegate.h> @protocol DATokenRegistrationDelegate; @class DARefreshWrapper, NSString, NSData, NSMutableURLRequest, NSURLSession, NSURLSessionDataTask, AKAppleIDSession; @interface DATokenRegistrationRequest : NSObject <NSURLSessionDelegate, NSURLSessionTaskDelegate, NSURLSessionDataDelegate> { BOOL _finished; id<DATokenRegistrationDelegate> _delegate; DARefreshWrapper* _wrapper; NSString* _onBehalfOfBundleIdentifier; NSData* _token; NSString* _pushKey; NSMutableURLRequest* _request; NSURLSession* _session; NSURLSessionDataTask* _task; AKAppleIDSession* _hsa2Session; } @property (assign,nonatomic,__weak) DARefreshWrapper * wrapper; //@synthesize wrapper=_wrapper - In the implementation block @property (nonatomic,retain) NSString * onBehalfOfBundleIdentifier; //@synthesize onBehalfOfBundleIdentifier=_onBehalfOfBundleIdentifier - In the implementation block @property (assign,nonatomic,__weak) NSData * token; //@synthesize token=_token - In the implementation block @property (assign,nonatomic,__weak) NSString * pushKey; //@synthesize pushKey=_pushKey - In the implementation block @property (nonatomic,retain) AKAppleIDSession * hsa2Session; //@synthesize hsa2Session=_hsa2Session - In the implementation block @property (assign,nonatomic) BOOL finished; //@synthesize finished=_finished - In the implementation block @property (assign,nonatomic,__weak) id<DATokenRegistrationDelegate> delegate; //@synthesize delegate=_delegate - In the implementation block @property (nonatomic,retain) NSMutableURLRequest * request; //@synthesize request=_request - In the implementation block @property (nonatomic,retain) NSURLSession * session; //@synthesize session=_session - In the implementation block @property (nonatomic,retain) NSURLSessionDataTask * task; //@synthesize task=_task - In the implementation block @property (readonly) unsigned long long hash; @property (readonly) Class superclass; @property (copy,readonly) NSString * description; @property (copy,readonly) NSString * debugDescription; +(id)requestWithToken:(id)arg1 pushKey:(id)arg2 wrapper:(id)arg3 onBehalfOf:(id)arg4 ; -(NSData *)token; -(id<DATokenRegistrationDelegate>)delegate; -(void)setDelegate:(id<DATokenRegistrationDelegate>)arg1 ; -(void)cancel; -(void)setFinished:(BOOL)arg1 ; -(BOOL)finished; -(NSURLSession *)session; -(void)setSession:(NSURLSession *)arg1 ; -(void)setRequest:(NSMutableURLRequest *)arg1 ; -(NSMutableURLRequest *)request; -(void)URLSession:(id)arg1 didBecomeInvalidWithError:(id)arg2 ; -(void)URLSession:(id)arg1 didReceiveChallenge:(id)arg2 completionHandler:(/*^block*/id)arg3 ; -(void)URLSession:(id)arg1 task:(id)arg2 didReceiveChallenge:(id)arg3 completionHandler:(/*^block*/id)arg4 ; -(void)URLSession:(id)arg1 task:(id)arg2 didCompleteWithError:(id)arg3 ; -(void)URLSession:(id)arg1 dataTask:(id)arg2 didReceiveData:(id)arg3 ; -(void)URLSession:(id)arg1 dataTask:(id)arg2 didReceiveResponse:(id)arg3 completionHandler:(/*^block*/id)arg4 ; -(NSURLSessionDataTask *)task; -(void)setTask:(NSURLSessionDataTask *)arg1 ; -(void)setToken:(NSData *)arg1 ; -(NSString *)pushKey; -(void)setPushKey:(NSString *)arg1 ; -(NSString *)onBehalfOfBundleIdentifier; -(DARefreshWrapper *)wrapper; -(void)setWrapper:(DARefreshWrapper *)arg1 ; -(void)setOnBehalfOfBundleIdentifier:(NSString *)arg1 ; -(id)initWithToken:(id)arg1 pushKey:(id)arg2 wrapper:(id)arg3 onBehalfOf:(id)arg4 ; -(void)_handleAuthenticationChallenge:(id)arg1 completionHandler:(/*^block*/id)arg2 ; -(BOOL)_canAuthenticateAgainstProtectionSpace:(id)arg1 ; -(void)_reallyHandleAuthenticationChallenge:(id)arg1 completionHandler:(/*^block*/id)arg2 ; -(void)sendRegistrationRequestForAccount:(id)arg1 ; -(AKAppleIDSession *)hsa2Session; -(void)setHsa2Session:(AKAppleIDSession *)arg1 ; @end
59.7375
189
0.720444
da02ce0959cfd92195370b28e336833af64b484b
2,274
h
C
WinSys/ServiceInfo.h
fengjixuchui/ProcExpX
1fd3b420535855651e3cfbbc347ccaf95a974f4b
[ "MIT" ]
51
2020-05-31T18:59:29.000Z
2022-03-07T06:26:42.000Z
WinSys/ServiceInfo.h
MeeSong/ProcExpX
1bfb89175bf71a6e1e8ba681932c2c5327ae4b44
[ "MIT" ]
1
2021-10-09T10:30:32.000Z
2021-10-09T10:30:32.000Z
WinSys/ServiceInfo.h
MeeSong/ProcExpX
1bfb89175bf71a6e1e8ba681932c2c5327ae4b44
[ "MIT" ]
16
2020-05-31T18:59:56.000Z
2022-03-10T02:54:28.000Z
#pragma once #include <string> #include <winsvc.h> namespace WinSys { enum class ServiceEnumType { Active = SERVICE_ACTIVE, Inactive = SERVICE_INACTIVE, All = Active | Inactive }; enum class ServiceType { FileSystemDriver = SERVICE_FILE_SYSTEM_DRIVER, KernelDriver = SERVICE_KERNEL_DRIVER, Win32OwnProcess = SERVICE_WIN32_OWN_PROCESS, Win32SharedProcess = SERVICE_WIN32_SHARE_PROCESS, InteractiveProcess = SERVICE_INTERACTIVE_PROCESS, UserService = SERVICE_USER_SERVICE, UserServiceInstance = SERVICE_USERSERVICE_INSTANCE, PackageService = SERVICE_PKG_SERVICE, }; DEFINE_ENUM_FLAG_OPERATORS(ServiceType); enum class ServiceState { Unknown = 0, ContinuePending = SERVICE_CONTINUE_PENDING, PausePending = SERVICE_PAUSE_PENDING, Paused = SERVICE_PAUSED, Running = SERVICE_RUNNING, StartPending = SERVICE_START_PENDING, StopPending = SERVICE_STOP_PENDING, Stopped = SERVICE_STOPPED }; enum class ServiceControlsAccepted { NetBindChange = SERVICE_ACCEPT_NETBINDCHANGE, ParamChange = SERVICE_ACCEPT_PARAMCHANGE, PauseContinue = SERVICE_ACCEPT_PAUSE_CONTINUE, Preshutdown = SERVICE_ACCEPT_PRESHUTDOWN, Shutdown = SERVICE_ACCEPT_SHUTDOWN, Stop = SERVICE_ACCEPT_STOP, HardwareProfileChange = SERVICE_ACCEPT_HARDWAREPROFILECHANGE, PowerEvent = SERVICE_ACCEPT_POWEREVENT, SessionChange = SERVICE_ACCEPT_SESSIONCHANGE }; DEFINE_ENUM_FLAG_OPERATORS(ServiceControlsAccepted); enum class ServiceFlags { None = 0, RunsInSystemProcess = SERVICE_RUNS_IN_SYSTEM_PROCESS }; struct ServiceStatusProcess { ServiceType Type; ServiceState CurrentState; ServiceControlsAccepted ControlsAccepted; uint32_t Win32ExitCode; uint32_t ServiceSpecificExitCode; uint32_t CheckPoint; uint32_t WaitHint; uint32_t ProcessId; ServiceFlags Flags; }; static_assert(sizeof(ServiceStatusProcess) == sizeof(SERVICE_STATUS_PROCESS)); struct ServiceInfo { friend class ServiceManager; friend class Service; const std::wstring& GetName() const { return _name; } const std::wstring& GetDisplayName() const { return _displayName; } const ServiceStatusProcess& GetStatusProcess() const { return _status; } private: std::wstring _name, _displayName; ServiceStatusProcess _status; }; }
25.550562
79
0.791557
da031b93e1828dc83084ab29ef108eb203c42089
3,313
c
C
kernel/linux-5.4/fs/xfs/kmem.c
josehu07/SplitFS
d7442fa67a17de7057664f91defbfdbf10dd7f4a
[ "Apache-2.0" ]
27
2021-10-04T18:56:52.000Z
2022-03-28T08:23:06.000Z
kernel/linux-5.4/fs/xfs/kmem.c
josehu07/SplitFS
d7442fa67a17de7057664f91defbfdbf10dd7f4a
[ "Apache-2.0" ]
1
2022-01-12T04:05:36.000Z
2022-01-16T15:48:42.000Z
kernel/linux-5.4/fs/xfs/kmem.c
josehu07/SplitFS
d7442fa67a17de7057664f91defbfdbf10dd7f4a
[ "Apache-2.0" ]
6
2021-11-02T10:56:19.000Z
2022-03-06T11:58:20.000Z
// SPDX-License-Identifier: GPL-2.0 /* * Copyright (c) 2000-2005 Silicon Graphics, Inc. * All Rights Reserved. */ #include "xfs.h" #include <linux/backing-dev.h> #include "xfs_message.h" #include "xfs_trace.h" void * kmem_alloc(size_t size, xfs_km_flags_t flags) { int retries = 0; gfp_t lflags = kmem_flags_convert(flags); void *ptr; trace_kmem_alloc(size, flags, _RET_IP_); do { ptr = kmalloc(size, lflags); if (ptr || (flags & KM_MAYFAIL)) return ptr; if (!(++retries % 100)) xfs_err(NULL, "%s(%u) possible memory allocation deadlock size %u in %s (mode:0x%x)", current->comm, current->pid, (unsigned int)size, __func__, lflags); congestion_wait(BLK_RW_ASYNC, HZ/50); } while (1); } /* * __vmalloc() will allocate data pages and auxillary structures (e.g. * pagetables) with GFP_KERNEL, yet we may be under GFP_NOFS context here. Hence * we need to tell memory reclaim that we are in such a context via * PF_MEMALLOC_NOFS to prevent memory reclaim re-entering the filesystem here * and potentially deadlocking. */ static void * __kmem_vmalloc(size_t size, xfs_km_flags_t flags) { unsigned nofs_flag = 0; void *ptr; gfp_t lflags = kmem_flags_convert(flags); if (flags & KM_NOFS) nofs_flag = memalloc_nofs_save(); ptr = __vmalloc(size, lflags, PAGE_KERNEL); if (flags & KM_NOFS) memalloc_nofs_restore(nofs_flag); return ptr; } /* * Same as kmem_alloc_large, except we guarantee the buffer returned is aligned * to the @align_mask. We only guarantee alignment up to page size, we'll clamp * alignment at page size if it is larger. vmalloc always returns a PAGE_SIZE * aligned region. */ void * kmem_alloc_io(size_t size, int align_mask, xfs_km_flags_t flags) { void *ptr; trace_kmem_alloc_io(size, flags, _RET_IP_); if (WARN_ON_ONCE(align_mask >= PAGE_SIZE)) align_mask = PAGE_SIZE - 1; ptr = kmem_alloc(size, flags | KM_MAYFAIL); if (ptr) { if (!((uintptr_t)ptr & align_mask)) return ptr; kfree(ptr); } return __kmem_vmalloc(size, flags); } void * kmem_alloc_large(size_t size, xfs_km_flags_t flags) { void *ptr; trace_kmem_alloc_large(size, flags, _RET_IP_); ptr = kmem_alloc(size, flags | KM_MAYFAIL); if (ptr) return ptr; return __kmem_vmalloc(size, flags); } void * kmem_realloc(const void *old, size_t newsize, xfs_km_flags_t flags) { int retries = 0; gfp_t lflags = kmem_flags_convert(flags); void *ptr; trace_kmem_realloc(newsize, flags, _RET_IP_); do { ptr = krealloc(old, newsize, lflags); if (ptr || (flags & KM_MAYFAIL)) return ptr; if (!(++retries % 100)) xfs_err(NULL, "%s(%u) possible memory allocation deadlock size %zu in %s (mode:0x%x)", current->comm, current->pid, newsize, __func__, lflags); congestion_wait(BLK_RW_ASYNC, HZ/50); } while (1); } void * kmem_zone_alloc(kmem_zone_t *zone, xfs_km_flags_t flags) { int retries = 0; gfp_t lflags = kmem_flags_convert(flags); void *ptr; trace_kmem_zone_alloc(kmem_cache_size(zone), flags, _RET_IP_); do { ptr = kmem_cache_alloc(zone, lflags); if (ptr || (flags & KM_MAYFAIL)) return ptr; if (!(++retries % 100)) xfs_err(NULL, "%s(%u) possible memory allocation deadlock in %s (mode:0x%x)", current->comm, current->pid, __func__, lflags); congestion_wait(BLK_RW_ASYNC, HZ/50); } while (1); }
23.834532
80
0.703894
da03454241c416989cb6d8acb563446af29b5761
1,000
h
C
dbus_services.h
coenvl/dbus_modbustcp
968d5cc854eb2ce37255892335149ebfd5f0aae1
[ "MIT" ]
null
null
null
dbus_services.h
coenvl/dbus_modbustcp
968d5cc854eb2ce37255892335149ebfd5f0aae1
[ "MIT" ]
null
null
null
dbus_services.h
coenvl/dbus_modbustcp
968d5cc854eb2ce37255892335149ebfd5f0aae1
[ "MIT" ]
null
null
null
#ifndef DBUS_SERVICES_H #define DBUS_SERVICES_H #include <QObject> #include <QDBusConnection> #include <QDBusConnectionInterface> #include "dbus_service.h" class DBusServices : public QObject { Q_OBJECT public: DBusServices(const QDBusConnection &dbus, QObject *parent = 0); ~DBusServices(); void initialScan(); int getCount() const { return mServicesByName.count(); } bool getConnected(const QString &serviceName); DBusService * getService(QString deviceType, int deviceInstance); signals: void dbusServiceFound(DBusService *service); void dbusServiceConnected(DBusService *service); void dbusServiceDisconnected(DBusService *service); private slots: void serviceOwnerChanged(const QString &name, const QString &oldOwner, const QString &newOwner); private: void addService(const QString &name); void removeService(const QString &name); QMap<QString, DBusService *> mServicesByName; QMap<QString, QMultiMap<int, DBusService *> > mServiceByType; QDBusConnection mDBus; }; #endif
27.027027
97
0.789
da03916ef374438d8982d82a123fbcb4020bb74c
541
h
C
fltk/fltk-1.3.5/GL/glut.h
LeeSawyer/ElmaMazeSolver
3c2443dc1d75df945b72f8bd7915657d3fd059e0
[ "MIT" ]
4
2020-05-15T03:43:53.000Z
2021-06-05T16:21:31.000Z
fltk/fltk-1.3.5/GL/glut.h
LeeSawyer/ElmaMazeSolver
3c2443dc1d75df945b72f8bd7915657d3fd059e0
[ "MIT" ]
1
2021-04-19T19:48:04.000Z
2021-04-19T19:48:04.000Z
fltk/fltk-1.3.5/GL/glut.h
LeeSawyer/ElmaMazeSolver
3c2443dc1d75df945b72f8bd7915657d3fd059e0
[ "MIT" ]
8
2019-04-21T06:06:11.000Z
2020-05-04T15:20:36.000Z
// // "$Id$" // // GLUT compatibility header for the Fast Light Tool Kit (FLTK). // // Copyright 1998-2010 by Bill Spitzak and others. // // This library is free software. Distribution and use rights are outlined in // the file "COPYING" which should have been included with this file. If this // file is missing or damaged, see the license at: // // http://www.fltk.org/COPYING.php // // Please report all bugs and problems on the following page: // // http://www.fltk.org/str.php // #include <FL/glut.H> // // End of "$Id$". //
22.541667
78
0.667283
fffaff628e4655bb791983d5ce1de21b9d285e2f
19,853
c
C
dist/linux/genometools/src/tools/gt_hop.c
thmourikis/erv_annotator
448b2dfc2972f9bf4e743df36fe0232813590fec
[ "MIT" ]
null
null
null
dist/linux/genometools/src/tools/gt_hop.c
thmourikis/erv_annotator
448b2dfc2972f9bf4e743df36fe0232813590fec
[ "MIT" ]
1
2018-09-30T00:45:55.000Z
2018-09-30T00:45:55.000Z
dist/linux/genometools/src/tools/gt_hop.c
thmourikis/erv_annotator
448b2dfc2972f9bf4e743df36fe0232813590fec
[ "MIT" ]
null
null
null
/* Copyright (c) 2012 Giorgio Gonnella <[email protected]> Copyright (c) 2012 Center for Bioinformatics, University of Hamburg Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include "core/basename_api.h" #include "core/ma.h" #include "core/undef_api.h" #include "core/seq_iterator_fastq_api.h" #include "core/unused_api.h" #include "extended/feature_type.h" #include "extended/gtdatahelp.h" #include "extended/hpol_processor.h" #include "tools/gt_hop.h" typedef struct { GtStr *encseqinput, *annotation, *map, *outfilename, *atype, *outprefix; unsigned long hmin, clenmax, read_hmin, covmin, mapqmin; bool verbose, map_is_sam, rchk, stats, allow_partial, allow_multiple, aggressive, moderate, conservative, expert, state_of_truth; double altmax, refmin; GtStrArray *readset; } GtHopArguments; static void* gt_hop_arguments_new(void) { GtHopArguments *arguments = gt_malloc(sizeof (*arguments)); arguments->encseqinput = gt_str_new(); arguments->annotation = gt_str_new(); arguments->atype = gt_str_new(); arguments->map = gt_str_new(); arguments->outfilename = gt_str_new(); arguments->outprefix = gt_str_new(); arguments->readset = gt_str_array_new(); return arguments; } static void gt_hop_arguments_delete(void *tool_arguments) { GtHopArguments *arguments = tool_arguments; if (!arguments) return; gt_str_delete(arguments->encseqinput); gt_str_delete(arguments->annotation); gt_str_delete(arguments->atype); gt_str_delete(arguments->map); gt_str_delete(arguments->outfilename); gt_str_delete(arguments->outprefix); gt_str_array_delete(arguments->readset); gt_free(arguments); } static GtOptionParser* gt_hop_option_parser_new(void *tool_arguments) { GtHopArguments *arguments = tool_arguments; GtOptionParser *op; GtOption *option, *ann_option, *aggressive_option, *conservative_option, *moderate_option, *expert_option, *o_option, *reads_option, *stats_option; gt_assert(arguments); /* init */ op = gt_option_parser_new("-<mode> -ref <encseq> -map <sam/bam> " "-reads <fastq> [options...]", "Reference-based homopolymer error correction."); /* -ref */ option = gt_option_new_string("ref", "reference sequence in GtEncseq format\n" "(can be prepared using gt encseq encode)", arguments->encseqinput, NULL); gt_option_is_mandatory(option); gt_option_hide_default(option); gt_option_parser_add_option(op, option); /* -map */ option = gt_option_new_string("map", "mapping of reads to reference\n" "it must be in SAM/BAM format, and sorted by coordinate\n" "(can be prepared e.g. using: samtools sort)", arguments->map, NULL); gt_option_is_mandatory(option); gt_option_hide_default(option); gt_option_parser_add_option(op, option); /* -sam */ option = gt_option_new_bool("sam", "mapping file is SAM\ndefault: BAM", &arguments->map_is_sam, false); gt_option_hide_default(option); gt_option_parser_add_option(op, option); /* -aggressive */ aggressive_option = gt_option_new_bool("aggressive", "correct as much as possible", &arguments->aggressive, false); gt_option_hide_default(aggressive_option); gt_option_parser_add_option(op, aggressive_option); /* -moderate */ moderate_option = gt_option_new_bool("moderate", "mediate between sensitivity and precision", &arguments->moderate, false); gt_option_hide_default(moderate_option); gt_option_exclude(moderate_option, aggressive_option); gt_option_parser_add_option(op, moderate_option); /* -conservative */ conservative_option = gt_option_new_bool("conservative", "correct only most likely errors", &arguments->conservative, false); gt_option_hide_default(conservative_option); gt_option_exclude(conservative_option, aggressive_option); gt_option_exclude(conservative_option, moderate_option); gt_option_parser_add_option(op, conservative_option); /* -expert */ expert_option = gt_option_new_bool("expert", "manually select correction criteria", &arguments->expert, false); gt_option_hide_default(expert_option); gt_option_exclude(expert_option, aggressive_option); gt_option_exclude(expert_option, moderate_option); gt_option_exclude(expert_option, conservative_option); gt_option_parser_add_option(op, expert_option); /* -reads */ reads_option = gt_option_new_filename_array("reads", "uncorrected read file(s) in FastQ format;\n" "the corrected reads are output in the currect working directory " "in files which are named as the input files, each prepended " "by a prefix (see -outprefix option)\n" "-reads allows one to output the reads in the same order as in the input " "and is mandatory if the SAM contains more than a single primary " "alignment for each read (e.g. output of bwasw)\n" "see also -o option as an alternative", arguments->readset); gt_option_parser_add_option(op, reads_option); /* -outprefix */ option = gt_option_new_string("outprefix", "prefix for output filenames (corrected reads)" "when -reads is specified\n" "the prefix is prepended to each input filename", arguments->outprefix, "hop_"); gt_option_imply(option, reads_option); gt_option_parser_add_option(op, option); /* -o */ o_option = gt_option_new_string("o", "output file for corrected reads\n" "(see also -reads/-outprefix) if -o is used, reads are output " "in a single file in the order they are found in the SAM file " "(which usually differ from the original order)\n" "this will only work if the reads were aligned with a software which " "only includes 1 alignment for each read (e.g. bwa)", arguments->outfilename, NULL); gt_option_exclude(reads_option, o_option); gt_option_is_mandatory_either(reads_option, o_option); gt_option_parser_add_option(op, o_option); /* -hmin */ option = gt_option_new_ulong_min("hmin", "minimal homopolymer length in reference\n" "minimal number of consecutive identical symbols on the reference", &arguments->hmin, 3UL, 2UL); gt_option_is_extended_option(option); gt_option_imply(option, expert_option); gt_option_parser_add_option(op, option); /* -read-hmin */ option = gt_option_new_ulong_min("read-hmin", "minimal homopolymer length in reads", &arguments->read_hmin, 2UL, 1UL); gt_option_is_extended_option(option); gt_option_imply(option, expert_option); gt_option_parser_add_option(op, option); /* -altmax */ option = gt_option_new_double_min_max("altmax", "max support of alternate homopol. length;\n" "e.g. 0.8 means: do not correct any read if homop. length in more than " "80\% of the reads has the same value, different from the reference\n" "if altmax is set to 1.0 reads are always corrected", &arguments->altmax, (double) 0.8, 0.0, (double) 1.0); gt_option_is_extended_option(option); gt_option_imply(option, expert_option); gt_option_parser_add_option(op, option); /* -refmin */ option = gt_option_new_double_min_max("refmin", "min support of reference homopol. length;\n" "e.g. 0.1 means: do not correct any read if ref. homop. length " "is not present in at least 10\% of the reads\n" "if refmin is set to 0.0 reads are always corrected", &arguments->refmin, (double) 0.1, 0.0, (double) 1.0); gt_option_hide_default(option); gt_option_is_extended_option(option); gt_option_imply(option, expert_option); gt_option_parser_add_option(op, option); /* -mapqmin */ option = gt_option_new_ulong("mapqmin", "minimal mapping quality", &arguments->mapqmin, 21UL); gt_option_is_extended_option(option); gt_option_imply(option, expert_option); gt_option_parser_add_option(op, option); /* -covmin */ option = gt_option_new_ulong_min("covmin", "minimal coverage;\n" "e.g. 5 means: do not correct any read if coverage " "(number of reads mapped over whole homopolymer) " "is less than 5\n" "if covmin is set to 1 reads are always corrected", &arguments->covmin, 1UL, 1UL); gt_option_is_extended_option(option); gt_option_imply(option, expert_option); gt_option_parser_add_option(op, option); /* -allow-multiple */ option = gt_option_new_bool("allow-muliple", "allow multiple corrections in a read", &arguments->allow_multiple, false); gt_option_is_extended_option(option); gt_option_imply(option, expert_option); gt_option_parser_add_option(op, option); /* -clenmax */ option = gt_option_new_ulong("clenmax", "maximal correction length\n" "default: unlimited", &arguments->clenmax, GT_UNDEF_ULONG); gt_option_hide_default(option); gt_option_is_extended_option(option); gt_option_imply(option, expert_option); gt_option_parser_add_option(op, option); /* -ann */ ann_option = gt_option_new_string("ann", "annotation of reference sequence\n" "it must be sorted by coordinates on the reference sequence\n" "(this can be e.g. done using: gt gff3 -sort)\n" "if -ann is used, corrections will be limited to homopolymers starting" "or ending inside the feature type indicated by -ft option" "format: sorted GFF3", arguments->annotation, NULL); gt_option_is_extended_option(ann_option); gt_option_parser_add_option(op, ann_option); /* -ft */ option = gt_option_new_string("ft", "feature type to use when -ann option " "is specified", arguments->atype, gt_ft_CDS); gt_option_is_extended_option(option); gt_option_imply(option, ann_option); gt_option_parser_add_option(op, option); /* -stats */ stats_option = gt_option_new_bool("stats", "output statistics for each " "correction position", &arguments->stats, false); gt_option_is_development_option(stats_option); gt_option_parser_add_option(op, stats_option); /* -state-of-truth */ option = gt_option_new_bool("state-of-truth", "similar to -stats in -aggressive " "mode, but used to determine the \"state of truth\" set of corrections " "for evaluation; currently the only difference is that if multiple hits " "are present for a read, they are used all independently for " "correction (-reads must be set)", &arguments->state_of_truth, false); gt_option_is_development_option(option); gt_option_exclude(option, stats_option); gt_option_exclude(option, aggressive_option); gt_option_exclude(option, moderate_option); gt_option_exclude(option, conservative_option); gt_option_exclude(option, expert_option); gt_option_parser_add_option(op, option); /* -rchk */ option = gt_option_new_bool("rchk", "debug option; check that ref region " "of aligned segments is compatible with encseq data", &arguments->rchk, false); gt_option_is_development_option(option); gt_option_parser_add_option(op, option); /* -allow-partial */ option = gt_option_new_bool("allow-partial", "allow insertions also if there are less gaps in read homopolymer " "than the difference in length with the reference\n" "(at most as many symbols as the gaps will be inserted)", &arguments->allow_partial, false); gt_option_is_development_option(option); gt_option_parser_add_option(op, option); /* -v */ option = gt_option_new_verbose(&arguments->verbose); gt_option_parser_add_option(op, option); gt_option_parser_set_comment_func(op, gt_gtdata_show_help, NULL); gt_option_parser_set_min_max_args(op, 0, 0); return op; } int gt_hop_arguments_check(GT_UNUSED int rest_argc, void *tool_arguments, GtError* err) { GtHopArguments *args = (GtHopArguments*) tool_arguments; int had_err = 0; if (!args->aggressive && !args->moderate && !args->conservative && !args->expert && !args->state_of_truth) { gt_error_set(err, "Select correction mode: " "-aggressive, -moderate, -conservative or -expert"); had_err = -1; } else if (args->aggressive || args->state_of_truth) { args->hmin = 3UL; args->read_hmin = 1UL; args->altmax = (double) 1.00; args->refmin = (double) 0.00; args->mapqmin = 0UL; args->covmin = 1UL; args->clenmax = ULONG_MAX; args->allow_multiple = true; } else if (args->moderate) { args->hmin = 3UL; args->read_hmin = 1UL; args->altmax = (double) 0.99; args->refmin = (double) 0.00; args->mapqmin = 10UL; args->covmin = 1UL; args->clenmax = ULONG_MAX; args->allow_multiple = true; } else if (args->conservative) { args->hmin = 3UL; args->read_hmin = 2UL; args->altmax = (double) 0.80; args->refmin = (double) 0.10; args->mapqmin = 21UL; args->covmin = 1UL; args->clenmax = ULONG_MAX; args->allow_multiple = false; } if (gt_str_length(args->outprefix) == 0) { gt_error_set(err, "outprefix cannot be an empty string"); had_err = -1; } return had_err; } static int gt_hop_runner(GT_UNUSED int argc, GT_UNUSED const char **argv, GT_UNUSED int parsed_args, void *tool_arguments, GtError *err) { GtHopArguments *arguments = tool_arguments; GtEncseq *encseq; GtEncseqLoader *el; GtLogger *v_logger; int had_err = 0; gt_error_check(err); gt_assert(arguments); v_logger = gt_logger_new(arguments->verbose, GT_LOGGER_DEFLT_PREFIX, stdout); gt_logger_log(v_logger, "Correction parameters:"); gt_logger_log(v_logger, "hmin = %lu", arguments->hmin); gt_logger_log(v_logger, "read-hmin = %lu", arguments->read_hmin); gt_logger_log(v_logger, "altmax = %.2f", arguments->altmax); gt_logger_log(v_logger, "refmin = %.2f", arguments->refmin); gt_logger_log(v_logger, "mapqmin = %lu", arguments->mapqmin); gt_logger_log(v_logger, "covmin = %lu", arguments->covmin); if (arguments->clenmax == ULONG_MAX) gt_logger_log(v_logger, "clenmax = unlimited"); else gt_logger_log(v_logger, "clenmax = %lu", arguments->clenmax); gt_logger_log(v_logger, "allow-multiple = %s", arguments->allow_multiple ? "yes" : "no"); if (gt_str_length(arguments->annotation) > 0) gt_logger_log(v_logger, "restrict to %s feature in annotation %s", gt_str_get(arguments->atype), gt_str_get(arguments->annotation)); gt_assert(gt_str_length(arguments->encseqinput) > 0); el = gt_encseq_loader_new(); encseq = gt_encseq_loader_load(el, gt_str_get(arguments->encseqinput), err); if (encseq == NULL) { had_err = -1; } if (!had_err) { GtHpolProcessor *hpp; GtSeqposClassifier *spc = NULL; GtSamfileIterator *sfi = NULL; GtSamfileEncseqMapping *sem = NULL; GtAlignedSegmentsPile *asp = NULL; GtFile *outfile = NULL; GtAlphabet *dna = gt_alphabet_new_dna(); GtSeqIterator **readset_iters = NULL; GtStrArray **infiles = NULL; GtFile **outfiles = NULL; unsigned long nfiles = 0, i; hpp = gt_hpol_processor_new(encseq, arguments->hmin); if (gt_str_length(arguments->map) > 0) { if (!arguments->map_is_sam) sfi = gt_samfile_iterator_new_bam(gt_str_get(arguments->map), dna, err); else sfi = gt_samfile_iterator_new_sam(gt_str_get(arguments->map), dna, NULL, err); if (sfi == NULL) had_err = -1; sem = gt_samfile_encseq_mapping_new(sfi, encseq, err); if (sem == NULL) had_err = -1; if (!had_err) { asp = gt_aligned_segments_pile_new(sfi, sem); if (!arguments->rchk) gt_hpol_processor_enable_segments_hlen_adjustment(hpp, asp, arguments->read_hmin, arguments->altmax, arguments->refmin, arguments->mapqmin, arguments->covmin, arguments->allow_partial, arguments->allow_multiple, arguments->clenmax); else gt_hpol_processor_enable_aligned_segments_refregionscheck(hpp, asp); if (arguments->stats || arguments->state_of_truth) gt_hpol_processor_enable_statistics_output(hpp, arguments->state_of_truth, NULL); if (!had_err && gt_str_length(arguments->outfilename) > 0) { outfile = gt_file_new(gt_str_get(arguments->outfilename), "w", err); if (outfile == NULL) had_err = -1; else gt_hpol_processor_enable_direct_segments_output(hpp, outfile); } else if (!had_err) { nfiles = gt_str_array_size(arguments->readset); if (!had_err && nfiles > 0) { GtStr *outfn = gt_str_new(); infiles = gt_calloc((size_t)nfiles, sizeof (*infiles)); outfiles = gt_calloc((size_t)nfiles, sizeof (*outfiles)); readset_iters = gt_malloc(sizeof (*readset_iters) * nfiles); for (i = 0; i < nfiles && !had_err; i++) { char *bn; gt_str_set(outfn, gt_str_get(arguments->outprefix)); infiles[i] = gt_str_array_new(); gt_str_array_add_cstr(infiles[i], gt_str_array_get(arguments->readset, i)); bn = gt_basename(gt_str_array_get(arguments->readset, i)); gt_str_append_cstr(outfn, bn); outfiles[i] = gt_file_new(gt_str_get(outfn), "w", err); if (outfiles[i] == NULL) had_err = -1; readset_iters[i] = gt_seq_iterator_fastq_new(infiles[i], err); if (readset_iters[i] == NULL) had_err = -1; gt_seq_iterator_fastq_relax_check_of_quality_description( (GtSeqIteratorFastQ*)readset_iters[i]); gt_free(bn); } if (!had_err) gt_hpol_processor_enable_sorted_segments_output(hpp, nfiles, readset_iters, outfiles); gt_str_delete(outfn); } } } } if (!had_err && gt_str_length(arguments->annotation) > 0) { spc = gt_seqpos_classifier_new(gt_str_get(arguments->annotation), gt_str_get(arguments->atype)); gt_hpol_processor_restrict_to_feature_type(hpp, spc); } if (!had_err) had_err = gt_hpol_processor_run(hpp, v_logger, err); gt_aligned_segments_pile_delete(asp); gt_samfile_iterator_delete(sfi); gt_samfile_encseq_mapping_delete(sem); gt_seqpos_classifier_delete(spc); gt_file_delete(outfile); gt_hpol_processor_delete(hpp); for (i = 0; i < nfiles; i++) { gt_assert(infiles != NULL); gt_assert(readset_iters != NULL); gt_assert(outfiles != NULL); gt_str_array_delete(infiles[i]); gt_seq_iterator_delete(readset_iters[i]); gt_file_delete(outfiles[i]); } gt_free(infiles); gt_free(outfiles); gt_free(readset_iters); gt_alphabet_delete(dna); } gt_logger_delete(v_logger); gt_encseq_delete(encseq); gt_encseq_loader_delete(el); return had_err; } GtTool* gt_hop(void) { return gt_tool_new(gt_hop_arguments_new, gt_hop_arguments_delete, gt_hop_option_parser_new, gt_hop_arguments_check, gt_hop_runner); }
37.039179
80
0.691079
fffce9344e6905226ec990f858986ab3e8ab205c
2,031
h
C
FuGenEditor/View/NodeEditor/FuGenNodeEditor.h
sereslorant/fu_gen
cc75d307189e7e3d560a94d32072b97deb94b6e5
[ "MIT" ]
1
2020-05-21T06:11:18.000Z
2020-05-21T06:11:18.000Z
FuGenEditor/View/NodeEditor/FuGenNodeEditor.h
sereslorant/fu_gen
cc75d307189e7e3d560a94d32072b97deb94b6e5
[ "MIT" ]
null
null
null
FuGenEditor/View/NodeEditor/FuGenNodeEditor.h
sereslorant/fu_gen
cc75d307189e7e3d560a94d32072b97deb94b6e5
[ "MIT" ]
null
null
null
#ifndef FUGENNODEEDITOR_H #define FUGENNODEEDITOR_H #include <Presenter/PipelinePresenter.h> #include <View/NodeEditor/TurtleNodeEditor.h> #include <View/NodeEditor/HypergraphNodeEditor.h> #include <View/NodeEditor/MeshNodeEditor.h> #include <QStackedWidget> class FuGenNodeEditor : public QStackedWidget, public IPipelineListener { Q_OBJECT private: // class NodeListener : public INodeListener { private: FuGenNodeEditor *NodeEditor; QWidget *EditorWidget; // public: // virtual void OnClicked() override { NodeEditor->setCurrentWidget(EditorWidget); } // NodeListener(FuGenNodeEditor *node_editor,QWidget *editor_widget) :NodeEditor(node_editor),EditorWidget(editor_widget) {} // virtual ~NodeListener() override {} }; // std::list<INodeListener *> AllocatedListeners; // public: // virtual void TurtleNodeAdded(TurtleNodePresenter *new_node) override { TurtleNodeEditor *NewWidget = new TurtleNodeEditor(new_node); insertWidget(0,NewWidget); setCurrentWidget(NewWidget); // NodeListener *NewListener = new NodeListener(this,NewWidget); new_node->AddListener(NewListener); AllocatedListeners.push_back(NewListener); } // virtual void HypergraphNodeAdded(HypergraphNodePresenter *new_node) override { HypergraphNodeEditor *NewWidget = new HypergraphNodeEditor(new_node); insertWidget(0,NewWidget); setCurrentWidget(NewWidget); // NodeListener *NewListener = new NodeListener(this,NewWidget); new_node->AddListener(NewListener); AllocatedListeners.push_back(NewListener); } // virtual void MeshNodeAdded(MeshNodePresenter *new_node) override { MeshNodeEditor *NewWidget = new MeshNodeEditor(new_node); insertWidget(0,NewWidget); setCurrentWidget(NewWidget); // NodeListener *NewListener = new NodeListener(this,NewWidget); new_node->AddListener(NewListener); AllocatedListeners.push_back(NewListener); } // FuGenNodeEditor(QWidget *parent = nullptr); // virtual ~FuGenNodeEditor() override; }; #endif // FUGENNODEEDITOR_H
25.074074
77
0.768587
fffd3651eec4d91ae90e039ac77cad72f902ec2e
238
c
C
docpages/virtual_memory_managment.c
mmjack/Dawn
4bf80421f50cbb942ce28fb9bfbb56cb8bf15305
[ "Fair", "Unlicense" ]
4
2016-10-24T22:25:09.000Z
2021-07-05T15:05:47.000Z
docpages/virtual_memory_managment.c
mmjack/Dawn
4bf80421f50cbb942ce28fb9bfbb56cb8bf15305
[ "Fair", "Unlicense" ]
null
null
null
docpages/virtual_memory_managment.c
mmjack/Dawn
4bf80421f50cbb942ce28fb9bfbb56cb8bf15305
[ "Fair", "Unlicense" ]
1
2016-07-03T08:57:00.000Z
2016-07-03T08:57:00.000Z
/** * @page VMM Virtual memory management * * Virtual memory management is the management of the virtual address space within the OS environment. Virtual address space allows for physical locations to be mapped to virtual ones. * */
34
184
0.764706
fffeee1113bb14f071c2078ef2b2dd7bb2dba735
3,826
h
C
src/liboslexec/constantpool.h
sambler/OpenShadingLanguage
a31bea03eb5e45fac35e59c07c31b386c4706f46
[ "BSD-3-Clause" ]
1
2018-12-22T06:45:41.000Z
2018-12-22T06:45:41.000Z
src/liboslexec/constantpool.h
dneg/OpenShadingLanguage
6aaaadbdf638fde24d7142cc224c6a0c608b60f2
[ "BSD-3-Clause" ]
null
null
null
src/liboslexec/constantpool.h
dneg/OpenShadingLanguage
6aaaadbdf638fde24d7142cc224c6a0c608b60f2
[ "BSD-3-Clause" ]
null
null
null
/* Copyright (c) 2009-2010 Sony Pictures Imageworks Inc., et al. All Rights Reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Sony Pictures Imageworks nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef CONSTANTPOOL_H #define CONSTANTPOOL_H #include <vector> #include <list> #include <boost/foreach.hpp> #include "OpenImageIO/thread.h" using namespace OSL; using namespace OSL::pvt; OSL_NAMESPACE_ENTER namespace pvt { /// A ConstantPool<T> is a way to allocate room for a small number of /// T's at a time, such that the memory allocated will NEVER change its /// address or be deallocated until the entire ConstantPool is /// destroyed. Allocating from the pool is completely thread-safe. /// /// It is implemented as a linked list of memory blocks. A request for /// a new allocation tries to fit it in one of the allocated blocks, but /// if it won't fit anywhere, it makes a new block and adds it to the /// head of the list. template<class T> class ConstantPool { public: /// Allocate a new pool of T's. The quanta, if supplied, is the /// number of T's to malloc at a time. ConstantPool (size_t quanta = 1000000) : m_quanta(quanta), m_total(0) { } ~ConstantPool () { } /// Allocate space enough for n T's, and return a pointer to the /// start of that space. T * alloc (size_t n) { OIIO::lock_guard lock (m_mutex); // Check each block in the block list to see if it has enough space BOOST_FOREACH (block_t &block, m_block_list) { size_t s = block.size(); if ((s+n) <= block.capacity()) { // Enough space in this block. Use it. block.resize (s+n); return &block[s]; } } // If we got here, there were no mini-blocks in the list with enough // space. Make a new one. m_block_list.push_front (block_t()); block_t &block (m_block_list.front()); size_t s = std::max (m_quanta, n); block.reserve (s); m_total += s * sizeof(T); block.resize (n); return &block[0]; } private: typedef std::vector<T> block_t; ///< Type of block std::list<block_t> m_block_list; ///< List of memory blocks size_t m_quanta; ///< How big each memory block is (in T's, not bytes) size_t m_total; ///< Total memory allocated (bytes!) OIIO::mutex m_mutex; ///< Thread-safe lock }; }; // namespace OSL::pvt OSL_NAMESPACE_EXIT #endif /* CONSTANTPOOL_H */
37.145631
77
0.7023
0801fb04c873c0bdbfc8f78a6410dfd024caab27
754
c
C
Stellarmap/obj/Release/Stellarmap.assets.code.freezer.c
jamClark/Stellarmap
60a5b0d7a638290ff28ff7ad324d5873648a68b8
[ "MIT" ]
null
null
null
Stellarmap/obj/Release/Stellarmap.assets.code.freezer.c
jamClark/Stellarmap
60a5b0d7a638290ff28ff7ad324d5873648a68b8
[ "MIT" ]
null
null
null
Stellarmap/obj/Release/Stellarmap.assets.code.freezer.c
jamClark/Stellarmap
60a5b0d7a638290ff28ff7ad324d5873648a68b8
[ "MIT" ]
null
null
null
#include <lib.h> #include <config.h> #include <rooms.h> #include "../include.h" inherit LIB_ROOM; void create() { room::create(); SetNoClean(1); SetProperties(([ "login" : ROOM_START ])); SetShort( "The freezer"); SetLong( "The local freezer. Go down to leave."); SetObviousExits("d"); SetExits( ([ "down" : ROOM_START ]) ); call_out("clean_room", MAX_NET_DEAD_TIME); SetNoModify(1); } static void clean_room(){ object ob; foreach(ob in filter(all_inventory(), (: living($1) :))){ string name = last_string_element(base_name(ob),"/"); if(!user_exists(name)) continue; ob->eventDestruct(); } call_out((: clean_room :), MAX_NET_DEAD_TIME); } void init(){ ::init(); }
20.944444
61
0.606101
080398c15fd38cc2c0588797572ba76e445006e7
5,976
c
C
Assignment12DS.c
ankushbhagat124/Practice-Code
880ecc2f435de8d7ab4ba43cd10184aaa85ace37
[ "MIT" ]
null
null
null
Assignment12DS.c
ankushbhagat124/Practice-Code
880ecc2f435de8d7ab4ba43cd10184aaa85ace37
[ "MIT" ]
null
null
null
Assignment12DS.c
ankushbhagat124/Practice-Code
880ecc2f435de8d7ab4ba43cd10184aaa85ace37
[ "MIT" ]
null
null
null
#include <stdio.h> #define SIZE 100 int k = 0, k2 = 0; struct Sparse { float coeff; int expo; }; typedef struct Sparse polynomial; void readpoly(polynomial t[], int size) { float a; int b; for (int i = 0; i < size; i++) { scanf("%f %d", &a, &b); t[i].coeff = a; t[i].expo = b; } } void Add(polynomial p1[], polynomial p2[], polynomial p3[], int size1, int size2) { int i = 0, j = 0; while (i < size1 && j < size2) { if (p1[i].expo > p2[j].expo) { p3[k].expo = p1[i].expo; p3[k].coeff = p1[i].coeff; i++; k++; } else if (p1[i].expo < p2[j].expo) { p3[k].expo = p2[j].expo; p3[k].coeff = p2[j].coeff; j++; k++; } else { p3[k].expo = p1[i].expo; p3[k].coeff = p1[i].coeff + p2[j].coeff; i++, j++; k++; } } while (i < size1) { p3[k].expo = p1[i].expo; p3[k].coeff = p1[i].coeff; i++; k++; } while (j < size2) { p3[k].expo = p2[j].expo; p3[k].coeff = p2[j].coeff; j++; k++; } } void Mul(polynomial p1[], polynomial p2[], polynomial p4[], int size1, int size2) { int count[SIZE] = {0}, pos[SIZE] = {0}; for (int i = 0; i < size1; i++) { for (int j = 0; j < size2; j++) { p4[k2].expo = p1[i].expo + p2[j].expo; if (count[p4[k2].expo] >= 1) { p4[pos[p4[k2].expo]].coeff += (p1[i].coeff * p2[j].coeff); } else { p4[k2].coeff = (p1[i].coeff * p2[j].coeff); count[p4[k2].expo]++; pos[p4[k2].expo] = k2; } k2++; } } } void printpoly(polynomial t[], int size) { for (int i =0; i < size; i++) { if (t[i].coeff != 0.00) { printf("%0.2f %d\n",t[i].coeff, t[i].expo); } } } int main () { polynomial p1[SIZE], p2[SIZE], p3[SIZE], p4[SIZE]; int size1, size2, size3=0, size4 = 0; printf("Enter polynomial1 size: "); scanf("%d", &size1); printf("Enter your polynomial1 in sparse form(Coefficient/Exponent):\n"); readpoly(p1, size1); printf("Enter polynomial2 size: "); scanf("%d", &size2); printf("Enter your polynomial2 in sparse form(Coefficient/Exponent):\n"); readpoly(p2, size2); Add(p1, p2, p3, size1, size2); size3 = k; printf("Addition of Polynomial: \n"); printpoly(p3, size3); Mul(p1, p2, p4, size1, size2); size4 = k2; printf("Multiplication of Polynomial: \n"); printpoly(p4, size4); } /* #include <stdio.h> #define size 100 typedef struct polynomial poly; struct polynomial { float coeff; int exp; }; void readPoly(poly p[], int n) { printf("Enter coefficient and power:\n"); for (int i = 0; i < n; i++) { scanf("%f", &p[i].coeff); scanf("%d", &p[i].exp); } } int addPoly(poly p1[], poly p2[], poly p4[], int n1, int n2) { int i = 0, j = 0, k = 0; while (i < n1 && j < n2) { if (p1[i].exp == p2[j].exp) { p4[k].coeff = p1[i].coeff + p2[j].coeff; p4[k].exp = p1[i].exp; k++; i++; j++; } else if (p1[i].exp > p2[j].exp) { p4[k].coeff = p1[i].coeff; p4[k].exp = p1[i].exp; k++; i++; } else { p4[k].coeff = p2[j].coeff; p4[k].exp = p2[j].exp; k++; j++; } } while (i < n1) { p4[k].coeff = p1[i].coeff; p4[k].exp = p1[i].exp; k++; i++; } while (j < n2) { p4[k].coeff = p2[j].coeff; p4[k].exp = p2[j].exp; k++; j++; } return k; } int multiplyPoly(poly p1[], poly p2[], poly p4[], int n1, int n2) { int i, j, k, count[size] = {0}, pos[size] = {0}; for (k = 0; k < size; k++) { p4[k].coeff = 0; p4[k].exp = 0; } k = 0; for (i = 0; i < n1; i++) { for (j = 0; j < n2; j++) { if (p1[i].coeff != 0 && p2[j].coeff != 0) { p4[k].exp = p1[i].exp + p2[j].exp; if (count[p4[k].exp] >= 1) { p4[pos[p4[k].exp]].coeff += (p1[i].coeff * p2[j].coeff); } else { p4[k].coeff += (p1[i].coeff * p2[j].coeff); count[p4[k].exp]++; pos[p4[k].exp] = k; } k++; } } } return k; } void printPoly(poly p[], int n) { for (int i = 0; i < n; i++) { if (p[i].coeff != 0) { printf("(%.2f) x^%d ", p[i].coeff, p[i].exp); if (i != n - 1) printf("+ "); } } printf("\n"); } int main() { poly p1[size], p2[size], p41[size], p42[size]; int n1, n2; printf("Enter no. of distinct exponential terms for polynomial 1:"); scanf("%d", &n1); readPoly(p1, n1); printPoly(p1, n1); printf("Enter no. of distinct exponential terms for polynomial 2:"); scanf("%d", &n2); readPoly(p2, n2); printPoly(p2, n2); int p41Size = addPoly(p1, p2, p41, n1, n2); printf("Addition of polynomials P1 and P2:\n"); printPoly(p41, p41Size); int p42Size = multiplyPoly(p1, p2, p42, n1, n2); printf("Multiplication of polynomials P1 and P2:\n"); printPoly(p42, p42Size); return 0; }*/
24
82
0.404451
080404053fe1f0abdba864978af04c6b8fe35558
16
h
C
Chapter09/SimpleWork3/SimpleWork.h
fengjixuchui/Win10SysProgBookSamples
360aff30a19da2ea4c9be6f41c481aa8bf39a2b0
[ "MIT" ]
249
2019-07-09T17:14:43.000Z
2022-03-28T01:54:26.000Z
Chapter09/SimpleWork3/SimpleWork.h
fengjixuchui/Win10SysProgBookSamples
360aff30a19da2ea4c9be6f41c481aa8bf39a2b0
[ "MIT" ]
8
2019-07-12T21:08:29.000Z
2022-01-04T12:32:00.000Z
Chapter09/SimpleWork3/SimpleWork.h
isabella232/Win10SysProgBookSamples
97e479a9a4923ecf94866bae516a76bde02ef71e
[ "MIT" ]
70
2019-07-10T02:14:55.000Z
2022-03-08T00:53:07.000Z
// SimpleWork.h
8
15
0.6875
080422c0db4841770e6452211683b4f31c690b72
668
h
C
include/backend/udev.h
nyorain/wlroots
7d0bf9a1a77420f09389bda1acafcd4bd42e82f1
[ "MIT" ]
1
2021-04-22T15:36:38.000Z
2021-04-22T15:36:38.000Z
include/backend/udev.h
nyorain/wlroots
7d0bf9a1a77420f09389bda1acafcd4bd42e82f1
[ "MIT" ]
1
2021-06-23T23:47:29.000Z
2021-06-23T23:47:29.000Z
include/backend/udev.h
nyorain/wlroots
7d0bf9a1a77420f09389bda1acafcd4bd42e82f1
[ "MIT" ]
null
null
null
#ifndef _WLR_INTERNAL_UDEV_H #define _WLR_INTERNAL_UDEV_H #include <sys/types.h> #include <libudev.h> #include <wlr/backend/session.h> #include <wayland-server.h> #include <wlr/backend/udev.h> struct wlr_udev_dev { dev_t dev; struct wl_signal invalidate; struct wl_list link; }; struct wlr_udev { struct udev *udev; struct udev_monitor *mon; struct wl_event_source *event; struct wl_list devices; }; int wlr_udev_find_gpu(struct wlr_udev *udev, struct wlr_session *session); bool wlr_udev_signal_add(struct wlr_udev *udev, dev_t dev, struct wl_listener *listener); void wlr_udev_signal_remove(struct wlr_udev *udev, struct wl_listener *listener); #endif
22.266667
89
0.784431
0804466a20ccec5c047687faa03bfeb821157cca
215
h
C
src/in_element_aabb.h
sgsellan/gpytoolbox
c238f36aebb89f892eede7d06e4af21bfa51175c
[ "MIT" ]
13
2021-11-22T16:32:10.000Z
2022-03-30T21:35:50.000Z
src/in_element_aabb.h
sgsellan/gpytoolbox
c238f36aebb89f892eede7d06e4af21bfa51175c
[ "MIT" ]
null
null
null
src/in_element_aabb.h
sgsellan/gpytoolbox
c238f36aebb89f892eede7d06e4af21bfa51175c
[ "MIT" ]
1
2021-12-10T22:11:49.000Z
2021-12-10T22:11:49.000Z
#ifndef IN_ELEMENT_AABB #define IN_ELEMENT_AABB #include <Eigen/Core> #include <Eigen/Sparse> void in_element_aabb(Eigen::MatrixXd & queries, Eigen::MatrixXd & V, Eigen::MatrixXi & F, Eigen::VectorXi & I); #endif
23.888889
111
0.753488
08076ab3a91340d335c95f51687ff311e681592d
3,037
c
C
platform/linux-generic/odp_queue_if.c
bala-manoharan/odp-dpdk
130f424695749f1859eebd33ebce18ef9ce36438
[ "BSD-3-Clause" ]
null
null
null
platform/linux-generic/odp_queue_if.c
bala-manoharan/odp-dpdk
130f424695749f1859eebd33ebce18ef9ce36438
[ "BSD-3-Clause" ]
null
null
null
platform/linux-generic/odp_queue_if.c
bala-manoharan/odp-dpdk
130f424695749f1859eebd33ebce18ef9ce36438
[ "BSD-3-Clause" ]
1
2019-02-09T08:41:27.000Z
2019-02-09T08:41:27.000Z
/* Copyright (c) 2017, ARM Limited * All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #include "config.h" #include <odp_queue_if.h> #include <odp_internal.h> #include <odp_debug_internal.h> #include <stdlib.h> #include <string.h> extern const queue_api_t queue_scalable_api; extern const queue_fn_t queue_scalable_fn; extern const queue_api_t queue_basic_api; extern const queue_fn_t queue_basic_fn; const queue_api_t *queue_api; const queue_fn_t *queue_fn; odp_queue_t odp_queue_create(const char *name, const odp_queue_param_t *param) { return queue_api->queue_create(name, param); } int odp_queue_destroy(odp_queue_t queue) { return queue_api->queue_destroy(queue); } odp_queue_t odp_queue_lookup(const char *name) { return queue_api->queue_lookup(name); } int odp_queue_capability(odp_queue_capability_t *capa) { return queue_api->queue_capability(capa); } int odp_queue_context_set(odp_queue_t queue, void *context, uint32_t len) { return queue_api->queue_context_set(queue, context, len); } void *odp_queue_context(odp_queue_t queue) { return queue_api->queue_context(queue); } int odp_queue_enq(odp_queue_t queue, odp_event_t ev) { return queue_api->queue_enq(queue, ev); } int odp_queue_enq_multi(odp_queue_t queue, const odp_event_t events[], int num) { return queue_api->queue_enq_multi(queue, events, num); } odp_event_t odp_queue_deq(odp_queue_t queue) { return queue_api->queue_deq(queue); } int odp_queue_deq_multi(odp_queue_t queue, odp_event_t events[], int num) { return queue_api->queue_deq_multi(queue, events, num); } odp_queue_type_t odp_queue_type(odp_queue_t queue) { return queue_api->queue_type(queue); } odp_schedule_sync_t odp_queue_sched_type(odp_queue_t queue) { return queue_api->queue_sched_type(queue); } odp_schedule_prio_t odp_queue_sched_prio(odp_queue_t queue) { return queue_api->queue_sched_prio(queue); } odp_schedule_group_t odp_queue_sched_group(odp_queue_t queue) { return queue_api->queue_sched_group(queue); } uint32_t odp_queue_lock_count(odp_queue_t queue) { return queue_api->queue_lock_count(queue); } uint64_t odp_queue_to_u64(odp_queue_t hdl) { return queue_api->queue_to_u64(hdl); } void odp_queue_param_init(odp_queue_param_t *param) { return queue_api->queue_param_init(param); } int odp_queue_info(odp_queue_t queue, odp_queue_info_t *info) { return queue_api->queue_info(queue, info); } int _odp_queue_init_global(void) { const char *sched = getenv("ODP_SCHEDULER"); if (sched == NULL || !strcmp(sched, "default")) sched = ODP_SCHEDULE_DEFAULT; if (!strcmp(sched, "basic") || !strcmp(sched, "sp") || !strcmp(sched, "iquery")) { queue_fn = &queue_basic_fn; queue_api = &queue_basic_api; } else if (!strcmp(sched, "scalable")) { queue_fn = &queue_scalable_fn; queue_api = &queue_scalable_api; } else { ODP_ABORT("Unknown scheduler specified via ODP_SCHEDULER\n"); return -1; } return queue_fn->init_global(); } int _odp_queue_term_global(void) { return queue_fn->term_global(); }
21.387324
79
0.770826
080d5b42c34f9cedb2227081c7aea27c859bbba2
7,897
h
C
titan-infinite/src/model.h
KyleKaiWang/titan-infinite
d2905e050501fc076589bb8e1578d3285ec5aab0
[ "Apache-2.0" ]
null
null
null
titan-infinite/src/model.h
KyleKaiWang/titan-infinite
d2905e050501fc076589bb8e1578d3285ec5aab0
[ "Apache-2.0" ]
null
null
null
titan-infinite/src/model.h
KyleKaiWang/titan-infinite
d2905e050501fc076589bb8e1578d3285ec5aab0
[ "Apache-2.0" ]
null
null
null
/* * Vulkan Renderer Program * * Copyright (C) 2020 Kyle Wang */ #pragma once #include "line_segment.h" #define MAX_NUM_JOINTS 128 namespace vkglTF { extern VkDescriptorSetLayout descriptorSetLayoutImage; extern VkDescriptorSetLayout descriptorSetLayoutUbo; extern VkMemoryPropertyFlags memoryPropertyFlags; struct Node; struct BoundingBox { glm::vec3 min; glm::vec3 max; bool valid = false; BoundingBox() {}; BoundingBox(glm::vec3 min, glm::vec3 max) : min(min), max(max) {} BoundingBox getAABB(glm::mat4 m); }; /* glTF texture sampler */ struct TextureSampler { VkFilter magFilter; VkFilter minFilter; VkSamplerAddressMode addressModeU; VkSamplerAddressMode addressModeV; VkSamplerAddressMode addressModeW; }; /* glTF material class */ struct Material { Material(Device* device) : device(device) {}; Device* device; enum AlphaMode { ALPHAMODE_OPAQUE, ALPHAMODE_MASK, ALPHAMODE_BLEND }; AlphaMode alphaMode = ALPHAMODE_OPAQUE; float alphaCutoff = 1.0f; float metallicFactor = 1.0f; float roughnessFactor = 1.0f; glm::vec4 baseColorFactor = glm::vec4(1.0f); glm::vec4 emissiveFactor = glm::vec4(1.0f); TextureObject* baseColorTexture = nullptr; TextureObject* metallicRoughnessTexture = nullptr; TextureObject* normalTexture = nullptr; TextureObject* occlusionTexture = nullptr; TextureObject* emissiveTexture = nullptr; struct TexCoordSets { uint8_t baseColor = 0; uint8_t metallicRoughness = 0; uint8_t specularGlossiness = 0; uint8_t normal = 0; uint8_t occlusion = 0; uint8_t emissive = 0; } texCoordSets; struct Extension { TextureObject* specularGlossinessTexture; TextureObject* diffuseTexture; glm::vec4 diffuseFactor = glm::vec4(1.0f); glm::vec3 specularFactor = glm::vec3(0.0f); } extension; struct PbrWorkflows { bool metallicRoughness = true; bool specularGlossiness = false; } pbrWorkflows; VkDescriptorSet descriptorSet = VK_NULL_HANDLE; }; /* glTF primitive */ struct Primitive { Primitive(uint32_t firstIndex, uint32_t indexCount, uint32_t vertexCount, Material& material) : firstIndex(firstIndex), indexCount(indexCount), vertexCount(vertexCount), material(material) { hasIndices = indexCount > 0; }; uint32_t firstIndex; uint32_t indexCount; uint32_t firstVertex; uint32_t vertexCount; Material& material; bool hasIndices; BoundingBox bb; void setBoundingBox(glm::vec3 min, glm::vec3 max); }; /* glTF mesh */ struct Mesh { Mesh(Device* device, glm::mat4 matrix); ~Mesh(); Device* device; std::vector<Primitive*> primitives; std::string name; BoundingBox bb; BoundingBox aabb; struct UniformBuffer { VkBuffer buffer; VkDeviceMemory memory; VkDescriptorBufferInfo descriptor; VkDescriptorSet descriptorSet = VK_NULL_HANDLE; void* mapped; } uniformBuffer; struct UniformBlock { glm::mat4 matrix; glm::mat4 jointMatrix[MAX_NUM_JOINTS]{}; float jointcount{ 0 }; } uniformBlock; void setBoundingBox(glm::vec3 min, glm::vec3 max); }; /* glTF skin */ struct Skin { std::string name; Node* skeletonRoot = nullptr; std::vector<glm::mat4> inverseBindMatrices; std::vector<Node*> joints; bool enableIK = false; CCDSolver* ccd_solver; glm::mat4 getSolverIK(unsigned int index); }; /* glTF node */ struct Node { ~Node(); Node* parent; uint32_t index; std::vector<Node*> children; glm::mat4 matrix; std::string name; Mesh* mesh; Skin* skin; int32_t skinIndex = -1; glm::vec3 translation{}; glm::vec3 scale{ 1.0f }; glm::quat rotation{}; BoundingBox bvh; BoundingBox aabb; glm::mat4 localMatrix(); glm::mat4 getGlobalMatrix(); void update(); }; /* glTF animation channel */ struct AnimationChannel { enum PathType { TRANSLATION, ROTATION, SCALE }; PathType path; Node* node; uint32_t samplerIndex; }; /* glTF animation sampler */ struct AnimationSampler { enum InterpolationType { LINEAR, STEP, CUBICSPLINE }; InterpolationType interpolation; std::vector<float> inputs; std::vector<glm::vec4> outputsVec4; std::vector<float> outputs; glm::vec4 cubicSplineInterpolation(size_t index, float time, uint32_t stride); void translate(size_t index, float time, vkglTF::Node* node); void scale(size_t index, float time, vkglTF::Node* node); void rotate(size_t index, float time, vkglTF::Node* node); }; /* glTF animation */ struct Animation { std::string name; std::vector<AnimationSampler> samplers; std::vector<AnimationChannel> channels; float start = std::numeric_limits<float>::max(); float end = std::numeric_limits<float>::min(); }; /* glTF default vertex layout with easy Vulkan mapping functions */ //enum class VertexComponent { Position, Normal, UV, Color, Tangent, Joint0, Weight0 }; struct Vertex { glm::vec3 pos; glm::vec3 normal; glm::vec2 uv0; glm::vec2 uv1; glm::vec4 joint0; glm::vec4 weight0; }; enum FileLoadingFlags { None = 0x00000000, PreTransformVertices = 0x00000001, PreMultiplyVertexColors = 0x00000002, FlipY = 0x00000004, DontLoadImages = 0x00000008 }; enum RenderFlags { BindImages = 0x00000001 }; class VulkanglTFModel { private: TextureObject* getTexture(uint32_t index); TextureObject fromglTfImage(tinygltf::Image& gltfimage, Device* device, VkQueue copyQueue, TextureSampler sampler); public: VulkanglTFModel(); ~VulkanglTFModel(); Device* device; VkQueue copyQueue; struct Vertices { int count; VkBuffer buffer; VkDeviceMemory memory; } vertices; struct Indices { int count; VkBuffer buffer; VkDeviceMemory memory; } indices; glm::mat4 aabb; std::vector<Node*> nodes; std::vector<Node*> linearNodes; std::vector<Skin*> skins; std::vector<TextureObject> textures; std::vector<TextureSampler> textureSamplers; std::vector<Material> materials; std::vector<Animation> animations; std::vector<std::string> extensions; struct Dimensions { glm::vec3 min = glm::vec3(FLT_MAX); glm::vec3 max = glm::vec3(-FLT_MAX); } dimensions; bool buffersBound = false; std::string path; bool enableIK = true; LineSegment* debug_line_segment; void destroy(); void loadFromFile(const std::string& filename, Device* device, VkQueue transferQueue, uint32_t fileLoadingFlags = vkglTF::FileLoadingFlags::None, float scale = 1.0f); void loadNode(vkglTF::Node* parent, const tinygltf::Node& node, uint32_t nodeIndex, const tinygltf::Model& model, std::vector<uint32_t>& indexBuffer, std::vector<Vertex>& vertexBuffer, float globalscale); void loadSkins(tinygltf::Model& gltfModel); void loadTextures(tinygltf::Model& gltfModel, Device* device, VkQueue transferQueue); void loadTextureSamplers(tinygltf::Model& gltfModel); void loadMaterials(tinygltf::Model& gltfModel); void loadAnimations(tinygltf::Model& gltfModel); void bindBuffers(VkCommandBuffer commandBuffer); void drawNode(Node* node, VkCommandBuffer commandBuffer, uint32_t renderFlags = 0, VkPipelineLayout pipelineLayout = VK_NULL_HANDLE, uint32_t bindImageSet = 1); void draw(VkCommandBuffer commandBuffer, uint32_t renderFlags = 0, VkPipelineLayout pipelineLayout = VK_NULL_HANDLE, uint32_t bindImageSet = 1); void calculateBoundingBox(Node* node, Node* parent); void getSceneDimensions(); void updateAnimation(uint32_t index, float time); Node* findNode(Node* parent, uint32_t index); Node* nodeFromIndex(uint32_t index); void initNodeDescriptor(vkglTF::Node* node, VkDescriptorSetLayout descriptorSetLayout); VkFilter getVkFilterMode(int32_t filterMode); VkSamplerAddressMode getVkWrapMode(int32_t wrapMode); void setupIK(); void setupIK_internal(vkglTF::Node* node); void setEnableIK(bool enable); void setEnableIK_internal(vkglTF::Node* node, bool enable); void drawJoint(VkCommandBuffer commandBuffer); }; }
26.411371
206
0.729138
080d9f456a29988cb3f0356f1ee69d984d40ee53
1,356
c
C
calc.c
jorkanofaln/calculatorC
4f0c264a13fb39d8cdce60adce318fd8ed31ef1d
[ "BSD-3-Clause" ]
null
null
null
calc.c
jorkanofaln/calculatorC
4f0c264a13fb39d8cdce60adce318fd8ed31ef1d
[ "BSD-3-Clause" ]
null
null
null
calc.c
jorkanofaln/calculatorC
4f0c264a13fb39d8cdce60adce318fd8ed31ef1d
[ "BSD-3-Clause" ]
null
null
null
#include<stdio.h> #include<math.h> /* Author: Jorkano Faln Description: A Simple program, which implements basic mathematical operators License: 3 Clause BSD */ double add(double a, double b){ return a + b; } double substract(double a, double b){ return a - b; } double multiply(double a, double b){ return a * b; } double divide(double a, double b){ return a / b; } double powerOf(double a, double b){ double result; if(b == 0){ result = 1; } else if(b > 0){ result = 1; for(int i=0;i < b;i++){ result *= a; } } else{ result = -1; } return result; } int main(){ /*Define values*/ double a,b; double sum,difference,product,quotient; /*Assign values*/ printf("Insert an integer:"); scanf("%lf",&a); printf("Insert another integer:"); scanf("%lf",&b); /*Acquire values*/ sum = add(a,b); difference = substract(a,b); product = multiply(a,b); quotient = divide(a,b); double power = powerOf(a,b); /*Display values*/ printf("%lf+%lf is equal to %lf\n",a,b,sum); printf("%lf-%lf is equal to %lf\n",a,b,difference); printf("%lf*%lf is equal to %lf\n",a,b,product); printf("%lf/%lf is equal to %lf\n",a,b,quotient); printf("%lf^%lf is equal to %lf\n",a,b,power); return 0; }
20.861538
76
0.570059
080db87fc64edacd1af3a482eb4f9338823fc81f
21,389
h
C
include/type/call.h
tizenorg/framework.telephony.libtcore
253db8b09b28f351937c4fb2566d963419f3842d
[ "Apache-2.0" ]
null
null
null
include/type/call.h
tizenorg/framework.telephony.libtcore
253db8b09b28f351937c4fb2566d963419f3842d
[ "Apache-2.0" ]
null
null
null
include/type/call.h
tizenorg/framework.telephony.libtcore
253db8b09b28f351937c4fb2566d963419f3842d
[ "Apache-2.0" ]
null
null
null
/* * libtcore * * Copyright (c) 2012 Samsung Electronics Co., Ltd. All rights reserved. * * Contact: Ja-young Gu <[email protected]> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef __TYPE_CALL_H__ #define __TYPE_CALL_H__ __BEGIN_DECLS #include <glib.h> enum telephony_call_error_cause { CALL_CAUSE_NONE, /**< Success */ CALL_CAUSE_ACCESSDISCARD, /**< Access discarded */ CALL_CAUSE_BARR_BYOPERATOR, /**< Barred by operator */ CALL_CAUSE_BEARERMODE_NOTIMPL, /**< Bearer mode not implemented */ CALL_CAUSE_BEARERMODE_RESTRICTED, /**< Bearer mode restricted */ CALL_CAUSE_BEARERMODE_UNAUTH, /**< Bearer mode un authorized */ CALL_CAUSE_BEARERMODE_UNAVAIL, /**< Bearer mode not available */ CALL_CAUSE_BUSY, /**< (Network/Server) busy */ CALL_CAUSE_CALLMETER_EXPIRED, /**< Call meter expired */ CALL_CAUSE_CALLNO_ERROR, /**< Call number error */ CALL_CAUSE_CKTUNAVAIL, /**< Circuit channel unavailable */ //10 CALL_CAUSE_CONGESTION, /**< Congestion happened */ CALL_CAUSE_NO_CIRCUIT_AVAIL, /**< Circuit not available */ CALL_CAUSE_DESTIN_INCOMPAT, /**< Destination incompatibility */ CALL_CAUSE_DTMF_NOSPEECH, /**< No speech in DTMF */ CALL_CAUSE_DTMF_REJECTED, /**< DTMF rejected */ CALL_CAUSE_FACILITY_NOTIMPL, /**< Facility not implemented */ CALL_CAUSE_FACILITY_NOTSUBSCRIBED, /**< Facility not subscribed */ CALL_CAUSE_INCOMINGCUGCALLS_BARRED, /**< Incoming CUG Calls barred */ CALL_CAUSE_INVALNUM, /**< Invalid number */ CALL_CAUSE_MPTY_ERROR, /**< Multiparty error */ //20 CALL_CAUSE_NOANSWER, /**< No answer */ CALL_CAUSE_NONCUGMEMBER, /**< Non CUG member */ CALL_CAUSE_NUMBERCHANGED, /**< Number changed */ CALL_CAUSE_NUMBER_ERROR, /**< Number error */ CALL_CAUSE_NWFAILURE, /**< Network failure */ CALL_CAUSE_OPERATIONUNAVAIL, /**< Operation not available */ CALL_CAUSE_OUTOFORDER, /**< Out of order */ CALL_CAUSE_PROTOCOL_ERROR, /**< Protocol error */ CALL_CAUSE_QOSUNAVAIL, /**< QOS unavailable */ CALL_CAUSE_REJECT, /**< Rejected */ //30 CALL_CAUSE_REJ_FAIL, /**< Rejection failed */ CALL_CAUSE_REJ_SRVC_NOT_AVL, /**< Rejection service not available */ CALL_CAUSE_REMOTE_CKTUNAVAIL, /**< Remote Circuit channel unavailable */ CALL_CAUSE_RESOURCEUNAVAIL, /**< Resource not available */ CALL_CAUSE_SERVICEID_ERROR, /**< Service id error */ CALL_CAUSE_SERVICE_NOTIMPL, /**< Service not implemented */ CALL_CAUSE_SERVICE_UNAVAIL, /**< Service not available */ CALL_CAUSE_MODIFY_SAME_BEARER, /**< Modify same bearer */ CALL_CAUSE_MODIFY_NOT_PERMITTED, /**< Modification not permitted */ CALL_CAUSE_HOLD_FAIL, /**< Call hold fail */ //40 CALL_CAUSE_TEMPFAILURE, /**< Temporary failure */ CALL_CAUSE_WRONGNUM, /**< Wrong number */ CALL_CAUSE_NORMAL_UNSPECIFIED, /**< Normal but unspecified */ CALL_CAUSE_SSERRINVALIDTIVALUE, /**< SS invalid Transaction ID Value */ CALL_CAUSE_SSERRINVALIDTI, /**< SS Invalid transaction ID */ CALL_CAUSE_SSINCOMPATIBLESTATE, /**< SS incompatible state */ CALL_CAUSE_SSERRSYNTAXERROR, /**< SS syntax error */ CALL_CAUSE_SSPROTOCOLERROR, /**< Protocol error */ CALL_CAUSE_SSNEGATIVEPASSWORDCHECK, /**< Negative password check */ CALL_CAUSE_SSSENTASPHASE1, /**< SS sent as phase1 message */ //50 CALL_CAUSE_SSERROR, /**< Supplementary service error */ CALL_CAUSE_SS_USSD_BUSY, /**< Second USSD request will be rejected when already USSD transaction is ongoing. */ CALL_CAUSE_IDLE, /**< Idle */ CALL_CAUSE_NETWORK_SPECIFIC, /**< Network specific error */ CALL_CAUSE_FADE, /**< voice call was dropped e.g. because of a loss of signal */ CALL_CAUSE_UNKNOWN, /**< unknown no details available */ CALL_CAUSE_INCOM_CALL, /**< terminated by incoming call */ CALL_CAUSE_ALERT_STOP, /**< terminated by alert stop */ CALL_CAUSE_INTERCEPT, /**< voice call was dropped by interception */ CALL_CAUSE_REORDER, /**< voice call was dropped by reordering */ //60 CALL_CAUSE_CLIENT_END, /**< client ended the call */ CALL_CAUSE_ACCESS_CLASS_BLOCKED, /**< access class blocked */ CALL_CAUSE_MEMCAPEXCEEDED, /**< Memory capacity exceeded */ CALL_CAUSE_TYPENOTSUPPORTED, /**< Type not supported */ CALL_CAUSE_REPLACENOTSUPPORTED, /**< Replace not supported */ CALL_CAUSE_PROTOCOLID_ERROR, /**< Protocol id error */ CALL_CAUSE_CLASSNOTSUPPORTED, /**< Class not supported */ CALL_CAUSE_DATACODING_ERROR, /**< Data coding error */ CALL_CAUSE_INVAL_MSG, /**< Invalid message */ CALL_CAUSE_CALL_BARRED, /**< Call barred */ //70 CALL_CAUSE_SIM_CALL_CONTROL_CHANGED_TO_SS, /**< Sim call control changed to SS */ CALL_CAUSE_SIM_CALL_CONTROL_CHANGED_TO_CALL, /**< SIM Call control changed to call */ CALL_CAUSE_SIM_ERROR, /**< SIM error */ CALL_CAUSE_SIM_CALL_CONTROL_MODIFIED, /**< SIM call control modified */ CALL_CAUSE_RANDOM_ACCESS_FAILURE, /**< Random access error */ CALL_CAUSE_LOWER_LAYER_FAILURE, /**< Lower layer error */ CALL_CAUSE_ACCESS_REJECTED, /**< Access rejected */ CALL_CAUSE_RESET_NOT_ALLOWED, /**< Reset not allowed */ CALL_CAUSE_EMERGENCY_CALL_NOT_ALLOWED, /**< Emergency call not allowed */ CALL_CAUSE_ACCESS_NOT_ALLOWED, /**< Access not allowed */ //80 CALL_CAUSE_RADIO_LINK_FAILURE, /**< Radio link failure */ CALL_CAUSE_INVALID_IDENTITY, /**< Invalid identity */ CALL_CAUSE_UNKNOWN_IDENTITY, /**< Unknown identity */ CALL_CAUSE_UNACCEPTABLE_IDENTITY, /**< Un acceptable identity */ CALL_CAUSE_NO_SERVICE_HERE, /**< No service here */ CALL_CAUSE_SERVICE_NOT_ALLOWED, /**< Service not allowed */ CALL_CAUSE_SERVICE_NOT_AVAIL, /**< Service not available */ CALL_CAUSE_SERVICE_NOT_WORKING, /**< Service not working */ CALL_CAUSE_CANNOT_IDENTIFY_CALL, /**< Cannot identify the call */ CALL_CAUSE_DEACTIVATION, /**< Deactivation */ //90 CALL_CAUSE_FATAL_ERROR, /**< Fatal error */ CALL_CAUSE_SEND_DTMF_SUCCESS, /**< Sending DTMF Success */ CALL_CAUSE_SEND_DTMF_FAIL, /**< Sending DTMF Failed */ CALL_CAUSE_TIMER_EXPIRED, /**< Call Timer Expired */ }; enum telephony_call_answer_type { CALL_ANSWER_TYPE_ACCEPT, CALL_ANSWER_TYPE_REJECT, CALL_ANSWER_TYPE_REPLACE, CALL_ANSWER_TYPE_HOLD_ACCEPT, }; enum telephony_call_type { CALL_TYPE_VOICE, CALL_TYPE_VIDEO, CALL_TYPE_E911 }; enum telephony_call_status { CALL_STATUS_IDLE, CALL_STATUS_ACTIVE, CALL_STATUS_HELD, CALL_STATUS_DIALING, CALL_STATUS_ALERT, CALL_STATUS_INCOMING, CALL_STATUS_WAITING, }; enum telephony_call_end_type { CALL_END_TYPE_DEFAULT, CALL_END_TYPE_ALL, CALL_END_TYPE_ACTIVE_ALL, CALL_END_TYPE_HOLD_ALL, }; enum telephony_call_end_cause { CALL_END_CAUSE_NONE = 0x00, /**< No Cause */ CALL_END_CAUSE_UNASSIGNED_NUMBER, /**< Unassigned Number */ CALL_END_CAUSE_NO_ROUTE_TO_DEST, /**< No Route to Destination */ CALL_END_CAUSE_CHANNEL_UNACCEPTABLE, /**< Channel Unacceptable */ CALL_END_CAUSE_OPERATOR_DETERMINED_BARRING, /**< Operator Determined Barring */ CALL_END_CAUSE_NORMAL_CALL_CLEARING, /**< Normal Call Clearing */ CALL_END_CAUSE_USER_BUSY, /**< User Busy */ CALL_END_CAUSE_NO_USER_RESPONDING, /**< No user Responding */ CALL_END_CAUSE_USER_ALERTING_NO_ANSWER, /**< User Alerting no Answer */ CALL_END_CAUSE_CALL_REJECTED, /**< Call Rejected */ CALL_END_CAUSE_NUMBER_CHANGED, /**< Number Changed */ CALL_END_CAUSE_NON_SELECTED_USER_CLEARING, /**< Non Selected User Clearing */ CALL_END_CAUSE_DESTINATION_OUT_OF_ORDER, /**< Destination out of Order */ CALL_END_CAUSE_INVALID_NUMBER_FORMAT, /**< Invalid Number Format */ CALL_END_CAUSE_FACILITY_REJECTED, /**< Facility Rejected */ CALL_END_CAUSE_RESPONSE_TO_STATUS_ENQUIRY, /**< Response to Status Enquiry */ CALL_END_CAUSE_NORMAL_UNSPECIFIED, /**< Normal Unspecified */ CALL_END_CAUSE_NO_CIRCUIT_CHANNEL_AVAILABLE, /**< No Circuit Channel Available */ CALL_END_CAUSE_NETWORK_OUT_OF_ORDER, /**< Network out of Order */ CALL_END_CAUSE_TEMPORARY_FAILURE, /**< Temporary Failure */ CALL_END_CAUSE_SWITCHING_EQUIPMENT_CONGESTION, /**< Switching Equipment Congestion */ CALL_END_CAUSE_ACCESS_INFORMATION_DISCARDED, /**< Access Information Discarded */ CALL_END_CAUSE_REQUESTED_CIRCUIT_CHANNEL_NOT_AVAILABLE, /**< Requested Circuit channel not available */ CALL_END_CAUSE_RESOURCES_UNAVAILABLE_UNSPECIFIED, /**< Resources unavailable unspecified */ CALL_END_CAUSE_QUALITY_OF_SERVICE_UNAVAILABLE, /**< Quality of service unavailable */ CALL_END_CAUSE_REQUESTED_FACILITY_NOT_SUBSCRIBED, /**< Requested facility not subscribed */ CALL_END_CAUSE_INCOMING_CALL_BARRED_WITHIN_CUG, /**< incomming call barred within CUG */ CALL_END_CAUSE_BEARER_CAPABILITY_NOT_AUTHORISED, /**< Bearer Capability not Authorised */ CALL_END_CAUSE_BEARER_CAPABILITY_NOT_PRESENTLY_AVAILABLE,/**< Bearer capability not presently Available */ CALL_END_CAUSE_SERVICE_OR_OPTION_NOT_AVAILABLE, /**< Service or Option not available */ CALL_END_CAUSE_BEARER_SERVICE_NOT_IMPLEMENTED, /**< Service not implemented */ CALL_END_CAUSE_ACM_GEQ_ACMMAX, /**< ACM GEQ ACMAX */ CALL_END_CAUSE_REQUESTED_FACILITY_NOT_IMPLEMENTED, /**< Requested facility not implemented */ CALL_END_CAUSE_ONLY_RESTRICTED_DIGITAL_INFO_BC_AVAILABLE,/**< Resticted digital info BC not available */ CALL_END_CAUSE_SERVICE_OR_OPTION_NOT_IMPLEMENTED, /**< Service or Option not Implemented */ CALL_END_CAUSE_INVALID_TRANSACTION_ID_VALUE, /**< Transaction ID value */ CALL_END_CAUSE_USER_NOT_MEMBER_OF_CUG, /**< Not member of CUG */ CALL_END_CAUSE_INCOMPATIBLE_DESTINATION, /**< Incompatible Destination */ CALL_END_CAUSE_INVALID_TRANSIT_NETWORK_SELECTION, /**< Transit Network selection */ CALL_END_CAUSE_SEMANTICALLY_INCORRECT_MESSAGE, /**< Semantically Incorrect message */ CALL_END_CAUSE_INVALID_MANDATORY_INFORMATION, /**< Invalid Mandatory Message */ CALL_END_CAUSE_MESSAGE_TYPE_NON_EXISTENT, /**< Message Type Non Existent */ CALL_END_CAUSE_MESSAGE_TYPE_NOT_COMPATIBLE_WITH_PROT_STATE, /**< Message type not compatible with Prot state */ CALL_END_CAUSE_IE_NON_EXISTENT_OR_NOT_IMPLEMENTED, /**< IE non exitent or not implemented */ CALL_END_CAUSE_CONDITIONAL_IE_ERROR, /**< Conditional IE error */ CALL_END_CAUSE_MESSAGE_NOT_COMPATIBLE_WITH_PROTOCOL_STATE, /**< Not Compatible with protocol state */ CALL_END_CAUSE_RECOVERY_ON_TIMER_EXPIRY, /**< Recovery on timer expiry */ CALL_END_CAUSE_PROTOCOL_ERROR_UNSPECIFIED, /**< Protocol error unspecified */ CALL_END_CAUSE_INTERWORKING_UNSPECIFIED, /**< Interworking unspecified */ CALL_END_CAUSE_END = 128, /* Reject causes*/ CALL_END_CAUSE_IMSI_UNKNOWN_IN_HLR, /**< IMSI unknown in HLR */ CALL_END_CAUSE_ILLEGAL_MS, /**< Illegal MS */ CALL_END_CAUSE_IMSI_UNKNOWN_IN_VLR, /**< IMSI unknown in VLR */ CALL_END_CAUSE_IMEI_NOT_ACCEPTED, /**< IMEI not accepted */ CALL_END_CAUSE_ILLEGAL_ME, /**< Illegal ME */ CALL_END_CAUSE_GPRS_SERVICES_NOT_ALLOWED, /**< GPRS service not allowed */ CALL_END_CAUSE_GPRS_SERVICES_AND_NON_GPRS_SERVICES_NOT_ALLOWED, /**< GPRS services and Non-GPRS services not allowed */ CALL_END_CAUSE_MS_IDENTITY_CANNOT_BE_DERIVED_BY_THE_NETWORK, /**< MS device cannot be derived by the network */ CALL_END_CAUSE_IMPLICITLY_DETACHED, /**< Implicitly detached */ CALL_END_CAUSE_PLMN_NOT_ALLOWED, /**< PLMN not allowed */ CALL_END_CAUSE_LA_NOT_ALLOWED, /**< LA not allowed */ CALL_END_CAUSE_NATIONAL_ROAMING_NOT_ALLOWED, /**< National roaming not allowed */ CALL_END_CAUSE_GPRS_SERVICES_NOT_ALLOWED_IN_THIS_PLMN, /**< GPRS services not allowed in this PLMN */ CALL_END_CAUSE_NO_SUITABLE_CELLS_IN_LA, /**< No suitable cells in the LA */ CALL_END_CAUSE_MSC_TEMPORARILY_NOT_REACHABLE, /**< MSC temporarily not reachable */ CALL_END_CAUSE_NETWORK_FAILURE, /**< Network unavailable */ CALL_END_CAUSE_MAC_FAILURE, /**< MAC failure */ CALL_END_CAUSE_SYNCH_FAILURE, /**< SYNCh failure */ CALL_END_CAUSE_CONGESTTION, /**< Congestion */ CALL_END_CAUSE_GSM_AUTH_UNACCEPTED, /**< GSM Auth unaccepted */ CALL_END_CAUSE_SERVICE_OPTION_NOT_SUPPORTED, /**< Service option not supported */ CALL_END_CAUSE_REQ_SERV_OPT_NOT_SUBSCRIBED, /**< REQ_SERV option not suscribed */ CALL_END_CAUSE_SERVICE_OPT__OUT_OF_ORDER, /**< Service OPT out of order */ CALL_END_CAUSE_CALL_CANNOT_BE_IDENTIFIED, /**< Call cannot be identified */ CALL_END_CAUSE_NO_PDP_CONTEXT_ACTIVATED, /**< No PDP context Activated */ CALL_END_CAUSE_RETRY_UPON_ENTRY_INTO_A_NEW_CELL_MIN_VALUE, /**< Retry upon entry into a new call min value */ CALL_END_CAUSE_RETRY_UPON_ENTRY_INTO_A_NEW_CELL_MAX_VALUE, /**< Retry upon entry into a new call max value */ CALL_END_CAUSE_SEMANTICALLY_INCORRECT_MSG, /**< Semantically incorret message */ CALL_END_CAUSE_INVALID_MANDATORY_INFO, /**< Invalid mandatory information */ CALL_END_CAUSE_MESSAGE_TYPE_NON_EXISTANT, /**< Message type non-existant */ CALL_END_CAUSE_MESSAGE_TYPE_NOT_COMP_PRT_ST, /**< Message type not COMP PRT ST */ CALL_END_CAUSE_IE_NON_EXISTANT, /**< IE not existant */ CALL_END_CAUSE_MSG_NOT_COMPATIBLE_PROTOCOL_STATE, /**< MSG not compatible protocol state */ /* Connection Management establishment rejection cause */ CALL_END_CAUSE_REJ_UNSPECIFIED, /**< rej unspecified */ /* AS reject causes */ CALL_END_CAUSE_AS_REJ_RR_REL_IND, /**< RR release indication */ CALL_END_CAUSE_AS_REJ_RR_RANDOM_ACCESS_FAILURE, /**< Random Access Failure */ CALL_END_CAUSE_AS_REJ_RRC_REL_IND, /**< RRC release indication */ CALL_END_CAUSE_AS_REJ_RRC_CLOSE_SESSION_IND, /**< RRC close session indication */ CALL_END_CAUSE_AS_REJ_RRC_OPEN_SESSION_FAILURE, /**< RRC open session failure */ CALL_END_CAUSE_AS_REJ_LOW_LEVEL_FAIL, /**< Low level failure */ CALL_END_CAUSE_AS_REJ_LOW_LEVEL_FAIL_REDIAL_NOT_ALLOWED, /**< Low level failure redial not alowed */ CALL_END_CAUSE_AS_REJ_LOW_LEVEL_IMMED_RETRY, /**< low level immediate retry */ /* MM reject causes */ CALL_END_CAUSE_MM_REJ_INVALID_SIM, /**< invalid Sim */ CALL_END_CAUSE_MM_REJ_NO_SERVICE, /**< No service */ CALL_END_CAUSE_MM_REJ_TIMER_T3230_EXP, /**< Timer T3230 expire */ CALL_END_CAUSE_MM_REJ_NO_CELL_AVAILABLE, /**< No call available */ CALL_END_CAUSE_MM_REJ_WRONG_STATE, /**< wrong state */ CALL_END_CAUSE_MM_REJ_ACCESS_CLASS_BLOCKED, /**< Access class blocked */ /* Definitions for release ind causes between MM and CNM*/ CALL_END_CAUSE_ABORT_MSG_RECEIVED, /**< Abort Message received */ CALL_END_CAUSE_OTHER_CAUSE, /**< Other cause */ /* CNM reject causes */ CALL_END_CAUSE_CNM_REJ_TIMER_T303_EXP, /**< Timer T303 expiry */ CALL_END_CAUSE_CNM_REJ_NO_RESOURCES, /**< Rejected due to unavailibilty of resources */ CALL_END_CAUSE_CNM_MM_REL_PENDING, /**< MM release pending */ CALL_END_CAUSE_CNM_INVALID_USER_DATA, /**< Invalid user data */ }; enum telephony_call_cli_mode { CALL_CLI_MODE_DEFAULT, CALL_CLI_MODE_PRESENT, CALL_CLI_MODE_RESTRICT, }; enum telephony_call_cna_mode { CALL_CNA_MODE_DEFAULT, CALL_CNA_MODE_PRESENT, CALL_CNA_MODE_RESTRICT, }; enum telephony_call_sound_path { CALL_SOUND_PATH_HANDSET = 0x01, CALL_SOUND_PATH_HEADSET, CALL_SOUND_PATH_HANDFREE, CALL_SOUND_PATH_BLUETOOTH, CALL_SOUND_PATH_STEREO_BLUETOOTH, CALL_SOUND_PATH_SPEAKER, CALL_SOUND_PATH_HEADSET_3_5PI, CALL_SOUND_PATH_BT_NSEC_OFF, CALL_SOUND_PATH_MIC1, CALL_SOUND_PATH_MIC2, CALL_SOUND_PATH_HEADSET_HAC, }; enum telephony_call_sound_device { CALL_SOUND_DEVICE_RECEIVER = 0x10, CALL_SOUND_DEVICE_SPEAKER = 0x20, CALL_SOUND_DEVICE_HFK = 0x30, CALL_SOUND_DEVICE_BLUETOOTH = 0x40, CALL_SOUND_DEVICE_ECHO_CANCELLER = 0xA0, }; enum telephony_call_sound_type { CALL_SOUND_TYPE_VOICE = 0x1, CALL_SOUND_TYPE_KEYTONE, CALL_SOUND_TYPE_BELL, CALL_SOUND_TYPE_MESSAGE, CALL_SOUND_TYPE_ALARM, CALL_SOUND_TYPE_MISCELLANEOUS, }; enum telephony_call_sound_volume_level { CALL_SOUND_MUTE, CALL_SOUND_VOLUME_LEVEL_1, CALL_SOUND_VOLUME_LEVEL_2, CALL_SOUND_VOLUME_LEVEL_3, CALL_SOUND_VOLUME_LEVEL_4, CALL_SOUND_VOLUME_LEVEL_5, CALL_SOUND_VOLUME_LEVEL_6, CALL_SOUND_VOLUME_LEVEL_7, CALL_SOUND_VOLUME_LEVEL_8, CALL_SOUND_VOLUME_LEVEL_9, }; enum telephony_call_sound_ringback_tone_status { CALL_SOUND_RINGBACK_TONE_START, CALL_SOUND_RINGBACK_TONE_END, }; enum telephony_call_sound_direction { CALL_SOUND_DIRECTION_LEFT, CALL_SOUND_DIRECTION_RIGHT, }; /********** Struct **********/ // Request #define MAX_CALL_NUMBER_LEN 83 #define MAX_CALL_DIAL_NUM_LEN MAX_CALL_NUMBER_LEN #define MAX_CALL_DTMF_DIGITS_LEN 32 #define MAX_CALL_CLI_NUM_LEN MAX_CALL_NUMBER_LEN #define MAX_CALL_CNA_NAME_LEN 83 struct telephony_call_cli_info { enum telephony_call_cli_mode mode; char number[ MAX_CALL_CLI_NUM_LEN ]; }; struct telephony_call_cna_info { enum telephony_call_cna_mode mode; char name[ MAX_CALL_CNA_NAME_LEN ]; }; struct treq_call_dial { enum telephony_call_type type; char number[ MAX_CALL_DIAL_NUM_LEN ]; }; struct treq_call_answer { unsigned int id; enum telephony_call_answer_type type; }; struct treq_call_end { unsigned int id; enum telephony_call_end_type type; }; struct treq_call_dtmf { char digits[ MAX_CALL_DTMF_DIGITS_LEN ]; }; struct treq_call_active { unsigned int id; }; struct treq_call_hold { unsigned int id; }; struct treq_call_swap { unsigned int id; }; struct treq_call_join { unsigned int id; }; struct treq_call_split { unsigned int id; }; struct treq_call_transfer { unsigned int id; }; struct treq_call_deflect { unsigned int id; char number[MAX_CALL_NUMBER_LEN]; }; struct treq_call_sound_set_path { enum telephony_call_sound_path path; gboolean extra_volume_on; }; struct treq_call_sound_set_volume_level { enum telephony_call_sound_type sound; enum telephony_call_sound_device device; enum telephony_call_sound_volume_level volume; }; struct treq_call_sound_get_volume_level { enum telephony_call_sound_type sound; enum telephony_call_sound_device device; }; struct treq_call_sound_set_recording { gboolean state; }; #define MAX_CALL_EQ_PARAMETER_SIZE 6 struct treq_call_sound_set_equalization { gboolean mode; enum telephony_call_sound_direction direction; unsigned short parameter[ MAX_CALL_EQ_PARAMETER_SIZE ]; }; struct treq_call_sound_set_noise_reduction { gboolean status; }; // Response struct tresp_call_dial { gboolean err; }; struct tresp_call_answer { unsigned int id; gboolean err; }; struct tresp_call_end { enum telephony_call_end_type type; unsigned int id; gboolean err; }; struct tresp_call_hold { unsigned int id; gboolean err; }; struct tresp_call_active { unsigned int id; gboolean err; }; struct tresp_call_swap { unsigned int id; gboolean err; }; struct tresp_call_join { unsigned int id; gboolean err; }; struct tresp_call_split { unsigned int id; gboolean err; }; struct tresp_call_deflect { unsigned int id; gboolean err; }; struct tresp_call_transfer { unsigned int id; gboolean err; }; struct tresp_call_dtmf { gboolean err; }; struct tresp_call_sound_set_path { gboolean err; }; struct tresp_call_sound_set_volume_level { gboolean err; }; struct tresp_call_sound_get_volume_level { int record_num; struct volume_info { enum telephony_call_sound_type sound; enum telephony_call_sound_volume_level volume; } *record; gboolean err; }; struct tresp_call_mute { gboolean err; }; struct tresp_call_unmute { gboolean err; }; struct tresp_call_get_mute_status { int status; gboolean err; }; struct tresp_call_sound_set_recording { gboolean err; }; struct tresp_call_sound_set_equalization { gboolean err; }; struct tresp_call_sound_set_noise_reduction { gboolean err; }; // Notification struct tnoti_call_status_idle { enum telephony_call_type type; unsigned int id; enum telephony_call_end_cause cause; }; struct tnoti_call_status_active { enum telephony_call_type type; unsigned int id; }; struct tnoti_call_status_held { enum telephony_call_type type; unsigned int id; }; struct tnoti_call_status_dialing { enum telephony_call_type type; unsigned int id; }; struct tnoti_call_status_alert { enum telephony_call_type type; unsigned int id; }; struct tnoti_call_status_incoming { enum telephony_call_type type; unsigned int id; struct telephony_call_cli_info cli; struct telephony_call_cna_info cna; gboolean forward; unsigned int active_line; }; struct tnoti_call_status_waiting { enum telephony_call_type type; unsigned int id; }; struct tnoti_call_sound_path { enum telephony_call_sound_path path; }; struct tnoti_call_sound_ringback_tone { enum telephony_call_sound_ringback_tone_status status; }; struct tnoti_call_sound_wbamr { gboolean status; }; struct tnoti_call_sound_equalization { gboolean mode; enum telephony_call_sound_direction direction; }; struct tnoti_call_sound_noise_reduction { gboolean status; }; __END_DECLS #endif
34.058917
120
0.774276
080e354e632a94fa63fbb2f0aa8c408b94cb1465
37,019
h
C
simplex/include/simplex.h
tranqui/cpplex
9a22932fd5979995952f0fcf9de90665a29120f6
[ "MIT" ]
null
null
null
simplex/include/simplex.h
tranqui/cpplex
9a22932fd5979995952f0fcf9de90665a29120f6
[ "MIT" ]
null
null
null
simplex/include/simplex.h
tranqui/cpplex
9a22932fd5979995952f0fcf9de90665a29120f6
[ "MIT" ]
null
null
null
/* This file is part of C++lex, a project by Tommaso Urli. C++lex is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. C++lex is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with C++lex. If not, see <http://www.gnu.org/licenses/>. */ #ifndef CPPLEX_SIMPLEX_H #define CPPLEX_SIMPLEX_H // Simplex classes #include "simplexexceptions.h" #include "constraint.h" #include "objectivefunction.h" #include "columnset.h" #include "variable.h" // From the STL #include <iostream> #include <iomanip> #include <fstream> #include <cstdlib> #include <sstream> #include <algorithm> #include <vector> #include <sys/stat.h> namespace cpplex { // Auxiliary function inline int file_exists( const char *filename ) { struct stat buffer ; if ( stat( filename, &buffer ) ) return 1 ; return 0 ; } // Enum to individuate parsing context enum ParsingContext { PB_METADATA, PB_VARS, PB_CONSTRAINTS, PB_OBJECTIVE }; // Enum for output verbosity { enum Verbosity { SILENT = 0, NORMAL = 1, DETAILED = 2 }; /** Simplex ======= Implementation of the class that will incapsulate the simplex behavior. */ template <typename Scalar> class Simplex { static constexpr Scalar TOL = std::numeric_limits<Scalar>::epsilon(); //static constexpr Scalar TOL = 1e-14; public: // Constructor Simplex( char const * name = "", Verbosity verbosity=SILENT ) : name(name), verbosity(verbosity), solution_dimension(0), changed_sign(false), inverse_recalculation_rate(10) { } ~Simplex() { // Cleanup variables for (auto it = variables.begin(); it != variables.end(); ++it) if ( (*it)->creator == this ) delete *it; } // Settings void load_problem( char const * problem_name ) { if ( file_exists ( problem_name ) ) throw ( DataMismatchException( "file not found." ) ); /* File parsing */ std::ifstream file(problem_name); ParsingContext current_parsing_block; int current_var = 0, solution_dimension = 0; if (file.is_open()) { while (!file.eof()) { std::string buffer_init, token; std::getline(file, buffer_init); std::stringstream buffer(buffer_init); // Extract token buffer >> token; if ( token.length() ) { if ( token == "[METADATA]" ) current_parsing_block = PB_METADATA; else if ( token == "[VARIABLES]" ) current_parsing_block = PB_VARS; else if ( token == "[CONSTRAINTS]") current_parsing_block = PB_CONSTRAINTS; else if ( token == "[OBJECTIVE]") current_parsing_block = PB_OBJECTIVE; else { switch ( current_parsing_block ) { case PB_METADATA: { if ( token == "name" ) { buffer_init.erase(0,5); name = buffer_init; } else if ( token == "vars" ) { buffer >> solution_dimension; } } break; case PB_VARS: { RowVector<Scalar> eye = RowVector<Scalar>::Zero(solution_dimension); eye(current_var) = 1; std::string variable_name, lower_bound, upper_bound; lower_bound = token; buffer >> variable_name; buffer >> upper_bound; // Add variable for tracking add_variable(new Variable<Scalar>(this, variable_name.c_str())); if ( lower_bound != "inf" ) { if ( atof(lower_bound.c_str()) == 0 ) add_constraint( Constraint<Scalar>( eye, CT_NON_NEGATIVE, 0 ) ); else add_constraint( Constraint<Scalar>( eye, CT_MORE_EQUAL, atof(lower_bound.c_str()) ) ); } if ( upper_bound != "inf") add_constraint( Constraint<Scalar>( eye, CT_LESS_EQUAL, atof(upper_bound.c_str()) ) ); current_var++; } break; case PB_CONSTRAINTS: { if ( current_var != solution_dimension ) throw (DataMismatchException("Mismatch between declared and defined variables.")); RowVector<Scalar> coefficients = RowVector<Scalar>::Zero(solution_dimension); coefficients(0) = atof(token.c_str()); for ( int i = 1; i < solution_dimension; ++i) buffer >> coefficients(i); std::string ct; Scalar bound; buffer >> ct; buffer >> bound; if ( ct == ">" ) add_constraint( Constraint<Scalar>( coefficients, CT_MORE_EQUAL, bound ) ); else if ( ct== "<" ) add_constraint( Constraint<Scalar>( coefficients, CT_LESS_EQUAL, bound ) ); else if ( ct== "=" ) add_constraint( Constraint<Scalar>( coefficients, CT_EQUAL, bound ) ); else { std::stringstream parse_error; parse_error << " near "; parse_error << buffer_init.c_str(); throw( DataMismatchException( parse_error.str().c_str() ) ); } } break; case PB_OBJECTIVE: { std::string oft = token; RowVector<Scalar> costs(solution_dimension); for (int i = 0; i < solution_dimension; ++i) buffer >> costs(i); if ( oft == "maximize" ) set_objective_function( ObjectiveFunction<Scalar>( OFT_MAXIMIZE, costs) ); else if ( oft == "minimize" ) set_objective_function( ObjectiveFunction<Scalar>( OFT_MINIMIZE, costs) ); else { throw( DataMismatchException( "Unknown objective function kind." ) ); } } break; } } } } } file.close(); return; } void add_variable(Variable<Scalar>* variable) { variables.push_back(variable); } void add_constraint ( Constraint<Scalar> const & constraint ) { if ( constraints.size() != 0 ) { if ( solution_dimension != constraint.coefficients.size() ) throw(DataMismatchException("Constraints must have the same size")); } else { solution_dimension = constraint.size(); } if ( constraint.type == CT_NON_NEGATIVE ) { nn_constraints.push_back(constraint); } else { constraints.push_back(constraint); } } void set_objective_function ( ObjectiveFunction<Scalar> const& objective_function ) { if ( solution_dimension != objective_function.costs.size() ) throw(DataMismatchException("Objective function must have same size as solution")); this->objective_function = objective_function; } // Solving procedures void solve() { ColumnSet<Scalar> initial_base; // Create alias to *this Simplex& original_problem = *this; // Create problem to work on Simplex standard_form_problem = original_problem; has_to_be_fixed = false; if (verbosity >= NORMAL) log(); // Preprocessing if (verbosity >= NORMAL) std::cout << "Generating problem in standard form ..."; standard_form_problem.process_to_standard_form(); if (verbosity >= NORMAL) std::cout << " done." << std::endl; if (verbosity == DETAILED) standard_form_problem.log(); // Generate and solve artificial problem { // Create copy of standard form problem to create artificial problem Simplex artificial_problem = standard_form_problem; if (verbosity >= NORMAL) std::cout << "Generating artificial problem ..."; artificial_problem.process_to_artificial_problem(); if (verbosity >= NORMAL) std::cout << " done." << std::endl; if (verbosity == DETAILED) artificial_problem.log(); // Use artificial problem suggested base to solve it if (verbosity >= NORMAL) std::cout << "Solving artificial problem ..." << std::endl; artificial_problem.solve_with_base( artificial_problem.suggested_base ); if (verbosity >= NORMAL) std::cout << "Done." << std::endl; if (artificial_problem.solution_value != 0) { if (verbosity >= NORMAL) std::cout << "Problem has no solution." << std::endl; overconstrained = true; return; } else { overconstrained = false; if (verbosity == DETAILED) std::cout << "Suggested initial base for original problem:"; if (verbosity == DETAILED) artificial_problem.current_base.log(" "); // If initial base doesn't contain artificial variables // I can just use it, otherwise it may contain an artificial // variable. // Check for existence of a column index related to an artificial // variable by reading costs vector int artificial_variable = -1; for (int i = 0; i < artificial_problem.solution_dimension; ++i) if ( artificial_problem.objective_function.costs(i) == 1 && artificial_problem.current_base.contains(i) ) artificial_variable = i; // If index is still -1 (no artificial variables) if (artificial_variable == -1) { if (verbosity >= NORMAL) std::cout << "Base is clear about artificial variables, proceed ..." << std::endl; standard_form_problem.suggested_base = artificial_problem.current_base; } else { /* If an artificial variable exists ... I can change the i (artificial) column with a j column in current_out_of base so that: * j is not an auxiliary variable * (B^-1)_q * A^j != 0 */ if (verbosity == DETAILED) std::cout << "Artificial variable detected in base: " << artificial_variable << std::endl; int q = artificial_problem.current_base.index_of(artificial_variable); RowVector<Scalar> bi_row_q = artificial_problem.base_inverse.row(q); // Find j int j = -1; for (unsigned int i = 0; i < standard_form_problem.current_out_of_base.size() && j == -1; ++i) { // Pick the ones that doesn't refer to an artificial variable if ( artificial_problem.costs(i) == 0 ) { ColumnVector<Scalar> column_j = artificial_problem.coefficients_matrix.col(i); if ((double)( bi_row_q * column_j ) != 0) j = i; } } if ( j != -1 ) { // Found a j, substitute artificial_value with j standard_form_problem.suggested_base = artificial_problem.current_base; standard_form_problem.suggested_base.substitute(artificial_variable, j); if (verbosity == DETAILED) standard_form_problem.suggested_base.log("Now initial base is"); } else { /* I didn't find a j which respected the requirements. It may happen that for each j we have (B^-1)_q * A^j = 0, this means that the rows of A are linearly dependent and we can eliminate one of them. Let d be d = e_q * B^-1 We have to eliminate a row for which d is non-zero. */ if (verbosity >= NORMAL) std::cout << "Constraints are linearly dependent!" << std::endl; // Find a constraint to eliminate (change) int change = -1; for (unsigned int i = 0; i < standard_form_problem.constraints.size() && change == -1; ++i) if ( bi_row_q(i) != 0 ) change = i; if (verbosity >= NORMAL) std::cout << "Constraint #" << change << " must be eliminated." << std::endl; has_to_be_fixed = true; return; } } } } if (verbosity >= NORMAL) std::cout << "Solving problem ..." << std::endl; standard_form_problem.solve_with_base(standard_form_problem.suggested_base); if (verbosity >= NORMAL) std::cout << "Done." << std::endl; /* The solution of the standard form problem must be transposed to the original problem. */ if (verbosity >= NORMAL) std::cout << "Processing standard form solution ..." << std::endl; if ( standard_form_problem.unlimited ) { unlimited = true; } else { unlimited = false; solution.resize(solution_dimension,1); int index = 0; for(auto it = standard_form_problem.variables.begin(); it != standard_form_problem.variables.end(); ++it, ++index) (*it)->process(standard_form_problem.solution, solution, index); solution_value = standard_form_problem.solution_value; dual_variables = standard_form_problem.dual_variables; constraints_vector = standard_form_problem.constraints_vector; changed_sign = standard_form_problem.changed_sign; } if (verbosity >= NORMAL) std::cout << "Done." << std::endl; } // Print void print_solution() const { std::cout << "Optimal solution is:" << std::endl; for (int i = 0; i < solution_dimension; ++i) std::cout << variables.at(i)->name << ":\t\t\t" << solution(i) << std::endl; std::cout << std::endl; std::cout << "Solution value/cost:\t\t" << solution_value << std::endl; Scalar dual_problem_value = (dual_variables * constraints_vector); if (changed_sign) dual_problem_value *= -1; std::cout << "Dual problem value:\t\t" << dual_problem_value << std::endl; return; } void log() const { // Title for (unsigned int i = 0; i < name.length(); ++i) std::cout << "="; std::cout << std::endl; std::cout << name << std::endl; for (unsigned int i = 0; i < name.length(); ++i) std::cout << "="; std::cout << std::endl; // Regular std::cout << std::endl; std::cout << "Number of regular constraints: " << constraints.size() << std::endl; for (auto it = constraints.begin(); it != constraints.end(); ++it) it->log(); // Non negativity std::cout << std::endl; std::cout << "Number of non-negativity constraints: " << nn_constraints.size() << std::endl; for (auto it = nn_constraints.begin(); it != nn_constraints.end(); ++it) it->log(); std::cout << std::endl; std::cout << "Objective function:" << std::endl; objective_function.log(); std::cout << std::endl; } bool has_solutions() const { return !overconstrained; } bool is_unlimited() const { return unlimited; } bool must_be_fixed() const { return has_to_be_fixed; } RowVector<Scalar> const& get_dual_variables() const { return dual_variables; } protected: std::string name; Verbosity verbosity; // Preprocessing void process_to_standard_form() { // Process non-negative constraints int initial_solution_dimension = solution_dimension; for ( int i = 0; i < initial_solution_dimension; ++i ) { // For each component of x bool has_constraint = false; // Find an x that doesn't have a non-negativity constraint on it for ( auto it = nn_constraints.begin(); it != nn_constraints.end() && !has_constraint; ++it) if ( it->coefficients(i) == 1 ) has_constraint = true; if ( !has_constraint ) { // Add a non-negativity constraint RowVector<Scalar> eye = RowVector<Scalar>::Zero(solution_dimension); eye(i) = 1; this->add_constraint( Constraint<Scalar>( eye, CT_NON_NEGATIVE, 0) ); ++solution_dimension; // Add a column to all constraints for ( auto mit = nn_constraints.begin(); mit != nn_constraints.end(); ++mit) mit->add_column(0); // Add another non-negativity constraint RowVector<Scalar> n_eye = RowVector<Scalar>::Zero(solution_dimension); n_eye(solution_dimension-1) = 1; this->add_constraint( Constraint<Scalar>( n_eye, CT_NON_NEGATIVE, 0) ); // Add a regular constraint for ( auto mit = constraints.begin(); mit != constraints.end(); ++mit) mit->add_column(-mit->coefficients(i)); objective_function.add_column(-objective_function.costs(i)); // Update variables status std::string aux_name(variables.at(i)->name); Variable<Scalar>* auxiliary = new AuxiliaryVariable<Scalar>(this, (aux_name + "_minus").c_str(), variables.size()); Variable<Scalar>* splitted = new SplittedVariable<Scalar>(this, variables.at(i)->name.c_str(), (AuxiliaryVariable<Scalar>*)auxiliary); // Modify variables variables.at(i) = splitted; variables.push_back(auxiliary); } } // Process regular constraints for ( auto it = constraints.begin(); it != constraints.end(); ++it ) { // Ensure right-hand side is positive in standard form if ( it->value < 0 ) { it->coefficients *= -1; it->value *= -1; if ( it->type == CT_MORE_EQUAL ) it->type = CT_LESS_EQUAL; else if ( it->type == CT_LESS_EQUAL ) it->type = CT_MORE_EQUAL; } if ( it->type == CT_MORE_EQUAL ) { // Add empty column to all regular constraints except the current for ( auto mit = constraints.begin(); mit != constraints.end(); ++mit) if ( mit != it ) mit->add_column(0); for ( auto mit = nn_constraints.begin(); mit != nn_constraints.end(); ++mit) mit->add_column(0); // Add a 1 column to the current it->add_column(-1); it->type = CT_EQUAL; objective_function.add_column(0); ++solution_dimension; // Add constraint RowVector<Scalar> eye = RowVector<Scalar>::Zero(solution_dimension); eye(solution_dimension-1) = 1; this->add_constraint( Constraint<Scalar>( eye, CT_NON_NEGATIVE, 0) ); // Update variables vector std::stringstream variable_name; variable_name << "slack_"; variable_name << solution_dimension-1; variables.push_back(new SlackVariable<Scalar>(this, variable_name.str().c_str())); } else if ( it->type == CT_LESS_EQUAL ) { // Add empty column to all regular constraints except the current for ( auto mit = constraints.begin(); mit != constraints.end(); ++mit) if ( mit != it ) mit->add_column(0); for ( auto mit = nn_constraints.begin(); mit != nn_constraints.end(); ++mit) mit->add_column(0); // Add a 1 column to the current it->add_column(1); it->type = CT_EQUAL; objective_function.add_column(0); ++solution_dimension; // Add constraint RowVector<Scalar> eye = RowVector<Scalar>::Zero(solution_dimension); eye(solution_dimension-1) = 1; this->add_constraint( Constraint<Scalar>( eye, CT_NON_NEGATIVE, 0) ); // Update variables vector std::stringstream variable_name; variable_name << "slack_"; variable_name << solution_dimension-1; variables.push_back(new SlackVariable<Scalar>(this, variable_name.str().c_str())); } } // Manipulate objective function if ( objective_function.type == OFT_MAXIMIZE ) { objective_function.type = OFT_MINIMIZE; changed_sign = true; objective_function.costs = RowVector<Scalar>::Zero(solution_dimension) - objective_function.costs; } // Update name name += " (Standard Form)"; } void process_to_artificial_problem() { ColumnSet<Scalar> identity; // Scans all the columns, when I find a column that is an eye for i // put it in the base at position i for (unsigned int i = 0; i < constraints.size(); ++i) { if (verbosity == DETAILED) std::cout << std::endl; if (verbosity == DETAILED) std::cout << "Checking for column " << i << " of identity." << std::endl; bool column_not_found = true; for ( int c = solution_dimension-1; c > -1 && column_not_found; --c) { if (verbosity == DETAILED) std::cout << "Checking against column " << c << std::endl; bool column_match = true; for ( unsigned int j = 0; j < constraints.size() && column_match; ++j ) { column_match = true; if ( ( i == j && ( constraints.at(j).coefficients(c) != 1 ) ) || ( i != j && constraints.at(j).coefficients(c) != 0 ) ) column_match = false; } if (column_match) { if (verbosity == DETAILED) std::cout << "Row match." << std::endl; identity.insert(c); column_not_found = false; } } if (column_not_found) { if (verbosity == DETAILED) std::cout << "Column not found, added artificial variable." << std::endl; identity.insert(-1); } else { if (verbosity == DETAILED) std::cout << "Column found and added to identity." << std::endl; } } // If artificial variables are needed objective_function.costs.setZero(); if ( identity.contains(-1)) { for ( unsigned int i = 0; i < identity.size(); ++i) { if ( identity.column(i) == -1 ) { // Add column 1 to constraint i for (unsigned int k = 0; k < constraints.size(); ++k) if ( k == i ) constraints.at(k).add_column(1); else constraints.at(k).add_column(0); // Solution vector is bigger identity.column(i) = solution_dimension; ++solution_dimension; // Create non-negative constraint for new variable RowVector<Scalar> eye = RowVector<Scalar>::Zero(solution_dimension); eye(solution_dimension-1) = 1; for (unsigned int k = 0; k < nn_constraints.size(); ++k) nn_constraints.at(k).add_column(0); // Objective function costs updated objective_function.add_column(1); this->add_constraint( Constraint<Scalar>( eye, CT_NON_NEGATIVE, 0) ); } } } suggested_base = identity; name += " --> (Artificial problem)"; } // Solving void solve_with_base( ColumnSet<Scalar> const& initial_base ) { // Preprocess constraints data to lead to matrices coefficients_matrix.resize( // A constraints.size(), solution_dimension ); constraints_vector.resize( constraints.size(), 1); for ( unsigned int i = 0; i < constraints.size(); ++i) { // Set b constraints_vector(i) = constraints.at(i).value; for ( int j = 0; j < solution_dimension; ++j) coefficients_matrix(i,j) = constraints.at(i).coefficients(j); } // Copy costs costs = objective_function.costs; // Initialize algorithm int step = 0; if ( initial_base.size() == constraints.size() ) current_base = initial_base; else throw(DataMismatchException("Wrong initial base size!")); // Exported variables optimal = false; unlimited = false; while ( !optimal && !unlimited ) { // Temporary matrices RowVector<Scalar> u; // c_b * B^-1 RowVector<Scalar> base_costs = RowVector<Scalar>::Zero(current_base.size()); // Costs of base // Populate current_out_of_base current_out_of_base.columns.clear(); for (int i = 0; i < solution_dimension; ++i) if (!current_base.contains(i)) current_out_of_base.insert(i); // Every inverse_recalculation steps recompute inverse from scratch if ( step % inverse_recalculation_rate == 0 ) { Matrix<Scalar> base_matrix( current_base.size(), current_base.size() ); // Unpack current base and objective costs for (unsigned int j = 0; j < current_base.size(); ++j) { base_costs(j) = costs( current_base.column(j) ); for (unsigned int i = 0; i < current_base.size(); ++i) base_matrix(i,j) = coefficients_matrix(i, current_base.column(j)); } // Compute inverse base_inverse = base_matrix.inverse(); } else { // Unpack objective costs for (unsigned int j = 0; j < current_base.size(); ++j) { base_costs(j) = costs( current_base.column(j) ); } Matrix<Scalar> old_inverse = base_inverse; // Compute inverse base_inverse = update_inverse_after_column_change<Scalar>(old_inverse, column_p, old_column); } if (verbosity == DETAILED) std::cout << "Step: " << step << std::endl; ++step; if (verbosity == DETAILED) current_base.log("Columns in base: "); if (verbosity == DETAILED) current_out_of_base.log("Out of base: "); if (verbosity == DETAILED) log_matrix(base_inverse, "Base inverse is:"); // Compute x_B = B^-1 * b base_solution = base_inverse * constraints_vector; // Compute u = c_B * A; u = base_costs * base_inverse; if (verbosity == DETAILED) log_matrix(u, "U"); // Compute reduced cost reduced_cost = costs - (u * coefficients_matrix); if (verbosity == DETAILED) log_matrix(reduced_cost, "Current reduced cost is"); optimal = more_equal_than(reduced_cost, 0.L, TOL); bool degenerate = false; for (unsigned int i = 0; i < current_base.size() && degenerate == false; ++i) if ( tol_equal(base_solution(i), 0.L, TOL) ) degenerate = true; if (!optimal) { if (verbosity == DETAILED) std::cout << "Base not optimal since reduced cost is negative." << std::endl; // Column of reduced cost with min value (one of the policies) int p = -1; column_p.resize(constraints.size(), 1); Matrix<Scalar> a_tilde; // Bland's strategy for (unsigned int i = 0; i < current_out_of_base.size() && p == -1; ++i) if ( reduced_cost(current_out_of_base.column(i)) < 0 ) p = current_out_of_base.column(i); for (unsigned int i = 0; i < constraints.size(); ++i) column_p(i) = coefficients_matrix(i,p); if (verbosity == DETAILED) std::cout << "The column to insert is " << p << std::endl; if (verbosity == DETAILED) log_matrix(column_p, "That is ..."); // Compute a_tilde a_tilde = base_inverse * column_p; if (verbosity == DETAILED) log_matrix(a_tilde, "a_tilde"); unlimited = less_equal_than(a_tilde, 0.L, TOL); if (!unlimited) { if (verbosity == DETAILED) std::cout << "Problem not unlimited." << std::endl; // Bland's strategy int q_position = -1; for (unsigned int i = 0; i < current_base.size(); ++i) { Scalar value = base_solution(i) / a_tilde(i); if ( a_tilde(i) > 0 && ( q_position == -1 || value < ( base_solution(q_position) / a_tilde(q_position) ) ) ) q_position = i; } int q = current_base.column(q_position); old_column = q_position; if (verbosity == DETAILED) std::cout << "The column to take off is " << q << std::endl; // Take off q, push in p current_base.substitute(q,p); } else { if (verbosity >= NORMAL) std::cout << "Problem unlimited." << std::endl; } } else { if (verbosity >= NORMAL) std::cout << "Optimal found at step " << step << "." << std::endl; RowVector<Scalar> objective_function_base(current_base.size()); ColumnVector<Scalar> full_solution(solution_dimension); // Update dual variables dual_variables = u; for (unsigned int i = 0; i < constraints.size(); ++i) objective_function_base(i) = costs(current_base.column(i)); for ( int i = 0; i < solution_dimension; ++i) if ( current_base.contains(i) ) full_solution(i) = base_solution( current_base.index_of( i ) ); if (verbosity == DETAILED) log_matrix(full_solution, "Solution:"); // Saves some flops solution_value = (objective_function_base * base_solution); if ( changed_sign ) solution_value = -solution_value; if (verbosity == DETAILED) std::cout << "Solution value: " << solution_value << std::endl; solution = full_solution; } } } // Column sets ColumnSet<Scalar> suggested_base; ColumnSet<Scalar> current_base; ColumnSet<Scalar> current_out_of_base; // Data ObjectiveFunction<Scalar> objective_function; std::vector< Constraint<Scalar> > constraints; std::vector< Constraint<Scalar> > nn_constraints; std::vector< Variable<Scalar>* > variables; // Processed data RowVector<Scalar> costs; Matrix<Scalar> coefficients_matrix; ColumnVector<Scalar> constraints_vector; Matrix<Scalar> base_inverse; RowVector<Scalar> dual_variables; Matrix<Scalar> column_p; int solution_dimension, old_column; // Results ColumnVector<Scalar> base_solution; Matrix<Scalar> solution; Matrix<Scalar> reduced_cost; Scalar solution_value; bool optimal, unlimited, overconstrained, has_to_be_fixed, changed_sign; int inverse_recalculation_rate; }; } #endif
39.049578
154
0.47789
080eb81d6e9b12e584ade18f4c87628227e435cd
3,267
h
C
TempoSDK/Framework/CartoMobileSDK.framework/Versions/A/Headers/NTPointStyleBuilder.h
jesusgeographica/pruebaSDKObjC
fe1678a7d6ad5ad0612bd78126d4f3eaa04c15ba
[ "MIT" ]
null
null
null
TempoSDK/Framework/CartoMobileSDK.framework/Versions/A/Headers/NTPointStyleBuilder.h
jesusgeographica/pruebaSDKObjC
fe1678a7d6ad5ad0612bd78126d4f3eaa04c15ba
[ "MIT" ]
null
null
null
TempoSDK/Framework/CartoMobileSDK.framework/Versions/A/Headers/NTPointStyleBuilder.h
jesusgeographica/pruebaSDKObjC
fe1678a7d6ad5ad0612bd78126d4f3eaa04c15ba
[ "MIT" ]
null
null
null
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 2.0.11 * * This file is not intended to be easily readable and contains a number of * coding conventions designed to improve portability and efficiency. Do not make * changes to this file unless you know what you are doing--modify the SWIG * interface file instead. * ----------------------------------------------------------------------------- */ #import <Foundation/Foundation.h> #ifdef __cplusplus extern "C" { #endif #import "NTBitmap.h" #import "NTPointStyle.h" #import "NTStyleBuilder.h" /** * A builder class for PointStyle. */ __attribute__ ((visibility("default"))) @interface NTPointStyleBuilder : NTStyleBuilder /** @internal:nodoc: */ -(void*)getCptr; /** @internal:nodoc: */ -(id)initWithCptr: (void*)cptr swigOwnCObject: (BOOL)ownCObject; /** * Creates a polymorphic instance of the given native object. This is used internally by the SDK. * @param cPtr The native pointer of the instance. * @param cMemoryOwn The ownership flag. * @return The new instance. */ /** @internal:nodoc: */ +(NTPointStyleBuilder*)swigCreatePolymorphicInstance:(void*)cPtr swigOwnCObject:(BOOL)cMemoryOwn; /** * Constructs a PointStyleBuilder object with all parameters set to defaults. */ -(id)init; /** * Returns the bitmap of the point.<br> * @return The bitmap of the point. */ -(NTBitmap*)getBitmap; /** * Sets the bitmap that will be used for drawing the point. The default is "default_point.png".<br> * @param bitmap The new bitmap for the point. */ -(void)setBitmap: (NTBitmap*)bitmap; /** * Returns the size of the point used for click detection.<br> * @return The size of the point used for click detection. */ -(float)getClickSize; /** * Sets the size for the point that will be used for click detection.<br> * Units are screen density independent pixels (DP or DIP). If set to -1 the click size will be<br> * calculated automatically. The default is -1.<br> * @param size The new point size in dp. */ -(void)setClickSize: (float)size; /** * Returns the size of the point.<br> * @return The size of the point. */ -(float)getSize; /** * Sets the size for the point in screen density independent pixels (DP or DIP). The default is 20.<br> * @param size The new point size in dp. */ -(void)setSize: (float)size; /** * Builds a new instance of the PointStyle object using previously set parameters.<br> * @return A new PointStyle object. */ -(NTPointStyle*)buildStyle; /** * Returns the raw pointer to the object. This is used internally by the SDK.<br> * @return The internal pointer of the object. */ /** @internal:nodoc: */ -(long long)swigGetRawPtr; /** * Returns the actual class name of this object. This is used internally by the SDK.<br> * @return The class name of this object. */ /** @internal:nodoc: */ -(NSString*)swigGetClassName; /** * Returns the pointer to the connected director object. This is used internally by the SDK.<br> * @return The pointer to the connected director object or null if director is not connected. */ /** @internal:nodoc: */ -(void *)swigGetDirectorObject; -(void)dealloc; @end #ifdef __cplusplus } #endif
29.7
103
0.67891
080f64268e390a1fa9a44027bd63a59b42d61ca1
1,304
c
C
graph/expand.c
pauldmccarthy/ccnet
d8365bee37c4e13621579194adaa44ef04195461
[ "BSD-3-Clause" ]
null
null
null
graph/expand.c
pauldmccarthy/ccnet
d8365bee37c4e13621579194adaa44ef04195461
[ "BSD-3-Clause" ]
null
null
null
graph/expand.c
pauldmccarthy/ccnet
d8365bee37c4e13621579194adaa44ef04195461
[ "BSD-3-Clause" ]
null
null
null
/** * Provides the expand function, which can be used in breadth first searches * of a graph. * * Author: Paul McCarthy <[email protected]> */ #include <stdint.h> #include <stdlib.h> #include "util/array.h" #include "graph/graph.h" #include "graph/expand.h" uint8_t expand( graph_t *g, array_t *thislevel, array_t *nextlevel, uint8_t *visited, void *context, uint8_t (*callback) ( expand_state_t *state, void *context )) { uint32_t i; uint32_t j; uint32_t ni; uint32_t nneighbours; uint32_t *neighbours; expand_state_t state; neighbours = NULL; for (i = 0; i < thislevel->size; i++) { array_get(thislevel, i, &ni); nneighbours = graph_num_neighbours(g, ni); neighbours = graph_get_neighbours(g, ni); for (j = 0; j < nneighbours; j++) { if (callback != NULL) { array_get(thislevel, i, &(state.parent)); state.child = neighbours[j]; state.visited = visited[neighbours[j]]; if (callback(&state, context)) { i = thislevel->size; return 1; } } if (!visited[neighbours[j]]) { array_append(nextlevel, &(neighbours[j])); visited[neighbours[j]] = 1; } } } return 0; }
20.061538
76
0.577454
0810f1c6f5d57ad1fc9782921b7b97743678b023
3,725
h
C
drivers/input/moufiltr/moufiltr.h
npocmaka/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
17
2020-11-13T13:42:52.000Z
2021-09-16T09:13:13.000Z
drivers/input/moufiltr/moufiltr.h
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
2
2020-10-19T08:02:06.000Z
2020-10-19T08:23:18.000Z
drivers/input/moufiltr/moufiltr.h
sancho1952007/Windows-Server-2003
5c6fe3db626b63a384230a1aa6b92ac416b0765f
[ "Unlicense" ]
14
2020-11-14T09:43:20.000Z
2021-08-28T08:59:57.000Z
/*++ Copyright (c) 1997 Microsoft Corporation Module Name: moufiltr.h Abstract: This module contains the common private declarations for the mouse packet filter Environment: kernel mode only Notes: Revision History: --*/ #ifndef MOUFILTER_H #define MOUFILTER_H #include "ntddk.h" #include "kbdmou.h" #include <ntddmou.h> #include <ntdd8042.h> #define MOUFILTER_POOL_TAG (ULONG) 'tlFM' #undef ExAllocatePool #define ExAllocatePool(type, size) \ ExAllocatePoolWithTag (type, size, MOUFILTER_POOL_TAG) #if DBG #define TRAP() DbgBreakPoint() #define DbgRaiseIrql(_x_,_y_) KeRaiseIrql(_x_,_y_) #define DbgLowerIrql(_x_) KeLowerIrql(_x_) #else // DBG #define TRAP() #define DbgRaiseIrql(_x_,_y_) #define DbgLowerIrql(_x_) #endif typedef struct _DEVICE_EXTENSION { // // A backpointer to the device object for which this is the extension // PDEVICE_OBJECT Self; // // "THE PDO" (ejected by the bus) // PDEVICE_OBJECT PDO; // // The top of the stack before this filter was added. AKA the location // to which all IRPS should be directed. // PDEVICE_OBJECT TopOfStack; // // Number of creates sent down // LONG EnableCount; // // Previous hook routine and context // PVOID UpperContext; PI8042_MOUSE_ISR UpperIsrHook; // // Write to the mouse in the context of MouFilter_IsrHook // IN PI8042_ISR_WRITE_PORT IsrWritePort; // // Context for IsrWritePort, QueueMousePacket // IN PVOID CallContext; // // Queue the current packet (ie the one passed into MouFilter_IsrHook) // to be reported to the class driver // IN PI8042_QUEUE_PACKET QueueMousePacket; // // The real connect data that this driver reports to // CONNECT_DATA UpperConnectData; // // current power state of the device // DEVICE_POWER_STATE DeviceState; // // State of the stack and this device object // BOOLEAN Started; BOOLEAN SurpriseRemoved; BOOLEAN Removed; } DEVICE_EXTENSION, *PDEVICE_EXTENSION; // // Prototypes // NTSTATUS MouFilter_AddDevice( IN PDRIVER_OBJECT DriverObject, IN PDEVICE_OBJECT BusDeviceObject ); NTSTATUS MouFilter_CreateClose ( IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp ); NTSTATUS MouFilter_DispatchPassThrough( IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp ); NTSTATUS MouFilter_InternIoCtl ( IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp ); NTSTATUS MouFilter_IoCtl ( IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp ); NTSTATUS MouFilter_PnP ( IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp ); NTSTATUS MouFilter_Power ( IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp ); BOOLEAN MouFilter_IsrHook ( PDEVICE_OBJECT DeviceObject, PMOUSE_INPUT_DATA CurrentInput, POUTPUT_PACKET CurrentOutput, UCHAR StatusByte, PUCHAR DataByte, PBOOLEAN ContinueProcessing, PMOUSE_STATE MouseState, PMOUSE_RESET_SUBSTATE ResetSubState ); VOID MouFilter_ServiceCallback( IN PDEVICE_OBJECT DeviceObject, IN PMOUSE_INPUT_DATA InputDataStart, IN PMOUSE_INPUT_DATA InputDataEnd, IN OUT PULONG InputDataConsumed ); VOID MouFilter_Unload ( IN PDRIVER_OBJECT DriverObject ); #endif // MOUFILTER_H
19.605263
76
0.627383
0812753b8f192c9190dc581e2e95741c7719b64b
2,415
h
C
samples/server/petstore/cpp-qt5-qhttpengine-server/server/src/models/OAIOrder.h
therockstorm/openapi-generator
01d0b5d4780ebe2d6025e2b443ec136c6ce16c45
[ "Apache-2.0" ]
11,868
2018-05-12T02:58:07.000Z
2022-03-31T21:19:39.000Z
samples/server/petstore/cpp-qt5-qhttpengine-server/server/src/models/OAIOrder.h
therockstorm/openapi-generator
01d0b5d4780ebe2d6025e2b443ec136c6ce16c45
[ "Apache-2.0" ]
9,672
2018-05-12T14:25:43.000Z
2022-03-31T23:59:30.000Z
samples/server/petstore/cpp-qt5-qhttpengine-server/server/src/models/OAIOrder.h
therockstorm/openapi-generator
01d0b5d4780ebe2d6025e2b443ec136c6ce16c45
[ "Apache-2.0" ]
4,776
2018-05-12T12:06:08.000Z
2022-03-31T19:52:51.000Z
/** * OpenAPI Petstore * This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters. * * The version of the OpenAPI document: 1.0.0 * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /* * OAIOrder.h * * An order for a pets from the pet store */ #ifndef OAIOrder_H #define OAIOrder_H #include <QJsonObject> #include <QDateTime> #include <QString> #include "OAIEnum.h" #include "OAIObject.h" namespace OpenAPI { class OAIOrder : public OAIObject { public: OAIOrder(); OAIOrder(QString json); ~OAIOrder() override; QString asJson() const override; QJsonObject asJsonObject() const override; void fromJsonObject(QJsonObject json) override; void fromJson(QString jsonString) override; qint64 getId() const; void setId(const qint64 &id); bool is_id_Set() const; bool is_id_Valid() const; qint64 getPetId() const; void setPetId(const qint64 &pet_id); bool is_pet_id_Set() const; bool is_pet_id_Valid() const; qint32 getQuantity() const; void setQuantity(const qint32 &quantity); bool is_quantity_Set() const; bool is_quantity_Valid() const; QDateTime getShipDate() const; void setShipDate(const QDateTime &ship_date); bool is_ship_date_Set() const; bool is_ship_date_Valid() const; QString getStatus() const; void setStatus(const QString &status); bool is_status_Set() const; bool is_status_Valid() const; bool isComplete() const; void setComplete(const bool &complete); bool is_complete_Set() const; bool is_complete_Valid() const; virtual bool isSet() const override; virtual bool isValid() const override; private: void initializeModel(); qint64 id; bool m_id_isSet; bool m_id_isValid; qint64 pet_id; bool m_pet_id_isSet; bool m_pet_id_isValid; qint32 quantity; bool m_quantity_isSet; bool m_quantity_isValid; QDateTime ship_date; bool m_ship_date_isSet; bool m_ship_date_isValid; QString status; bool m_status_isSet; bool m_status_isValid; bool complete; bool m_complete_isSet; bool m_complete_isValid; }; } // namespace OpenAPI Q_DECLARE_METATYPE(OpenAPI::OAIOrder) #endif // OAIOrder_H
22.361111
133
0.706832
0812c3bdcce1a8c2b7ddfde14c8be1f6b2087725
11,725
c
C
processors/ARM/gdb-7.10/opcodes/xgate-opc.c
pavel-krivanek/opensmalltalk-vm
694dfe3ed015e16f5b8e9cf17d37e4bdd32bea16
[ "MIT" ]
110
2015-01-10T17:54:56.000Z
2021-08-08T05:06:55.000Z
processors/ARM/gdb-7.10/opcodes/xgate-opc.c
pavel-krivanek/opensmalltalk-vm
694dfe3ed015e16f5b8e9cf17d37e4bdd32bea16
[ "MIT" ]
36
2015-05-08T07:45:52.000Z
2019-04-30T13:41:12.000Z
processors/ARM/gdb-7.10/opcodes/xgate-opc.c
pavel-krivanek/opensmalltalk-vm
694dfe3ed015e16f5b8e9cf17d37e4bdd32bea16
[ "MIT" ]
45
2015-02-26T13:55:13.000Z
2020-11-25T09:17:43.000Z
/* mc9xgate-opc.c -- Freescale XGATE opcode list Copyright (C) 1999-2015 Free Software Foundation, Inc. Written by Sean Keys ([email protected]) This file is part of the GNU opcodes library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. It is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this file; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ #include <stdio.h> #include "ansidecl.h" #include "opcode/xgate.h" #define TABLE_SIZE(X) (sizeof(X) / sizeof(X[0])) /* Combination of CCR flags. */ /* ORDER HI TO LOW NZVC */ #define XGATE_NZ_BIT XGATE_N_BIT|XGATE_Z_BIT #define XGATE_NV_BIT XGATE_N_BIT|XGATE_V_BIT #define XGATE_NC_BIT XGATE_N_BIT|XGATE_C_BIT #define XGATE_ZV_BIT XGATE_Z_BIT|XGATE_V_BIT #define XGATE_ZC_BIT XGATE_Z_BIT|XGATE_C_BIT #define XGATE_VC_BIT XGATE_V_BIT|XGATE_C_BIT #define XGATE_NVC_BIT XGATE_NV_BIT|XGATE_C_BIT #define XGATE_NZC_BIT XGATE_NZ_BIT|XGATE_C_BIT #define XGATE_NZV_BIT XGATE_N_BIT|XGATE_Z_BIT|XGATE_V_BIT #define XGATE_ZVC_BIT XGATE_VC_BIT|XGATE_Z_BIT #define XGATE_NZVC_BIT XGATE_NZV_BIT|XGATE_C_BIT /* Flags when the insn only changes some CCR flags. */ #define CHG_NONE 0,0,0 #define CHG_Z 0,0,XGATE_Z_BIT #define CHG_C 0,0,XGATE_C_BIT #define CHG_ZVC 0,0,XGATE_ZVC_BIT #define CHG_NZC 0,0,XGATE_NZC_BIT #define CHG_NZV 0,0,XGATE_NZV_BIT #define CHG_NZVC 0,0,(XGATE_NZVC_BIT) #define CHG_HNZVC 0,0,XGATE_HNZVC_BIT // TODO DELETE #define CHG_ALL 0,0,0xff /* The insn clears and changes some flags. */ #define CLR_I 0,XG_I_BIT,0 #define CLR_C 0,XGATE_C_BIT,0 #define CLR_V 0,XGATE_V_BIT,0 #define CLR_V_CHG_ZC 0,XGATE_V_BIT,XGATE_ZC_BIT #define CLR_V_CHG_NZ 0,XGATE_V_BIT,XGATE_NZ_BIT #define CLR_V_CHG_ZVC 0,XGATE_V_BIT,XGATE_ZVC_BIT #define CLR_N_CHG_ZVC 0,XGATE_N_BIT,XGATE_ZVC_BIT /* Used by lsr */ #define CLR_VC_CHG_NZ 0,XGATE_VC_BIT,XGATE_NZ_BIT /* The insn sets some flags. */ #define SET_I XGATE_I_BIT,0,0 #define SET_C XGATE_C_BIT,0,0 #define SET_V XGATE_V_BIT,0,0 #define SET_Z_CLR_NVC XGATE_Z_BIT,XGATE_NVC_BIT,0 #define SET_C_CLR_V_CHG_NZ XGATE_C_BIT,XGATE_V_BIT,XGATE_NZ_BIT #define SET_Z_CHG_HNVC XGATE_Z_BIT,0,XGATE_HNVC_BIT /* operand modes */ #define OP_NONE XGATE_OP_NONE #define OP_INH XGATE_OP_INH #define OP_TRI XGATE_OP_TRI #define OP_DYA XGATE_OP_DYA #define OP_IMM3 XGATE_OP_IMM3 #define OP_IMM4 XGATE_OP_IMM4 #define OP_IMM8 XGATE_OP_IMM8 #define OP_IMM16 XGATE_OP_IMM16 #define OP_MON XGATE_OP_MON #define OP_MON_R_C XGATE_OP_MON_R_C #define OP_MON_C_R XGATE_OP_MON_C_R #define OP_MON_R_P XGATE_OP_MON_R_P #define OP_IDR XGATE_OP_IDR #define OP_IDO5 XGATE_OP_IDO5 #define OP_REL9 XGATE_OP_REL9 #define OP_REL10 XGATE_OP_REL10 #define OP_DM XGATE_OP_DYA_MON /* macro operand modes */ #define OP_mADD XGATE_OP_IMM16mADD #define OP_mAND XGATE_OP_IMM16mAND #define OP_mCPC XGATE_OP_IMM16mCPC #define OP_mLDW XGATE_OP_IMM16mLDW #define OP_mSUB XGATE_OP_IMM16mSUB #define ALL XGATE_V1|XGATE_V2|XGATE_V3 const struct xgate_opcode xgate_opcodes[] = { /* Name -+ +--- CPU Constraints --+ +----------- CCR changes Format -------+ +---------------- Max # cycles +------------------- Min # cycles Size -------------------------------------+ +-------------------------- Opcode */ { "adc", OP_TRI, "00011rrrrrrrrr11", 2, 0x1803, 1, 1, CHG_NZVC, ALL}, { "add", OP_TRI, "00011rrrrrrrrr10", 2, 0x1802, 1, 1, CHG_NZVC, ALL}, { "addh", OP_IMM8, "11101rrriiiiiiii", 2, 0xE800, 1, 1, CHG_NZVC, ALL}, { "addl", OP_IMM8, "11100rrriiiiiiii", 2, 0xE000, 1, 1, CHG_NZVC, ALL}, { "and", OP_TRI, "00010rrrrrrrrr00", 2, 0x1000, 1, 1, CHG_NZV, ALL}, { "andh", OP_IMM8, "10001rrriiiiiiii", 2, 0x8800, 1, 1, CHG_NZV, ALL}, { "andl", OP_IMM8, "10000rrriiiiiiii", 2, 0x8000, 1, 1, CHG_NZV, ALL}, { "asr", OP_IMM4, "00001rrriiii1001", 2, 0x0809, 1, 1, CHG_NZVC, ALL}, { "asr", OP_DYA, "00001rrrrrr10001", 2, 0x0811, 1, 1, CHG_NZVC, ALL}, { "bcc", OP_REL9, "0010000iiiiiiiii", 2, 0x2000, 1, 2, CHG_NONE, ALL}, { "bcs", OP_REL9, "0010001iiiiiiiii", 2, 0x2200, 1, 2, CHG_NONE, ALL}, { "beq", OP_REL9, "0010011iiiiiiiii", 2, 0x2600, 1, 2, CHG_NONE, ALL}, { "bfext", OP_TRI, "01100rrrrrrrrr11", 2, 0x6003, 1, 1, CHG_NZV, ALL}, { "bffo", OP_DYA, "00001rrrrrr10000", 2, 0x0810, 1, 1, CHG_NZVC, ALL}, { "bfins", OP_TRI, "01101rrrrrrrrr11", 2, 0x6803, 1, 1, CHG_NZV, ALL}, {"bfinsi", OP_TRI, "01110rrrrrrrrr11", 2, 0x7003, 1, 1, CHG_NZV, ALL}, {"bfinsx", OP_TRI, "01111rrrrrrrrr11", 2, 0x7803, 1, 1, CHG_NZV, ALL}, { "bge", OP_REL9, "0011010iiiiiiiii", 2, 0x3400, 1, 2, CHG_NONE, ALL}, { "bgt", OP_REL9, "0011100iiiiiiiii", 2, 0x3800, 1, 2, CHG_NONE, ALL}, { "bhi", OP_REL9, "0011000iiiiiiiii", 2, 0x3000, 1, 2, CHG_NONE, ALL}, { "bith", OP_IMM8, "10011rrriiiiiiii", 2, 0x9800, 1, 1, CHG_NZV, ALL}, { "bitl", OP_IMM8, "10010rrriiiiiiii", 2, 0x9000, 1, 1, CHG_NZV, ALL}, { "ble", OP_REL9, "0011101iiiiiiiii", 2, 0x3A00, 1, 2, CHG_NONE, ALL}, { "bls", OP_REL9, "0011001iiiiiiiii", 2, 0x3200, 1, 2, CHG_NONE, ALL}, { "blt", OP_REL9, "0011011iiiiiiiii", 2, 0x3600, 1, 2, CHG_NONE, ALL}, { "bmi", OP_REL9, "0010101iiiiiiiii", 2, 0x2A00, 1, 2, CHG_NONE, ALL}, { "bne", OP_REL9, "0010010iiiiiiiii", 2, 0x2400, 1, 2, CHG_NONE, ALL}, { "bpl", OP_REL9, "0010100iiiiiiiii", 2, 0x2800, 1, 2, CHG_NONE, ALL}, { "bra", OP_REL10, "001111iiiiiiiiii", 2, 0x3C00, 2, 2, CHG_NONE, ALL}, { "brk", OP_INH, "0000000000000000", 2, 0x0000, 1, 1, CHG_NONE, ALL}, { "bvc", OP_REL9, "0010110iiiiiiiii", 2, 0x2C00, 1, 2, CHG_NONE, ALL}, { "bvs", OP_REL9, "0010111iiiiiiiii", 2, 0x2E00, 1, 2, CHG_NONE, ALL}, { "cmpl", OP_IMM8, "11010rrriiiiiiii", 2, 0xD000, 1, 1, CHG_NZVC, ALL}, { "cpch", OP_IMM8, "11011rrriiiiiiii", 2, 0xD800, 1, 1, CHG_NZVC, ALL}, { "csem", OP_IMM3, "00000iii11110000", 2, 0x00F0, 1, 1, CHG_NONE, ALL}, { "csem", OP_MON, "00000rrr11110001", 2, 0x00F1, 1, 1, CHG_NONE, ALL}, { "csl", OP_IMM4, "00001rrriiii1010", 2, 0x080A, 1, 1, CHG_NZVC, ALL}, { "csl", OP_DYA, "00001rrrrrr10010", 2, 0x0812, 1, 1, CHG_NZVC, ALL}, { "csr", OP_IMM4, "00001rrriiii1011", 2, 0x080B, 1, 1, CHG_NZVC, ALL}, { "csr", OP_DYA, "00001rrrrrr10011", 2, 0x0813, 1, 1, CHG_NZVC, ALL}, { "jal", OP_MON, "00000rrr11110110", 2, 0x00F6, 2, 2, CHG_NONE, ALL}, { "ldb", OP_IDO5, "01000rrrrrriiiii", 2, 0x4000, 2, 2, CHG_NONE, ALL}, { "ldb", OP_IDR, "01100rrrrrrrrrrr", 2, 0x6000, 2, 2, CHG_NONE, ALL}, { "ldh", OP_IMM8, "11111rrriiiiiiii", 2, 0xF800, 1, 1, CHG_NONE, ALL}, { "ldl", OP_IMM8, "11110rrriiiiiiii", 2, 0xF000, 1, 1, CHG_NONE, ALL}, { "ldw", OP_IDO5, "01001rrrrrriiiii", 2, 0x4800, 2, 2, CHG_NONE, ALL}, { "ldw", OP_IDR, "01101rrrrrrrrrrr", 2, 0x6800, 2, 2, CHG_NONE, ALL}, { "lsl", OP_IMM4, "00001rrriiii1100", 2, 0x080C, 1, 1, CHG_NZVC, ALL}, { "lsl", OP_DYA, "00001rrrrrr10100", 2, 0x0814, 1, 1, CHG_NZVC, ALL}, { "lsr", OP_IMM4, "00001rrriiii1101", 2, 0x080D, 1, 1, CHG_NZVC, ALL}, { "lsr", OP_DYA, "00001rrrrrr10101", 2, 0x0815, 1, 1, CHG_NZVC, ALL}, { "nop", OP_INH, "0000000100000000", 2, 0x0100, 1, 1, CHG_NONE, ALL}, { "or", OP_TRI, "00010rrrrrrrrr10", 2, 0x1002, 1, 1, CHG_NZV, ALL}, { "orh", OP_IMM8, "10101rrriiiiiiii", 2, 0xA800, 1, 1, CHG_NZV, ALL}, { "orl", OP_IMM8, "10100rrriiiiiiii", 2, 0xA000, 1, 1, CHG_NZV, ALL}, { "par", OP_MON, "00000rrr11110101", 2, 0x00F5, 1, 1, CHG_NZV, ALL}, { "rol", OP_IMM4, "00001rrriiii1110", 2, 0x080E, 1, 1, CHG_NZV, ALL}, { "rol", OP_DYA, "00001rrrrrr10110", 2, 0x0816, 1, 1, CHG_NZV, ALL}, { "ror", OP_IMM4, "00001rrriiii1111", 2, 0x080F, 1, 1, CHG_NZV, ALL}, { "ror", OP_DYA, "00001rrrrrr10111", 2, 0x0817, 1, 1, CHG_NZV, ALL}, { "rts", OP_INH, "0000001000000000", 2, 0x0200, 2, 2, CHG_NONE, ALL}, { "sbc", OP_TRI, "00011rrrrrrrrr01", 2, 0x1801, 1, 1, CHG_NZV, ALL}, { "ssem", OP_IMM3, "00000iii11110010", 2, 0x00F2, 2, 2, CHG_C, ALL}, { "ssem", OP_MON, "00000rrr11110011", 2, 0x00F3, 2, 2, CHG_C, ALL}, { "sex", OP_MON, "00000rrr11110100", 2, 0x00F4, 1, 1, CHG_NZV, ALL}, { "sif", OP_INH, "0000001100000000", 2, 0x0300, 2, 2, CHG_NONE, ALL}, { "sif", OP_MON, "00000rrr11110111", 2, 0x00F7, 2, 2, CHG_NONE, ALL}, { "stb", OP_IDO5, "01010rrrrrriiiii", 2, 0x5000, 2, 2, CHG_NONE, ALL}, { "stb", OP_IDR, "01110rrrrrrrrrrr", 2, 0x7000, 2, 2, CHG_NONE, ALL}, { "stw", OP_IDO5, "01011rrrrrriiiii", 2, 0x5800, 2, 2, CHG_NONE, ALL}, { "stw", OP_IDR, "01111rrrrrrrrrrr", 2, 0x7800, 2, 2, CHG_NONE, ALL}, { "sub", OP_TRI, "00011rrrrrrrrr00", 2, 0x1800, 1, 1, CHG_NZVC, ALL}, { "subh", OP_IMM8, "11001rrriiiiiiii", 2, 0xC800, 1, 1, CHG_NZVC, ALL}, { "subl", OP_IMM8, "11000rrriiiiiiii", 2, 0xC000, 1, 1, CHG_NZVC, ALL}, { "tfr", OP_MON_R_C, "00000rrr11111000", 2, 0x00F8, 1, 1, CHG_NONE, ALL}, { "tfr", OP_MON_C_R, "00000rrr11111001", 2, 0x00F9, 1, 1, CHG_NONE, ALL}, { "tfr", OP_MON_R_P, "00000rrr11111010", 2, 0x00FA, 1, 1, CHG_NONE, ALL}, { "xnor", OP_TRI, "00010rrrrrrrrr11", 2, 0x1003, 1, 1, CHG_NZV, ALL}, { "xnorh", OP_IMM8, "10111rrriiiiiiii", 2, 0xB800, 1, 1, CHG_NZV, ALL}, { "xnorl", OP_IMM8, "10110rrriiiiiiii", 2, 0xB000, 1, 1, CHG_NZV, ALL}, /* macro and alias codes */ { "add", OP_mADD, "----------------", 4, 0, 0, 0, CHG_NONE, ALL}, { "and", OP_mAND, "----------------", 4, 0, 0, 0, CHG_NONE, ALL}, { "bhs", OP_REL9, "0010000iiiiiiiii", 2, 0x2000, 0, 0, CHG_NONE, ALL}, { "blo", OP_REL9, "0010001iiiiiiiii", 2, 0x2200, 0, 0, CHG_NONE, ALL}, { "cmp", OP_mCPC, "----------------", 4, 0, 0, 0, CHG_NONE, ALL}, { "cmp", OP_DYA, "00011sssrrrrrr00", 2, 0x1800, 0, 0, CHG_NZVC, ALL}, { "com", OP_DM, "00010rrrsssrrr11", 2, 0x1003, 0, 0, CHG_NZVC, ALL}, { "com", OP_DYA, "00010rrrsssrrr11", 2, 0x1003, 0, 0, CHG_NZV, ALL}, { "cpc", OP_DYA, "00011sssrrrrrr01", 2, 0x1801, 0, 0, CHG_NZVC, ALL}, { "ldd", OP_mLDW, "----------------", 4, 0, 0, 0, CHG_NONE, ALL}, { "ldw", OP_mLDW, "----------------", 4, 0, 0, 0, CHG_NONE, ALL}, { "mov", OP_DYA, "00010rrrsssrrr10", 2, 0x1002, 0, 0, CHG_NZVC, ALL}, { "neg", OP_DYA, "00011rrrsssrrr00", 2, 0x1800, 0, 0, CHG_NZVC, ALL}, { "sub", OP_mSUB, "----------------", 4, 0, 0, 0, CHG_NONE, ALL}, { "tst", OP_MON, "00011sssrrrsss00", 2, 0x1800, 0, 0, CHG_NZV, ALL} }; const int xgate_num_opcodes = TABLE_SIZE (xgate_opcodes);
57.47549
89
0.610149
0816e1288651ec7bb3a2e7a56d365b2471ed1fcc
454
h
C
PZMarkdown/PZMarkdown.h
philzet/PZMarkdown
c2d593582b2b39a061ec7228221606b64a74cd33
[ "Unlicense" ]
null
null
null
PZMarkdown/PZMarkdown.h
philzet/PZMarkdown
c2d593582b2b39a061ec7228221606b64a74cd33
[ "Unlicense" ]
null
null
null
PZMarkdown/PZMarkdown.h
philzet/PZMarkdown
c2d593582b2b39a061ec7228221606b64a74cd33
[ "Unlicense" ]
null
null
null
// // PZMarkdown.h // PZMarkdown // // Created by Phil Zet on 3/25/20. // #import <Foundation/Foundation.h> //! Project version number for PZMarkdown. FOUNDATION_EXPORT double PZMarkdownVersionNumber; //! Project version string for PZMarkdown. FOUNDATION_EXPORT const unsigned char PZMarkdownVersionString[]; // In this header, you should import all the public headers of your framework using statements like #import <PZMarkdown/PublicHeader.h>
23.894737
135
0.768722
0817d823d3928d11042149624b05d915c4d7d8dc
15,184
c
C
clang/test/CodeGen/fp16-ops.c
mkinsner/llvm
589d48844edb12cd357b3024248b93d64b6760bf
[ "Apache-2.0" ]
2,338
2018-06-19T17:34:51.000Z
2022-03-31T11:00:37.000Z
clang/test/CodeGen/fp16-ops.c
mkinsner/llvm
589d48844edb12cd357b3024248b93d64b6760bf
[ "Apache-2.0" ]
3,740
2019-01-23T15:36:48.000Z
2022-03-31T22:01:13.000Z
clang/test/CodeGen/fp16-ops.c
mkinsner/llvm
589d48844edb12cd357b3024248b93d64b6760bf
[ "Apache-2.0" ]
500
2019-01-23T07:49:22.000Z
2022-03-30T02:59:37.000Z
// REQUIRES: arm-registered-target // RUN: %clang_cc1 -emit-llvm -o - -triple arm-none-linux-gnueabi %s | FileCheck %s --check-prefix=NOTNATIVE --check-prefix=CHECK // RUN: %clang_cc1 -emit-llvm -o - -triple aarch64-none-linux-gnueabi %s | FileCheck %s --check-prefix=NOTNATIVE --check-prefix=CHECK // RUN: %clang_cc1 -emit-llvm -o - -triple x86_64-linux-gnu %s | FileCheck %s --check-prefix=NOTNATIVE --check-prefix=CHECK // RUN: %clang_cc1 -emit-llvm -o - -triple arm-none-linux-gnueabi -fallow-half-arguments-and-returns %s | FileCheck %s --check-prefix=NOTNATIVE --check-prefix=CHECK // RUN: %clang_cc1 -emit-llvm -o - -triple aarch64-none-linux-gnueabi -fallow-half-arguments-and-returns %s | FileCheck %s --check-prefix=NOTNATIVE --check-prefix=CHECK // RUN: %clang_cc1 -emit-llvm -o - -triple arm-none-linux-gnueabi -fnative-half-type %s \ // RUN: | FileCheck %s --check-prefix=NATIVE-HALF // RUN: %clang_cc1 -emit-llvm -o - -triple aarch64-none-linux-gnueabi -fnative-half-type %s \ // RUN: | FileCheck %s --check-prefix=NATIVE-HALF // RUN: %clang_cc1 -emit-llvm -o - -x renderscript %s \ // RUN: | FileCheck %s --check-prefix=NATIVE-HALF typedef unsigned cond_t; typedef __fp16 float16_t; volatile cond_t test; volatile int i0; volatile __fp16 h0 = 0.0, h1 = 1.0, h2; volatile float f0, f1, f2; volatile double d0; short s0; void foo(void) { // CHECK-LABEL: define{{.*}} void @foo() // Check unary ops // NOTNATIVE: [[F16TOF32:fpext half]] // CHECK: fptoui float // NATIVE-HALF: fptoui half test = (h0); // CHECK: uitofp i32 // NOTNATIVE: [[F32TOF16:fptrunc float]] // NATIVE-HALF: uitofp i32 {{.*}} to half h0 = (test); // CHECK: [[F16TOF32]] // CHECK: fcmp une float // NATIVE-HALF: fcmp une half test = (!h1); // CHECK: [[F16TOF32]] // CHECK: fneg float // NOTNATIVE: [[F32TOF16]] // NATIVE-HALF: fneg half h1 = -h1; // CHECK: [[F16TOF32]] // CHECK: [[F32TOF16]] // NATIVE-HALF: load volatile half // NATIVE-HALF-NEXT: store volatile half h1 = +h1; // CHECK: [[F16TOF32]] // CHECK: fadd float // CHECK: [[F32TOF16]] // NATIVE-HALF: fadd half h1++; // CHECK: [[F16TOF32]] // CHECK: fadd float // CHECK: [[F32TOF16]] // NATIVE-HALF: fadd half ++h1; // CHECK: [[F16TOF32]] // CHECK: fadd float // CHECK: [[F32TOF16]] // NATIVE-HALF: fadd half --h1; // CHECK: [[F16TOF32]] // CHECK: fadd float // CHECK: [[F32TOF16]] // NATIVE-HALF: fadd half h1--; // Check binary ops with various operands // CHECK: [[F16TOF32]] // CHECK: [[F16TOF32]] // CHECK: fmul float // CHECK: [[F32TOF16]] // NATIVE-HALF: fmul half h1 = h0 * h2; // CHECK: [[F16TOF32]] // CHECK: fmul float // CHECK: [[F32TOF16]] // NATIVE-HALF: fmul half h1 = h0 * (__fp16) -2.0f; // CHECK: [[F16TOF32]] // CHECK: fmul float // CHECK: [[F32TOF16]] // NATIVE-HALF: fpext half // NATIVE-HALF: fmul float h1 = h0 * f2; // CHECK: [[F16TOF32]] // CHECK: fmul float // CHECK: [[F32TOF16]] // NATIVE-HALF: fpext half // NATIVE-HALF: fmul float h1 = f0 * h2; // CHECK: [[F16TOF32]] // CHECK: fmul float // CHECK: [[F32TOF16]] // NATIVE-HALF: fmul half h1 = h0 * i0; // CHECK: [[F16TOF32]] // CHECK: [[F16TOF32]] // CHECK: fdiv float // CHECK: [[F32TOF16]] // NATIVE-HALF: fdiv half h1 = (h0 / h2); // CHECK: [[F16TOF32]] // CHECK: fdiv float // CHECK: [[F32TOF16]] // NATIVE-HALF: fdiv half h1 = (h0 / (__fp16) -2.0f); // CHECK: [[F16TOF32]] // CHECK: fdiv float // CHECK: [[F32TOF16]] // NATIVE-HALF: fpext half // NATIVE-HALF: fdiv float h1 = (h0 / f2); // CHECK: [[F16TOF32]] // CHECK: fdiv float // CHECK: [[F32TOF16]] // NATIVE-HALF: fpext half // NATIVE-HALF: fdiv float h1 = (f0 / h2); // CHECK: [[F16TOF32]] // CHECK: fdiv float // CHECK: [[F32TOF16]] // NATIVE-HALF: fdiv half h1 = (h0 / i0); // CHECK: [[F16TOF32]] // CHECK: [[F16TOF32]] // CHECK: fadd float // CHECK: [[F32TOF16]] // NATIVE-HALF: fadd half h1 = (h2 + h0); // CHECK: [[F16TOF32]] // CHECK: fadd float // CHECK: [[F32TOF16]] // NATIVE-HALF: fadd half h1 = ((__fp16)-2.0 + h0); // CHECK: [[F16TOF32]] // CHECK: fadd float // CHECK: [[F32TOF16]] // NATIVE-HALF: fpext half // NATIVE-HALF: fadd float h1 = (h2 + f0); // CHECK: [[F16TOF32]] // CHECK: fadd float // CHECK: [[F32TOF16]] // NATIVE-HALF: fpext half // NATIVE-HALF: fadd float h1 = (f2 + h0); // CHECK: [[F16TOF32]] // CHECK: fadd float // CHECK: [[F32TOF16]] // NATIVE-HALF: fadd half h1 = (h0 + i0); // CHECK: [[F16TOF32]] // CHECK: [[F16TOF32]] // CHECK: fsub float // CHECK: [[F32TOF16]] // NATIVE-HALF: fsub half h1 = (h2 - h0); // CHECK: [[F16TOF32]] // CHECK: fsub float // CHECK: [[F32TOF16]] // NATIVE-HALF: fsub half h1 = ((__fp16)-2.0f - h0); // CHECK: [[F16TOF32]] // CHECK: fsub float // CHECK: [[F32TOF16]] // NATIVE-HALF: fpext half // NATIVE-HALF: fsub float h1 = (h2 - f0); // CHECK: [[F16TOF32]] // CHECK: fsub float // CHECK: [[F32TOF16]] // NATIVE-HALF: fpext half // NATIVE-HALF: fsub float h1 = (f2 - h0); // CHECK: [[F16TOF32]] // CHECK: fsub float // CHECK: [[F32TOF16]] // NATIVE-HALF: fsub half h1 = (h0 - i0); // CHECK: [[F16TOF32]] // CHECK: [[F16TOF32]] // CHECK: fcmp olt float // NATIVE-HALF: fcmp olt half test = (h2 < h0); // CHECK: [[F16TOF32]] // CHECK: fcmp olt float // NATIVE-HALF: fcmp olt half test = (h2 < (__fp16)42.0); // CHECK: [[F16TOF32]] // CHECK: fcmp olt float // NATIVE-HALF: fpext half // NATIVE-HALF: fcmp olt float test = (h2 < f0); // CHECK: [[F16TOF32]] // CHECK: fcmp olt float // NATIVE-HALF: fpext half // NATIVE-HALF: fcmp olt float test = (f2 < h0); // CHECK: [[F16TOF32]] // CHECK: fcmp olt float // NATIVE-HALF: fcmp olt half test = (i0 < h0); // CHECK: [[F16TOF32]] // CHECK: fcmp olt float // NATIVE-HALF: fcmp olt half test = (h0 < i0); // CHECK: [[F16TOF32]] // CHECK: [[F16TOF32]] // CHECK: fcmp ogt float // NATIVE-HALF: fcmp ogt half test = (h0 > h2); // CHECK: [[F16TOF32]] // CHECK: fcmp ogt float // NATIVE-HALF: fcmp ogt half test = ((__fp16)42.0 > h2); // CHECK: [[F16TOF32]] // CHECK: fcmp ogt float // NATIVE-HALF: fpext half // NATIVE-HALF: fcmp ogt float test = (h0 > f2); // CHECK: [[F16TOF32]] // CHECK: fcmp ogt float // NATIVE-HALF: fpext half // NATIVE-HALF: fcmp ogt float test = (f0 > h2); // CHECK: [[F16TOF32]] // CHECK: fcmp ogt float // NATIVE-HALF: fcmp ogt half test = (i0 > h0); // CHECK: [[F16TOF32]] // CHECK: fcmp ogt float // NATIVE-HALF: fcmp ogt half test = (h0 > i0); // CHECK: [[F16TOF32]] // CHECK: [[F16TOF32]] // CHECK: fcmp ole float // NATIVE-HALF: fcmp ole half test = (h2 <= h0); // CHECK: [[F16TOF32]] // CHECK: fcmp ole float // NATIVE-HALF: fcmp ole half test = (h2 <= (__fp16)42.0); // CHECK: [[F16TOF32]] // CHECK: fcmp ole float // NATIVE-HALF: fpext half // NATIVE-HALF: fcmp ole float test = (h2 <= f0); // CHECK: [[F16TOF32]] // CHECK: fcmp ole float // NATIVE-HALF: fpext half // NATIVE-HALF: fcmp ole float test = (f2 <= h0); // CHECK: [[F16TOF32]] // CHECK: fcmp ole float // NATIVE-HALF: fcmp ole half test = (i0 <= h0); // CHECK: [[F16TOF32]] // CHECK: fcmp ole float // NATIVE-HALF: fcmp ole half test = (h0 <= i0); // CHECK: [[F16TOF32]] // CHECK: [[F16TOF32]] // CHECK: fcmp oge float // NATIVE-HALF: fcmp oge half test = (h0 >= h2); // CHECK: [[F16TOF32]] // CHECK: fcmp oge float // NATIVE-HALF: fcmp oge half test = (h0 >= (__fp16)-2.0); // CHECK: [[F16TOF32]] // CHECK: fcmp oge float // NATIVE-HALF: fpext half // NATIVE-HALF: fcmp oge float test = (h0 >= f2); // CHECK: [[F16TOF32]] // CHECK: fcmp oge float // NATIVE-HALF: fpext half // NATIVE-HALF: fcmp oge float test = (f0 >= h2); // CHECK: [[F16TOF32]] // CHECK: fcmp oge float // NATIVE-HALF: fcmp oge half test = (i0 >= h0); // CHECK: [[F16TOF32]] // CHECK: fcmp oge float // NATIVE-HALF: fcmp oge half test = (h0 >= i0); // CHECK: [[F16TOF32]] // CHECK: [[F16TOF32]] // CHECK: fcmp oeq float // NATIVE-HALF: fcmp oeq half test = (h1 == h2); // CHECK: [[F16TOF32]] // CHECK: fcmp oeq float // NATIVE-HALF: fcmp oeq half test = (h1 == (__fp16)1.0); // CHECK: [[F16TOF32]] // CHECK: fcmp oeq float // NATIVE-HALF: fpext half // NATIVE-HALF: fcmp oeq float test = (h1 == f1); // CHECK: [[F16TOF32]] // CHECK: fcmp oeq float // NATIVE-HALF: fpext half // NATIVE-HALF: fcmp oeq float test = (f1 == h1); // CHECK: [[F16TOF32]] // CHECK: fcmp oeq float // NATIVE-HALF: fcmp oeq half test = (i0 == h0); // CHECK: [[F16TOF32]] // CHECK: fcmp oeq float // NATIVE-HALF: fcmp oeq half test = (h0 == i0); // CHECK: [[F16TOF32]] // CHECK: [[F16TOF32]] // CHECK: fcmp une float // NATIVE-HALF: fcmp une half test = (h1 != h2); // CHECK: [[F16TOF32]] // CHECK: fcmp une float // NATIVE-HALF: fcmp une half test = (h1 != (__fp16)1.0); // CHECK: [[F16TOF32]] // CHECK: fcmp une float // NATIVE-HALF: fpext half // NATIVE-HALF: fcmp une float test = (h1 != f1); // CHECK: [[F16TOF32]] // CHECK: fcmp une float // NATIVE-HALF: fpext half // NATIVE-HALF: fcmp une float test = (f1 != h1); // CHECK: [[F16TOF32]] // CHECK: fcmp une float // NATIVE-HALF: fcmp une half test = (i0 != h0); // CHECK: [[F16TOF32]] // CHECK: fcmp une float // NATIVE-HALF: fcmp une half test = (h0 != i0); // CHECK: [[F16TOF32]] // CHECK: fcmp une float // CHECK: [[F16TOF32]] // CHECK: [[F16TOF32]] // CHECK: [[F32TOF16]] // NATIVE-HALF: fcmp une half {{.*}}, 0xH0000 h1 = (h1 ? h2 : h0); // Check assignments (inc. compound) h0 = h1; // NOTNATIVE: store {{.*}} half 0xHC000 // NATIVE-HALF: store {{.*}} half 0xHC000 h0 = (__fp16)-2.0f; // CHECK: [[F32TOF16]] // NATIVE-HALF: fptrunc float h0 = f0; // CHECK: sitofp i32 {{.*}} to float // CHECK: [[F32TOF16]] // NATIVE-HALF: sitofp i32 {{.*}} to half h0 = i0; // CHECK: [[F16TOF32]] // CHECK: fptosi float {{.*}} to i32 // NATIVE-HALF: fptosi half {{.*}} to i32 i0 = h0; // CHECK: [[F16TOF32]] // CHECK: [[F16TOF32]] // CHECK: fadd float // CHECK: [[F32TOF16]] // NATIVE-HALF: fadd half h0 += h1; // CHECK: [[F16TOF32]] // CHECK: fadd float // CHECK: [[F32TOF16]] // NATIVE-HALF: fadd half h0 += (__fp16)1.0f; // CHECK: [[F16TOF32]] // CHECK: fadd float // CHECK: [[F32TOF16]] // NATIVE-HALF: fpext half // NATIVE-HALF: fadd float // NATIVE-HALF: fptrunc float h0 += f2; // CHECK: [[F16TOF32]] // CHECK: sitofp i32 {{.*}} to float // CHECK: fadd float // CHECK: fptosi float {{.*}} to i32 // NATIVE-HALF: sitofp i32 {{.*}} to half // NATIVE-HALF: fadd half // NATIVE-HALF: fptosi half {{.*}} to i32 i0 += h0; // CHECK: sitofp i32 {{.*}} to float // CHECK: [[F16TOF32]] // CHECK: fadd float // CHECK: [[F32TOF16]] // NATIVE-HALF: sitofp i32 {{.*}} to half // NATIVE-HALF: fadd half h0 += i0; // CHECK: [[F16TOF32]] // CHECK: [[F16TOF32]] // CHECK: fsub float // CHECK: [[F32TOF16]] // NATIVE-HALF: fsub half h0 -= h1; // CHECK: [[F16TOF32]] // CHECK: fsub float // CHECK: [[F32TOF16]] // NATIVE-HALF: fsub half h0 -= (__fp16)1.0; // CHECK: [[F16TOF32]] // CHECK: fsub float // CHECK: [[F32TOF16]] // NATIVE-HALF: fpext half // NATIVE-HALF: fsub float // NATIVE-HALF: fptrunc float h0 -= f2; // CHECK: [[F16TOF32]] // CHECK: sitofp i32 {{.*}} to float // CHECK: fsub float // CHECK: fptosi float {{.*}} to i32 // NATIVE-HALF: sitofp i32 {{.*}} to half // NATIVE-HALF: fsub half // NATIVE-HALF: fptosi half {{.*}} to i32 i0 -= h0; // CHECK: sitofp i32 {{.*}} to float // CHECK: [[F16TOF32]] // CHECK: fsub float // CHECK: [[F32TOF16]] // NATIVE-HALF: sitofp i32 {{.*}} to half // NATIVE-HALF: fsub half h0 -= i0; // CHECK: [[F16TOF32]] // CHECK: [[F16TOF32]] // CHECK: fmul float // CHECK: [[F32TOF16]] // NATIVE-HALF: fmul half h0 *= h1; // CHECK: [[F16TOF32]] // CHECK: fmul float // CHECK: [[F32TOF16]] // NATIVE-HALF: fmul half h0 *= (__fp16)1.0; // CHECK: [[F16TOF32]] // CHECK: fmul float // CHECK: [[F32TOF16]] // NATIVE-HALF: fpext half // NATIVE-HALF: fmul float // NATIVE-HALF: fptrunc float h0 *= f2; // CHECK: [[F16TOF32]] // CHECK: sitofp i32 {{.*}} to float // CHECK: fmul float // CHECK: fptosi float {{.*}} to i32 // NATIVE-HALF: sitofp i32 {{.*}} to half // NATIVE-HALF: fmul half // NATIVE-HALF: fptosi half {{.*}} to i32 i0 *= h0; // CHECK: sitofp i32 {{.*}} to float // CHECK: [[F16TOF32]] // CHECK: fmul float // CHECK: [[F32TOF16]] // NATIVE-HALF: sitofp i32 {{.*}} to half // NATIVE-HALF: fmul half h0 *= i0; // CHECK: [[F16TOF32]] // CHECK: [[F16TOF32]] // CHECK: fdiv float // CHECK: [[F32TOF16]] // NATIVE-HALF: fdiv half h0 /= h1; // CHECK: [[F16TOF32]] // CHECK: fdiv float // CHECK: [[F32TOF16]] // NATIVE-HALF: fdiv half h0 /= (__fp16)1.0; // CHECK: [[F16TOF32]] // CHECK: fdiv float // CHECK: [[F32TOF16]] // NATIVE-HALF: fpext half // NATIVE-HALF: fdiv float // NATIVE-HALF: fptrunc float h0 /= f2; // CHECK: [[F16TOF32]] // CHECK: sitofp i32 {{.*}} to float // CHECK: fdiv float // CHECK: fptosi float {{.*}} to i32 // NATIVE-HALF: sitofp i32 {{.*}} to half // NATIVE-HALF: fdiv half // NATIVE-HALF: fptosi half {{.*}} to i32 i0 /= h0; // CHECK: sitofp i32 {{.*}} to float // CHECK: [[F16TOF32]] // CHECK: fdiv float // CHECK: [[F32TOF16]] // NATIVE-HALF: sitofp i32 {{.*}} to half // NATIVE-HALF: fdiv half h0 /= i0; // Check conversions to/from double // NOTNATIVE: fptrunc double {{.*}} to half // NATIVE-HALF: fptrunc double {{.*}} to half h0 = d0; // CHECK: [[MID:%.*]] = fptrunc double {{%.*}} to float // NOTNATIVE: fptrunc float [[MID]] to half // NATIVE-HALF: [[MID:%.*]] = fptrunc double {{%.*}} to float // NATIVE-HALF: fptrunc float {{.*}} to half h0 = (float)d0; // NOTNATIVE: fpext half {{.*}} to double // NATIVE-HALF: fpext half {{.*}} to double d0 = h0; // NOTNATIVE: [[MID:%.*]] = fpext half {{.*}} to float // CHECK: fpext float [[MID]] to double // NATIVE-HALF: [[MID:%.*]] = fpext half {{.*}} to float // NATIVE-HALF: fpext float [[MID]] to double d0 = (float)h0; // NOTNATIVE: [[V1:%.*]] = load i16, i16* @s0 // NOTNATIVE: [[CONV:%.*]] = sitofp i16 [[V1]] to float // NOTNATIVE: [[TRUNC:%.*]] = fptrunc float [[CONV]] to half // NOTNATIVE: store volatile half [[TRUNC]], half* @h0 h0 = s0; } // CHECK-LABEL: define{{.*}} void @testTypeDef( // CHECK: %[[CONV:.*]] = fpext <4 x half> %{{.*}} to <4 x float> // CHECK: %[[CONV1:.*]] = fpext <4 x half> %{{.*}} to <4 x float> // CHECK: %[[ADD:.*]] = fadd <4 x float> %[[CONV]], %[[CONV1]] // CHECK: fptrunc <4 x float> %[[ADD]] to <4 x half> void testTypeDef() { __fp16 t0 __attribute__((vector_size(8))); float16_t t1 __attribute__((vector_size(8))); t1 = t0 + t1; }
27.260323
168
0.575869
0817e3277c1b7c05d263e5090519a670139b4936
1,492
h
C
libredex/IRMetaIO.h
penguin-wwy/redex
31baadec7ccddcadb5ddaf4947a63112f2eadc04
[ "MIT" ]
6,059
2016-04-12T21:07:05.000Z
2022-03-31T16:31:48.000Z
libredex/IRMetaIO.h
penguin-wwy/redex
31baadec7ccddcadb5ddaf4947a63112f2eadc04
[ "MIT" ]
638
2016-04-12T22:45:48.000Z
2022-03-29T21:50:09.000Z
libredex/IRMetaIO.h
penguin-wwy/redex
31baadec7ccddcadb5ddaf4947a63112f2eadc04
[ "MIT" ]
704
2016-04-12T23:47:01.000Z
2022-03-30T09:44:56.000Z
/* * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include "DexClass.h" #include "ReferencedState.h" namespace ir_meta_io { void dump(const Scope& classes, const std::string& output_dir); bool load(const std::string& input_dir); class IRMetaIO { public: struct bit_rstate_t { ReferencedState::InnerStruct inner_struct; }; static void serialize_rstate(const ReferencedState& rstate, std::ofstream& ostrm); static void deserialize_rstate(const char** _ptr, ReferencedState& rstate); /** * Only serialize meta data of class/method/field if they are not default */ template <typename T> static bool is_default_meta(const T* obj) { return obj->get_deobfuscated_name() == show(obj) && !obj->rstate.inner_struct.m_by_string && !obj->rstate.inner_struct.m_by_resources && !obj->rstate.inner_struct.m_is_serde && !obj->rstate.inner_struct.m_keep && !obj->rstate.inner_struct.m_assumenosideeffects && !obj->rstate.inner_struct.m_whyareyoukeeping && !obj->rstate.inner_struct.m_set_allowshrinking && !obj->rstate.inner_struct.m_unset_allowshrinking && !obj->rstate.inner_struct.m_set_allowobfuscation && !obj->rstate.inner_struct.m_unset_allowobfuscation; } }; } // namespace ir_meta_io
33.155556
77
0.683646
081840eed553026f49f10905aff8f36da44f7f01
4,161
c
C
floating-point/nan.c
xavim/Computadors
bdfda5a6aec43d360e2c6998dcc7d28700721cc8
[ "CC0-1.0" ]
null
null
null
floating-point/nan.c
xavim/Computadors
bdfda5a6aec43d360e2c6998dcc7d28700721cc8
[ "CC0-1.0" ]
null
null
null
floating-point/nan.c
xavim/Computadors
bdfda5a6aec43d360e2c6998dcc7d28700721cc8
[ "CC0-1.0" ]
null
null
null
#define _GNU_SOURCE #include <fenv.h> #include <math.h> #include <values.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <signal.h> #include <unistd.h> struct FLOAT { unsigned int mantissa:23; unsigned int exp:8; unsigned int sign:1; }; union FLT { struct FLOAT vals; float flt; }; void shownum(char * msg, union FLT val) { int res; unsigned int bit; printf ("%s: ", msg); printf ("%e %f\n", (float) val.flt, (float) val.flt); printf ("%s: ", msg); printf (" %u %u %u\n", val.vals.sign, val.vals.exp, val.vals.mantissa); printf ("%s: ", msg); printf (" %u ", val.vals.sign); for (bit=0x80; bit>0; bit >>= 1) printf ("%u", (val.vals.exp & bit)?1:0); printf (" "); for (bit=0x400000; bit>0; bit >>= 1) printf ("%u", (val.vals.mantissa & bit)?1:0); printf("\n"); } void check_exceptions(void) { int res; res = fetestexcept(FE_ALL_EXCEPT); if (res < 0) perror ("fetestexcept"); else printf ("Active exceptions : 0x%x %s %s %s %s %s %s\n", res, (res & FE_INVALID)? "INVALID" : "", (res & __FE_DENORM)? "DENORM" : "", (res & FE_DIVBYZERO)? "DIVBYZERO" : "", (res & FE_OVERFLOW)? "OVERFLOW" : "", (res & FE_UNDERFLOW)? "UNDERFLOW" : "", (res & FE_INEXACT)? "INEXACT" : "" ); res = feclearexcept(FE_ALL_EXCEPT); if (res < 0) perror ("feclearexcept"); } int main() { int res; check_exceptions(); union FLT val1, val2, val; // +infinite val1.vals.sign = 0; val1.vals.exp = 255; val1.vals.mantissa = 0; shownum("+inf", val1); check_exceptions(); printf ("press <enter>\n"); getchar(); // -infinite val2.vals.sign = 1; val2.vals.exp = 255; val2.vals.mantissa = 0; shownum("-inf", val2); check_exceptions(); printf ("press <enter>\n"); getchar(); // nan val.flt = val2.flt + val1.flt; shownum(" nan: ", val); check_exceptions(); printf ("press <enter>\n"); getchar(); // nan val.flt = val1.flt + val2.flt; shownum(" nan: ", val); check_exceptions(); printf ("press <enter>\n"); getchar(); // snan val1.vals.sign = 1; val1.vals.exp = 255; val1.vals.mantissa = 1; shownum("snan", val1); check_exceptions(); printf ("press <enter>\n"); getchar(); // maxfloat val1.flt = MAXFLOAT; shownum("maxfloat: ", val1); val2.flt = 1.11412044995943e31; shownum(" +1.1e31: ", val2); //val1.flt += 1.014120475e31; val1.flt += val2.flt; shownum(" = ", val1); check_exceptions(); printf ("press <enter>\n"); getchar(); val1.flt = 2.0f*atanf(1.0f); shownum("2*atanf(1)", val1); val2.flt = tanf(val1.flt); shownum("tanf(val1)", val2); check_exceptions(); printf ("press <enter>\n"); getchar(); val1.flt=0.5f*3.1415926535897932384626433832795028841971f; shownum("PI/2 ", val1); val2.flt = tanf(val1.flt); shownum("tanf(PI/2)", val2); check_exceptions(); printf ("press <enter>\n"); getchar(); // +infinite val1.vals.sign = 0; val1.vals.exp = 255; val1.vals.mantissa = 0; shownum(" +inf ", val1); val2.flt = atanf(val1.flt); shownum("atanf(+inf)", val2); check_exceptions(); printf ("press <enter>\n"); getchar(); // -infinite val1.vals.sign = 1; val1.vals.exp = 255; val1.vals.mantissa = 0; shownum(" -inf ", val1); val2.flt = atanf(val1.flt); shownum("atanf(-inf)", val2); check_exceptions(); printf ("press <enter>\n"); getchar(); // qnan val1.vals.sign = 1; val1.vals.exp = 255; val1.vals.mantissa = 1U<<22; shownum("qnan", val1); val2.vals.sign = 1; val2.vals.exp = 127; val2.vals.mantissa = 1U<<22; shownum("-1.5", val2); val2.flt -= val1.flt; //val2.vals.exp = 127; shownum(" = ", val2); check_exceptions(); printf ("press <enter>\n"); getchar(); // snan val1.vals.sign = 1; val1.vals.exp = 255; val1.vals.mantissa = 1U<<11; shownum("snan", val1); val2.vals.sign = 1; val2.vals.exp = 127; val2.vals.mantissa = 1U<<22; shownum("-1.5", val2); val2.flt -= val1.flt; //val2.vals.exp = 127; shownum(" = ", val2); check_exceptions(); return 0; }
20.701493
94
0.58111
081af9468b73ffd678709ba5e89bfb9d04ee5031
6,037
c
C
src/array.c
StrongerXi/ulcer
0922902541a7ec223e0bb45bfc1a1b7892a9e9e8
[ "Apache-2.0" ]
66
2016-01-26T02:45:36.000Z
2022-01-13T21:46:06.000Z
src/array.c
StrongerXi/ulcer
0922902541a7ec223e0bb45bfc1a1b7892a9e9e8
[ "Apache-2.0" ]
3
2016-01-26T02:49:56.000Z
2021-08-28T04:49:40.000Z
src/array.c
StrongerXi/ulcer
0922902541a7ec223e0bb45bfc1a1b7892a9e9e8
[ "Apache-2.0" ]
5
2017-02-12T13:43:29.000Z
2021-10-09T09:11:08.000Z
#include "array.h" #include "alloc.h" #include <string.h> static bool __array_resize__(array_t a, unsigned long n); array_t array_new(unsigned long size) { array_t a; a = (array_t) mem_alloc(sizeof(struct array_s)); if (!a) { return NULL; } a->elts = NULL; a->nelts = 0; a->nalloc = 0; a->size = size; return a; } array_t array_newlen(unsigned long size, unsigned long n) { array_t a; a = (array_t) mem_alloc(sizeof(struct array_s)); if (!a) { return NULL; } a->elts = (array_t) mem_alloc(size * n); if (!a->elts) { return NULL; } a->nelts = 0; a->nalloc = n; a->size = size; return a; } void array_free(array_t a) { if (a->elts) { mem_free(a->elts); } mem_free(a); } array_t array_dup(array_t a) { array_t dst = array_newlen(a->size, a->nelts); if (!dst) { return NULL; } memcpy(array_push_n(dst, a->nelts), a->elts, a->nelts * a->size); return dst; } void array_swap(array_t lhs, array_t rhs) { struct array_s tmp; tmp = *lhs; *lhs = *rhs; *rhs = tmp; } void array_shrink_to_fit(array_t a) { __array_resize__(a, a->nelts); } bool array_reserve(array_t a, unsigned long n) { unsigned long nfree = a->nalloc - a->nelts; if (nfree >= n) { return true; } if (!__array_resize__(a, a->nelts + (n - nfree))) { return false; } return true; } bool array_resize(array_t a, unsigned long n) { void *elt; unsigned long nalloc; if (a->nelts >= n) { a->nelts = n; return true; } nalloc = n - a->nelts; elt = array_push_n(a, nalloc); if (!elt) { return false; } memset(elt, 0, nalloc * a->size); return true; } void *array_index(array_t a, unsigned long index) { if (a->nelts <= index) { return NULL; } return (void*)((unsigned char *)a->elts + a->size * index); } void *array_push(array_t a) { void *elt; if (a->nelts == a->nalloc) { unsigned long n; if (a->nalloc == 0) { n = 2; } else { n = a->nalloc * 2; } if (!__array_resize__(a, n)) { return NULL; } } elt = (unsigned char *)a->elts + a->size * a->nelts; a->nelts++; return elt; } void *array_push_n(array_t a, unsigned long n) { void *elt; if (a->nelts + n > a->nalloc) { unsigned long nalloc = 2 * (n >= a->nalloc ? n : a->nalloc); if (!__array_resize__(a, nalloc)) { return NULL; } } elt = (unsigned char *)a->elts + a->size * a->nelts; a->nelts += n; return elt; } bool array_erase(array_t array, unsigned int index) { unsigned char *p; unsigned int move_size; if (index >= array->nelts) { return false; } p = (unsigned char *)array->elts; move_size = array->size * (array->nelts - (index + 1)); if (move_size) { memcpy(p + array->size * index, p + array->size * (index + 1), move_size); } array->nelts--; return true; } bool array_erase_n(array_t a, unsigned int index, unsigned long n) { unsigned char *p; unsigned int move_size; if ((index >= a->nelts) || (index + n > a->nelts)) { return false; } p = (unsigned char *)a->elts; move_size = a->size * (a->nelts - index - n); if (move_size && n) { memcpy(p + a->size * index, p + a->size * (index + n), move_size); } a->nelts -= n; return true; } void array_range(array_t a, unsigned long start, unsigned long end) { unsigned long newlen; if (a->nelts == 0) { return ; } newlen = (unsigned long)(start > end ? 0 : end - start + 1); newlen = a->nelts > newlen ? newlen : a->nelts; if (start && newlen) { memmove(a->elts, (unsigned char*)a->elts + start * a->size, newlen * a->size); } a->nelts = newlen; } void array_magic(array_t a, array_magic_pt magic) { unsigned char *base; int index; array_for_each(a, base, index) { if (!magic((void*)(base + (index * a->size)))) { return ; } } } bool array_insert(array_t a, unsigned int index, void *ptr) { unsigned char *p; unsigned int move_size; if (index > a->nelts) { return false; } else if (a->nalloc == a->nelts) { if (!array_push(a)) { return false; } } else { a->nelts++; } p = (unsigned char *)a->elts; move_size = a->size * (a->nelts - index); if (move_size) { memmove(p + a->size * (index + 1), p + a->size * index, move_size); } memcpy(p + a->size * index, ptr, a->size); return true; } bool array_insert_n(array_t a, unsigned int index, void *ptr, unsigned long n) { unsigned char *p; unsigned int move_size; if (index > a->nelts) { return false; } else if (a->nalloc + n > a->nelts) { if (!array_push_n(a, n)) { return false; } } else { a->nelts += n; } p = (unsigned char *)a->elts; move_size = a->size * (a->nelts - (index + n)); if (move_size) { memmove(p + a->size * (index + n), p + a->size * index, move_size); } memcpy(p + a->size * index, ptr, a->size * n); return true; } static bool __array_resize__(array_t a, unsigned long n) { unsigned long size = a->size * n; if (size) { a->elts = mem_realloc(a->elts, size); if (!a->elts) { return false; } } a->nalloc = n; return true; }
19.226115
79
0.494285
081b73f06ff7bed7c8086800d0429f77a19de39e
7,102
h
C
core/ISmmPluginExt.h
laper32/metamod-source
da1ee3b0ccb309301457fe83a1e69a4b54495bec
[ "Zlib" ]
null
null
null
core/ISmmPluginExt.h
laper32/metamod-source
da1ee3b0ccb309301457fe83a1e69a4b54495bec
[ "Zlib" ]
null
null
null
core/ISmmPluginExt.h
laper32/metamod-source
da1ee3b0ccb309301457fe83a1e69a4b54495bec
[ "Zlib" ]
null
null
null
/* * vim: set ts=4 sw=4 tw=99 noet : * ====================================================== * Metamod:Source * Copyright (C) 2004-2009 AlliedModders LLC and authors. * All rights reserved. * ====================================================== * * This software is provided 'as-is', without any express or implied warranty. * In no event will the authors be held liable for any damages arising from * the use of this software. * * Permission is granted to anyone to use this software for any purpose, * including commercial applications, and to alter it and redistribute it * freely, subject to the following restrictions: * * 1. The origin of this software must not be misrepresented; you must not * claim that you wrote the original software. If you use this software in a * product, an acknowledgment in the product documentation would be * appreciated but is not required. * 2. Altered source versions must be plainly marked as such, and must not be * misrepresented as being the original software. * 3. This notice may not be removed or altered from any source distribution. */ #ifndef _INCLUDE_METAMOD_SOURCE_PLUGIN_EXT_H_ #define _INCLUDE_METAMOD_SOURCE_PLUGIN_EXT_H_ #include <stddef.h> /** * @file ISmmPluginExt.h Provides an alternate method for loading plugins, * without needing to include the default headers and all their Half-Life baggage. * * @brief Definitions for extended plugin loading. */ #define SOURCE_ENGINE_UNKNOWN 0 /**< Could not determine the engine version */ #define SOURCE_ENGINE_ORIGINAL 1 /**< Original Source Engine (used by The Ship) */ #define SOURCE_ENGINE_EPISODEONE 2 /**< Episode 1 Source Engine (second major SDK) */ #define SOURCE_ENGINE_ORANGEBOX 3 /**< Orange Box Source Engine (third major SDK) */ #define SOURCE_ENGINE_LEFT4DEAD 4 /**< Left 4 Dead */ #define SOURCE_ENGINE_DARKMESSIAH 5 /**< Dark Messiah Multiplayer (based on original engine) */ #define SOURCE_ENGINE_ORANGEBOXVALVE_DEPRECATED 6 /**< Orange Box Source Engine for Valve games (TF2/DOD:S/HL2DM) */ #define SOURCE_ENGINE_LEFT4DEAD2 7 /**< Left 4 Dead 2 */ #define SOURCE_ENGINE_ALIENSWARM 8 /**< Alien Swarm */ #define SOURCE_ENGINE_BLOODYGOODTIME 9 /**< Bloody Good Time */ #define SOURCE_ENGINE_EYE 10 /**< E.Y.E Divine Cybermancy */ #define SOURCE_ENGINE_PORTAL2 11 /**< Portal 2 */ #define SOURCE_ENGINE_CSGO 12 /**< Counter-Strike: Global Offensive */ #define SOURCE_ENGINE_CSS 13 /**< Counter-Strike: Source (sometimes older version of Orange Box Valve) */ #define SOURCE_ENGINE_DOTA 14 /**< Dota 2 */ #define SOURCE_ENGINE_HL2DM 15 /**< Half-Life 2 Deathmatch */ #define SOURCE_ENGINE_DODS 16 /**< Day of Defeat: Source */ #define SOURCE_ENGINE_TF2 17 /**< Team Fortress 2 */ #define SOURCE_ENGINE_NUCLEARDAWN 18 /**< Nuclear Dawn */ #define SOURCE_ENGINE_SDK2013 19 /**< Source SDK 2013 */ #define SOURCE_ENGINE_BLADE 20 /**< Blade Symphony */ #define SOURCE_ENGINE_INSURGENCY 21 /**< Insurgency */ #define SOURCE_ENGINE_CONTAGION 22 /**< Contagion */ #define SOURCE_ENGINE_BMS 23 /**< Black Mesa Multiplayer */ #define SOURCE_ENGINE_DOI 24 /**< Day of Infamy */ #define SOURCE_ENGINE_MOCK 25 /**< Mock source engine */ #define METAMOD_PLAPI_VERSION 16 /**< Version of this header file */ #define METAMOD_PLAPI_NAME "ISmmPlugin" /**< Name of the plugin interface */ namespace SourceMM { class ISmmPlugin; class ISmmAPI; /** * @brief Used to uniquely identify plugins. */ typedef int PluginId; #define METAMOD_FAIL_API_V1 7 /**< Minimum API version to detect for V1 */ #define METAMOD_FAIL_API_V2 14 /**< Minimum API version to detect for V2 */ /** * Use this to instantiate a plugin that will always fail. * This class definition works against major API versions 1 and 2. */ class ISmmFailPlugin { public: /** * @brief You must return METAMOD_FAIL_API_V1 or METAMOD_FAIL_API_V2 here, * depending on which Metamod:Source version you detected. */ virtual int GetApiVersion() = 0; /** * @brief Do not change. */ virtual ~ISmmFailPlugin() { } /** * @brief Return false here -- fill in the error buffer appropriately. * * Do not ever return true. If you do, MM:S will crash because the class layout is * incomplete against ISmmPlugin. * * @param id Ignore. * @param ismm Ignore. * @param error Error buffer (must be filled). * @param maxlength Maximum size of error buffer. * @param late Ignore. * @return Must return false. */ virtual bool Load(PluginId id, ISmmAPI *ismm, char *error, size_t maxlength, bool late) =0; }; } typedef SourceMM::ISmmPlugin METAMOD_PLUGIN; /** * @brief Contains version information. */ struct MetamodVersionInfo { int api_major; /**< ISmmAPI major version */ int api_minor; /**< ISmmAPI minor version */ int sh_iface; /**< SourceHook interface version */ int sh_impl; /**< SourceHook implementation version */ int pl_min; /**< Plugin API minimum version */ int pl_max; /**< Plugin API maximum version */ int source_engine; /**< Source Engine version (SOURCE_* constants) */ const char *game_dir; /**< Game directory name */ /** * @brief Returns the game folder. * * @return Game folder, or NULL if not available on this version * of Metamod:Source. */ inline const char *GetGameDir() const { if (pl_max < 15) return NULL; return game_dir; } }; /** * @brief Contains information about loading a plugin. */ struct MetamodLoaderInfo { const char *pl_file; /**< File path to the plugin being loaded. */ const char *pl_path; /**< Folder path containing the plugin. */ }; /** * @brief If a function of this type is exposed as "CreateInterface_MMS", then * Metamod:Source will attempt to call this function before calling * CreateInterface. If this function returns a valid ISmmPlugin pointer, then * CreateInterface will not be called. * * This is useful for implementing a mini-loader plugin for multiple versions. * * @param mvi MetamodVersionInfo structure. * @param mli MetamodLoaderInfo structure. * @return ISmmAPI pointer, or NULL if none. */ typedef METAMOD_PLUGIN *(*METAMOD_FN_LOAD)(const MetamodVersionInfo *mvi, const MetamodLoaderInfo *mli); /** * @brief If a function of this type is exposed as "UnloadInterface_MMS", then * Metamod:Source will attempt to call this function after calling * ISmmAPI::Unload(), and before closing the library. This lets loader plugins * clean up before exiting. * * Note: This function will be ignored unless CreateInterfce_MMS was exposed. * It may be called even if ISmmAPI::Unload() could not be called. */ typedef void (*METAMOD_FN_UNLOAD)(); /** * @brief Original type of load function. CreateInterfaceFn from Valve. * * Plugins will expose this as "CreateInterface". */ typedef void *(*METAMOD_FN_ORIG_LOAD)(const char *, int *); #endif //INCLUDE_METAMOD_SOURCE_PLUGIN_EXT_H_
36.989583
119
0.693467
081ba32443aa19654863e2943191f3d26d58f26a
446
h
C
MDraw/MDrawMeasurementInfo.h
xiusl/MDraw
2e54d94aa3adffcacd36353b58a0db7597323191
[ "MIT" ]
13
2016-04-12T15:20:03.000Z
2021-01-06T16:02:27.000Z
MDraw/MDrawMeasurementInfo.h
xiusl/MDraw
2e54d94aa3adffcacd36353b58a0db7597323191
[ "MIT" ]
1
2017-06-07T08:59:49.000Z
2017-06-07T08:59:49.000Z
MDraw/MDrawMeasurementInfo.h
xiusl/MDraw
2e54d94aa3adffcacd36353b58a0db7597323191
[ "MIT" ]
7
2015-09-16T22:05:12.000Z
2020-03-24T14:41:30.000Z
// // MDrawMeasurementInfo.h // MDraw // // Created by Gao Yongqing on 9/5/14. // Copyright (c) 2014 Motic China Group Co., Ltd. All rights reserved. // #import <Foundation/Foundation.h> #import "MDrawTool.h" /** * Show measurement info for tools. */ @interface MDrawMeasurementInfo : NSObject @property (nonatomic,weak,readonly) MDrawTool *tool; - (instancetype)initWithTool:(MDrawTool *)aTool; - (void)draw:(CGContextRef)ctx; @end
18.583333
71
0.70852
081bda891d044041f6814964e7076e28e812039c
2,163
h
C
paddle/fluid/operators/math/depthwise_conv.h
ghevinn/Paddle
544159c3de2f74a38a5795c635a2f1bda170379f
[ "ECL-2.0", "Apache-2.0" ]
4
2019-04-28T13:29:41.000Z
2022-01-09T16:54:20.000Z
paddle/fluid/operators/math/depthwise_conv.h
ghevinn/Paddle
544159c3de2f74a38a5795c635a2f1bda170379f
[ "ECL-2.0", "Apache-2.0" ]
3
2018-04-11T10:25:51.000Z
2018-04-12T01:17:22.000Z
paddle/fluid/operators/math/depthwise_conv.h
ghevinn/Paddle
544159c3de2f74a38a5795c635a2f1bda170379f
[ "ECL-2.0", "Apache-2.0" ]
1
2018-04-25T03:44:51.000Z
2018-04-25T03:44:51.000Z
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #pragma once #include "paddle/fluid/framework/tensor.h" #include "paddle/fluid/platform/device_context.h" #include "paddle/fluid/platform/hostdevice.h" namespace paddle { namespace operators { namespace math { /* * \brief Compute the depthwise convolution which include * forward process and backpropagation process */ template <typename DeviceContext, typename T> class DepthwiseConvFunctor { public: void operator()(const DeviceContext& context, const framework::Tensor& input, const framework::Tensor& filter, const std::vector<int>& strides, const std::vector<int>& paddings, framework::Tensor* output); }; template <typename DeviceContext, typename T> class DepthwiseConvInputGradFunctor { public: void operator()(const DeviceContext& context, const framework::Tensor& input, const framework::Tensor& filter, const framework::Tensor& output_grad, const std::vector<int>& strides, const std::vector<int>& paddings, framework::Tensor* input_grad); }; template <typename DeviceContext, typename T> class DepthwiseConvFilterGradFunctor { public: void operator()(const DeviceContext& context, const framework::Tensor& input, const framework::Tensor& output_grad, const std::vector<int>& strides, const std::vector<int>& paddings, framework::Tensor* filter_grad); }; } // namespace math } // namespace operators } // namespace paddle
35.459016
79
0.698567
081cd736f718328006e3a84bfc4c02db6606611e
3,355
h
C
System/Library/PrivateFrameworks/UIKitCore.framework/_UICopyConfiguration.h
zhangkn/iOS14Header
4323e9459ed6f6f5504ecbea2710bfd6c3d7c946
[ "MIT" ]
1
2020-11-04T15:43:01.000Z
2020-11-04T15:43:01.000Z
System/Library/PrivateFrameworks/UIKitCore.framework/_UICopyConfiguration.h
zhangkn/iOS14Header
4323e9459ed6f6f5504ecbea2710bfd6c3d7c946
[ "MIT" ]
null
null
null
System/Library/PrivateFrameworks/UIKitCore.framework/_UICopyConfiguration.h
zhangkn/iOS14Header
4323e9459ed6f6f5504ecbea2710bfd6c3d7c946
[ "MIT" ]
null
null
null
/* * This header is generated by classdump-dyld 1.0 * on Sunday, September 27, 2020 at 11:38:58 AM Mountain Standard Time * Operating System: Version 14.0 (Build 18A373) * Image Source: /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos. */ #import <UIKitCore/_UICopyConfigurationReading.h> @class NSArray, NSString; @interface _UICopyConfiguration : NSObject <_UICopyConfigurationReading> { NSArray* _itemProviders; BOOL _allowsSharing; id _localObject; /*^block*/id _metadataProvider; /*^block*/id _previewProvider; /*^block*/id _activityItemsProvider; /*^block*/id _applicationActivitiesProvider; } @property (nonatomic,retain) id localObject; //@synthesize localObject=_localObject - In the implementation block @property (assign,nonatomic) BOOL allowsSharing; //@synthesize allowsSharing=_allowsSharing - In the implementation block @property (nonatomic,copy) id metadataProvider; //@synthesize metadataProvider=_metadataProvider - In the implementation block @property (nonatomic,copy) id previewProvider; //@synthesize previewProvider=_previewProvider - In the implementation block @property (nonatomic,copy) id activityItemsProvider; //@synthesize activityItemsProvider=_activityItemsProvider - In the implementation block @property (nonatomic,copy) id applicationActivitiesProvider; //@synthesize applicationActivitiesProvider=_applicationActivitiesProvider - In the implementation block @property (nonatomic,copy,readonly) NSArray * itemProvidersForSharing; @property (nonatomic,copy,readonly) NSArray * activityItemsForSharing; @property (nonatomic,copy,readonly) NSArray * applicationActivitiesForSharing; @property (nonatomic,copy,readonly) NSArray * itemProvidersForActivityItemsConfiguration; @property (nonatomic,copy,readonly) NSArray * applicationActivitiesForActivityItemsConfiguration; @property (readonly) unsigned long long hash; @property (readonly) Class superclass; @property (copy,readonly) NSString * description; @property (copy,readonly) NSString * debugDescription; +(id)copyConfigurationWithSharedObjects:(id)arg1 ; +(id)copyConfigurationWithItemProviders:(id)arg1 ; -(NSArray *)itemProvidersForActivityItemsConfiguration; -(id)itemProviders; -(void)setApplicationActivitiesProvider:(id)arg1 ; -(void)setLocalObject:(id)arg1 ; -(id)applicationActivitiesProvider; -(id)previewProvider; -(id)initWithSharedObjects:(id)arg1 ; -(id)activityItemsProvider; -(NSArray *)itemProvidersForSharing; -(id)sharingMetadataForKey:(id)arg1 ; -(id)previewForSharedItemProviderAtIndex:(long long)arg1 intent:(id)arg2 ; -(BOOL)allowsSharing; -(NSArray *)applicationActivitiesForSharing; -(void)setAllowsSharing:(BOOL)arg1 ; -(void)setActivityItemsProvider:(id)arg1 ; -(id)metadataProvider; -(NSArray *)activityItemsForSharing; -(void)setMetadataProvider:(id)arg1 ; -(void)setPreviewProvider:(id)arg1 ; -(id)localObject; -(id)initWithItemProviders:(id)arg1 ; @end
51.615385
215
0.72161
081d3bd3748d35e0b6e09c01b90878e341de025f
19,396
h
C
third_party_toolchains/gcc_arm_none_eabi/arm-none-eabi/include/c++/4.9.3/bits/shared_ptr.h
leozz37/makani
c94d5c2b600b98002f932e80a313a06b9285cc1b
[ "Apache-2.0" ]
2,151
2020-04-18T07:31:17.000Z
2022-03-31T08:39:18.000Z
third_party_toolchains/gcc_arm_none_eabi/arm-none-eabi/include/c++/4.9.3/bits/shared_ptr.h
leozz37/makani
c94d5c2b600b98002f932e80a313a06b9285cc1b
[ "Apache-2.0" ]
395
2020-04-18T08:22:18.000Z
2021-12-08T13:04:49.000Z
third_party_toolchains/gcc_arm_none_eabi/arm-none-eabi/include/c++/4.9.3/bits/shared_ptr.h
leozz37/makani
c94d5c2b600b98002f932e80a313a06b9285cc1b
[ "Apache-2.0" ]
338
2020-04-18T08:03:10.000Z
2022-03-29T12:33:22.000Z
// shared_ptr and weak_ptr implementation -*- C++ -*- // Copyright (C) 2007-2014 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the // terms of the GNU General Public License as published by the // Free Software Foundation; either version 3, or (at your option) // any later version. // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // Under Section 7 of GPL version 3, you are granted additional // permissions described in the GCC Runtime Library Exception, version // 3.1, as published by the Free Software Foundation. // You should have received a copy of the GNU General Public License and // a copy of the GCC Runtime Library Exception along with this program; // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see // <http://www.gnu.org/licenses/>. // GCC Note: Based on files from version 1.32.0 of the Boost library. // shared_count.hpp // Copyright (c) 2001, 2002, 2003 Peter Dimov and Multi Media Ltd. // shared_ptr.hpp // Copyright (C) 1998, 1999 Greg Colvin and Beman Dawes. // Copyright (C) 2001, 2002, 2003 Peter Dimov // weak_ptr.hpp // Copyright (C) 2001, 2002, 2003 Peter Dimov // enable_shared_from_this.hpp // Copyright (C) 2002 Peter Dimov // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) /** @file bits/shared_ptr.h * This is an internal header file, included by other library headers. * Do not attempt to use it directly. @headername{memory} */ #ifndef _SHARED_PTR_H #define _SHARED_PTR_H 1 #include <bits/shared_ptr_base.h> namespace std _GLIBCXX_VISIBILITY(default) { _GLIBCXX_BEGIN_NAMESPACE_VERSION /** * @addtogroup pointer_abstractions * @{ */ /// 20.7.2.2.11 shared_ptr I/O template<typename _Ch, typename _Tr, typename _Tp, _Lock_policy _Lp> inline std::basic_ostream<_Ch, _Tr>& operator<<(std::basic_ostream<_Ch, _Tr>& __os, const __shared_ptr<_Tp, _Lp>& __p) { __os << __p.get(); return __os; } /// 20.7.2.2.10 shared_ptr get_deleter template<typename _Del, typename _Tp, _Lock_policy _Lp> inline _Del* get_deleter(const __shared_ptr<_Tp, _Lp>& __p) noexcept { #ifdef __GXX_RTTI return static_cast<_Del*>(__p._M_get_deleter(typeid(_Del))); #else return 0; #endif } /** * @brief A smart pointer with reference-counted copy semantics. * * The object pointed to is deleted when the last shared_ptr pointing to * it is destroyed or reset. */ template<typename _Tp> class shared_ptr : public __shared_ptr<_Tp> { public: /** * @brief Construct an empty %shared_ptr. * @post use_count()==0 && get()==0 */ constexpr shared_ptr() noexcept : __shared_ptr<_Tp>() { } shared_ptr(const shared_ptr&) noexcept = default; /** * @brief Construct a %shared_ptr that owns the pointer @a __p. * @param __p A pointer that is convertible to element_type*. * @post use_count() == 1 && get() == __p * @throw std::bad_alloc, in which case @c delete @a __p is called. */ template<typename _Tp1> explicit shared_ptr(_Tp1* __p) : __shared_ptr<_Tp>(__p) { } /** * @brief Construct a %shared_ptr that owns the pointer @a __p * and the deleter @a __d. * @param __p A pointer. * @param __d A deleter. * @post use_count() == 1 && get() == __p * @throw std::bad_alloc, in which case @a __d(__p) is called. * * Requirements: _Deleter's copy constructor and destructor must * not throw * * __shared_ptr will release __p by calling __d(__p) */ template<typename _Tp1, typename _Deleter> shared_ptr(_Tp1* __p, _Deleter __d) : __shared_ptr<_Tp>(__p, __d) { } /** * @brief Construct a %shared_ptr that owns a null pointer * and the deleter @a __d. * @param __p A null pointer constant. * @param __d A deleter. * @post use_count() == 1 && get() == __p * @throw std::bad_alloc, in which case @a __d(__p) is called. * * Requirements: _Deleter's copy constructor and destructor must * not throw * * The last owner will call __d(__p) */ template<typename _Deleter> shared_ptr(nullptr_t __p, _Deleter __d) : __shared_ptr<_Tp>(__p, __d) { } /** * @brief Construct a %shared_ptr that owns the pointer @a __p * and the deleter @a __d. * @param __p A pointer. * @param __d A deleter. * @param __a An allocator. * @post use_count() == 1 && get() == __p * @throw std::bad_alloc, in which case @a __d(__p) is called. * * Requirements: _Deleter's copy constructor and destructor must * not throw _Alloc's copy constructor and destructor must not * throw. * * __shared_ptr will release __p by calling __d(__p) */ template<typename _Tp1, typename _Deleter, typename _Alloc> shared_ptr(_Tp1* __p, _Deleter __d, _Alloc __a) : __shared_ptr<_Tp>(__p, __d, std::move(__a)) { } /** * @brief Construct a %shared_ptr that owns a null pointer * and the deleter @a __d. * @param __p A null pointer constant. * @param __d A deleter. * @param __a An allocator. * @post use_count() == 1 && get() == __p * @throw std::bad_alloc, in which case @a __d(__p) is called. * * Requirements: _Deleter's copy constructor and destructor must * not throw _Alloc's copy constructor and destructor must not * throw. * * The last owner will call __d(__p) */ template<typename _Deleter, typename _Alloc> shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a) : __shared_ptr<_Tp>(__p, __d, std::move(__a)) { } // Aliasing constructor /** * @brief Constructs a %shared_ptr instance that stores @a __p * and shares ownership with @a __r. * @param __r A %shared_ptr. * @param __p A pointer that will remain valid while @a *__r is valid. * @post get() == __p && use_count() == __r.use_count() * * This can be used to construct a @c shared_ptr to a sub-object * of an object managed by an existing @c shared_ptr. * * @code * shared_ptr< pair<int,int> > pii(new pair<int,int>()); * shared_ptr<int> pi(pii, &pii->first); * assert(pii.use_count() == 2); * @endcode */ template<typename _Tp1> shared_ptr(const shared_ptr<_Tp1>& __r, _Tp* __p) noexcept : __shared_ptr<_Tp>(__r, __p) { } /** * @brief If @a __r is empty, constructs an empty %shared_ptr; * otherwise construct a %shared_ptr that shares ownership * with @a __r. * @param __r A %shared_ptr. * @post get() == __r.get() && use_count() == __r.use_count() */ template<typename _Tp1, typename = typename std::enable_if<std::is_convertible<_Tp1*, _Tp*>::value>::type> shared_ptr(const shared_ptr<_Tp1>& __r) noexcept : __shared_ptr<_Tp>(__r) { } /** * @brief Move-constructs a %shared_ptr instance from @a __r. * @param __r A %shared_ptr rvalue. * @post *this contains the old value of @a __r, @a __r is empty. */ shared_ptr(shared_ptr&& __r) noexcept : __shared_ptr<_Tp>(std::move(__r)) { } /** * @brief Move-constructs a %shared_ptr instance from @a __r. * @param __r A %shared_ptr rvalue. * @post *this contains the old value of @a __r, @a __r is empty. */ template<typename _Tp1, typename = typename std::enable_if<std::is_convertible<_Tp1*, _Tp*>::value>::type> shared_ptr(shared_ptr<_Tp1>&& __r) noexcept : __shared_ptr<_Tp>(std::move(__r)) { } /** * @brief Constructs a %shared_ptr that shares ownership with @a __r * and stores a copy of the pointer stored in @a __r. * @param __r A weak_ptr. * @post use_count() == __r.use_count() * @throw bad_weak_ptr when __r.expired(), * in which case the constructor has no effect. */ template<typename _Tp1> explicit shared_ptr(const weak_ptr<_Tp1>& __r) : __shared_ptr<_Tp>(__r) { } #if _GLIBCXX_USE_DEPRECATED template<typename _Tp1> shared_ptr(std::auto_ptr<_Tp1>&& __r); #endif template<typename _Tp1, typename _Del> shared_ptr(std::unique_ptr<_Tp1, _Del>&& __r) : __shared_ptr<_Tp>(std::move(__r)) { } /** * @brief Construct an empty %shared_ptr. * @param __p A null pointer constant. * @post use_count() == 0 && get() == nullptr */ constexpr shared_ptr(nullptr_t __p) noexcept : __shared_ptr<_Tp>(__p) { } shared_ptr& operator=(const shared_ptr&) noexcept = default; template<typename _Tp1> shared_ptr& operator=(const shared_ptr<_Tp1>& __r) noexcept { this->__shared_ptr<_Tp>::operator=(__r); return *this; } #if _GLIBCXX_USE_DEPRECATED template<typename _Tp1> shared_ptr& operator=(std::auto_ptr<_Tp1>&& __r) { this->__shared_ptr<_Tp>::operator=(std::move(__r)); return *this; } #endif shared_ptr& operator=(shared_ptr&& __r) noexcept { this->__shared_ptr<_Tp>::operator=(std::move(__r)); return *this; } template<class _Tp1> shared_ptr& operator=(shared_ptr<_Tp1>&& __r) noexcept { this->__shared_ptr<_Tp>::operator=(std::move(__r)); return *this; } template<typename _Tp1, typename _Del> shared_ptr& operator=(std::unique_ptr<_Tp1, _Del>&& __r) { this->__shared_ptr<_Tp>::operator=(std::move(__r)); return *this; } private: // This constructor is non-standard, it is used by allocate_shared. template<typename _Alloc, typename... _Args> shared_ptr(_Sp_make_shared_tag __tag, const _Alloc& __a, _Args&&... __args) : __shared_ptr<_Tp>(__tag, __a, std::forward<_Args>(__args)...) { } template<typename _Tp1, typename _Alloc, typename... _Args> friend shared_ptr<_Tp1> allocate_shared(const _Alloc& __a, _Args&&... __args); // This constructor is non-standard, it is used by weak_ptr::lock(). shared_ptr(const weak_ptr<_Tp>& __r, std::nothrow_t) : __shared_ptr<_Tp>(__r, std::nothrow) { } friend class weak_ptr<_Tp>; }; // 20.7.2.2.7 shared_ptr comparisons template<typename _Tp1, typename _Tp2> inline bool operator==(const shared_ptr<_Tp1>& __a, const shared_ptr<_Tp2>& __b) noexcept { return __a.get() == __b.get(); } template<typename _Tp> inline bool operator==(const shared_ptr<_Tp>& __a, nullptr_t) noexcept { return !__a; } template<typename _Tp> inline bool operator==(nullptr_t, const shared_ptr<_Tp>& __a) noexcept { return !__a; } template<typename _Tp1, typename _Tp2> inline bool operator!=(const shared_ptr<_Tp1>& __a, const shared_ptr<_Tp2>& __b) noexcept { return __a.get() != __b.get(); } template<typename _Tp> inline bool operator!=(const shared_ptr<_Tp>& __a, nullptr_t) noexcept { return (bool)__a; } template<typename _Tp> inline bool operator!=(nullptr_t, const shared_ptr<_Tp>& __a) noexcept { return (bool)__a; } template<typename _Tp1, typename _Tp2> inline bool operator<(const shared_ptr<_Tp1>& __a, const shared_ptr<_Tp2>& __b) noexcept { typedef typename std::common_type<_Tp1*, _Tp2*>::type _CT; return std::less<_CT>()(__a.get(), __b.get()); } template<typename _Tp> inline bool operator<(const shared_ptr<_Tp>& __a, nullptr_t) noexcept { return std::less<_Tp*>()(__a.get(), nullptr); } template<typename _Tp> inline bool operator<(nullptr_t, const shared_ptr<_Tp>& __a) noexcept { return std::less<_Tp*>()(nullptr, __a.get()); } template<typename _Tp1, typename _Tp2> inline bool operator<=(const shared_ptr<_Tp1>& __a, const shared_ptr<_Tp2>& __b) noexcept { return !(__b < __a); } template<typename _Tp> inline bool operator<=(const shared_ptr<_Tp>& __a, nullptr_t) noexcept { return !(nullptr < __a); } template<typename _Tp> inline bool operator<=(nullptr_t, const shared_ptr<_Tp>& __a) noexcept { return !(__a < nullptr); } template<typename _Tp1, typename _Tp2> inline bool operator>(const shared_ptr<_Tp1>& __a, const shared_ptr<_Tp2>& __b) noexcept { return (__b < __a); } template<typename _Tp> inline bool operator>(const shared_ptr<_Tp>& __a, nullptr_t) noexcept { return std::less<_Tp*>()(nullptr, __a.get()); } template<typename _Tp> inline bool operator>(nullptr_t, const shared_ptr<_Tp>& __a) noexcept { return std::less<_Tp*>()(__a.get(), nullptr); } template<typename _Tp1, typename _Tp2> inline bool operator>=(const shared_ptr<_Tp1>& __a, const shared_ptr<_Tp2>& __b) noexcept { return !(__a < __b); } template<typename _Tp> inline bool operator>=(const shared_ptr<_Tp>& __a, nullptr_t) noexcept { return !(__a < nullptr); } template<typename _Tp> inline bool operator>=(nullptr_t, const shared_ptr<_Tp>& __a) noexcept { return !(nullptr < __a); } template<typename _Tp> struct less<shared_ptr<_Tp>> : public _Sp_less<shared_ptr<_Tp>> { }; // 20.7.2.2.8 shared_ptr specialized algorithms. template<typename _Tp> inline void swap(shared_ptr<_Tp>& __a, shared_ptr<_Tp>& __b) noexcept { __a.swap(__b); } // 20.7.2.2.9 shared_ptr casts. template<typename _Tp, typename _Tp1> inline shared_ptr<_Tp> static_pointer_cast(const shared_ptr<_Tp1>& __r) noexcept { return shared_ptr<_Tp>(__r, static_cast<_Tp*>(__r.get())); } template<typename _Tp, typename _Tp1> inline shared_ptr<_Tp> const_pointer_cast(const shared_ptr<_Tp1>& __r) noexcept { return shared_ptr<_Tp>(__r, const_cast<_Tp*>(__r.get())); } template<typename _Tp, typename _Tp1> inline shared_ptr<_Tp> dynamic_pointer_cast(const shared_ptr<_Tp1>& __r) noexcept { if (_Tp* __p = dynamic_cast<_Tp*>(__r.get())) return shared_ptr<_Tp>(__r, __p); return shared_ptr<_Tp>(); } /** * @brief A smart pointer with weak semantics. * * With forwarding constructors and assignment operators. */ template<typename _Tp> class weak_ptr : public __weak_ptr<_Tp> { public: constexpr weak_ptr() noexcept : __weak_ptr<_Tp>() { } template<typename _Tp1, typename = typename std::enable_if<std::is_convertible<_Tp1*, _Tp*>::value>::type> weak_ptr(const weak_ptr<_Tp1>& __r) noexcept : __weak_ptr<_Tp>(__r) { } template<typename _Tp1, typename = typename std::enable_if<std::is_convertible<_Tp1*, _Tp*>::value>::type> weak_ptr(const shared_ptr<_Tp1>& __r) noexcept : __weak_ptr<_Tp>(__r) { } template<typename _Tp1> weak_ptr& operator=(const weak_ptr<_Tp1>& __r) noexcept { this->__weak_ptr<_Tp>::operator=(__r); return *this; } template<typename _Tp1> weak_ptr& operator=(const shared_ptr<_Tp1>& __r) noexcept { this->__weak_ptr<_Tp>::operator=(__r); return *this; } shared_ptr<_Tp> lock() const noexcept { return shared_ptr<_Tp>(*this, std::nothrow); } }; // 20.7.2.3.6 weak_ptr specialized algorithms. template<typename _Tp> inline void swap(weak_ptr<_Tp>& __a, weak_ptr<_Tp>& __b) noexcept { __a.swap(__b); } /// Primary template owner_less template<typename _Tp> struct owner_less; /// Partial specialization of owner_less for shared_ptr. template<typename _Tp> struct owner_less<shared_ptr<_Tp>> : public _Sp_owner_less<shared_ptr<_Tp>, weak_ptr<_Tp>> { }; /// Partial specialization of owner_less for weak_ptr. template<typename _Tp> struct owner_less<weak_ptr<_Tp>> : public _Sp_owner_less<weak_ptr<_Tp>, shared_ptr<_Tp>> { }; /** * @brief Base class allowing use of member function shared_from_this. */ template<typename _Tp> class enable_shared_from_this { protected: constexpr enable_shared_from_this() noexcept { } enable_shared_from_this(const enable_shared_from_this&) noexcept { } enable_shared_from_this& operator=(const enable_shared_from_this&) noexcept { return *this; } ~enable_shared_from_this() { } public: shared_ptr<_Tp> shared_from_this() { return shared_ptr<_Tp>(this->_M_weak_this); } shared_ptr<const _Tp> shared_from_this() const { return shared_ptr<const _Tp>(this->_M_weak_this); } private: template<typename _Tp1> void _M_weak_assign(_Tp1* __p, const __shared_count<>& __n) const noexcept { _M_weak_this._M_assign(__p, __n); } template<typename _Tp1> friend void __enable_shared_from_this_helper(const __shared_count<>& __pn, const enable_shared_from_this* __pe, const _Tp1* __px) noexcept { if (__pe != 0) __pe->_M_weak_assign(const_cast<_Tp1*>(__px), __pn); } mutable weak_ptr<_Tp> _M_weak_this; }; /** * @brief Create an object that is owned by a shared_ptr. * @param __a An allocator. * @param __args Arguments for the @a _Tp object's constructor. * @return A shared_ptr that owns the newly created object. * @throw An exception thrown from @a _Alloc::allocate or from the * constructor of @a _Tp. * * A copy of @a __a will be used to allocate memory for the shared_ptr * and the new object. */ template<typename _Tp, typename _Alloc, typename... _Args> inline shared_ptr<_Tp> allocate_shared(const _Alloc& __a, _Args&&... __args) { return shared_ptr<_Tp>(_Sp_make_shared_tag(), __a, std::forward<_Args>(__args)...); } /** * @brief Create an object that is owned by a shared_ptr. * @param __args Arguments for the @a _Tp object's constructor. * @return A shared_ptr that owns the newly created object. * @throw std::bad_alloc, or an exception thrown from the * constructor of @a _Tp. */ template<typename _Tp, typename... _Args> inline shared_ptr<_Tp> make_shared(_Args&&... __args) { typedef typename std::remove_const<_Tp>::type _Tp_nc; return std::allocate_shared<_Tp>(std::allocator<_Tp_nc>(), std::forward<_Args>(__args)...); } /// std::hash specialization for shared_ptr. template<typename _Tp> struct hash<shared_ptr<_Tp>> : public __hash_base<size_t, shared_ptr<_Tp>> { size_t operator()(const shared_ptr<_Tp>& __s) const noexcept { return std::hash<_Tp*>()(__s.get()); } }; // @} group pointer_abstractions _GLIBCXX_END_NAMESPACE_VERSION } // namespace #endif // _SHARED_PTR_H
31.133226
79
0.641627
081ecbd55cb64f7c4a11c5bced07eff7d0c471dc
960
h
C
Cortex/MedableCortex.framework/Headers/MDPropertyInstance.h
Medable/iOS-SDK
af1839129bcaa470ef4f247de325c64de52eac2e
[ "0BSD" ]
7
2015-04-23T02:38:52.000Z
2021-05-05T03:29:27.000Z
Cortex/MedableCortex.framework/Headers/MDPropertyInstance.h
Medable/iOS-SDK
af1839129bcaa470ef4f247de325c64de52eac2e
[ "0BSD" ]
6
2015-04-24T20:21:51.000Z
2018-10-07T20:54:39.000Z
Cortex/MedableCortex.framework/Headers/MDPropertyInstance.h
Medable/iOS-SDK
af1839129bcaa470ef4f247de325c64de52eac2e
[ "0BSD" ]
4
2015-07-07T06:17:40.000Z
2018-05-28T14:12:43.000Z
// // MDPropertyInstance.h // Medable // // Copyright (c) 2015 Medable. All rights reserved. // #import <Foundation/Foundation.h> @class MDFilePropertyValue; /** * A basic property value, it stores the value itself and a reference to the definition. */ @interface MDPropertyInstance : NSObject /// The definition of this property instance. @property (nonatomic, readonly) MDPropertyDefinition *definition; /// The value of the property instance. @property (nonatomic, readonly) id value; /** * Create a property instance with it's definition and value. * * @param value Value. * @param propertyDefinition The definition of this property. * * @warning It's not encouraged for SDK users to use this method directly. */ + (instancetype)propertyInstanceWithDefinition:(MDPropertyDefinition *)propertyDefinition value:(id)value; // unavailable + (instancetype)new NS_UNAVAILABLE; // unavailable init - (instancetype)init NS_UNAVAILABLE; @end
22.857143
106
0.75
081f10c39f6073f4fceec3175f2f5199a6163ed1
15,491
c
C
stage0/stdlib/Lean/AuxRecursor.c
tballmsft/lean4
fb57b73e1f07828fa9aad91c2112bf072b3e79f2
[ "Apache-2.0" ]
null
null
null
stage0/stdlib/Lean/AuxRecursor.c
tballmsft/lean4
fb57b73e1f07828fa9aad91c2112bf072b3e79f2
[ "Apache-2.0" ]
null
null
null
stage0/stdlib/Lean/AuxRecursor.c
tballmsft/lean4
fb57b73e1f07828fa9aad91c2112bf072b3e79f2
[ "Apache-2.0" ]
null
null
null
// Lean compiler output // Module: Lean.AuxRecursor // Imports: Init Lean.Environment #include <lean/lean.h> #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" #pragma clang diagnostic ignored "-Wunused-label" #elif defined(__GNUC__) && !defined(__CLANG__) #pragma GCC diagnostic ignored "-Wunused-parameter" #pragma GCC diagnostic ignored "-Wunused-label" #pragma GCC diagnostic ignored "-Wunused-but-set-variable" #endif #ifdef __cplusplus extern "C" { #endif LEAN_EXPORT lean_object* l_Lean_mkRecOnName(lean_object*); LEAN_EXPORT lean_object* lean_mark_aux_recursor(lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_noConfusionExt; static lean_object* l_Lean_isAuxRecursor___closed__3; LEAN_EXPORT uint8_t l_Lean_isCasesOnRecursor(lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); static lean_object* l_Lean_isAuxRecursor___closed__5; static lean_object* l_Lean_initFn____x40_Lean_AuxRecursor___hyg_49____closed__1; static lean_object* l_Lean_initFn____x40_Lean_AuxRecursor___hyg_49____closed__2; LEAN_EXPORT lean_object* l_Lean_auxRecExt; LEAN_EXPORT lean_object* l_Lean_binductionOnSuffix; LEAN_EXPORT lean_object* l_Lean_mkBelowName(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkCasesOnName(lean_object*); LEAN_EXPORT lean_object* l_Lean_recOnSuffix; LEAN_EXPORT lean_object* l_Lean_isNoConfusion___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* lean_mark_no_confusion(lean_object*, lean_object*); static lean_object* l_Lean_initFn____x40_Lean_AuxRecursor___hyg_130____closed__1; static lean_object* l_Lean_markAuxRecursor___closed__1; static lean_object* l_Lean_initFn____x40_Lean_AuxRecursor___hyg_130____closed__2; LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_AuxRecursor___hyg_49_(lean_object*); LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_AuxRecursor___hyg_130_(lean_object*); LEAN_EXPORT lean_object* l_Lean_isCasesOnRecursor___boxed(lean_object*, lean_object*); static lean_object* l_Lean_casesOnSuffix___closed__1; lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_markNoConfusion___closed__1; static lean_object* l_Lean_brecOnSuffix___closed__1; static lean_object* l_Lean_binductionOnSuffix___closed__1; LEAN_EXPORT uint8_t lean_is_no_confusion(lean_object*, lean_object*); LEAN_EXPORT uint8_t lean_is_aux_recursor(lean_object*, lean_object*); static lean_object* l_Lean_belowSuffix___closed__1; static lean_object* l_Lean_isAuxRecursor___closed__2; LEAN_EXPORT lean_object* l_Lean_mkBRecOnName(lean_object*); lean_object* l_Lean_mkTagDeclarationExtension(lean_object*, lean_object*); static lean_object* l_Lean_isAuxRecursor___closed__4; uint8_t l_Lean_TagDeclarationExtension_isTagged(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isAuxRecursor___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_brecOnSuffix; static lean_object* l_Lean_isAuxRecursor___closed__1; static lean_object* l_Lean_isAuxRecursor___closed__6; static lean_object* l_Lean_recOnSuffix___closed__1; LEAN_EXPORT lean_object* l_Lean_casesOnSuffix; LEAN_EXPORT lean_object* l_Lean_mkBInductionOnName(lean_object*); LEAN_EXPORT lean_object* l_Lean_belowSuffix; uint8_t lean_string_dec_eq(lean_object*, lean_object*); static lean_object* _init_l_Lean_casesOnSuffix___closed__1() { _start: { lean_object* x_1; x_1 = lean_mk_string("casesOn"); return x_1; } } static lean_object* _init_l_Lean_casesOnSuffix() { _start: { lean_object* x_1; x_1 = l_Lean_casesOnSuffix___closed__1; return x_1; } } static lean_object* _init_l_Lean_recOnSuffix___closed__1() { _start: { lean_object* x_1; x_1 = lean_mk_string("recOn"); return x_1; } } static lean_object* _init_l_Lean_recOnSuffix() { _start: { lean_object* x_1; x_1 = l_Lean_recOnSuffix___closed__1; return x_1; } } static lean_object* _init_l_Lean_brecOnSuffix___closed__1() { _start: { lean_object* x_1; x_1 = lean_mk_string("brecOn"); return x_1; } } static lean_object* _init_l_Lean_brecOnSuffix() { _start: { lean_object* x_1; x_1 = l_Lean_brecOnSuffix___closed__1; return x_1; } } static lean_object* _init_l_Lean_binductionOnSuffix___closed__1() { _start: { lean_object* x_1; x_1 = lean_mk_string("binductionOn"); return x_1; } } static lean_object* _init_l_Lean_binductionOnSuffix() { _start: { lean_object* x_1; x_1 = l_Lean_binductionOnSuffix___closed__1; return x_1; } } static lean_object* _init_l_Lean_belowSuffix___closed__1() { _start: { lean_object* x_1; x_1 = lean_mk_string("below"); return x_1; } } static lean_object* _init_l_Lean_belowSuffix() { _start: { lean_object* x_1; x_1 = l_Lean_belowSuffix___closed__1; return x_1; } } LEAN_EXPORT lean_object* l_Lean_mkCasesOnName(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; x_2 = l_Lean_casesOnSuffix; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } LEAN_EXPORT lean_object* l_Lean_mkRecOnName(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; x_2 = l_Lean_recOnSuffix; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } LEAN_EXPORT lean_object* l_Lean_mkBRecOnName(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; x_2 = l_Lean_brecOnSuffix; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } LEAN_EXPORT lean_object* l_Lean_mkBInductionOnName(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; x_2 = l_Lean_binductionOnSuffix; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } LEAN_EXPORT lean_object* l_Lean_mkBelowName(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; x_2 = l_Lean_belowSuffix; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_initFn____x40_Lean_AuxRecursor___hyg_49____closed__1() { _start: { lean_object* x_1; x_1 = lean_mk_string("auxRec"); return x_1; } } static lean_object* _init_l_Lean_initFn____x40_Lean_AuxRecursor___hyg_49____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l_Lean_initFn____x40_Lean_AuxRecursor___hyg_49____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_AuxRecursor___hyg_49_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; x_2 = l_Lean_initFn____x40_Lean_AuxRecursor___hyg_49____closed__2; x_3 = l_Lean_mkTagDeclarationExtension(x_2, x_1); return x_3; } } static lean_object* _init_l_Lean_markAuxRecursor___closed__1() { _start: { lean_object* x_1; x_1 = l_Lean_auxRecExt; return x_1; } } LEAN_EXPORT lean_object* lean_mark_aux_recursor(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; x_3 = l_Lean_markAuxRecursor___closed__1; x_4 = l_Lean_PersistentEnvExtension_addEntry___rarg(x_3, x_1, x_2); return x_4; } } static lean_object* _init_l_Lean_isAuxRecursor___closed__1() { _start: { lean_object* x_1; x_1 = lean_mk_string("Eq"); return x_1; } } static lean_object* _init_l_Lean_isAuxRecursor___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l_Lean_isAuxRecursor___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_isAuxRecursor___closed__3() { _start: { lean_object* x_1; x_1 = lean_mk_string("ndrec"); return x_1; } } static lean_object* _init_l_Lean_isAuxRecursor___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_isAuxRecursor___closed__2; x_2 = l_Lean_isAuxRecursor___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_isAuxRecursor___closed__5() { _start: { lean_object* x_1; x_1 = lean_mk_string("ndrecOn"); return x_1; } } static lean_object* _init_l_Lean_isAuxRecursor___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_isAuxRecursor___closed__2; x_2 = l_Lean_isAuxRecursor___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } LEAN_EXPORT uint8_t lean_is_aux_recursor(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; x_3 = l_Lean_markAuxRecursor___closed__1; lean_inc(x_2); x_4 = l_Lean_TagDeclarationExtension_isTagged(x_3, x_1, x_2); if (x_4 == 0) { lean_object* x_5; uint8_t x_6; x_5 = l_Lean_isAuxRecursor___closed__4; x_6 = lean_name_eq(x_2, x_5); if (x_6 == 0) { lean_object* x_7; uint8_t x_8; x_7 = l_Lean_isAuxRecursor___closed__6; x_8 = lean_name_eq(x_2, x_7); lean_dec(x_2); return x_8; } else { uint8_t x_9; lean_dec(x_2); x_9 = 1; return x_9; } } else { uint8_t x_10; lean_dec(x_2); x_10 = 1; return x_10; } } } LEAN_EXPORT lean_object* l_Lean_isAuxRecursor___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; x_3 = lean_is_aux_recursor(x_1, x_2); x_4 = lean_box(x_3); return x_4; } } LEAN_EXPORT uint8_t l_Lean_isCasesOnRecursor(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 1) { lean_object* x_3; lean_object* x_4; uint8_t x_5; x_3 = lean_ctor_get(x_2, 1); lean_inc(x_3); x_4 = l_Lean_casesOnSuffix; x_5 = lean_string_dec_eq(x_3, x_4); lean_dec(x_3); if (x_5 == 0) { uint8_t x_6; lean_dec(x_2); lean_dec(x_1); x_6 = 0; return x_6; } else { uint8_t x_7; x_7 = lean_is_aux_recursor(x_1, x_2); return x_7; } } else { uint8_t x_8; lean_dec(x_2); lean_dec(x_1); x_8 = 0; return x_8; } } } LEAN_EXPORT lean_object* l_Lean_isCasesOnRecursor___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; x_3 = l_Lean_isCasesOnRecursor(x_1, x_2); x_4 = lean_box(x_3); return x_4; } } static lean_object* _init_l_Lean_initFn____x40_Lean_AuxRecursor___hyg_130____closed__1() { _start: { lean_object* x_1; x_1 = lean_mk_string("noConf"); return x_1; } } static lean_object* _init_l_Lean_initFn____x40_Lean_AuxRecursor___hyg_130____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l_Lean_initFn____x40_Lean_AuxRecursor___hyg_130____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_AuxRecursor___hyg_130_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; x_2 = l_Lean_initFn____x40_Lean_AuxRecursor___hyg_130____closed__2; x_3 = l_Lean_mkTagDeclarationExtension(x_2, x_1); return x_3; } } static lean_object* _init_l_Lean_markNoConfusion___closed__1() { _start: { lean_object* x_1; x_1 = l_Lean_noConfusionExt; return x_1; } } LEAN_EXPORT lean_object* lean_mark_no_confusion(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; x_3 = l_Lean_markNoConfusion___closed__1; x_4 = l_Lean_PersistentEnvExtension_addEntry___rarg(x_3, x_1, x_2); return x_4; } } LEAN_EXPORT uint8_t lean_is_no_confusion(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; x_3 = l_Lean_markNoConfusion___closed__1; x_4 = l_Lean_TagDeclarationExtension_isTagged(x_3, x_1, x_2); return x_4; } } LEAN_EXPORT lean_object* l_Lean_isNoConfusion___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; x_3 = lean_is_no_confusion(x_1, x_2); x_4 = lean_box(x_3); return x_4; } } lean_object* initialize_Init(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Environment(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_AuxRecursor(uint8_t builtin, lean_object* w) { lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; res = initialize_Init(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); res = initialize_Lean_Environment(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_casesOnSuffix___closed__1 = _init_l_Lean_casesOnSuffix___closed__1(); lean_mark_persistent(l_Lean_casesOnSuffix___closed__1); l_Lean_casesOnSuffix = _init_l_Lean_casesOnSuffix(); lean_mark_persistent(l_Lean_casesOnSuffix); l_Lean_recOnSuffix___closed__1 = _init_l_Lean_recOnSuffix___closed__1(); lean_mark_persistent(l_Lean_recOnSuffix___closed__1); l_Lean_recOnSuffix = _init_l_Lean_recOnSuffix(); lean_mark_persistent(l_Lean_recOnSuffix); l_Lean_brecOnSuffix___closed__1 = _init_l_Lean_brecOnSuffix___closed__1(); lean_mark_persistent(l_Lean_brecOnSuffix___closed__1); l_Lean_brecOnSuffix = _init_l_Lean_brecOnSuffix(); lean_mark_persistent(l_Lean_brecOnSuffix); l_Lean_binductionOnSuffix___closed__1 = _init_l_Lean_binductionOnSuffix___closed__1(); lean_mark_persistent(l_Lean_binductionOnSuffix___closed__1); l_Lean_binductionOnSuffix = _init_l_Lean_binductionOnSuffix(); lean_mark_persistent(l_Lean_binductionOnSuffix); l_Lean_belowSuffix___closed__1 = _init_l_Lean_belowSuffix___closed__1(); lean_mark_persistent(l_Lean_belowSuffix___closed__1); l_Lean_belowSuffix = _init_l_Lean_belowSuffix(); lean_mark_persistent(l_Lean_belowSuffix); l_Lean_initFn____x40_Lean_AuxRecursor___hyg_49____closed__1 = _init_l_Lean_initFn____x40_Lean_AuxRecursor___hyg_49____closed__1(); lean_mark_persistent(l_Lean_initFn____x40_Lean_AuxRecursor___hyg_49____closed__1); l_Lean_initFn____x40_Lean_AuxRecursor___hyg_49____closed__2 = _init_l_Lean_initFn____x40_Lean_AuxRecursor___hyg_49____closed__2(); lean_mark_persistent(l_Lean_initFn____x40_Lean_AuxRecursor___hyg_49____closed__2); if (builtin) {res = l_Lean_initFn____x40_Lean_AuxRecursor___hyg_49_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_auxRecExt = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_auxRecExt); lean_dec_ref(res); }l_Lean_markAuxRecursor___closed__1 = _init_l_Lean_markAuxRecursor___closed__1(); lean_mark_persistent(l_Lean_markAuxRecursor___closed__1); l_Lean_isAuxRecursor___closed__1 = _init_l_Lean_isAuxRecursor___closed__1(); lean_mark_persistent(l_Lean_isAuxRecursor___closed__1); l_Lean_isAuxRecursor___closed__2 = _init_l_Lean_isAuxRecursor___closed__2(); lean_mark_persistent(l_Lean_isAuxRecursor___closed__2); l_Lean_isAuxRecursor___closed__3 = _init_l_Lean_isAuxRecursor___closed__3(); lean_mark_persistent(l_Lean_isAuxRecursor___closed__3); l_Lean_isAuxRecursor___closed__4 = _init_l_Lean_isAuxRecursor___closed__4(); lean_mark_persistent(l_Lean_isAuxRecursor___closed__4); l_Lean_isAuxRecursor___closed__5 = _init_l_Lean_isAuxRecursor___closed__5(); lean_mark_persistent(l_Lean_isAuxRecursor___closed__5); l_Lean_isAuxRecursor___closed__6 = _init_l_Lean_isAuxRecursor___closed__6(); lean_mark_persistent(l_Lean_isAuxRecursor___closed__6); l_Lean_initFn____x40_Lean_AuxRecursor___hyg_130____closed__1 = _init_l_Lean_initFn____x40_Lean_AuxRecursor___hyg_130____closed__1(); lean_mark_persistent(l_Lean_initFn____x40_Lean_AuxRecursor___hyg_130____closed__1); l_Lean_initFn____x40_Lean_AuxRecursor___hyg_130____closed__2 = _init_l_Lean_initFn____x40_Lean_AuxRecursor___hyg_130____closed__2(); lean_mark_persistent(l_Lean_initFn____x40_Lean_AuxRecursor___hyg_130____closed__2); if (builtin) {res = l_Lean_initFn____x40_Lean_AuxRecursor___hyg_130_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_noConfusionExt = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_noConfusionExt); lean_dec_ref(res); }l_Lean_markNoConfusion___closed__1 = _init_l_Lean_markNoConfusion___closed__1(); lean_mark_persistent(l_Lean_markNoConfusion___closed__1); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus } #endif
30.434185
132
0.83229
081f2653a4f182594d7a0107474b99a7a9d1760e
7,089
h
C
src/lldb/Bindings/SBValueBinding.h
No9/lldb-sys.rs
87bafc294023571bd1b346611278d9207f10a3f9
[ "Apache-2.0", "MIT" ]
null
null
null
src/lldb/Bindings/SBValueBinding.h
No9/lldb-sys.rs
87bafc294023571bd1b346611278d9207f10a3f9
[ "Apache-2.0", "MIT" ]
null
null
null
src/lldb/Bindings/SBValueBinding.h
No9/lldb-sys.rs
87bafc294023571bd1b346611278d9207f10a3f9
[ "Apache-2.0", "MIT" ]
null
null
null
//===-- SBValueBinding.h ----------------------------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #ifndef LLDB_SBValueBinding_h_ #define LLDB_SBValueBinding_h_ #include "lldb/Bindings/SBBindingDefines.h" #ifdef __cplusplus extern "C" { #endif LLDB_API SBValueRef CreateSBValue(void); LLDB_API SBValueRef CloneSBValue(SBValueRef instance); LLDB_API void DisposeSBValue(SBValueRef instance); LLDB_API bool SBValueIsValid(SBValueRef instance); LLDB_API void SBValueClear(SBValueRef instance); LLDB_API SBErrorRef SBValueGetError(SBValueRef instance); LLDB_API unsigned long long SBValueGetID(SBValueRef instance); LLDB_API const char *SBValueGetName(SBValueRef instance); LLDB_API const char *SBValueGetTypeName(SBValueRef instance); LLDB_API const char *SBValueGetDisplayTypeName(SBValueRef instance); LLDB_API unsigned int SBValueGetByteSize(SBValueRef instance); LLDB_API bool SBValueIsInScope(SBValueRef instance); LLDB_API ENUM(Format) SBValueGetFormat(SBValueRef instance); LLDB_API void SBValueSetFormat(SBValueRef instance, ENUM(Format) format); LLDB_API const char *SBValueGetValue(SBValueRef instance); LLDB_API long long SBValueGetValueAsSigned(SBValueRef instance, SBErrorRef error, int64_t fail_value); LLDB_API unsigned long long SBValueGetValueAsUnsigned(SBValueRef instance, SBErrorRef error, uint64_t fail_value); LLDB_API long long SBValueGetValueAsSigned2(SBValueRef instance, int64_t fail_value); LLDB_API unsigned long long SBValueGetValueAsUnsigned2(SBValueRef instance, uint64_t fail_value); LLDB_API ENUM(ValueType) SBValueGetValueType(SBValueRef instance); LLDB_API bool SBValueGetValueDidChange(SBValueRef instance); LLDB_API const char *SBValueGetSummary(SBValueRef instance); LLDB_API const char *SBValueGetSummary2(SBValueRef instance, SBStreamRef stream, SBTypeSummaryOptionsRef options); LLDB_API const char *SBValueGetObjectDescription(SBValueRef instance); LLDB_API const char *SBValueGetTypeValidatorResult(SBValueRef instance); LLDB_API SBValueRef SBValueGetDynamicValue(SBValueRef instance, ENUM(DynamicValueType) use_dynamic); LLDB_API SBValueRef SBValueGetStaticValue(SBValueRef instance); LLDB_API SBValueRef SBValueGetNonSyntheticValue(SBValueRef instance); LLDB_API ENUM(DynamicValueType) SBValueGetPreferDynamicValue(SBValueRef instance); LLDB_API void SBValueSetPreferDynamicValue(SBValueRef instance, ENUM(DynamicValueType) use_dynamic); LLDB_API bool SBValueGetPreferSyntheticValue(SBValueRef instance); LLDB_API void SBValueSetPreferSyntheticValue(SBValueRef instance, bool use_synthetic); LLDB_API bool SBValueIsDynamic(SBValueRef instance); LLDB_API bool SBValueIsSynthetic(SBValueRef instance); LLDB_API const char *SBValueGetLocation(SBValueRef instance); LLDB_API bool SBValueSetValueFromCString(SBValueRef instance, const char *value_str); LLDB_API bool SBValueSetValueFromCString2(SBValueRef instance, const char *value_str, SBErrorRef error); LLDB_API SBTypeFormatRef SBValueGetTypeFormat(SBValueRef instance); LLDB_API SBTypeSummaryRef SBValueGetTypeSummary(SBValueRef instance); LLDB_API SBTypeFilterRef SBValueGetTypeFilter(SBValueRef instance); LLDB_API SBTypeSyntheticRef SBValueGetTypeSynthetic(SBValueRef instance); LLDB_API SBValueRef SBValueGetChildAtIndex(SBValueRef instance, uint32_t idx); LLDB_API SBValueRef SBValueCreateChildAtOffset(SBValueRef instance, const char *name, uint32_t offset, SBTypeRef type); LLDB_API SBValueRef SBValueCast(SBValueRef instance, SBTypeRef type); LLDB_API SBValueRef SBValueCreateValueFromExpression(SBValueRef instance, const char *name, const char *expression); LLDB_API SBValueRef SBValueCreateValueFromExpression2(SBValueRef instance, const char *name, const char *expression, SBExpressionOptionsRef options); LLDB_API SBValueRef SBValueCreateValueFromAddress(SBValueRef instance, const char *name, lldb_addr_t address, SBTypeRef type); LLDB_API SBValueRef SBValueCreateValueFromData(SBValueRef instance, const char *name, SBDataRef data, SBTypeRef type); LLDB_API SBValueRef SBValueGetChildAtIndex2(SBValueRef instance, uint32_t idx, ENUM(DynamicValueType) use_dynamic, bool can_create_synthetic); LLDB_API unsigned int SBValueGetIndexOfChildWithName(SBValueRef instance, const char *name); LLDB_API SBValueRef SBValueGetChildMemberWithName(SBValueRef instance, const char *name); LLDB_API SBValueRef SBValueGetChildMemberWithName2(SBValueRef instance, const char *name, ENUM(DynamicValueType) use_dynamic); LLDB_API SBValueRef SBValueGetValueForExpressionPath(SBValueRef instance, const char *expr_path); LLDB_API SBValueRef SBValueAddressOf(SBValueRef instance); LLDB_API unsigned long long SBValueGetLoadAddress(SBValueRef instance); LLDB_API SBAddressRef SBValueGetAddress(SBValueRef instance); LLDB_API SBDataRef SBValueGetPointeeData(SBValueRef instance, uint32_t item_idx, uint32_t item_count); LLDB_API SBDataRef SBValueGetData(SBValueRef instance); LLDB_API bool SBValueSetData(SBValueRef instance, SBDataRef data, SBErrorRef error); LLDB_API SBDeclarationRef SBValueGetDeclaration(SBValueRef instance); LLDB_API bool SBValueMightHaveChildren(SBValueRef instance); LLDB_API bool SBValueIsRuntimeSupportValue(SBValueRef instance); LLDB_API unsigned int SBValueGetNumChildren(SBValueRef instance); LLDB_API void *SBValueGetOpaqueType(SBValueRef instance); LLDB_API SBTargetRef SBValueGetTarget(SBValueRef instance); LLDB_API SBProcessRef SBValueGetProcess(SBValueRef instance); LLDB_API SBThreadRef SBValueGetThread(SBValueRef instance); LLDB_API SBFrameRef SBValueGetFrame(SBValueRef instance); LLDB_API SBValueRef SBValueDereference(SBValueRef instance); LLDB_API bool SBValueTypeIsPointerType(SBValueRef instance); LLDB_API SBTypeRef SBValueGetType(SBValueRef instance); LLDB_API SBValueRef SBValuePersist(SBValueRef instance); LLDB_API bool SBValueGetDescription(SBValueRef instance, SBStreamRef description); LLDB_API bool SBValueGetExpressionPath(SBValueRef instance, SBStreamRef description); LLDB_API bool SBValueGetExpressionPath2(SBValueRef instance, SBStreamRef description, bool qualify_cxx_base_classes); LLDB_API SBWatchpointRef SBValueWatch(SBValueRef instance, bool resolve_location, bool read, bool write, SBErrorRef error); LLDB_API SBWatchpointRef SBValueWatch2(SBValueRef instance, bool resolve_location, bool read, bool write); LLDB_API SBWatchpointRef SBValueWatchPointee(SBValueRef instance, bool resolve_location, bool read, bool write, SBErrorRef error); #ifdef __cplusplus } #endif #endif // LLDB_SBValueBinding_h_
36.73057
107
0.797574
081f38fe1727fdc2f98c73832c5c57164e74a5e5
2,053
h
C
nachos/code/lib/bitmap.h
JainamS1996/Operating-System-NachOS
d2a5fcbc393f07a3734069be28ea1ca1ee782eb6
[ "MIT" ]
10
2020-09-20T17:21:50.000Z
2020-10-20T13:51:30.000Z
nachos/code/lib/bitmap.h
JainamS1996/Operating-System-NachOS
d2a5fcbc393f07a3734069be28ea1ca1ee782eb6
[ "MIT" ]
1
2022-02-12T09:34:53.000Z
2022-02-12T09:34:53.000Z
nachos/code/lib/bitmap.h
JainamS1996/Operating-System-NachOS
d2a5fcbc393f07a3734069be28ea1ca1ee782eb6
[ "MIT" ]
null
null
null
// bitmap.h // Data structures defining a bitmap -- an array of bits each of which // can be either on or off. // // Represented as an array of unsigned integers, on which we do // modulo arithmetic to find the bit we are interested in. // // The bitmap can be parameterized with with the number of bits being // managed. // // Copyright (c) 1992-1996 The Regents of the University of California. // All rights reserved. See copyright.h for copyright notice and limitation // of liability and disclaimer of warranty provisions. #ifndef BITMAP_H #define BITMAP_H #include "copyright.h" #include "utility.h" // Definitions helpful for representing a bitmap as an array of integers const int BitsInByte = 8; const int BitsInWord = sizeof(unsigned int) * BitsInByte; // The following class defines a "bitmap" -- an array of bits, // each of which can be independently set, cleared, and tested. // // Most useful for managing the allocation of the elements of an array -- // for instance, disk sectors, or main memory pages. // Each bit represents whether the corresponding sector or page is // in use or free. class Bitmap { public: Bitmap(int numItems); // Initialize a bitmap, with "numItems" bits // initially, all bits are cleared. ~Bitmap(); // De-allocate bitmap void Mark(int which); // Set the "nth" bit void Clear(int which); // Clear the "nth" bit bool Test(int which) const; // Is the "nth" bit set? int FindAndSet(); // Return the # of a clear bit, and as a side // effect, set the bit. // If no bits are clear, return -1. int NumClear() const; // Return the number of clear bits void Print() const; // Print contents of bitmap void SelfTest(); // Test whether bitmap is working protected: int numBits; // number of bits in the bitmap int numWords; // number of words of bitmap storage // (rounded up if numBits is not a // multiple of the number of bits in // a word) unsigned int *map; // bit storage }; #endif // BITMAP_H
34.216667
77
0.685826
081fa856c4db1504f77efa469e8213888418ab4d
890
c
C
testcase/testcase4.c
kaka555/KAKAOS-MINI-LINUX
3d85c5f3f808e5010280a6c5fe5321d42c30a835
[ "Apache-2.0" ]
4
2021-06-18T03:30:02.000Z
2021-06-18T09:02:19.000Z
testcase/testcase4.c
frelam/KAKAOS-MINI-LINUX
b61f524926fd75b8ed5139a0d4c20d91acb7e2c4
[ "Apache-2.0" ]
null
null
null
testcase/testcase4.c
frelam/KAKAOS-MINI-LINUX
b61f524926fd75b8ed5139a0d4c20d91acb7e2c4
[ "Apache-2.0" ]
1
2021-06-18T03:30:04.000Z
2021-06-18T03:30:04.000Z
/* test breakpoint */ #include <user.h> #include <osinit.h> #include <os_delay.h> extern volatile struct task_struct *OSTCBCurPtr; extern volatile struct task_struct *OSTCBHighRdyPtr; void three(void *para) { int i = 5; int ia = 7; double kaka = 6.66; shell_insert_variable_INT("i", &i); shell_insert_variable_INT("ia", &ia); shell_insert_variable_FLOAT("kaka", &kaka); ka_printf("address of i is 0x%p\n", &i); ka_printf("address of ia is 0x%p\n", &ia); ka_printf("address of kaka is 0x%p\n", &kaka); ka_printf("i is %d\n", i); ka_printf("ia is %d\n", ia); ka_printf("kaka is %f\n", kaka); INSERT_BREAK_POINT(); ka_printf("i is %d\n", i); ka_printf("ia is %d\n", ia); ka_printf("kaka is %f\n", kaka); INSERT_BREAK_POINT(); ka_printf("i is %d\n", i); ka_printf("ia is %d\n", ia); ka_printf("kaka is %f\n", kaka); while (1) { ka_printf("three\n"); sleep(10); } }
24.054054
52
0.657303
081fc3f9c0e9b819b3090afdce9f046964909f52
9,269
h
C
openPowerLink/contrib/ndislib/ndispcie/ndisDriver.h
Roboy/roboy_powerlink
864ff89166e6e657969641aae8ec8ab0c17e83d2
[ "BSD-3-Clause" ]
1
2017-10-28T14:30:51.000Z
2017-10-28T14:30:51.000Z
openPowerLink/contrib/ndislib/ndispcie/ndisDriver.h
Roboy/roboy_powerlink
864ff89166e6e657969641aae8ec8ab0c17e83d2
[ "BSD-3-Clause" ]
null
null
null
openPowerLink/contrib/ndislib/ndispcie/ndisDriver.h
Roboy/roboy_powerlink
864ff89166e6e657969641aae8ec8ab0c17e83d2
[ "BSD-3-Clause" ]
null
null
null
/** ******************************************************************************** \file ndisDriver.h \brief Internal header file for NDIS driver This file contains the common typedefs, data types and constant declarations to be used across the NDIS driver library. *******************************************************************************/ /*------------------------------------------------------------------------------ Copyright (c) 2015, Kalycito Infotech Private Limited All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the copyright holders nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------*/ #ifndef _INC_ndisdriver_H_ #define _INC_ndisdriver_H_ //------------------------------------------------------------------------------ // includes //------------------------------------------------------------------------------ #include <ndis.h> #include "ndis-intf.h" //------------------------------------------------------------------------------ // const defines //------------------------------------------------------------------------------ #define OPLK_MEM_TAG 'klpO' #define OPLK_MAX_FRAME_SIZE 1546 #define OPLK_MTU_SIZE 1500 ///< Bytes #define OPLK_LINK_SPEED 100000000 ///< 100 Mbps Rx and Tx #define OPLK_MAX_BAR_COUNT 6 #define OPLK_ALLOCATED_NBL 0x10000000 #define OPLK_MAX_VETH_BUFF 40 //------------------------------------------------------------------------------ // typedef //------------------------------------------------------------------------------ /** \brief NDIS driver instance structure The structure holds the parameters for the NDIS driver instance. */ typedef struct { tDrvIntfRegister pfnDrvIntfRegCb; ///< Driver interface register callback. tDrvIntfDeregister pfnDrvIntfDeregisterCb; ///< Driver interface de-register callback. NDIS_HANDLE pMiniportHandle; ///< Miniport driver handle returned by OS. NDIS_HANDLE pProtocolHandle; ///< Protocol driver handle returned by OS. } tNdisDriverInstance; /** \brief PCIe BAR information The structure holds the information of the PCIe BAR mapped by the NDIS miniport. */ typedef struct { PHYSICAL_ADDRESS phyAddr; ///< Physical address of the BAR. PULONG pVirtualAddr; ///< Virtual address of the BAR in kernel memory. ULONG length; ///< Length of the BAR. } tBarInfo; /** \brief VEth receive buffer information Virtual Ethernet receive buffer information structure for NDIS driver. */ typedef struct { LIST_ENTRY rxLink; ///< List entry for the receive buffer. PNET_BUFFER_LIST pNbl; ///< Pointer to NetBufferList for the buffer. PMDL pMdl; ///< MDL describing the receive buffer. BOOLEAN free; ///< Flag to identify buffer access status. ULONG maxLength; ///< Max length of the buffer. ULONG length; ///< Length of the receive frame. void* pData; ///< Pointer to receive data. } tVEthRxBufInfo; /** \brief NDIS miniport driver instance Structure to hold the global variables used by miniport driver instance. The miniport acts as the virtual Ethernet interface shared with OS. */ typedef struct { NDIS_HANDLE miniportAdapterHandle; ///< Adapter handle for the NDIS miniport. NDIS_HANDLE interruptHandle; ///< NDIS handle for interrupts. BOOLEAN miniportHalting; ///< Flag to identify miniport halting status. BOOLEAN miniportPaused; ///< Flag to identify paused status. ULONG state; ///< Current miniport state. NDIS_SPIN_LOCK miniportLock; ///< Global miniport lock. NDIS_SPIN_LOCK pauseLock; ///< Lock for miniport pause event. NDIS_STATUS status; ///< Miniport status. ULONG sendRequests; ///< Total send requests handled. ULONG receiveIndication; ///< Total receive indications handled. tIntrHandler pfnIntrCb; ///< Function pointer to synchronization callback. NDIS_INTERRUPT_TYPE interruptType; ///< NDIS interrupt type for the registered interrupt. PIO_INTERRUPT_MESSAGE_INFO intrMsgInfo; ///< Message interrupt information. tBarInfo barInfo[OPLK_MAX_BAR_COUNT]; ///< PCIe BAR information for all available BARs. ULONG msiVector; ///< MSI vector assigned for the miniport. tVEthSendCb pfnVEthSendCb; ///< Callback routine for VEth transmit. NDIS_HANDLE receiveNblPool; ///< Receive NetBufferLists pool. tVEthRxBufInfo* pReceiveBufInfo; ///< Pointer to receive buffer information. void* pReceiveBuf; ///< Pointer to the memory for received VEth frame. LIST_ENTRY rxList; ///< List entry for VEth receive queue. NDIS_SPIN_LOCK rxListLock; ///< Spin lock for VEth receive queue. NDIS_LINK_STATE lastLinkState; ///< Last link state change. } tVEthInstance; //------------------------------------------------------------------------------ // global defines //------------------------------------------------------------------------------ extern tNdisDriverInstance driverInstance_g; extern tVEthInstance vethInstance_g; //------------------------------------------------------------------------------ // Macros //------------------------------------------------------------------------------ #ifndef NDEBUG #define TRACE(...) DbgPrint(__VA_ARGS__) #else #define TRACE(...) #endif #define VETHINFO_FROM_NBL(_NBL) ((tVEthRxBufInfo*)((_NBL)->MiniportReserved[0])) //------------------------------------------------------------------------------ // function prototypes //------------------------------------------------------------------------------ #ifdef __cplusplus extern "C" { #endif // Miniport driver prototypes DRIVER_DISPATCH miniportIoDispatch; DRIVER_DISPATCH miniportDeviceIoControl; MINIPORT_SET_OPTIONS miniportSetOptions; MINIPORT_INITIALIZE miniportInitialize; MINIPORT_HALT miniportHalt; MINIPORT_UNLOAD miniportUnload; MINIPORT_PAUSE miniportPause; MINIPORT_RESTART miniportRestart; MINIPORT_OID_REQUEST miniportOidRequest; MINIPORT_SEND_NET_BUFFER_LISTS miniportSendNetBufferLists; MINIPORT_RETURN_NET_BUFFER_LISTS miniportReturnNetBufferLists; MINIPORT_CANCEL_SEND miniportCancelSendNetBufferLists; MINIPORT_DEVICE_PNP_EVENT_NOTIFY miniportPnpEventNotify; MINIPORT_SHUTDOWN miniportShutdown; MINIPORT_CANCEL_OID_REQUEST miniportCancelOidRequest; MINIPORT_CHECK_FOR_HANG miniportCheckForHang; MINIPORT_RESET miniportReset; NDIS_STATUS miniport_handleReceive(UINT8* pDataBuff_p, size_t size_p); void miniport_setAdapterState(ULONG state_p); #ifdef __cplusplus } #endif #endif /* _INC_ndisdriver_H_ */
48.276042
118
0.549034
081ff9d8ab805fe1f0659c6388e3bb0c73e11781
1,503
h
C
usr/libexec/findmydeviced/FMDUnregisterTokenStore.h
lechium/iOS1351Headers
6bed3dada5ffc20366b27f7f2300a24a48a6284e
[ "MIT" ]
2
2021-11-02T09:23:27.000Z
2022-03-28T08:21:57.000Z
usr/libexec/findmydeviced/FMDUnregisterTokenStore.h
lechium/iOS1351Headers
6bed3dada5ffc20366b27f7f2300a24a48a6284e
[ "MIT" ]
null
null
null
usr/libexec/findmydeviced/FMDUnregisterTokenStore.h
lechium/iOS1351Headers
6bed3dada5ffc20366b27f7f2300a24a48a6284e
[ "MIT" ]
1
2022-03-28T08:21:59.000Z
2022-03-28T08:21:59.000Z
// // Generated by classdumpios 1.0.1 (64 bit) (iOS port by DreamDevLost)(Debug version compiled Sep 26 2020 13:48:20). // // Copyright (C) 1997-2019 Steve Nygard. // #import <objc/NSObject.h> @class NSString; @interface FMDUnregisterTokenStore : NSObject { NSString *_bundleIdentifier; // 8 = 0x8 } + (id)computeAccessoryIdentifierWithIdentifier:(id)arg1; // IMP=0x00000001000b9f74 + (id)keychainLookupKeyForIdentifier:(id)arg1; // IMP=0x00000001000b7cd8 + (id)tokenKeyForIdentifier:(id)arg1; // IMP=0x00000001000b7c2c - (void).cxx_destruct; // IMP=0x00000001000ba06c @property(retain, nonatomic) NSString *bundleIdentifier; // @synthesize bundleIdentifier=_bundleIdentifier; - (id)allKeychainLookupKeys; // IMP=0x00000001000b9eec - (id)allTokenKeys; // IMP=0x00000001000b9e84 - (void)removeUnregisterTokenForKey:(id)arg1; // IMP=0x00000001000b9d3c - (void)removeKeychainItemForKey:(id)arg1; // IMP=0x00000001000b9b20 - (_Bool)isTokenDictionaryValid:(id)arg1 error:(id *)arg2; // IMP=0x00000001000b9898 - (void)clearUnregisterTokens; // IMP=0x00000001000b96fc - (void)expungeUnregisterTokens:(id)arg1; // IMP=0x00000001000b8fd0 - (void)saveUnregisterToken:(id)arg1 identifier:(id)arg2 expiryDate:(id)arg3; // IMP=0x00000001000b8990 - (void)removeUnregisterTokenForIdentifier:(id)arg1; // IMP=0x00000001000b884c - (id)unregisterTokenForIdentifier:(id)arg1; // IMP=0x00000001000b7f00 - (_Bool)accessoriesNeedUnregister; // IMP=0x00000001000b7d84 - (id)init; // IMP=0x00000001000b7b80 @end
41.75
120
0.774451
08200897e5bd19e00715e4e6c0eb553a91a09b1e
3,759
c
C
src/common/tests/lru.c
sherintg/daos
a54e347938a0a7b2fe8771c982336f1d28654b1f
[ "BSD-2-Clause-Patent" ]
2
2021-07-14T12:21:50.000Z
2021-07-14T12:21:52.000Z
src/common/tests/lru.c
sherintg/daos
a54e347938a0a7b2fe8771c982336f1d28654b1f
[ "BSD-2-Clause-Patent" ]
null
null
null
src/common/tests/lru.c
sherintg/daos
a54e347938a0a7b2fe8771c982336f1d28654b1f
[ "BSD-2-Clause-Patent" ]
1
2021-04-13T16:04:21.000Z
2021-04-13T16:04:21.000Z
/** * (C) Copyright 2016-2021 Intel Corporation. * * SPDX-License-Identifier: BSD-2-Clause-Patent */ #define D_LOGFAC DD_FAC(tests) #include <stdio.h> #include <string.h> #include <errno.h> #include <stdlib.h> #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/mman.h> #include <daos/common.h> #include <daos/lru.h> /** integer key reference */ struct uint_ref { struct daos_llink ur_llink; uint64_t ur_key; }; void uint_ref_lru_free(struct daos_llink *llink) { struct uint_ref *ref; D_ASSERT(llink); D_PRINT("Freeing LRU ref from uint_ref cb\n"); ref = container_of(llink, struct uint_ref, ur_llink); D_FREE(ref); } int uint_ref_lru_alloc(void *key, unsigned int ksize, void *args, struct daos_llink **link) { struct uint_ref *ref; D_ALLOC_PTR(ref); if (ref == NULL) { D_ERROR("Error in allocating lru_refs"); return -DER_NOMEM; } ref->ur_key = *(uint64_t *)key; *link = &ref->ur_llink; return 0; } bool uint_ref_lru_cmp(const void *key, unsigned int ksize, struct daos_llink *llink) { struct uint_ref *ref = container_of(llink, struct uint_ref, ur_llink); D_ASSERT(ksize == sizeof(uint64_t)); return (ref->ur_key == *(uint64_t *)key); } uint32_t uint_ref_lru_hash(struct daos_llink *llink) { struct uint_ref *ref = container_of(llink, struct uint_ref, ur_llink); return d_hash_string_u32((const char *)&ref->ur_key, sizeof(ref->ur_key)); } struct daos_llink_ops uint_ref_llink_ops = { .lop_free_ref = uint_ref_lru_free, .lop_alloc_ref = uint_ref_lru_alloc, .lop_cmp_keys = uint_ref_lru_cmp, .lop_rec_hash = uint_ref_lru_hash, }; static inline int test_ref_hold(struct daos_lru_cache *cache, struct daos_llink **link, void *key, unsigned int size) { int rc = 0; struct uint_ref *refs; rc = daos_lru_ref_hold(cache, key, size, (void *)1, link); if (rc) D_ERROR("Error in holding reference\n"); refs = container_of(*link, struct uint_ref, ur_llink); D_ASSERT(refs->ur_key == *(uint64_t *)key); D_PRINT("Completed ref hold for key: %"PRIu64"\n", *(uint64_t *)key); return rc; } int main(int argc, char **argv) { int rc, num_keys, i, j; uint64_t *keys; struct daos_llink *link_ret[3] = {NULL}; struct daos_lru_cache *tcache = NULL; int csize; rc = daos_debug_init(DAOS_LOG_DEFAULT); if (rc != 0) return rc; if (argc < 3) { D_ERROR("<exec><size bits(^2)><num_keys>\n"); exit(-1); } csize = (int)strtol(argv[1], (char **)NULL, 10); num_keys = (int)strtol(argv[2], (char **)NULL, 10); rc = daos_lru_cache_create(csize, D_HASH_FT_RWLOCK, &uint_ref_llink_ops, &tcache); if (rc) D_ASSERTF(0, "Error in creating lru cache\n"); D_ALLOC_ARRAY(keys, (num_keys + 2)); if (keys == NULL) D_ASSERTF(0, "Error in allocating keys_array\n"); keys[0] = 0; keys[1] = 1; /** Just for testing * Lets make first two to be busy! */ rc = test_ref_hold(tcache, &link_ret[0], &keys[0], sizeof(uint64_t)); if (rc) D_GOTO(exit, rc); rc = test_ref_hold(tcache, &link_ret[1], &keys[1], sizeof(uint64_t)); if (rc) D_GOTO(exit, rc); for (j = 0, i = 2; i < num_keys+2; i++, j++) { keys[i] = j; D_PRINT("Hold and release for %d\n", j); link_ret[2] = NULL; rc = test_ref_hold(tcache, &link_ret[2], &keys[i], sizeof(uint64_t)); if (rc) D_GOTO(exit, rc); daos_lru_ref_release(tcache, link_ret[2]); D_PRINT("Completed ref release for key: %d\n", j); } daos_lru_ref_release(tcache, link_ret[0]); D_PRINT("Completed ref release for key: %"PRIu64"\n", keys[0]); daos_lru_ref_release(tcache, link_ret[1]); D_PRINT("Completed ref release for key: %"PRIu64"\n", keys[1]); exit: daos_lru_cache_destroy(tcache); D_FREE(keys); daos_debug_fini(); return rc; }
21.357955
71
0.673317
08209f5ca6d823ae058d8826bbc34cc7fc87210f
497
h
C
Redline/Renderer/BRDF/CookTorrence/GeometryFunction.h
64-bit/Redline
c3f5ebd24da8ac437aee5429b2eeea7a14cc93b0
[ "MIT" ]
1
2019-02-03T04:47:21.000Z
2019-02-03T04:47:21.000Z
Redline/Renderer/BRDF/CookTorrence/GeometryFunction.h
64-bit/Redline
c3f5ebd24da8ac437aee5429b2eeea7a14cc93b0
[ "MIT" ]
null
null
null
Redline/Renderer/BRDF/CookTorrence/GeometryFunction.h
64-bit/Redline
c3f5ebd24da8ac437aee5429b2eeea7a14cc93b0
[ "MIT" ]
null
null
null
#pragma once #include <mathfu/glsl_mappings.h> namespace Redline { namespace CookTorrenceBRDF { //This class represents a geometry function (G term) for the Cook-Torrence BRDF class GeometryFunction { public: //Compute the geometry self shadowing term for cook-torrence virtual float Geometry( const mathfu::vec3& incommingAngle, const mathfu::vec3& outgoingAngle, const mathfu::vec3& normal, const mathfu::vec3& halfAngle, float roughness) const =0; }; } }
23.666667
81
0.724346
08226a25c2e3ab5dd2d71e3606dfbde53a770cf2
11,369
c
C
swig-3.0.10/Source/Swig/include.c
yueyueaa/xiaolan-robot
1ee3ba5db802e242ae588e7b63c6043db70411c0
[ "MIT" ]
null
null
null
swig-3.0.10/Source/Swig/include.c
yueyueaa/xiaolan-robot
1ee3ba5db802e242ae588e7b63c6043db70411c0
[ "MIT" ]
null
null
null
swig-3.0.10/Source/Swig/include.c
yueyueaa/xiaolan-robot
1ee3ba5db802e242ae588e7b63c6043db70411c0
[ "MIT" ]
null
null
null
/* ----------------------------------------------------------------------------- * This file is part of SWIG, which is licensed as a whole under version 3 * (or any later version) of the GNU General Public License. Some additional * terms also apply to certain portions of SWIG. The full details of the SWIG * license and copyrights can be found in the LICENSE and COPYRIGHT files * included with the SWIG source code as distributed by the SWIG developers * and at http://www.swig.org/legal.html. * * include.c * * The functions in this file are used to manage files in the SWIG library. * General purpose functions for opening, including, and retrieving pathnames * are provided. * ----------------------------------------------------------------------------- */ #include "swig.h" static List *directories = 0; /* List of include directories */ static String *lastpath = 0; /* Last file that was included */ static List *pdirectories = 0; /* List of pushed directories */ static int dopush = 1; /* Whether to push directories */ static int file_debug = 0; /* This functions determine whether to push/pop dirs in the preprocessor */ void Swig_set_push_dir(int push) { dopush = push; } int Swig_get_push_dir(void) { return dopush; } /* ----------------------------------------------------------------------------- * Swig_add_directory() * * Adds a directory to the SWIG search path. * ----------------------------------------------------------------------------- */ List *Swig_add_directory(const_String_or_char_ptr dirname) { String *adirname; if (!directories) directories = NewList(); assert(directories); if (dirname) { adirname = NewString(dirname); Append(directories,adirname); Delete(adirname); } return directories; } /* ----------------------------------------------------------------------------- * Swig_push_directory() * * Inserts a directory at the front of the SWIG search path. This is used by * the preprocessor to grab files in the same directory as other included files. * ----------------------------------------------------------------------------- */ void Swig_push_directory(const_String_or_char_ptr dirname) { String *pdirname; if (!Swig_get_push_dir()) return; if (!pdirectories) pdirectories = NewList(); assert(pdirectories); pdirname = NewString(dirname); assert(pdirname); Insert(pdirectories,0,pdirname); Delete(pdirname); } /* ----------------------------------------------------------------------------- * Swig_pop_directory() * * Pops a directory off the front of the SWIG search path. This is used by * the preprocessor. * ----------------------------------------------------------------------------- */ void Swig_pop_directory(void) { if (!Swig_get_push_dir()) return; if (!pdirectories) return; Delitem(pdirectories, 0); } /* ----------------------------------------------------------------------------- * Swig_last_file() * * Returns the full pathname of the last file opened. * ----------------------------------------------------------------------------- */ String *Swig_last_file(void) { assert(lastpath); return lastpath; } /* ----------------------------------------------------------------------------- * Swig_search_path_any() * * Returns a list of the current search paths. * ----------------------------------------------------------------------------- */ static List *Swig_search_path_any(int syspath) { String *filename; List *slist; int i, ilen; slist = NewList(); assert(slist); filename = NewStringEmpty(); assert(filename); #ifdef MACSWIG Printf(filename, "%s", SWIG_FILE_DELIMITER); #else Printf(filename, ".%s", SWIG_FILE_DELIMITER); #endif Append(slist, filename); Delete(filename); /* If there are any pushed directories. Add them first */ if (pdirectories) { ilen = Len(pdirectories); for (i = 0; i < ilen; i++) { filename = NewString(Getitem(pdirectories,i)); Append(filename,SWIG_FILE_DELIMITER); Append(slist,filename); Delete(filename); } } /* Add system directories next */ ilen = Len(directories); for (i = 0; i < ilen; i++) { filename = NewString(Getitem(directories,i)); Append(filename,SWIG_FILE_DELIMITER); if (syspath) { /* If doing a system include, put the system directories first */ Insert(slist,i,filename); } else { /* Otherwise, just put the system directories after the pushed directories (if any) */ Append(slist,filename); } Delete(filename); } return slist; } List *Swig_search_path() { return Swig_search_path_any(0); } /* ----------------------------------------------------------------------------- * Swig_open() * * open a file, optionally looking for it in the include path. Returns an open * FILE * on success. * ----------------------------------------------------------------------------- */ static FILE *Swig_open_file(const_String_or_char_ptr name, int sysfile, int use_include_path) { FILE *f; String *filename; List *spath = 0; char *cname; int i, ilen, nbytes; char bom[3]; if (!directories) directories = NewList(); assert(directories); cname = Char(name); filename = NewString(cname); assert(filename); if (file_debug) { Printf(stdout, " Open: %s\n", filename); } f = fopen(Char(filename), "r"); if (!f && use_include_path) { spath = Swig_search_path_any(sysfile); ilen = Len(spath); for (i = 0; i < ilen; i++) { Clear(filename); Printf(filename, "%s%s", Getitem(spath, i), cname); f = fopen(Char(filename), "r"); if (f) break; } Delete(spath); } if (f) { Delete(lastpath); lastpath = filename; /* Skip the UTF-8 BOM if it's present */ nbytes = (int)fread(bom, 1, 3, f); if (nbytes == 3 && bom[0] == (char)0xEF && bom[1] == (char)0xBB && bom[2] == (char)0xBF) { /* skip */ } else { fseek(f, 0, SEEK_SET); } } return f; } /* Open a file - searching the include paths to find it */ FILE *Swig_include_open(const_String_or_char_ptr name) { return Swig_open_file(name, 0, 1); } /* Open a file - does not use include paths to find it */ FILE *Swig_open(const_String_or_char_ptr name) { return Swig_open_file(name, 0, 0); } /* ----------------------------------------------------------------------------- * Swig_read_file() * * Reads data from an open FILE * and returns it as a string. * ----------------------------------------------------------------------------- */ String *Swig_read_file(FILE *f) { int len; char buffer[4096]; String *str = NewStringEmpty(); assert(str); while (fgets(buffer, 4095, f)) { Append(str, buffer); } len = Len(str); /* Add a newline if not present on last line -- the preprocessor seems to * rely on \n and not EOF terminating lines */ if (len) { char *cstr = Char(str); if (cstr[len - 1] != '\n') { Append(str, "\n"); } } return str; } /* ----------------------------------------------------------------------------- * Swig_include() * * Opens a file and returns it as a string. * ----------------------------------------------------------------------------- */ static String *Swig_include_any(const_String_or_char_ptr name, int sysfile) { FILE *f; String *str; String *file; f = Swig_open_file(name, sysfile, 1); if (!f) return 0; str = Swig_read_file(f); fclose(f); Seek(str, 0, SEEK_SET); file = Copy(Swig_last_file()); Setfile(str, file); Delete(file); Setline(str, 1); return str; } String *Swig_include(const_String_or_char_ptr name) { return Swig_include_any(name, 0); } String *Swig_include_sys(const_String_or_char_ptr name) { return Swig_include_any(name, 1); } /* ----------------------------------------------------------------------------- * Swig_insert_file() * * Copies the contents of a file into another file * ----------------------------------------------------------------------------- */ int Swig_insert_file(const_String_or_char_ptr filename, File *outfile) { char buffer[4096]; int nbytes; FILE *f = Swig_include_open(filename); if (!f) return -1; while ((nbytes = Read(f, buffer, 4096)) > 0) { Write(outfile, buffer, nbytes); } return 0; } /* ----------------------------------------------------------------------------- * Swig_register_filebyname() * * Register a "named" file with the core. Named files can become targets * for %insert directives and other SWIG operations. This function takes * the place of the f_header, f_wrapper, f_init, and other global variables * in SWIG1.1 * ----------------------------------------------------------------------------- */ static Hash *named_files = 0; void Swig_register_filebyname(const_String_or_char_ptr filename, File *outfile) { if (!named_files) named_files = NewHash(); Setattr(named_files, filename, outfile); } /* ----------------------------------------------------------------------------- * Swig_filebyname() * * Get a named file * ----------------------------------------------------------------------------- */ File *Swig_filebyname(const_String_or_char_ptr filename) { if (!named_files) return 0; return Getattr(named_files, filename); } /* ----------------------------------------------------------------------------- * Swig_file_extension() * * Returns the extension of a file * ----------------------------------------------------------------------------- */ String *Swig_file_extension(const_String_or_char_ptr filename) { String *name = Swig_file_filename(filename); const char *c = strrchr(Char(name), '.'); String *extension = c ? NewString(c) : NewString(""); Delete(name); return extension; } /* ----------------------------------------------------------------------------- * Swig_file_basename() * * Returns the filename with the extension removed. * ----------------------------------------------------------------------------- */ String *Swig_file_basename(const_String_or_char_ptr filename) { String *extension = Swig_file_extension(filename); String *basename = NewStringWithSize(filename, Len(filename) - Len(extension)); Delete(extension); return basename; } /* ----------------------------------------------------------------------------- * Swig_file_filename() * * Return the file name with any leading path stripped off * ----------------------------------------------------------------------------- */ String *Swig_file_filename(const_String_or_char_ptr filename) { const char *delim = SWIG_FILE_DELIMITER; const char *c = strrchr(Char(filename), *delim); return c ? NewString(c + 1) : NewString(filename); } /* ----------------------------------------------------------------------------- * Swig_file_dirname() * * Return the name of the directory associated with a file * ----------------------------------------------------------------------------- */ String *Swig_file_dirname(const_String_or_char_ptr filename) { const char *delim = SWIG_FILE_DELIMITER; const char *c = strrchr(Char(filename), *delim); return c ? NewStringWithSize(filename, (int)(c - Char(filename) + 1)) : NewString(""); } /* * Swig_file_debug() */ void Swig_file_debug_set() { file_debug = 1; }
29.839895
95
0.522385
08232d8d5f23c5ab514bf3feb3c00920ac21b97a
2,746
h
C
src/Win32_Interop/Win32_APIs.h
jiangyoubanfan/redis
c59c9365be41e8936fef00af5b1b149ab91b70ba
[ "BSD-3-Clause" ]
7,399
2017-07-06T23:59:50.000Z
2019-05-13T14:11:55.000Z
src/Win32_Interop/Win32_APIs.h
zengshijun/redis
10a978f7b4b52166724e7f00e5c9ac5a12aba3e1
[ "BSD-3-Clause" ]
353
2015-01-07T18:27:31.000Z
2017-06-27T00:01:56.000Z
src/Win32_Interop/Win32_APIs.h
zengshijun/redis
10a978f7b4b52166724e7f00e5c9ac5a12aba3e1
[ "BSD-3-Clause" ]
2,319
2019-05-14T07:41:46.000Z
2022-03-31T02:08:02.000Z
/* * Copyright (c), Microsoft Open Technologies, Inc. * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * - Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef WIN32_INTEROP_APIS_H #define WIN32_INTEROP_APIS_H #include "Win32_types.h" #include <Windows.h> #include <stdio.h> // for rename // API replacement for non-fd stdio functions #define fseeko _fseeki64 #define ftello _ftelli64 #define snprintf _snprintf #define strcasecmp _stricmp #define strtoll _strtoi64 #ifdef _WIN64 #define strtol _strtoi64 #define strtoul _strtoui64 #endif #define sleep(x) Sleep((x)*1000) /* Redis calls usleep(1) to give thread some time. * Sleep(0) should do the same on Windows. * In other cases, usleep is called with millisec resolution * which can be directly translated to WinAPI Sleep() */ #undef usleep #define usleep(x) (x == 1) ? Sleep(0) : Sleep((int)((x)/1000)) /* following defined to choose little endian byte order */ #define __i386__ 1 #if !defined(va_copy) #define va_copy(d,s) d = (s) #endif #ifndef __RTL_GENRANDOM #define __RTL_GENRANDOM 1 typedef BOOLEAN(_stdcall* RtlGenRandomFunc)(void * RandomBuffer, ULONG RandomBufferLength); #endif RtlGenRandomFunc RtlGenRandom; #define random() replace_random() #define rand() replace_random() #define srandom srand int replace_random(); #define rename(a,b) replace_rename(a,b) int replace_rename(const char *src, const char *dest); int truncate(const char *path, PORT_LONGLONG length); #define lseek lseek64 #endif
36.613333
91
0.756373
0823474b0d60257ae3503a4c575d8a0afddf9fad
1,345
c
C
libft/src/ft_add_to_str.c
guyb27/philosophers
f92530ff1c982b05a4f0f44ba5a70698c097ffcd
[ "MIT" ]
null
null
null
libft/src/ft_add_to_str.c
guyb27/philosophers
f92530ff1c982b05a4f0f44ba5a70698c097ffcd
[ "MIT" ]
null
null
null
libft/src/ft_add_to_str.c
guyb27/philosophers
f92530ff1c982b05a4f0f44ba5a70698c097ffcd
[ "MIT" ]
null
null
null
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_add_to_str.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: gmadec <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/29 12:44:13 by gmadec #+# #+# */ /* Updated: 2020/02/29 12:44:13 by gmadec ### ########lyon.fr */ /* */ /* ************************************************************************** */ #include "../include/libft.h" int ft_add_to_str(char **str, char c, int index) { char *tmp; int i; int j; i = 0; j = 0; if (!(tmp = (char*)malloc(sizeof(char) * ((*str ? ft_strlen(*str) : 0) + 2)))) return (1); while (*str && (*str)[i] && i < index) tmp[j++] = (*str)[i++]; tmp[j++] = c; while (*str && (*str)[i]) tmp[j++] = (*str)[i++]; tmp[j] = '\0'; ft_strdel(str); *str = ft_strdup(tmp); ft_strdel(&tmp); return (0); }
36.351351
80
0.239405
0823bcea59aed8f9780a36d39a1ed9b8cdb2f033
605
h
C
OpenGL-Sandbox/src/grid/Node.h
cshreyastech/OpenGL
5d6dcce4a0fa210318fb70892423f5646c4bba98
[ "Apache-2.0" ]
null
null
null
OpenGL-Sandbox/src/grid/Node.h
cshreyastech/OpenGL
5d6dcce4a0fa210318fb70892423f5646c4bba98
[ "Apache-2.0" ]
null
null
null
OpenGL-Sandbox/src/grid/Node.h
cshreyastech/OpenGL
5d6dcce4a0fa210318fb70892423f5646c4bba98
[ "Apache-2.0" ]
null
null
null
#pragma once #include <glm/glm.hpp> #include <GLCore.h> #include <glad\glad.h> /* D N C E W A S B */ // A -> B -> C -> D /* This cannot be a public class as any external class can * runin the grid. Continuing with this implementation for * now for simplicity. Needs restructuring */ class Node { public: glm::vec3 edgePositions[4]; //position of each corner of the grid in world space float surfaceVal[4]; //value of the function at this grid corner int cellID; Node* left = nullptr; Node* right = nullptr; Node* above = nullptr; Node* below = nullptr; };
20.862069
84
0.649587
0825ef3a2068da10e236fe74ea9fe909c88dc4c5
2,514
h
C
3rdparty/meshlab-master/src/plugins_experimental/edit_CADtexturing/CADtexturingControl.h
HoEmpire/slambook2
96d360f32aa5d8b5c5dcbbf9ee7ba865e84409f4
[ "MIT" ]
null
null
null
3rdparty/meshlab-master/src/plugins_experimental/edit_CADtexturing/CADtexturingControl.h
HoEmpire/slambook2
96d360f32aa5d8b5c5dcbbf9ee7ba865e84409f4
[ "MIT" ]
null
null
null
3rdparty/meshlab-master/src/plugins_experimental/edit_CADtexturing/CADtexturingControl.h
HoEmpire/slambook2
96d360f32aa5d8b5c5dcbbf9ee7ba865e84409f4
[ "MIT" ]
null
null
null
/**************************************************************************** * MeshLab o o * * A versatile mesh processing toolbox o o * * _ O _ * * Copyright(C) 2005 \/)\/ * * Visual Computing Lab /\/| * * ISTI - Italian National Research Council | * * \ * * All rights reserved. * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License (http://www.gnu.org/licenses/gpl.txt) * * for more details. * * * ****************************************************************************/ #ifndef CADTEXTURINGCONTROL_H_ #define CADTEXTURINGCONTROL_H_ #include <vector> #include <vcg/math/base.h> #include <GL/glew.h> #include <QHash> #include <QUndoStack> #include <QUndoGroup> #include <QFileDialog> #include <ui_CADtexturingControl.h> /** * This class manages the user interface and is concerned * with emitting appropriate signals. It should not be * concerned with the application logic in any way. */ class CADtexturingControl : public QDockWidget, private Ui::CADtexturingControl { Q_OBJECT private: public: CADtexturingControl(QWidget * parent = 0, Qt::WindowFlags flags = 0); signals: void saverenderingClicked(); void renderedgesChanged(int); public slots : void on_saverendering(); void on_renderedgesChanged(int); }; #endif
38.090909
79
0.447494
082666518890f7951fdad0ef0cefed625dd7d2d2
12,995
h
C
geo3d/include/CGAL/Nef_3/Vertex.h
vipuserr/vipuserr-Geological-hazard
2b29c03cdac6f5e1ceac4cd2f15b594040ef909c
[ "MIT" ]
187
2019-01-23T04:07:11.000Z
2022-03-27T03:44:58.000Z
ext/libigl/external/cgal/src/CGAL_Project/include/CGAL/Nef_3/Vertex.h
xiaoxie5002/OptCuts
1f4168fc867f47face85fcfa3a572be98232786f
[ "MIT" ]
8
2019-03-22T13:27:38.000Z
2020-06-18T13:23:23.000Z
ext/libigl/external/cgal/src/CGAL_Project/include/CGAL/Nef_3/Vertex.h
xiaoxie5002/OptCuts
1f4168fc867f47face85fcfa3a572be98232786f
[ "MIT" ]
34
2019-02-13T01:11:12.000Z
2022-02-28T03:29:40.000Z
// Copyright (c) 1997-2002 Max-Planck-Institute Saarbruecken (Germany). // All rights reserved. // // This file is part of CGAL (www.cgal.org). // You can redistribute it and/or modify it under the terms of the GNU // General Public License as published by the Free Software Foundation, // either version 3 of the License, or (at your option) any later version. // // Licensees holding a valid commercial license may use this file in // accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // // $URL$ // $Id$ // // // Author(s) : Michael Seel <[email protected]> // Miguel Granados <[email protected]> // Susan Hert <[email protected]> // Lutz Kettner <[email protected]> // Peter Hachenberger <[email protected]> #ifndef CGAL_NEF_VERTEX_H #define CGAL_NEF_VERTEX_H #include <CGAL/license/Nef_3.h> #include <string> #include <sstream> #include <CGAL/IO/io.h> #include <CGAL/IO/Verbose_ostream.h> #include <CGAL/Nef_3/SNC_iteration.h> #undef CGAL_NEF_DEBUG #define CGAL_NEF_DEBUG 83 #include <CGAL/Nef_2/debug.h> #ifndef CGAL_I_DO_WANT_TO_USE_GENINFO #include <boost/any.hpp> #endif namespace CGAL { template<class Refs> class Vertex_base { #ifdef CGAL_I_DO_WANT_TO_USE_GENINFO typedef void* GenPtr; #else typedef boost::any GenPtr; #endif typedef typename Refs::Mark Mark; typedef typename Refs::Point_3 Point_3; typedef typename Refs::Vertex_handle Vertex_handle; typedef typename Refs::SHalfloop_handle SHalfloop_handle; typedef typename Refs::Vertex_iterator Vertex_iterator; typedef typename Refs::SVertex_iterator SVertex_iterator; typedef typename Refs::SHalfedge_iterator SHalfedge_iterator; typedef typename Refs::SHalfloop_iterator SHalfloop_iterator; typedef typename Refs::SFace_iterator SFace_iterator; typedef typename Refs::Vertex_const_iterator Vertex_const_iterator; typedef typename Refs::SVertex_const_iterator SVertex_const_iterator; typedef typename Refs::SHalfedge_const_iterator SHalfedge_const_iterator; typedef typename Refs::SFace_const_iterator SFace_const_iterator; typedef typename Refs::SHalfloop_const_handle SHalfloop_const_handle; typedef typename Refs::Size_type Size_type; Point_3 point_at_center_; Mark mark_; // local view (surface graph): public: Refs* sncp_; SVertex_iterator svertices_begin_, svertices_last_; SHalfedge_iterator shalfedges_begin_, shalfedges_last_; SFace_iterator sfaces_begin_, sfaces_last_; SHalfloop_iterator shalfloop_; GenPtr info_; public: Vertex_base() : point_at_center_(), mark_(), sncp_(), svertices_begin_(), svertices_last_(), shalfedges_begin_(), shalfedges_last_(), sfaces_begin_(), sfaces_last_(), shalfloop_(), info_() // , sm_(Vertex_handle((SNC_in_place_list_vertex<Vertex_base>*) this)) {} Vertex_base(const Point_3& p, Mark m) : point_at_center_(p), mark_(m), sncp_(), svertices_begin_(), svertices_last_(), shalfedges_begin_(), shalfedges_last_(), sfaces_begin_(), sfaces_last_(), shalfloop_(), info_() // , sm_(Vertex_handle((SNC_in_place_list_vertex<Vertex_base>*) this)) {} Vertex_base(const Vertex_base<Refs>& v) // : sm_(Vertex_handle((SNC_in_place_list_vertex<Vertex_base>*)this)) { point_at_center_ = v.point_at_center_; mark_ = v.mark_; sncp_ = v.sncp_; svertices_begin_ = v.svertices_begin_; svertices_last_ = v.svertices_last_; shalfedges_begin_ = v.shalfedges_begin_; shalfedges_last_ = v.shalfedges_last_; sfaces_begin_ = v.sfaces_begin_; sfaces_last_ = v.sfaces_last_; shalfloop_ = v.shalfloop_; info_ = 0; } Vertex_base<Refs>& operator=(const Vertex_base<Refs>& v) { if (this == &v) return *this; point_at_center_ = v.point_at_center_; mark_ = v.mark_; sncp_ = v.sncp_; svertices_begin_ = v.svertices_begin_; svertices_last_ = v.svertices_last_; shalfedges_begin_ = v.shalfedges_begin_; shalfedges_last_ = v.shalfedges_last_; sfaces_begin_ = v.sfaces_begin_; sfaces_last_ = v.sfaces_last_; shalfloop_ = v.shalfloop_; return *this; } Refs* sncp() const { return sncp_; } Refs*& sncp() { return sncp_; } /* all sobjects of the local graph are stored in a global list where each vertex has a continous range in each list for its sobjects. All objects of the range [sxxx_begin_,sxxx_last_] belong to a vertex. This range is empty iff sxxx_begin_ == sxxx_last_ == sncp()->sxxx_end() ( the latter being the standard end iterator of the corresponding list ) for the past the end iterator we have to increment sxxx_last_ once iff the range is non-empty. */ void init_range(SVertex_iterator it) { svertices_begin_ = svertices_last_ = it; } void init_range(SHalfedge_iterator it) { shalfedges_begin_ = shalfedges_last_ = it; } void init_range(SFace_iterator it) { sfaces_begin_ = sfaces_last_ = it; } SVertex_iterator& svertices_begin() { return svertices_begin_; } SVertex_iterator& svertices_last() { return svertices_last_; } SVertex_iterator svertices_end() { if ( svertices_last_ == sncp()->svertices_end() ) return svertices_last_; else return ++SVertex_iterator(svertices_last_); } SHalfedge_iterator& shalfedges_begin() { return shalfedges_begin_; } SHalfedge_iterator& shalfedges_last() { return shalfedges_last_; } SHalfedge_iterator shalfedges_end() { if ( shalfedges_last_ == sncp()->shalfedges_end() ) return shalfedges_last_; else return ++SHalfedge_iterator(shalfedges_last_); } SFace_iterator& sfaces_begin() { return sfaces_begin_; } SFace_iterator& sfaces_last() { return sfaces_last_; } SFace_iterator sfaces_end() { if ( sfaces_last_ == sncp()->sfaces_end() ) return sfaces_last_; else return ++SFace_iterator(sfaces_last_); } SVertex_const_iterator svertices_begin() const { return svertices_begin_; } SVertex_const_iterator svertices_last() const { return svertices_last_; } SVertex_const_iterator svertices_end() const { if ( svertices_last_ == sncp()->svertices_end() ) return svertices_last_; else return ++SVertex_const_iterator(svertices_last_); } SHalfedge_const_iterator shalfedges_begin() const { return shalfedges_begin_; } SHalfedge_const_iterator shalfedges_last() const { return shalfedges_last_; } SHalfedge_const_iterator shalfedges_end() const { if ( shalfedges_last_ == sncp()->shalfedges_end() ) return shalfedges_last_; else return ++SHalfedge_const_iterator(shalfedges_last_); } SFace_const_iterator sfaces_begin() const { return sfaces_begin_; } SFace_const_iterator sfaces_last() const { return sfaces_last_; } SFace_const_iterator sfaces_end() const { if ( sfaces_last_ == sncp()->sfaces_end() ) return sfaces_last_; else return ++SFace_const_iterator(sfaces_last_); } SHalfloop_handle& shalfloop() { return shalfloop_; } SHalfloop_handle shalfloop() const { return shalfloop_; } bool has_shalfloop() const { return shalfloop_ != sncp()->shalfloops_end(); } Size_type number_of_svertices() const /*{\Mop returns the number of vertices.}*/ { Size_type n(0); SVertex_const_iterator vit; CGAL_forall_svertices(vit, *this) ++n; return n; } Size_type number_of_shalfedges() const /*{\Mop returns the number of halfedges.}*/ { Size_type n(0); SHalfedge_const_iterator eit; CGAL_forall_shalfedges(eit, *this) ++n; return n;} Size_type number_of_sedges() const /*{\Mop returns the number of edges.}*/ { return number_of_shalfedges()/2; } Size_type number_of_shalfloops() const /*{\Mop returns the number of halfloops.}*/ { return ( has_shalfloop() ? 2 : 0); } Size_type number_of_sloops() const /*{\Mop returns the number of loops.}*/ { return number_of_shalfloops()/2; } Size_type number_of_sfaces() const /*{\Mop returns the number of faces.}*/ { Size_type n(0); SFace_const_iterator fit; CGAL_forall_sfaces(fit, *this) ++n; return n; } /*{\Xtext Vertices provide access to their local graphs via the iterator ranges: \begin{Mverb} SVertex_iterator svertices_begin()/svertices_end() SHalfedge_iterator shalfedges_begin()/shalfedges_end() SFace_iterator sfaces_begin()/sfaces_end() SHalfloop_handle shalfloop() \end{Mverb} }*/ void clear() /*{\Xop clears the local graph.}*/ { SFace_iterator fit = sfaces_begin(), fend = sfaces_end(); while (fit != fend) { SFace_iterator fdel = fit++; /* TO VERIFY: next statement needs access to a private attribute */ sncp()->reset_sm_object_list(fdel->boundary_entry_objects_); sncp()->delete_sface_only(fdel); } sfaces_begin_ = sfaces_last_ = sncp()->sfaces_end(); if ( shalfloop() != sncp()->shalfloops_end() ) { sncp()->delete_shalfloop_only(shalfloop_->twin()); sncp()->delete_shalfloop_only(shalfloop_); shalfloop_ = sncp()->shalfloops_end(); } SHalfedge_iterator eit = shalfedges_begin(), eend = shalfedges_end(); while (eit != eend) { SHalfedge_iterator edel = eit++; sncp()->delete_shalfedge_only(edel); } shalfedges_begin_ = shalfedges_last_ = sncp()->shalfedges_end(); SVertex_iterator vit = svertices_begin(), vend = svertices_end(); while (vit != vend) { SVertex_iterator vdel = vit++; sncp()->delete_halfedge_only(vdel); } svertices_begin_ = svertices_last_ = sncp()->halfedges_end(); } Point_3& point() { return point_at_center_; } const Point_3& point() const { return point_at_center_; } Mark& mark() { return mark_; } const Mark& mark() const { return mark_;} GenPtr& info() { return info_; } const GenPtr& info() const { return info_; } ~Vertex_base() { CGAL_NEF_TRACEN(" destroying Vertex item "<<&*this); } public: std::string debug() const { std::stringstream os; set_pretty_mode(os); os<<"{ addr, point, mark, snc, svb, sve, seb, see, sfb, sfe, sl," <<" info }"<<std::endl; os<<"{ "<<this<<", "<<point_at_center_<<", "<<mark_<<", "<<&*sncp_<<", " <<&*svertices_begin_ <<", "<<&*svertices_last_ <<", " <<&*shalfedges_begin_<<", "<<&*shalfedges_last_<<", " <<&*sfaces_begin_ <<", "<<&*sfaces_last_ <<", " <<&*shalfloop_ <<", " <<info_<<" }"; return os.str(); } bool check_basic_functions() { /* if(svertices_begin_ == sncp()->svertices_end()) CGAL_assertion(svertices_end() == sncp()->svertices_end()); if(shalfedges_begin_ == sncp()->shalfedges_end()) CGAL_assertion(shalfedges_end() == sncp()->shalfedges_end()); if(sfaces_begin_ == sncp()->sfaces_end()) CGAL_assertion(sfaces_end() == sncp()->sfaces_end()); */ return true; } bool is_valid( bool verb = false, int level = 0) const { Verbose_ostream verr(verb); verr << "begin CGAL::SNC_items<...>::Vertex_base::is_valid( verb=true, " "level = " << level << "):" << std::endl; bool valid = (sncp_ != NULL); valid = valid && (svertices_begin_ != NULL && svertices_begin_ != SVertex_iterator()); valid = valid && (svertices_last_ != NULL && svertices_last_ != SVertex_iterator()); valid = valid && (shalfedges_begin_ != NULL && shalfedges_begin_ != SHalfedge_iterator()); valid = valid && (shalfedges_last_ != NULL && shalfedges_last_ != SHalfedge_iterator()); valid = valid && (sfaces_begin_ != NULL && sfaces_begin_ != SFace_iterator()); valid = valid && (sfaces_last_ != NULL && sfaces_last_ != SFace_iterator()); valid = valid && (shalfloop_ != NULL && shalfloop_ != SHalfloop_iterator()); if(shalfedges_begin_ == sncp()->shalfedges_end()) { // point in volume or on plane, which is either isolated or has one outgoing edge if(shalfloop_ != sncp()->shalfloops_end()) valid = valid && (++SFace_const_iterator(sfaces_begin_) == sfaces_last_); else valid = valid && (sfaces_begin_ == sfaces_last_); } valid = valid && (sfaces_begin_ != sncp()->sfaces_end()); if(sfaces_begin_ == sfaces_last_) { valid = valid && (shalfloop_ == sncp()->shalfloops_end()); } else valid = valid && (sfaces_begin_->sface_cycles_begin() != sfaces_begin_->sface_cycles_end()); verr << "end of CGAL::SNC_items<...>::Vertex_base::is_valid(): structure is " << ( valid ? "valid." : "NOT VALID.") << std::endl; return valid; } }; // Vertex_base } //namespace CGAL #endif // CGAL_NEF_VERTEX_H
34.287599
142
0.679723
08285e42ba5c941e0b59e51b8922e0dac8689340
28,146
c
C
src/vnet/sctp/sctp.c
pogobanane/vpp-fork
fccc95ae06e98a1605c4600b1e441811b67abfa8
[ "Apache-2.0" ]
2
2019-04-03T10:09:09.000Z
2020-09-23T08:56:24.000Z
src/vnet/sctp/sctp.c
fantastic2085/vpp
c599c6f001bc28e1023fb5e74a27db37b1aae847
[ "Apache-2.0" ]
2
2021-03-20T05:38:00.000Z
2021-06-02T03:49:49.000Z
src/vnet/sctp/sctp.c
fantastic2085/vpp
c599c6f001bc28e1023fb5e74a27db37b1aae847
[ "Apache-2.0" ]
1
2019-03-11T19:28:31.000Z
2019-03-11T19:28:31.000Z
/* * Copyright (c) 2017 SUSE LLC. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <vnet/sctp/sctp.h> #include <vnet/sctp/sctp_debug.h> sctp_main_t sctp_main; static u32 sctp_connection_bind (u32 session_index, transport_endpoint_t * tep) { sctp_main_t *tm = &sctp_main; sctp_connection_t *listener; void *iface_ip; u32 mtu = 1460; pool_get (tm->listener_pool, listener); clib_memset (listener, 0, sizeof (*listener)); listener->sub_conn[SCTP_PRIMARY_PATH_IDX].subconn_idx = SCTP_PRIMARY_PATH_IDX; listener->sub_conn[SCTP_PRIMARY_PATH_IDX].c_c_index = listener - tm->listener_pool; listener->sub_conn[SCTP_PRIMARY_PATH_IDX].connection.lcl_port = tep->port; /* If we are provided a sw_if_index, bind using one of its IPs */ if (ip_is_zero (&tep->ip, 1) && tep->sw_if_index != ENDPOINT_INVALID_INDEX) { if ((iface_ip = ip_interface_get_first_ip (tep->sw_if_index, tep->is_ip4))) ip_set (&tep->ip, iface_ip, tep->is_ip4); } ip_copy (&listener->sub_conn[SCTP_PRIMARY_PATH_IDX].connection.lcl_ip, &tep->ip, tep->is_ip4); if (tep->sw_if_index != ENDPOINT_INVALID_INDEX) mtu = tep->is_ip4 ? vnet_sw_interface_get_mtu (vnet_get_main (), tep->sw_if_index, VNET_MTU_IP4) : vnet_sw_interface_get_mtu (vnet_get_main (), tep->sw_if_index, VNET_MTU_IP6); listener->sub_conn[SCTP_PRIMARY_PATH_IDX].PMTU = mtu; listener->sub_conn[SCTP_PRIMARY_PATH_IDX].connection.is_ip4 = tep->is_ip4; listener->sub_conn[SCTP_PRIMARY_PATH_IDX].connection.proto = TRANSPORT_PROTO_SCTP; listener->sub_conn[SCTP_PRIMARY_PATH_IDX].c_s_index = session_index; listener->sub_conn[SCTP_PRIMARY_PATH_IDX].connection.fib_index = tep->fib_index; listener->state = SCTP_STATE_CLOSED; sctp_connection_timers_init (listener); return listener->sub_conn[SCTP_PRIMARY_PATH_IDX].c_c_index; } u32 sctp_session_bind (u32 session_index, transport_endpoint_t * tep) { return sctp_connection_bind (session_index, tep); } static void sctp_connection_unbind (u32 listener_index) { sctp_main_t *tm = vnet_get_sctp_main (); sctp_connection_t *sctp_conn; sctp_conn = pool_elt_at_index (tm->listener_pool, listener_index); /* Poison the entry */ if (CLIB_DEBUG > 0) clib_memset (sctp_conn, 0xFA, sizeof (*sctp_conn)); pool_put_index (tm->listener_pool, listener_index); } u32 sctp_session_unbind (u32 listener_index) { sctp_connection_unbind (listener_index); return 0; } void sctp_punt_unknown (vlib_main_t * vm, u8 is_ip4, u8 is_add) { sctp_main_t *tm = &sctp_main; if (is_ip4) tm->punt_unknown4 = is_add; else tm->punt_unknown6 = is_add; } static int sctp_alloc_custom_local_endpoint (sctp_main_t * tm, ip46_address_t * lcl_addr, u16 * lcl_port, u8 is_ip4) { int index, port; if (is_ip4) { index = tm->last_v4_address_rotor++; if (tm->last_v4_address_rotor >= vec_len (tm->ip4_src_addresses)) tm->last_v4_address_rotor = 0; lcl_addr->ip4.as_u32 = tm->ip4_src_addresses[index].as_u32; } else { index = tm->last_v6_address_rotor++; if (tm->last_v6_address_rotor >= vec_len (tm->ip6_src_addresses)) tm->last_v6_address_rotor = 0; clib_memcpy (&lcl_addr->ip6, &tm->ip6_src_addresses[index], sizeof (ip6_address_t)); } port = transport_alloc_local_port (TRANSPORT_PROTO_SCTP, lcl_addr); if (port < 1) { clib_warning ("Failed to allocate src port"); return -1; } *lcl_port = port; return 0; } /** * Initialize all connection timers as invalid */ void sctp_connection_timers_init (sctp_connection_t * sctp_conn) { int i, j; /* Set all to invalid */ for (i = 0; i < MAX_SCTP_CONNECTIONS; i++) { sctp_conn->sub_conn[i].RTO = SCTP_RTO_INIT; for (j = 0; j < SCTP_N_TIMERS; j++) { sctp_conn->sub_conn[i].timers[j] = SCTP_TIMER_HANDLE_INVALID; } } } /** * Stop all connection timers */ void sctp_connection_timers_reset (sctp_connection_t * sctp_conn) { int i, j; for (i = 0; i < MAX_SCTP_CONNECTIONS; i++) { for (j = 0; j < SCTP_N_TIMERS; j++) sctp_timer_reset (sctp_conn, i, j); } } const char *sctp_fsm_states[] = { #define _(sym, str) str, foreach_sctp_fsm_state #undef _ }; u8 * format_sctp_state (u8 * s, va_list * args) { u32 state = va_arg (*args, u32); if (state < SCTP_N_STATES) s = format (s, "%s", sctp_fsm_states[state]); else s = format (s, "UNKNOWN (%d (0x%x))", state, state); return s; } u8 * format_sctp_connection_id (u8 * s, va_list * args) { sctp_connection_t *sctp_conn = va_arg (*args, sctp_connection_t *); if (!sctp_conn) return s; u8 i; for (i = 0; i < MAX_SCTP_CONNECTIONS; i++) { if (i > 0 && sctp_conn->sub_conn[i].state == SCTP_SUBCONN_STATE_DOWN) continue; if (sctp_conn->sub_conn[i].connection.is_ip4) { s = format (s, "[#%d][%s] %U:%d->%U:%d", sctp_conn->sub_conn[i].connection.thread_index, "S", format_ip4_address, &sctp_conn->sub_conn[i].connection.lcl_ip.ip4, clib_net_to_host_u16 (sctp_conn->sub_conn[i]. connection.lcl_port), format_ip4_address, &sctp_conn->sub_conn[i].connection.rmt_ip.ip4, clib_net_to_host_u16 (sctp_conn->sub_conn[i]. connection.rmt_port)); } else { s = format (s, "[#%d][%s] %U:%d->%U:%d", sctp_conn->sub_conn[i].connection.thread_index, "S", format_ip6_address, &sctp_conn->sub_conn[i].connection.lcl_ip.ip6, clib_net_to_host_u16 (sctp_conn->sub_conn[i]. connection.lcl_port), format_ip6_address, &sctp_conn->sub_conn[i].connection.rmt_ip.ip6, clib_net_to_host_u16 (sctp_conn->sub_conn[i]. connection.rmt_port)); } } return s; } u8 * format_sctp_connection (u8 * s, va_list * args) { sctp_connection_t *sctp_conn = va_arg (*args, sctp_connection_t *); u32 verbose = va_arg (*args, u32); if (!sctp_conn) return s; s = format (s, "%-50U", format_sctp_connection_id, sctp_conn); if (verbose) { s = format (s, "%-15U", format_sctp_state, sctp_conn->state); if (verbose > 1) s = format (s, "\n"); } return s; } /** * Initialize connection send variables. */ void sctp_init_snd_vars (sctp_connection_t * sctp_conn) { u32 time_now; /* * We use the time to randomize iss and for setting up the initial * timestamp. Make sure it's updated otherwise syn and ack in the * handshake may make it look as if time has flown in the opposite * direction for us. */ sctp_set_time_now (vlib_get_thread_index ()); time_now = sctp_time_now (); sctp_conn->local_initial_tsn = random_u32 (&time_now); sctp_conn->last_unacked_tsn = sctp_conn->local_initial_tsn; sctp_conn->next_tsn = sctp_conn->local_initial_tsn + 1; sctp_conn->remote_initial_tsn = 0x0; sctp_conn->last_rcvd_tsn = sctp_conn->remote_initial_tsn; } always_inline sctp_connection_t * sctp_sub_connection_add (u8 thread_index) { sctp_main_t *tm = vnet_get_sctp_main (); sctp_connection_t *sctp_conn = tm->connections[thread_index]; u8 subconn_idx = sctp_next_avail_subconn (sctp_conn); ASSERT (subconn_idx < MAX_SCTP_CONNECTIONS); sctp_conn->sub_conn[subconn_idx].connection.c_index = sctp_conn->sub_conn[SCTP_PRIMARY_PATH_IDX].connection.c_index; sctp_conn->sub_conn[subconn_idx].connection.thread_index = thread_index; sctp_conn->sub_conn[subconn_idx].subconn_idx = subconn_idx; return sctp_conn; } u8 sctp_sub_connection_add_ip4 (vlib_main_t * vm, ip4_address_t * lcl_addr, ip4_address_t * rmt_addr) { sctp_connection_t *sctp_conn = sctp_sub_connection_add (vm->thread_index); u8 subconn_idx = sctp_next_avail_subconn (sctp_conn); if (subconn_idx == MAX_SCTP_CONNECTIONS) return SCTP_ERROR_MAX_CONNECTIONS; clib_memcpy (&sctp_conn->sub_conn[subconn_idx].connection.lcl_ip, &lcl_addr, sizeof (lcl_addr)); clib_memcpy (&sctp_conn->sub_conn[subconn_idx].connection.rmt_ip, &rmt_addr, sizeof (rmt_addr)); sctp_conn->forming_association_changed = 1; return SCTP_ERROR_NONE; } u8 sctp_sub_connection_del_ip4 (ip4_address_t * lcl_addr, ip4_address_t * rmt_addr) { sctp_main_t *sctp_main = vnet_get_sctp_main (); u32 thread_idx = vlib_get_thread_index (); u8 i; ASSERT (thread_idx == 0); for (i = 0; i < MAX_SCTP_CONNECTIONS; i++) { sctp_connection_t *sctp_conn = sctp_main->connections[thread_idx]; sctp_sub_connection_t *sub_conn = &sctp_main->connections[thread_idx]->sub_conn[i]; ip46_address_t *lcl_ip = &sctp_main->connections[thread_idx]->sub_conn[i].connection.lcl_ip; ip46_address_t *rmt_ip = &sctp_main->connections[thread_idx]->sub_conn[i].connection.rmt_ip; if (!sub_conn->connection.is_ip4) continue; if (lcl_ip->ip4.as_u32 == lcl_addr->as_u32 && rmt_ip->ip4.as_u32 == rmt_addr->as_u32) { sub_conn->state = SCTP_SUBCONN_STATE_DOWN; sctp_conn->forming_association_changed = 1; break; } } return SCTP_ERROR_NONE; } u8 sctp_sub_connection_add_ip6 (vlib_main_t * vm, ip6_address_t * lcl_addr, ip6_address_t * rmt_addr) { sctp_connection_t *sctp_conn = sctp_sub_connection_add (vm->thread_index); u8 subconn_idx = sctp_next_avail_subconn (sctp_conn); if (subconn_idx == MAX_SCTP_CONNECTIONS) return SCTP_ERROR_MAX_CONNECTIONS; clib_memcpy (&sctp_conn->sub_conn[subconn_idx].connection.lcl_ip, &lcl_addr, sizeof (lcl_addr)); clib_memcpy (&sctp_conn->sub_conn[subconn_idx].connection.rmt_ip, &rmt_addr, sizeof (rmt_addr)); sctp_conn->forming_association_changed = 1; return SCTP_ERROR_NONE; } u8 sctp_sub_connection_del_ip6 (ip6_address_t * lcl_addr, ip6_address_t * rmt_addr) { sctp_main_t *sctp_main = vnet_get_sctp_main (); u32 thread_idx = vlib_get_thread_index (); u8 i; ASSERT (thread_idx == 0); for (i = 0; i < MAX_SCTP_CONNECTIONS; i++) { sctp_connection_t *sctp_conn = sctp_main->connections[thread_idx]; sctp_sub_connection_t *sub_conn = &sctp_main->connections[thread_idx]->sub_conn[i]; ip46_address_t *lcl_ip = &sctp_main->connections[thread_idx]->sub_conn[i].connection.lcl_ip; ip46_address_t *rmt_ip = &sctp_main->connections[thread_idx]->sub_conn[i].connection.rmt_ip; if (!sub_conn->connection.is_ip4) continue; if ((lcl_ip->ip6.as_u64[0] == lcl_addr->as_u64[0] && lcl_ip->ip6.as_u64[1] == lcl_addr->as_u64[1]) && (rmt_ip->ip6.as_u64[0] == rmt_addr->as_u64[0] && rmt_ip->ip6.as_u64[1] == rmt_addr->as_u64[1])) { sub_conn->state = SCTP_SUBCONN_STATE_DOWN; sctp_conn->forming_association_changed = 1; break; } } return SCTP_ERROR_NONE; } u8 sctp_configure (sctp_user_configuration_t config) { sctp_main_t *sctp_main = vnet_get_sctp_main (); u32 thread_idx = vlib_get_thread_index (); sctp_main->connections[thread_idx]->conn_config.never_delay_sack = config.never_delay_sack; sctp_main->connections[thread_idx]->conn_config.never_bundle = config.never_bundle; return 0; } sctp_connection_t * sctp_connection_new (u8 thread_index) { sctp_main_t *sctp_main = vnet_get_sctp_main (); sctp_connection_t *sctp_conn; pool_get (sctp_main->connections[thread_index], sctp_conn); clib_memset (sctp_conn, 0, sizeof (*sctp_conn)); sctp_conn->sub_conn[SCTP_PRIMARY_PATH_IDX].subconn_idx = SCTP_PRIMARY_PATH_IDX; sctp_conn->sub_conn[SCTP_PRIMARY_PATH_IDX].c_c_index = sctp_conn - sctp_main->connections[thread_index]; sctp_conn->sub_conn[SCTP_PRIMARY_PATH_IDX].c_thread_index = thread_index; sctp_conn->local_tag = 0; return sctp_conn; } sctp_connection_t * sctp_half_open_connection_new (u8 thread_index) { sctp_main_t *tm = vnet_get_sctp_main (); sctp_connection_t *sctp_conn = 0; ASSERT (vlib_get_thread_index () == 0); pool_get (tm->half_open_connections, sctp_conn); clib_memset (sctp_conn, 0, sizeof (*sctp_conn)); sctp_conn->sub_conn[SCTP_PRIMARY_PATH_IDX].c_c_index = sctp_conn - tm->half_open_connections; sctp_conn->sub_conn[SCTP_PRIMARY_PATH_IDX].subconn_idx = SCTP_PRIMARY_PATH_IDX; return sctp_conn; } static inline int sctp_connection_open (transport_endpoint_cfg_t * rmt) { sctp_main_t *tm = vnet_get_sctp_main (); sctp_connection_t *sctp_conn; ip46_address_t lcl_addr; u16 lcl_port; uword thread_id; u32 mtu = 1460; int rv; u8 idx = SCTP_PRIMARY_PATH_IDX; /* * Allocate local endpoint */ if ((rmt->is_ip4 && vec_len (tm->ip4_src_addresses)) || (!rmt->is_ip4 && vec_len (tm->ip6_src_addresses))) rv = sctp_alloc_custom_local_endpoint (tm, &lcl_addr, &lcl_port, rmt->is_ip4); else rv = transport_alloc_local_endpoint (TRANSPORT_PROTO_SCTP, rmt, &lcl_addr, &lcl_port); if (rv) return -1; /* * Create connection and send INIT CHUNK */ thread_id = vlib_get_thread_index (); ASSERT (thread_id == 0); clib_spinlock_lock_if_init (&tm->half_open_lock); sctp_conn = sctp_half_open_connection_new (thread_id); if (rmt->peer.sw_if_index != ENDPOINT_INVALID_INDEX) mtu = rmt->is_ip4 ? vnet_sw_interface_get_mtu (vnet_get_main (), rmt->peer.sw_if_index, VNET_MTU_IP4) : vnet_sw_interface_get_mtu (vnet_get_main (), rmt->peer.sw_if_index, VNET_MTU_IP6); sctp_conn->sub_conn[idx].PMTU = mtu; transport_connection_t *trans_conn = &sctp_conn->sub_conn[idx].connection; ip_copy (&trans_conn->rmt_ip, &rmt->ip, rmt->is_ip4); ip_copy (&trans_conn->lcl_ip, &lcl_addr, rmt->is_ip4); sctp_conn->sub_conn[idx].subconn_idx = idx; trans_conn->rmt_port = rmt->port; trans_conn->lcl_port = clib_host_to_net_u16 (lcl_port); trans_conn->is_ip4 = rmt->is_ip4; trans_conn->proto = TRANSPORT_PROTO_SCTP; trans_conn->fib_index = rmt->fib_index; sctp_connection_timers_init (sctp_conn); /* The other connection vars will be initialized after INIT_ACK chunk received */ sctp_init_snd_vars (sctp_conn); sctp_send_init (sctp_conn); clib_spinlock_unlock_if_init (&tm->half_open_lock); return sctp_conn->sub_conn[idx].connection.c_index; } /** * Cleans up connection state. * * No notifications. */ void sctp_connection_cleanup (sctp_connection_t * sctp_conn) { sctp_main_t *tm = &sctp_main; u8 i; /* Cleanup local endpoint if this was an active connect */ for (i = 0; i < MAX_SCTP_CONNECTIONS; i++) transport_endpoint_cleanup (TRANSPORT_PROTO_SCTP, &sctp_conn->sub_conn[i].connection.lcl_ip, sctp_conn->sub_conn[i].connection.lcl_port); int thread_index = sctp_conn->sub_conn[SCTP_PRIMARY_PATH_IDX].connection.thread_index; /* Make sure all timers are cleared */ sctp_connection_timers_reset (sctp_conn); /* Poison the entry */ if (CLIB_DEBUG > 0) clib_memset (sctp_conn, 0xFA, sizeof (*sctp_conn)); pool_put (tm->connections[thread_index], sctp_conn); } int sctp_session_open (transport_endpoint_cfg_t * tep) { return sctp_connection_open (tep); } u16 sctp_check_outstanding_data_chunks (sctp_connection_t * sctp_conn) { u8 i; for (i = 0; i < MAX_SCTP_CONNECTIONS; i++) { if (sctp_conn->sub_conn[i].state == SCTP_SUBCONN_STATE_DOWN) continue; if (sctp_conn->sub_conn[i].is_retransmitting == 1 || sctp_conn->sub_conn[i].enqueue_state != SCTP_ERROR_ENQUEUED) { SCTP_DBG_OUTPUT ("Connection %u has still DATA to be enqueued inboud / outboud", sctp_conn->sub_conn[i].connection.c_index); return 1; } } return 0; /* Indicates no more data to be read/sent */ } void sctp_connection_close (sctp_connection_t * sctp_conn) { SCTP_DBG ("Closing connection %u...", sctp_conn->sub_conn[SCTP_PRIMARY_PATH_IDX].connection.c_index); sctp_conn->state = SCTP_STATE_SHUTDOWN_PENDING; sctp_send_shutdown (sctp_conn); } void sctp_session_close (u32 conn_index, u32 thread_index) { ASSERT (thread_index == 0); sctp_connection_t *sctp_conn = sctp_connection_get (conn_index, thread_index); if (sctp_conn != NULL) sctp_connection_close (sctp_conn); } void sctp_session_cleanup (u32 conn_index, u32 thread_index) { sctp_connection_t *sctp_conn = sctp_connection_get (conn_index, thread_index); if (sctp_conn != NULL) { sctp_connection_timers_reset (sctp_conn); /* Wait for the session tx events to clear */ sctp_conn->state = SCTP_STATE_CLOSED; } } /** * Compute maximum segment size for session layer. */ u16 sctp_session_send_mss (transport_connection_t * trans_conn) { sctp_connection_t *sctp_conn = sctp_get_connection_from_transport (trans_conn); if (sctp_conn == NULL) { SCTP_DBG ("sctp_conn == NULL"); return 0; } update_cwnd (sctp_conn); update_smallest_pmtu_idx (sctp_conn); u8 idx = sctp_data_subconn_select (sctp_conn); return sctp_conn->sub_conn[idx].cwnd; } u16 sctp_snd_space (sctp_connection_t * sctp_conn) { /* RFC 4096 Section 6.1; point (A) */ if (sctp_conn->peer_rwnd == 0) return 0; u8 idx = sctp_data_subconn_select (sctp_conn); u32 available_wnd = clib_min (sctp_conn->peer_rwnd, sctp_conn->sub_conn[idx].cwnd); int flight_size = (int) (sctp_conn->next_tsn - sctp_conn->last_unacked_tsn); if (available_wnd <= flight_size) return 0; /* Finally, let's subtract the DATA chunk headers overhead */ return available_wnd - flight_size - sizeof (sctp_payload_data_chunk_t) - sizeof (sctp_full_hdr_t); } /** * Compute TX window session is allowed to fill. */ u32 sctp_session_send_space (transport_connection_t * trans_conn) { sctp_connection_t *sctp_conn = sctp_get_connection_from_transport (trans_conn); return sctp_snd_space (sctp_conn); } transport_connection_t * sctp_session_get_transport (u32 conn_index, u32 thread_index) { sctp_connection_t *sctp_conn = sctp_connection_get (conn_index, thread_index); if (PREDICT_TRUE (sctp_conn != NULL)) return &sctp_conn->sub_conn[SCTP_PRIMARY_PATH_IDX].connection; return NULL; } transport_connection_t * sctp_session_get_listener (u32 listener_index) { sctp_main_t *tm = vnet_get_sctp_main (); sctp_connection_t *sctp_conn; sctp_conn = pool_elt_at_index (tm->listener_pool, listener_index); return &sctp_conn->sub_conn[SCTP_PRIMARY_PATH_IDX].connection; } u8 * format_sctp_session (u8 * s, va_list * args) { u32 tci = va_arg (*args, u32); u32 thread_index = va_arg (*args, u32); u32 verbose = va_arg (*args, u32); sctp_connection_t *tc; tc = sctp_connection_get (tci, thread_index); if (tc) s = format (s, "%U", format_sctp_connection, tc, verbose); else s = format (s, "empty\n"); return s; } u8 * format_sctp_listener_session (u8 * s, va_list * args) { u32 tci = va_arg (*args, u32); sctp_connection_t *tc = sctp_listener_get (tci); return format (s, "%U", format_sctp_connection_id, tc); } void sctp_expired_timers_cb (u32 conn_index, u32 timer_id) { sctp_connection_t *sctp_conn; SCTP_DBG ("%s expired", sctp_timer_to_string (timer_id)); sctp_conn = sctp_connection_get (conn_index, vlib_get_thread_index ()); /* note: the connection may have already disappeared */ if (PREDICT_FALSE (sctp_conn == 0)) return; if (sctp_conn->sub_conn[conn_index].unacknowledged_hb > SCTP_PATH_MAX_RETRANS) { // The remote-peer is considered to be unreachable hence shutting down u8 i, total_subs_down = 1; for (i = 0; i < MAX_SCTP_CONNECTIONS; i++) { if (sctp_conn->sub_conn[i].state == SCTP_SUBCONN_STATE_DOWN) continue; u32 now = sctp_time_now (); if (now > (sctp_conn->sub_conn[i].last_seen + SCTP_HB_INTERVAL)) { total_subs_down += 1; sctp_conn->sub_conn[i].state = SCTP_SUBCONN_STATE_DOWN; } } if (total_subs_down == MAX_SCTP_CONNECTIONS) { /* Start cleanup. App wasn't notified yet so use delete notify as * opposed to delete to cleanup session layer state. */ session_transport_delete_notify (&sctp_conn->sub_conn [SCTP_PRIMARY_PATH_IDX].connection); sctp_connection_timers_reset (sctp_conn); sctp_connection_cleanup (sctp_conn); } return; } switch (timer_id) { case SCTP_TIMER_T1_INIT: sctp_send_init (sctp_conn); break; case SCTP_TIMER_T1_COOKIE: sctp_send_cookie_echo (sctp_conn); break; case SCTP_TIMER_T2_SHUTDOWN: sctp_send_shutdown (sctp_conn); break; case SCTP_TIMER_T3_RXTX: sctp_timer_reset (sctp_conn, conn_index, timer_id); sctp_conn->flags |= SCTP_CONN_RECOVERY; sctp_data_retransmit (sctp_conn); break; case SCTP_TIMER_T4_HEARTBEAT: sctp_timer_reset (sctp_conn, conn_index, timer_id); goto heartbeat; } return; heartbeat: sctp_send_heartbeat (sctp_conn); } static void sctp_expired_timers_dispatch (u32 * expired_timers) { int i; u32 connection_index, timer_id; for (i = 0; i < vec_len (expired_timers); i++) { /* Get session index and timer id */ connection_index = expired_timers[i] & 0x0FFFFFFF; timer_id = expired_timers[i] >> 28; SCTP_DBG ("Expired timer ID: %u", timer_id); /* Handle expiration */ sctp_expired_timers_cb (connection_index, timer_id); } } void sctp_initialize_timer_wheels (sctp_main_t * tm) { tw_timer_wheel_16t_2w_512sl_t *tw; /* *INDENT-OFF* */ foreach_vlib_main (({ tw = &tm->timer_wheels[ii]; tw_timer_wheel_init_16t_2w_512sl (tw, sctp_expired_timers_dispatch, 100e-3 /* timer period 100ms */ , ~0); tw->last_run_time = vlib_time_now (this_vlib_main); })); /* *INDENT-ON* */ } clib_error_t * sctp_main_enable (vlib_main_t * vm) { sctp_main_t *tm = vnet_get_sctp_main (); vlib_thread_main_t *vtm = vlib_get_thread_main (); clib_error_t *error = 0; u32 num_threads; int thread; sctp_connection_t *sctp_conn __attribute__ ((unused)); u32 preallocated_connections_per_thread; if ((error = vlib_call_init_function (vm, ip_main_init))) return error; if ((error = vlib_call_init_function (vm, ip4_lookup_init))) return error; if ((error = vlib_call_init_function (vm, ip6_lookup_init))) return error; /* * Registrations */ ip4_register_protocol (IP_PROTOCOL_SCTP, sctp4_input_node.index); ip6_register_protocol (IP_PROTOCOL_SCTP, sctp6_input_node.index); /* * Initialize data structures */ num_threads = 1 /* main thread */ + vtm->n_threads; vec_validate (tm->connections, num_threads - 1); /* * Preallocate connections. Assume that thread 0 won't * use preallocated threads when running multi-core */ if (num_threads == 1) { thread = 0; preallocated_connections_per_thread = tm->preallocated_connections; } else { thread = 1; preallocated_connections_per_thread = tm->preallocated_connections / (num_threads - 1); } for (; thread < num_threads; thread++) { if (preallocated_connections_per_thread) pool_init_fixed (tm->connections[thread], preallocated_connections_per_thread); } /* Initialize per worker thread tx buffers (used for control messages) */ vec_validate (tm->tx_buffers, num_threads - 1); /* Initialize timer wheels */ vec_validate (tm->timer_wheels, num_threads - 1); sctp_initialize_timer_wheels (tm); /* Initialize clocks per tick for SCTP timestamp. Used to compute * monotonically increasing timestamps. */ tm->tstamp_ticks_per_clock = vm->clib_time.seconds_per_clock / SCTP_TSTAMP_RESOLUTION; if (num_threads > 1) { clib_spinlock_init (&tm->half_open_lock); } vec_validate (tm->tx_frames[0], num_threads - 1); vec_validate (tm->tx_frames[1], num_threads - 1); vec_validate (tm->ip_lookup_tx_frames[0], num_threads - 1); vec_validate (tm->ip_lookup_tx_frames[1], num_threads - 1); tm->bytes_per_buffer = vlib_buffer_get_default_data_size (vm); vec_validate (tm->time_now, num_threads - 1); return error; } clib_error_t * sctp_enable_disable (vlib_main_t * vm, u8 is_en) { if (is_en) { if (sctp_main.is_enabled) return 0; return sctp_main_enable (vm); } else { sctp_main.is_enabled = 0; } return 0; } transport_connection_t * sctp_half_open_session_get_transport (u32 conn_index) { sctp_connection_t *sctp_conn = sctp_half_open_connection_get (conn_index); return &sctp_conn->sub_conn[SCTP_PRIMARY_PATH_IDX].connection; } u8 * format_sctp_half_open (u8 * s, va_list * args) { u32 tci = va_arg (*args, u32); sctp_connection_t *sctp_conn = sctp_half_open_connection_get (tci); return format (s, "%U", format_sctp_connection_id, sctp_conn); } void sctp_update_time (f64 now, u8 thread_index) { sctp_set_time_now (thread_index); tw_timer_expire_timers_16t_2w_512sl (&sctp_main.timer_wheels[thread_index], now); sctp_flush_frames_to_output (thread_index); } /* *INDENT OFF* */ const static transport_proto_vft_t sctp_proto = { .enable = sctp_enable_disable, .start_listen = sctp_session_bind, .stop_listen = sctp_session_unbind, .connect = sctp_session_open, .close = sctp_session_close, .cleanup = sctp_session_cleanup, .push_header = sctp_push_header, .send_mss = sctp_session_send_mss, .send_space = sctp_session_send_space, .update_time = sctp_update_time, .get_connection = sctp_session_get_transport, .get_listener = sctp_session_get_listener, .get_half_open = sctp_half_open_session_get_transport, .format_connection = format_sctp_session, .format_listener = format_sctp_listener_session, .format_half_open = format_sctp_half_open, .tx_type = TRANSPORT_TX_DEQUEUE, .service_type = TRANSPORT_SERVICE_VC, }; /* *INDENT ON* */ clib_error_t * sctp_init (vlib_main_t * vm) { sctp_main_t *tm = vnet_get_sctp_main (); ip_main_t *im = &ip_main; ip_protocol_info_t *pi; vlib_node_t *node = vlib_get_node_by_name (vm, (u8 *) "sctp4-established"); tm->sctp4_established_phase_node_index = node->index; node = vlib_get_node_by_name (vm, (u8 *) "sctp6-established"); tm->sctp6_established_phase_node_index = node->index; /* Session layer, and by implication SCTP, are disabled by default */ tm->is_enabled = 0; /* Register with IP for header parsing */ pi = ip_get_protocol_info (im, IP_PROTOCOL_SCTP); if (pi == 0) return clib_error_return (0, "SCTP protocol info AWOL"); pi->format_header = format_sctp_header; pi->unformat_pg_edit = unformat_pg_sctp_header; /* Register as transport with session layer */ transport_register_protocol (TRANSPORT_PROTO_SCTP, &sctp_proto, FIB_PROTOCOL_IP4, sctp4_output_node.index); transport_register_protocol (TRANSPORT_PROTO_SCTP, &sctp_proto, FIB_PROTOCOL_IP6, sctp6_output_node.index); sctp_api_reference (); return 0; } VLIB_INIT_FUNCTION (sctp_init); static clib_error_t * show_sctp_punt_fn (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd_arg) { sctp_main_t *tm = &sctp_main; if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) return clib_error_return (0, "unknown input `%U'", format_unformat_error, input); vlib_cli_output (vm, "IPv4 UDP punt: %s", tm->punt_unknown4 ? "enabled" : "disabled"); vlib_cli_output (vm, "IPv6 UDP punt: %s", tm->punt_unknown6 ? "enabled" : "disabled"); return 0; } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (show_tcp_punt_command, static) = { .path = "show sctp punt", .short_help = "show sctp punt", .function = show_sctp_punt_fn, }; /* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */
27.273256
83
0.711682
082c4689cd5599d37b375334efaa645049b032a4
1,908
h
C
render/render_type/render.h
phnomcobra/Multiscope-Particle-Model-Simulation
f8904c7dce4c88a8a51dcfd3de209d2333bf31c6
[ "MIT" ]
null
null
null
render/render_type/render.h
phnomcobra/Multiscope-Particle-Model-Simulation
f8904c7dce4c88a8a51dcfd3de209d2333bf31c6
[ "MIT" ]
null
null
null
render/render_type/render.h
phnomcobra/Multiscope-Particle-Model-Simulation
f8904c7dce4c88a8a51dcfd3de209d2333bf31c6
[ "MIT" ]
null
null
null
/////////////////////////////////////////////////////////////////////// // RENDER // Justin Dierking // 4731 Adwell Loop, Grove City, OH 43123 // (937) 371 6026 // [email protected] // [email protected] // [email protected] // // This is a header file for the render application for displaying // and animating MPMS data sets. // // 12/01/2013 Original Construction /////////////////////////////////////////////////////////////////////// #ifndef _RENDER #define _RENDER // Includes /////////////////////////////////////////////////////////// // OpenGL and Windows environment classes #include <windows.h> #include <gl/gl.h> #include <gl/glu.h> // IO classes #include <string> #include <iostream> #include <stdio.h> // MPMS classes #include "float4.h" #include "part.h" #include "sector.h" #include "mesh.h" #include "ptype.h" // System namespaces #using <System.dll> using namespace std; using namespace System; using namespace System::Text; // External Variables ///////////////////////////////////////////////// /* All external variables have been declared in render.cpp */ // Window handles extern HWND hWnd; extern HDC hDC; extern HGLRC hRC; // File pointer extern FILE* rdstrm; // Scene parameters extern float4 cameraPos, cameraForward, cameraRot; extern bool moveForward, moveBackward; extern int omx, omy, mx, my, currentFrame, colorScheme; extern unsigned int numFrames; extern float tmpMult; // Single scope sector extern sector singleScope; // Playback extern vector <sector> playback; // Vector of types of particles extern vector <ptype> types; // Function Declarations /////////////////////////////////////////////// void DrawGraphics(); void LoadScene(); void computeCameraVectors(); void SetupPixelFormat(); void InitGraphics(); void ResizeGraphics(); LONG WINAPI MainWndProc (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); #endif
24.151899
79
0.624738
082cb3e17e9bca4e36339132de5db321811fc8e1
318
c
C
src/utils.c
mesflores/capacity-r
123b8e7515237027ce756a6ba034466a4732a9d4
[ "BSD-3-Clause" ]
2
2018-12-16T20:41:39.000Z
2018-12-28T02:30:47.000Z
src/utils.c
mesflores/capacity-r
123b8e7515237027ce756a6ba034466a4732a9d4
[ "BSD-3-Clause" ]
3
2020-02-03T01:44:48.000Z
2020-04-26T22:20:40.000Z
src/utils.c
mesflores/capacity
123b8e7515237027ce756a6ba034466a4732a9d4
[ "BSD-3-Clause" ]
null
null
null
// utils.c // // Helpers //Helper Functions void SWAP (int *a, int *b) { int tmp = *a; *a = *b; *b = tmp; } void SWAP_UL (unsigned long *a, unsigned long *b) { unsigned long tmp = *a; *a = *b; *b = tmp; } void SWAP_SHORT (short *a, short *b) { short tmp = *a; *a = *b; *b = tmp; }
15.142857
51
0.493711
082e1f41c624b4f2ca1b311eeafdfba663586108
1,954
h
C
modulemd/v2/include/modulemd-2.0/private/modulemd-component-private.h
AarushiSingh09/libmodulemd
707a59858252fe176759f75fe2851212b30f0b87
[ "MIT" ]
1
2019-03-12T05:36:55.000Z
2019-03-12T05:36:55.000Z
modulemd/v2/include/modulemd-2.0/private/modulemd-component-private.h
AarushiSingh09/libmodulemd
707a59858252fe176759f75fe2851212b30f0b87
[ "MIT" ]
null
null
null
modulemd/v2/include/modulemd-2.0/private/modulemd-component-private.h
AarushiSingh09/libmodulemd
707a59858252fe176759f75fe2851212b30f0b87
[ "MIT" ]
null
null
null
/* * This file is part of libmodulemd * Copyright (C) 2018 Red Hat, Inc. * * Fedora-License-Identifier: MIT * SPDX-2.0-License-Identifier: MIT * SPDX-3.0-License-Identifier: MIT * * This program is free software. * For more information on the license, see COPYING. * For more information on free software, see <https://www.gnu.org/philosophy/free-sw.en.html>. */ #pragma once #include <glib-object.h> #include <yaml.h> #include "modulemd-component.h" /** * SECTION: modulemd-component-private * @title: Modulemd.Component (Private) * @stability: Private * @short_description: #Modulemd.Component methods that should be used only * by internal consumers */ /** * modulemd_component_emit_yaml_start: * @self: This #ModulemdComponent * @emitter: (inout): A libyaml emitter object positioned where Component start * belongs in the YAML document. * @error: (out): A #GError that will return the reason for an emission error. * * Returns: TRUE if the component header was emitted succesfully. FALSE and sets * @error appropriately if the YAML could not be emitted. * * Since: 2.0 */ gboolean modulemd_component_emit_yaml_start (ModulemdComponent *self, yaml_emitter_t *emitter, GError **error); /** * modulemd_component_emit_yaml_buildorder: * @self: This #ModulemdComponent * @emitter: (inout): A libyaml emitter object positioned where a Component * buildorder item should appear in the YAML document. * @error: (out): A #GError that will return the reason for an emission error. * * Returns: TRUE if the component buildorder was emitted succesfully. FALSE and sets * @error appropriately if the YAML could not be emitted. * * Since: 2.0 */ gboolean modulemd_component_emit_yaml_buildorder (ModulemdComponent *self, yaml_emitter_t *emitter, GError **error);
31.015873
95
0.683726
082ea9a6be5523ff46d5f333720acd4d92c80805
1,399
c
C
piscine/tests/C12/ex13/tests.c
cheremushkin/school21
aa151406acc0a5fdbcf62c3f27cd5f628e68dd51
[ "Apache-2.0" ]
null
null
null
piscine/tests/C12/ex13/tests.c
cheremushkin/school21
aa151406acc0a5fdbcf62c3f27cd5f628e68dd51
[ "Apache-2.0" ]
null
null
null
piscine/tests/C12/ex13/tests.c
cheremushkin/school21
aa151406acc0a5fdbcf62c3f27cd5f628e68dd51
[ "Apache-2.0" ]
null
null
null
#include <stdio.h> #include "ft_list.h" #include <stdlib.h> #include <string.h> #include <unistd.h> t_list *ft_list_last_(t_list *begin_list) { t_list *elem; elem = begin_list; while (elem->next) elem = elem->next; return (elem); } void ft_list_push_back(t_list **begin_list, void *data) { t_list *last; t_list *new; new = ft_create_elem(data); if (!new) return ; if (!*begin_list) { *begin_list = new; return ; } last = ft_list_last_(*begin_list); last->next = new; } void print_list(t_list *start) { t_list *elem; int i; i = 0; elem = start; while (elem) { printf("(%d) %s -> ", i, elem->data); elem = elem->next; i++; } printf("null\n"); } int main() { t_list *start0, *start1, *start2; start0 = NULL; print_list(start0); start1 = ft_create_elem(strdup("1.0")); ft_list_push_back(&start1, strdup("1.1")); ft_list_push_back(&start1, strdup("1.2")); ft_list_push_back(&start1, strdup("1.3")); ft_list_push_back(&start1, strdup("1.4")); ft_list_merge(&start0, start1); print_list(start0); start2 = NULL; ft_list_merge(&start0, start2); print_list(start0); start2 = ft_create_elem(strdup("2.0")); ft_list_push_back(&start2, strdup("2.1")); ft_list_push_back(&start2, strdup("2.2")); ft_list_push_back(&start2, strdup("2.3")); ft_list_push_back(&start2, strdup("2.4")); ft_list_merge(&start0, start2); print_list(start0); return (0); }
18.653333
55
0.664761
083087b04bffff9ebf8466df64a4c0bb26c21bcf
179
h
C
cmd/trace-agent/windows_resources/version.h
Jeremyyang920/datadog-agent
11e65147e366cbff7a0ae9f5feb8db9930173911
[ "Apache-2.0" ]
1,611
2017-09-28T15:07:39.000Z
2022-03-31T18:23:05.000Z
cmd/trace-agent/windows_resources/version.h
Jeremyyang920/datadog-agent
11e65147e366cbff7a0ae9f5feb8db9930173911
[ "Apache-2.0" ]
3,946
2017-09-28T14:45:19.000Z
2022-03-31T20:19:36.000Z
cmd/trace-agent/windows_resources/version.h
Jeremyyang920/datadog-agent
11e65147e366cbff7a0ae9f5feb8db9930173911
[ "Apache-2.0" ]
916
2017-10-17T23:18:48.000Z
2022-03-30T09:26:14.000Z
#define RC_FILE_VERSION MAJ_VER,MIN_VER,PATCH_VER,0 #define STRINGIFY(x) #x #define TO_STRING(x) STRINGIFY(x) #define FILE_VERSION_STRING TO_STRING(MAJ_VER.MIN_VER.PATCH_VER.0)
25.571429
66
0.815642
08323a27327131bdce17463b96bbc33c421c06c5
398
h
C
CalendarDaemon.framework/CADXPCInvocationContextHolder.h
reels-research/iOS-Private-Frameworks
9a4f4534939310a51fdbf5a439dd22487efb0f01
[ "MIT" ]
4
2021-10-06T12:15:26.000Z
2022-02-21T02:26:00.000Z
CalendarDaemon.framework/CADXPCInvocationContextHolder.h
reels-research/iOS-Private-Frameworks
9a4f4534939310a51fdbf5a439dd22487efb0f01
[ "MIT" ]
null
null
null
CalendarDaemon.framework/CADXPCInvocationContextHolder.h
reels-research/iOS-Private-Frameworks
9a4f4534939310a51fdbf5a439dd22487efb0f01
[ "MIT" ]
1
2021-10-08T07:40:53.000Z
2021-10-08T07:40:53.000Z
/* Generated by RuntimeBrowser Image: /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon */ @interface CADXPCInvocationContextHolder : NSObject { id _proxy; NSMutableArray * _retainedArguments; } @property (nonatomic, readonly) id proxy; - (void).cxx_destruct; - (void)clear; - (id)proxy; - (void)retainProxy:(id)arg1 andArgumentsInInvocation:(id)arg2; @end
22.111111
83
0.756281
08338c0836803cd421d099370f10e73465fdfe24
5,350
h
C
XCTestLib/Classes/XCUIApplication.h
fero2004/XCTestLib
29e4c7772c1d0568ad219c7e2beda2efb51ce5cc
[ "MIT" ]
null
null
null
XCTestLib/Classes/XCUIApplication.h
fero2004/XCTestLib
29e4c7772c1d0568ad219c7e2beda2efb51ce5cc
[ "MIT" ]
null
null
null
XCTestLib/Classes/XCUIApplication.h
fero2004/XCTestLib
29e4c7772c1d0568ad219c7e2beda2efb51ce5cc
[ "MIT" ]
null
null
null
// // Copyright (c) 2014-2015 Apple Inc. All rights reserved. // #import "XCTestDefines.h" #import "XCUIElement.h" #import "XCUIProtectedResource.h" NS_ASSUME_NONNULL_BEGIN #if XCT_UI_TESTING_AVAILABLE typedef NS_ENUM(NSUInteger, XCUIApplicationState) { XCUIApplicationStateUnknown = 0, XCUIApplicationStateNotRunning = 1, #if !TARGET_OS_OSX XCUIApplicationStateRunningBackgroundSuspended = 2, #endif XCUIApplicationStateRunningBackground = 3, XCUIApplicationStateRunningForeground = 4 }; NS_CLASS_AVAILABLE(10_11, 9_0) /*! Proxy for an application that may or may not be running. */ @interface XCUIApplication : XCUIElement /*! * Returns a proxy for the application specified by the "Target Application" target setting. */ - (instancetype)init NS_DESIGNATED_INITIALIZER; + (instancetype)new; /*! * Returns a proxy for an application associated with the specified bundle identifier. */ - (instancetype)initWithBundleIdentifier:(NSString *)bundleIdentifier NS_DESIGNATED_INITIALIZER; #if TARGET_OS_OSX || TARGET_OS_MACCATALYST /*! * Returns a proxy for the application at the specified file system URL. */ - (instancetype)initWithURL:(NSURL *)url NS_DESIGNATED_INITIALIZER; #endif /*! * Launches the application synchronously. On return the application ready to handle events. If the * application is already running, the existing instance will be terminated to ensure a clean state * for the launched instance. * * Any failure in the launch sequence will be reported as a test failure and the test will be halted * at that point. */ - (void)launch; /*! * Activates the application synchronously. On return the application is ready to handle events. * If the application was not running prior, it will be launched automatically. If the application * would be launched as a result of this method and was previously launched via -launch, the launch * arguments and environment variables that were used then will be supplied again for the new launch. * * Unlike -launch, if the application is already running this call will not terminate the existing * instance. * * Any failure in the activation or launch sequence will be reported as a test failure and the test * will be halted at that point. */ - (void)activate; /*! * Terminates any running instance of the application. If the application has an existing debug session * via Xcode, the termination is implemented as a halt via that debug connection. Otherwise, a SIGKILL * is sent to the process. */ - (void)terminate; /*! * The arguments that will be passed to the application on launch. If not modified, these are the * arguments that Xcode will pass on launch. Those arguments can be changed, added to, or removed. * Unlike NSTask, it is legal to modify these arguments after the application has been launched. These * changes will not affect the current launch session, but will take effect the next time the application * is launched. */ @property (nonatomic, copy) NSArray <NSString *> *launchArguments; /*! * The environment that will be passed to the application on launch. If not modified, this is the * environment that Xcode will pass on launch. Those variables can be changed, added to, or removed. * Unlike NSTask, it is legal to modify the environment after the application has been launched. These * changes will not affect the current launch session, but will take effect the next time the application * is launched. */ @property (nonatomic, copy) NSDictionary <NSString *, NSString *> *launchEnvironment; /*! * The most recently observed state of the application. Applications are passively monitored to update * this property as they change state. Consequently, updates to this property are inherently asynchronous. * * Some guarantees are made, however: * * - When -launch and -activate return, if they were successful, the state of the application will be * XCUIApplicationStateRunningBackground or XCUIApplicationStateRunningForeground, whichever is * appropriate for the application. Most applications will be XCUIApplicationStateRunningForeground * after launch or activation. * * - When -terminate returns, if it was successful, the state of the application will be * XCUIApplicationStateNotRunning. */ @property (readonly) XCUIApplicationState state; /*! * Waits for the application to become a specific state, giving up after a number of seconds. * * Returns YES if the application is currently in or transitions to the desired state within the specified * timeout period. */ - (BOOL)waitForState:(XCUIApplicationState)state timeout:(NSTimeInterval)timeout XCT_WARN_UNUSED; /*! * Reset the authorization status for a protected resource, such that the system will display the * authorization prompt the next time the resource is accessed. The app does not have to be in a running state to * use this API. If the app is running, it might get terminated while the reset occurs for some protected resources. * * Example usage: * @code * XCUIApplication *app = [XCUIApplication new]; * [app resetAuthorizationStatusForResource:XCUIProtectedResourcePhotos]; * [app launch]; * @endcode */ - (void)resetAuthorizationStatusForResource:(XCUIProtectedResource)resource XCT_PROTECTED_RESOURCES_RESET_API_AVAILABLE; @end #endif NS_ASSUME_NONNULL_END
38.214286
120
0.771589
08339c091d5cc3014958220eefbc2015ad3fea96
714
h
C
multi_screen_player_demo.h
ys0uyno/multi_screen_player_demo
f51b386534337f747b87c1ddcb470d8c9661d9f0
[ "MIT" ]
null
null
null
multi_screen_player_demo.h
ys0uyno/multi_screen_player_demo
f51b386534337f747b87c1ddcb470d8c9661d9f0
[ "MIT" ]
null
null
null
multi_screen_player_demo.h
ys0uyno/multi_screen_player_demo
f51b386534337f747b87c1ddcb470d8c9661d9f0
[ "MIT" ]
null
null
null
#ifndef MULTI_SCREEN_PLAYER_DEMO_H #define MULTI_SCREEN_PLAYER_DEMO_H #include "media_player.h" #include "grid_layout.h" #include <QWidget> #include <QtWidgets> namespace Ui { class multi_screen_player_demo; } class multi_screen_player_demo : public QWidget { Q_OBJECT public: explicit multi_screen_player_demo(QWidget *parent = nullptr); ~multi_screen_player_demo(); public slots: void openFiles(); protected: void dragEnterEvent(QDragEnterEvent *event); void dropEvent(QDropEvent *event); private: Ui::multi_screen_player_demo *ui; grid_layout *gridLayout; video_widget *videoWidget; QVector<media_player *> mediaPlayerVec; }; #endif // MULTI_SCREEN_PLAYER_DEMO_H
19.833333
65
0.766106
0836626bbd2ac7954848d557bb2ea85cb0026a8b
665
h
C
emp-tool/execution/protocol_execution.h
encryptogroup/PQ-MPC
fe660da59bdae54576f922952f65dffb595867a1
[ "MIT" ]
4
2020-10-22T01:18:15.000Z
2021-07-30T09:19:05.000Z
emp-tool/execution/protocol_execution.h
encryptogroup/PQ-MPC
fe660da59bdae54576f922952f65dffb595867a1
[ "MIT" ]
null
null
null
emp-tool/execution/protocol_execution.h
encryptogroup/PQ-MPC
fe660da59bdae54576f922952f65dffb595867a1
[ "MIT" ]
null
null
null
#ifndef PROTOCOL_EXECUTION_H__ #define PROTOCOL_EXECUTION_H__ #include <pthread.h> #include "emp-tool/utils/block.h" #include "emp-tool/utils/constants.h" namespace emp { class ProtocolExecution { public: int cur_party; static ProtocolExecution * prot_exec; ProtocolExecution(int party = PUBLIC) : cur_party (party) {} virtual ~ProtocolExecution() {} virtual void feed(Label * lbls, int party, const bool* b, int nel) {} virtual void feed(Label * lbls0, Label * lbls1, int party, const bool* b, int nel) {} virtual void reveal(bool*out, int party, const Label *lbls, int nel) {} virtual void do_batched_ot() {} virtual void finalize() {} }; } #endif
28.913043
86
0.729323
08371c95e450508934605ffde08b035239a14bdf
372
h
C
PrefsPane/HelpWindowController.h
guoc/excerptor
0ebd858757c84c6679e92b204014ffa353326f34
[ "MIT" ]
183
2015-09-29T08:38:39.000Z
2022-02-25T19:45:06.000Z
PrefsPane/HelpWindowController.h
guoc/excerptor
0ebd858757c84c6679e92b204014ffa353326f34
[ "MIT" ]
14
2015-10-27T07:20:18.000Z
2019-05-21T14:06:56.000Z
PrefsPane/HelpWindowController.h
guoc/excerptor
0ebd858757c84c6679e92b204014ffa353326f34
[ "MIT" ]
11
2015-11-13T04:25:06.000Z
2022-03-03T05:16:23.000Z
// // HelpWindowController.h // Excerptor // // Created by Chen Guo on 21/06/2015. // Copyright (c) 2015 guoc. All rights reserved. // #import <Cocoa/Cocoa.h> @interface HelpWindowController : NSWindowController <NSTableViewDelegate, NSTableViewDataSource> @property (weak) IBOutlet NSTableView *tableView; @property (nonatomic) NSArray *placeholdersToShow; @end
20.666667
97
0.752688
0838eae49bc6284e8ccc584eeb2415eb437afe88
4,997
h
C
ref-impl/src/com-api/CAAFParameter.h
Phygon/aaf
faef720e031f501190481e1d1fc1870a7dc8f98b
[ "Linux-OpenIB" ]
null
null
null
ref-impl/src/com-api/CAAFParameter.h
Phygon/aaf
faef720e031f501190481e1d1fc1870a7dc8f98b
[ "Linux-OpenIB" ]
null
null
null
ref-impl/src/com-api/CAAFParameter.h
Phygon/aaf
faef720e031f501190481e1d1fc1870a7dc8f98b
[ "Linux-OpenIB" ]
null
null
null
//@doc //@class AAFParameter | Implementation class for AAFParameter #ifndef __CAAFParameter_h__ #define __CAAFParameter_h__ //=---------------------------------------------------------------------= // // This file was GENERATED for the AAF SDK // // $Id$ $Name$ // // The contents of this file are subject to the AAF SDK Public Source // License Agreement Version 2.0 (the "License"); You may not use this // file except in compliance with the License. The License is available // in AAFSDKPSL.TXT, or you may obtain a copy of the License from the // Advanced Media Workflow Association, Inc., or its successor. // // Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See // the License for the specific language governing rights and limitations // under the License. Refer to Section 3.3 of the License for proper use // of this Exhibit. // // WARNING: Please contact the Advanced Media Workflow Association, // Inc., for more information about any additional licenses to // intellectual property covering the AAF Standard that may be required // to create and distribute AAF compliant products. // (http://www.amwa.tv/policies). // // Copyright Notices: // The Original Code of this file is Copyright 1998-2012, licensor of the // Advanced Media Workflow Association. All rights reserved. // // The Initial Developer of the Original Code of this file and the // licensor of the Advanced Media Workflow Association is // Avid Technology. // All rights reserved. // //=---------------------------------------------------------------------= #ifndef __AAF_h__ #include "AAF.h" #endif #ifndef __AAFTypes_h__ #include "AAFTypes.h" #endif #ifndef __CAAFObject_h__ #include "CAAFObject.h" #endif class CAAFParameter : public IAAFParameter, public CAAFObject { protected: //******** // // Constructor/destructor // CAAFParameter (IUnknown * pControllingUnknown, aafBool doInit = kAAFTrue); virtual ~CAAFParameter (); public: //*********************************************************** // // GetParameterDefinition() // // Places the parameter definition of the operation parameter into /// the *ppParmDef argument. The length of an operation parameter is /// in the same edit units and has the same value as the /// IAAFOperationGroup enclosing this parameter. /// /// Succeeds if all of the following are true: /// - the ppParmDef pointer is valid. /// /// This method will return the following codes. If more than one of /// the listed errors is in effect, it will return the first one /// encountered in the order given below: /// /// AAFRESULT_SUCCESS /// - succeeded. (This is the only code indicating success.) /// /// AAFRESULT_NOT_INITIALIZED /// - This object has not yet had Initialize() called on it. /// /// AAFRESULT_NULL_PARAM /// - ppParmDef is null. // STDMETHOD (GetParameterDefinition) ( // New parameter definition /*[out,retval]*/ IAAFParameterDef ** ppParmDef); //*********************************************************** // // GetTypeDefinition() // // Places the IAAFTypeDefinition of the data value inside this /// parameter into the *ppTypeDef argument. The data value is the /// value of the parameter. It is often an integer or rational, and /// may change over time. An example of a value would be the /// "level" parameter of a video dissolve, which has control /// points with a value of zero (0 percent B material) at the /// start, to one (100 percent B material) at the end. The data /// value will actually be stored in either AAFConstantValue or one /// of the AAFControlPoints inside of an AAFVaryingValue. /// /// The definition is stored in the base class because it should be /// constant for all control points inside of a varying value. /// /// This method will return the following codes. If more than one of /// the listed errors is in effect, it will return the first one /// encountered in the order given below: /// /// AAFRESULT_SUCCESS /// - succeeded. (This is the only code indicating success.) /// /// AAFRESULT_NOT_INITIALIZED /// - This object has not yet had Initialize() called on it. /// /// AAFRESULT_NULL_PARAM /// - ppTypeDef is null. // STDMETHOD (GetTypeDefinition) ( // Type Definition of the data value inside of this object /*[out,retval]*/ IAAFTypeDef ** ppTypeDef); protected: // // Declare the QI that implements for the interfaces // for this module. This will be called by CAAFUnknown::QueryInterface(). // STDMETHOD(InternalQueryInterface)(REFIID riid, void **ppvObjOut); public: // // This class as concrete. All AAF objects can be constructed from // a CLSID. This will allow subclassing all "base-classes" by // aggreggation. // AAF_DECLARE_CONCRETE(); // //******** }; #endif // ! __CAAFParameter_h__
30.469512
76
0.663998
08391861aaf0e0faa13eb0e3ad79d4b3e4d69b82
2,167
c
C
test/nist256p1.c
MSKNET/canokey-crypto
cdfd5dc05aa8e14f4e2a831a8de119695dee192c
[ "Apache-2.0" ]
4
2020-05-19T05:14:25.000Z
2021-10-02T10:33:12.000Z
test/nist256p1.c
canopo/canokey-crypto
cdfd5dc05aa8e14f4e2a831a8de119695dee192c
[ "Apache-2.0" ]
null
null
null
test/nist256p1.c
canopo/canokey-crypto
cdfd5dc05aa8e14f4e2a831a8de119695dee192c
[ "Apache-2.0" ]
2
2021-07-21T08:15:18.000Z
2021-10-02T10:33:16.000Z
/** * Copyright (c) 2013-2014 Tomas Dzetkulic * Copyright (c) 2013-2014 Pavol Rusnak * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. */ #include "nist256p1.h" const ecdsa_curve nist256p1 = { /* .prime */ {/*.val =*/{0x3fffffff, 0x3fffffff, 0x3fffffff, 0x3f, 0x0, 0x0, 0x1000, 0x3fffc000, 0xffff}}, /* G */ {/*.x =*/{/*.val =*/{0x1898c296, 0x1284e517, 0x1eb33a0f, 0xdf604b, 0x2440f277, 0x339b958e, 0x4247f8b, 0x347cb84b, 0x6b17}}, /*.y =*/{/*.val =*/{0x37bf51f5, 0x2ed901a0, 0x3315ecec, 0x338cd5da, 0xf9e162b, 0x1fad29f0, 0x27f9b8ee, 0x10b8bf86, 0x4fe3}}}, /* order */ {/*.val =*/{0x3c632551, 0xee72b0b, 0x3179e84f, 0x39beab69, 0x3fffffbc, 0x3fffffff, 0xfff, 0x3fffc000, 0xffff}}, /* order_half */ {/*.val =*/{0x3e3192a8, 0x27739585, 0x38bcf427, 0x1cdf55b4, 0x3fffffde, 0x3fffffff, 0x7ff, 0x3fffe000, 0x7fff}}, /* a */ -3, /* b */ {/*.val =*/{0x27d2604b, 0x2f38f0f8, 0x53b0f63, 0x741ac33, 0x1886bc65, 0x2ef555da, 0x293e7b3e, 0xd762a8e, 0x5ac6}} #if USE_PRECOMPUTED_CP , /* cp */ { #include "nist256p1.table" } #endif };
40.886792
119
0.689894
083a6b8b227611e1cd1c9d6449e6e7ed019fe056
11,764
c
C
ni/src/examples/ngmath/nm03c.c
tenomoto/ncl
a87114a689a1566e9aa03d85bcf6dc7325b47633
[ "Apache-2.0" ]
210
2016-11-24T09:05:08.000Z
2022-03-24T19:15:32.000Z
ni/src/examples/ngmath/nm03c.c
tenomoto/ncl
a87114a689a1566e9aa03d85bcf6dc7325b47633
[ "Apache-2.0" ]
156
2017-09-22T09:56:48.000Z
2022-03-30T07:02:21.000Z
ni/src/examples/ngmath/nm03c.c
tenomoto/ncl
a87114a689a1566e9aa03d85bcf6dc7325b47633
[ "Apache-2.0" ]
58
2016-12-14T00:15:22.000Z
2022-03-15T09:13:00.000Z
/* * $Id: nm03c.c,v 1.10 2010-03-15 22:49:24 haley Exp $ */ /************************************************************************ * * * Copyright (C) 1997 * * University Corporation for Atmospheric Research * * All Rights Reserved * * * ************************************************************************/ /* * File: nm03c.c * * Author: Mary Haley (taken from one of Fred Clare's examples) * National Center for Atmospheric Research * PO 3000, Boulder, Colorado * * Date: Fri Dec 12 09:43:32 MST 1997 * * Description: How to compute aspects and slopes. */ #include <math.h> #include <stdio.h> #include <ncarg/gks.h> #include <ncarg/ncargC.h> #include <ncarg/hlu/hlu.h> #include <ncarg/ngmath.h> /* * Include a header file for each object created */ #include <ncarg/hlu/App.h> #include <ncarg/hlu/NcgmWorkstation.h> #include <ncarg/hlu/PSWorkstation.h> #include <ncarg/hlu/PDFWorkstation.h> #include <ncarg/hlu/CairoWorkstation.h> #include <ncarg/hlu/ScalarField.h> #include <ncarg/hlu/ContourPlot.h> #include <ncarg/hlu/VectorPlot.h> #define NumIn 171 #define NumXOut 21 #define NumYOut 21 #define RAD2DEG 57.29578 extern void drwsrfc (int nx, int ny, float *x, float *y, float *z, float s1, float s2, float s3); int main(int argc, char *argv[]) { /* * Coordinate data are defined as random numbers between * -0.2 and 1.2. and are explicitly defined here for uniformity * across platforms. */ float x[] = { 1.16, 0.47, 0.29, 0.72, 0.52, 1.12, 0.33, 0.20, 0.30, 0.78, 0.92, 0.52, 0.44, 0.22, -0.10, 0.11, 0.59, 1.13, 0.68, 1.11, 0.93, 0.29, 0.74, 0.43, 0.87, 0.87, -0.10, 0.26, 0.85, 0.00, -0.02, 1.01, -0.12, 0.65, 0.39, 0.96, 0.39, 0.38, 0.94, -0.03, -0.17, 0.00, 0.03, 0.67, -0.06, 0.82, -0.03, 1.08, 0.37, 1.02, -0.11, -0.13, 1.03, 0.61, 0.26, 0.18, 0.62, 0.42, 1.03, 0.72, 0.97, 0.08, 1.18, 0.00, 0.69, 0.10, 0.80, 0.06, 0.82, 0.20, 0.46, 0.37, 1.16, 0.93, 1.09, 0.96, 1.00, 0.80, 0.01, 0.12, 1.01, 0.48, 0.79, 0.04, 0.42, 0.48, -0.18, 1.16, 0.85, 0.97, 0.14, 0.40, 0.78, 1.12, 1.19, 0.68, 0.65, 0.41, 0.90, 0.84, -0.11, -0.01, -0.02, -0.10, 1.04, 0.58, 0.61, 0.12, -0.02, -0.03, 0.27, 1.17, 1.02, 0.16, -0.17, 1.03, 0.13, 0.04, -0.03, 0.15, 0.00, -0.01, 0.91, 1.20, 0.54, -0.14, 1.03, 0.93, 0.42, 0.36, -0.10, 0.57, 0.22, 0.74, 1.15, 0.40, 0.82, 0.96, 1.09, 0.42, 1.13, 0.24, 0.51, 0.60, 0.06, 0.38, 0.15, 0.59, 0.76, 1.16, 0.02, 0.86, 1.14, 0.37, 0.38, 0.26, 0.26, 0.07, 0.87, 0.90, 0.83, 0.09, 0.03, 0.56, -0.19, 0.51, 1.07, -0.13, 0.99, 0.84, 0.22 }; float y[] = { -0.11, 1.07, 1.11, -0.17, 0.08, 0.09, 0.91, 0.17, -0.02, 0.83, 1.08, 0.87, 0.46, 0.66, 0.50, -0.14, 0.78, 1.08, 0.65, 0.00, 1.03, 0.06, 0.69, -0.16, 0.02, 0.59, 0.19, 0.54, 0.68, 0.95, 0.30, 0.77, 0.94, 0.76, 0.56, 0.12, 0.05, -0.07, 1.01, 0.61, 1.04, -0.07, 0.46, 1.07, 0.87, 0.11, 0.63, 0.06, 0.53, 0.95, 0.78, 0.48, 0.45, 0.77, 0.78, 0.29, 0.38, 0.85, -0.10, 1.17, 0.35, 1.14, -0.04, 0.34, -0.18, 0.78, 0.17, 0.63, 0.88, -0.12, 0.58, -0.12, 1.00, 0.99, 0.45, 0.86, -0.15, 0.97, 0.99, 0.90, 0.42, 0.61, 0.74, 0.41, 0.44, 1.08, 1.06, 1.18, 0.89, 0.74, 0.74, -0.06, 0.00, 0.99, 0.03, 1.00, -0.04, 0.24, 0.65, 0.12, 0.13, -0.09, -0.05, 1.03, 1.07, -0.02, 1.18, 0.19, 0.03, -0.03, 0.86, 1.12, 0.38, 0.72, -0.20, -0.08, -0.18, 0.32, 0.13, -0.19, 0.93, 0.81, 0.31, 1.09, -0.03, 1.01, -0.17, 0.84, -0.11, 0.45, 0.18, 0.23, 0.81, 0.39, 1.09, -0.05, 0.58, 0.53, 0.96, 0.43, 0.48, 0.96, -0.03, 1.13, 1.16, 0.16, 1.15, 0.57, 0.13, 0.71, 0.35, 1.04, 0.62, 1.03, 0.98, 0.31, 0.70, 0.97, 0.87, 1.14, 0.08, 1.19, 0.88, 1.00, 0.51, 0.03, 0.17, 1.01, 0.44, 0.17, -0.11 }; float z[NumIn]; float *out, xo[NumXOut], yo[NumYOut], xc, yc; float u[NumXOut][NumYOut], v[NumXOut][NumYOut], uvtmp; ng_size_t len_dims[2]; int appid,wid,dataid,cnid,vfid,vcid,gkswid; int srlist, grlist; int i, j, ier; const char *wks_type = "ncgm"; /* * Initialize the high level utility library */ NhlInitialize(); /* * Create an application context. Set the app dir to the current directory * so the application looks for a resource file in the working directory. */ srlist = NhlRLCreate(NhlSETRL); grlist = NhlRLCreate(NhlGETRL); NhlRLClear(srlist); NhlRLSetString(srlist,NhlNappUsrDir,"./"); NhlCreate(&appid,"nm03",NhlappClass,NhlDEFAULT_APP,srlist); len_dims[0] = 9; len_dims[1] = 3; if (!strcmp(wks_type,"ncgm") || !strcmp(wks_type,"NCGM")) { /* * Create a meta file workstation. */ NhlRLClear(srlist); NhlRLSetString(srlist,NhlNwkMetaName,"./nm03c.ncgm"); NhlCreate(&wid,"nm03Work", NhlncgmWorkstationClass,NhlDEFAULT_APP,srlist); } else if (!strcmp(wks_type,"x11") || !strcmp(wks_type,"X11")) { /* * Create an X workstation. */ NhlRLClear(srlist); NhlRLSetInteger(srlist,NhlNwkPause,True); NhlCreate(&wid,"nm03Work",NhlcairoWindowWorkstationClass,NhlDEFAULT_APP,srlist); } else if (!strcmp(wks_type,"oldps") || !strcmp(wks_type,"OLDPS")) { /* * Create an older-style PostScript workstation. */ NhlRLClear(srlist); NhlRLSetString(srlist,NhlNwkPSFileName,"./nm03c.ps"); NhlCreate(&wid,"nm03Work",NhlpsWorkstationClass,NhlDEFAULT_APP,srlist); } else if (!strcmp(wks_type,"oldpdf") || !strcmp(wks_type,"OLDPDF")) { /* * Create an older-style PDF workstation. */ NhlRLClear(srlist); NhlRLSetString(srlist,NhlNwkPDFFileName,"./nm03c.pdf"); NhlCreate(&wid,"nm03Work",NhlpdfWorkstationClass,NhlDEFAULT_APP,srlist); } else if (!strcmp(wks_type,"pdf") || !strcmp(wks_type,"PDF") || !strcmp(wks_type,"ps") || !strcmp(wks_type,"PS")) { /* * Create a cairo PS/PDF workstation. */ NhlRLClear(srlist); NhlRLSetString(srlist,NhlNwkFileName,"./nm03c"); NhlRLSetString(srlist,NhlNwkFormat,(char*)wks_type); NhlCreate(&wid,"nm03Work",NhlcairoDocumentWorkstationClass,NhlDEFAULT_APP,srlist); } else if (!strcmp(wks_type,"png") || !strcmp(wks_type,"PNG")) { /* * Create a cairo PNG workstation. */ NhlRLClear(srlist); NhlRLSetString(srlist,NhlNwkFileName,"./nm03c"); NhlRLSetString(srlist,NhlNwkFormat,(char*)wks_type); NhlCreate(&wid,"nm03Work",NhlcairoImageWorkstationClass,NhlDEFAULT_APP,srlist); } for (i = 0 ; i < NumIn ; i++) { z[i] = (x[i]-0.25)*(x[i]-0.25) + (y[i]-0.50)*(y[i]-0.50); } xc = 1./(NumXOut-1.); for( i = 0; i < NumXOut; i++ ) { xo[i] = i * xc; } yc = 1./(NumYOut-1.); for( i = 0; i < NumYOut; i++ ) { yo[i] = i * yc; } /* * Turn on gradient estimate calculations, flag calculation of * aspects and slopes, set flag to return aspects and slopes in * radians. */ c_nnseti("igr",1); c_nnseti("sdi",1); c_nnseti("rad",1); /* * Do the interpolation. */ out = c_natgrids(NumIn, y, x, z, NumYOut, NumXOut, yo, xo, &ier); if (ier != 0) { printf (" Error return from c_natgrids = %d\n",ier); } /* * Get Workstation ID. */ NhlRLClear(grlist); NhlRLGetInteger(grlist,NhlNwkGksWorkId,&gkswid); NhlGetValues(wid,grlist); /* * There's no HLU object for surface plots yet, so we need to call the * LLUs to get a surface plot. */ gactivate_ws (gkswid); drwsrfc(NumYOut,NumXOut,yo,xo,out,10.,-25.,50.); gdeactivate_ws (gkswid); /* * Get the aspects. */ for (i = 0 ; i < NumXOut ; i++) { for (j = 0 ; j < NumYOut ; j++) { c_nngetaspects(i, j, &uvtmp, &ier); u[i][j] = sin(uvtmp); v[i][j] = cos(uvtmp); } } /* * Create a VectorField object; then use its id as the value of * the 'vcVectorFieldData' resource when creating the VectorPlot object. */ len_dims[0] = NumXOut; len_dims[1] = NumYOut; NhlRLClear(srlist); NhlRLSetMDFloatArray(srlist,NhlNvfUDataArray,&v[0][0],2,len_dims); NhlRLSetMDFloatArray(srlist,NhlNvfVDataArray,&u[0][0],2,len_dims); NhlCreate(&vfid,"vectorfield",NhlvectorFieldClass,appid,srlist); NhlRLClear(srlist); NhlRLSetInteger(srlist,NhlNvcVectorFieldData,vfid); NhlCreate(&vcid,"VectorPlot",NhlvectorPlotClass,wid,srlist); NhlDraw(vcid); NhlFrame(wid); /* * Get the slopes. */ for (i = 0 ; i < NumXOut ; i++) { for (j = 0 ; j < NumYOut ; j++) { c_nngetslopes(i, j, &uvtmp, &ier); u[i][j] = RAD2DEG*uvtmp; } } /* * Create a ScalarField data object using the data set defined above. */ NhlRLClear(srlist); len_dims[0] = NumXOut; len_dims[1] = NumYOut; NhlRLSetMDFloatArray(srlist,NhlNsfDataArray,&u[0][0],2,len_dims); NhlCreate(&dataid,"data",NhlscalarFieldClass,appid,srlist); NhlRLClear(srlist); NhlRLSetInteger(srlist,NhlNcnScalarFieldData,dataid); NhlCreate(&cnid,"ContourPlot",NhlcontourPlotClass,wid,srlist); NhlDraw(cnid); NhlFrame(wid); /* * Destroy the objects created, close the HLU library and exit. */ NhlDestroy(vfid); NhlDestroy(dataid); NhlDestroy(cnid); NhlDestroy(wid); NhlDestroy(appid); NhlClose(); exit(0); } float armn(int, float *); float armx(int, float *); /* * Procedure drwsrfc uses the NCAR Graphics function c_srface to * draw a surface plot of the data values in z. * * The point of observation is calculated from the 3D coordinate * (s1, s2, s3); the point looked at is the center of the surface. * * nx - Dimension of the X-axis variable x. * ny - Dimension of the Y-axis variable y. * x - An array of X-axis values. * y - An array of Y-axis values. * z - An array dimensioned for nx x ny containing data * values for each (X,Y) coordinate. * s1 - X value for the eye position. * s2 - Y value for the eye position. * s3 - Z value for the eye position. * iwk - Work space dimensioned for at least 2*nx*ny. * */ void drwsrfc (int nx, int ny, float *x, float *y, float *z, float s1, float s2, float s3) { float xmn, xmx, ymn, ymx, zmn, zmx, eye[6]; int *iwk; iwk = (int *)malloc(2*nx*ny*sizeof(int)); /* * Find the extreme data values. */ xmn = armn(nx, x); xmx = armx(nx, x); ymn = armn(ny, y); ymx = armx(ny, y); zmn = armn(nx * ny, z); zmx = armx(nx * ny, z); if ( (s1 == 0.) && (s2 == 0.) && (s3 == 0.) ) { s1 = -3.; s2 = -1.5; s3 = 0.75; } eye[0] = 5. * s1 * (xmx-xmn); eye[1] = 5. * s2 * (ymx-ymn); eye[2] = 5. * s3 * (zmx-zmn); eye[3] = 0.5 * (xmx-xmn); eye[4] = 0.5 * (ymx-ymn); eye[5] = 0.5 * (zmx-zmn); /* * Plot the surface. */ c_srface (x,y,z,iwk,nx,nx,ny,eye,0.); free(iwk); } float armn(int num, float *x) { int i; float amin; amin = x[0]; for (i = 1 ; i < num ; i++) if (x[i] < amin) amin = x[i]; return(amin); } float armx(int num, float *x) { int i; float amax; amax = x[0]; for (i = 1 ; i < num ; i++) if (x[i] > amax) amax = x[i]; return(amax); }
32.587258
83
0.544118
083a7623c22205ef0af22d1d172c17e1a1e0b799
18,646
c
C
dataprojectnew.c
mahekkhathurani/Library_Management_System
9a7a327dbf2f8e3f56ea6ef6592ba8404872fe08
[ "MIT" ]
null
null
null
dataprojectnew.c
mahekkhathurani/Library_Management_System
9a7a327dbf2f8e3f56ea6ef6592ba8404872fe08
[ "MIT" ]
null
null
null
dataprojectnew.c
mahekkhathurani/Library_Management_System
9a7a327dbf2f8e3f56ea6ef6592ba8404872fe08
[ "MIT" ]
null
null
null
#include<stdio.h> #include<string.h> #include<stdlib.h> #define IN 1 #define OUT 0 void Addbook(); void Searchbook(); void Displaybook(); void Author(); void Titlelist(); void Stock(); void Issue(); void bookret(); void Addmembr(); void Exit(); char info[500]; struct { int bid; char bname[25] ; char author[25]; int nooftitles; char titles[500]; int status; }book; struct { int mid; char mname[25] ; char department[25]; int availibcard; int phno; }membr; //initializing the files used in the program FILE *librecord; FILE *membrrecord; FILE *fp1; FILE *fp2; FILE *temp1; FILE *temp2; int main() { int choice=0,i; printf("\n\t\t<<LIBRARY MANAGEMENT SYSTEM>>\n"); do{ printf("\n\t~~MENU~~\n 1> Add A New Book\n 2> Search a book \n 3> Display Complete Information\n 4> Display All Books of An Author\n 5> List Titles of a Book\n 6> List Count of Books (Issued & In Stock)\n 7> To Issue a Book \n 8> To Return a Book \n 9> Add A New Member\n 10> Exit the program\n\n\t Enter your choice <1-10>: "); scanf("%i",&choice); switch (choice) { case 1: Addbook(); break; case 2: Searchbook(); break; case 3: Displaybook(); break; case 4: Author(); break; case 5: Titlelist(); break; case 6: Stock(); break; case 7: Issue(); break; case 8: bookret(); break; case 9: Addmembr(); break; case 10: Exit(); default: printf(" ! Invalid Input...\n"); } }while(choice!=10); return (0); } void Addbook() { int i;book.status=IN; //opening the librecord file librecord = fopen("librecord.txt","a+"); printf("Enter The uniqueid of The Book :(Integer) \n"); scanf("%d",&book.bid); printf("Enter The Name of The Book :\n"); scanf("%s",book.bname); printf("Enter The Name of Author :\n"); scanf("%s",book.author); printf("Enter The Number of Titles Of The Book:(Integer)\n"); scanf("%d",&book.nooftitles); fprintf(librecord,"\n%d\t\t%s\t\t%s\t\t%d\t\t%d\t\t",book.bid,book.bname,book.author,book.status,book.nooftitles); printf("Enter The Titles Of The Book : \n"); for(i=0;i<book.nooftitles;i++) { scanf("%s",book.titles); fprintf(librecord,"%s\t",book.titles); } fclose(librecord); printf(" ## A New Book has been Added Successfully...\n"); } void Displaybook() { librecord = fopen("librecord.txt","a+"); printf("\nBookid\t\tName\t\tAuthor\t\tStatus\t\tNo.\t\tTitles\n",info); do { fgets(info,500,librecord); printf("%s\n",info); }while(!feof(librecord)); fclose(librecord); membrrecord = fopen("membrrecord.txt","a+"); printf("\nMid\t\tName\t\tDept\t\tPh.no\t\tAvailable cards\n"); do { fgets(info,500,membrrecord); printf("%s\n",info); }while(!feof(membrrecord)); fclose(membrrecord); } void Searchbook() { int i; char Target[25],stats[3]; int Found=0; if((librecord=fopen("librecord.txt","r"))==NULL) printf(" ! The File is Empty...\n\n"); else { printf("\nEnter The Name Of Book : "); scanf("%s",Target); while(!feof(librecord)&& Found==0) { fscanf(librecord,"%d %s %s %d %d", &book.bid,book.bname,book.author,&book.status,&book.nooftitles); if(strcmp(Target,book.bname)==0) Found=1; for(i=0;i<book.nooftitles;i++) fscanf(librecord,"%s",book.titles); } if(Found) { if(book.status==IN) strcpy(stats,"IN"); else strcpy(stats,"OUT"); printf("\nThe Unique ID of The Book: %d\nThe Name of Book is: %s\nThe Author is: %s\nThe Book Status:%s\n\n",book.bid,book.bname,book.author,stats); } else if(!Found) printf("! There is no such Entry...\n"); fclose(librecord); } } void Author() { int i; char Target[500]; int Found=0; if((librecord=fopen("librecord.txt","r"))==NULL) printf(" ! The file is empty... \n\n"); else { printf("\nEnter The Name Of Author : "); scanf("%s",Target); printf("\nBooks:"); while(!feof(librecord)) { fscanf(librecord,"%d %s %s %d %d",&book.bid,book.bname,book.author,&book.status,&book.nooftitles); if(strcmp(Target,book.author)==0) { Found=1; printf("\n\t%s",book.bname); } for(i=0;i<book.nooftitles;i++) fscanf(librecord,"%s",book.titles); } if(!Found) printf(" ! There is no such Entry...\n"); fclose(librecord); } } void Titlelist() { int i; char Target[500]; int Found=0; if((librecord=fopen("librecord.txt","r"))==NULL) printf(" ! The file is empty...\n\n"); else { printf("\nEnter The Book Name :"); scanf("%s",Target); while(!feof(librecord)&& Found==0) { fscanf(librecord,"%d %s %s %d %d",&book.bid,book.bname,book.author,&book.status,&book.nooftitles); if(strcmp(Target,book.bname)==0) { Found=1; break; } for(i=0;i<book.nooftitles;i++) fscanf(librecord,"%s",book.titles); } if(Found) { printf("\nThe Titles:\n"); for(i=0;i<book.nooftitles;i++) { fscanf(librecord,"%s",book.titles); printf("%d.%s..\n",i+1,book.titles); } } else if(!Found) printf(" ! There is no such Entry...\n"); fclose(librecord); } } void Stock() { int i,issuecount=0,stockcount=0; char Issued[100][20]; int Found=0; if((librecord=fopen("librecord.txt","r"))==NULL) printf(" ! The file is empty...\n\n"); else { while(!feof(librecord)) { fscanf(librecord,"%d %s %s %d %d",&book.bid,book.bname,book.author,&book.status,&book.nooftitles); if(book.status==IN) { stockcount++; } else { issuecount++; } for(i=0;i<book.nooftitles;i++) fscanf(librecord,"%s",book.titles); } fclose(librecord); printf("\nCount of issued Books:%d\nCount of Books in Stock:%d\n",issuecount,stockcount-1); } } void Addmembr() { int i; membrrecord = fopen("membrrecord.txt","a+"); printf("Enter The userid of the Member: (Integer) :\n"); scanf("%d",&membr.mid); printf("Enter The Name of the Member :\n"); scanf("%s",membr.mname); printf("Enter The Department\n"); scanf("%s",membr.department); printf("Enter The phone number of the member:\n"); scanf("%d",&membr.phno); membr.availibcard=5; fprintf(membrrecord,"\n%d\t\t%s\t\t%s\t\t%d\t\t%d\t\t",membr.mid,membr.mname,membr.department,membr.phno,membr.availibcard); fclose(membrrecord); printf("\n ## Added A New member Successfully...\n"); } void Issue() { int mid,i,Found1=0,Found2=0;char issubookname[20]; //temp1=librecord;temp2=membrrecord; printf("\nEnter The userid of the Member : \n"); scanf("%d",&mid); if((membrrecord=fopen("membrrecord.txt","r"))==NULL) printf(" ! The file is empty...\n\n"); else { while(!feof(membrrecord)&& Found1==0) { fscanf(membrrecord,"%d %s %s %d %d ",&membr.mid,membr.mname,membr.department,&membr.phno,&membr.availibcard); if(mid==membr.mid) { Found1=1; } } if(Found1) { if(membr.availibcard<1) { printf(" ! Library card not available...\n"); } else { printf("\nEnter The Name of book :"); scanf("%s",issubookname); if((librecord=fopen("librecord.txt","r"))==NULL) printf(" ! The file is empty...\n\n"); else { while(!feof(librecord)&& Found2==0) { fscanf(librecord,"%d %s %s %d %d", &book.bid,book.bname,book.author,&book.status,&book.nooftitles); if(strcmp(issubookname,book.bname)==0) Found2=1; for(i=0;i<book.nooftitles;i++) fscanf(librecord,"%s",book.titles); } if(Found2) { if(book.status==0) { printf(" ! Book already issued...\n"); } else { fp2=fopen("fp2.txt","w"); if((temp2=fopen("membrrecord.txt","r"))==NULL) printf(" ! The file is empty...\n\n"); else { while(!feof(temp2)) { fscanf(temp2,"%d %s %s %d %d ",&membr.mid,membr.mname,membr.department,&membr.phno,&membr.availibcard); if(mid==membr.mid) { membr.availibcard--; fprintf(fp2,"\n %d\t\t%s\t\t%s\t\t%d\t\t%d\t\t",membr.mid,membr.mname,membr.department,membr.phno, membr.availibcard); } else{ fprintf(fp2,"\n %d\t\t%s\t\t%s\t\t%d\t\t%d\t\t",membr.mid,membr.mname,membr.department,membr.phno,membr.availibcard);} if(feof(temp2)) break; } } fclose(temp2); fclose(fp2); fp1=fopen("fp1.txt","w"); if((temp1=fopen("librecord.txt","r"))==NULL) printf(" ! The file is empty...\n\n"); else { while(!feof(temp1)) { fscanf(temp1,"%d %s %s %d %d", &book.bid,book.bname,book.author,&book.status,&book.nooftitles); if(feof(temp1)) break; if(strcmp(issubookname,book.bname)!=0) { fprintf(fp1,"\n%d\t\t%s\t\t%s\t\t%d\t\t%d\t\t",book.bid,book.bname,book.author,book.status,book.nooftitles); } else { fprintf(fp1,"\n%d\t\t%s\t\t%s\t\t%d\t\t%d\t\t",book.bid,book.bname,book.author,0,book.nooftitles); } for(i=0;i<book.nooftitles;i++) { fscanf(temp1,"%s",book.titles); fprintf(fp1,"%s\t",book.titles); } } } fclose(temp1); fclose(fp1); fclose(librecord); fclose(membrrecord); remove("librecord.txt"); rename("fp1.txt","librecord.txt"); remove("membrrecord.txt"); rename("fp2.txt","membrrecord.txt"); printf(" ## Book Successfully issued...\n"); } } else if(!Found2) printf(" ! There is no such Book...\n"); } } } else if(!Found1) printf(" ! Invalid User id...\n"); } } void bookret() { int mid,i,Found1=0,Found2=0,flag=0;char retbookname[20]; temp1=librecord;temp2=membrrecord; printf("\nEnter The userid of the Member :\n"); scanf("%d",&mid); if((membrrecord=fopen("membrrecord.txt","r"))==NULL) printf(" ! The file is empty...\n\n"); else { while(!feof(membrrecord)&& Found1==0) { fscanf(membrrecord,"%d %s %s %d %d ",&membr.mid,membr.mname,membr.department,&membr.phno,&membr.availibcard); if(mid==membr.mid) { Found1=1; } } if(Found1) { if(membr.availibcard>=5) { printf(" ! Error...\n"); } else { printf("\nEnter The Name of book :"); scanf("%s",retbookname); if((librecord=fopen("librecord.txt","r"))==NULL) printf(" ! The file is empty\n\n"); else { while(!feof(librecord)&& Found2==0) { fscanf(librecord,"%d %s %s %d %d", &book.bid,book.bname,book.author,&book.status,&book.nooftitles); if(strcmp(retbookname,book.bname)==0) Found2=1; for(i=0;i<book.nooftitles;i++) fscanf(librecord,"%s",book.titles); } if(Found2) { if(book.status==1) { printf(" ! Error:Book already in stock...\n"); } else { fp2=fopen("fp2.txt","w"); if((temp2=fopen("membrrecord.txt","a+"))==NULL) printf(" ! The file is empty...\n\n"); else { while(!feof(temp2)) { fscanf(temp2,"%d %s %s %d %d ",&membr.mid,membr.mname,membr.department,&membr.phno,&membr.availibcard); if(mid==membr.mid) { membr.availibcard++; fprintf(fp2,"\n %d\t\t%s\t\t%s\t\t%d\t\t%d\t\t",membr.mid,membr.mname,membr.department,membr.phno, membr.availibcard); } else { fprintf(fp2,"\n %d\t\t%s\t\t%s\t\t%d\t\t%d\t\t",membr.mid,membr.mname,membr.department,membr.phno,membr.availibcard); } if(feof(temp2)) break; } } fclose(temp2); fclose(fp2); fp1=fopen("fp1.txt","w"); if((temp1=fopen("librecord.txt","r"))==NULL) printf(" ! The file is empty...\n\n"); else { while(!feof(temp1)) { fscanf(temp1,"%d %s %s %d %d", &book.bid,book.bname,book.author,&book.status,&book.nooftitles); if(feof(temp1)) break; if(strcmp(retbookname,book.bname)!=0) { fprintf(fp1,"\n%d\t\t%s\t\t%s\t\t%d\t\t%d\t\t",book.bid,book.bname,book.author,book.status,book.nooftitles); } else { fprintf(fp1,"\n%d\t\t%s\t\t%s\t\t%d\t\t%d\t\t",book.bid,book.bname,book.author,1,book.nooftitles); } for(i=0;i<book.nooftitles;i++) { fscanf(temp1,"%s",book.titles); fprintf(fp1,"%s\t",book.titles); } } } fclose(temp1); fclose(fp1); fclose(librecord); fclose(membrrecord); printf(" ## Book Successfully Returned...\n"); remove("librecord.txt"); rename("fp1.txt","librecord.txt"); remove("membrrecord.txt"); rename("fp2.txt","membrrecord.txt"); } } else if(!Found2) printf("! There is no such Book...\n"); } } } else if(!Found1) printf("! Invalid User id...\n"); } } void Exit() { exit(0); }
34.150183
333
0.395742
083fa79988514876adb77fe7e70ad4a7f4d79673
821
c
C
pyramid_pattern.c
Santhoshkumard11/Day_2_Day_C-C-
403c8b68d0e94a17ad204c3df1e07d46003319a6
[ "Unlicense" ]
1
2019-04-07T00:55:36.000Z
2019-04-07T00:55:36.000Z
pyramid_pattern.c
Santhoshkumard11/Day_2_Day_C-C-
403c8b68d0e94a17ad204c3df1e07d46003319a6
[ "Unlicense" ]
null
null
null
pyramid_pattern.c
Santhoshkumard11/Day_2_Day_C-C-
403c8b68d0e94a17ad204c3df1e07d46003319a6
[ "Unlicense" ]
null
null
null
//Pascals Triangle #include<stdio.h> int main() { int input,input2,intr=2; // for(int i=0;i<211;i++) // printf("*"); printf("\nEnter the number for generating triangle:"); scanf("%d",&input); input2 = input; //Loop for the total iteration for(int itr1=1;itr1<=input;itr1++,printf("\n"),(intr+=2),(input2--)) { // Loop for spaces to be printed //printf("1"); for(int itr2=1;itr2<=input2;itr2++) { printf(" "); } //For printing pyramind for(int itr3=1;itr3<intr;itr3++) { printf("*"); } } getch(); return(0); } /* Input: 4 Output: * *** ***** ******* */ //#Created By SANTHOSH KUMAR //07/04/2019
14.660714
73
0.447016
083fb26f603dcfd9df8180b0e972770df0862bea
1,809
h
C
ImageCompress/WAImgCompressUtil.h
rickykaka1899/WebpCompress
25d4b56cde326ff64cbcef5df526ba09e4f8dab0
[ "MIT" ]
null
null
null
ImageCompress/WAImgCompressUtil.h
rickykaka1899/WebpCompress
25d4b56cde326ff64cbcef5df526ba09e4f8dab0
[ "MIT" ]
null
null
null
ImageCompress/WAImgCompressUtil.h
rickykaka1899/WebpCompress
25d4b56cde326ff64cbcef5df526ba09e4f8dab0
[ "MIT" ]
null
null
null
/*! @header WAImgCompressUtil.h @abstract 图片压缩工具 @author Lemon @copyright ufida @version 1.00 2013/07/11 Creation */ #import <Foundation/Foundation.h> #define WA_CWAIMGCOMPRESS_MAXFILEKB 200 #define WA_CWAIMGCOMPRESS_IMGWIDTH 640 #define WA_CWAIMGCOMPRESS_ISSCALE YES #define WA_CWAIMGCOMPRESS_ROUCHWID 1280.0f /*! @class @abstract 图片压缩:按照指定要求压缩图片 */ @interface CWAImgCompressUtil : NSObject #pragma mark - #pragma mark - 位图压缩 /*! @method @abstract 将图片按照指定清晰度压缩到指定大小 @discussion 返回压缩处理后的图片 @param aImage 将要被压缩的图片 @param aSize 压缩目标大小 @param aRate 清晰度比率,越大越清晰。最大有效值为1.0,最小有效值为0 @result 返回结果不需要释放 */ + (UIImage *)compressImageSize:(UIImage *)aImage toCGSize:(CGSize)aSize withRate:(float)aRate; /*! @method @abstract 将图片按照指定清晰度截取原图片指定位置的图片 @discussion 返回截取处理后的图片 @param aImage 将要被截取的图片 @param aFrame 目标截取位置和大小, aFrame.origin表示截取区域的左上角, aFrame.size表示截取区域的尺寸 @param aRate 清晰度比率,越大越清晰。最大有效值为1.0,最小有效值为0 @result 返回结果不需要释放 */ + (UIImage *)clippingImageSize:(UIImage *)aImage withFrame:(CGRect)aFrame withRate:(float)aRate; #pragma mark - #pragma mark - 数据压缩 /*! @method @abstract 压缩图片存储空间大小,并返回NSData @discussion 返回值类型为NSData @param aImage 图片数据 @param aQuality 压缩参数,参数越小,返回的NSData越小。有效范围为0.0~1.0 @result 返回结果不需要释放 */ + (NSData *)compressImageToData:(UIImage *)aImage withQuality:(float)aQuality; #pragma mark - #pragma mark - WA-规格压缩 /*! @method @abstract 以WA的通用标准和方法压缩图片尺寸和存储空间,此压缩为有损压缩 @discussion 返回压缩后的NSData, 此NSData为UIImage的单向压缩,如果将此NSData还原为UIImage格式, 不能由还原出的UIImage得到与返回的NSData同样大小的NSData。 @param aImage 需要被压缩的图片 @result 返回结果不需要释放 */ + (NSData *)compressImageWAStyle:(UIImage *)aImage; @end
22.060976
58
0.705362
083ff9b0282fddefb3eeb6056de07038a3c731b4
201
h
C
src/characterviewer.h
HououinKyouma29/impacto
8d4bf2605f54630b1b1cf7dbf3d05e5fd0249c2d
[ "ISC" ]
45
2020-02-01T19:10:13.000Z
2022-03-11T01:45:52.000Z
src/characterviewer.h
HououinKyouma29/impacto
8d4bf2605f54630b1b1cf7dbf3d05e5fd0249c2d
[ "ISC" ]
7
2020-01-26T17:30:00.000Z
2021-09-26T10:00:46.000Z
src/characterviewer.h
HououinKyouma29/impacto
8d4bf2605f54630b1b1cf7dbf3d05e5fd0249c2d
[ "ISC" ]
11
2020-02-01T23:01:50.000Z
2021-12-15T14:39:27.000Z
#pragma once #include "impacto.h" #include <glm/glm.hpp> namespace Impacto { namespace CharacterViewer { void Init(); void Update(float dt); } // namespace CharacterViewer } // namespace Impacto
14.357143
31
0.726368
0840cb027a386cd54f86667a6789ff8695f078db
3,598
h
C
arch/x86/x86_assembler.h
geeksonsecurity/TinyInst
15e93b9d78d6dae20a8f8204bc4ed50b27a0ed6a
[ "Apache-2.0" ]
802
2020-06-04T17:55:15.000Z
2022-03-31T08:47:56.000Z
arch/x86/x86_assembler.h
geeksonsecurity/TinyInst
15e93b9d78d6dae20a8f8204bc4ed50b27a0ed6a
[ "Apache-2.0" ]
47
2020-06-09T09:30:25.000Z
2022-03-08T10:45:14.000Z
arch/x86/x86_assembler.h
geeksonsecurity/TinyInst
15e93b9d78d6dae20a8f8204bc4ed50b27a0ed6a
[ "Apache-2.0" ]
80
2020-06-04T19:31:45.000Z
2022-03-28T15:08:06.000Z
/* Copyright 2021 Google LLC Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https ://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #ifndef ARCH_X86_X86_ASSEMBLER_H #define ARCH_X86_X86_ASSEMBLER_H extern "C" { #include "xed/xed-interface.h" } #include "assembler.h" #include "tinyinst.h" class X86Assembler : public Assembler { public: using Assembler::Assembler; virtual ~X86Assembler() {} void Init() override; bool DecodeInstruction(Instruction &inst, const unsigned char *buffer, unsigned int buffer_size) override; void FixInstructionAndOutput(ModuleInfo *module, Instruction &inst, const unsigned char *input, const unsigned char *input_address_remote, bool convert_call_to_jmp = false) override; void HandleBasicBlockEnd( const char *address, ModuleInfo *module, std::set<char *> *queue, std::list<std::pair<uint32_t, uint32_t>> *offset_fixes, Instruction &inst, const char *code_ptr, size_t offset, size_t last_offset) override; void JmpAddress(ModuleInfo *module, size_t address) override; void Nop(ModuleInfo *module) override; void Breakpoint(ModuleInfo *module) override; void Crash(ModuleInfo *module) override; void OffsetStack(ModuleInfo *module, int32_t offset) override; bool IsRipRelative(ModuleInfo *module, Instruction &inst, size_t instruction_address, size_t *mem_address) override; void TranslateJmp(ModuleInfo *module, ModuleInfo *target_module, size_t original_target, IndirectBreakpoinInfo& breakpoint_info, bool global_indirect, size_t previous_offset) override; void InstrumentLocalIndirect(ModuleInfo *module, Instruction &inst, size_t instruction_address, size_t bb_address) override; void InstrumentGlobalIndirect(ModuleInfo *module, Instruction &inst, size_t instruction_address) override; void FixOffset(ModuleInfo *module, uint32_t jmp_offset, uint32_t target_offset) override; private: inline void FixDisp4(ModuleInfo *module, int32_t disp); void ReadStack(ModuleInfo *module, int32_t offset); void WriteStack(ModuleInfo *module, int32_t offset); void MovIndirectTarget(ModuleInfo *module, Instruction &inst, size_t original_address, int32_t stack_offset); void InstrumentRet(ModuleInfo *module, Instruction &inst, size_t instruction_address, TinyInst::IndirectInstrumentation mode, size_t bb_address); void PushReturnAddress(ModuleInfo *module, uint64_t return_address); int xed_mmode_; }; #endif // ARCH_X86_X86_ASSEMBLER_H
37.479167
74
0.632018
0840f63e578223117fd1ea8f2ebba76bc148c8c9
2,110
h
C
src/game/missionchooser/vgui/location_editor/location_layout_panel.h
BlueNovember/alienswarm-reactivedrop
ffaca58157f9fdd36e5c48e8d7d34d8ca958017e
[ "CC0-1.0" ]
null
null
null
src/game/missionchooser/vgui/location_editor/location_layout_panel.h
BlueNovember/alienswarm-reactivedrop
ffaca58157f9fdd36e5c48e8d7d34d8ca958017e
[ "CC0-1.0" ]
null
null
null
src/game/missionchooser/vgui/location_editor/location_layout_panel.h
BlueNovember/alienswarm-reactivedrop
ffaca58157f9fdd36e5c48e8d7d34d8ca958017e
[ "CC0-1.0" ]
null
null
null
#ifndef _INCLUDED_LOCATION_LAYOUT_PANEL_H #define _INCLUDED_LOCATION_LAYOUT_PANEL_H #ifdef _WIN32 #pragma once #endif #include <vgui_controls/Panel.h> namespace vgui { class ImagePanel; }; class CLocation_Editor_Frame; class CLocation_Layout_Panel; // ==================================================================================================== // a panel showing an individual location class CLocation_Panel : public vgui::Panel { DECLARE_CLASS_SIMPLE( CLocation_Panel, vgui::Panel ); public: CLocation_Panel( Panel *parent, const char *name ); virtual ~CLocation_Panel(); virtual void OnThink(); virtual void OnMousePressed( vgui::MouseCode code ); virtual void OnMouseReleased( vgui::MouseCode code ); virtual void PerformLayout(); virtual void ApplySchemeSettings( vgui::IScheme *scheme ); void SetLocationID( int i ); int m_iLocationID; private: bool IsCursorOverHex(); void UpdateHexColor(); vgui::ImagePanel *m_pHexImage; vgui::Label *m_pIDLabel; KeyValues *m_actionMessage; CLocation_Layout_Panel *m_pLayoutPanel; int m_iLastXPos; int m_iLastYPos; // dragging hexes around bool m_bDragging; Vector2D m_MouseOffset; }; //----------------------------------------------------------------------------- // Purpose: Shows all location hexes //----------------------------------------------------------------------------- class CLocation_Layout_Panel : public vgui::Panel { DECLARE_CLASS_SIMPLE( CLocation_Layout_Panel, vgui::Panel ); public: CLocation_Layout_Panel( Panel *parent, vgui::Panel *pActionTarget, const char *name ); virtual ~CLocation_Layout_Panel(); virtual void OnThink(); virtual void PerformLayout(); virtual void ApplySchemeSettings(vgui::IScheme *pScheme); void CreateLocationPanels(); CLocation_Editor_Frame* GetLocationEditorFrame() { return m_pEditorFrame; } CUtlVector<CLocation_Panel*> m_LocationPanels; vgui::Panel *m_pActionTarget; vgui::ImagePanel *m_pBgImage; CLocation_Editor_Frame* m_pEditorFrame; }; #endif // _INCLUDED_LOCATION_LAYOUT_PANEL_H
28.133333
104
0.662559
08410043c1566b4992aaaadb10e9cad38d8590a8
229
h
C
LocalizableTest/LocalizableTest/UmengViewController.h
chenzhuoyj/StudyApp
bf168c07a7f38bf4819d9cb1cfe65fea561c74ee
[ "MIT" ]
null
null
null
LocalizableTest/LocalizableTest/UmengViewController.h
chenzhuoyj/StudyApp
bf168c07a7f38bf4819d9cb1cfe65fea561c74ee
[ "MIT" ]
null
null
null
LocalizableTest/LocalizableTest/UmengViewController.h
chenzhuoyj/StudyApp
bf168c07a7f38bf4819d9cb1cfe65fea561c74ee
[ "MIT" ]
null
null
null
// // UmengViewController.h // LocalizableTest // // Created by cz on 16/6/18. // Copyright © 2016年 cz. All rights reserved. // #import "DJLBaseViewController.h" @interface UmengViewController : DJLBaseViewController @end
16.357143
54
0.724891
08410f2a644c76ec8c35f5d7079b600bb77cfd6e
395
h
C
testu01/build/include/udeng.h
vestincloud/LizardPwlcm
1166d2d4c3dfa1bc5b2977c15b673d0ac5794607
[ "Apache-2.0" ]
2
2015-11-29T20:42:04.000Z
2015-12-29T14:09:05.000Z
testu01/build/include/udeng.h
vestincloud/LizardPwlcm
1166d2d4c3dfa1bc5b2977c15b673d0ac5794607
[ "Apache-2.0" ]
null
null
null
testu01/build/include/udeng.h
vestincloud/LizardPwlcm
1166d2d4c3dfa1bc5b2977c15b673d0ac5794607
[ "Apache-2.0" ]
null
null
null
/* udeng.h for ANSI C */ #ifndef UDENG_H #define UDENG_H #include "unif01.h" unif01_Gen * udeng_CreateDL00a (unsigned long m, unsigned long b, int k, unsigned long S[]); unif01_Gen * udeng_CreateDX02a (unsigned long m, unsigned long b, int k, unsigned long S[]); void udeng_DeleteGen (unif01_Gen * gen); #endif
14.62963
72
0.58481
0841bb18997b6b9fe82e2137842618256cf3604c
2,604
h
C
sources/VS/ThirdParty/wxWidgets/samples/opengl/pyramid/mathstuff.h
Sasha7b9Work/S8-53M2
fdc9cb5e3feb8055fd3f7885a6f6362f62ff6b6e
[ "MIT" ]
null
null
null
sources/VS/ThirdParty/wxWidgets/samples/opengl/pyramid/mathstuff.h
Sasha7b9Work/S8-53M2
fdc9cb5e3feb8055fd3f7885a6f6362f62ff6b6e
[ "MIT" ]
null
null
null
sources/VS/ThirdParty/wxWidgets/samples/opengl/pyramid/mathstuff.h
Sasha7b9Work/S8-53M2
fdc9cb5e3feb8055fd3f7885a6f6362f62ff6b6e
[ "MIT" ]
null
null
null
///////////////////////////////////////////////////////////////////////////// // Name: mathstuff.h // Purpose: Some maths used for pyramid sample // Author: Manuel Martin // Created: 2015/01/31 // Copyright: (c) 2015 Manuel Martin // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef MATHSTUFF_H #define MATHSTUFF_H //NOTE: // glm library is great for handling matrices and vectors in a OpenGL style, see // http://glm.g-truc.net/ // But it's too large for this simple sample. I coded on my own the maths needed. // A vector with 3 components class myVec3 { public: myVec3() { x = y = z = 0.0 ;} myVec3(double xd, double yd, double zd) : x(xd), y(yd), z(zd) {} myVec3(float xd, float yd, float zd) : x(double(xd)), y(double(yd)), z(double(zd)) {} ~myVec3() {} double x, y, z; }; // A vector with 4 components class myVec4 { public: myVec4() { x = y = z = w = 0.0 ;} myVec4(double xd, double yd, double zd, double wd) : x(xd), y(yd), z(zd), w(wd) {} myVec4(const myVec3& v3, double wd = 0.0) : x(v3.x), y(v3.y), z(v3.z), w(wd) {} ~myVec4() {} double x, y, z, w; }; // Overload of "-" operator myVec3 operator- (const myVec3& v1, const myVec3& v2); // Vector normalization myVec3 MyNormalize(const myVec3& v); // Dot product double MyDot(const myVec3& v1, const myVec3& v2); // Cross product myVec3 MyCross(const myVec3& v1, const myVec3& v2); // Distance between two points double MyDistance(const myVec3& v1, const myVec3& v2); // Angle between two normalized vectors, in radians double AngleBetween(const myVec3& v1, const myVec3& v2); // Matrix 4x4 by 4x1 multiplication myVec4 MyMatMul4x1(const double *m1, const myVec4& v); // Matrix 4x4 by 4x4 multiplication void MyMatMul4x4(const double *m1, const double *m2, double* mm); // Matrix inverse. Returns the determinant double MyMatInverse(const double *m, double *minv); // Matrix of rotation around an axis in the origin void MyRotate(const myVec3& axis, double angle, double *mrot); // Matrix for defining the viewing transformation void MyLookAt(const myVec3& camPos, const myVec3& camUp, const myVec3& targ, double *mt); // Matrix for defining the perspective projection with symmetric frustum void MyPerspective(double fov, double aspect, double zNear, double zFar, double *mp); // Matrix for defining the orthogonal projection void MyOrtho(double left, double right, double bottom, double top, double zNear, double zFar, double *mo); #endif // MATHSTUFF_H
30.635294
89
0.639401
0841d49afc8e9300f23a126aebaadf82c08f9f33
1,607
h
C
System/Library/PrivateFrameworks/PhotosUICore.framework/PXViewLayoutHelper.h
lechium/tvOS142Headers
c7696f6d760e4822f61b9f2c2adcd18749700fda
[ "MIT" ]
1
2020-11-11T06:05:23.000Z
2020-11-11T06:05:23.000Z
System/Library/PrivateFrameworks/PhotosUICore.framework/PXViewLayoutHelper.h
lechium/tvOS142Headers
c7696f6d760e4822f61b9f2c2adcd18749700fda
[ "MIT" ]
null
null
null
System/Library/PrivateFrameworks/PhotosUICore.framework/PXViewLayoutHelper.h
lechium/tvOS142Headers
c7696f6d760e4822f61b9f2c2adcd18749700fda
[ "MIT" ]
null
null
null
/* * This header is generated by classdump-dyld 1.5 * on Tuesday, November 10, 2020 at 10:15:24 PM Mountain Standard Time * Operating System: Version 14.2 (Build 18K57) * Image Source: /System/Library/PrivateFrameworks/PhotosUICore.framework/PhotosUICore * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos. Updated by Kevin Bradley. */ @protocol UICoordinateSpace; #import <PhotosUICore/PhotosUICore-Structs.h> @interface PXViewLayoutHelper : NSObject { CGRect _containerBounds; id<UICoordinateSpace> _coordinateSpace; CGAffineTransform _transform; CGAffineTransform _reverseTransform; } +(void)initialize; +(long long)userInterfaceLayoutDirection; +(void)setUserInterfaceLayoutDirection:(long long)arg1 ; +(void)performLayoutWithinView:(id)arg1 usingBlock:(/*^block*/id)arg2 ; -(id)init; -(id)_init; -(void)_tearDown; -(void)layoutView:(id)arg1 withAttributes:(const SCD_Struct_PX96*)arg2 ; -(double)leadingOfView:(id)arg1 ; -(double)horizontalCenterOfView:(id)arg1 ; -(double)trailingOfView:(id)arg1 ; -(double)topOfView:(id)arg1 ; -(double)verticalCenterOfView:(id)arg1 ; -(double)bottomOfView:(id)arg1 ; -(double)firstBaselineOfView:(id)arg1 ; -(double)lastBaselineOfView:(id)arg1 ; -(void)_setUpWithView:(id)arg1 ; -(CGRect)_orientedFrameOfView:(id)arg1 ; -(void)_setOrientedFrame:(CGRect)arg1 forView:(id)arg2 ; -(void)_getFirstBaseline:(double*)arg1 lastBaseline:(double*)arg2 forView:(id)arg3 withSize:(CGSize)arg4 ; @end
38.261905
130
0.71313
084832c48ecf738123f08f7665b54a51c346d305
4,634
h
C
Clients/PrinterSetupWizard/UtilTypes.h
codenotes/mDNAResponder
a9ce520dcc284d3aa49690f6e2412d482f117cb5
[ "Apache-2.0" ]
86
2015-01-28T01:44:37.000Z
2022-03-08T16:52:51.000Z
Clients/PrinterSetupWizard/UtilTypes.h
codenotes/mDNAResponder
a9ce520dcc284d3aa49690f6e2412d482f117cb5
[ "Apache-2.0" ]
3
2017-12-08T06:40:51.000Z
2019-03-18T21:45:02.000Z
Clients/PrinterSetupWizard/UtilTypes.h
codenotes/mDNAResponder
a9ce520dcc284d3aa49690f6e2412d482f117cb5
[ "Apache-2.0" ]
36
2015-01-08T16:03:31.000Z
2022-02-08T15:19:28.000Z
/* -*- Mode: C; tab-width: 4 -*- * * Copyright (c) 1997-2004 Apple Computer, Inc. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include <dns_sd.h> #include <string> #include <list> #include <DebugServices.h> class CPrinterSetupWizardSheet; #define kDefaultPriority 50 #define kDefaultQTotal 1 namespace PrinterSetupWizard { struct Printer; struct Service; struct Queue; struct Manufacturer; struct Model; typedef std::list<Queue*> Queues; typedef std::list<Printer*> Printers; typedef std::list<Service*> Services; typedef std::list<Model*> Models; struct Printer { Printer(); ~Printer(); Service* LookupService ( const std::string & type ); CPrinterSetupWizardSheet * window; HTREEITEM item; // // These are from the browse reply // std::string name; CString displayName; CString actualName; // // These keep track of the different services associated with this printer. // the services are ordered according to preference. // Services services; // // these are derived from the printer matching code // // if driverInstalled is false, then infFileName should // have an absolute path to the printers inf file. this // is used to install the printer from printui.dll // // if driverInstalled is true, then model is the name // of the driver to use in AddPrinter // bool driverInstalled; CString infFileName; CString manufacturer; CString displayModelName; CString modelName; CString portName; bool deflt; // This let's us know that this printer was discovered via OSX Printer Sharing. // We use this knowledge to workaround a problem with OS X Printer sharing. bool isCUPSPrinter; // // state // unsigned resolving; bool installed; }; struct Service { Service(); ~Service(); Queue* SelectedQueue(); void EmptyQueues(); Printer * printer; uint32_t ifi; std::string type; std::string domain; // // these are from the resolve // DNSServiceRef serviceRef; CString hostname; unsigned short portNumber; CString protocol; unsigned short qtotal; // // There will usually one be one of these, however // this will handle printers that have multiple // queues. These are ordered according to preference. // Queues queues; // // Reference count // unsigned refs; }; struct Queue { Queue(); ~Queue(); CString name; uint32_t priority; CString pdl; CString usb_MFG; CString usb_MDL; CString description; CString location; CString product; }; struct Manufacturer { CString name; Models models; Model* find( const CString & name ); }; struct Model { bool driverInstalled; CString infFileName; CString displayName; CString name; }; inline Printer::Printer() : isCUPSPrinter( false ) { } inline Printer::~Printer() { while ( services.size() > 0 ) { Service * service = services.front(); services.pop_front(); delete service; } } inline Service* Printer::LookupService ( const std::string & type ) { Services::iterator it; for ( it = services.begin(); it != services.end(); it++ ) { Service * service = *it; if ( strcmp(service->type.c_str(), type.c_str()) == 0 ) { return service; } } return NULL; } inline Service::Service() : qtotal(kDefaultQTotal) { } inline Service::~Service() { check( serviceRef == NULL ); EmptyQueues(); } inline Queue* Service::SelectedQueue() { return queues.front(); } inline void Service::EmptyQueues() { while ( queues.size() > 0 ) { Queue * q = queues.front(); queues.pop_front(); delete q; } } inline Queue::Queue() : priority(kDefaultPriority) { } inline Queue::~Queue() { } inline Model* Manufacturer::find( const CString & name ) { Models::iterator it; for ( it = models.begin(); it != models.end(); it++ ) { Model * model = *it; if ( model->name == name ) { return model; } } return NULL; } }
16.491103
81
0.655373
0849b66138129fe100bf8da53c5485bbb5c49dc6
272
h
C
Retriever/Code/Application/REAppDelegate.h
shakenetwork/Retriever
8aa3630ee2522decf841707188ee36e67a8591e2
[ "WTFPL" ]
730
2016-10-27T18:29:45.000Z
2022-03-06T20:54:49.000Z
Retriever/Code/Application/REAppDelegate.h
shakenetwork/Retriever
8aa3630ee2522decf841707188ee36e67a8591e2
[ "WTFPL" ]
13
2016-10-30T13:39:47.000Z
2020-03-27T04:38:14.000Z
Retriever/Code/Application/REAppDelegate.h
shakenetwork/Retriever
8aa3630ee2522decf841707188ee36e67a8591e2
[ "WTFPL" ]
121
2016-10-28T06:25:16.000Z
2022-02-08T15:57:01.000Z
// // REAppDelegate.h // Retriever // // Created by cyan on 2016/10/21. // Copyright © 2016年 cyan. All rights reserved. // #import <UIKit/UIKit.h> @interface REAppDelegate : UIResponder <UIApplicationDelegate> @property (strong, nonatomic) UIWindow *window; @end
16
62
0.705882
084b0289bd01448359f1eaabc615a25492fe64fe
11,250
h
C
core/StarcraftBot/BWSAL_0.9.12/include/BWAPI/Client/GameImpl.h
dtdannen/LUiGi-2
6e31f7178a48ffb886475fc59d6469d8262874c9
[ "MIT" ]
null
null
null
core/StarcraftBot/BWSAL_0.9.12/include/BWAPI/Client/GameImpl.h
dtdannen/LUiGi-2
6e31f7178a48ffb886475fc59d6469d8262874c9
[ "MIT" ]
null
null
null
core/StarcraftBot/BWSAL_0.9.12/include/BWAPI/Client/GameImpl.h
dtdannen/LUiGi-2
6e31f7178a48ffb886475fc59d6469d8262874c9
[ "MIT" ]
null
null
null
#pragma once #include <BWAPI.h> #include "GameData.h" #include "Client.h" #include "Shape.h" #include "Command.h" #include "UnitCommand.h" #include "ForceImpl.h" #include "PlayerImpl.h" #include "RegionImpl.h" #include "UnitImpl.h" #include "BulletImpl.h" #include <list> #include <map> #include <set> #include <vector> namespace BWAPI { class Force; class Player; class Unit; class GameImpl : public Game { private : int addShape(const BWAPIC::Shape &s); int addString(const char* text); int addText(BWAPIC::Shape &s, const char* text); int addCommand(const BWAPIC::Command &c); void clearAll(); GameData* data; std::vector<ForceImpl> forceVector; std::vector<PlayerImpl> playerVector; std::vector<UnitImpl> unitVector; std::vector<BulletImpl> bulletVector; RegionImpl *regionArray[5000]; std::set<Force*> forces; std::set<Player*> playerSet; std::set<Unit*> accessibleUnits;//all units that are accessible (and definitely alive) //notDestroyedUnits - accessibleUnits = all units that may or may not be alive (status unknown) std::set<Unit*> minerals; std::set<Unit*> geysers; std::set<Unit*> neutralUnits; std::set<Unit*> staticMinerals; std::set<Unit*> staticGeysers; std::set<Unit*> staticNeutralUnits; std::set<Bullet*> bullets; std::set<Position> nukeDots; std::set<Unit*> selectedUnits; std::set<Unit*> pylons; std::set<Unit*> unitsOnTileData[256][256]; std::set<Region*> regionsList; std::set< TilePosition > startLocations; std::list< Event > events; bool flagEnabled[2]; Player* thePlayer; Player* theEnemy; Player* theNeutral; std::set<Player*> _allies; std::set<Player*> _enemies; std::set<Player*> _observers; Error lastError; int textSize; public : Event makeEvent(BWAPIC::Event e); int addUnitCommand(BWAPIC::UnitCommand& c); bool inGame; GameImpl(GameData* data); void onMatchStart(); void onMatchEnd(); void onMatchFrame(); const GameData* getGameData() const; Unit *_unitFromIndex(int index); virtual std::set< Force* >& getForces(); virtual std::set< Player* >& getPlayers(); virtual std::set< Unit* >& getAllUnits(); virtual std::set< Unit* >& getMinerals(); virtual std::set< Unit* >& getGeysers(); virtual std::set< Unit* >& getNeutralUnits(); virtual std::set< Unit* >& getStaticMinerals(); virtual std::set< Unit* >& getStaticGeysers(); virtual std::set< Unit* >& getStaticNeutralUnits(); virtual std::set< Bullet* >& getBullets(); virtual std::set< Position >& getNukeDots(); virtual std::list< Event>& getEvents(); virtual Force* getForce(int forceID); virtual Player* getPlayer(int playerID); virtual Unit* getUnit(int unitID); virtual Unit* indexToUnit(int unitIndex); virtual Region* getRegion(int regionID); virtual GameType getGameType(); virtual int getLatency(); virtual int getFrameCount(); virtual int getReplayFrameCount(); virtual int getFPS(); virtual double getAverageFPS(); virtual BWAPI::Position getMousePosition(); virtual bool getMouseState(MouseButton button); virtual bool getMouseState(int button); virtual bool getKeyState(Key key); virtual bool getKeyState(int key); virtual BWAPI::Position getScreenPosition(); virtual void setScreenPosition(int x, int y); virtual void setScreenPosition(BWAPI::Position p); virtual void pingMinimap(int x, int y); virtual void pingMinimap(BWAPI::Position p); virtual bool isFlagEnabled(int flag); virtual void enableFlag(int flag); virtual std::set<Unit*>& getUnitsOnTile(int x, int y); virtual std::set<Unit*>& getUnitsInRectangle(int left, int top, int right, int bottom) const; virtual std::set<Unit*>& getUnitsInRectangle(BWAPI::Position topLeft, BWAPI::Position bottomRight) const; virtual std::set<Unit*>& getUnitsInRadius(BWAPI::Position center, int radius) const; virtual Error getLastError() const; virtual bool setLastError(BWAPI::Error e); virtual int mapWidth(); virtual int mapHeight(); virtual std::string mapFileName(); virtual std::string mapPathName(); virtual std::string mapName(); virtual std::string mapHash(); virtual bool isWalkable(int x, int y); virtual int getGroundHeight(int x, int y); virtual int getGroundHeight(TilePosition position); virtual bool isBuildable(int x, int y, bool includeBuildings = false); virtual bool isBuildable(TilePosition position, bool includeBuildings = false); virtual bool isVisible(int x, int y); virtual bool isVisible(TilePosition position); virtual bool isExplored(int x, int y); virtual bool isExplored(TilePosition position); virtual bool hasCreep(int x, int y); virtual bool hasCreep(TilePosition position); virtual bool hasPower(int tileX, int tileY, UnitType unitType = UnitTypes::None) const; virtual bool hasPower(TilePosition position, UnitType unitType = UnitTypes::None) const; virtual bool hasPower(int tileX, int tileY, int tileWidth, int tileHeight, UnitType unitType = UnitTypes::None) const; virtual bool hasPower(TilePosition position, int tileWidth, int tileHeight, UnitType unitType = UnitTypes::None) const; virtual bool hasPowerPrecise(int x, int y, UnitType unitType = UnitTypes::None ) const; virtual bool hasPowerPrecise(Position position, UnitType unitType = UnitTypes::None) const; virtual bool canBuildHere(const Unit* builder, TilePosition position, UnitType type, bool checkExplored = false); virtual bool canMake(const Unit* builder, UnitType type); virtual bool canResearch(const Unit* unit, TechType type); virtual bool canUpgrade(const Unit* unit, UpgradeType type); virtual std::set< TilePosition >& getStartLocations(); virtual void printf(const char* format, ...); virtual void sendText(const char* format, ...); virtual void sendTextEx(bool toAllies, const char *format, ...); virtual void changeRace(BWAPI::Race race); virtual bool isInGame(); virtual bool isMultiplayer(); virtual bool isBattleNet(); virtual bool isPaused(); virtual bool isReplay(); virtual void startGame(); virtual void pauseGame(); virtual void resumeGame(); virtual void leaveGame(); virtual void restartGame(); virtual void setLocalSpeed(int speed = -1); virtual bool issueCommand(const std::set<BWAPI::Unit*>& units, UnitCommand command); virtual std::set<BWAPI::Unit*>& getSelectedUnits(); virtual Player* self(); virtual Player* enemy(); virtual Player* neutral(); virtual std::set<BWAPI::Player*>& allies(); virtual std::set<BWAPI::Player*>& enemies(); virtual std::set<BWAPI::Player*>& observers(); virtual void setTextSize(int size = 1); virtual void drawText(int ctype, int x, int y, const char *format, ...); virtual void drawTextMap(int x, int y, const char *format, ...); virtual void drawTextMouse(int x, int y, const char *format, ...); virtual void drawTextScreen(int x, int y, const char *format, ...); virtual void drawBox(int ctype, int left, int top, int right, int bottom, Color color, bool isSolid = false); virtual void drawBoxMap(int left, int top, int right, int bottom, Color color, bool isSolid = false); virtual void drawBoxMouse(int left, int top, int right, int bottom, Color color, bool isSolid = false); virtual void drawBoxScreen(int left, int top, int right, int bottom, Color color, bool isSolid = false); virtual void drawTriangle(int ctype, int ax, int ay, int bx, int by, int cx, int cy, Color color, bool isSolid = false); virtual void drawTriangleMap(int ax, int ay, int bx, int by, int cx, int cy, Color color, bool isSolid = false); virtual void drawTriangleMouse(int ax, int ay, int bx, int by, int cx, int cy, Color color, bool isSolid = false); virtual void drawTriangleScreen(int ax, int ay, int bx, int by, int cx, int cy, Color color, bool isSolid = false); virtual void drawCircle(int ctype, int x, int y, int radius, Color color, bool isSolid = false); virtual void drawCircleMap(int x, int y, int radius, Color color, bool isSolid = false); virtual void drawCircleMouse(int x, int y, int radius, Color color, bool isSolid = false); virtual void drawCircleScreen(int x, int y, int radius, Color color, bool isSolid = false); virtual void drawEllipse(int ctype, int x, int y, int xrad, int yrad, Color color, bool isSolid = false); virtual void drawEllipseMap(int x, int y, int xrad, int yrad, Color color, bool isSolid = false); virtual void drawEllipseMouse(int x, int y, int xrad, int yrad, Color color, bool isSolid = false); virtual void drawEllipseScreen(int x, int y, int xrad, int yrad, Color color, bool isSolid = false); virtual void drawDot(int ctype, int x, int y, Color color); virtual void drawDotMap(int x, int y, Color color); virtual void drawDotMouse(int x, int y, Color color); virtual void drawDotScreen(int x, int y, Color color); virtual void drawLine(int ctype, int x1, int y1, int x2, int y2, Color color); virtual void drawLineMap(int x1, int y1, int x2, int y2, Color color); virtual void drawLineMouse(int x1, int y1, int x2, int y2, Color color); virtual void drawLineScreen(int x1, int y1, int x2, int y2, Color color); virtual void *getScreenBuffer(); virtual int getLatencyFrames(); virtual int getLatencyTime(); virtual int getRemainingLatencyFrames(); virtual int getRemainingLatencyTime(); virtual int getRevision(); virtual bool isDebug(); virtual bool isLatComEnabled(); virtual void setLatCom(bool isEnabled); virtual bool isGUIEnabled(); virtual void setGUI(bool enabled = true); virtual int getInstanceNumber(); virtual int getAPM(bool includeSelects = false); virtual bool setMap(const char *mapFileName); virtual void setFrameSkip(int frameSkip = 1); virtual bool hasPath(Position source, Position destination) const; virtual bool setAlliance(BWAPI::Player *player, bool allied = true, bool alliedVictory = true); virtual bool setVision(BWAPI::Player *player, bool enabled = true); virtual int elapsedTime() const; virtual void setCommandOptimizationLevel(int level = 2); virtual int countdownTimer() const; virtual const std::set<BWAPI::Region*> &getAllRegions() const; virtual BWAPI::Region *getRegionAt(int x, int y) const; virtual BWAPI::Region *getRegionAt(BWAPI::Position position) const; virtual int getLastEventTime() const; virtual bool setReplayVision(BWAPI::Player *player, bool enabled = true); virtual bool setRevealAll(bool reveal = true); }; }
45.362903
126
0.677422