answer
stringlengths
15
1.25M
<?php wp_enqueue_script('slider-slidedeck'); wp_enqueue_script('jquery-mousewheel'); $instance["Width"]=$instance["Width"]-50; ?> <div id="slidedeck_frame" class="skin-slidedeck" style="width:<?php echo $instance["Width"]?>px;height:<?php echo $instance["Height"]?>px"> <dl class="slidedeck" id="<?php echo $this->id.'-sdeck'; ?>"> <?php foreach($images as $image){ if($uslider){ $img_src['url'] = THEME_SLIDESHOW.'/'.$instance['slide'].'/'.$image['image']; $img_src['fpath'] = THEME_SLIDESHOW_DIR.'/'.$instance['slide'].'/'.$image['image']; $imgsrc = <API key>( null, $img_src,$instance["SDWidth"], $instance["SDHeight"], true ); } else { $imgsrc = <API key>( $image['image_id'], null,$instance["SDWidth"], $instance["SDHeight"], true ); } ?> <dt><?php echo $image["title"]?></dt> <dd> <div style="float:left;width:100%;"> <?php if($instance["SDVideo"]=='true' && strlen($image["video"])>=3){ ?> <div style="float:right;margin-left:10px;"> <?php $sc ='[video width="'.$instance["SDWidth"].'" height="'.$instance["SDHeight"].'"]'.$image["video"].'[/video]'; echo do_shortcode($sc); ?> </div> <?php } else {?> <?php if($image["link"]) {?> <a href="<?php echo $image["link"]; ?>"><img src="<?php echo $imgsrc; ?>" style="float:right;margin-left:10px;" alt="<?php echo $image[title]; ?>" /></a> <?php } else {?> <img src="<?php echo $imgsrc; ?>" style="float:right;margin-left:10px;" alt="<?php echo $image["title"]; ?>" /> <?php } ?> <?php } ?> <?php if($instance['SDSpines']=='true'){?> <h3 class="slidertitle"><?php echo $image["title"]; ?></h3> <?php } ?> <p class="slidertext"><?php echo do_shortcode($image["text"]); ?></p> <?php if($image["link"]){ echo '<a href="'.$image["link"].'" class="anyLink" style="float:right"><span>'.__('Read More','ultimatum').'</span> →</a>'; } ?> </div> </dd> <?php unset($image); } ?> </dl> </div> <script type="text/javascript"> //<![CDATA[ jQuery(document).ready(function(){ jQuery('#<?php echo $this->id.'-sdeck'; ?>').slidedeck({ autoPlay: <?php echo $instance['SDAuto'];?>, cycle: true, autoPlayInterval: <?php echo $instance['SDInterval'];?>, hideSpines: <?php echo $instance['SDSpines'];?>, index: <?php echo $instance['SDIndex'];?> }); }); </script>
void b_move(int axis, int dir); void b_turn(int x, int y, int z, int dir); void moveobj_mouse(int withtagged, int wx, int wy, struct node *nc, int wall); void moveyou_mouse(struct w_window *w, int wx, int wy); void dec_move0(int ec); void dec_move1(int ec); void dec_move2(int ec); void dec_move3(int ec); void dec_move4(int ec); void dec_move5(int ec); void dec_turn0(int ec); void dec_turn1(int ec); void dec_turn2(int ec); void dec_turn3(int ec); void dec_turn4(int ec); void dec_turn5(int ec); void dec_aligntoaxis(int ec); void dec_sidecube(int ec); void dec_gowall(int ec); void dec_beam(int ec); void dec_prevcube(int ec); void dec_nextcube(int ec); void dec_prevside(int ec); void dec_nextside(int ec); void dec_prevpnt(int ec); void dec_nextpnt(int ec); void dec_prevthing(int ec); void dec_nextthing(int ec); void dec_prevwall(int ec); void dec_nextwall(int ec); void dec_prevedge(int ec); void dec_nextedge(int ec); void dec_resetsideedge(int ec); void turnsinglepnt(struct point *axis, float cosang, float sinang, struct point *s); void dec_savepos(int ec); void dec_gotopos(int ec); void init_rendercube(void); void movecorr_mouse(struct w_window *w, int wx, int wy, struct track *t); void <API key>( int sx, int sy, struct corner *cs, struct node *cube, int wall, int withtagged, float angle, void (*refresh_func)(void) ); void move_texture(struct corner *cs, int dx, int dy); void stretch_texture(struct corner *cs, int sx, int sy); void rotate_texture(struct corner *cs, float angle);
#include "xauth_pam.h" #include <daemon.h> #include <library.h> #include <security/pam_appl.h> typedef struct private_xauth_pam_t private_xauth_pam_t; /** * Private data of an xauth_pam_t object. */ struct private_xauth_pam_t { /** * Public interface. */ xauth_pam_t public; /** * ID of the peer */ identification_t *peer; }; METHOD(xauth_method_t, initiate, status_t, private_xauth_pam_t *this, cp_payload_t **out) { cp_payload_t *cp; cp = <API key>(CONFIGURATION_V1, CFG_REQUEST); cp->add_attribute(cp, <API key>( <API key>, XAUTH_USER_NAME, chunk_empty)); cp->add_attribute(cp, <API key>( <API key>, XAUTH_USER_PASSWORD, chunk_empty)); *out = cp; return NEED_MORE; } /** * PAM conv callback function */ static int auth_conv(int num_msg, const struct pam_message **msg, struct pam_response **resp, char *password) { struct pam_response *response; if (num_msg != 1) { return PAM_CONV_ERR; } response = malloc(sizeof(struct pam_response)); response->resp = strdup(password); response->resp_retcode = 0; *resp = response; return PAM_SUCCESS; } /** * Authenticate a username/password using PAM */ static bool authenticate(char *service, char *user, char *password) { pam_handle_t *pamh = NULL; static struct pam_conv conv; int ret; conv.conv = (void*)auth_conv; conv.appdata_ptr = password; ret = pam_start(service, user, &conv, &pamh); if (ret != PAM_SUCCESS) { DBG1(DBG_IKE, "XAuth pam_start for '%s' failed: %s", user, pam_strerror(pamh, ret)); return FALSE; } ret = pam_authenticate(pamh, 0); if (ret == PAM_SUCCESS) { ret = pam_acct_mgmt(pamh, 0); if (ret != PAM_SUCCESS) { DBG1(DBG_IKE, "XAuth pam_acct_mgmt for '%s' failed: %s", user, pam_strerror(pamh, ret)); } } else { DBG1(DBG_IKE, "X<API key> for '%s' failed: %s", user, pam_strerror(pamh, ret)); } pam_end(pamh, ret); return ret == PAM_SUCCESS; } /** * Convert configuration attribute content to a null-terminated string */ static void attr2string(char *buf, size_t len, chunk_t chunk) { if (chunk.len && chunk.len < len) { chunk_t sane; chunk_printable(chunk, &sane, '?'); snprintf(buf, len, "%.*s", (int)sane.len, sane.ptr); chunk_clear(&sane); } } METHOD(xauth_method_t, process, status_t, private_xauth_pam_t *this, cp_payload_t *in, cp_payload_t **out) { char *service, user[128] = "", pass[128] = "", *pos; <API key> *attr; enumerator_t *enumerator; chunk_t chunk; enumerator = in-><API key>(in); while (enumerator->enumerate(enumerator, &attr)) { switch (attr->get_type(attr)) { case XAUTH_USER_NAME: chunk = attr->get_chunk(attr); /* trim to username part if email address given */ if (lib->settings->get_bool(lib->settings, "%s.plugins.xauth-pam.trim_email", TRUE, lib->ns)) { pos = memchr(chunk.ptr, '@', chunk.len); if (pos) { chunk.len = (u_char*)pos - chunk.ptr; } } attr2string(user, sizeof(user), chunk); break; case XAUTH_USER_PASSWORD: attr2string(pass, sizeof(pass), attr->get_chunk(attr)); break; default: break; } } enumerator->destroy(enumerator); if (!user[0] || !pass[0]) { DBG1(DBG_IKE, "peer did not respond to our XAuth request"); return FAILED; } this->peer->destroy(this->peer); this->peer = <API key>(user); /* Look for PAM service, with a legacy fallback for the eap-gtc plugin. * Default to "login". */ service = lib->settings->get_str(lib->settings, "%s.plugins.xauth-pam.pam_service", lib->settings->get_str(lib->settings, "%s.plugins.eap-gtc.pam_service", "login", lib->ns), lib->ns); if (authenticate(service, user, pass)) { DBG1(DBG_IKE, "PAM authentication of '%s' successful", user); return SUCCESS; } return FAILED; } METHOD(xauth_method_t, get_identity, identification_t*, private_xauth_pam_t *this) { return this->peer; } METHOD(xauth_method_t, destroy, void, private_xauth_pam_t *this) { this->peer->destroy(this->peer); free(this); } /* * Described in header. */ xauth_pam_t *x<API key>(identification_t *server, identification_t *peer, char *profile) { private_xauth_pam_t *this; INIT(this, .public = { .xauth_method = { .initiate = _initiate, .process = _process, .get_identity = _get_identity, .destroy = _destroy, }, }, .peer = peer->clone(peer), ); return &this->public; }
<?php // Definition of eZIntegerValidator class // SOFTWARE NAME: eZ Publish // SOFTWARE RELEASE: 4.0.1 // NOTICE: > // This program is free software; you can redistribute it and/or // modify it under the terms of version 2.0 of the GNU General // This program is distributed in the hope that it will be useful, // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // You should have received a copy of version 2.0 of the GNU General // Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, // MA 02110-1301, USA. /*! \file ezintegervalidator.php */ /*! \class eZIntegerValidator ezintegervalidator.php \brief The class eZIntegerValidator does */ //include_once( "lib/ezutils/classes/ezregexpvalidator.php" ); class eZIntegerValidator extends eZRegExpValidator { /*! Constructor */ function eZIntegerValidator( $min = false, $max = false ) { $rule = array( "accepted" => "/^-?[0-9]+$/", "intermediate" => "/(-?[0-9]+)/", "fixup" => "" ); $this->eZRegExpValidator( $rule ); $this->MinValue = $min; $this->MaxValue = $max; if ( $max !== false and $min !== false ) $this->MaxValue = max( $min, $max ); } function setRange( $min, $max ) { $this->MinValue = $min; $this->MaxValue = $max; if ( $max !== false and $min !== false ) $this->MaxValue = max( $min, $max ); } function validate( $text ) { $state = eZRegExpValidator::validate( $text ); if ( $state == eZInputValidator::STATE_ACCEPTED ) { if ( ( $this->MinValue !== false and $text < $this->MinValue ) or ( $this->MaxValue !== false and $text > $this->MaxValue ) ) $state = eZInputValidator::STATE_INTERMEDIATE; } return $state; } function fixup( $text ) { if ( preg_match( $this->RegExpRule["intermediate"], $text, $regs ) ) $text = $regs[1]; if ( $this->MinValue !== false and $text < $this->MinValue ) $text = $this->MinValue; else if ( $this->MaxValue !== false and $text > $this->MaxValue ) $text = $this->MaxValue; return $text; } \privatesection public $MinValue; public $MaxValue; } ?>
#ifndef <API key> #define <API key> namespace Eigen { namespace internal { template<typename _Scalar, int _Options, typename _Index> struct traits<SparseVector<_Scalar, _Options, _Index> > { typedef _Scalar Scalar; typedef _Index Index; typedef Sparse StorageKind; typedef MatrixXpr XprKind; enum { IsColVector = (_Options & RowMajorBit) ? 0 : 1, RowsAtCompileTime = IsColVector ? Dynamic : 1, ColsAtCompileTime = IsColVector ? 1 : Dynamic, <API key> = RowsAtCompileTime, <API key> = ColsAtCompileTime, Flags = _Options | NestByRefBit | LvalueBit | (IsColVector ? 0 : RowMajorBit), CoeffReadCost = NumTraits<Scalar>::ReadCost, <API key> = <API key> }; }; } template<typename _Scalar, int _Options, typename _Index> class SparseVector : public SparseMatrixBase<SparseVector<_Scalar, _Options, _Index> > { public: <API key>(SparseVector) <API key>(SparseVector, +=) <API key>(SparseVector, -=) protected: public: typedef SparseMatrixBase<SparseVector> SparseBase; enum { IsColVector = internal::traits<SparseVector>::IsColVector }; enum { Options = _Options }; internal::CompressedStorage<Scalar,Index> m_data; Index m_size; internal::CompressedStorage<Scalar,Index>& _data() { return m_data; } internal::CompressedStorage<Scalar,Index>& _data() const { return m_data; } public: EIGEN_STRONG_INLINE Index rows() const { return IsColVector ? m_size : 1; } EIGEN_STRONG_INLINE Index cols() const { return IsColVector ? 1 : m_size; } EIGEN_STRONG_INLINE Index innerSize() const { return m_size; } EIGEN_STRONG_INLINE Index outerSize() const { return 1; } EIGEN_STRONG_INLINE const Scalar* valuePtr() const { return &m_data.value(0); } EIGEN_STRONG_INLINE Scalar* valuePtr() { return &m_data.value(0); } EIGEN_STRONG_INLINE const Index* innerIndexPtr() const { return &m_data.index(0); } EIGEN_STRONG_INLINE Index* innerIndexPtr() { return &m_data.index(0); } inline Scalar coeff(Index row, Index col) const { eigen_assert((IsColVector ? col : row)==0); return coeff(IsColVector ? row : col); } inline Scalar coeff(Index i) const { return m_data.at(i); } inline Scalar& coeffRef(Index row, Index col) { eigen_assert((IsColVector ? col : row)==0); return coeff(IsColVector ? row : col); } inline Scalar& coeffRef(Index i) { return m_data.atWithInsertion(i); } public: class InnerIterator; class <API key>; inline void setZero() { m_data.clear(); } inline Index nonZeros() const { return static_cast<Index>(m_data.size()); } inline void startVec(Index outer) { <API key>(outer); eigen_assert(outer==0); } inline Scalar& <API key>(Index outer, Index inner) { <API key>(outer); eigen_assert(outer==0); return insertBack(inner); } inline Scalar& insertBack(Index i) { m_data.append(0, i); return m_data.value(m_data.size()-1); } inline Scalar& insert(Index row, Index col) { Index inner = IsColVector ? row : col; Index outer = IsColVector ? col : row; eigen_assert(outer==0); return insert(inner); } Scalar& insert(Index i) { Index startId = 0; Index p = Index(m_data.size()) - 1; m_data.resize(p+2,1); while ( (p >= startId) && (m_data.index(p) > i) ) { m_data.index(p+1) = m_data.index(p); m_data.value(p+1) = m_data.value(p); --p; } m_data.index(p+1) = i; m_data.value(p+1) = 0; return m_data.value(p+1); } inline void reserve(Index reserveSize) { m_data.reserve(reserveSize); } inline void finalize() {} void prune(Scalar reference, RealScalar epsilon = NumTraits<RealScalar>::dummy_precision()) { m_data.prune(reference,epsilon); } void resize(Index rows, Index cols) { eigen_assert(rows==1 || cols==1); resize(IsColVector ? rows : cols); } void resize(Index newSize) { m_size = newSize; m_data.clear(); } void resizeNonZeros(Index size) { m_data.resize(size); } inline SparseVector() : m_size(0) { resize(0); } inline SparseVector(Index size) : m_size(0) { resize(size); } inline SparseVector(Index rows, Index cols) : m_size(0) { resize(rows,cols); } template<typename OtherDerived> inline SparseVector(const SparseMatrixBase<OtherDerived>& other) : m_size(0) { *this = other.derived(); } inline SparseVector(const SparseVector& other) : m_size(0) { *this = other.derived(); } inline void swap(SparseVector& other) { std::swap(m_size, other.m_size); m_data.swap(other.m_data); } inline SparseVector& operator=(const SparseVector& other) { if (other.isRValue()) { swap(other.const_cast_derived()); } else { resize(other.size()); m_data = other.m_data; } return *this; } template<typename OtherDerived> inline SparseVector& operator=(const SparseMatrixBase<OtherDerived>& other) { if (int(RowsAtCompileTime)!=int(OtherDerived::RowsAtCompileTime)) return assign(other.transpose()); else return assign(other); } #ifndef <API key> template<typename Lhs, typename Rhs> inline SparseVector& operator=(const SparseSparseProduct<Lhs,Rhs>& product) { return Base::operator=(product); } #endif friend std::ostream & operator << (std::ostream & s, const SparseVector& m) { for (Index i=0; i<m.nonZeros(); ++i) s << "(" << m.m_data.value(i) << "," << m.m_data.index(i) << ") "; s << std::endl; return s; } inline ~SparseVector() {} Scalar sum() const; public: EIGEN_DEPRECATED void startFill(Index reserve) { setZero(); m_data.reserve(reserve); } EIGEN_DEPRECATED Scalar& fill(Index r, Index c) { eigen_assert(r==0 || c==0); return fill(IsColVector ? r : c); } EIGEN_DEPRECATED Scalar& fill(Index i) { m_data.append(0, i); return m_data.value(m_data.size()-1); } EIGEN_DEPRECATED Scalar& fillrand(Index r, Index c) { eigen_assert(r==0 || c==0); return fillrand(IsColVector ? r : c); } EIGEN_DEPRECATED Scalar& fillrand(Index i) { return insert(i); } EIGEN_DEPRECATED void endFill() {} # ifdef <API key> # include <API key> # endif protected: template<typename OtherDerived> EIGEN_DONT_INLINE SparseVector& assign(const SparseMatrixBase<OtherDerived>& _other) { const OtherDerived& other(_other.derived()); const bool needToTranspose = (Flags & RowMajorBit) != (OtherDerived::Flags & RowMajorBit); if(needToTranspose) { Index size = other.size(); Index nnz = other.nonZeros(); resize(size); reserve(nnz); for(Index i=0; i<size; ++i) { typename OtherDerived::InnerIterator it(other, i); if(it) insert(i) = it.value(); } return *this; } else { return Base::operator=(other); } } }; template<typename Scalar, int _Options, typename _Index> class SparseVector<Scalar,_Options,_Index>::InnerIterator { public: InnerIterator(const SparseVector& vec, Index outer=0) : m_data(vec.m_data), m_id(0), m_end(static_cast<Index>(m_data.size())) { <API key>(outer); eigen_assert(outer==0); } InnerIterator(const internal::CompressedStorage<Scalar,Index>& data) : m_data(data), m_id(0), m_end(static_cast<Index>(m_data.size())) {} inline InnerIterator& operator++() { m_id++; return *this; } inline Scalar value() const { return m_data.value(m_id); } inline Scalar& valueRef() { return const_cast<Scalar&>(m_data.value(m_id)); } inline Index index() const { return m_data.index(m_id); } inline Index row() const { return IsColVector ? index() : 0; } inline Index col() const { return IsColVector ? 0 : index(); } inline operator bool() const { return (m_id < m_end); } protected: const internal::CompressedStorage<Scalar,Index>& m_data; Index m_id; const Index m_end; }; template<typename Scalar, int _Options, typename _Index> class SparseVector<Scalar,_Options,_Index>::<API key> { public: <API key>(const SparseVector& vec, Index outer=0) : m_data(vec.m_data), m_id(static_cast<Index>(m_data.size())), m_start(0) { <API key>(outer); eigen_assert(outer==0); } <API key>(const internal::CompressedStorage<Scalar,Index>& data) : m_data(data), m_id(static_cast<Index>(m_data.size())), m_start(0) {} inline <API key>& operator--() { m_id--; return *this; } inline Scalar value() const { return m_data.value(m_id-1); } inline Scalar& valueRef() { return const_cast<Scalar&>(m_data.value(m_id-1)); } inline Index index() const { return m_data.index(m_id-1); } inline Index row() const { return IsColVector ? index() : 0; } inline Index col() const { return IsColVector ? 0 : index(); } inline operator bool() const { return (m_id > m_start); } protected: const internal::CompressedStorage<Scalar,Index>& m_data; Index m_id; const Index m_start; }; } #endif
<?php $this_file = str_replace( '\\', '/', __FILE__ ); $this_file = explode( 'wp-content', $this_file ); $this_file = $this_file[ 0 ]; require_once( $this_file . 'wp-load.php' ); ?> <!DOCTYPE html> <html class="my"> <head> <title>Insert Quotes Shortcode</title> <?php wp_print_scripts( 'jquery' ); ?> <script language="javascript" type="text/javascript" src="<?php echo home_url(); ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script> <style type="text/css" src="<?php echo home_url(); ?>/wp-includes/js/tinymce/themes/advanced/skins/o2k7/dialog.css"></style> <link rel="stylesheet" href="<?php echo( <API key>() . '/js/shorties/dialog_elements.css' ); ?>" type="text/css" media="all" /> <script type="text/javascript"> var QuotesDialog = { local_ed : 'ed', init : function( ed ) { QuotesDialog.local_ed = ed; tinyMCEPopup.resizeToInnerSize(); }, insert : function insertButton( ed ) { //tinyMCEPopup.execCommand( 'mceRemoveNode', false, null ); // set up variables to contain our input values var quotes_author = jQuery( '#layout-dialog input#quotes_author' ).val(); var output = ''; var c_len = ed.selection.getContent(); if( c_len.length < 1 ) { output = '[quotes author="' + quotes_author + '"] !YOU SHOULD ADD QUOTES HERE! [/quotes]'; ed.selection.setContent( output ); } else { output = '[quotes author="' + quotes_author + '"]' + QuotesDialog.local_ed.selection.getContent() + '[/quotes]'; tinyMCEPopup.execCommand( 'mceReplaceContent', false, output ); } // Return tinyMCEPopup.close(); } }; tinyMCEPopup.onInit.add( QuotesDialog.init, QuotesDialog ); </script> </head> <body> <div id="layout-dialog"> <form action="/" method="get" accept-charset="utf-8"> <div id="help">Be sure to select text before applying this shortcode!</div> <div> <label for="quotes_author">Quotes author</label> <input type="text" name="quotes_author" value="" id="quotes_author" /> </div> <div> <a href="javascript:QuotesDialog.insert( QuotesDialog.local_ed )" id="insert" style="display: block; line-height: 24px;">Insert</a> </div> </form> </div> </body> </html>
#ifndef __EVENT_H__ #define __EVENT_H__ /* * Mbox events * * The event mechanism is based on a pair of event buffers (buffers A and * B) at fixed locations in the target's memory. The host processes one * buffer while the other buffer continues to collect events. If the host * is not processing events, an interrupt is issued to signal that a buffer * is ready. Once the host is done with processing events from one buffer, * it signals the target (with an ACK interrupt) that the event buffer is * free. */ enum { <API key> = BIT(0), <API key> = BIT(1), <API key> = BIT(2), <API key> = BIT(3), <API key> = BIT(4), <API key> = BIT(5), <API key> = BIT(6), <API key> = BIT(7), <API key> = BIT(8), <API key> = BIT(9), <API key> = BIT(10), <API key> = BIT(11), <API key> = BIT(12), RESERVED1 = BIT(13), <API key> = BIT(14), <API key> = BIT(15), <API key> = BIT(16), <API key> = BIT(17), BSS_LOSE_EVENT_ID = BIT(18), <API key> = BIT(19), <API key> = BIT(20), <API key> = BIT(21), <API key> = BIT(22), <API key> = BIT(23), <API key> = BIT(24), <API key> = BIT(25), <API key> = BIT(26), <API key> = BIT(27), <API key> = BIT(28), <API key> = BIT(29), <API key> = BIT(30), <API key> = BIT(31), <API key> = 0x7fffffff, }; enum { <API key> = 0, <API key>, }; #define <API key> 8 struct event_mailbox { __le32 events_vector; __le32 events_mask; __le32 reserved_1; __le32 reserved_2; u8 <API key>; u8 scan_tag; u8 <API key>; u8 reserved_3; u8 <API key>; u8 <API key>; s8 <API key>[<API key>]; u8 <API key>; u8 <API key>; u8 reserved4; /* tuned channel (roc) */ u8 roc_channel; __le16 hlid_removed_bitmap; /* bitmap of aged stations (by HLID) */ __le16 sta_aging_status; /* bitmap of stations (by HLID) which exceeded max tx retries */ __le16 <API key>; /* discovery completed results */ u8 discovery_tag; u8 <API key>; u8 <API key>; u8 reserved_5; /* rx ba constraint */ u8 role_id; /* 0xFF means any role. */ u8 rx_ba_allowed; u8 reserved_6[2]; /* Channel switch results */ u8 <API key>; u8 <API key>; u8 reserved_7[2]; u8 <API key>; u8 stopped_role_ids; u8 started_role_ids; u8 reserved_8[9]; } __packed; int wl1271_event_unmask(struct wl1271 *wl); void <API key>(struct wl1271 *wl); int wl1271_event_handle(struct wl1271 *wl, u8 mbox); #endif
package com.inet.web.service.lotus.org.permission; import java.util.ArrayList; import java.util.List; import com.inet.base.logging.INetLogger; import com.inet.base.service.StringService; import com.inet.lotus.core.LotusException; import com.inet.lotus.org.permission.ldap.LdapUser; import com.inet.lotus.org.permission.manage.ldap.ILdapUserManager; import com.inet.web.exception.WebOSException; /** * <API key>. * * @author <a href="mailto:tttduyen@truthinet.com">Duyen Tang</a> * @version 0.2i */ public class <API key> implements <API key> { private static final INetLogger logger = INetLogger.getLogger(<API key>.class); private ILdapUserManager userManager; /** * The constructor * * @param userManager ILdapUserManager - the user manager */ public <API key>(ILdapUserManager userManager) { this.userManager = userManager; } /** * @see com.inet.web.service.HandleService#execute(java.lang.Object) */ public void execute(AlterGroupData data) throws WebOSException { if(data == null || !StringService.hasLength(data.getGroup()) || !StringService.hasLength(data.getOrganization())) return; switch (data.getAction()) { case ADD: this.addGroup(data); break; case UPDATE: this.updateGroup(data); case DELETE: this.deleteGroup(data); } } /** * Handle after adding group * * @param data AlterGroupData - the altering data information * @throws WebOSException - when there is any error happens */ private void addGroup(AlterGroupData data) throws WebOSException { if(data.getInsertMembers() != null && data.getInsertMembers().size() > 0) { try { // load all user from given user's name List<LdapUser> users = this.userManager.findUsers( data.getOrganization(), data.getInsertMembers()); if(users == null || users.size() == 0) return; // update groups for users this.updateAdd(users, data.getGroup()); // update user information this.updateUser(data.getOrganization(), users); } catch (LotusException ex) { logger.error("ERROR while adding group for user", ex); throw new WebOSException(ex.getMessage(), ex); } } } /** * Handle after updating group * * @param data AlterGroupData - the altering data information * @throws WebOSException - when there is any error happens */ private void updateGroup(AlterGroupData data) throws WebOSException { this.addGroup(data); if(data.getRemoveMembers() != null && data.getRemoveMembers().size() > 0) { try { // load all user from given user's name List<LdapUser> users = this.userManager.findUsers( data.getOrganization(), data.getRemoveMembers()); if(users == null || users.size() == 0) return; // update groups for users this.updateRemove(users, data.getGroup()); // update user information this.updateUser(data.getOrganization(), users); } catch (LotusException ex) { logger.error("ERROR while adding group for user", ex); throw new WebOSException(ex.getMessage(), ex); } } } /** * Handle user after delete group * * @param data AlterGroupData - the altering data information * @throws WebOSException - when there is any error happens */ private void deleteGroup(AlterGroupData data) throws WebOSException { if(data.getRemoveMembers() == null || data.getRemoveMembers().size() == 0) return; // find all user in organization from given list of user name List<LdapUser> users = this.userManager.findUsers(data.getOrganization(), data.getRemoveMembers()); if(users == null || users.size() == 0) return; // remove group name out of this users this.updateRemove(users, data.getGroup()); // update user information this.updateUser(data.getOrganization(), users); } /** * Update the group for user * * @param users List<LdapUser> - the list of user information * @param group String - the group name */ private void updateAdd(List<LdapUser> users, String group) { if(users == null || users.size() == 0) return; for(LdapUser user : users) { // get the current user's groups List<String> groups = user.getGroups(); if(groups == null) groups = new ArrayList<String>(); // add new group for user groups.add(group); user.setGroups(groups); } } /** * Update the group for user * * @param users List<LdapUser> - the list of user information * @param group String - the group name */ private void updateRemove(List<LdapUser> users, String group) { if(users == null || users.size() == 0) return; for(LdapUser user : users) { // get the current user's groups List<String> groups = user.getGroups(); if(groups != null) { groups.remove(group); } } } /** * Update the list of user information * * @param organization String - the organization * @param users List<LdapUser> - the list of user information * @throws LotusException - when there is any error happens */ private void updateUser(String organization, List<LdapUser> users) throws LotusException { for(LdapUser user : users) { // update the user information this.userManager.updateUser(organization, user); } } }
#if !defined(__ECOS) && !defined(<API key>) #include "mp_precomp.h" #else #include "../mp_precomp.h" #endif #include "../phydm_precomp.h" #if (RTL8188F_SUPPORT == 1) #ifdef CONFIG_AP_WOWLAN u1Byte <API key>[] = { 0xf1,0x88,0x30,0x00,0x00,0x00,0x00,0x00,0x03,0x13,0x16,0x44,0xac,0x33,0x02,0x00, 0xcc,0xcc,0xcc,0xcc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x02,0x86,0xad,0x02,0xa8,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x02,0xa8,0x7b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x02,0xaf,0xea,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x02,0xa8,0x05,0x00,0x00,0x00,0x00,0x00,0x02,0xad,0xe0,0x00,0x00, 0x00,0x00,0x00,0x02,0xaf,0xe9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x02,0x87,0xa5,0x02,0x8a,0xc3,0x02,0x80,0x86,0x02,0x80,0x89,0x02,0x80,0x8c,0x02, 0xa9,0xd6,0x02,0x98,0x69,0x02,0x80,0x95,0x02,0x80,0x98,0x02,0x80,0x9b,0x02,0x80, 0x9e,0x02,0x80,0xa1,0x02,0x80,0xa4,0x02,0x80,0xa7,0x02,0x80,0xaa,0x02,0x80,0xad, 0x02,0x80,0xb0,0x02,0x80,0xb3,0x02,0x80,0xb6,0x02,0x80,0xb9,0x02,0x80,0xbc,0x02, 0x80,0xbf,0x02,0x80,0xc2,0x02,0x80,0xc5,0x02,0x80,0xc8,0x02,0x80,0xcb,0x02,0x80, 0xce,0x02,0x80,0xd1,0x02,0xb2,0xbf,0x02,0x80,0xd7,0x00,0x00,0x00,0x02,0x80,0xdd, 0x02,0x80,0xe0,0x02,0x80,0xe3,0x02,0x80,0xe6,0x02,0xa6,0xc0,0x02,0x80,0xec,0x02, 0x80,0xef,0x02,0x80,0xf2,0x02,0x80,0xf5,0x02,0x80,0xf8,0x02,0x80,0xfb,0x02,0x80, 0xfe,0x02,0x81,0x01,0x02,0x81,0x04,0x02,0x81,0x07,0x02,0x81,0x0a,0x02,0x81,0x0d, 0x02,0x81,0x10,0x02,0x81,0x13,0x02,0x81,0x16,0x02,0x81,0x19,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x02,0x9f,0x11,0x02,0x9f,0x5f,0x02,0xb0,0x37,0x02,0x9e,0xb8, 0x02,0x81,0x40,0x02,0xab,0x35,0x02,0xaf,0x3c,0x02,0x81,0x49,0x02,0x81,0x4c,0x02, 0x81,0x4f,0x02,0x81,0x52,0x02,0x81,0x55,0x02,0x81,0x58,0x02,0x81,0x5b,0x02,0x81, 0x5e,0x02,0x81,0x61,0x02,0x81,0x64,0x02,0x81,0x67,0x02,0x81,0x6a,0x02,0x81,0x6d, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x15,0xf0,0xff,0x0f,0x00,0x00,0x00,0x15,0xf0,0x0f,0x00,0x00,0x00,0x00,0x05,0xf0, 0xff,0x0f,0x00,0x00,0x00,0x05,0xf0,0x0f,0x00,0x00,0x00,0x00,0x10,0xf0,0xff,0x0f, 0x00,0x00,0x00,0x10,0xf0,0x0f,0x00,0x00,0x00,0x00,0xf5,0x0f,0x00,0x00,0x00,0x00, 0x00,0xf0,0x0f,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x0a, 0x08,0x03,0x03,0x00,0x04,0x09,0x07,0x03,0x03,0x00,0x04,0x08,0x06,0x03,0x02,0x00, 0x04,0x08,0x05,0x03,0x01,0x00,0x04,0x0d,0x0a,0x07,0x05,0x00,0x08,0x0c,0x0a,0x07, 0x04,0x00,0x08,0x0b,0x0a,0x06,0x05,0x00,0x08,0x0b,0x0a,0x05,0x03,0x00,0x08,0x0b, 0x0a,0x03,0x02,0x00,0x08,0x14,0x12,0x0c,0x04,0x00,0x10,0x14,0x12,0x09,0x04,0x00, 0x10,0x24,0x22,0x1c,0x12,0x00,0x20,0x24,0x22,0x18,0x0c,0x00,0x20,0x24,0x22,0x14, 0x06,0x00,0x20,0x24,0x22,0x0f,0x04,0x00,0x20,0x24,0x21,0x0a,0x04,0x00,0x20,0x23, 0x21,0x0c,0x04,0x00,0x20,0x23,0x1f,0x0a,0x04,0x00,0x20,0x22,0x1f,0x0f,0x04,0x00, 0x20,0x21,0x1f,0x16,0x0c,0x00,0x20,0x31,0x2f,0x20,0x14,0x00,0x30,0x31,0x2f,0x18, 0x10,0x00,0x30,0x31,0x2c,0x18,0x0c,0x00,0x30,0x31,0x2a,0x14,0x0c,0x00,0x30,0x31, 0x28,0x14,0x00,0x00,0x30,0x31,0x24,0x14,0x00,0x00,0x30,0x31,0x1e,0x14,0x00,0x00, 0x30,0x04,0x04,0x04,0x05,0x04,0x04,0x05,0x07,0x07,0x07,0x08,0x0a,0x04,0x07,0x0a, 0x0e,0x11,0x13,0x14,0x15,0x04,0x04,0x04,0x05,0x07,0x07,0x09,0x09,0x0c,0x0e,0x10, 0x12,0x05,0x06,0x07,0x0c,0x11,0x11,0x12,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x24,0x26,0x2a,0x00,0x00,0x00,0x1f,0x21,0x25,0x27,0x28,0x00,0x04,0x00, 0x04,0x00,0x08,0x00,0x10,0x00,0x18,0x00,0x24,0x00,0x30,0x00,0x48,0x00,0x60,0x00, 0x90,0x00,0xc0,0x00,0xd8,0x00,0x46,0x00,0x64,0x00,0x78,0x00,0xb4,0x01,0x04,0x01, 0x86,0x01,0xa4,0x01,0xe0,0x02,0x02,0x04,0x08,0x0c,0x12,0x18,0x24,0x30,0x48,0x60, 0x6c,0x14,0x28,0x32,0x50,0x78,0xa0,0xc8,0xf0,0x01,0x01,0x01,0x02,0x01,0x02,0x03, 0x03,0x04,0x04,0x05,0x05,0x02,0x04,0x06,0x07,0x07,0x08,0x08,0x08,0x01,0x01,0x01, 0x01,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x01,0x02,0x03,0x04,0x05,0x06,0x07, 0x08,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05, 0x05,0x05,0x04,0x03,0x02,0x19,0x06,0x04,0x02,0x00,0x18,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xc2,0xaf,0x80,0xfe,0x32,0x12,0x84,0x04,0x85,0xd0,0x0b,0x75,0xd0,0x08,0xaa,0xe0, 0xc2,0x8c,0xe5,0x8a,0x24,0x67,0xf5,0x8a,0xe5,0x8c,0x34,0x79,0xf5,0x8c,0xd2,0x8c, 0xec,0x24,0x87,0xf8,0xe6,0xbc,0x02,0x02,0x74,0xff,0xc3,0x95,0x81,0xb4,0x40,0x00, 0x40,0xce,0x79,0x03,0x78,0x80,0x16,0xe6,0x08,0x70,0x0b,0xc2,0xaf,0xe6,0x30,0xe1, 0x03,0x44,0x18,0xf6,0xd2,0xaf,0x08,0xd9,0xed,0xea,0x8b,0xd0,0x22,0xe5,0x0c,0xff, 0x23,0x24,0x81,0xf8,0x0f,0x08,0x08,0xbf,0x03,0x04,0x7f,0x00,0x78,0x81,0xe6,0x30, 0xe4,0xf2,0x00,0xe5,0x0c,0xc3,0x9f,0x50,0x20,0x05,0x0c,0x74,0x86,0x25,0x0c,0xf8, 0xe6,0xfd,0xa6,0x81,0x08,0xe6,0xae,0x0c,0xbe,0x02,0x02,0x74,0xff,0xcd,0xf8,0xe8, 0x6d,0x60,0xe0,0x08,0xe6,0xc0,0xe0,0x80,0xf6,0xe5,0x0c,0xd3,0x9f,0x40,0x27,0xe5, 0x0c,0x24,0x87,0xf8,0xe6,0xae,0x0c,0xbe,0x02,0x02,0x74,0xff,0xfd,0x18,0xe6,0xcd, 0xf8,0xe5,0x81,0x6d,0x60,0x06,0xd0,0xe0,0xf6,0x18,0x80,0xf5,0xe5,0x0c,0x24,0x86, 0xc8,0xf6,0x15,0x0c,0x80,0xd3,0xe5,0x0c,0x23,0x24,0x81,0xf8,0x7f,0x04,0xc2,0xaf, 0xe6,0x30,0xe0,0x03,0x10,0xe2,0x0c,0x7f,0x00,0x30,0xe1,0x07,0x30,0xe3,0x04,0x7f, 0x08,0x54,0xf4,0x54,0x7c,0xc6,0xd2,0xaf,0x54,0x80,0x42,0x07,0x22,0x78,0x86,0xa6, 0x81,0x74,0x02,0x60,0x06,0xff,0x08,0x76,0xff,0xdf,0xfb,0x7f,0x03,0xe4,0x78,0x80, 0xf6,0x08,0xf6,0x08,0xdf,0xfa,0x78,0x81,0x76,0x30,0x90,0x87,0x9a,0x74,0x01,0x93, 0xc0,0xe0,0xe4,0x93,0xc0,0xe0,0x43,0x89,0x01,0x75,0x8a,0x60,0x75,0x8c,0x79,0xd2, 0x8c,0xd2,0xaf,0x22,0x02,0xef,0xd3,0x94,0x02,0x40,0x03,0x7f,0xff,0x22,0x74,0x81, 0x2f,0x2f,0xf8,0xe6,0x20,0xe5,0xf4,0xc2,0xaf,0xe6,0x44,0x30,0xf6,0xd2,0xaf,0xae, 0x0c,0xee,0xc3,0x9f,0x50,0x21,0x0e,0x74,0x86,0x2e,0xf8,0xe6,0xf9,0x08,0xe6,0x18, 0xbe,0x02,0x02,0x74,0xff,0xfd,0xed,0x69,0x60,0x09,0x09,0xe7,0x19,0x19,0xf7,0x09, 0x09,0x80,0xf3,0x16,0x16,0x80,0xda,0xee,0xd3,0x9f,0x40,0x04,0x05,0x81,0x05,0x81, 0xee,0xd3,0x9f,0x40,0x22,0x74,0x86,0x2e,0xf8,0x08,0xe6,0xf9,0xee,0xb5,0x0c,0x02, 0xa9,0x81,0x18,0x06,0x06,0xe6,0xfd,0xed,0x69,0x60,0x09,0x19,0x19,0xe7,0x09,0x09, 0xf7,0x19,0x80,0xf3,0x1e,0x80,0xd9,0xef,0x24,0x86,0xf8,0xe6,0x04,0xf8,0xef,0x2f, 0x04,0x90,0x87,0x9a,0x93,0xf6,0x08,0xef,0x2f,0x93,0xf6,0x7f,0x00,0x22,0xef,0xd3, 0x94,0x02,0x40,0x03,0x7f,0xff,0x22,0xef,0x23,0x24,0x81,0xf8,0xe6,0x30,0xe5,0xf4, 0xc2,0xaf,0xe6,0x54,0x8c,0xf6,0xd2,0xaf,0xe5,0x0c,0xb5,0x07,0x0a,0x74,0x86,0x2f, 0xf8,0xe6,0xf5,0x81,0x02,0x84,0x4d,0x50,0x2e,0x74,0x87,0x2f,0xf8,0xe6,0xbf,0x02, 0x02,0x74,0xff,0xfd,0x18,0xe6,0xf9,0x74,0x86,0x2f,0xf8,0xfb,0xe6,0xfc,0xe9,0x6c, 0x60,0x08,0xa8,0x05,0xe7,0xf6,0x1d,0x19,0x80,0xf4,0xa8,0x03,0xa6,0x05,0x1f,0xe5, 0x0c,0xb5,0x07,0xe3,0x7f,0x00,0x22,0x74,0x87,0x2f,0xf8,0xe6,0xfd,0x18,0x86,0x01, 0x0f,0x74,0x86,0x2f,0xf8,0xa6,0x01,0x08,0x86,0x04,0xe5,0x0c,0xb5,0x07,0x02,0xac, 0x81,0xed,0x6c,0x60,0x08,0x0d,0x09,0xa8,0x05,0xe6,0xf7,0x80,0xf4,0xe5,0x0c,0xb5, 0x07,0xde,0x89,0x81,0x7f,0x00,0x22,0xef,0xd3,0x94,0x02,0x40,0x03,0x7f,0xff,0x22, 0xef,0x23,0x24,0x81,0xf8,0xc2,0xaf,0xe6,0x30,0xe5,0x05,0x30,0xe0,0x02,0xd2,0xe4, 0xd2,0xe2,0xc6,0xd2,0xaf,0x7f,0x00,0x30,0xe2,0x01,0x0f,0x02,0x84,0x4c,0x8f,0xf0, 0xe4,0xff,0xfe,0xe5,0x0c,0x23,0x24,0x80,0xf8,0xc2,0xa9,0x30,0xf7,0x0d,0x7f,0x08, 0xe6,0x60,0x0b,0x2d,0xf6,0x60,0x32,0x50,0x30,0x80,0x07,0x30,0xf1,0x06,0xed,0xf6, 0x60,0x27,0x7e,0x02,0x08,0x30,0xf0,0x10,0xc2,0xaf,0xe6,0x10,0xe7,0x25,0x0e,0x30, 0xe2,0x0c,0xd2,0xaf,0x7f,0x04,0x80,0x14,0xc2,0xaf,0xe6,0x10,0xe7,0x15,0x54,0xec, 0x4e,0xf6,0xd2,0xaf,0xd2,0xa9,0x02,0x84,0x4d,0x7f,0x08,0x08,0xef,0x44,0x83,0xf4, 0xc2,0xaf,0x56,0xc6,0xd2,0xaf,0xd2,0xa9,0x54,0x80,0x4f,0xff,0x22,0x02,0x86,0xeb, 0x02,0x84,0xdd,0xe4,0x93,0xa3,0xf8,0xe4,0x93,0xa3,0x40,0x03,0xf6,0x80,0x01,0xf2, 0x08,0xdf,0xf4,0x80,0x29,0xe4,0x93,0xa3,0xf8,0x54,0x07,0x24,0x0c,0xc8,0xc3,0x33, 0xc4,0x54,0x0f,0x44,0x20,0xc8,0x83,0x40,0x04,0xf4,0x56,0x80,0x01,0x46,0xf6,0xdf, 0xe4,0x80,0x0b,0x01,0x02,0x04,0x08,0x10,0x20,0x40,0x80,0x90,0x87,0xa0,0xe4,0x7e, 0x01,0x93,0x60,0xbc,0xa3,0xff,0x54,0x3f,0x30,0xe5,0x09,0x54,0x1f,0xfe,0xe4,0x93, 0xa3,0x60,0x01,0x0e,0xcf,0x54,0xc0,0x25,0xe0,0x60,0xa8,0x40,0xb8,0xe4,0x93,0xa3, 0xfa,0xe4,0x93,0xa3,0xf8,0xe4,0x93,0xa3,0xc8,0xc5,0x82,0xc8,0xca,0xc5,0x83,0xca, 0xf0,0xa3,0xc8,0xc5,0x82,0xc8,0xca,0xc5,0x83,0xca,0xdf,0xe9,0xde,0xe7,0x80,0xbe, 0xef,0x5b,0xff,0xee,0x5a,0xfe,0xed,0x59,0xfd,0xec,0x58,0xfc,0x22,0xef,0x4b,0xff, 0xee,0x4a,0xfe,0xed,0x49,0xfd,0xec,0x48,0xfc,0x22,0xe0,0xfc,0xa3,0xe0,0xfd,0xa3, 0xe0,0xfe,0xa3,0xe0,0xff,0x22,0xe0,0xf8,0xa3,0xe0,0xf9,0xa3,0xe0,0xfa,0xa3,0xe0, 0xfb,0x22,0xe0,0xfb,0xa3,0xe0,0xfa,0xa3,0xe0,0xf9,0x22,0xeb,0xf0,0xa3,0xea,0xf0, 0xa3,0xe9,0xf0,0x22,0xd0,0x83,0xd0,0x82,0xf8,0xe4,0x93,0x70,0x12,0x74,0x01,0x93, 0x70,0x0d,0xa3,0xa3,0x93,0xf8,0x74,0x01,0x93,0xf5,0x82,0x88,0x83,0xe4,0x73,0x74, 0x02,0x93,0x68,0x60,0xef,0xa3,0xa3,0xa3,0x80,0xdf,0xa0,0x9d,0xa7,0x9f,0x96,0x66, 0x41,0x92,0x9d,0x00,0x00,0x90,0x92,0x9c,0xef,0xf0,0x7f,0x02,0xd1,0x27,0x90,0x84, 0xc1,0xe0,0xff,0x90,0x92,0x9c,0xe0,0xfe,0xef,0x4e,0x90,0x84,0xc1,0xf0,0x22,0x90, 0x92,0x10,0x74,0x12,0xf0,0x90,0x92,0x1e,0x74,0x05,0xf0,0x90,0x92,0x12,0xef,0xf0, 0xa3,0xed,0xf0,0xa3,0xeb,0xf0,0x90,0x92,0x0e,0xe0,0x90,0x92,0x15,0xf0,0x90,0x92, 0x0f,0xe0,0x90,0x92,0x16,0xf0,0x7b,0x01,0x7a,0x92,0x79,0x10,0x12,0x5e,0x10,0x7f, 0x04,0x80,0xb2,0x90,0x02,0x09,0xe0,0xf5,0x5b,0x12,0x02,0xf6,0x25,0x5b,0x90,0x84, 0xc6,0x31,0xcd,0x25,0x5b,0x90,0x84,0xc7,0x51,0x75,0x25,0x5b,0x90,0x84,0xc8,0x51, 0x84,0x25,0x5b,0x90,0x84,0xc9,0xf0,0x90,0x00,0x04,0x12,0x03,0x0f,0x25,0x5b,0x90, 0x84,0xca,0xf0,0x90,0x00,0x05,0x12,0x03,0x0f,0x25,0x5b,0x90,0x84,0xcb,0x11,0x37, 0x25,0x5b,0x90,0x84,0xcc,0xf0,0x22,0xf0,0x90,0x00,0x06,0x02,0x03,0x0f,0xf1,0xd7, 0xff,0x54,0x7f,0x90,0x85,0xc5,0xf0,0xef,0xb1,0x0e,0xa3,0x31,0xcd,0xff,0x54,0xf0, 0xc4,0x54,0x0f,0xfe,0x90,0x85,0xc3,0xe0,0x54,0xf0,0x4e,0x51,0x84,0x54,0x01,0x25, 0xe0,0xfe,0x90,0x85,0xc1,0xe0,0x54,0xfd,0x4e,0xf0,0xef,0x54,0x0f,0xc4,0x54,0xf0, 0xff,0x91,0xed,0x51,0x74,0x90,0x85,0xc4,0x11,0x37,0x30,0xe0,0x51,0xc3,0x13,0x54, 0x07,0xff,0xc3,0x94,0x04,0x90,0x85,0xd8,0x50,0x04,0xef,0xf0,0x80,0x29,0x74,0x03, 0x11,0xf2,0xe9,0x24,0x06,0xf9,0xe4,0x3a,0xfa,0x12,0x02,0xf6,0xff,0x74,0x03,0x24, 0xfd,0xfe,0xef,0xc4,0x54,0x0f,0xfd,0xef,0x54,0x0f,0xff,0xed,0x2e,0x54,0x0f,0xfe, 0xc4,0x54,0xf0,0x4f,0x12,0x03,0x3c,0x11,0xf3,0x11,0x38,0xc4,0x54,0x0f,0xff,0xc3, 0x94,0x04,0x90,0x85,0xcd,0x50,0x05,0x74,0x04,0xf0,0x80,0x02,0xef,0xf0,0x11,0xf3, 0x90,0x00,0x04,0x12,0x03,0x0f,0xfd,0x7f,0x02,0x12,0x57,0x82,0x11,0xf3,0x12,0x71, 0xcb,0x12,0xae,0xa2,0xf0,0x90,0x85,0xc5,0x12,0xb3,0x8a,0x91,0xec,0x90,0x01,0xbe, 0xf0,0x22,0xf0,0x90,0x92,0x05,0x02,0x87,0x62,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0, 0xf1,0xd7,0x20,0xe0,0x05,0x12,0x9e,0xea,0x21,0xc7,0x90,0x87,0x4a,0x74,0x05,0x11, 0xf2,0x91,0xfc,0x90,0x86,0x75,0x31,0xdc,0x54,0x04,0xfd,0xef,0x54,0xfb,0x31,0xd4, 0xf1,0xbf,0x31,0xea,0x54,0x10,0xfd,0xef,0x54,0xef,0x31,0xd4,0xf1,0xc7,0x31,0xea, 0x54,0x40,0xfd,0xef,0x54,0xbf,0x31,0xd4,0xf1,0xcf,0x31,0xcd,0x54,0x80,0xff,0x90, 0x86,0x76,0xe0,0x54,0x7f,0x4f,0xf0,0x12,0x02,0xf6,0x13,0x13,0x54,0x3f,0x30,0xe0, 0x07,0x90,0x06,0x90,0xe0,0x44,0x04,0xf0,0x11,0xf3,0x12,0x02,0xf6,0x13,0x13,0x13, 0x54,0x1f,0x30,0xe0,0x07,0x90,0x06,0x90,0xe0,0x44,0x08,0xf0,0x90,0x84,0xc5,0xe0, 0xb4,0x02,0x09,0x90,0x86,0x76,0xe0,0xb1,0x0e,0x20,0xe0,0x3d,0x31,0xce,0x54,0x7f, 0xff,0x90,0x86,0x76,0xe0,0x54,0x80,0x51,0x74,0x90,0x86,0x77,0x51,0x84,0xff,0x54, 0x01,0xfe,0x90,0x86,0x78,0x91,0xf4,0x54,0xfe,0xff,0xee,0x54,0x01,0x4f,0xf0,0x90, 0x86,0x76,0xe0,0x54,0x7f,0xff,0x90,0x86,0x75,0xe0,0xfe,0xc4,0x13,0x54,0x07,0x7d, 0x00,0x20,0xe0,0x02,0x7d,0x01,0x12,0x54,0x9f,0x90,0x84,0xc5,0xe0,0xb4,0x01,0x07, 0x90,0xfe,0x10,0xe0,0x44,0x04,0xf0,0xd0,0xd0,0x92,0xaf,0x22,0x4f,0xf0,0x90,0x00, 0x01,0x02,0x03,0x0f,0x4d,0xff,0x90,0x86,0x75,0xf0,0xee,0x22,0xe0,0x54,0xfe,0x4e, 0xfe,0xf0,0xef,0x54,0x02,0xff,0xee,0x54,0xfd,0x4f,0xff,0xf0,0x12,0x02,0xf6,0xfe, 0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x91,0xfc,0x90,0x86,0x72,0x31,0xdc,0x54, 0x04,0xfd,0xef,0x54,0xfb,0x51,0x7c,0xf1,0xbf,0x31,0xea,0x54,0x10,0xfd,0xef,0x54, 0xef,0x51,0x7c,0xf1,0xc7,0x31,0xea,0x54,0x40,0xfd,0xef,0x54,0xbf,0x51,0x7c,0xf1, 0xcf,0x51,0x75,0x54,0x01,0xff,0x90,0x86,0x74,0xe0,0x54,0xfe,0x31,0xcc,0xff,0x54, 0x01,0xfe,0x90,0x86,0x73,0x91,0xf4,0x54,0x04,0xff,0xee,0x54,0xfb,0x4f,0xf0,0x90, 0x86,0x72,0xe0,0xc3,0x13,0x54,0x01,0xff,0x12,0x7c,0x72,0x91,0xe5,0x54,0x01,0xff, 0x12,0x7c,0x7e,0x91,0xe5,0x13,0x54,0x01,0xff,0x12,0x66,0xda,0x12,0xa6,0x8d,0x54, 0x01,0xff,0x12,0x9d,0x77,0x90,0x86,0x72,0xe0,0x54,0x01,0xff,0x12,0x9e,0x47,0xd0, 0xd0,0x92,0xaf,0x22,0x4f,0xf0,0x90,0x00,0x02,0x02,0x03,0x0f,0x4d,0xff,0x90,0x86, 0x72,0xf0,0xee,0x22,0xf0,0x90,0x00,0x03,0x02,0x03,0x0f,0x51,0x76,0xff,0x30,0xe0, 0x1c,0x12,0x02,0xf6,0x90,0x86,0x6d,0x31,0xcd,0x90,0x86,0x6e,0xf0,0xef,0x54,0xfe, 0xff,0xa3,0xe0,0x54,0x01,0x4f,0x51,0x84,0x90,0x86,0x70,0xf0,0x22,0x90,0x86,0x6d, 0x74,0x05,0xf0,0xa3,0x74,0x0a,0xf0,0xa3,0xe0,0x54,0x01,0x44,0x1e,0xf0,0xa3,0x74, 0x05,0xf0,0x22,0x90,0x92,0x02,0x12,0x87,0x6b,0x90,0x92,0x01,0xef,0xf0,0x12,0x87, 0x74,0x8b,0x14,0x00,0x8b,0x1d,0x01,0x8b,0x25,0x02,0x8b,0x2d,0x03,0x8b,0x36,0x04, 0x8b,0x3f,0x12,0x8b,0x48,0x14,0x8b,0x51,0x20,0x8b,0x59,0x21,0x8b,0x61,0x23,0x8b, 0x6a,0x25,0x8b,0x73,0x27,0x8b,0x7b,0x40,0x8b,0x84,0x42,0x8b,0xd0,0x47,0x8b,0x95, 0x80,0x8b,0x8d,0x81,0x8b,0x9d,0x82,0x8b,0xa6,0x83,0x8b,0xaf,0x84,0x8b,0xb8,0x88, 0x00,0x00,0x8b,0xc1,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x87,0xf3,0x90,0x92,0x02, 0x12,0x87,0x62,0x81,0x7e,0x90,0x92,0x02,0x12,0x87,0x62,0x81,0x43,0x90,0x92,0x02, 0x12,0x87,0x62,0x02,0x78,0x94,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x6b,0x03,0x90, 0x92,0x02,0x12,0x87,0x62,0x02,0x90,0x04,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x90, 0x9c,0x90,0x92,0x02,0x12,0x87,0x62,0x01,0x3e,0x90,0x92,0x02,0x12,0x87,0x62,0x41, 0x8b,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x90,0xab,0x90,0x92,0x02,0x12,0x87,0x62, 0x02,0x90,0xb3,0x90,0x92,0x02,0x12,0x87,0x62,0x80,0x56,0x90,0x92,0x02,0x12,0x87, 0x62,0x02,0x39,0x73,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x4e,0x29,0x90,0x92,0x02, 0x12,0x87,0x62,0x21,0xf1,0x90,0x92,0x02,0x12,0x87,0x62,0x01,0xf9,0x90,0x92,0x02, 0x12,0x87,0x62,0x02,0x7a,0xfe,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x6f,0x63,0x90, 0x92,0x02,0x12,0x87,0x62,0x02,0x6f,0xa4,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x7b, 0xd0,0x90,0x01,0xc0,0xe0,0x44,0x01,0xf0,0x90,0x92,0x01,0xe0,0x90,0x01,0xc2,0xf0, 0x22,0x91,0xfc,0x90,0x92,0x7b,0x91,0xf4,0x54,0x02,0xff,0xee,0x54,0xfd,0x31,0xcc, 0x90,0x92,0x7c,0x51,0x75,0x90,0x92,0x7d,0xf0,0x12,0xaf,0xdf,0x90,0x92,0x7b,0xe0, 0x54,0x01,0xff,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xef,0x64,0x01,0x70,0x1a,0xb1, 0x04,0x60,0x0a,0x91,0x3c,0x12,0x7b,0xfd,0x12,0xaf,0xcc,0x80,0x07,0x91,0x3c,0x12, 0x7b,0xbf,0xf1,0xf6,0x12,0x7a,0x8a,0x80,0x17,0xb1,0x04,0x60,0x07,0x91,0x3c,0x12, 0x7b,0xfd,0x80,0x05,0x91,0x3c,0x12,0x7b,0xbf,0xf1,0x92,0xf1,0x99,0x12,0x7a,0xb9, 0xd0,0xd0,0x92,0xaf,0x22,0x90,0x05,0x73,0xf0,0x90,0x01,0x3f,0x74,0x10,0xf0,0xfd, 0x7f,0x03,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x8b,0x5b,0x8a,0x5c,0x89,0x5d, 0x12,0x02,0xf6,0xff,0x90,0x92,0x7a,0xf0,0xbf,0x01,0x0c,0x31,0xce,0x64,0x01,0x60, 0x18,0x7d,0x13,0x7f,0x6f,0x80,0x0f,0xab,0x5b,0xaa,0x5c,0xa9,0x5d,0x31,0xce,0x64, 0x01,0x60,0x06,0xe4,0xfd,0xff,0x12,0x9e,0xb8,0xd0,0xd0,0x92,0xaf,0x22,0x8b,0x5b, 0x8a,0x5c,0x89,0x5d,0x31,0xce,0xff,0xf5,0x5f,0x12,0x02,0xf6,0xfe,0xc3,0x13,0x30, 0xe0,0x06,0x51,0x76,0xf5,0x60,0x80,0x02,0x8f,0x60,0x85,0x5f,0x5e,0xe5,0x5e,0xd3, 0x95,0x60,0x50,0x26,0xab,0x5b,0xaa,0x5c,0xa9,0x5d,0x12,0x02,0xf6,0x54,0x01,0xfd, 0xaf,0x5e,0x12,0x6e,0x5f,0xaf,0x5e,0x12,0x77,0x39,0xef,0xaf,0x5e,0x70,0x05,0x12, 0x90,0xbb,0x80,0x02,0xf1,0xa7,0x05,0x5e,0x80,0xd3,0xe5,0x5f,0x70,0x16,0xff,0x12, 0x77,0x39,0xef,0x70,0x0f,0x12,0x9f,0x11,0x12,0x79,0x61,0x12,0xaf,0xc4,0x54,0xbf, 0xf0,0x54,0x7f,0xf0,0x22,0x90,0x86,0x72,0xe0,0x13,0x13,0x22,0xf0,0x90,0x85,0xc3, 0xe0,0x54,0x0f,0x22,0xe0,0x54,0xfe,0x4e,0xfe,0xf0,0xef,0x22,0x12,0x02,0xf6,0xff, 0x54,0x01,0xfe,0x22,0x90,0x92,0x7d,0xe0,0x90,0x01,0x3f,0x22,0xe0,0xff,0xc4,0x13, 0x13,0x13,0x54,0x01,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xd1,0x6c,0x20,0xe6, 0x02,0xc1,0x2b,0x90,0x00,0x8c,0xe0,0x90,0x92,0x90,0xf0,0x7f,0x8d,0x12,0x7b,0x51, 0x90,0x92,0x91,0xef,0xf0,0x90,0x00,0x8e,0xe0,0x90,0x92,0x92,0xf0,0x90,0x92,0x91, 0xe0,0x24,0xfc,0x60,0x0f,0x24,0x03,0x60,0x02,0xc1,0x24,0x90,0x92,0x90,0xe0,0xff, 0xd1,0x73,0xc1,0x24,0x90,0x92,0x90,0xe0,0x24,0xdc,0x12,0x97,0xcc,0xfb,0xe4,0xfd, 0xff,0xd1,0x59,0x75,0xf0,0x12,0xd1,0x64,0x13,0x13,0x54,0x03,0xfb,0x0d,0xe4,0xff, 0xd1,0x59,0x75,0xf0,0x12,0xd1,0x64,0xb1,0x0e,0xfb,0x0d,0xe4,0xff,0xd1,0x59,0x75, 0xf0,0x12,0xd1,0x64,0xc4,0x54,0x03,0xfb,0x0d,0xe4,0xff,0xd1,0x59,0x12,0x95,0xe7, 0xfb,0xe4,0xfd,0x0f,0xd1,0x59,0x75,0xf0,0x12,0x90,0x89,0x3d,0x12,0x05,0x28,0xd1, 0x56,0xf1,0xe9,0xc4,0x13,0x54,0x01,0xfb,0x0d,0x7f,0x01,0xd1,0x59,0xf1,0xe9,0x54, 0x1f,0xd1,0x57,0x12,0x97,0xe0,0xe0,0xfb,0xe4,0xfd,0x0f,0xd1,0x59,0x75,0xf0,0x08, 0xa4,0x24,0x01,0xf5,0x82,0xe4,0x34,0x82,0xd1,0x54,0x75,0xf0,0x08,0xa4,0x24,0x02, 0xf5,0x82,0xe4,0x34,0x82,0xd1,0x54,0x75,0xf0,0x08,0xa4,0x24,0x03,0xf5,0x82,0xe4, 0x34,0x82,0xd1,0x54,0x75,0xf0,0x08,0xa4,0x24,0x04,0xf5,0x82,0xe4,0x34,0x82,0xf5, 0x83,0xe0,0xfb,0xe4,0xfd,0x0f,0xd1,0x59,0x75,0xf0,0x08,0xa4,0x24,0x05,0xf5,0x82, 0xe4,0x34,0x82,0xd1,0x54,0x75,0xf0,0x08,0xa4,0x24,0x06,0xf5,0x82,0xe4,0x34,0x82, 0xd1,0x54,0x75,0xf0,0x08,0xa4,0x24,0x07,0xf5,0x82,0xe4,0x34,0x82,0xf5,0x83,0xe0, 0xfb,0x0d,0xd1,0x30,0xd1,0x6c,0x30,0xe0,0x02,0xf1,0xa0,0xd0,0xd0,0x92,0xaf,0x22, 0xef,0x70,0x04,0x74,0xf0,0x80,0x16,0xef,0xb4,0x01,0x04,0x74,0xf4,0x80,0x0e,0xef, 0xb4,0x02,0x04,0x74,0xf8,0x80,0x06,0xef,0xb4,0x03,0x08,0x74,0xfc,0x2d,0x12,0xb0, 0xb2,0xeb,0xf0,0x22,0xf5,0x83,0xe0,0xfb,0x0d,0xd1,0x30,0x90,0x92,0x90,0xe0,0x22, 0x75,0xf0,0x12,0xec,0x90,0x89,0x3f,0x12,0x05,0x28,0xe0,0x22,0x7f,0x8f,0x12,0x7b, 0x51,0xef,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x90,0x92,0x9a,0xef,0xf0,0xd1, 0x6c,0x30,0xe6,0x38,0x7f,0x8d,0x12,0x7b,0x51,0xef,0x64,0x01,0x70,0x2e,0x90,0x92, 0x9b,0xf0,0x90,0x92,0x9b,0xe0,0xfd,0x90,0x92,0x9a,0xe0,0x12,0x94,0x78,0xe5,0x82, 0x2d,0x12,0x97,0xc3,0xfb,0xe4,0xff,0xd1,0x30,0x90,0x92,0x9b,0xe0,0x04,0xf0,0xe0, 0xc3,0x94,0x10,0x40,0xdd,0xd1,0x6c,0x30,0xe0,0x02,0xf1,0xa0,0xd0,0xd0,0x92,0xaf, 0x22,0x12,0xb3,0x7c,0xce,0xc3,0x13,0xce,0x13,0xd8,0xf9,0xff,0x12,0xb3,0xa1,0x12, 0xac,0x0e,0x64,0x01,0x60,0x02,0xe1,0x91,0x90,0x85,0xc5,0xe0,0x70,0x02,0xe1,0x91, 0xf1,0xe0,0x64,0x01,0x70,0x22,0x90,0x06,0xab,0xe0,0x90,0x85,0xcc,0xf0,0x90,0x06, 0xaa,0xe0,0x90,0x85,0xcb,0xf0,0xa3,0xe0,0xff,0x70,0x08,0x90,0x85,0xcb,0xe0,0xfe, 0xff,0x80,0x00,0x90,0x85,0xcc,0xef,0xf0,0x12,0x2c,0x26,0xe4,0x90,0x85,0xce,0xf0, 0x90,0x85,0xd1,0xa3,0xe0,0x90,0x05,0x58,0xf0,0x12,0xad,0x6b,0x12,0xad,0x78,0x54, 0xef,0xf0,0xf1,0xe0,0x24,0xfd,0x50,0x02,0x80,0x03,0x12,0xac,0x8b,0xf1,0xaf,0x13, 0x54,0x1f,0x30,0xe0,0x55,0xef,0xc4,0x13,0x13,0x54,0x03,0x20,0xe0,0x23,0xf1,0xb7, 0x6f,0x70,0x47,0x90,0x85,0xc2,0xe0,0x44,0x40,0xf0,0x90,0x85,0xcb,0xe0,0x91,0x35, 0x12,0x7b,0xfd,0xf1,0xfd,0x7d,0x02,0x7f,0x02,0x12,0x7c,0x41,0x12,0xae,0xe3,0x80, 0x29,0x12,0xaf,0xbc,0x64,0x01,0x70,0x22,0xf1,0xb7,0xfe,0x6f,0x60,0x1c,0x90,0x05, 0x73,0xe0,0xff,0xee,0x6f,0x60,0x13,0xf1,0xaf,0x54,0x3f,0x30,0xe0,0x0c,0xef,0x54, 0xbf,0x91,0x38,0x12,0x7b,0xbf,0xf1,0x99,0xf1,0x92,0x90,0x85,0xc2,0xe0,0x44,0x04, 0xf0,0x22,0x7d,0x02,0x7f,0x02,0x02,0x7c,0xa9,0x7d,0x01,0x7f,0x02,0x02,0x7c,0xa9, 0xe4,0xfd,0x7f,0x8d,0x02,0x7b,0x3e,0x12,0x90,0xc2,0xe0,0x54,0xfb,0xf0,0x22,0x90, 0x85,0xc2,0xe0,0xff,0x13,0x13,0x22,0x90,0x85,0xcb,0xe0,0xff,0xa3,0xe0,0x22,0x54, 0x08,0xfe,0xef,0x54,0xf7,0x4e,0x22,0x54,0x20,0xfe,0xef,0x54,0xdf,0x4e,0x22,0x54, 0x80,0xfe,0xef,0x54,0x7f,0x4e,0x22,0x90,0x92,0x05,0x12,0x87,0x6b,0x02,0x02,0xf6, 0x90,0x85,0xc3,0xe0,0xff,0xc4,0x54,0x0f,0x22,0x75,0xf0,0x12,0x90,0x89,0x3e,0x12, 0x05,0x28,0xe0,0x22,0xa1,0x15,0x7d,0x02,0x7f,0x02,0x12,0x7c,0x41,0x7d,0x01,0x7f, 0x02,0x02,0x7c,0x41,0x12,0x02,0xf6,0xff,0x90,0x92,0x79,0xf0,0xbf,0x01,0x07,0x11, 0x17,0xe4,0x90,0x92,0x79,0xf0,0x22,0x11,0x95,0x7f,0xf5,0x7e,0x01,0x12,0x64,0x37, 0xbf,0x01,0x06,0x90,0x92,0x05,0xe0,0xa3,0xf0,0x11,0x95,0x7f,0xf6,0x7e,0x01,0x12, 0x64,0x37,0xbf,0x01,0x08,0x90,0x92,0x05,0xe0,0x90,0x92,0x07,0xf0,0x11,0x95,0x7f, 0xf4,0x7e,0x01,0x12,0x64,0x37,0xbf,0x01,0x08,0x90,0x92,0x05,0xe0,0x90,0x92,0x08, 0xf0,0x11,0x95,0x7f,0xf3,0x7e,0x01,0x12,0x64,0x37,0xbf,0x01,0x08,0x90,0x92,0x05, 0xe0,0x90,0x92,0x09,0xf0,0x11,0x95,0x7f,0xf2,0x7e,0x01,0x12,0x64,0x37,0xbf,0x01, 0x08,0x90,0x92,0x05,0xe0,0x90,0x92,0x0a,0xf0,0x90,0x92,0x06,0xe0,0xff,0xa3,0xe0, 0xfd,0xa3,0xe0,0xfb,0xa3,0xe0,0x90,0x92,0x0e,0xf0,0x90,0x92,0x0a,0xe0,0x90,0x92, 0x0f,0xf0,0x02,0x87,0xbf,0x7b,0x01,0x7a,0x92,0x79,0x05,0x22,0x12,0x02,0xf6,0x54, 0x01,0xff,0x90,0x92,0x80,0xe0,0x54,0xfe,0x4f,0xf0,0x22,0x12,0x02,0xf6,0x90,0x85, 0xd0,0xf0,0x22,0x12,0x02,0xf6,0x90,0x86,0x71,0xf0,0x22,0x11,0xc2,0xe0,0x44,0x04, 0xf0,0x22,0x8f,0x61,0xef,0xc4,0x54,0xf0,0x24,0x05,0xf5,0x82,0xe4,0x34,0x81,0xf5, 0x83,0x22,0xe4,0xf5,0x62,0x90,0x85,0xbb,0xe0,0xff,0xe5,0x62,0xc3,0x9f,0x40,0x02, 0x61,0x72,0xe5,0x62,0x13,0x13,0x13,0x54,0x1f,0x90,0x92,0x2f,0xf0,0xe5,0x62,0x54, 0x07,0xa3,0xf0,0x90,0x04,0xa0,0xe0,0xff,0xa3,0xe0,0xfe,0xef,0x64,0x01,0x70,0x2e, 0xe5,0x62,0x6e,0x70,0x29,0xa3,0xe0,0xf5,0x63,0xa3,0xe0,0x90,0x92,0x2e,0xf0,0xe5, 0x62,0x91,0x78,0xe5,0x63,0xf0,0xe5,0x62,0x11,0xc5,0xe0,0x54,0xfc,0xff,0x90,0x92, 0x2e,0xe0,0x54,0x03,0x4f,0xff,0xe5,0x62,0x11,0xc5,0xef,0xf0,0x61,0x6e,0xaf,0x62, 0x12,0x77,0x39,0xef,0x70,0x02,0x61,0x6e,0x75,0xf0,0x12,0xe5,0x62,0x12,0x8e,0x64, 0x12,0x8d,0x0e,0x30,0xe0,0x02,0x61,0x6e,0x90,0x92,0x2f,0xe0,0x24,0x75,0xf5,0x82, 0xe4,0x34,0x8f,0xf5,0x83,0xe0,0xfd,0x7c,0x00,0x90,0x92,0x30,0xe0,0xd1,0x5d,0x80, 0x05,0xc3,0x33,0xce,0x33,0xce,0xd8,0xf9,0xff,0xee,0x5c,0xfe,0xef,0x5d,0x4e,0x60, 0x02,0x61,0x6e,0xd1,0x16,0xfe,0xa3,0xe0,0x4e,0x70,0x06,0xd1,0x09,0x70,0x02,0x61, 0x6e,0xe5,0x62,0x75,0xf0,0x12,0xa4,0x24,0x44,0xf9,0x74,0x89,0x35,0xf0,0xfa,0x7b, 0x01,0x90,0x92,0x28,0x12,0x87,0x6b,0xd1,0x16,0xf5,0x67,0xa3,0xe0,0xf5,0x68,0xd1, 0x09,0xff,0x90,0x92,0x2b,0xd1,0x54,0xe5,0x62,0xb1,0xea,0x90,0x92,0x2d,0xf0,0xfd, 0x75,0xf0,0x12,0xe5,0x62,0x12,0x8e,0x64,0xfe,0x13,0x13,0x54,0x03,0x90,0x92,0x2e, 0xf0,0xe5,0x62,0x91,0x78,0xe0,0xf5,0x63,0x54,0x7f,0xf5,0x64,0xd3,0x9d,0x40,0x16, 0x90,0x92,0x2d,0xe0,0xf5,0x64,0xe5,0x63,0x30,0xe7,0x07,0xe5,0x64,0x44,0x80,0xff, 0x80,0x02,0xaf,0x64,0x8f,0x63,0xe5,0x64,0x90,0x83,0x09,0x93,0xff,0x74,0xdc,0x25, 0x62,0xf1,0xcc,0xc3,0x9f,0xe5,0x64,0x40,0x07,0x90,0x82,0xe1,0x93,0xff,0x80,0x05, 0x90,0x82,0xf5,0x93,0xff,0xd1,0x37,0x12,0x87,0x6b,0x74,0x7c,0x25,0x62,0xf5,0x82, 0xe4,0x34,0x90,0xf5,0x83,0xe0,0xc3,0x94,0x05,0x40,0x02,0x61,0x64,0xe5,0x63,0x30, 0xe7,0x04,0x05,0x69,0x05,0x69,0xe5,0x69,0xd3,0x94,0x1a,0xaf,0x69,0x40,0x02,0x7f, 0x1a,0xd1,0x37,0x12,0x87,0x6b,0xc3,0xe5,0x68,0x94,0x0f,0xe5,0x67,0x94,0x00,0x50, 0x72,0x91,0x6c,0xff,0x90,0x92,0x2c,0xe0,0x2f,0xff,0x90,0x92,0x2b,0xe0,0x35,0xf0, 0xfe,0xb1,0xce,0xff,0xee,0x35,0xf0,0xfe,0x90,0x00,0x04,0x12,0x04,0x18,0x2f,0xfd, 0xee,0x35,0xf0,0xb1,0xf2,0xd3,0xed,0x9f,0xec,0x9e,0x40,0x04,0x71,0x7f,0x61,0x5f, 0x90,0x92,0x28,0x12,0x87,0x62,0x12,0x03,0xed,0x65,0x68,0x70,0x04,0xe5,0xf0,0x65, 0x67,0x75,0xf0,0x12,0x70,0x23,0xe5,0x62,0x12,0x8f,0xec,0xd1,0xcb,0xfe,0xef,0x54, 0x3f,0xff,0xee,0x04,0x54,0x03,0xfe,0xc4,0x33,0x33,0x54,0xc0,0x4f,0xf0,0xe4,0xfd, 0xaf,0x62,0x91,0x85,0x75,0xf0,0x12,0x80,0x00,0xe5,0x62,0x12,0x8f,0xec,0x54,0x3f, 0xf0,0x61,0x5f,0xe5,0x62,0x70,0x42,0x91,0x6c,0xff,0xae,0xf0,0xb1,0xce,0xfd,0xe5, 0xf0,0x3e,0xb1,0xf2,0xc3,0xed,0x9f,0xec,0x9e,0x50,0x08,0x90,0x90,0xdc,0x74,0x01, 0xf0,0x80,0x26,0x91,0x6c,0xfb,0xaa,0xf0,0xe5,0x68,0xae,0x67,0x78,0x03,0xce,0xc3, 0x13,0xce,0x13,0xd8,0xf9,0xff,0x7c,0x00,0x7d,0x05,0x12,0x03,0x70,0xd3,0xeb,0x9f, 0xea,0x9e,0x40,0x05,0xe4,0x90,0x90,0xdc,0xf0,0xab,0x69,0xad,0x62,0xaf,0x68,0xae, 0x67,0x12,0x46,0xe6,0x8e,0x65,0x8f,0x66,0xb1,0xb8,0xc3,0x74,0x01,0x93,0x95,0x66, 0xe4,0x93,0x95,0x65,0x50,0x08,0x7d,0x01,0xaf,0x62,0x91,0x85,0x80,0x0e,0xb1,0xc6, 0xc3,0xe5,0x66,0x9f,0xe5,0x65,0x94,0x00,0x50,0x08,0x71,0x7f,0x71,0x73,0xe4,0xf0, 0x80,0x2d,0x71,0x73,0xe0,0x04,0xf0,0x71,0x73,0xe0,0xc3,0x94,0x05,0x40,0x20,0x71, 0x73,0xe4,0xf0,0xb1,0xc6,0xb1,0xb8,0x74,0x01,0x93,0x2f,0xff,0xe4,0x93,0x34,0x00, 0xc3,0x13,0xfe,0xef,0x13,0xff,0xe5,0x62,0xb1,0xfd,0xee,0xf0,0xa3,0xef,0xf0,0xe4, 0xf5,0x65,0xf5,0x66,0x75,0x6b,0x01,0x7d,0x01,0xaf,0x62,0x12,0x65,0xc2,0x05,0x62, 0x01,0xd5,0x22,0x74,0xac,0x25,0x62,0xf5,0x82,0xe4,0x34,0x8f,0xf5,0x83,0x22,0x7d, 0x01,0xaf,0x62,0x90,0x92,0x31,0xef,0xf0,0xa3,0xed,0xf0,0x90,0x92,0x31,0xe0,0xff, 0x91,0x78,0xe0,0xf5,0x6c,0x54,0x7f,0xf5,0x6e,0x75,0xf0,0x12,0xef,0x90,0x89,0x3d, 0x12,0x05,0x28,0xe0,0x90,0x92,0x34,0xf0,0x90,0x92,0x31,0xe0,0xb1,0xe7,0xfc,0x11, 0xc4,0xe0,0x54,0x03,0xf5,0x6d,0xe5,0x6e,0x90,0x83,0x45,0x93,0xff,0x90,0x92,0x31, 0xe0,0xfd,0xb1,0xfd,0xd1,0x54,0xed,0x12,0x8e,0x64,0xc4,0x54,0x03,0x90,0x92,0x33, 0xf0,0x74,0xcc,0x2d,0xb1,0xb0,0xe5,0x6e,0xf0,0x74,0x4c,0x2d,0xd1,0x4c,0xe5,0x6d, 0xf0,0xe5,0x6e,0xd3,0x9c,0x40,0x06,0x8c,0x6e,0xaf,0x04,0x8f,0x6c,0x90,0x92,0x32, 0xe0,0xf5,0x6f,0xe4,0x90,0x92,0x35,0xf0,0x90,0x92,0x35,0xe0,0xc3,0x95,0x6f,0x50, 0x59,0xe5,0x6c,0x30,0xe7,0x07,0x85,0x6e,0x6c,0xb1,0xd6,0x60,0x4d,0x7d,0x02,0xaf, 0x6e,0x12,0x78,0x6f,0xef,0x60,0x1a,0x90,0x92,0x34,0xe0,0xfd,0x90,0x92,0x31,0xe0, 0xfb,0x90,0x8a,0x85,0x74,0x01,0xb1,0xde,0x43,0x6c,0x80,0xb1,0xd6,0x70,0x23,0x80, 0x29,0x90,0x92,0x34,0xe0,0xfd,0xe5,0x6e,0xd3,0x9d,0x40,0x0e,0x90,0x92,0x31,0xe0, 0xfb,0xa3,0xe0,0x90,0x8a,0x85,0xb1,0xde,0x80,0x10,0x90,0x92,0x34,0xe0,0xf5,0x6c, 0x80,0x08,0x90,0x92,0x35,0xe0,0x04,0xf0,0x80,0x9e,0x90,0x92,0x31,0xe0,0xff,0x90, 0x91,0x0b,0xe5,0x6d,0xf0,0xe4,0xfb,0xad,0x6c,0x02,0x27,0x3d,0x90,0x92,0x28,0x12, 0x87,0x62,0x90,0x00,0x08,0x02,0x04,0x18,0xc4,0x54,0xf0,0x24,0x00,0xf5,0x82,0xe4, 0x34,0x81,0xf5,0x83,0x22,0x8d,0x6c,0xac,0x07,0xec,0x91,0x78,0xe0,0xf5,0x6d,0x54, 0x7f,0xfb,0xe5,0x6d,0x54,0x80,0xf5,0x6e,0x75,0xf0,0x12,0xec,0xb1,0xea,0xf5,0x70, 0x12,0x8e,0x60,0xc4,0x54,0x03,0xf5,0x71,0xeb,0xb1,0xba,0xe4,0x93,0xfe,0x74,0x01, 0x93,0xff,0xec,0xb1,0xfd,0xee,0xf0,0xa3,0xef,0xf0,0xb1,0xad,0xe5,0x6d,0xf0,0x12, 0x8e,0x60,0x13,0x13,0x54,0x03,0xf5,0x6f,0x74,0x4c,0x2c,0xd1,0x4c,0xe5,0x6f,0xf0, 0xeb,0x64,0x2c,0x70,0x2b,0x12,0x8e,0x60,0xff,0x54,0x03,0xfe,0xe5,0x6f,0xc3,0x9e, 0x50,0x1e,0x05,0x6f,0xe5,0x6f,0x54,0x03,0x25,0xe0,0x25,0xe0,0xfe,0x75,0xf0,0x12, 0xec,0x90,0x89,0x3f,0x12,0x05,0x28,0xef,0x54,0xf3,0x4e,0xf0,0x8b,0x6d,0xa1,0x9d, 0xeb,0xc3,0x95,0x70,0x50,0x71,0xad,0x03,0xaf,0x71,0xd1,0x23,0xab,0x07,0xad,0x70, 0xaf,0x71,0xd1,0x23,0x8f,0x70,0xeb,0x04,0xfd,0xed,0xd3,0x95,0x70,0x50,0x4d,0xed, 0x13,0x13,0x13,0x54,0x1f,0xff,0xec,0xf1,0xe0,0xe5,0x82,0x2f,0xf1,0xc3,0xf5,0x82, 0x75,0x83,0x00,0xed,0x54,0x07,0xd1,0x5d,0x80,0x05,0xc3,0x33,0xce,0x33,0xce,0xd8, 0xf9,0xff,0xee,0x55,0x83,0xfe,0xef,0x55,0x82,0x4e,0x60,0x1d,0xbb,0x13,0x14,0x7b, 0x18,0x8b,0x6d,0x74,0xcc,0x2c,0xf5,0x82,0xe4,0x34,0x8f,0xf5,0x83,0xe0,0x44,0x04, 0xf0,0x80,0x09,0xab,0x05,0x8b,0x6d,0x80,0x03,0x0d,0x80,0xad,0xad,0x6d,0xaf,0x71, 0x12,0xb0,0x7b,0x8f,0x6d,0x80,0x26,0xeb,0x65,0x70,0x70,0x1a,0x75,0xf0,0x12,0xec, 0x12,0x8f,0xec,0xc4,0x13,0x54,0x07,0x30,0xe0,0x22,0xe5,0x6d,0x20,0xe7,0x1d,0xeb, 0x44,0x80,0xf5,0x6d,0x80,0x07,0xb1,0xad,0xe5,0x70,0xf0,0xf5,0x6d,0xaf,0x04,0x90, 0x91,0x0b,0xe5,0x6f,0xf0,0xab,0x6c,0xad,0x6d,0x12,0x27,0x3d,0x22,0x74,0xcc,0x2c, 0xf5,0x82,0xe4,0x34,0x90,0xf5,0x83,0x22,0xe5,0x64,0x25,0xe0,0x24,0x1d,0xf5,0x82, 0xe4,0x34,0x83,0xf5,0x83,0x22,0xe5,0x64,0x90,0x83,0x45,0x93,0xff,0x22,0x90,0x00, 0x06,0x12,0x04,0x18,0x2f,0x22,0x90,0x92,0x32,0xe0,0x14,0xf0,0xe0,0x22,0xf0,0xaf, 0x6e,0x12,0x6b,0xe2,0x8f,0x6c,0x22,0x75,0xf0,0x12,0x90,0x89,0x3c,0x12,0x05,0x28, 0xe0,0x22,0xfc,0xe5,0x67,0xc3,0x13,0xfe,0xe5,0x68,0x13,0xff,0x22,0x25,0xe0,0x24, 0x7b,0xf5,0x82,0xe4,0x34,0x8f,0xf5,0x83,0x22,0x75,0xf0,0x12,0xe5,0x62,0x90,0x89, 0x42,0x12,0x05,0x28,0xe0,0x22,0x75,0xf0,0x12,0xe5,0x62,0x90,0x89,0x40,0x12,0x05, 0x28,0xe0,0x22,0xef,0x60,0x0a,0xed,0xc3,0x94,0x2c,0x40,0x04,0x7e,0x20,0x80,0x02, 0xe4,0xfe,0xc3,0xed,0x9e,0xff,0x22,0x8f,0x69,0xef,0x75,0xf0,0x06,0xa4,0x24,0x3f, 0xf9,0x74,0x82,0x35,0xf0,0xfa,0x7b,0xff,0x90,0x92,0x25,0x22,0xf5,0x82,0xe4,0x34, 0x90,0xf5,0x83,0x22,0xe4,0xf0,0xa3,0xef,0xf0,0x75,0xf0,0x12,0x22,0xff,0x74,0x01, 0x7e,0x00,0xa8,0x07,0x08,0x22,0xe4,0xfb,0xfa,0xfd,0x7f,0x01,0x12,0x86,0x4e,0x90, 0x92,0x24,0xef,0xf0,0x60,0xf0,0x90,0x84,0xc1,0xe0,0xff,0x70,0x04,0xa3,0xe0,0x60, 0xe5,0xc2,0xaf,0xef,0x30,0xe0,0x0e,0x90,0x84,0xc1,0xe0,0x54,0xfe,0xf0,0xe4,0xff, 0x12,0x2d,0xbd,0x11,0xd2,0xd1,0xc0,0x30,0xe1,0x06,0x54,0xfd,0xf0,0x12,0x60,0x5d, 0xd1,0xc0,0x30,0xe2,0x06,0x54,0xfb,0xf0,0x12,0x6a,0x6d,0xd1,0xc0,0x30,0xe4,0x0c, 0x54,0xef,0xf0,0x12,0x6f,0x22,0xbf,0x01,0x03,0x12,0xa2,0x44,0xd2,0xaf,0x80,0xb6, 0xd2,0xaf,0xc2,0xaf,0x90,0x84,0xc1,0xe0,0xff,0x22,0xe0,0xff,0xc4,0x13,0x13,0x54, 0x03,0x22,0x90,0x86,0x72,0xd1,0xca,0x30,0xe0,0x02,0xd1,0xdd,0x22,0xf1,0xbb,0xe4, 0x90,0x88,0xd8,0xd1,0xfe,0x90,0x88,0x76,0xd1,0xfe,0xa3,0xd1,0xfe,0xa3,0xf0,0xa3, 0xf0,0x90,0x88,0x88,0xf0,0xa3,0xf0,0x90,0x88,0xca,0xf0,0xa3,0xf0,0x22,0xf0,0xa3, 0xf0,0xa3,0xf0,0xa3,0xf0,0x22,0x7e,0x00,0x7f,0x24,0x7d,0x00,0x7b,0x01,0x7a,0x86, 0x79,0x72,0x12,0x06,0xde,0x90,0x06,0x90,0xe0,0x44,0x20,0xf0,0x12,0xb3,0x69,0xd1, 0xdd,0x90,0x84,0xc5,0xe0,0xff,0x64,0x02,0x70,0x29,0xf1,0xb2,0x30,0xe0,0x02,0x7e, 0x01,0x90,0x86,0x90,0xf1,0xb0,0x30,0xe1,0x02,0x7e,0x01,0x90,0x86,0x8e,0xf1,0xb0, 0x30,0xe2,0x02,0x7e,0x01,0x90,0x86,0x8f,0xee,0xf0,0x90,0xfd,0x80,0xe0,0x90,0x02, 0xfb,0xf0,0x22,0xef,0x64,0x01,0x70,0x1d,0xf1,0xa9,0x30,0xe0,0x02,0x7f,0x01,0x90, 0x86,0x90,0xf1,0xa7,0x30,0xe1,0x02,0x7f,0x01,0x90,0x86,0x8e,0xf1,0xa7,0x30,0xe2, 0x02,0x7f,0x01,0x80,0x23,0x90,0x84,0xc5,0xe0,0x64,0x03,0x70,0x20,0xf1,0xa0,0x30, 0xe0,0x02,0x7f,0x01,0x90,0x86,0x90,0xf1,0x9e,0x30,0xe1,0x02,0x7f,0x01,0x90,0x86, 0x8e,0xf1,0x9e,0x30,0xe2,0x02,0x7f,0x01,0x90,0x86,0x8f,0xef,0xf0,0x22,0xef,0xf0, 0x90,0xfd,0x78,0xe0,0x7f,0x00,0x22,0xef,0xf0,0x90,0xfd,0x70,0xe0,0x7f,0x00,0x22, 0xee,0xf0,0x90,0xfd,0x80,0xe0,0x7e,0x00,0x22,0xc1,0xd2,0x90,0x86,0x72,0xe0,0x54, 0xbf,0xf0,0x22,0xf5,0x82,0xe4,0x35,0x83,0xf5,0x83,0xe0,0x22,0xf5,0x82,0xe4,0x34, 0x8f,0xf5,0x83,0xe0,0x22,0xe4,0x90,0x84,0xc1,0xd1,0xfe,0x90,0x92,0x77,0xf0,0x22, 0x75,0xf0,0x08,0xa4,0x24,0x00,0xf5,0x82,0xe4,0x34,0x82,0xf5,0x83,0x22,0x90,0x92, 0x36,0xef,0xf0,0x90,0x04,0x7e,0xe0,0xff,0xa3,0xe0,0x90,0x92,0x46,0xf0,0xe0,0xfe, 0x6f,0x60,0x65,0x90,0x92,0x37,0x74,0x03,0xf0,0x90,0x92,0x45,0x74,0x08,0xf0,0xee, 0x04,0x54,0x0f,0xff,0xe4,0xfe,0xef,0x75,0xf0,0x08,0xa4,0x24,0x00,0xf5,0x82,0xe4, 0x34,0x80,0xf5,0x83,0xe5,0x82,0x2e,0x12,0x97,0xc3,0xfd,0x74,0x39,0x2e,0xf5,0x82, 0xe4,0x34,0x92,0xf5,0x83,0xed,0xf0,0x0e,0xee,0xb4,0x08,0xda,0x7b,0x01,0x7a,0x92, 0x79,0x37,0x12,0x5e,0x10,0x90,0x92,0x46,0xe0,0x04,0x54,0x0f,0xff,0xf0,0xbf,0x0f, 0x02,0xe4,0xf0,0x90,0x92,0x46,0xe0,0x90,0x04,0x7f,0xf0,0x90,0x92,0x36,0xe0,0x7f, 0x04,0x70,0x02,0x80,0x04,0x12,0x87,0xa5,0x22,0x8f,0x0d,0x7f,0x02,0x12,0x86,0x27, 0x90,0x84,0xc1,0xe0,0x45,0x0d,0xf0,0x22,0x90,0x85,0xc5,0xe0,0x60,0x57,0x90,0x85, 0xc1,0xe0,0x30,0xe0,0x19,0x90,0x85,0xdc,0xe0,0x04,0xf0,0x12,0xb3,0x7c,0xce,0xc3, 0x13,0xce,0x13,0xd8,0xf9,0xff,0x90,0x85,0xfc,0xee,0xf0,0xa3,0xef,0xf0,0x12,0x8f, 0xaf,0x13,0x54,0x1f,0x30,0xe0,0x0d,0x90,0x01,0x3b,0xe0,0x30,0xe4,0x06,0x12,0x8f, 0xf6,0x12,0xb3,0x97,0x90,0x92,0x96,0x31,0xdd,0xc3,0x90,0x92,0x97,0xe0,0x94,0x80, 0x90,0x92,0x96,0xe0,0x64,0x80,0x94,0x80,0x40,0x0b,0x90,0x01,0x98,0xe0,0x54,0xfe, 0xf0,0xe0,0x44,0x01,0xf0,0x12,0x5d,0x1f,0x12,0x6e,0x1d,0xe4,0x90,0x88,0xe0,0xf0, 0x7f,0x01,0x11,0x69,0x12,0xb2,0xad,0x12,0xa6,0x8d,0x54,0x03,0x30,0xe0,0x51,0x90, 0x88,0x76,0xe0,0xfe,0xa3,0xe0,0xff,0x7c,0x00,0x7d,0x64,0x12,0x03,0x82,0x90,0x88, 0xca,0xe0,0x6e,0x70,0x03,0xa3,0xe0,0x6f,0x60,0x0a,0x90,0x88,0xca,0xe4,0x75,0xf0, 0x01,0x02,0x07,0x0a,0x90,0x88,0x7a,0xe0,0xfe,0xa3,0xe0,0xff,0x90,0x88,0x88,0xe0, 0xb5,0x06,0x14,0xa3,0xe0,0xb5,0x07,0x0f,0xef,0x4e,0x60,0x0b,0x90,0x01,0xc7,0x74, 0x31,0xf0,0x7f,0x01,0x02,0x5f,0xe9,0x31,0x41,0xe4,0x90,0x88,0xca,0xf0,0xa3,0xf0, 0x22,0xe4,0x90,0x92,0x39,0xf0,0xa3,0xf0,0x90,0x06,0x32,0xe0,0x44,0x20,0xf0,0x12, 0x75,0xe4,0xef,0x64,0x01,0x70,0x7c,0x90,0x88,0xd9,0xe0,0xff,0x90,0x92,0x8c,0x74, 0x0a,0xf0,0x7b,0x08,0x7d,0x01,0x71,0xd2,0x12,0xb3,0xa1,0x90,0x92,0x36,0xa3,0x91, 0x94,0xfd,0x74,0x2c,0x2e,0xd1,0x2f,0x90,0x92,0x38,0xef,0xf0,0x90,0x92,0x36,0xa3, 0xe0,0x24,0x28,0xf9,0xe4,0x34,0xfc,0xfa,0x7b,0x01,0xe4,0xfd,0x12,0x52,0x21,0x90, 0x92,0x38,0xe0,0xff,0x90,0x92,0x37,0xe0,0x2f,0xff,0x90,0x92,0x36,0xe0,0x34,0x00, 0xcf,0x24,0x30,0xcf,0x34,0x00,0xfe,0x90,0x92,0x39,0xf0,0xa3,0xef,0xf0,0x31,0xe4, 0x31,0xd4,0x90,0x88,0xd9,0xe0,0xfb,0xe4,0xff,0x12,0x15,0x44,0x31,0xd4,0x90,0x88, 0xd5,0xe0,0xfb,0x7f,0x11,0x12,0x15,0x44,0x90,0x04,0x1f,0x74,0x20,0xf0,0x90,0x88, 0x88,0x31,0xdd,0x22,0x90,0x92,0x39,0xe0,0xfc,0xa3,0xe0,0xfd,0x22,0xe4,0x75,0xf0, 0x01,0x02,0x07,0x0a,0xad,0x07,0x90,0x88,0x80,0x31,0xdd,0x90,0x88,0x80,0xe0,0xff, 0xae,0x05,0x74,0x04,0x2e,0xb1,0x6f,0xef,0xf0,0x90,0x88,0x80,0xa3,0xe0,0xff,0x74, 0x05,0x2e,0xd1,0x1f,0xef,0xf0,0x22,0xe4,0x90,0x92,0x1f,0xf0,0xa3,0xf0,0x51,0x57, 0xef,0x64,0x01,0x60,0x3b,0xc3,0x90,0x92,0x20,0xe0,0x94,0x88,0x90,0x92,0x1f,0xe0, 0x94,0x13,0x40,0x0f,0x90,0x01,0xc1,0xe0,0x44,0x10,0xf0,0x90,0x01,0xc7,0x74,0xfd, 0xf0,0x80,0x1d,0x90,0x92,0x1f,0x31,0xdd,0x51,0xc1,0xd3,0x90,0x92,0x20,0xe0,0x94, 0x32,0x90,0x92,0x1f,0xe0,0x94,0x00,0x40,0xc5,0x90,0x01,0xc6,0xe0,0x30,0xe3,0xbe, 0x90,0x01,0xc7,0x74,0xfe,0xf0,0x22,0x90,0x01,0x9a,0xe0,0x54,0xc0,0x44,0x0b,0x12, 0xa2,0x34,0x90,0x01,0x98,0xe0,0x54,0xc0,0x7f,0x00,0xb4,0x40,0x02,0x7f,0x01,0x22, 0x90,0x92,0x93,0xef,0xf0,0xe4,0xa3,0xf0,0xa3,0xf0,0x90,0x01,0x09,0xe0,0x7f,0x00, 0x30,0xe7,0x02,0x7f,0x01,0x90,0x92,0x93,0xe0,0x6f,0x60,0x34,0xc3,0x90,0x92,0x95, 0xe0,0x94,0x88,0x90,0x92,0x94,0xe0,0x94,0x13,0x40,0x08,0x90,0x01,0xc0,0xe0,0x44, 0x10,0xf0,0x22,0x90,0x92,0x94,0x31,0xdd,0x51,0xc1,0xd3,0x90,0x92,0x95,0xe0,0x94, 0x32,0x90,0x92,0x94,0xe0,0x94,0x00,0x40,0xc1,0x90,0x01,0xc6,0xe0,0x30,0xe0,0xba, 0x22,0x7f,0x14,0x7e,0x00,0x02,0x7c,0x9f,0x12,0xb2,0x83,0x7f,0x08,0x12,0x7b,0x51, 0xef,0x54,0xef,0xfd,0x7f,0x08,0x12,0x7b,0x3e,0xe4,0xff,0x51,0x70,0x7d,0x35,0x7f, 0x27,0x12,0x7b,0x3e,0x90,0x85,0xc2,0xe0,0x54,0xef,0xf0,0x22,0xd3,0x10,0xaf,0x01, 0xc3,0xc0,0xd0,0x51,0xfc,0x51,0xc8,0xd0,0xd0,0x92,0xaf,0x22,0x90,0x85,0xc2,0xe0, 0x44,0x10,0xf0,0x90,0x85,0xd0,0xe0,0xfd,0x7f,0x93,0x12,0x7b,0x3e,0x90,0x85,0xc6, 0xe0,0x60,0x12,0x90,0x01,0x2f,0xe0,0x30,0xe7,0x05,0x74,0x10,0xf0,0x80,0x06,0x90, 0x01,0x2f,0x74,0x90,0xf0,0x7f,0x08,0x12,0x7b,0x51,0xef,0x44,0x10,0xfd,0x7f,0x08, 0x12,0x7b,0x3e,0x7f,0x01,0x51,0x70,0x7d,0x34,0x7f,0x27,0x12,0x7b,0x3e,0x7f,0x90, 0xf1,0x57,0x7f,0x90,0x12,0x7b,0x3e,0x7f,0x14,0x7e,0x00,0x02,0x7c,0x9f,0x90,0x85, 0xc8,0xe0,0xff,0x60,0x03,0xb4,0x08,0x0d,0x71,0x66,0xbf,0x01,0x08,0x51,0xec,0x90, 0x01,0xe5,0xe0,0x04,0xf0,0x22,0x90,0x92,0x7b,0xe0,0xc3,0x13,0x20,0xe0,0x3a,0x90, 0x02,0x87,0xe0,0x60,0x02,0x80,0x08,0x90,0x01,0x00,0xe0,0x64,0x3f,0x60,0x05,0x12, 0xaf,0x35,0x80,0x45,0x90,0x86,0x72,0xe0,0x30,0xe0,0x0a,0x90,0x02,0x82,0xe0,0x60, 0x04,0xf1,0xec,0x80,0x34,0x90,0x86,0x7a,0xe0,0x30,0xe0,0x04,0xf1,0xe5,0x80,0x29, 0x90,0x02,0x86,0xe0,0x20,0xe1,0x02,0x80,0x07,0x90,0x02,0x86,0xe0,0x30,0xe3,0x08, 0x90,0x01,0xb8,0x74,0x04,0xf0,0x80,0x11,0x90,0x04,0x1d,0xe0,0x60,0x08,0x90,0x01, 0xb8,0x74,0x40,0xf0,0x80,0x03,0x02,0xaf,0xac,0x90,0x01,0xb9,0x74,0x08,0xf0,0x7f, 0x00,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x90,0x92,0x8a,0xed,0xf0,0xa3,0xeb, 0xf0,0x90,0x92,0x89,0xef,0xf0,0xe4,0xfd,0xfc,0xd1,0x27,0x90,0x92,0x89,0xe0,0x90, 0x04,0x25,0xf0,0x90,0x92,0x8a,0xe0,0x60,0x05,0x91,0x88,0x44,0x80,0xf0,0xaf,0x05, 0x74,0x20,0x2f,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0x54,0xc0,0xf0,0x91,0x88, 0x54,0xc0,0xf0,0x90,0x92,0x8c,0xe0,0xff,0xae,0x05,0x74,0x18,0x2e,0xf5,0x82,0xe4, 0x34,0xfc,0xf5,0x83,0xef,0xf0,0x90,0x00,0x8b,0xe0,0xd3,0x94,0x03,0x74,0x10,0x40, 0x07,0x91,0x74,0x74,0x04,0xf0,0x80,0x04,0x91,0x74,0xe4,0xf0,0xaf,0x05,0x91,0x7d, 0xe0,0x54,0x01,0xfe,0x90,0x92,0x8b,0xe0,0x25,0xe0,0x25,0xe0,0xfb,0xee,0x44,0x02, 0x4b,0xfe,0x91,0x7d,0xee,0xf0,0x74,0x11,0x2f,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83, 0x74,0xff,0xf0,0x74,0x29,0x2f,0x91,0xa4,0x54,0xf7,0xf0,0xae,0x04,0xaf,0x05,0xd0, 0xd0,0x92,0xaf,0x22,0x2e,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0x22,0x74,0x12,0x2f, 0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0x22,0x74,0x21,0x2f,0xf5,0x82,0xe4,0x34,0xfc, 0xf5,0x83,0xe0,0x22,0xe0,0xfe,0x24,0x28,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0, 0xff,0x74,0x29,0x2e,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0x22,0x90,0x88,0xd9, 0xb1,0x4b,0x91,0x94,0xfd,0x90,0x92,0x05,0xe0,0x24,0x2c,0xd1,0x2f,0x90,0x92,0x05, 0xe0,0x2f,0x24,0x30,0xa3,0xf0,0xe0,0xfd,0x24,0x04,0xb1,0x6f,0xe0,0xfe,0x74,0x05, 0x2d,0xf5,0x82,0xe4,0x34,0xfc,0xb1,0x64,0x90,0x88,0x80,0xf0,0xa3,0xef,0xf0,0x90, 0x92,0x06,0xe0,0x24,0x0c,0xf9,0xe4,0x34,0xfc,0xb1,0x5c,0x75,0x1e,0x04,0x7b,0x01, 0x7a,0x88,0x79,0x82,0x12,0x6a,0x21,0x90,0x92,0x06,0xe0,0x24,0x14,0xf0,0xe0,0xfd, 0x24,0x01,0xd1,0x3b,0x2d,0xf5,0x82,0xe4,0x34,0xfc,0xb1,0x64,0x90,0x88,0x86,0xf0, 0xa3,0xef,0xf0,0x90,0x88,0xda,0xb1,0x4b,0x90,0x88,0x7c,0xe0,0xfe,0xa3,0xe0,0xff, 0x4e,0x60,0x11,0x90,0x92,0x05,0xe0,0xb1,0x56,0x8f,0x1e,0x7b,0x01,0x7a,0x88,0x79, 0x8a,0x12,0x6a,0x21,0x90,0x88,0xdb,0xb1,0x4b,0xb1,0x56,0x90,0x88,0x7e,0xa3,0xe0, 0xf5,0x1e,0x7b,0x01,0x7a,0x88,0x79,0xaa,0x02,0x6a,0x21,0xe0,0xff,0x12,0x7b,0x2a, 0x90,0x92,0x05,0xef,0xf0,0x22,0x24,0x00,0xf9,0xe4,0x34,0xfc,0x75,0x1b,0x01,0xf5, 0x1c,0x89,0x1d,0x22,0xf5,0x83,0xe0,0x7c,0x00,0x24,0x00,0xff,0xec,0x3e,0x22,0xf5, 0x82,0xe4,0x34,0xfc,0xf5,0x83,0x22,0xef,0x60,0x04,0xb1,0x7f,0x91,0xad,0x22,0xe4, 0xfd,0xfc,0x90,0x88,0xd8,0xe0,0xff,0xd1,0x27,0xab,0x05,0x74,0x01,0x2b,0xd1,0x3b, 0x2b,0xf5,0x82,0xe4,0x34,0xfc,0x12,0xa6,0xa8,0x90,0x88,0x76,0xf0,0xa3,0xef,0xf0, 0x74,0x03,0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0xfe,0x74,0x02,0x2b,0xf5, 0x82,0xe4,0x34,0xfc,0xd1,0x16,0x90,0x88,0x78,0xf0,0xa3,0xef,0xf0,0x74,0x05,0x2b, 0xd1,0x1f,0xe0,0xfe,0x74,0x04,0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xd1,0x16,0x90,0x88, 0x7a,0xf0,0xa3,0xef,0xf0,0x74,0x07,0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0, 0xfe,0x74,0x06,0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xd1,0x16,0x90,0x88,0x7c,0xf0,0xa3, 0xef,0xf0,0x74,0x09,0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0xfe,0x74,0x08, 0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0x24,0x00,0xff,0xec,0x3e,0x90,0x88, 0x7e,0xf0,0xa3,0xef,0xf0,0x22,0xf5,0x83,0xe0,0x24,0x00,0xff,0xea,0x3e,0x22,0xf5, 0x82,0xe4,0x34,0xfc,0xf5,0x83,0x22,0x12,0x7b,0x2a,0x7c,0x00,0xad,0x07,0x22,0xf5, 0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0xfb,0x02,0x5d,0x98,0xf5,0x82,0xe4,0x34,0xfc, 0xf5,0x83,0xe0,0xfe,0x74,0x00,0x22,0xef,0x60,0x4e,0x90,0x88,0xce,0xe0,0xff,0x60, 0x03,0x12,0x7b,0x8a,0x90,0x01,0xc7,0xe4,0xf0,0x90,0x01,0x17,0xe0,0xfe,0x90,0x01, 0x16,0xb1,0x66,0x90,0x85,0xb7,0xf0,0xa3,0xef,0xf0,0x90,0x06,0x09,0xe0,0x54,0xfe, 0xf0,0x7d,0x35,0x7f,0xff,0xd1,0xb8,0xf1,0x5f,0x90,0x02,0x86,0xe0,0x44,0x04,0xf0, 0x12,0x72,0x79,0xd1,0xc3,0xf1,0x11,0xd1,0xb5,0x12,0x76,0xe6,0x90,0x01,0x34,0x74, 0x08,0xf0,0xfd,0xe4,0xff,0x02,0x7c,0xa9,0x7d,0x08,0xe4,0xff,0x12,0x7c,0x41,0x90, 0x06,0x90,0xe0,0x54,0xf0,0xf0,0x90,0x02,0x86,0xe0,0x54,0xfb,0xf0,0xd1,0xea,0x12, 0x97,0xb9,0x02,0x97,0x06,0xe4,0xfd,0xff,0x90,0x05,0x22,0xef,0xf0,0x90,0x92,0x77, 0xed,0xf0,0x22,0x22,0x90,0x85,0xc5,0xe0,0x64,0x01,0x70,0x1d,0x12,0x8c,0xed,0x60, 0x0f,0xe4,0xfd,0x7f,0x0c,0x12,0xa9,0xd6,0xe4,0xfd,0xff,0xd1,0xb8,0x02,0x6b,0x98, 0x90,0x85,0xc8,0xe0,0x70,0x03,0x12,0xa9,0xd2,0x22,0x12,0xb3,0x69,0x12,0x77,0x89, 0x90,0x01,0x3f,0x74,0x04,0xf0,0x90,0x84,0xc5,0xe0,0xff,0xb4,0x01,0x07,0x90,0xfd, 0x00,0xe0,0x54,0xef,0xf0,0xef,0xb4,0x01,0x07,0x90,0xfe,0x10,0xe0,0x54,0xfb,0xf0, 0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xf1,0xb9,0xf1,0x4d,0xf1,0xd5,0x7f,0x02, 0xf1,0x57,0x7f,0x02,0x12,0xa6,0x95,0x44,0x02,0xf0,0x90,0x01,0x00,0x74,0xff,0xf0, 0x90,0x06,0xb7,0x74,0x09,0xf0,0x90,0x06,0xb4,0x74,0x86,0xf0,0xf1,0xb2,0xf1,0x4d, 0x12,0x87,0x4a,0xed,0x44,0x0f,0xf1,0xc6,0xd0,0xd0,0x92,0xaf,0x22,0x90,0x92,0x81, 0x12,0x04,0xeb,0x90,0x92,0x81,0x22,0x12,0x7b,0x51,0xef,0x44,0x01,0xfd,0x22,0xd3, 0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xf1,0xb9,0xf1,0xa8,0xf1,0xd5,0x12,0xb0,0x37,0x7f, 0x02,0x12,0x7b,0x51,0xef,0x54,0xfe,0xfd,0x7f,0x02,0x12,0x7b,0x3e,0xf1,0xb2,0xf1, 0xa8,0x12,0x87,0x4a,0xed,0x54,0xf0,0xf1,0xc6,0x90,0x01,0x00,0x74,0x3f,0xf0,0x90, 0x01,0x34,0x74,0x08,0xf0,0x90,0x01,0x01,0xe0,0x54,0xfd,0xf0,0x90,0x05,0x53,0xe0, 0x44,0x20,0xf0,0xd0,0xd0,0x92,0xaf,0x22,0x90,0x92,0x85,0x12,0x04,0xeb,0x90,0x92, 0x85,0x22,0x7d,0xb0,0xe4,0xff,0x02,0x7b,0xe0,0x7f,0x30,0x7e,0x08,0x12,0x70,0x61, 0xed,0x44,0x80,0xfd,0xec,0x22,0xfd,0xec,0x90,0x8d,0x9d,0x12,0x04,0xeb,0x7d,0xb0, 0xe4,0xff,0x02,0x78,0xdd,0x12,0x87,0x4a,0x90,0x91,0x66,0x12,0x04,0xeb,0x7f,0x30, 0x7e,0x08,0x02,0x71,0x18,0x90,0x01,0xb8,0x74,0x08,0xf0,0x22,0x90,0x01,0xb8,0x74, 0x02,0xf0,0x22,0xe4,0xf5,0x40,0xf5,0x41,0xf5,0x42,0x75,0x43,0x80,0xad,0x40,0x7f, 0x50,0x12,0x7b,0x3e,0xad,0x41,0x7f,0x51,0x12,0x7b,0x3e,0xad,0x42,0x7f,0x52,0x12, 0x7b,0x3e,0xad,0x43,0x7f,0x53,0x02,0x7b,0x3e,0x75,0x48,0x12,0xe4,0xf5,0x49,0x75, 0x4a,0x07,0x75,0x4b,0x32,0x90,0x01,0x30,0xe5,0x48,0xf0,0xa3,0xe5,0x49,0xf0,0xa3, 0xe5,0x4a,0xf0,0xa3,0xe5,0x4b,0xf0,0x90,0x01,0x20,0xe5,0x50,0xf0,0x22,0x12,0x75, 0xb6,0x12,0x75,0x58,0x11,0x19,0x11,0x4a,0x80,0xa9,0x75,0x52,0x06,0x75,0x53,0x01, 0x75,0x54,0x03,0x75,0x55,0x62,0x90,0x01,0x38,0xe5,0x52,0xf0,0xa3,0xe5,0x53,0xf0, 0xa3,0xe5,0x54,0xf0,0xa3,0xe5,0x55,0xf0,0x22,0x12,0x7c,0x4e,0x90,0x84,0xc5,0xef, 0xf0,0x11,0x3e,0x90,0x01,0x64,0x74,0x01,0xf0,0x90,0x04,0x23,0xe0,0x44,0x80,0xf0, 0x90,0x00,0x17,0xe0,0x54,0xfc,0x44,0x04,0xfd,0x7f,0x17,0x12,0x7b,0x3e,0x90,0x00, 0x38,0xe0,0x44,0x40,0xfd,0x7f,0x38,0x12,0x7b,0x3e,0x02,0x68,0xe2,0x90,0x00,0x80, 0xe0,0x44,0x80,0xfd,0x7f,0x80,0x12,0x7b,0x3e,0xd1,0x9d,0xd1,0xb3,0x12,0x7b,0x9c, 0x31,0x1a,0x12,0x97,0xd5,0x7f,0x01,0x12,0x85,0x15,0x90,0x92,0x7f,0x74,0x02,0xf0, 0xff,0x12,0x85,0x15,0x90,0x92,0x7f,0xe0,0x04,0xf0,0x11,0x69,0x31,0x37,0x90,0x00, 0x80,0xe0,0x44,0x40,0xfd,0x7f,0x80,0x12,0x7b,0x3e,0x75,0x20,0xff,0x12,0x7c,0xcd, 0x12,0x9a,0x07,0x90,0x00,0x81,0xe0,0x44,0x04,0xfd,0x7f,0x81,0x12,0x7b,0x3e,0x51, 0x2c,0x90,0x00,0x00,0xe0,0x54,0xfb,0xfd,0xe4,0xff,0xd1,0x95,0x44,0x04,0xfd,0x7f, 0x01,0x12,0x7b,0x3e,0x90,0x01,0x98,0x74,0x80,0xf0,0xa3,0x74,0x88,0xf0,0xa3,0xe4, 0xf0,0xa3,0x74,0x80,0xf0,0xe4,0xff,0x02,0x85,0x9e,0x90,0x01,0x01,0xe0,0x44,0x04, 0xf0,0x90,0x01,0x9a,0xe0,0x54,0xc0,0x51,0x34,0x90,0x01,0x99,0xe0,0x44,0xc0,0xf0, 0x90,0x01,0x9b,0x74,0x80,0xf0,0x22,0x51,0x26,0x12,0x7b,0xef,0x12,0x3c,0x03,0xf1, 0x15,0x31,0x70,0x31,0x6b,0x12,0x97,0x06,0x12,0x7b,0x64,0x12,0x78,0xb9,0x90,0x89, 0x16,0xe0,0x54,0x7f,0xf0,0x54,0xbf,0xf0,0x54,0xdf,0xf0,0x54,0xf0,0xf0,0xe4,0x90, 0x89,0x18,0xf0,0x90,0x89,0x16,0xe0,0x54,0xef,0xf0,0x22,0x51,0x19,0x02,0x06,0xde, 0x7e,0x00,0x7f,0xac,0x7d,0x00,0x7b,0x01,0x7a,0x85,0x79,0xc1,0x12,0x06,0xde,0x51, 0x19,0x12,0x06,0xde,0x90,0x85,0xc4,0x74,0x02,0xf0,0x90,0x85,0xcb,0x14,0x51,0x3c, 0x90,0x85,0xd1,0xe4,0xf0,0xa3,0x74,0x02,0xf0,0x51,0x0a,0xe4,0xfd,0xff,0x12,0x57, 0x82,0x7d,0x0c,0x7f,0x02,0x12,0x57,0x82,0x7d,0x0c,0x7f,0x01,0x12,0x57,0x82,0x90, 0x84,0xc5,0xe0,0xff,0xb4,0x01,0x08,0x90,0x85,0xd0,0x74,0xdd,0xf0,0x80,0x0f,0xef, 0x90,0x85,0xd0,0xb4,0x03,0x05,0x74,0xd4,0xf0,0x80,0x03,0x74,0x40,0xf0,0x7f,0x79, 0x12,0x7b,0x51,0xef,0x54,0x03,0xff,0xbf,0x02,0x0f,0x7f,0x28,0x12,0x7b,0x51,0xef, 0x30,0xe2,0x06,0x90,0x85,0xfb,0x74,0x02,0xf0,0x12,0x8a,0xad,0x51,0x0a,0x7f,0x01, 0x12,0x69,0x33,0x90,0x06,0x04,0xe0,0x54,0x7f,0xf0,0x90,0x06,0x0a,0xe0,0x54,0xf8, 0xf0,0x12,0x9e,0xb5,0xe4,0x90,0x86,0x71,0xf0,0x22,0x90,0x85,0xfb,0xe0,0x24,0x04, 0x90,0x85,0xdd,0xf0,0xa3,0x74,0x08,0xf0,0x22,0x7e,0x00,0x7f,0x04,0x7d,0x00,0x7b, 0x01,0x7a,0x92,0x79,0x7b,0x22,0xe4,0xfd,0xff,0x02,0x6e,0x5f,0x90,0x01,0xe4,0xe4, 0xf0,0xa3,0xf0,0x22,0xf0,0x7f,0x0a,0x7e,0x00,0x02,0x7c,0x9f,0xf0,0xa3,0xf0,0xa3, 0x74,0x08,0xf0,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xe4,0x90,0x92,0x5a,0x51, 0x3c,0xa3,0xf0,0xe4,0xa3,0xf0,0xa3,0xf0,0x90,0x92,0x62,0xf0,0xa3,0xf0,0xa3,0xf0, 0x90,0x01,0xc4,0x74,0x44,0xf0,0x74,0xa2,0xa3,0xf0,0x90,0x01,0x1f,0xe0,0xfe,0x90, 0x01,0x1e,0x12,0x9d,0x66,0x90,0x92,0x51,0xf0,0xa3,0xef,0xf0,0x90,0x02,0x82,0xe0, 0x90,0x92,0x59,0xf0,0x90,0x86,0x72,0xe0,0x20,0xe0,0x02,0xa1,0x32,0xe4,0x90,0x92, 0x58,0xf0,0x90,0x92,0x59,0xe0,0xff,0x90,0x92,0x58,0xe0,0xc3,0x9f,0x40,0x02,0xa1, 0x32,0x90,0x92,0x51,0xe0,0xfc,0xa3,0xe0,0xfd,0xec,0xff,0x90,0xfd,0x11,0xf0,0x90, 0x92,0x62,0xef,0xf0,0x74,0x01,0x2d,0xf5,0x82,0xe4,0x34,0xfb,0xf5,0x83,0xe0,0xfe, 0x74,0x00,0x2d,0xf5,0x82,0xe4,0x34,0xfb,0xd1,0xa8,0x54,0x3f,0xfe,0x90,0x92,0x53, 0xf0,0xa3,0xef,0xf0,0x90,0x92,0x5e,0xee,0xf0,0xa3,0xef,0xf0,0x74,0x02,0x2d,0xf5, 0x82,0xe4,0x34,0xfb,0xf5,0x83,0xe0,0x54,0x0f,0x33,0x33,0x33,0x54,0xf8,0xff,0x74, 0x03,0x2d,0xf5,0x82,0xe4,0x34,0xfb,0xf5,0x83,0xe0,0x54,0x03,0xfe,0xef,0x24,0x18, 0x2e,0xff,0x90,0x92,0x63,0xf0,0x90,0x92,0x52,0xe0,0x2f,0xff,0x90,0x92,0x51,0xe0, 0x34,0x00,0xfe,0x90,0x92,0x55,0xb1,0x5e,0xc0,0x07,0xb1,0x43,0x7d,0x01,0x12,0x55, 0x36,0xc0,0x07,0xb1,0x43,0x7d,0x04,0x12,0x55,0x36,0xab,0x07,0xd0,0x05,0xd0,0x07, 0x12,0x5d,0x98,0x90,0x92,0x5a,0xef,0xb1,0x42,0xe4,0xfd,0x12,0x55,0x36,0xef,0x54, 0xfc,0x90,0x92,0x57,0xf0,0x90,0x92,0x63,0xe0,0xff,0x90,0x92,0x53,0xe4,0x8f,0xf0, 0x12,0x07,0x0a,0x90,0x92,0x53,0xe0,0xfe,0xa3,0xe0,0xff,0x12,0x7a,0xd0,0x90,0x92, 0x53,0xee,0xf0,0xa3,0xef,0xf0,0xb1,0x67,0x7d,0x0f,0x12,0x55,0x36,0x90,0x92,0x53, 0xe0,0xfc,0xa3,0xe0,0xfd,0x90,0x92,0x51,0xec,0x8d,0xf0,0x12,0x07,0x0a,0x90,0x85, 0xb7,0xe0,0xfc,0xa3,0xe0,0xfd,0xd3,0x90,0x92,0x52,0xe0,0x9d,0x90,0x92,0x51,0xe0, 0x9c,0x40,0x1b,0x90,0x85,0xb8,0xe0,0x24,0x01,0xfd,0x90,0x85,0xb7,0xe0,0x34,0x00, 0xfc,0xc3,0x90,0x92,0x52,0xe0,0x9d,0xf0,0x90,0x92,0x51,0xe0,0x9c,0xf0,0xef,0x30, 0xe6,0x06,0x90,0x01,0xc7,0x74,0x22,0xf0,0xef,0x30,0xe7,0x06,0x90,0x01,0xc7,0x74, 0x21,0xf0,0xef,0x30,0xe5,0x06,0x90,0x01,0xc7,0x74,0x23,0xf0,0x90,0x92,0x57,0xe0, 0x24,0x40,0x60,0x04,0x24,0x20,0x70,0x2a,0x90,0x86,0x75,0x12,0x8d,0x0c,0x20,0xe0, 0x02,0x81,0xc6,0x90,0x86,0x87,0xe0,0x04,0xb1,0x42,0x12,0x59,0x20,0xef,0x70,0x02, 0x81,0xc6,0x90,0x92,0x57,0xe0,0xff,0x12,0x7b,0x77,0x90,0x86,0x88,0xe0,0x04,0xf0, 0x81,0xc6,0xd1,0x8d,0x54,0x03,0x30,0xe0,0x56,0x90,0x92,0x5a,0xe0,0xff,0x90,0x92, 0x56,0xe0,0x2f,0xff,0x90,0x92,0x55,0xe0,0x34,0x00,0xcf,0x24,0x08,0xcf,0x34,0x00, 0xfe,0x90,0x92,0x60,0xb1,0x5e,0xef,0x64,0x45,0x70,0x34,0xb1,0x4d,0xb1,0xa4,0xef, 0x64,0x01,0x70,0x2b,0xb1,0x4d,0xb1,0x70,0xef,0x64,0x01,0x70,0x22,0x90,0x92,0x64, 0x04,0xb1,0x4c,0xa3,0xe0,0xfd,0xd1,0x21,0xef,0x70,0x0c,0x90,0x92,0x62,0xe0,0xfd, 0x90,0xfd,0x11,0xb1,0x4c,0xb1,0xe6,0x90,0x92,0x62,0xe0,0x90,0xfd,0x11,0xf0,0xb1, 0x43,0x12,0x59,0x20,0xef,0x60,0x18,0xb1,0x43,0x90,0x92,0x5a,0xe0,0xfd,0x90,0x92, 0x5d,0xe0,0xfb,0x12,0x54,0x02,0xef,0x60,0x06,0x90,0x92,0x64,0x74,0x01,0xf0,0x90, 0x86,0x72,0xe0,0xc3,0x13,0x30,0xe0,0x13,0xb1,0x43,0x90,0x92,0x5a,0xe0,0xfd,0x12, 0x38,0x10,0xef,0x60,0x06,0x90,0x92,0x64,0x74,0x01,0xf0,0x12,0x8c,0xe5,0x54,0x3f, 0x30,0xe0,0x0a,0xb1,0x43,0x90,0x92,0x5a,0xe0,0xfd,0x12,0x21,0xb6,0x90,0x86,0x72, 0x12,0x8d,0x0c,0x30,0xe0,0x10,0x90,0x92,0x64,0xe0,0x70,0x0a,0xb1,0x43,0x90,0x92, 0x5a,0xe0,0xfd,0x12,0x4a,0x3f,0x12,0x79,0x00,0xef,0x64,0x01,0x60,0x07,0x90,0x01, 0x3f,0xe0,0x30,0xe2,0x05,0x7f,0x01,0x12,0x5f,0xe9,0x90,0x01,0x3f,0xe0,0x30,0xe2, 0x02,0xb1,0x56,0x12,0x6f,0xe5,0xef,0x64,0x01,0x70,0x36,0x90,0x86,0x89,0xe0,0x04, 0xf0,0x12,0x6f,0xe5,0xad,0x07,0xef,0x64,0x01,0x60,0x1f,0xb1,0x56,0xed,0xb4,0x02, 0x08,0x90,0x01,0xc7,0x74,0x42,0xf0,0x80,0x0a,0xed,0xb4,0x04,0x06,0x90,0x01,0xc7, 0x74,0x43,0xf0,0x7f,0x01,0x12,0x5f,0xe9,0x80,0x18,0xb1,0x67,0x12,0x7c,0x0b,0x80, 0x09,0x90,0x86,0x72,0xe0,0x54,0xfe,0xf0,0x80,0x08,0x90,0x92,0x58,0xe0,0x04,0xf0, 0x41,0x92,0x74,0x44,0x04,0x90,0x01,0xc4,0xf0,0x74,0xa2,0xa3,0xf0,0xd0,0xd0,0x92, 0xaf,0x22,0xf0,0x90,0x92,0x55,0xe0,0xfe,0xa3,0xe0,0xff,0x22,0xf0,0x90,0x92,0x60, 0xe0,0xfe,0xa3,0xe0,0xff,0x22,0x90,0x86,0x7a,0xe0,0x44,0x01,0xf0,0x22,0xf0,0xa3, 0xef,0xf0,0xe4,0xfd,0x02,0x55,0x36,0x90,0x92,0x51,0xe0,0xfe,0xa3,0xe0,0xff,0x22, 0xb1,0xdd,0x24,0x16,0xff,0xe4,0x3e,0xfe,0xe4,0xfd,0x12,0x55,0x36,0x90,0x88,0x86, 0xa3,0xe0,0xb5,0x07,0x19,0x90,0x92,0x26,0xe0,0x24,0x16,0xd1,0x67,0x7d,0x01,0x12, 0x55,0x36,0xef,0xfd,0x90,0x88,0x86,0xe0,0x6d,0x70,0x01,0xe4,0x60,0x03,0x7f,0x00, 0x22,0x7f,0x01,0x22,0xb1,0xdd,0xe4,0xa3,0xf0,0x90,0x92,0x27,0xe0,0xfd,0xc3,0x94, 0x04,0x50,0x27,0x90,0x92,0x26,0xe0,0x24,0x10,0xd1,0x67,0x12,0x55,0x36,0x90,0x92, 0x27,0xe0,0x24,0x82,0xf5,0x82,0xe4,0x34,0x88,0xf5,0x83,0xe0,0x6f,0x60,0x03,0x7f, 0x00,0x22,0x90,0x92,0x27,0xe0,0x04,0xf0,0x80,0xcf,0x7f,0x01,0x22,0x90,0x92,0x25, 0xee,0xf0,0xa3,0xef,0xf0,0x22,0xb1,0xdd,0xa3,0xed,0xf0,0xe4,0xa3,0xf0,0xd1,0x70, 0x50,0x17,0xd1,0x79,0x24,0xaa,0xf5,0x82,0xe4,0x34,0x88,0xf5,0x83,0xe0,0xb5,0x07, 0x1d,0x90,0x92,0x28,0xe0,0x04,0xf0,0x80,0xe5,0x90,0x06,0x32,0xe0,0x44,0x80,0xf0, 0x90,0x01,0xc7,0x74,0x30,0xf0,0x7f,0x01,0x12,0x5f,0xe9,0x7f,0x01,0x22,0x7f,0x00, 0x22,0xb1,0xdd,0xa3,0xed,0xf0,0x90,0x88,0x7c,0xe0,0x70,0x02,0xa3,0xe0,0x60,0x23, 0xe4,0x90,0x92,0x28,0xf0,0xd1,0x70,0x50,0x1d,0xd1,0x79,0x24,0x8a,0xf5,0x82,0xe4, 0x34,0x88,0xf5,0x83,0xe0,0x6f,0x60,0x03,0x7f,0x00,0x22,0x90,0x92,0x28,0xe0,0x04, 0xf0,0x80,0xe2,0x7f,0x00,0x22,0x90,0x06,0x32,0xe0,0x44,0x40,0xf0,0xe4,0x90,0x88, 0x88,0xf0,0xa3,0xf0,0x7f,0x01,0x22,0xff,0x90,0x92,0x25,0xe0,0x34,0x00,0xfe,0x22, 0x90,0x92,0x28,0xe0,0xfd,0xc3,0x94,0x02,0x22,0x90,0x92,0x25,0xe0,0xfe,0xa3,0xe0, 0xff,0xed,0x24,0x1c,0xfd,0x12,0x55,0x36,0x90,0x92,0x28,0xe0,0x22,0x90,0x86,0x72, 0xe0,0xc4,0x13,0x13,0x22,0x12,0x7b,0x3e,0x90,0x01,0x01,0xe0,0x22,0x90,0x84,0xa1, 0x74,0x02,0xf0,0xa3,0x74,0x10,0xf0,0x22,0xf5,0x83,0xe0,0x7a,0x00,0x24,0x00,0xff, 0xea,0x3e,0x22,0x90,0x01,0x94,0xe0,0x44,0x01,0xf0,0x90,0x01,0xc7,0xe4,0xf0,0x22, 0x90,0x92,0x4b,0xef,0xf0,0x90,0x84,0xc5,0xe0,0x64,0x02,0x70,0x22,0x90,0x92,0x4b, 0xe0,0xfd,0x64,0x01,0x70,0x35,0xb1,0x56,0x90,0x86,0x76,0xe0,0x12,0x8d,0x0e,0x30, 0xe0,0x09,0x90,0x01,0x4d,0xe0,0x64,0x80,0xf0,0x80,0x20,0xaf,0x05,0x80,0x19,0x90, 0x01,0x00,0x74,0xff,0xf0,0x7f,0x64,0x7e,0x00,0x12,0x7c,0x9f,0x90,0x06,0x90,0xe0, 0x44,0x01,0xf0,0x90,0x92,0x4b,0xe0,0xff,0x12,0x2a,0x87,0x90,0x88,0xe1,0xe0,0x54, 0xfe,0xf0,0x02,0x97,0xbb,0x7b,0xff,0x7a,0x83,0x79,0x09,0x90,0x89,0x1b,0x12,0x87, 0x6b,0x7a,0x82,0x79,0x00,0x90,0x89,0x1e,0x12,0x87,0x6b,0x7a,0x82,0x79,0x3f,0x90, 0x89,0x21,0x12,0x87,0x6b,0x7a,0x82,0x79,0xe1,0x90,0x89,0x27,0x12,0x87,0x6b,0x7a, 0x83,0x79,0x1d,0x90,0x89,0x2a,0x12,0x87,0x6b,0x7a,0x83,0x79,0x45,0x90,0x89,0x2d, 0x12,0x87,0x6b,0x7a,0x83,0x79,0x59,0x90,0x89,0x33,0x12,0x87,0x6b,0x7a,0x83,0x79, 0x6d,0x90,0x89,0x36,0x12,0x87,0x6b,0x7a,0x83,0x79,0x95,0x90,0x89,0x39,0x02,0x87, 0x6b,0x7d,0x02,0x90,0x01,0xc4,0x74,0x71,0xf0,0x74,0xa7,0xa3,0xf0,0x90,0x92,0x7f, 0xe0,0xff,0xed,0xc3,0x9f,0x50,0x15,0xed,0x25,0xe0,0x24,0x81,0xf8,0xe6,0x30,0xe4, 0x08,0x12,0x9f,0xe5,0xa3,0xf0,0x7f,0x00,0x22,0x0d,0x80,0xe1,0x7f,0x01,0x22,0xe4, 0x90,0x92,0x21,0xf0,0xa3,0xf0,0xa3,0xf0,0x90,0x92,0x21,0xe0,0x64,0x01,0xf0,0x24, 0x9f,0x90,0x01,0xc4,0xf0,0x74,0xa7,0xa3,0xf0,0x12,0x7c,0x66,0xbf,0x01,0x03,0x12, 0x5b,0x25,0x90,0x85,0xc5,0xe0,0x60,0x0f,0x90,0x85,0xc8,0xe0,0xff,0x90,0x85,0xc7, 0xe0,0x6f,0x60,0x03,0x12,0xac,0x6b,0xc2,0xaf,0xf1,0x71,0xbf,0x01,0x03,0x12,0xb2, 0xa2,0xd2,0xaf,0x90,0x92,0x22,0x12,0x99,0xdd,0x54,0x7f,0x45,0xf0,0x70,0x0d,0x7f, 0xff,0x12,0x7b,0x51,0xef,0x04,0xfd,0x7f,0xff,0x12,0x7b,0x3e,0x12,0x8f,0xf4,0x12, 0x84,0x4d,0x80,0xa4,0x32,0xc0,0xe0,0xc0,0xf0,0xc0,0x83,0xc0,0x82,0xc0,0xd0,0x75, 0xd0,0x00,0xc0,0x00,0xc0,0x01,0xc0,0x02,0xc0,0x03,0xc0,0x04,0xc0,0x05,0xc0,0x06, 0xc0,0x07,0x90,0x01,0xc4,0x74,0x05,0xf0,0x74,0xa8,0xa3,0xf0,0x12,0x6c,0xbc,0xe5, 0x47,0x30,0xe7,0x02,0x11,0x5c,0x74,0x05,0x04,0x90,0x01,0xc4,0xf0,0x74,0xa8,0xa3, 0xf0,0xd0,0x07,0xd0,0x06,0xd0,0x05,0xd0,0x04,0xd0,0x03,0xd0,0x02,0xd0,0x01,0xd0, 0x00,0xd0,0xd0,0xd0,0x82,0xd0,0x83,0xd0,0xf0,0xd0,0xe0,0x32,0x7f,0x01,0x7e,0x00, 0x12,0x7a,0x72,0x7f,0xf2,0x12,0x7b,0x51,0xef,0x20,0xe6,0x0e,0x7f,0x05,0x12,0x7b, 0x51,0xef,0x44,0x80,0xfd,0x7f,0x05,0x12,0x7b,0x3e,0x22,0xc0,0xe0,0xc0,0xf0,0xc0, 0x83,0xc0,0x82,0xc0,0xd0,0x75,0xd0,0x00,0xc0,0x00,0xc0,0x01,0xc0,0x02,0xc0,0x03, 0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0,0x07,0x90,0x01,0xc4,0x74,0x7b,0xf0,0x74,0xa8, 0xa3,0xf0,0x12,0x71,0x90,0xe5,0x4c,0x30,0xe1,0x02,0xf1,0x2b,0xe5,0x4c,0x30,0xe3, 0x03,0x12,0xb0,0xba,0xe5,0x4c,0x30,0xe4,0x02,0xf1,0xb4,0xe5,0x4c,0x30,0xe5,0x03, 0x12,0xb0,0xc7,0xe5,0x4e,0x30,0xe0,0x02,0x31,0x31,0xe5,0x4e,0x30,0xe1,0x03,0x12, 0x98,0x78,0xe5,0x4e,0x30,0xe2,0x02,0xd1,0xac,0xe5,0x4e,0x30,0xe3,0x02,0x91,0x15, 0xe5,0x4e,0x30,0xe4,0x02,0x91,0x3e,0xe5,0x4e,0x30,0xe5,0x03,0x12,0xb0,0x1b,0xe5, 0x4e,0x30,0xe6,0x02,0x91,0x74,0xe5,0x4f,0x30,0xe1,0x02,0xf1,0xd5,0xe5,0x4f,0x30, 0xe4,0x02,0xf1,0x30,0xe5,0x4f,0x30,0xe5,0x02,0xf1,0x28,0x74,0x7b,0x04,0x90,0x01, 0xc4,0xf0,0x74,0xa8,0xa3,0xf0,0xd0,0x07,0xd0,0x06,0xd0,0x05,0xd0,0x04,0xd0,0x03, 0xd0,0x02,0xd0,0x01,0xd0,0x00,0xd0,0xd0,0xd0,0x82,0xd0,0x83,0xd0,0xf0,0xd0,0xe0, 0x32,0xe4,0xf5,0x72,0x90,0x85,0xc5,0xe0,0x70,0x02,0x21,0xd1,0x91,0x0e,0x64,0x01, 0x60,0x02,0x21,0xd1,0x71,0x6b,0x12,0x87,0x3d,0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0, 0x07,0x90,0x05,0x62,0x71,0x84,0x78,0x10,0x12,0x04,0xd8,0xd0,0x03,0xd0,0x02,0xd0, 0x01,0xd0,0x00,0x12,0x87,0x3d,0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0,0x07,0xa3,0x71, 0x84,0x78,0x18,0x12,0x04,0xd8,0xd0,0x03,0xd0,0x02,0xd0,0x01,0xd0,0x00,0x91,0x62, 0xf1,0xbc,0x60,0x1e,0x24,0xfe,0x60,0x03,0x04,0x70,0x1a,0xd1,0xe3,0xe0,0xff,0x60, 0x06,0x90,0x85,0xce,0xe0,0x60,0x0e,0xef,0x70,0x08,0x90,0x85,0xcb,0xe0,0xa3,0xf0, 0x80,0x00,0x75,0x72,0x01,0xe5,0x72,0x60,0x28,0x91,0x5a,0x90,0x85,0xce,0xe0,0x60, 0x03,0xb4,0x01,0x04,0x91,0x04,0x80,0x08,0x91,0x04,0x75,0xf0,0x03,0xa4,0x24,0xfe, 0xff,0x90,0x85,0xcd,0xe0,0x2f,0x91,0x30,0x90,0x85,0xc8,0xe0,0x20,0xe2,0x02,0x31, 0xd2,0x22,0x7d,0x01,0x7f,0x04,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x90,0x92,0x9e, 0xed,0xf0,0x90,0x85,0xc1,0xe0,0xfe,0xc4,0x13,0x13,0x54,0x03,0x30,0xe0,0x02,0x61, 0x30,0xee,0x12,0x8d,0x0e,0x30,0xe0,0x02,0x61,0x30,0x90,0x85,0xc8,0xe0,0xfe,0x6f, 0x70,0x02,0x61,0x30,0xef,0x70,0x02,0x41,0x9c,0x24,0xfe,0x70,0x02,0x41,0xd8,0x24, 0xfe,0x60,0x4d,0x24,0xfc,0x70,0x02,0x61,0x17,0x24,0xfc,0x60,0x02,0x61,0x29,0xee, 0xb4,0x0e,0x03,0x12,0x74,0x93,0x90,0x85,0xc8,0xe0,0x70,0x05,0x7f,0x01,0x12,0x79, 0x80,0x90,0x85,0xc8,0xe0,0xb4,0x06,0x03,0x12,0x73,0x8e,0x90,0x85,0xc8,0xe0,0xb4, 0x04,0x0f,0x90,0x92,0x9e,0xe0,0xff,0x60,0x05,0x12,0x6d,0x4c,0x80,0x03,0x12,0x79, 0x61,0x90,0x85,0xc8,0xe0,0x64,0x08,0x60,0x02,0x61,0x29,0x12,0x7a,0xb9,0x61,0x29, 0x90,0x85,0xc8,0xe0,0x70,0x05,0x7f,0x01,0x12,0x79,0x80,0x90,0x85,0xc8,0xe0,0xb4, 0x06,0x03,0x12,0x73,0x8e,0x90,0x85,0xc8,0xe0,0xb4,0x0e,0x08,0x71,0x35,0xbf,0x01, 0x03,0x12,0x74,0x93,0x90,0x85,0xc8,0xe0,0x64,0x0c,0x60,0x02,0x61,0x29,0x71,0x35, 0xef,0x64,0x01,0x60,0x02,0x61,0x29,0x12,0x70,0x9e,0x61,0x29,0x90,0x85,0xc8,0xe0, 0xb4,0x0e,0x08,0x71,0x35,0xbf,0x01,0x03,0x12,0x74,0x93,0x90,0x85,0xc8,0xe0,0xb4, 0x06,0x03,0x12,0x73,0x8e,0x90,0x85,0xc8,0xe0,0xb4,0x0c,0x08,0x71,0x35,0xbf,0x01, 0x03,0x12,0x70,0x9e,0x90,0x85,0xc8,0xe0,0x64,0x04,0x70,0x5d,0xf1,0x3c,0xef,0x64, 0x01,0x70,0x56,0x12,0x77,0xfe,0x80,0x51,0x90,0x85,0xc8,0xe0,0xb4,0x0e,0x08,0x71, 0x35,0xbf,0x01,0x03,0x12,0x74,0x93,0x90,0x85,0xc8,0xe0,0xb4,0x06,0x03,0x12,0x73, 0x8e,0x90,0x85,0xc8,0xe0,0xb4,0x0c,0x08,0x71,0x35,0xbf,0x01,0x03,0x12,0x70,0x9e, 0x90,0x85,0xc8,0xe0,0x70,0x05,0x7f,0x01,0x12,0x79,0x80,0x90,0x85,0xc8,0xe0,0xb4, 0x04,0x17,0x12,0x79,0xf3,0x80,0x12,0x90,0x85,0xc8,0xe0,0xb4,0x0c,0x0b,0x12,0x8f, 0xaf,0x54,0x3f,0x30,0xe0,0x03,0x12,0x7a,0x8a,0x90,0x85,0xc8,0x12,0xb3,0x8a,0xf0, 0xd0,0xd0,0x92,0xaf,0x22,0x12,0x7a,0x29,0xef,0x64,0x01,0x60,0x04,0xf1,0x35,0x80, 0x21,0x90,0x85,0xc1,0xe0,0x13,0x13,0x13,0x54,0x1f,0x30,0xe0,0x05,0x12,0x9f,0xec, 0x80,0x10,0x90,0x85,0xc7,0xe0,0xd3,0x94,0x04,0x40,0x05,0x12,0x9f,0xe5,0x80,0x02, 0xe1,0xac,0x90,0x01,0xb9,0x74,0x02,0xf0,0x7f,0x00,0x22,0x90,0x05,0x61,0xe0,0xff, 0xe4,0xfc,0xfd,0xfe,0x78,0x08,0x12,0x04,0xd8,0xa8,0x04,0xa9,0x05,0xaa,0x06,0xab, 0x07,0x90,0x05,0x60,0xe0,0xff,0xe4,0xfc,0xfd,0xfe,0x22,0xe4,0x90,0x92,0x47,0xf0, 0x90,0x85,0xc5,0xe0,0x60,0x6d,0x91,0x0e,0x64,0x01,0x70,0x67,0x90,0x85,0xcb,0xe0, 0x90,0x05,0x73,0xf0,0x71,0x6b,0x12,0x87,0x3d,0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0, 0x07,0x90,0x05,0x62,0x71,0x84,0x78,0x10,0x12,0x04,0xd8,0xd0,0x03,0xd0,0x02,0xd0, 0x01,0xd0,0x00,0x12,0x87,0x3d,0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0,0x07,0xa3,0x71, 0x84,0x78,0x18,0x12,0x04,0xd8,0xd0,0x03,0xd0,0x02,0xd0,0x01,0xd0,0x00,0x91,0x62, 0x90,0x92,0x47,0x74,0x01,0xf0,0xe4,0x90,0x85,0xcc,0xf0,0x04,0x60,0x15,0x91,0x5a, 0xe4,0x90,0x91,0x6e,0xf0,0x90,0x85,0xcd,0x91,0x2f,0x90,0x85,0xc8,0xe0,0x20,0xe2, 0x02,0x31,0xd2,0x22,0xe4,0x90,0x91,0x6e,0xf0,0x90,0x85,0xce,0xe0,0x22,0xe4,0xff, 0x12,0x77,0x39,0xef,0x22,0x91,0x0e,0x64,0x01,0x70,0x0a,0x90,0x85,0xc5,0xe0,0x60, 0x04,0xb1,0x6b,0x91,0x26,0x22,0xf0,0xe4,0x90,0x91,0x6e,0xf0,0x90,0x86,0x6e,0xe0, 0x90,0x91,0x6f,0xf0,0xe4,0xfb,0xfd,0x7f,0x54,0x7e,0x01,0x02,0x61,0x41,0x91,0x0e, 0x64,0x01,0x70,0x15,0x90,0x85,0xc5,0xe0,0x60,0x0f,0xb1,0x6b,0xf0,0x90,0x85,0xc1, 0xe0,0xb1,0x76,0x54,0x07,0x70,0x02,0x91,0x6b,0x22,0x90,0x85,0xc9,0xe0,0x44,0x10, 0xf0,0x22,0x12,0x87,0x3d,0x90,0x86,0x02,0x02,0x04,0xeb,0x90,0x85,0xc7,0xe0,0xff, 0x7d,0x01,0x21,0xd6,0xe4,0xff,0x12,0x77,0x39,0xbf,0x01,0x0e,0x90,0x85,0xc5,0xe0, 0x60,0x08,0x91,0xdf,0x54,0x07,0x70,0x02,0x91,0x6b,0x22,0xe4,0xf5,0x72,0x90,0x06, 0xa9,0xe0,0xf5,0x72,0x54,0xc0,0x70,0x07,0x91,0xdf,0x54,0xfd,0xf0,0x80,0xcc,0xe5, 0x72,0x30,0xe6,0x1f,0x90,0x85,0xc5,0xe0,0x64,0x01,0x70,0x19,0x90,0x85,0xc9,0xe0, 0x44,0x01,0x12,0x8c,0xec,0x64,0x02,0x60,0x05,0x12,0x77,0x61,0x80,0x07,0x12,0x79, 0x41,0x80,0x02,0x91,0xdf,0xe5,0x72,0x90,0x85,0xc9,0x30,0xe7,0x0d,0xe0,0x44,0x02, 0x91,0x26,0x90,0x85,0xc1,0xe0,0x44,0x04,0xf0,0x22,0xe0,0x54,0xfd,0xf0,0x22,0x90, 0x85,0xc9,0xe0,0x54,0xfe,0xf0,0x22,0x12,0x8f,0xaf,0x13,0x54,0x1f,0x30,0xe0,0x10, 0xef,0xc4,0x13,0x13,0x54,0x03,0x30,0xe0,0x07,0x7d,0x02,0x7f,0x02,0x12,0x7c,0x41, 0x90,0x85,0xc1,0xe0,0xff,0x13,0x13,0x54,0x3f,0x30,0xe0,0x09,0xef,0xb1,0x76,0x54, 0x07,0x70,0x4f,0x80,0x4b,0x90,0x85,0xce,0xe0,0x04,0xf0,0x90,0x85,0xc9,0xe0,0x54, 0xef,0xf0,0x90,0x86,0x6d,0xe0,0xff,0x90,0x85,0xce,0xe0,0xd3,0x9f,0x40,0x31,0x91, 0x0e,0x64,0x01,0x70,0x2d,0x12,0x8c,0xed,0x70,0x05,0x12,0x70,0xdb,0x80,0x24,0x12, 0x70,0xdb,0x90,0x85,0xcf,0xe0,0x04,0xf0,0xe0,0xd3,0x94,0x02,0x40,0x09,0xb1,0x63, 0xe4,0x90,0x85,0xcf,0xf0,0x80,0x03,0x12,0x79,0x41,0xe4,0x90,0x85,0xce,0xf0,0x22, 0x91,0x6b,0x22,0x90,0x85,0xc2,0xe0,0x54,0xfb,0xf0,0x22,0x90,0x01,0x57,0xe4,0xf0, 0x90,0x01,0x3c,0x74,0x02,0x22,0x54,0xfb,0xf0,0x90,0x85,0xc9,0xe0,0x54,0xfd,0xf0, 0x22,0x71,0x8b,0x12,0xb3,0x97,0x12,0x8f,0x92,0x90,0x92,0x7b,0xe0,0x30,0xe0,0x14, 0xf1,0xcc,0x90,0x92,0x7e,0xe0,0x60,0x05,0x14,0xf0,0x02,0x7a,0x8a,0xf1,0xdf,0xe4, 0xff,0x12,0x8b,0xf3,0x22,0x90,0x85,0xc5,0xe0,0x60,0x0e,0x90,0x06,0x92,0xe0,0x30, 0xe1,0x03,0x02,0x6b,0x98,0xf1,0xc4,0x91,0x6b,0x22,0x90,0x85,0xc1,0x12,0x96,0xca, 0x30,0xe0,0x18,0xef,0x54,0xbf,0xd1,0x8f,0x30,0xe0,0x06,0xe0,0x44,0x01,0xf0,0x80, 0x08,0xe0,0x54,0xfe,0xd1,0xa1,0x74,0x04,0xf0,0x91,0x6b,0xe4,0xff,0x02,0x68,0x8f, 0xc0,0xe0,0xc0,0xf0,0xc0,0x83,0xc0,0x82,0xc0,0xd0,0x75,0xd0,0x00,0xc0,0x00,0xc0, 0x01,0xc0,0x02,0xc0,0x03,0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0,0x07,0x90,0x01,0xc4, 0x74,0xe0,0xf0,0x74,0xad,0xa3,0xf0,0x12,0x75,0x28,0xe5,0x56,0x30,0xe1,0x02,0xd1, 0x98,0xe5,0x56,0x30,0xe2,0x02,0xb1,0xa5,0xe5,0x57,0x30,0xe0,0x02,0xd1,0xea,0xe5, 0x59,0x30,0xe1,0x05,0x7f,0x04,0x12,0x98,0x69,0xe5,0x59,0x30,0xe4,0x02,0xb1,0x81, 0xe5,0x59,0x30,0xe5,0x02,0xb1,0xba,0xe5,0x59,0x30,0xe6,0x02,0xd1,0x64,0x74,0xe0, 0x04,0x90,0x01,0xc4,0xf0,0x74,0xad,0xa3,0xf0,0xd0,0x07,0xd0,0x06,0xd0,0x05,0xd0, 0x04,0xd0,0x03,0xd0,0x02,0xd0,0x01,0xd0,0x00,0xd0,0xd0,0xd0,0x82,0xd0,0x83,0xd0, 0xf0,0xd0,0xe0,0x32,0x90,0x85,0xc1,0x12,0x8d,0x0c,0x30,0xe0,0x1d,0xef,0x54,0x7f, 0xd1,0x8f,0x30,0xe1,0x06,0xe0,0x44,0x02,0xf0,0x80,0x07,0xe0,0x54,0xfd,0xd1,0xa1, 0x04,0xf0,0x90,0x85,0xc5,0xe0,0x60,0x02,0x91,0x6b,0x7f,0x01,0x02,0x68,0x8f,0xf0, 0x90,0x04,0xe0,0xe0,0x90,0x85,0xc2,0x22,0x90,0x85,0xc5,0xe0,0x60,0x02,0x91,0xe7, 0x22,0xf0,0x90,0x01,0xb9,0x74,0x01,0xf0,0x90,0x01,0xb8,0x22,0x90,0x88,0xe7,0xe0, 0x04,0xf0,0x90,0x85,0xc8,0xe0,0x64,0x02,0x60,0x28,0x12,0x8e,0xc1,0x90,0x85,0xc2, 0xe0,0x13,0x13,0x13,0x54,0x1f,0x30,0xe0,0x13,0x12,0x8f,0xb7,0x6f,0x70,0x0d,0xef, 0x14,0x12,0x8c,0x35,0x12,0x7b,0xfd,0x12,0x8f,0xf6,0xd1,0xe3,0x90,0x01,0xe6,0xe0, 0x04,0xf0,0x22,0x90,0x85,0xcc,0xe0,0x14,0xf0,0x22,0x12,0xb2,0x3c,0x90,0x92,0x47, 0xef,0xf0,0x30,0xe0,0x05,0x7d,0x01,0xe4,0x80,0x02,0xe4,0xfd,0xff,0x12,0x57,0x82, 0x90,0x92,0x47,0xe0,0x30,0xe6,0x11,0x90,0x01,0x2f,0xe0,0x30,0xe7,0x04,0xe4,0xf0, 0x80,0x06,0x90,0x01,0x2f,0x74,0x80,0xf0,0x90,0x85,0xd7,0xe0,0xff,0xa3,0xe0,0xfd, 0x90,0x85,0xde,0xe0,0xfb,0x02,0x51,0x7d,0x02,0x4d,0x6e,0xe4,0xff,0x02,0x97,0xee, 0xe4,0xff,0x02,0x2d,0xbd,0x90,0x01,0xb8,0x74,0x01,0xf0,0x22,0x12,0x7a,0x29,0xef, 0x64,0x01,0x60,0x04,0xf1,0x35,0x80,0x5b,0x90,0x85,0xc9,0xe0,0xff,0x54,0x03,0x60, 0x05,0x12,0x9f,0xec,0x80,0x4d,0x90,0x85,0xc7,0xe0,0xfe,0xe4,0xc3,0x9e,0x50,0x08, 0x90,0x01,0xb8,0x74,0x04,0xf0,0x80,0x3b,0xef,0x30,0xe2,0x05,0x12,0x9f,0xe5,0x80, 0x32,0x90,0x85,0xc9,0xe0,0x30,0xe4,0x08,0x90,0x01,0xb8,0x74,0x10,0xf0,0x80,0x23, 0x90,0x85,0xc2,0xe0,0x13,0x13,0x54,0x3f,0x20,0xe0,0x08,0x90,0x01,0xb8,0x74,0x20, 0xf0,0x80,0x10,0x90,0x86,0x71,0xe0,0x60,0x08,0x90,0x01,0xb8,0x74,0x80,0xf0,0x80, 0x02,0x80,0x09,0x90,0x01,0xb9,0x74,0x04,0xf0,0x7f,0x00,0x22,0x90,0x01,0xb8,0xe4, 0xf0,0x7f,0x01,0x22,0x12,0x40,0xb9,0x7f,0x02,0x02,0x98,0x69,0x90,0x85,0xc3,0xe0, 0xc4,0x54,0x0f,0x22,0x90,0x85,0xc1,0xe0,0x54,0xf7,0xf0,0x22,0x90,0x92,0x7d,0xe0, 0x90,0x05,0x73,0xf0,0x22,0x90,0x85,0xc5,0xe0,0x60,0x03,0x12,0x9e,0xc4,0x22,0x90, 0x92,0x7c,0xe0,0x14,0x90,0x92,0x7e,0xf0,0x22,0x32,0xc0,0xe0,0xc0,0x83,0xc0,0x82, 0xc0,0xd0,0x75,0xd0,0x00,0xc0,0x05,0xc0,0x07,0x7d,0xea,0x90,0x01,0xc4,0xed,0xf0, 0x74,0xaf,0xff,0xa3,0xf0,0xed,0x04,0x90,0x01,0xc4,0xf0,0xa3,0xef,0xf0,0xd0,0x07, 0xd0,0x05,0xd0,0xd0,0xd0,0x82,0xd0,0x83,0xd0,0xe0,0x32,0xe4,0xff,0x12,0x77,0x39, 0xbf,0x01,0x13,0x90,0x85,0xc5,0xe0,0x60,0x0d,0x12,0x8c,0xed,0x64,0x02,0x60,0x03, 0x02,0x77,0x61,0x12,0x79,0x41,0x22,0xe4,0x90,0x92,0x98,0xf0,0xa3,0xf0,0x90,0x05, 0xf8,0xe0,0x70,0x0f,0xa3,0xe0,0x70,0x0b,0xa3,0xe0,0x70,0x07,0xa3,0xe0,0x70,0x03, 0x7f,0x01,0x22,0xd3,0x90,0x92,0x99,0xe0,0x94,0xe8,0x90,0x92,0x98,0xe0,0x94,0x03, 0x40,0x0a,0x90,0x01,0xc0,0xe0,0x44,0x20,0xf0,0x7f,0x00,0x22,0x7f,0x32,0x7e,0x00, 0x12,0x7c,0x9f,0x90,0x92,0x98,0x12,0x99,0xdd,0x80,0xc3,0xef,0x60,0x0a,0xed,0xd3, 0x94,0x0b,0x40,0x04,0x7e,0x20,0x80,0x02,0xe4,0xfe,0xed,0x2e,0xff,0x22,0x90,0x92, 0x8d,0x12,0x87,0x6b,0xe4,0xff,0x90,0x92,0x8d,0x12,0x87,0x62,0x8f,0x82,0x75,0x83, 0x00,0x12,0x03,0x0f,0xfe,0x74,0xf0,0x2f,0x11,0xb2,0xee,0xf0,0x0f,0xef,0xb4,0x10, 0xe5,0x22,0xf5,0x82,0xe4,0x34,0x02,0xf5,0x83,0x22,0x90,0x86,0x72,0xe0,0x30,0xe0, 0x05,0x7f,0x10,0x12,0x98,0x69,0x22,0x90,0x01,0xcf,0xe0,0x90,0x92,0x36,0xf0,0xe0, 0xff,0x30,0xe0,0x07,0x90,0x01,0xcf,0xe0,0x54,0xfe,0xf0,0xef,0x30,0xe5,0x23,0x90, 0x01,0xcf,0xe0,0x54,0xdf,0xf0,0x90,0x01,0x34,0x74,0x20,0xf0,0xe4,0xf5,0xa8,0xf5, 0xe8,0x12,0x75,0xb6,0x90,0x00,0x03,0xe0,0x54,0xfb,0xfd,0x7f,0x03,0x12,0x7b,0x3e, 0x80,0xfe,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x90,0x04,0x1d,0xe0,0x60,0x1a, 0x90,0x05,0x22,0xe0,0x54,0x90,0x60,0x07,0x90,0x01,0xc0,0xe0,0x44,0x08,0xf0,0x90, 0x01,0xc6,0xe0,0x30,0xe1,0xe4,0x7f,0x00,0x80,0x02,0x7f,0x01,0xd0,0xd0,0x92,0xaf, 0x22,0xc3,0xee,0x94,0x01,0x40,0x0a,0x0d,0xed,0x13,0x90,0xfd,0x10,0xf0,0xe4,0x2f, 0xff,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x90,0x92,0x65,0xee,0xf0,0xa3,0xef, 0xf0,0x12,0x70,0x61,0x90,0x92,0x6f,0x12,0x04,0xeb,0x90,0x92,0x67,0x12,0x87,0x4a, 0x12,0x04,0xa7,0x90,0x92,0x6f,0x12,0x87,0x56,0x12,0x87,0x30,0xc0,0x04,0xc0,0x05, 0xc0,0x06,0xc0,0x07,0x90,0x92,0x67,0x12,0x87,0x4a,0x90,0x92,0x6b,0x12,0x87,0x56, 0x12,0x87,0x30,0xd0,0x03,0xd0,0x02,0xd0,0x01,0xd0,0x00,0x12,0x87,0x3d,0x90,0x92, 0x73,0x12,0x04,0xeb,0x90,0x92,0x73,0x12,0x87,0x4a,0x90,0x91,0x66,0x12,0x04,0xeb, 0x90,0x92,0x65,0xe0,0xfe,0xa3,0xe0,0xff,0x12,0x71,0x18,0xd0,0xd0,0x92,0xaf,0x22, 0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xe4,0xfe,0xef,0x54,0xe0,0xc4,0x13,0x54,0x07, 0xfd,0xef,0x54,0x1f,0xff,0xed,0x60,0x2c,0x14,0x60,0x1e,0x24,0xfd,0x60,0x0f,0x24, 0xfe,0x70,0x2a,0xef,0x25,0xe0,0xff,0xc3,0x74,0xde,0x9f,0xfe,0x80,0x1f,0xef,0x25, 0xe0,0xff,0xc3,0x74,0xf2,0x9f,0xfe,0x80,0x14,0xef,0x25,0xe0,0xff,0xc3,0x74,0x06, 0x9f,0xfe,0x80,0x09,0xef,0x25,0xe0,0xff,0xc3,0x74,0x10,0x9f,0xfe,0xaf,0x06,0xd0, 0xd0,0x92,0xaf,0x22,0xd3,0xef,0x64,0x80,0x94,0x1c,0x40,0x07,0xef,0x64,0x80,0x94, 0x94,0x40,0x03,0x7f,0x00,0x22,0xc3,0xef,0x64,0x80,0x94,0x80,0x40,0x03,0x7f,0x64, 0x22,0xef,0x24,0x64,0xff,0x22,0xef,0x90,0x02,0x86,0x60,0x06,0xe0,0x44,0x04,0xf0, 0x80,0x04,0xe0,0x54,0xfb,0xf0,0x90,0x92,0x78,0xed,0xf0,0x22,0xe4,0x90,0x92,0x48, 0xf0,0xa3,0xf0,0xa3,0xf0,0x7f,0x83,0x12,0x7b,0x51,0x90,0x92,0x48,0xef,0xf0,0x7f, 0x83,0x12,0x7b,0x51,0xae,0x07,0x90,0x92,0x48,0xe0,0xff,0xb5,0x06,0x01,0x22,0xc3, 0x90,0x92,0x4a,0xe0,0x94,0x64,0x90,0x92,0x49,0xe0,0x94,0x00,0x40,0x0d,0x90,0x01, 0xc0,0xe0,0x44,0x40,0xf0,0x90,0x92,0x48,0xe0,0xff,0x22,0x90,0x92,0x49,0x12,0x99, 0xdd,0x80,0xc2,0x90,0x01,0xc4,0x74,0x83,0xf0,0x74,0xb2,0xa3,0xf0,0x7f,0x90,0x12, 0x7b,0x51,0xef,0x20,0xe0,0xf7,0x74,0x83,0x04,0x90,0x01,0xc4,0xf0,0x74,0xb2,0xa3, 0xf0,0x22,0x90,0x85,0xc1,0xe0,0x30,0xe0,0x03,0x12,0x9b,0x4e,0x22,0x90,0x92,0x7b, 0xe0,0x30,0xe0,0x0a,0x90,0x01,0x3b,0xe0,0x30,0xe4,0x03,0x12,0x8f,0xf6,0x22,0x90, 0x92,0x4c,0xee,0xf0,0xa3,0xef,0xf0,0xe4,0x90,0x92,0x50,0xf0,0x7d,0x09,0x12,0x55, 0x36,0xef,0x64,0x06,0x70,0x2a,0x71,0x60,0x7d,0x14,0x12,0x55,0x36,0xef,0x70,0x20, 0x71,0x60,0x7d,0x15,0x12,0x55,0x36,0xef,0x64,0x50,0x70,0x14,0x71,0x60,0x7d,0x21, 0x12,0x55,0x36,0xef,0x20,0xe0,0x03,0x30,0xe2,0x06,0x90,0x92,0x50,0x74,0x01,0xf0, 0x90,0x86,0x73,0xe0,0x13,0x13,0x54,0x3f,0x30,0xe0,0x3f,0x71,0x60,0x7d,0x09,0x12, 0x55,0x36,0xef,0x64,0x11,0x70,0x33,0x90,0x92,0x4d,0xe0,0x24,0x14,0xff,0x90,0x92, 0x4c,0xe0,0x34,0x00,0xfe,0x90,0x92,0x4e,0xf0,0xa3,0xef,0xf0,0x7d,0x02,0x12,0x55, 0x36,0xef,0x70,0x16,0x90,0x92,0x4e,0xe0,0xfe,0xa3,0xe0,0xff,0x7d,0x03,0x12,0x55, 0x36,0xbf,0x89,0x06,0x90,0x92,0x50,0x74,0x01,0xf0,0x90,0x92,0x50,0xe0,0xff,0x90, 0x84,0xbf,0xa3,0xe0,0x24,0x7f,0xf5,0x82,0xe4,0x34,0x82,0xf5,0x83,0xef,0xf0,0x22, 0x90,0x92,0x4c,0xe0,0xfe,0xa3,0xe0,0xff,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0, 0xe4,0xfd,0x7f,0x8f,0x12,0x7b,0x3e,0xd0,0xd0,0x92,0xaf,0x22,0x90,0x05,0x62,0xe0, 0xfe,0x90,0x05,0x61,0xe0,0xfd,0xed,0x78,0x02,0x22,0xe0,0x90,0x01,0xba,0xf0,0x90, 0x85,0xc7,0xe0,0x90,0x01,0xbb,0x22,0x90,0x85,0xcb,0xe0,0x14,0x90,0x05,0x73,0xf0, 0x22,0x90,0x92,0x36,0xee,0xf0,0xa3,0xef,0xf0,0x22,0x6b,0x7c,}; u4Byte <API key> = 13260; void <API key>( IN PDM_ODM_T pDM_Odm, OUT u1Byte *pFirmware, OUT u4Byte *pFirmwareSize ) { #if (DM_ODM_SUPPORT_TYPE & (ODM_CE)) *((SIZE_PTR *)pFirmware) = (SIZE_PTR)<API key>; *pFirmwareSize = <API key>; #else ODM_MoveMemory(pDM_Odm, pFirmware, <API key>, <API key>); *pFirmwareSize = <API key>; #endif } #endif u1Byte <API key>[] = { 0xFC, 0x63, 0x07, 0x62, 0xCF, 0xF7, 0x12, 0x6B, 0x6B, 0xEB, 0x34, 0xB2, 0x60, 0xCA, 0xC8, 0xF1, 0x1A, 0x6B, 0x33, 0xB2, 0x80, 0x18, 0x34, 0x2D, 0x60, 0xCA, 0x32, 0xB3, 0x32, 0xB2, 0x60, 0xDA, 0x32, 0xB3, 0x33, 0xB2, 0x60, 0xDA, 0x33, 0xB3, 0x33, 0xB2, 0x60, 0xDA, 0x33, 0xB2, 0x80, 0xF0, 0x9C, 0xA2, 0xB7, 0xAA, 0x40, 0x6B, 0x8D, 0xEB, 0xFF, 0x6C, 0x8C, 0xEB, 0x08, 0x6C, 0xAD, 0xEC, 0xB6, 0xAA, 0x97, 0xCA, 0x03, 0xF4, 0x01, 0x6C, 0x8B, 0xEC, 0xAC, 0xEC, 0x04, 0xF0, 0x00, 0x6D, 0xAD, 0xEC, 0x96, 0xCA, 0x2A, 0xB5, 0x2B, 0xB4, 0xA0, 0xDC, 0x2B, 0xB5, 0x2B, 0xB4, 0xA0, 0xDC, 0x2B, 0xB5, 0x2C, 0xB4, 0xA0, 0xDC, 0x2C, 0xB5, 0x2C, 0xB4, 0xA0, 0xDC, 0x2C, 0xB5, 0x2D, 0xB4, 0xA0, 0xDC, 0x2D, 0xB5, 0x2D, 0xB4, 0xA0, 0xDC, 0x2D, 0xB5, 0x2E, 0xB4, 0xA0, 0xDC, 0x45, 0xF1, 0x09, 0x6C, 0x00, 0xF1, 0x90, 0xCA, 0x2C, 0xB4, 0x83, 0xDA, 0x2C, 0xB4, 0x84, 0xDA, 0x00, 0x6C, 0x85, 0xDA, 0x86, 0xDA, 0x87, 0xDA, 0x88, 0xDA, 0x89, 0xDA, 0x04, 0x6C, 0x8D, 0xEB, 0xE0, 0xF1, 0x82, 0xA2, 0x80, 0xF0, 0x7C, 0xC2, 0x02, 0x6B, 0x6B, 0xEB, 0x8C, 0xEB, 0x0F, 0x6C, 0x8B, 0xEC, 0x8C, 0xEB, 0x10, 0x6C, 0x8D, 0xEB, 0x9D, 0x67, 0x70, 0xC4, 0xE0, 0xF1, 0x62, 0xC2, 0x01, 0x6B, 0x80, 0xF1, 0x60, 0xC2, 0x80, 0xF1, 0x71, 0xC2, 0x1D, 0xB3, 0x1E, 0xB2, 0x80, 0x18, 0x9F, 0x2F, 0x60, 0xDA, 0x07, 0x97, 0x00, 0xEF, 0x04, 0x63, 0x3A, 0x00, 0x11, 0x80, 0x38, 0x00, 0x11, 0x80, 0x81, 0xBB, 0x10, 0x80, 0xD8, 0x1A, 0x11, 0x80, 0x81, 0xB6, 0x10, 0x80, 0x88, 0x07, 0x11, 0x80, 0xC5, 0xB4, 0x10, 0x80, 0xF8, 0x18, 0x11, 0x80, 0x40, 0x00, 0x11, 0x80, 0x25, 0xBE, 0x10, 0x80, 0x08, 0x07, 0x11, 0x80, 0xA5, 0xB5, 0x10, 0x80, 0x9C, 0x07, 0x11, 0x80, 0xF5, 0xB6, 0x10, 0x80, 0x34, 0x08, 0x11, 0x80, 0x0D, 0xB6, 0x10, 0x80, 0x68, 0x07, 0x11, 0x80, 0x8D, 0xB5, 0x10, 0x80, 0xDC, 0x06, 0x11, 0x80, 0xAD, 0xB7, 0x10, 0x80, 0x24, 0x19, 0x11, 0x80, 0xE5, 0xB7, 0x10, 0x80, 0x78, 0x07, 0x11, 0x80, 0x14, 0xC0, 0x52, 0x02, 0x58, 0xD5, 0xC8, 0x19, 0xA9, 0xB5, 0x10, 0x80, 0x28, 0x19, 0x11, 0x80, 0xFD, 0x63, 0x05, 0x62, 0x04, 0xD0, 0x0A, 0xB0, 0x90, 0x67, 0x00, 0x6D, 0x00, 0x18, 0x25, 0x33, 0x38, 0x6E, 0x01, 0x6A, 0x4B, 0xEA, 0x47, 0xD8, 0x70, 0x6A, 0x43, 0xC0, 0x0A, 0x6A, 0x4C, 0xC0, 0x08, 0x6A, 0x4D, 0xC0, 0x05, 0x97, 0x04, 0x90, 0x00, 0xEF, 0x03, 0x63, 0x50, 0x95, 0x11, 0x80, 0xD6, 0x63, 0x53, 0x62, 0x52, 0xD1, 0x51, 0xD0, 0x00, 0xF4, 0x05, 0x6A, 0x7D, 0x67, 0x52, 0xCB, 0x0D, 0x6A, 0x20, 0xF0, 0x46, 0xC3, 0x20, 0xF0, 0x07, 0x04, 0x71, 0xB5, 0x00, 0x18, 0xF2, 0x32, 0x06, 0x6E, 0x9D, 0x67, 0x01, 0x6A, 0x00, 0x6B, 0x20, 0xF0, 0x4F, 0xC4, 0x20, 0xF0, 0x53, 0xC4, 0x6C, 0xB2, 0x20, 0xF0, 0x6D, 0xC4, 0x20, 0xF0, 0x6E, 0xC4, 0x20, 0xF0, 0x70, 0xC4, 0x20, 0xF0, 0x71, 0xC4, 0x20, 0xF0, 0x72, 0xC4, 0xC0, 0xF1, 0x6A, 0xC2, 0xC0, 0xF1, 0x7E, 0xC2, 0x03, 0x6B, 0x02, 0x6C, 0xC0, 0xF1, 0x7C, 0xC2, 0x64, 0xB3, 0xC0, 0xF1, 0x89, 0xC2, 0xC0, 0xF1, 0x88, 0xC2, 0xC0, 0xF1, 0x9D, 0xC2, 0x80, 0xC3, 0x61, 0xB3, 0x00, 0x6C, 0x80, 0xDB, 0x81, 0xDB, 0x60, 0xF1, 0x70, 0xA2, 0x44, 0x67, 0x02, 0x73, 0x07, 0x60, 0x03, 0x73, 0xA0, 0xF0, 0x07, 0x60, 0x01, 0x73, 0xA0, 0xF0, 0x04, 0x60, 0x0F, 0x10, 0xC0, 0xF2, 0x0C, 0x6B, 0x78, 0xEA, 0x58, 0xB4, 0x12, 0xEB, 0x6D, 0xE4, 0xC0, 0xF0, 0x68, 0xA3, 0x80, 0xF0, 0x19, 0x2B, 0x01, 0x4A, 0xFF, 0x6B, 0x6C, 0xEA, 0x0A, 0x5A, 0xF1, 0x61, 0x00, 0x18, 0x56, 0x5D, 0x09, 0x04, 0x4A, 0xD2, 0x80, 0xF0, 0x10, 0x2A, 0x7D, 0x67, 0x20, 0xF0, 0x6D, 0xA3, 0x5D, 0x67, 0x9D, 0x67, 0x20, 0xF0, 0x4E, 0xA2, 0x20, 0xF0, 0x8F, 0xA4, 0x4E, 0xD3, 0x7D, 0x67, 0x4F, 0xD2, 0x4D, 0xD4, 0x5D, 0x67, 0x20, 0xF0, 0x93, 0xA3, 0x20, 0xF0, 0x50, 0xA2, 0x20, 0xF0, 0x02, 0x05, 0x4B, 0xD4, 0x4C, 0xD2, 0x20, 0xF0, 0x12, 0xA3, 0x20, 0xF0, 0x31, 0xA3, 0x00, 0x18, 0x85, 0xE1, 0x08, 0x04, 0x02, 0x22, 0x4A, 0xD2, 0x70, 0x10, 0x5D, 0x67, 0x00, 0x30, 0x2D, 0xE8, 0x31, 0xAA, 0xC0, 0xF2, 0x0C, 0x6A, 0x38, 0xB5, 0x58, 0xE9, 0x3B, 0xB2, 0x12, 0xE9, 0x45, 0xE1, 0xE0, 0xF0, 0x88, 0x41, 0x00, 0x18, 0xF2, 0x32, 0x06, 0x6E, 0x4F, 0x93, 0x4E, 0x94, 0x60, 0x32, 0x8D, 0xEA, 0x60, 0xF2, 0x58, 0xC9, 0x5D, 0x67, 0x30, 0xF1, 0x64, 0x42, 0x40, 0xA3, 0x7D, 0x67, 0x30, 0xF1, 0x80, 0x43, 0xE0, 0xF0, 0x55, 0xC1, 0x60, 0xA4, 0x9D, 0x67, 0x20, 0xF1, 0x4C, 0x44, 0xE0, 0xF0, 0x77, 0xC1, 0x80, 0xA2, 0x7D, 0x67, 0xE0, 0xF0, 0x98, 0xC1, 0x20, 0xF0, 0x40, 0xA3, 0xE0, 0xF0, 0x4E, 0xC1, 0x01, 0x6A, 0x60, 0xF2, 0x5A, 0xC1, 0x00, 0x18, 0xA2, 0x9B, 0x91, 0xAB, 0x9D, 0x67, 0x20, 0xF1, 0x48, 0x44, 0x80, 0xA2, 0x02, 0x32, 0x5E, 0x32, 0x00, 0xF1, 0x8C, 0xC1, 0x13, 0x22, 0xEF, 0xF7, 0x1F, 0x6A, 0x0C, 0xEA, 0x01, 0x6B, 0x80, 0xF0, 0x44, 0xC9, 0x06, 0x6C, 0x04, 0xD3, 0xFC, 0x6D, 0x1E, 0xB3, 0x00, 0xF5, 0x1C, 0x6E, 0x20, 0xF5, 0x17, 0x6F, 0x05, 0xD3, 0x20, 0x18, 0x0E, 0x30, 0x06, 0xD2, 0x06, 0x10, 0x5D, 0x67, 0x20, 0xF1, 0x68, 0x42, 0x40, 0xAB, 0x80, 0xF0, 0x44, 0xC9, 0x00, 0x18, 0x4F, 0x9F, 0x09, 0x04, 0x02, 0x67, 0x0E, 0x22, 0x7D, 0x67, 0x20, 0xF0, 0x80, 0xA3, 0xE0, 0xF0, 0xA3, 0xA1, 0x00, 0x18, 0x5F, 0xE1, 0x00, 0x65, 0x0A, 0xB4, 0x00, 0x18, 0x5B, 0xE1, 0x00, 0x65, 0x4A, 0xD0, 0x08, 0x10, 0x5D, 0x67, 0x91, 0xAA, 0x20, 0x18, 0x65, 0x25, 0x01, 0x6D, 0x02, 0x10, 0x0C, 0x6B, 0x4A, 0xD3, 0x4A, 0x92, 0x53, 0x97, 0x52, 0x91, 0x51, 0x90, 0x00, 0xEF, 0x2A, 0x63, 0x64, 0x95, 0x11, 0x80, 0xE4, 0x51, 0x11, 0x80, 0x6D, 0x51, 0x11, 0x80, 0x14, 0x53, 0x11, 0x80, 0xD8, 0x55, 0x11, 0x80, 0x98, 0xE4, 0x04, 0x80, 0xFD, 0x63, 0x05, 0x62, 0x10, 0xB3, 0x00, 0x6D, 0xC0, 0xF1, 0xAA, 0xC3, 0xC0, 0xF1, 0xBE, 0xC3, 0xFF, 0x6A, 0x03, 0x6D, 0x8C, 0xEA, 0xC0, 0xF1, 0xBC, 0xC3, 0x02, 0x6C, 0x0B, 0xB5, 0xC0, 0xF1, 0x89, 0xC3, 0xC0, 0xF1, 0x88, 0xC3, 0xC0, 0xF1, 0x9D, 0xC3, 0x60, 0xF1, 0x40, 0xC3, 0x80, 0xC5, 0x00, 0x18, 0x9C, 0xA9, 0x82, 0x67, 0x06, 0xB2, 0x00, 0x6B, 0x60, 0xDA, 0x61, 0xDA, 0x05, 0x97, 0x00, 0xEF, 0x03, 0x63, 0xE4, 0x51, 0x11, 0x80, 0x6D, 0x51, 0x11, 0x80, 0x14, 0x53, 0x11, 0x80, 0xDC, 0x63, 0x47, 0x62, 0x00, 0xF4, 0x06, 0x6A, 0x7D, 0x67, 0x4A, 0xCB, 0x03, 0x6A, 0x56, 0xC3, 0x13, 0x6A, 0x59, 0xC3, 0x1D, 0xB2, 0x6D, 0xA2, 0x08, 0x73, 0x1A, 0x60, 0xFF, 0x6C, 0x09, 0x4C, 0x98, 0xEB, 0x1B, 0xB2, 0x01, 0x6D, 0x12, 0xEC, 0x91, 0xE2, 0x20, 0xF1, 0xCF, 0xA4, 0xAC, 0xEE, 0x0F, 0x26, 0x00, 0xF1, 0x52, 0xAA, 0x47, 0xEB, 0xAC, 0xEA, 0x0A, 0x22, 0x20, 0xF1, 0x4C, 0xAC, 0x7D, 0x67, 0x05, 0x04, 0x57, 0xC3, 0x42, 0x32, 0x58, 0xC3, 0x00, 0x18, 0x1C, 0x4E, 0x04, 0x05, 0x0E, 0xB2, 0x4C, 0xA2, 0x0A, 0x72, 0x14, 0x60, 0xC0, 0xF2, 0x0C, 0x6B, 0x78, 0xEA, 0x0D, 0xB3, 0x12, 0xEA, 0x49, 0xE3, 0xE0, 0xF0, 0x66, 0xA2, 0x01, 0x73, 0x0A, 0x61, 0x60, 0xF2, 0x56, 0xAA, 0x7D, 0x67, 0x05, 0x04, 0x57, 0xC3, 0x42, 0x32, 0x58, 0xC3, 0x00, 0x18, 0x1C, 0x4E, 0x04, 0x05, 0x47, 0x97, 0x00, 0xEF, 0x24, 0x63, 0x00, 0x65, 0x50, 0x95, 0x11, 0x80, 0x5C, 0x3C, 0x11, 0x80, 0xD8, 0x55, 0x11, 0x80, 0xDC, 0x63, 0x47, 0x62, 0x46, 0xD0, 0x00, 0x6A, 0x18, 0xB3, 0x9D, 0x67, 0x40, 0xDB, 0x41, 0xDB, 0x04, 0xF0, 0x06, 0x6B, 0x68, 0xCC, 0x54, 0xC4, 0x56, 0xC4, 0x57, 0xC4, 0x58, 0xC4, 0x59, 0xC4, 0x5A, 0xC4, 0x5B, 0xC4, 0x5C, 0xC4, 0x5D, 0xC4, 0x5E, 0xC4, 0x5F, 0xC4, 0x0F, 0x6B, 0x07, 0x6A, 0x04, 0x00, 0x72, 0xC4, 0x20, 0xF0, 0x40, 0xC4, 0x20, 0x6B, 0x03, 0x6A, 0x73, 0xC4, 0x75, 0xC4, 0x20, 0xF0, 0x41, 0xC4, 0x00, 0x18, 0x72, 0xC9, 0x90, 0x67, 0x7D, 0x67, 0x04, 0xF0, 0x0A, 0x6A, 0x48, 0xCB, 0x01, 0x6A, 0x90, 0x67, 0x52, 0xC3, 0x00, 0x18, 0xEA, 0xC9, 0x53, 0xC3, 0x47, 0x97, 0x46, 0x90, 0x00, 0xEF, 0x24, 0x63, 0x00, 0x65, 0x14, 0x53, 0x11, 0x80, 0xDC, 0x63, 0x47, 0x62, 0x00, 0x6A, 0x21, 0xB3, 0x9D, 0x67, 0x40, 0xDB, 0x41, 0xDB, 0x04, 0xF0, 0x0D, 0x6B, 0x68, 0xCC, 0x19, 0x6B, 0x72, 0xC4, 0x60, 0x6B, 0x6B, 0xEB, 0x73, 0xC4, 0x75, 0xC4, 0x1B, 0xB3, 0x54, 0xC4, 0x56, 0xC4, 0x57, 0xC4, 0x58, 0xC4, 0x94, 0xA3, 0xBD, 0x67, 0x5F, 0xC5, 0x99, 0xC5, 0x95, 0xA3, 0x20, 0xF0, 0x40, 0xC5, 0x20, 0xF0, 0x42, 0xC5, 0x9A, 0xC5, 0x96, 0xA3, 0x20, 0xF0, 0x44, 0xC5, 0x20, 0xF0, 0x45, 0xC5, 0x9B, 0xC5, 0x97, 0xA3, 0x20, 0xF0, 0x47, 0xC5, 0x20, 0xF0, 0x49, 0xC5, 0x9C, 0xC5, 0x98, 0xA3, 0x79, 0xA3, 0x9D, 0xC5, 0x7E, 0xC5, 0x02, 0x6B, 0x20, 0xF0, 0x61, 0xC5, 0x20, 0xF0, 0x63, 0xC5, 0x1E, 0x6B, 0x20, 0xF0, 0x66, 0xC5, 0x12, 0x6B, 0x20, 0xF0, 0x68, 0xC5, 0x20, 0xF0, 0x6A, 0xC5, 0x20, 0xF0, 0x4B, 0xC5, 0x00, 0x18, 0xA3, 0xC7, 0x04, 0x04, 0x47, 0x97, 0x00, 0xEF, 0x24, 0x63, 0x14, 0x53, 0x11, 0x80, 0x50, 0x95, 0x11, 0x80, 0xDC, 0x63, 0x47, 0x62, 0x0C, 0xB2, 0x00, 0x6B, 0x60, 0xDA, 0x61, 0xDA, 0x7D, 0x67, 0x04, 0xF0, 0x1D, 0x6A, 0x48, 0xCB, 0x01, 0x6A, 0x52, 0xC3, 0x08, 0xB2, 0x41, 0xAA, 0x7F, 0x6B, 0x04, 0x04, 0x4A, 0x32, 0x6C, 0xEA, 0x7D, 0x67, 0x00, 0x18, 0x04, 0xC5, 0x53, 0xC3, 0x47, 0x97, 0x00, 0xEF, 0x24, 0x63, 0x00, 0x65, 0x14, 0x53, 0x11, 0x80, 0x50, 0x95, 0x11, 0x80, 0xDB, 0x63, 0x49, 0x62, 0x48, 0xD1, 0x47, 0xD0, 0x00, 0x69, 0x0E, 0xB2, 0x7D, 0x67, 0x20, 0xDA, 0x21, 0xDA, 0x04, 0xF0, 0x1F, 0x6A, 0x48, 0xCB, 0x0B, 0xB2, 0x81, 0xF1, 0x48, 0xAA, 0x0B, 0xB0, 0x32, 0xC3, 0x04, 0x04, 0x00, 0x18, 0x7E, 0xC4, 0x4B, 0xD8, 0x64, 0xA0, 0x41, 0x6A, 0x4B, 0xEA, 0x6C, 0xEA, 0x29, 0xC0, 0x44, 0xC0, 0x49, 0x97, 0x48, 0x91, 0x47, 0x90, 0x00, 0xEF, 0x25, 0x63, 0x14, 0x53, 0x11, 0x80, 0x5C, 0x3C, 0x11, 0x80, 0x50, 0x95, 0x11, 0x80, 0xDC, 0x63, 0x47, 0x62, 0x46, 0xD0, 0x00, 0x68, 0x0B, 0xB2, 0x7D, 0x67, 0x00, 0xDA, 0x01, 0xDA, 0x04, 0xF0, 0x1F, 0x6A, 0x12, 0xC3, 0x04, 0x04, 0x00, 0x18, 0x7E, 0xC4, 0x48, 0xCB, 0x07, 0xB2, 0x84, 0xA2, 0x41, 0x6B, 0x6B, 0xEB, 0x8C, 0xEB, 0x64, 0xC2, 0x09, 0xC2, 0x47, 0x97, 0x46, 0x90, 0x00, 0xEF, 0x24, 0x63, 0x14, 0x53, 0x11, 0x80, 0x50, 0x95, 0x11, 0x80, 0xDC, 0x63, 0x47, 0x62, 0x1C, 0xB2, 0x00, 0x6B, 0x60, 0xDA, 0x61, 0xDA, 0x1B, 0xB2, 0x64, 0xA2, 0x07, 0x6D, 0x6E, 0x34, 0xAC, 0xEC, 0x05, 0x54, 0x06, 0x61, 0x39, 0x6C, 0x8B, 0xEC, 0x6C, 0xEC, 0x20, 0x6B, 0x6D, 0xEC, 0x84, 0xC2, 0x15, 0xB2, 0x64, 0xA2, 0x07, 0x6C, 0x14, 0xB5, 0x6E, 0x33, 0x8C, 0xEB, 0x6D, 0xE5, 0x60, 0xA3, 0xC3, 0xA2, 0x6C, 0xEC, 0x0F, 0x6B, 0x6B, 0xEB, 0x84, 0x35, 0xCC, 0xEB, 0xAD, 0xEB, 0x63, 0xC2, 0xBD, 0x67, 0x04, 0xF0, 0x1E, 0x6B, 0x68, 0xCD, 0x03, 0x6B, 0x72, 0xC5, 0x61, 0xAA, 0x7F, 0x6D, 0x6A, 0x33, 0xAC, 0xEB, 0xBD, 0x67, 0x73, 0xC5, 0x40, 0x9A, 0x95, 0xC5, 0x04, 0x04, 0x42, 0x32, 0x00, 0x18, 0xBA, 0xC4, 0x54, 0xC5, 0x47, 0x97, 0x00, 0xEF, 0x24, 0x63, 0x00, 0x65, 0x14, 0x53, 0x11, 0x80, 0x50, 0x95, 0x11, 0x80, 0x58, 0xC1, 0x10, 0x80, 0xFD, 0x63, 0x05, 0x62, 0x57, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0xFF, 0xF7, 0x1F, 0x6B, 0x02, 0xF1, 0x01, 0x6E, 0x4C, 0xEB, 0xCB, 0xEE, 0x6C, 0xEE, 0x57, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x00, 0x6C, 0xA4, 0x67, 0x00, 0x18, 0x03, 0xA5, 0xC4, 0x67, 0x06, 0xB2, 0x84, 0xA2, 0x41, 0x6B, 0x6B, 0xEB, 0x8C, 0xEB, 0x64, 0xC2, 0x00, 0x6B, 0x69, 0xC2, 0x05, 0x97, 0x00, 0xEF, 0x03, 0x63, 0x00, 0x65, 0x50, 0x95, 0x11, 0x80, 0xFC, 0x63, 0x07, 0x62, 0x06, 0xD1, 0x05, 0xD0, 0x7C, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0x79, 0x6C, 0x01, 0x6D, 0x00, 0x18, 0x61, 0xA4, 0x22, 0x67, 0x1E, 0xB3, 0xFF, 0xF7, 0x1F, 0x68, 0x80, 0x9B, 0x0C, 0xE9, 0x4C, 0xE8, 0x4B, 0x9B, 0x96, 0x34, 0xE3, 0xF7, 0x1F, 0x6D, 0x49, 0xE0, 0xAC, 0xEC, 0x98, 0xEA, 0x4B, 0xDB, 0x4D, 0x9B, 0x49, 0xE1, 0x4D, 0xDB, 0x12, 0xEC, 0x8C, 0xDB, 0x7D, 0xF2, 0x01, 0x6B, 0x63, 0xE8, 0x02, 0x60, 0x63, 0xE9, 0x1D, 0x61, 0x57, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0xFF, 0xF7, 0x1F, 0x68, 0x0C, 0xEA, 0x01, 0xF6, 0x01, 0x6B, 0x6B, 0xEB, 0xC2, 0x67, 0x6C, 0xEE, 0x57, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x57, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0x0C, 0xEA, 0x01, 0xF6, 0x00, 0x6B, 0xC2, 0x67, 0x57, 0x6C, 0x01, 0x6D, 0x00, 0x18, 0x03, 0xA5, 0x6D, 0xEE, 0x07, 0x97, 0x06, 0x91, 0x05, 0x90, 0x00, 0xEF, 0x04, 0x63, 0x50, 0x95, 0x11, 0x80, 0xFB, 0x63, 0x09, 0x62, 0x08, 0xD1, 0x07, 0xD0, 0x11, 0xB2, 0x47, 0x9A, 0xFF, 0x68, 0x8C, 0xE8, 0x01, 0x4A, 0x04, 0x22, 0x0F, 0xB4, 0x00, 0x18, 0xBD, 0x1C, 0x00, 0x65, 0x11, 0x20, 0x00, 0x69, 0x0B, 0xB0, 0x01, 0x6C, 0x0B, 0xB5, 0x0C, 0xB6, 0xF1, 0x67, 0x00, 0x18, 0xCB, 0x1C, 0x04, 0xD1, 0x87, 0x98, 0x00, 0x18, 0xB0, 0x1C, 0x14, 0x6D, 0x00, 0x6A, 0x30, 0xC8, 0x20, 0xF0, 0x49, 0xC0, 0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xEF, 0x05, 0x63, 0x00, 0x65, 0x50, 0x95, 0x11, 0x80, 0x6C, 0x95, 0x11, 0x80, 0x39, 0xA8, 0x10, 0x80, 0xFD, 0x63, 0x05, 0x62, 0x04, 0xD0, 0x57, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0xFF, 0xF7, 0x1F, 0x68, 0xFF, 0x6B, 0x0C, 0xEA, 0x02, 0x4B, 0x6B, 0xEB, 0xC2, 0x67, 0x6C, 0xEE, 0x57, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x59, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0x0C, 0xEA, 0x00, 0xF2, 0x01, 0x6B, 0x6B, 0xEB, 0xC2, 0x67, 0x6C, 0xEE, 0x59, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x00, 0x6C, 0x0C, 0xB0, 0xA4, 0x67, 0x00, 0x18, 0x03, 0xA5, 0xC4, 0x67, 0xD1, 0xA8, 0x01, 0x6D, 0x00, 0x18, 0x03, 0xA5, 0x42, 0x6C, 0x80, 0x18, 0xDA, 0x29, 0x00, 0x6C, 0x64, 0xA0, 0x41, 0x6A, 0x4B, 0xEA, 0x6C, 0xEA, 0x44, 0xC0, 0x00, 0x6A, 0x49, 0xC0, 0x05, 0x97, 0x04, 0x90, 0x00, 0xEF, 0x03, 0x63, 0x50, 0x95, 0x11, 0x80, 0xFC, 0x63, 0x07, 0x62, 0x06, 0xD1, 0x05, 0xD0, 0x20, 0xB2, 0x47, 0x9A, 0x08, 0xD4, 0x8E, 0xEA, 0x05, 0x22, 0x01, 0x4C, 0x03, 0x24, 0x00, 0x18, 0xBD, 0x1C, 0x08, 0x04, 0x1B, 0xB0, 0x64, 0xA0, 0x40, 0x6A, 0x6C, 0xEA, 0x08, 0x2A, 0x47, 0x98, 0x01, 0x4A, 0x29, 0x22, 0x18, 0xB4, 0x00, 0x18, 0xBD, 0x1C, 0x00, 0x65, 0x24, 0x10, 0x02, 0x69, 0x6C, 0xE9, 0xFF, 0x6A, 0x4C, 0xE9, 0x07, 0x21, 0x80, 0x18, 0xB5, 0x29, 0x00, 0x65, 0x50, 0xA8, 0x01, 0x4A, 0x50, 0xC8, 0x18, 0x10, 0x7D, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0x04, 0x6B, 0x4C, 0xEB, 0x06, 0x23, 0x50, 0xA8, 0x20, 0xF0, 0x29, 0xC0, 0x01, 0x4A, 0x50, 0xC8, 0x0B, 0x10, 0x20, 0xF0, 0x49, 0xA0, 0x19, 0x5A, 0x04, 0x60, 0x01, 0x4A, 0x20, 0xF0, 0x49, 0xC0, 0x03, 0x10, 0x80, 0x18, 0xF0, 0x29, 0x00, 0x65, 0x07, 0x97, 0x06, 0x91, 0x05, 0x90, 0x00, 0xEF, 0x04, 0x63, 0x50, 0x95, 0x11, 0x80, 0x6C, 0x95, 0x11, 0x80, 0xFC, 0x63, 0x07, 0x62, 0x06, 0xD1, 0x05, 0xD0, 0x00, 0x6C, 0x02, 0xF0, 0x00, 0x6E, 0x00, 0x18, 0x03, 0xA5, 0xA4, 0x67, 0x2B, 0xB2, 0xC1, 0xAA, 0x7F, 0x6A, 0x3C, 0x6C, 0xCA, 0x36, 0x4C, 0xEE, 0x29, 0xB2, 0x00, 0xF6, 0xC0, 0x36, 0x00, 0x6D, 0x00, 0x18, 0x03, 0xA5, 0x4D, 0xEE, 0x57, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0xFF, 0xF7, 0x1F, 0x68, 0x0C, 0xEA, 0x01, 0xF6, 0x01, 0x6B, 0x6B, 0xEB, 0xC2, 0x67, 0x6C, 0xEE, 0x57, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x57, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0x0C, 0xEA, 0x01, 0xF6, 0x00, 0x6B, 0xC2, 0x67, 0x6D, 0xEE, 0x57, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x57, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0x0C, 0xEA, 0x03, 0x69, 0x2B, 0xE9, 0xC2, 0x67, 0x2C, 0xEE, 0x57, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x57, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0x0C, 0xEA, 0x02, 0x6B, 0xC2, 0x67, 0x6D, 0xEE, 0x57, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x57, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0x0C, 0xEA, 0xC2, 0x67, 0x2C, 0xEE, 0x01, 0x6D, 0x00, 0x18, 0x03, 0xA5, 0x57, 0x6C, 0x80, 0x18, 0xDA, 0x29, 0x01, 0x6C, 0x07, 0x97, 0x06, 0x91, 0x05, 0x90, 0x00, 0xEF, 0x04, 0x63, 0x50, 0x95, 0x11, 0x80, 0x00, 0x00, 0x00, 0x80, 0xFD, 0x63, 0x05, 0x62, 0x04, 0xD0, 0x00, 0x6C, 0xC4, 0x67, 0x00, 0x18, 0x03, 0xA5, 0xA4, 0x67, 0x57, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0xFF, 0x6E, 0xFF, 0xF7, 0x1F, 0x6B, 0x04, 0x4E, 0x4C, 0xEB, 0xCB, 0xEE, 0x6C, 0xEE, 0x01, 0x6D, 0x0B, 0xB0, 0x00, 0x18, 0x03, 0xA5, 0x57, 0x6C, 0x64, 0xA0, 0x41, 0x6A, 0x4B, 0xEA, 0x6C, 0xEA, 0x00, 0x6C, 0x80, 0x18, 0xDA, 0x29, 0x44, 0xC0, 0x80, 0x18, 0xB5, 0x29, 0x00, 0x65, 0x00, 0x6A, 0x49, 0xC0, 0x05, 0x97, 0x04, 0x90, 0x00, 0xEF, 0x03, 0x63, 0x00, 0x65, 0x50, 0x95, 0x11, 0x80, 0xFB, 0x63, 0x09, 0x62, 0x08, 0xD0, 0x38, 0xB0, 0x90, 0xA0, 0x4F, 0xA0, 0x04, 0x05, 0x80, 0x34, 0x4D, 0xEC, 0x4E, 0xA0, 0x80, 0x34, 0x00, 0x18, 0xCB, 0xBB, 0x4D, 0xEC, 0x7D, 0x67, 0x48, 0xAB, 0x8F, 0xA0, 0xDD, 0x67, 0x4C, 0xCB, 0x49, 0xAB, 0xAA, 0xAE, 0x4D, 0xCB, 0x4E, 0xA0, 0x80, 0x33, 0x68, 0x33, 0x48, 0x32, 0x6D, 0xEA, 0x03, 0x6B, 0xAC, 0xEB, 0x6D, 0xEA, 0x70, 0xA0, 0x4E, 0xCE, 0x9A, 0x34, 0x68, 0x32, 0x7E, 0x33, 0x8D, 0xEA, 0x05, 0x23, 0x09, 0xF4, 0x00, 0x6B, 0x4D, 0xEB, 0x6F, 0xCE, 0x06, 0x10, 0x0A, 0xF0, 0x00, 0x6B, 0x6B, 0xEB, 0x4D, 0xEB, 0x5D, 0x67, 0x6F, 0xCA, 0x00, 0x6A, 0x21, 0x10, 0xDD, 0x67, 0x44, 0x35, 0xB5, 0xE6, 0xAC, 0xAD, 0x01, 0x6E, 0xA7, 0xEB, 0xCC, 0xED, 0x0C, 0x25, 0x0F, 0x6D, 0x77, 0xE5, 0xC4, 0xED, 0xA6, 0x67, 0x8D, 0xED, 0xA0, 0x34, 0x80, 0x34, 0x83, 0x34, 0x83, 0x34, 0xFF, 0xF7, 0x1F, 0x6D, 0xAC, 0xEC, 0x01, 0x4B, 0xFF, 0x6D, 0xAC, 0xEB, 0x10, 0x5B, 0xE7, 0x61, 0x44, 0x33, 0x01, 0x4A, 0xDD, 0x67, 0xAC, 0xEA, 0x6D, 0xE6, 0x04, 0x5A, 0x8C, 0xCB, 0x03, 0x60, 0x00, 0x6C, 0x64, 0x67, 0xDC, 0x17, 0x5D, 0x67, 0xCC, 0xAA, 0x51, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x7D, 0x67, 0xCD, 0xAB, 0x50, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x5D, 0x67, 0xCE, 0xAA, 0x4F, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x7D, 0x67, 0xCF, 0xAB, 0x4E, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x09, 0x97, 0x08, 0x90, 0x00, 0xEF, 0x05, 0x63, 0x50, 0x95, 0x11, 0x80, 0xFB, 0x63, 0x09, 0x62, 0x08, 0xD1, 0x07, 0xD0, 0x57, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0xFF, 0xF7, 0x1F, 0x6B, 0xFF, 0x6E, 0x6C, 0xEA, 0x01, 0x4E, 0x53, 0xB1, 0x4D, 0xEE, 0x57, 0x6C, 0x01, 0x6D, 0x00, 0x18, 0x03, 0xA5, 0x04, 0xD3, 0x44, 0xA1, 0x07, 0x68, 0xA3, 0xA1, 0x4E, 0x32, 0x0C, 0xEA, 0x44, 0x34, 0x0F, 0x6A, 0x4B, 0xEA, 0xAC, 0xEA, 0x8D, 0xEA, 0x01, 0x6D, 0x57, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x43, 0xC1, 0x04, 0x93, 0xC3, 0xA1, 0x57, 0x6C, 0x6C, 0xEA, 0xC6, 0x36, 0x71, 0x6B, 0x6B, 0xEB, 0x0C, 0xEE, 0x6C, 0xEA, 0xD0, 0x36, 0x4D, 0xEE, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x60, 0xA1, 0x01, 0x6A, 0x01, 0x68, 0x6C, 0xEA, 0x0B, 0x22, 0x44, 0xA1, 0x80, 0x48, 0xFF, 0x48, 0x4C, 0xE8, 0xFF, 0x6A, 0x4C, 0xE8, 0x0B, 0xE8, 0xC0, 0xF7, 0x02, 0x30, 0x03, 0x6A, 0x03, 0xE2, 0x39, 0xB1, 0x56, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0x80, 0x99, 0x00, 0x33, 0xE3, 0xF7, 0x1F, 0x6D, 0x96, 0x34, 0xAC, 0xEC, 0x78, 0x33, 0x8D, 0xEB, 0xFB, 0xF7, 0x1F, 0x6C, 0x8C, 0xEB, 0xFF, 0xF7, 0x1F, 0x68, 0x1C, 0xF0, 0x00, 0x6C, 0x8B, 0xEC, 0x0C, 0xEA, 0xC3, 0x67, 0x8C, 0xEA, 0x4D, 0xEE, 0x56, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0xC7, 0xA1, 0x46, 0xA1, 0x58, 0x6C, 0xC0, 0x36, 0x4D, 0xEE, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x59, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0x04, 0x6B, 0x6B, 0xEB, 0x0C, 0xEA, 0x6C, 0xEA, 0x68, 0xA1, 0x03, 0x6C, 0xC2, 0x67, 0x8C, 0xEB, 0x6D, 0xEE, 0x59, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x80, 0x18, 0x7A, 0x2A, 0x00, 0x65, 0x63, 0xA1, 0x80, 0x6A, 0x4B, 0xEA, 0x6C, 0xEA, 0xFF, 0x6B, 0x6C, 0xEA, 0x1E, 0x22, 0x57, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0x0C, 0xEA, 0x80, 0x6B, 0xC2, 0x67, 0x6D, 0xEE, 0x57, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x59, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0xC5, 0xA1, 0xE0, 0xF1, 0x1D, 0x6B, 0x6B, 0xEB, 0x0C, 0xEA, 0x6C, 0xEA, 0xC8, 0x36, 0xE0, 0xF3, 0x19, 0x4B, 0x6C, 0xEE, 0x59, 0x6C, 0x01, 0x6D, 0x4D, 0xEE, 0x0B, 0x10, 0x57, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0x0C, 0xEA, 0x81, 0x6B, 0x6B, 0xEB, 0xC2, 0x67, 0x57, 0x6C, 0x01, 0x6D, 0x6C, 0xEE, 0x00, 0x18, 0x03, 0xA5, 0x00, 0x65, 0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xEF, 0x05, 0x63, 0x50, 0x95, 0x11, 0x80, 0xFB, 0x63, 0x09, 0x62, 0x08, 0xD1, 0x07, 0xD0, 0x80, 0x18, 0xB4, 0x2A, 0x00, 0x65, 0x57, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0xFF, 0xF7, 0x1F, 0x68, 0x0C, 0xEA, 0x02, 0xF0, 0x01, 0x6B, 0x6B, 0xEB, 0xC2, 0x67, 0x6C, 0xEE, 0x57, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x59, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0x0C, 0xEA, 0x00, 0xF2, 0x00, 0x6B, 0xC2, 0x67, 0x6D, 0xEE, 0x59, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x42, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0x33, 0xB3, 0xD2, 0xAB, 0x51, 0xCB, 0x53, 0xAB, 0xC0, 0x36, 0xC0, 0x36, 0x4D, 0xEE, 0x02, 0xF0, 0x00, 0x5E, 0x02, 0x61, 0xE1, 0xF7, 0x1F, 0x6E, 0x2D, 0xB1, 0x20, 0xF0, 0x48, 0xA1, 0x0F, 0x6B, 0xD0, 0x36, 0x6C, 0xEA, 0x4D, 0xEE, 0x42, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x00, 0x6C, 0x02, 0xF0, 0x00, 0x6E, 0x00, 0x18, 0x03, 0xA5, 0xA4, 0x67, 0x63, 0xA1, 0x07, 0x6A, 0x03, 0x6C, 0x72, 0x33, 0x4C, 0xEB, 0x05, 0x4B, 0x00, 0x6D, 0xFF, 0xF7, 0x1F, 0x68, 0x00, 0x18, 0x61, 0xA4, 0x04, 0xD3, 0x04, 0x93, 0x1F, 0xF4, 0x01, 0x6C, 0x0C, 0xEA, 0x8B, 0xEC, 0x8C, 0xEA, 0x1D, 0xB4, 0x6D, 0xE4, 0x20, 0xF1, 0xDA, 0xA3, 0x03, 0x6C, 0x00, 0x6D, 0xC0, 0x36, 0xC8, 0x36, 0x0C, 0xEE, 0x00, 0x18, 0x03, 0xA5, 0x4D, 0xEE, 0xC1, 0xA9, 0x7F, 0x6A, 0x3C, 0x6C, 0xCA, 0x36, 0x4C, 0xEE, 0x00, 0xF6, 0xC0, 0x36, 0x00, 0x18, 0x03, 0xA5, 0x00, 0x6D, 0x57, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0x0C, 0xEA, 0x01, 0x6D, 0xC2, 0x67, 0xAD, 0xEE, 0x00, 0x18, 0x03, 0xA5, 0x57, 0x6C, 0x57, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0x0C, 0xEA, 0x02, 0x6B, 0x6B, 0xEB, 0xC2, 0x67, 0x01, 0x6D, 0x6C, 0xEE, 0x00, 0x18, 0x03, 0xA5, 0x57, 0x6C, 0x80, 0x18, 0xDA, 0x29, 0x01, 0x6C, 0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xEF, 0x05, 0x63, 0x00, 0x65, 0x50, 0x95, 0x11, 0x80, 0x40, 0x00, 0x11, 0x80, 0xFB, 0x63, 0x09, 0x62, 0x08, 0xD1, 0x07, 0xD0, 0x80, 0x18, 0xB4, 0x2A, 0x00, 0x65, 0x57, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0xFF, 0xF7, 0x1F, 0x68, 0x0C, 0xEA, 0x02, 0xF0, 0x00, 0x69, 0xC2, 0x67, 0x2D, 0xEE, 0x57, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x59, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0x0C, 0xEA, 0x00, 0xF2, 0x01, 0x6B, 0x6B, 0xEB, 0xC2, 0x67, 0x6C, 0xEE, 0x59, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x00, 0x6C, 0xD1, 0x67, 0x24, 0xB1, 0x00, 0x18, 0x03, 0xA5, 0xA4, 0x67, 0x63, 0xA1, 0x07, 0x6A, 0x03, 0x6C, 0x72, 0x33, 0x4C, 0xEB, 0x05, 0x4B, 0x00, 0x6D, 0x00, 0x18, 0x61, 0xA4, 0x04, 0xD3, 0x04, 0x93, 0x1F, 0xF4, 0x01, 0x6C, 0x0C, 0xEA, 0x8B, 0xEC, 0x8C, 0xEA, 0x1B, 0xB4, 0x6D, 0xE4, 0x20, 0xF1, 0xDA, 0xA3, 0x03, 0x6C, 0x00, 0x6D, 0xC0, 0x36, 0xC8, 0x36, 0x0C, 0xEE, 0x00, 0x18, 0x03, 0xA5, 0x4D, 0xEE, 0xC1, 0xA9, 0x7F, 0x6A, 0x3C, 0x6C, 0xCA, 0x36, 0x4C, 0xEE, 0x00, 0xF6, 0xC0, 0x36, 0x00, 0x18, 0x03, 0xA5, 0x00, 0x6D, 0x57, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0x0C, 0xEA, 0x01, 0x6D, 0xC2, 0x67, 0xAD, 0xEE, 0x00, 0x18, 0x03, 0xA5, 0x57, 0x6C, 0x57, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0x0C, 0xEA, 0x02, 0x6B, 0x6B, 0xEB, 0xC2, 0x67, 0x57, 0x6C, 0x01, 0x6D, 0x00, 0x18, 0x03, 0xA5, 0x6C, 0xEE, 0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xEF, 0x05, 0x63, 0x00, 0x65, 0x50, 0x95, 0x11, 0x80, 0x40, 0x00, 0x11, 0x80, 0xFD, 0x63, 0x05, 0x62, 0x80, 0x18, 0xB4, 0x2A, 0x00, 0x65, 0x00, 0x6B, 0x0C, 0xB2, 0x6D, 0xDA, 0x6B, 0xDA, 0x59, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0xFF, 0xF7, 0x1F, 0x6B, 0x00, 0xF2, 0x01, 0x6E, 0x4C, 0xEB, 0xCB, 0xEE, 0x59, 0x6C, 0x01, 0x6D, 0x00, 0x18, 0x03, 0xA5, 0x6C, 0xEE, 0x80, 0x18, 0x32, 0x2A, 0x00, 0x65, 0x05, 0x97, 0x00, 0xEF, 0x03, 0x63, 0x50, 0x95, 0x11, 0x80, 0xFA, 0x63, 0x0B, 0x62, 0x0A, 0xD1, 0x09, 0xD0, 0x42, 0xA4, 0x04, 0x67, 0x23, 0xA4, 0x1E, 0x5A, 0xE0, 0xF2, 0x0A, 0x60, 0x04, 0x0B, 0x44, 0x32, 0x49, 0xE3, 0x40, 0x8A, 0x4D, 0xE3, 0x00, 0xEB, 0x00, 0x65, 0x00, 0x65, 0x3D, 0x00, 0x45, 0x00, 0x99, 0x00, 0x1F, 0x02, 0xAD, 0x02, 0xE7, 0x02, 0x5D, 0x03, 0x81, 0x03, 0x93, 0x03, 0xA1, 0x03, 0xB7, 0x03, 0xC5, 0x03, 0xC5, 0x05, 0xC5, 0x05, 0xD3, 0x03, 0xCB, 0x04, 0xE3, 0x04, 0xC5, 0x05, 0xFB, 0x04, 0x09, 0x05, 0x17, 0x05, 0x47, 0x05, 0x57, 0x05, 0x69, 0x05, 0x77, 0x05, 0x89, 0x05, 0x8D, 0x05, 0x91, 0x05, 0x9B, 0x05, 0xAD, 0x05, 0xA0, 0xF5, 0x1C, 0xB2, 0x40, 0xAA, 0xBD, 0x12, 0x57, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0xFF, 0xF7, 0x1F, 0x6B, 0x02, 0xF1, 0x03, 0x6E, 0x4C, 0xEB, 0xCB, 0xEE, 0x6C, 0xEE, 0x57, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x00, 0x6C, 0xA4, 0x67, 0x00, 0x18, 0x03, 0xA5, 0xC4, 0x67, 0x80, 0x18, 0xDA, 0x29, 0x00, 0x6C, 0x00, 0x18, 0x77, 0x57, 0x00, 0x65, 0x00, 0x6D, 0x01, 0xF4, 0x03, 0x6C, 0x00, 0x18, 0xBC, 0x52, 0xC5, 0x67, 0x60, 0xF5, 0x18, 0xB2, 0x0A, 0x6B, 0x6C, 0xC2, 0x08, 0x6B, 0x6D, 0xC2, 0x00, 0x6B, 0x69, 0xC2, 0x6A, 0xC2, 0x90, 0x10, 0x0B, 0x59, 0x80, 0xF2, 0x17, 0x60, 0x60, 0xF5, 0x00, 0xB2, 0x06, 0x21, 0x64, 0xA2, 0x40, 0x6A, 0x6C, 0xEA, 0x80, 0xF2, 0x0F, 0x2A, 0x06, 0x10, 0x84, 0xA2, 0x40, 0x6B, 0x8C, 0xEB, 0x02, 0x2B, 0x29, 0xC2, 0x7E, 0x10, 0x40, 0xF5, 0x00, 0xB3, 0x0B, 0x59, 0x49, 0xA3, 0x29, 0xC3, 0xA0, 0xF0, 0x00, 0x60, 0x04, 0x0B, 0x24, 0x31, 0x25, 0xE3, 0x80, 0x89, 0x8D, 0xE3, 0x00, 0xEB, 0x00, 0x65, 0x17, 0x00, 0x95, 0x00, 0xAB, 0x00, 0xE9, 0x00, 0x09, 0x01, 0x0D, 0x01, 0x11, 0x01, 0x33, 0x01, 0x1B, 0x01, 0x23, 0x01, 0x2B, 0x01, 0x00, 0xF5, 0x10, 0xB3, 0x64, 0xA3, 0x01, 0x6C, 0x6C, 0xEC, 0x11, 0x24, 0x02, 0x6C, 0x6C, 0xEC, 0x04, 0x24, 0x80, 0x18, 0x64, 0x2A, 0x00, 0x65, 0x17, 0x10, 0x02, 0x72, 0x04, 0x61, 0x80, 0x18, 0xF0, 0x29, 0x00, 0x65, 0x11, 0x10, 0x80, 0x18, 0xA3, 0x29, 0x00, 0x65, 0x0D, 0x10, 0x04, 0x6A, 0x6C, 0xEA, 0x0A, 0x22, 0x02, 0x6A, 0x6C, 0xEA, 0x04, 0x22, 0x80, 0x18, 0x61, 0x29, 0x00, 0x65, 0x03, 0x10, 0x80, 0x18, 0x74, 0x29, 0x00, 0x65, 0xC0, 0xF4, 0x08, 0xB1, 0x6B, 0x99, 0xEC, 0x99, 0x4D, 0x99, 0x06, 0xD3, 0x05, 0xD7, 0x00, 0x18, 0x77, 0x57, 0x04, 0xD2, 0x00, 0x6D, 0x01, 0xF4, 0x03, 0x6C, 0x00, 0x18, 0xBC, 0x52, 0xC5, 0x67, 0x0A, 0x6A, 0x4C, 0xC1, 0x08, 0x6A, 0x4D, 0xC1, 0x06, 0x93, 0x04, 0x94, 0x6B, 0xD9, 0x05, 0x97, 0x8D, 0xD9, 0xEC, 0xD9, 0x26, 0x10, 0x80, 0xF4, 0x10, 0xB1, 0x64, 0xA1, 0x02, 0x6A, 0x6D, 0xEA, 0x01, 0x6B, 0x6D, 0xEA, 0x80, 0x18, 0x90, 0x2B, 0x44, 0xC1, 0x2A, 0x10, 0x60, 0xF4, 0x1C, 0xB3, 0x84, 0xA3, 0x03, 0x6A, 0x4B, 0xEA, 0x8C, 0xEA, 0x04, 0x6C, 0x4C, 0xEC, 0x07, 0x24, 0x02, 0x6C, 0x8B, 0xEC, 0x4C, 0xEC, 0x80, 0x18, 0x83, 0x29, 0x84, 0xC3, 0x05, 0x10, 0x01, 0x6C, 0x4D, 0xEC, 0x80, 0x18, 0x0E, 0x2B, 0x84, 0xC3, 0x40, 0xF4, 0x10, 0xB3, 0x84, 0xA3, 0x40, 0x6A, 0x8D, 0xEA, 0x44, 0xC3, 0x00, 0x6C, 0x64, 0x67, 0x44, 0x67, 0x09, 0x12, 0x20, 0xF4, 0x1C, 0xB1, 0x64, 0xA1, 0x03, 0x6A, 0x4B, 0xEA, 0x6C, 0xEA, 0x01, 0x6B, 0x6D, 0xEA, 0x80, 0x18, 0x57, 0x2B, 0x44, 0xC1, 0x64, 0xA1, 0x40, 0x6A, 0x6D, 0xEA, 0x44, 0xC1, 0xEC, 0x17, 0x01, 0x6C, 0x03, 0x10, 0x02, 0x6C, 0x01, 0x10, 0x03, 0x6C, 0x80, 0x18, 0xDA, 0x28, 0x00, 0x65, 0xE3, 0x17, 0x80, 0x18, 0x2E, 0x29, 0x00, 0x65, 0xDF, 0x17, 0x80, 0x18, 0x13, 0x29, 0x00, 0x65, 0xDB, 0x17, 0x80, 0x18, 0xEE, 0x28, 0x00, 0x65, 0xD7, 0x17, 0x80, 0x18, 0x5D, 0x28, 0x00, 0x65, 0xD3, 0x22, 0x12, 0x72, 0xC0, 0xF1, 0x1A, 0x60, 0x00, 0x6C, 0x04, 0x6B, 0xD9, 0x11, 0x04, 0x59, 0xC0, 0xF1, 0x14, 0x60, 0x80, 0x18, 0xDA, 0x29, 0x00, 0x6C, 0x57, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0xFF, 0xF7, 0x1F, 0x6B, 0x02, 0xF1, 0x03, 0x6E, 0x4C, 0xEB, 0xCB, 0xEE, 0x6C, 0xEE, 0x57, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x00, 0x6C, 0xA4, 0x67, 0x00, 0x18, 0x03, 0xA5, 0xC4, 0x67, 0x00, 0x18, 0x77, 0x57, 0x00, 0x65, 0x00, 0x6D, 0x01, 0xF4, 0x03, 0x6C, 0x00, 0x18, 0xBC, 0x52, 0xC5, 0x67, 0xE6, 0xB3, 0x0A, 0x6A, 0x4C, 0xC3, 0x08, 0x6A, 0x2A, 0xC3, 0x4D, 0xC3, 0x00, 0x1C, 0x66, 0x1B, 0x06, 0xD3, 0x06, 0x93, 0xA2, 0x67, 0x05, 0x6A, 0x84, 0xA3, 0x4B, 0xEA, 0x01, 0x71, 0x8C, 0xEA, 0x44, 0xC3, 0x09, 0x61, 0x03, 0x6C, 0x80, 0x18, 0xDA, 0x28, 0x05, 0xD5, 0x00, 0x18, 0x12, 0x55, 0x00, 0x6C, 0x05, 0x95, 0x05, 0x10, 0x02, 0x71, 0x03, 0x61, 0x04, 0x6C, 0x4D, 0xEC, 0x84, 0xC3, 0x00, 0x1C, 0x6D, 0x1B, 0x85, 0x67, 0x86, 0x17, 0x4F, 0x59, 0x80, 0xF1, 0x0D, 0x60, 0x44, 0xA4, 0x08, 0x5A, 0x80, 0xF1, 0x09, 0x60, 0xD1, 0xB3, 0x7F, 0x6A, 0xA1, 0xAB, 0x2C, 0xEA, 0x48, 0x34, 0xE0, 0xF1, 0x1D, 0x6A, 0x4B, 0xEA, 0xAC, 0xEA, 0x8D, 0xEA, 0x41, 0xCB, 0x84, 0xA0, 0x07, 0x6A, 0xA3, 0xA3, 0x8C, 0xEA, 0x50, 0x34, 0x71, 0x6A, 0x4B, 0xEA, 0xAC, 0xEA, 0x8D, 0xEA, 0x43, 0xC3, 0x69, 0x17, 0x0A, 0x59, 0x44, 0xA4, 0x65, 0xA4, 0x60, 0xF1, 0x0E, 0x60, 0x60, 0x33, 0x4D, 0xEB, 0xE3, 0xF7, 0x1F, 0x6C, 0xC1, 0xB2, 0x6C, 0xEC, 0x94, 0x35, 0xC1, 0xB6, 0x80, 0x9A, 0xCC, 0xEC, 0xAD, 0xEC, 0x80, 0xDA, 0xBF, 0xB5, 0x24, 0x34, 0x91, 0xE5, 0x80, 0xAC, 0x8C, 0x34, 0x62, 0xEC, 0x40, 0xF1, 0x1A, 0x61, 0x03, 0x59, 0x06, 0x60, 0x80, 0xA2, 0x02, 0x6B, 0x6B, 0xEB, 0x8C, 0xEB, 0x60, 0xC2, 0x0C, 0x10, 0x80, 0xA2, 0xA4, 0xA2, 0x01, 0x6B, 0x8D, 0xEB, 0x06, 0x59, 0x60, 0xC2, 0x98, 0x67, 0x7F, 0x6B, 0x9C, 0x34, 0xAC, 0xEB, 0x8D, 0xEB, 0x64, 0xC2, 0xB2, 0xB2, 0x25, 0xE2, 0x80, 0xA1, 0xAE, 0xB3, 0x0F, 0x6A, 0x8C, 0xEA, 0xA0, 0xA3, 0x44, 0x34, 0x1F, 0x6A, 0x4B, 0xEA, 0xAC, 0xEA, 0x8D, 0xEA, 0x40, 0xC3, 0x2E, 0x17, 0x45, 0xA4, 0x08, 0x5A, 0x20, 0xF1, 0x14, 0x60, 0x44, 0xA4, 0xA6, 0xB3, 0xA4, 0xA3, 0x40, 0x32, 0x2D, 0xEA, 0x53, 0xCB, 0x85, 0xA4, 0x07, 0x6A, 0x8C, 0xEA, 0x4C, 0x34, 0x39, 0x6A, 0x4B, 0xEA, 0xAC, 0xEA, 0x1A, 0x17, 0x44, 0xA4, 0x9F, 0xB3, 0x40, 0x32, 0x2D, 0xEA, 0x52, 0xCB, 0x45, 0xA4, 0x20, 0xF0, 0x48, 0xC3, 0x13, 0x17, 0x9B, 0xB2, 0x26, 0xC2, 0x64, 0xA4, 0x67, 0xC2, 0x65, 0xA4, 0x68, 0xC2, 0x0C, 0x17, 0x97, 0xB2, 0x63, 0xA2, 0x3E, 0x35, 0x7F, 0x6C, 0xBC, 0x35, 0x8C, 0xEB, 0xAD, 0xEB, 0x8C, 0xE9, 0x63, 0xC2, 0x25, 0xC2, 0x01, 0x17, 0x92, 0xB2, 0x2E, 0xC2, 0x64, 0xA4, 0x6F, 0xC2, 0x65, 0xA4, 0x70, 0xC2, 0xFA, 0x16, 0x8E, 0xB2, 0x31, 0xC2, 0x64, 0xA4, 0x72, 0xC2, 0x65, 0xA4, 0x73, 0xC2, 0xF3, 0x16, 0x8B, 0xB3, 0x49, 0xA3, 0x0A, 0x72, 0x2C, 0x61, 0x8C, 0xA3, 0x00, 0x6A, 0x0A, 0x74, 0x0E, 0x60, 0xC0, 0xF2, 0x0C, 0x4A, 0x58, 0xEC, 0x89, 0xB2, 0x12, 0xEC, 0x91, 0xE2, 0xC0, 0xF0, 0x48, 0xA4, 0x04, 0x72, 0x05, 0x6A, 0x03, 0x60, 0x0A, 0x6A, 0x4C, 0xC3, 0x00, 0x6A, 0x80, 0xB3, 0x8D, 0xA3, 0x08, 0x74, 0x5D, 0x60, 0xFF, 0x6A, 0x09, 0x4A, 0x58, 0xEC, 0x81, 0xB3, 0x12, 0xEA, 0x49, 0xE3, 0x20, 0xF1, 0xAF, 0xA2, 0x01, 0x6A, 0x4C, 0xED, 0x06, 0x25, 0x00, 0xF1, 0x72, 0xAB, 0x67, 0xEC, 0x4C, 0xEB, 0x05, 0x6A, 0x4C, 0x2B, 0x75, 0xB2, 0x08, 0x6B, 0x6D, 0xC2, 0x00, 0x6A, 0x47, 0x10, 0x8B, 0x42, 0xFF, 0x6B, 0x6C, 0xEC, 0x03, 0x5C, 0x1A, 0x60, 0x00, 0x6A, 0xC0, 0xF2, 0x0C, 0x6C, 0x98, 0xEA, 0x72, 0xB3, 0x12, 0xEC, 0x91, 0xE3, 0xC0, 0xF0, 0x68, 0xA4, 0x04, 0x73, 0x09, 0x61, 0xE0, 0xF0, 0xA8, 0x9C, 0x6A, 0xB3, 0xA5, 0xDB, 0xE0, 0xF0, 0x8C, 0xAC, 0x4C, 0xC3, 0x8C, 0xCB, 0x26, 0x10, 0x01, 0x4A, 0xFF, 0x6B, 0x6C, 0xEA, 0x0A, 0x5A, 0xE8, 0x61, 0x27, 0x10, 0x88, 0x42, 0x6C, 0xEC, 0x02, 0x5C, 0x24, 0x60, 0x00, 0x6A, 0xFF, 0x6C, 0x09, 0x4C, 0x98, 0xEA, 0x64, 0xB3, 0x01, 0x6D, 0x12, 0xEC, 0x91, 0xE3, 0x20, 0xF1, 0xCF, 0xA4, 0xAC, 0xEE, 0x12, 0x26, 0x00, 0xF1, 0x72, 0xAB, 0x67, 0xEA, 0xAC, 0xEB, 0x0D, 0x23, 0x60, 0xF1, 0xBE, 0xAC, 0x58, 0xB3, 0xAA, 0xCB, 0x80, 0xF1, 0xA0, 0xAC, 0xAB, 0xCB, 0x80, 0xF1, 0x82, 0xAC, 0x4D, 0xC3, 0x8C, 0xCB, 0x05, 0x6A, 0x06, 0x10, 0x01, 0x4A, 0xFF, 0x6B, 0x6C, 0xEA, 0x08, 0x5A, 0xDE, 0x61, 0x04, 0x6A, 0x4F, 0xB3, 0x6A, 0xA3, 0x40, 0x32, 0x6D, 0xEA, 0x44, 0x10, 0x53, 0xB3, 0x20, 0xF0, 0x9E, 0xA3, 0x20, 0xF0, 0x5D, 0xA3, 0x20, 0xF0, 0x7C, 0xA3, 0x80, 0x34, 0x40, 0x32, 0x80, 0x34, 0x8D, 0xEA, 0x6D, 0x10, 0x4D, 0xB3, 0x40, 0xF0, 0x81, 0xA3, 0x40, 0xF0, 0x40, 0xA3, 0x20, 0xF0, 0x7F, 0xA3, 0x80, 0x34, 0x40, 0x32, 0x80, 0x34, 0x8D, 0xEA, 0x61, 0x10, 0x41, 0xB2, 0x34, 0xC2, 0x64, 0xA4, 0x75, 0xC2, 0x65, 0xA4, 0x76, 0xC2, 0x58, 0x16, 0x3D, 0xB2, 0x37, 0xC2, 0x64, 0xA4, 0x78, 0xC2, 0x65, 0xA4, 0x79, 0xC2, 0x51, 0x16, 0x4F, 0x41, 0xFF, 0x6B, 0x6C, 0xEA, 0x09, 0x5A, 0x56, 0x60, 0x5C, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0xFF, 0xF7, 0x1F, 0x6B, 0x4C, 0xEB, 0x79, 0x6A, 0x4B, 0xEA, 0x4C, 0xEB, 0x2C, 0x36, 0x78, 0x6A, 0x4C, 0xEE, 0x5C, 0x6C, 0x01, 0x6D, 0x00, 0x18, 0x03, 0xA5, 0x6D, 0xEE, 0x39, 0x16, 0x2E, 0xB3, 0x8B, 0x9B, 0x34, 0xB5, 0x56, 0xAB, 0xAC, 0xEC, 0x8B, 0xDB, 0x02, 0x6C, 0x35, 0x10, 0x2A, 0xB4, 0xAB, 0x9C, 0xFF, 0xF7, 0x1F, 0x6B, 0xA2, 0x32, 0xAC, 0xEB, 0x42, 0x32, 0x6B, 0xDC, 0xF5, 0x17, 0x25, 0xB3, 0x8D, 0x9B, 0x2B, 0xB5, 0x5A, 0xAB, 0xAC, 0xEC, 0x8D, 0xDB, 0xEE, 0x17, 0x22, 0xB4, 0xAD, 0x9C, 0xFF, 0xF7, 0x1F, 0x6B, 0xA2, 0x32, 0xAC, 0xEB, 0x42, 0x32, 0x6D, 0xDC, 0xE5, 0x17, 0x78, 0x6C, 0x03, 0x10, 0x76, 0x6C, 0x01, 0x10, 0x77, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0xDC, 0x17, 0x19, 0xB3, 0x96, 0xA3, 0x55, 0xA3, 0x74, 0xA3, 0x80, 0x34, 0x40, 0x32, 0x80, 0x34, 0x8D, 0xEA, 0x08, 0x10, 0x14, 0xB3, 0x99, 0xA3, 0x58, 0xA3, 0x77, 0xA3, 0x80, 0x34, 0x40, 0x32, 0x80, 0x34, 0x8D, 0xEA, 0x6D, 0xEA, 0x03, 0x6C, 0x00, 0x6B, 0x07, 0x10, 0x00, 0x18, 0x2C, 0x2F, 0x90, 0x67, 0x10, 0x10, 0x00, 0x6C, 0x03, 0x6B, 0x44, 0x67, 0x90, 0x34, 0x6D, 0xEC, 0x83, 0xC0, 0x81, 0xA0, 0x10, 0x6B, 0x6B, 0xEB, 0x8C, 0xEB, 0x61, 0xC0, 0xA0, 0x98, 0x02, 0x6C, 0x00, 0x18, 0x8F, 0x2E, 0xC2, 0x67, 0x0B, 0x97, 0x0A, 0x91, 0x09, 0x90, 0x01, 0x6A, 0x00, 0xEF, 0x06, 0x63, 0x38, 0x00, 0x11, 0x80, 0x50, 0x95, 0x11, 0x80, 0x1F, 0x00, 0xFC, 0xFF, 0x44, 0xC1, 0x10, 0x80, 0x38, 0xC1, 0x10, 0x80, 0xD8, 0x55, 0x11, 0x80, 0x5C, 0x3C, 0x11, 0x80, 0x40, 0x00, 0x11, 0x80, 0x00, 0x00, 0xFF, 0xFF, 0x20, 0xE8, 0x00, 0x6A, 0x01, 0x6A, 0x40, 0xC5, 0x00, 0x6A, 0x40, 0xC6, 0x20, 0xE8, 0x00, 0x6A, 0x00, 0x6A, 0x21, 0xB5, 0x55, 0xE5, 0xA0, 0xA5, 0x20, 0xB3, 0x51, 0xE3, 0x20, 0xF1, 0xBA, 0xC4, 0x01, 0x4A, 0xFF, 0x6C, 0x8C, 0xEA, 0x10, 0x5A, 0xF4, 0x61, 0x60, 0xF1, 0x41, 0xA3, 0x0D, 0x72, 0x03, 0x61, 0x15, 0x6A, 0x60, 0xF1, 0x41, 0xC3, 0x18, 0xB2, 0x0A, 0x6B, 0x40, 0xF1, 0x7A, 0xC2, 0x09, 0x6B, 0x40, 0xF1, 0x7B, 0xC2, 0x40, 0xF1, 0x7C, 0xC2, 0x40, 0xF1, 0x7D, 0xC2, 0x40, 0xF1, 0x7E, 0xC2, 0x24, 0xF0, 0x10, 0x6B, 0x60, 0xF1, 0x62, 0xCA, 0x06, 0xF7, 0x19, 0x6B, 0x60, 0xF1, 0x64, 0xCA, 0x0B, 0xF2, 0x10, 0x6B, 0x60, 0xF1, 0x66, 0xCA, 0x0E, 0xF5, 0x0A, 0x6B, 0x60, 0xF1, 0x68, 0xCA, 0x04, 0xF5, 0x00, 0x6B, 0x6B, 0xEB, 0x60, 0xF1, 0x6A, 0xCA, 0x00, 0x6B, 0xC0, 0xF1, 0x68, 0xCA, 0xC0, 0xF1, 0x6A, 0xCA, 0xC0, 0xF1, 0x6C, 0xCA, 0xC0, 0xF1, 0x6E, 0xCA, 0x20, 0xE8, 0x00, 0x65, 0x00, 0x65, 0xD0, 0xC2, 0x10, 0x80, 0x40, 0x00, 0x11, 0x80, 0xFF, 0x6A, 0x4C, 0xEE, 0x4C, 0xEC, 0x4C, 0xED, 0xEC, 0xEA, 0x57, 0xE5, 0x00, 0xF6, 0xA0, 0x35, 0x00, 0xF6, 0xA3, 0x35, 0xB8, 0xED, 0xD3, 0xE4, 0x00, 0xF6, 0x80, 0x34, 0x00, 0xF6, 0x83, 0x34, 0xFF, 0xF7, 0x1F, 0x6B, 0x12, 0xED, 0x98, 0xEC, 0x12, 0xEC, 0x89, 0xE5, 0x20, 0xE8, 0x6C, 0xEA, 0x68, 0xA4, 0x04, 0x6A, 0x6C, 0xEA, 0x04, 0xB3, 0x01, 0x22, 0x01, 0x6A, 0x40, 0xC3, 0x20, 0xE8, 0x00, 0x6A, 0x00, 0x65, 0x88, 0x95, 0x11, 0x80, 0x20, 0xE8, 0x01, 0x6A, 0xFB, 0x63, 0x09, 0x62, 0x08, 0xD1, 0x07, 0xD0, 0x06, 0x6E, 0x24, 0x67, 0x14, 0xB4, 0x00, 0x18, 0x35, 0x33, 0x05, 0x67, 0x1C, 0x2A, 0x90, 0x67, 0x00, 0x18, 0x28, 0xE1, 0x04, 0x05, 0xFF, 0x6B, 0x6E, 0xEA, 0x03, 0x2A, 0x40, 0xC1, 0x01, 0x6A, 0x13, 0x10, 0x5D, 0x67, 0x68, 0xAA, 0xC0, 0xF2, 0x0C, 0x6A, 0x58, 0xEB, 0x0B, 0xB2, 0x12, 0xEB, 0x4D, 0xE3, 0xA0, 0xF0, 0x9A, 0xAB, 0x40, 0x6A, 0x8C, 0xEA, 0x05, 0x22, 0x41, 0x6A, 0x4B, 0xEA, 0x8C, 0xEA, 0xA0, 0xF0, 0x5A, 0xCB, 0x00, 0x6A, 0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xEF, 0x05, 0x63, 0x00, 0x65, 0xA4, 0x37, 0x11, 0x80, 0xD8, 0x55, 0x11, 0x80, 0xFD, 0x63, 0x05, 0x62, 0x60, 0xA4, 0x44, 0x67, 0x3F, 0x6C, 0x8C, 0xEB, 0x20, 0x73, 0x0D, 0x61, 0x14, 0xB3, 0x81, 0x9A, 0x8C, 0xEB, 0x20, 0x2B, 0x13, 0xB4, 0x60, 0xDC, 0x13, 0xB4, 0x60, 0xDC, 0x61, 0x9A, 0x13, 0xB4, 0x8D, 0xEB, 0x61, 0xDA, 0x17, 0x10, 0x30, 0x73, 0x15, 0x61, 0x62, 0xA2, 0x0E, 0x2B, 0x10, 0xB3, 0xC0, 0xAB, 0x81, 0xA2, 0x30, 0x6B, 0x63, 0xC2, 0x10, 0x6B, 0x6B, 0xEB, 0x8C, 0xEB, 0x61, 0xC2, 0xA0, 0x9A, 0x00, 0x18, 0x8F, 0x2E, 0x02, 0x6C, 0x03, 0x10, 0x80, 0x18, 0xA0, 0x2B, 0x82, 0x67, 0x01, 0x6A, 0x01, 0x10, 0x00, 0x6A, 0x05, 0x97, 0x00, 0xEF, 0x03, 0x63, 0x00, 0x00, 0xFF, 0x00, 0xA0, 0xC3, 0x10, 0x80, 0x54, 0x8B, 0x10, 0x80, 0x00, 0x00, 0x01, 0x00, 0x38, 0x00, 0x11, 0x80, 0xFB, 0x63, 0x09, 0x62, 0x17, 0xB2, 0x60, 0xA2, 0x80, 0x9C, 0x08, 0x23, 0x16, 0xB2, 0xA0, 0xA2, 0x80, 0x6A, 0x4B, 0xEA, 0xAC, 0xEA, 0xFF, 0x6D, 0xAC, 0xEA, 0x1D, 0x2A, 0x01, 0x6D, 0x11, 0xB2, 0xA0, 0xC2, 0x12, 0xB2, 0x40, 0xA2, 0x10, 0x6D, 0xAC, 0xEA, 0x13, 0x22, 0x82, 0x32, 0xAC, 0xEA, 0x10, 0x22, 0x02, 0x6A, 0x04, 0xD2, 0x0E, 0xB2, 0x05, 0xD2, 0x0E, 0xB2, 0x07, 0xD4, 0xFA, 0x6D, 0x04, 0x6C, 0x40, 0xF5, 0x04, 0x6E, 0xA4, 0xF3, 0x0D, 0x6F, 0x20, 0x18, 0x0E, 0x30, 0x06, 0xD2, 0x02, 0x10, 0x04, 0xB2, 0x60, 0xC2, 0x09, 0x97, 0x00, 0x6A, 0x00, 0xEF, 0x05, 0x63, 0x00, 0x65, 0x80, 0x07, 0x11, 0x80, 0x94, 0x37, 0x11, 0x80, 0x48, 0x21, 0x11, 0x80, 0x98, 0xE4, 0x04, 0x80, 0x3F, 0x42, 0x0F, 0x00, 0xFB, 0x63, 0x09, 0x62, 0x08, 0xD0, 0x04, 0x67, 0x80, 0xAC, 0xFF, 0xF5, 0x10, 0x74, 0x0F, 0x61, 0x43, 0xA0, 0x26, 0xB3, 0x02, 0x6C, 0xFA, 0x6D, 0x6D, 0xE2, 0x60, 0x9B, 0x04, 0xD4, 0x24, 0xB4, 0x05, 0xD4, 0x06, 0xD2, 0x07, 0xD3, 0x04, 0x6C, 0x21, 0xF3, 0x16, 0x6E, 0x1C, 0x10, 0xFF, 0xF5, 0x11, 0x74, 0x24, 0x61, 0x47, 0xA0, 0x66, 0xA0, 0x83, 0xA0, 0x40, 0x32, 0x6D, 0xEA, 0x65, 0xA0, 0x40, 0x32, 0xFA, 0x6D, 0x6D, 0xEA, 0x64, 0xA0, 0x40, 0x32, 0x41, 0xF3, 0x01, 0x6E, 0x6D, 0xEA, 0x16, 0xB3, 0x6D, 0xE4, 0x40, 0xDB, 0x02, 0x6B, 0x04, 0xD3, 0x15, 0xB3, 0x05, 0xD3, 0x63, 0xA0, 0x07, 0xD2, 0x04, 0x6C, 0x06, 0xD3, 0xC2, 0xF7, 0x1A, 0x6F, 0x20, 0x18, 0x0E, 0x30, 0x00, 0x65, 0x80, 0xA8, 0x00, 0x6D, 0x00, 0x18, 0xBC, 0x52, 0xC5, 0x67, 0x0F, 0x10, 0x01, 0xF0, 0x03, 0x74, 0x03, 0x60, 0x01, 0xF0, 0x11, 0x74, 0x0B, 0x61, 0x0A, 0xB3, 0x0B, 0xB2, 0x60, 0xF1, 0x64, 0x9B, 0x6C, 0xEA, 0x05, 0x22, 0x00, 0x18, 0xA0, 0x54, 0x0C, 0x6D, 0x01, 0x6A, 0x01, 0x10, 0x00, 0x6A, 0x09, 0x97, 0x08, 0x90, 0x00, 0xEF, 0x05, 0x63, 0x00, 0xA0, 0x00, 0xB0, 0x98, 0xE4, 0x04, 0x80, 0xE4, 0x51, 0x11, 0x80, 0x00, 0xFF, 0x00, 0xFF, 0xFD, 0x63, 0x05, 0x62, 0x80, 0x18, 0x51, 0x28, 0x00, 0x65, 0x09, 0xB3, 0x76, 0xAB, 0x09, 0xB4, 0x01, 0x6D, 0x62, 0x33, 0x76, 0x33, 0x40, 0x9C, 0xAC, 0xEB, 0x07, 0xB5, 0x60, 0x33, 0x60, 0x33, 0xAC, 0xEA, 0x6D, 0xEA, 0x40, 0xDC, 0x05, 0x97, 0x00, 0xEF, 0x03, 0x63, 0x40, 0x00, 0x11, 0x80, 0x5C, 0xA0, 0x00, 0xB0, 0xFF, 0xFF, 0xFE, 0xFF, 0xFD, 0x63, 0x05, 0x62, 0x0E, 0xB2, 0x0F, 0xB3, 0x72, 0xDA, 0x0F, 0xB3, 0x75, 0xDA, 0x0F, 0xB3, 0x69, 0xDA, 0x0F, 0xB3, 0x6C, 0xDA, 0x0F, 0xB3, 0x6F, 0xDA, 0x0F, 0xB3, 0x66, 0xDA, 0x0F, 0xB3, 0x7B, 0xDA, 0x0F, 0xB3, 0x60, 0xDA, 0x0F, 0xB3, 0x80, 0x18, 0x51, 0x28, 0x78, 0xDA, 0x0E, 0xB3, 0x0E, 0xB2, 0x60, 0xDA, 0x05, 0x97, 0x00, 0xEF, 0x03, 0x63, 0x00, 0x65, 0xE8, 0x89, 0x11, 0x80, 0xDD, 0xBF, 0x10, 0x80, 0xCD, 0xBF, 0x10, 0x80, 0xBD, 0xBF, 0x10, 0x80, 0xAD, 0xBF, 0x10, 0x80, 0x9D, 0xBF, 0x10, 0x80, 0x8D, 0xBF, 0x10, 0x80, 0x21, 0xBF, 0x10, 0x80, 0x11, 0xBF, 0x10, 0x80, 0x01, 0xBF, 0x10, 0x80, 0xA9, 0xBD, 0x10, 0x80, 0x1C, 0x2F, 0x11, 0x80, 0xFD, 0x63, 0x05, 0x62, 0x04, 0xD0, 0x00, 0x68, 0x18, 0xB4, 0x04, 0x32, 0x49, 0xE4, 0x60, 0xAA, 0xFF, 0xF7, 0x1F, 0x73, 0x0E, 0x60, 0x41, 0x40, 0x44, 0x32, 0x49, 0xE4, 0xC0, 0xAA, 0x3F, 0x6C, 0x6C, 0xEC, 0x00, 0x18, 0x03, 0xA5, 0x00, 0x6D, 0x02, 0x48, 0xFF, 0x6A, 0x4C, 0xE8, 0x1E, 0x58, 0xEB, 0x61, 0x00, 0x68, 0x0E, 0xB4, 0x04, 0x32, 0x49, 0xE4, 0x60, 0xAA, 0xFF, 0xF7, 0x1F, 0x73, 0x0E, 0x60, 0x41, 0x40, 0x44, 0x32, 0x49, 0xE4, 0xC0, 0xAA, 0x3F, 0x6C, 0x6C, 0xEC, 0x00, 0x18, 0x03, 0xA5, 0x00, 0x6D, 0x02, 0x48, 0xFF, 0x6A, 0x4C, 0xE8, 0x22, 0x58, 0xEB, 0x61, 0x05, 0x97, 0x04, 0x90, 0x00, 0xEF, 0x03, 0x63, 0x00, 0x65, 0x50, 0xC2, 0x10, 0x80, 0x8C, 0xC2, 0x10, 0x80, 0xFA, 0x63, 0x0B, 0x62, 0x0A, 0xD1, 0x09, 0xD0, 0xFF, 0xF7, 0x1F, 0x6A, 0x4C, 0xEE, 0x4C, 0xED, 0xFF, 0x6A, 0x0C, 0xD4, 0x06, 0xD6, 0x04, 0xD5, 0x05, 0xD2, 0x5C, 0x10, 0x04, 0x93, 0x0C, 0x94, 0x64, 0x32, 0x49, 0xE4, 0x40, 0xAA, 0xFF, 0xF7, 0x1F, 0x72, 0x58, 0x60, 0xE0, 0xF3, 0x1F, 0x68, 0x01, 0x4B, 0x4C, 0xE8, 0x64, 0x33, 0x42, 0x32, 0x6D, 0xE4, 0x56, 0x32, 0x20, 0xAB, 0x44, 0x32, 0x03, 0x0B, 0x49, 0xE3, 0x40, 0x8A, 0x4D, 0xE3, 0x00, 0xEB, 0x00, 0x65, 0x11, 0x00, 0x19, 0x00, 0x6F, 0x00, 0x45, 0x00, 0x4D, 0x00, 0x6F, 0x00, 0x57, 0x00, 0x61, 0x00, 0x3F, 0x6C, 0x0C, 0xEC, 0x00, 0x6D, 0x12, 0x10, 0x05, 0x93, 0x02, 0x32, 0x4A, 0xEB, 0x08, 0x60, 0xC2, 0x67, 0x40, 0x6C, 0x01, 0x6D, 0x00, 0x18, 0x03, 0xA5, 0x07, 0xD2, 0x07, 0x92, 0x05, 0xD2, 0x7F, 0x6C, 0x0C, 0xEC, 0x87, 0x34, 0x40, 0x6A, 0x4D, 0xEC, 0x01, 0x6D, 0x00, 0x18, 0x03, 0xA5, 0xD1, 0x67, 0x1C, 0x10, 0x00, 0x18, 0x36, 0x1C, 0x91, 0x67, 0x18, 0x10, 0x01, 0x6A, 0x0C, 0xEA, 0x15, 0x2A, 0x13, 0xB2, 0x09, 0x10, 0x01, 0x6A, 0x0C, 0xEA, 0x10, 0x2A, 0x11, 0xB2, 0x04, 0x10, 0x01, 0x6A, 0x0C, 0xEA, 0x0B, 0x2A, 0x10, 0xB2, 0x41, 0xE0, 0x20, 0xC8, 0x07, 0x10, 0x01, 0x6A, 0x0C, 0xEA, 0x04, 0x2A, 0x90, 0x67, 0x00, 0x18, 0xFE, 0x3A, 0xB1, 0x67, 0x04, 0x94, 0xFF, 0xF7, 0x1F, 0x6A, 0x02, 0x4C, 0x4C, 0xEC, 0x04, 0xD4, 0x04, 0x92, 0x06, 0x93, 0x63, 0xEA, 0xA0, 0x61, 0x0B, 0x97, 0x0A, 0x91, 0x09, 0x90, 0x00, 0xEF, 0x06, 0x63, 0x00, 0x65, 0x00, 0xA0, 0x00, 0xB0, 0x00, 0x00, 0x00, 0xB5, 0x00, 0x10, 0x00, 0xB6, 0xFC, 0x63, 0x07, 0x62, 0x06, 0xD1, 0x05, 0xD0, 0x00, 0x68, 0x24, 0x67, 0x04, 0x32, 0x49, 0xE1, 0x60, 0xAA, 0xFF, 0xF7, 0x1F, 0x73, 0x29, 0x60, 0x1E, 0xF0, 0x00, 0x6A, 0x6C, 0xEA, 0x0C, 0xF0, 0x00, 0x72, 0x07, 0x61, 0x41, 0x40, 0x44, 0x32, 0x49, 0xE1, 0x00, 0x18, 0x31, 0x1C, 0x80, 0xAA, 0x18, 0x10, 0x04, 0xF0, 0x00, 0x72, 0x0B, 0x61, 0xFF, 0x6C, 0x8C, 0xEB, 0x40, 0x6A, 0x67, 0x33, 0x4D, 0xEB, 0x41, 0x40, 0x44, 0x32, 0x49, 0xE1, 0x6C, 0xEC, 0x01, 0x6D, 0x07, 0x10, 0x0D, 0x2A, 0x41, 0x40, 0x44, 0x32, 0xFF, 0x6C, 0x49, 0xE1, 0x6C, 0xEC, 0x00, 0x6D, 0x00, 0x18, 0x03, 0xA5, 0xC0, 0xAA, 0x02, 0x48, 0xFF, 0x6A, 0x4C, 0xE8, 0xD1, 0x17, 0x07, 0x97, 0x06, 0x91, 0x05, 0x90, 0x00, 0xEF, 0x04, 0x63, 0xF9, 0x63, 0x0D, 0x62, 0x0C, 0xD1, 0x0B, 0xD0, 0xFF, 0x68, 0x00, 0x6E, 0x8C, 0xE8, 0x01, 0x6D, 0x00, 0x18, 0x03, 0xA5, 0x40, 0x6C, 0x5A, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0x5C, 0x6C, 0x01, 0x6D, 0x00, 0x18, 0x61, 0xA4, 0x22, 0x67, 0xFF, 0xF7, 0x1F, 0x6B, 0x6C, 0xE9, 0xFF, 0xF7, 0x1E, 0x6E, 0x6C, 0xEA, 0x5A, 0x6C, 0x01, 0x6D, 0x2C, 0xEE, 0x08, 0xD2, 0x00, 0x18, 0x03, 0xA5, 0x09, 0xD3, 0x08, 0x92, 0x09, 0x93, 0x03, 0x6E, 0x4D, 0xEE, 0x5C, 0x6C, 0x01, 0x6D, 0x00, 0x18, 0x03, 0xA5, 0x6C, 0xEE, 0x3E, 0xB4, 0x80, 0x18, 0x6D, 0x2E, 0x00, 0x65, 0x06, 0x20, 0x90, 0x67, 0x00, 0x18, 0x36, 0x1C, 0x00, 0x68, 0x70, 0x67, 0x24, 0x10, 0x01, 0x6D, 0xC5, 0x67, 0x00, 0x18, 0x03, 0xA5, 0x40, 0x6C, 0x41, 0x6C, 0x38, 0xF0, 0x03, 0x6E, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x00, 0x18, 0x31, 0x1C, 0x0A, 0x6C, 0x00, 0x68, 0x7E, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x01, 0x6D, 0x00, 0xF2, 0x00, 0x6B, 0x4C, 0xEB, 0x02, 0x23, 0x00, 0x6B, 0x0B, 0x10, 0x00, 0x18, 0x36, 0x1C, 0x0A, 0x6C, 0x01, 0x48, 0xFF, 0xF7, 0x1F, 0x6A, 0x4C, 0xE8, 0xE0, 0xF3, 0x08, 0x58, 0xEC, 0x61, 0x01, 0x6B, 0x28, 0xB4, 0x80, 0x18, 0x6D, 0x2E, 0x09, 0xD3, 0x5A, 0x6C, 0x01, 0x6D, 0x00, 0x18, 0x03, 0xA5, 0xD1, 0x67, 0x08, 0x96, 0x5C, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x01, 0x6D, 0x01, 0x6C, 0x7E, 0x6D, 0x00, 0x18, 0x8A, 0xA4, 0xC4, 0x67, 0x09, 0x93, 0x08, 0xD2, 0x09, 0x23, 0x21, 0x6C, 0x08, 0xF2, 0x00, 0x6E, 0x00, 0x18, 0x03, 0xA5, 0x00, 0x6D, 0xFF, 0xF7, 0x1F, 0x69, 0x07, 0x10, 0x21, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x00, 0x6D, 0xFF, 0xF7, 0x1F, 0x69, 0x4C, 0xE9, 0x16, 0xB3, 0x01, 0x6A, 0x04, 0x6C, 0xFA, 0x6D, 0x81, 0xF1, 0x11, 0x6E, 0xC4, 0xF3, 0x15, 0x6F, 0x05, 0xD3, 0x06, 0xD0, 0x09, 0xD3, 0x20, 0x18, 0x0E, 0x30, 0x04, 0xD2, 0x09, 0x93, 0x02, 0x6A, 0x04, 0xD2, 0x05, 0xD3, 0x08, 0x93, 0xFF, 0xF7, 0x1F, 0x6A, 0x05, 0x6C, 0x6C, 0xEA, 0xFA, 0x6D, 0x81, 0xF1, 0x12, 0x6E, 0x44, 0xF5, 0x18, 0x6F, 0x06, 0xD1, 0x20, 0x18, 0x0E, 0x30, 0x07, 0xD2, 0x51, 0x67, 0x0D, 0x97, 0x0C, 0x91, 0x0B, 0x90, 0x00, 0xEF, 0x07, 0x63, 0x00, 0x65, 0xE0, 0xC2, 0x10, 0x80, 0x74, 0xC3, 0x10, 0x80, 0x98, 0xE4, 0x04, 0x80, 0xF5, 0x63, 0x15, 0x62, 0x14, 0xD1, 0x13, 0xD0, 0x00, 0x18, 0xBF, 0xA6, 0xFF, 0x69, 0x83, 0xB4, 0x00, 0x6D, 0x80, 0x18, 0x30, 0x2E, 0x5E, 0x6E, 0x76, 0x6E, 0x81, 0xB4, 0x80, 0x18, 0x30, 0x2E, 0x00, 0x6D, 0x80, 0x18, 0x14, 0x2E, 0x00, 0x65, 0x00, 0x18, 0xCD, 0xA5, 0x00, 0x65, 0x00, 0x18, 0x88, 0xA5, 0x00, 0x65, 0x00, 0x18, 0xCF, 0xA2, 0x00, 0x65, 0x00, 0x18, 0xD9, 0xA2, 0x00, 0x65, 0x01, 0x6B, 0x78, 0xB2, 0x60, 0xC2, 0x02, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x00, 0x6D, 0x3F, 0x6C, 0x00, 0x6D, 0x00, 0x18, 0x61, 0xA4, 0x11, 0xD2, 0x11, 0x93, 0x2C, 0xEA, 0xFF, 0xF7, 0x1F, 0x68, 0x0C, 0xD2, 0x0C, 0xEB, 0x0C, 0x95, 0x62, 0x33, 0x2C, 0xEB, 0x01, 0x6A, 0xC3, 0x67, 0x82, 0x67, 0xE2, 0x67, 0x11, 0xD3, 0x80, 0x18, 0x8A, 0x2E, 0x04, 0xD2, 0x11, 0x93, 0x0C, 0x95, 0x03, 0x6A, 0xC3, 0x67, 0x00, 0x6C, 0x0F, 0x6F, 0x80, 0x18, 0x8A, 0x2E, 0x04, 0xD2, 0x42, 0x34, 0x1F, 0x6D, 0x11, 0x93, 0x8A, 0x34, 0x56, 0x32, 0xAC, 0xEC, 0xAC, 0xEA, 0x0C, 0x95, 0x03, 0x6E, 0x0B, 0xD4, 0x04, 0xD6, 0x00, 0x6C, 0xC3, 0x67, 0x0F, 0x6F, 0x80, 0x18, 0x8A, 0x2E, 0x0A, 0xD2, 0x42, 0x37, 0x1F, 0x6C, 0xEA, 0x37, 0x8C, 0xEF, 0x09, 0xD7, 0x56, 0x35, 0x8C, 0xED, 0x0B, 0x96, 0x09, 0x94, 0x08, 0xD5, 0x2C, 0xED, 0x2C, 0xEE, 0x2C, 0xEC, 0x0D, 0xD5, 0x0A, 0x97, 0x97, 0xE6, 0x10, 0xD6, 0x0D, 0x96, 0x2C, 0xEF, 0x0E, 0xD4, 0xD3, 0xE7, 0x00, 0xF6, 0x80, 0x34, 0x00, 0xF6, 0x83, 0x34, 0x98, 0xEC, 0x00, 0xF6, 0xA0, 0x35, 0x00, 0xF6, 0xA3, 0x35, 0x0F, 0xD7, 0x11, 0x93, 0x12, 0xEC, 0xB8, 0xED, 0x12, 0xED, 0xB1, 0xE4, 0x0C, 0xEC, 0x11, 0x5C, 0x09, 0x60, 0x09, 0x93, 0x0B, 0x94, 0x08, 0x95, 0x0A, 0x97, 0x99, 0xE3, 0xC7, 0x36, 0x0C, 0xEE, 0xED, 0xE5, 0x55, 0x10, 0x0C, 0x95, 0xC3, 0x67, 0x03, 0x6A, 0x00, 0x6C, 0x0F, 0x6F, 0x80, 0x18, 0x8A, 0x2E, 0x04, 0xD2, 0x42, 0x36, 0x1F, 0x6B, 0xCA, 0x36, 0x6C, 0xEE, 0x10, 0x95, 0xE6, 0x67, 0x2C, 0xEF, 0x1F, 0x6C, 0x56, 0x33, 0x8C, 0xEB, 0xF3, 0xE5, 0x00, 0xF6, 0x80, 0x34, 0x00, 0xF6, 0x83, 0x34, 0x0C, 0x65, 0x0F, 0x94, 0x6C, 0xE9, 0x37, 0xE4, 0x00, 0xF6, 0xA0, 0x35, 0x00, 0xF6, 0xA3, 0x35, 0xB8, 0xED, 0x88, 0x67, 0x12, 0xED, 0x98, 0xEC, 0x12, 0xEC, 0x95, 0xE5, 0x0E, 0x94, 0x0C, 0xED, 0x11, 0x5D, 0xFF, 0xE4, 0x0D, 0x94, 0x00, 0xF6, 0xE0, 0x37, 0x00, 0xF6, 0xE3, 0x37, 0x27, 0xE4, 0x00, 0xF6, 0x20, 0x34, 0x00, 0xF6, 0x83, 0x34, 0x98, 0xEC, 0x12, 0xEC, 0xF8, 0xEF, 0x12, 0xEF, 0xF1, 0xE4, 0x0C, 0xEC, 0x10, 0x60, 0xA3, 0xEC, 0x07, 0x60, 0x09, 0x94, 0x08, 0x95, 0x99, 0xE6, 0xC7, 0x36, 0x0C, 0xEE, 0xAD, 0xE3, 0x12, 0x10, 0x0B, 0x97, 0x0A, 0x94, 0xF9, 0xE6, 0xC7, 0x36, 0x0C, 0xEE, 0x8D, 0xE3, 0x0B, 0x10, 0x11, 0x5C, 0x03, 0x61, 0x10, 0x6B, 0xC3, 0x67, 0x08, 0x10, 0x09, 0x95, 0x08, 0x97, 0xB9, 0xE6, 0xC7, 0x36, 0x0C, 0xEE, 0xED, 0xE3, 0x67, 0x33, 0x0C, 0xEB, 0x1F, 0x6C, 0x4C, 0xEC, 0x10, 0xF0, 0x00, 0x6A, 0x4B, 0xEA, 0xC0, 0x36, 0x4D, 0xEC, 0xC8, 0x36, 0x74, 0x33, 0x8D, 0xEE, 0x6D, 0xEE, 0xFF, 0xF7, 0x1F, 0x6A, 0x4C, 0xEE, 0x21, 0x6C, 0x00, 0x18, 0x03, 0xA5, 0x00, 0x6D, 0x0E, 0x6C, 0x00, 0x18, 0x61, 0xA4, 0x00, 0x6D, 0x21, 0x6C, 0x00, 0x6D, 0x00, 0x18, 0x61, 0xA4, 0x02, 0x67, 0x02, 0x6B, 0x04, 0xD3, 0x01, 0x6C, 0x0B, 0xB3, 0xFA, 0x6D, 0x01, 0xF2, 0x19, 0x6E, 0xA4, 0xF3, 0x0D, 0x6F, 0x06, 0xD0, 0x05, 0xD3, 0x20, 0x18, 0x0E, 0x30, 0x07, 0xD2, 0x15, 0x97, 0x14, 0x91, 0x13, 0x90, 0x00, 0xEF, 0x0B, 0x63, 0x34, 0x02, 0x11, 0x80, 0x64, 0xC1, 0x10, 0x80, 0xFE, 0x1A, 0x11, 0x80, 0x98, 0xE4, 0x04, 0x80, 0xF9, 0x63, 0x0D, 0x62, 0x0C, 0xD1, 0x0B, 0xD0, 0xFF, 0xF7, 0x1F, 0x68, 0x02, 0x74, 0x24, 0x67, 0x65, 0x67, 0x11, 0xD7, 0xCC, 0xE8, 0x1F, 0x61, 0x15, 0xB2, 0x81, 0xA2, 0x0C, 0x6A, 0x8C, 0xEA, 0x0C, 0x72, 0x19, 0x61, 0x00, 0x6A, 0x13, 0xB4, 0x80, 0x9C, 0xC0, 0xF7, 0x82, 0x34, 0x13, 0x24, 0x11, 0xB4, 0x01, 0x4A, 0x43, 0xEC, 0xF7, 0x60, 0x10, 0xB4, 0x00, 0x6A, 0x05, 0xD4, 0xFA, 0x6D, 0x02, 0x6C, 0x00, 0xF5, 0x1A, 0x6E, 0xE1, 0xF3, 0x00, 0x6F, 0x08, 0xD3, 0x04, 0xD2, 0x20, 0x18, 0x0E, 0x30, 0x06, 0xD2, 0x08, 0x93, 0x11, 0x97, 0x91, 0x67, 0xD0, 0x67, 0x00, 0x18, 0x29, 0x20, 0xA3, 0x67, 0x0D, 0x97, 0x0C, 0x91, 0x0B, 0x90, 0x00, 0xEF, 0x07, 0x63, 0xEC, 0x1E, 0x11, 0x80, 0x1C, 0xA3, 0x00, 0xB0, 0xA0, 0x86, 0x01, 0x00, 0x98, 0xE4, 0x04, 0x80, 0xFD, 0x63, 0x05, 0x62, 0x04, 0xD0, 0x00, 0x1C, 0x66, 0x1B, 0x00, 0x65, 0x02, 0x67, 0x0F, 0xB2, 0x60, 0x9A, 0x0F, 0xB2, 0x00, 0x6C, 0x6E, 0xEA, 0x02, 0x2A, 0x0E, 0xB2, 0x80, 0x9A, 0x0E, 0xB3, 0x82, 0x34, 0x82, 0x34, 0x40, 0x9B, 0xFF, 0xF7, 0x1F, 0x6D, 0x80, 0x34, 0xAC, 0xEA, 0x80, 0x34, 0x8D, 0xEA, 0x40, 0xDB, 0x00, 0x18, 0xE5, 0x25, 0x00, 0x6C, 0x00, 0x1C, 0x6D, 0x1B, 0x90, 0x67, 0x05, 0x97, 0x04, 0x90, 0x00, 0xEF, 0x03, 0x63, 0x60, 0x8B, 0x10, 0x80, 0x32, 0x97, 0x79, 0x23, 0x64, 0x8B, 0x10, 0x80, 0x30, 0x00, 0x00, 0xB5, 0xFB, 0x63, 0x09, 0x62, 0x08, 0xD1, 0x07, 0xD0, 0x18, 0xB2, 0x19, 0xB3, 0x63, 0xEA, 0x26, 0x61, 0x18, 0xB2, 0x80, 0x9A, 0x18, 0xB3, 0x8E, 0xEB, 0x21, 0x2B, 0x02, 0xAA, 0x17, 0xB5, 0x1D, 0x10, 0x17, 0xB4, 0x42, 0x45, 0x43, 0xEC, 0x1A, 0x61, 0xC0, 0xA2, 0xFF, 0xF7, 0x1F, 0x6F, 0x43, 0x46, 0x43, 0xE8, 0x14, 0x61, 0x45, 0xE5, 0x23, 0xEC, 0x11, 0x61, 0x81, 0xA5, 0x60, 0xA5, 0x80, 0x34, 0x6D, 0xEC, 0xEC, 0xEC, 0xE0, 0xF3, 0x14, 0x5C, 0x09, 0x60, 0x43, 0xE0, 0x0D, 0xB2, 0x03, 0x4D, 0x91, 0xE2, 0x00, 0x18, 0xF2, 0x32, 0xEC, 0xE8, 0xB1, 0x67, 0xE2, 0x28, 0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xEF, 0x05, 0x63, 0x00, 0x65, 0xF0, 0xFF, 0x10, 0x80, 0x9C, 0xC3, 0x10, 0x80, 0xA0, 0xC3, 0x10, 0x80, 0x55, 0xAB, 0x23, 0x87, 0xA6, 0xC3, 0x10, 0x80, 0xFF, 0xFF, 0x10, 0x80, 0x40, 0x00, 0x11, 0x80, 0xFD, 0x63, 0x05, 0x62, 0x00, 0x18, 0xBD, 0xF4, 0x00, 0x65, 0x05, 0x97, 0x00, 0xEF, 0x03, 0x63, 0xFD, 0x63, 0x05, 0x62, 0x00, 0x18, 0xB7, 0x39, 0x00, 0x65, 0x05, 0x97, 0x00, 0xEF, 0x03, 0x63, 0xFB, 0x63, 0x09, 0x62, 0x08, 0xD0, 0x44, 0xAC, 0x04, 0x67, 0x01, 0x72, 0x0F, 0x61, 0x02, 0x6A, 0x04, 0xD2, 0x15, 0xB2, 0x05, 0xD2, 0x40, 0x9C, 0xFA, 0x6D, 0xE0, 0xF2, 0x08, 0x6E, 0x06, 0xD2, 0x41, 0x9C, 0x41, 0xF5, 0x0D, 0x6F, 0x04, 0x6C, 0x07, 0xD2, 0x11, 0x10, 0x0F, 0xB2, 0x40, 0xA2, 0x11, 0x2A, 0x02, 0x6A, 0x04, 0xD2, 0x0C, 0xB2, 0x05, 0xD2, 0x40, 0x9C, 0xFA, 0x6D, 0xE0, 0xF2, 0x11, 0x6E, 0x06, 0xD2, 0x41, 0x9C, 0x41, 0xF5, 0x0E, 0x6F, 0x05, 0x6C, 0x07, 0xD2, 0x20, 0x18, 0x0E, 0x30, 0x00, 0x65, 0x00, 0x18, 0x04, 0x31, 0x90, 0x67, 0x09, 0x97, 0x08, 0x90, 0x00, 0xEF, 0x05, 0x63, 0x00, 0x65, 0x98, 0xE4, 0x04, 0x80, 0x5B, 0x07, 0x11, 0x80, 0xFD, 0x63, 0x05, 0x62, 0x00, 0x18, 0x5E, 0xBA, 0x00, 0x65, 0x05, 0x97, 0x00, 0xEF, 0x03, 0x63, 0xFD, 0x63, 0x05, 0x62, 0x00, 0x18, 0xDB, 0xBA, 0x00, 0x65, 0x05, 0x97, 0x00, 0xEF, 0x03, 0x63, 0xFD, 0x63, 0x05, 0x62, 0x00, 0x18, 0x6C, 0x5B, 0x00, 0x65, 0x05, 0x97, 0x00, 0xEF, 0x03, 0x63, 0xFD, 0x63, 0x05, 0x62, 0x00, 0x18, 0x91, 0x8C, 0x00, 0x65, 0x05, 0x97, 0x00, 0xEF, 0x03, 0x63, 0xFD, 0x63, 0x05, 0x62, 0x00, 0x18, 0xED, 0x5B, 0x00, 0x65, 0x05, 0x97, 0x00, 0xEF, 0x03, 0x63, 0xF0, 0x63, 0x1F, 0x62, 0x1E, 0xD1, 0x1D, 0xD0, 0x44, 0xAC, 0x80, 0xF4, 0x00, 0x72, 0x80, 0xF0, 0x10, 0x61, 0x00, 0x9C, 0x44, 0xA0, 0x6B, 0xA8, 0x46, 0x32, 0x17, 0x72, 0x18, 0xD3, 0x80, 0xF0, 0x08, 0x61, 0x21, 0x9C, 0xFF, 0x6D, 0xAC, 0xEA, 0x2C, 0xED, 0x19, 0xD2, 0x16, 0x04, 0x00, 0x18, 0x08, 0x96, 0xBA, 0xC0, 0x19, 0x94, 0x7F, 0x74, 0x04, 0x60, 0x00, 0x6B, 0xE1, 0xF4, 0x16, 0x6F, 0x03, 0x10, 0x65, 0xA0, 0x01, 0xF4, 0x16, 0x6F, 0x10, 0x6C, 0x44, 0xA0, 0x04, 0xD4, 0x3E, 0xB4, 0x05, 0xD4, 0x16, 0x94, 0x08, 0xD3, 0xFA, 0x6D, 0x06, 0xD4, 0x19, 0x94, 0x60, 0xF2, 0x19, 0x6E, 0x07, 0xD4, 0x79, 0xA0, 0x82, 0x67, 0x0A, 0xD1, 0x09, 0xD3, 0x01, 0x6B, 0x6C, 0xEC, 0x0B, 0xD4, 0x8B, 0xA8, 0x0C, 0xD4, 0x35, 0xB4, 0x25, 0xE4, 0x84, 0xA1, 0x0E, 0xD2, 0x6C, 0xEC, 0x0D, 0xD4, 0x45, 0xA0, 0x04, 0x6C, 0x0F, 0xD2, 0x46, 0xA0, 0x10, 0xD2, 0x47, 0xA0, 0x11, 0xD2, 0x48, 0xA0, 0x12, 0xD2, 0x49, 0xA0, 0x13, 0xD2, 0x4A, 0xA0, 0x14, 0xD2, 0x4B, 0xA0, 0x1A, 0xD3, 0x20, 0x18, 0x0E, 0x30, 0x15, 0xD2, 0x18, 0x92, 0x1A, 0x93, 0xFF, 0x72, 0x3D, 0x60, 0xC0, 0xF2, 0x0C, 0x69, 0x38, 0xEA, 0x27, 0xB2, 0x12, 0xE9, 0x25, 0xE2, 0xE0, 0xF0, 0x46, 0xA1, 0x01, 0x72, 0x33, 0x61, 0xC0, 0xF0, 0x48, 0xA1, 0x0B, 0x72, 0x11, 0x61, 0x22, 0xB2, 0x80, 0x9A, 0x00, 0x18, 0xDA, 0x1C, 0xB0, 0x67, 0x00, 0xF2, 0x0F, 0xA1, 0x01, 0x6A, 0x4E, 0xE8, 0x2E, 0x28, 0x8B, 0x99, 0x00, 0x18, 0xAA, 0x1C, 0x00, 0x6D, 0x00, 0xF2, 0x0F, 0xC1, 0x27, 0x10, 0x18, 0x94, 0xB0, 0x67, 0x00, 0x18, 0xB5, 0xE1, 0x1A, 0xD3, 0x19, 0x94, 0x1A, 0x93, 0x17, 0x74, 0x15, 0x61, 0x16, 0xB4, 0x17, 0xB2, 0x60, 0xF1, 0x84, 0x9C, 0x8C, 0xEA, 0x0B, 0x22, 0x44, 0xA0, 0x18, 0x94, 0x17, 0x6D, 0x4C, 0xEB, 0xC3, 0x67, 0xFF, 0x6A, 0x4C, 0xEE, 0x20, 0x18, 0x61, 0x27, 0x24, 0x6F, 0x04, 0x10, 0x18, 0x95, 0x20, 0x18, 0xEF, 0x00, 0x90, 0x67, 0x0B, 0xB2, 0x80, 0x9A, 0x00, 0x18, 0xDA, 0x1C, 0xB0, 0x67, 0x03, 0x10, 0x20, 0x18, 0xAE, 0x23, 0x00, 0x65, 0x1F, 0x97, 0x1E, 0x91, 0x1D, 0x90, 0x00, 0xEF, 0x10, 0x63, 0x00, 0x65, 0x98, 0xE4, 0x04, 0x80, 0x8C, 0x3B, 0x11, 0x80, 0xD8, 0x55, 0x11, 0x80, 0x54, 0x48, 0x11, 0x80, 0xE4, 0x51, 0x11, 0x80, 0x00, 0xFF, 0x00, 0xFF, 0x04, 0x0B, 0x0F, 0x04, 0x0A, 0x0E, 0x08, 0x0B, 0x0F, 0x00, 0x00, 0x00, 0x1B, 0x00, 0xB7, 0x00, 0x53, 0x01, 0x36, 0x00, 0x6F, 0x01, 0xA7, 0x02, 0x53, 0x00, 0x28, 0x02, 0xFD, 0x03, 0x25, 0x00, 0x07, 0x04, 0x05, 0x01, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x74, 0x41, 0x01, 0x10, 0x25, 0x00, 0x00, 0x72, 0x26, 0x00, 0x00, 0x72, 0x3D, 0x00, 0x00, 0xFE, 0x2E, 0x00, 0x95, 0xA7, 0x32, 0x00, 0x95, 0xA7, 0x22, 0x00, 0x00, 0x84, 0x27, 0x00, 0xA0, 0x6A, 0x28, 0x00, 0xA0, 0x6A, 0x29, 0x00, 0x03, 0x22, 0x2A, 0x00, 0x01, 0x20, 0x2B, 0x00, 0xC9, 0xAD, 0x2F, 0x00, 0xC9, 0xAD, 0x33, 0x00, 0x00, 0xC0, 0x37, 0x00, 0x00, 0xC0, 0x3C, 0x00, 0x01, 0x00, 0x0F, 0x00, 0x80, 0x00, 0x0E, 0x00, 0xC2, 0xD1, 0x30, 0x00, 0x23, 0x20, 0x31, 0x00, 0x2A, 0x08, 0x32, 0x00, 0x64, 0x04, 0x33, 0x00, 0x42, 0x40, 0x34, 0x00, 0xCC, 0x27, 0x35, 0x00, 0xD0, 0x48, 0x36, 0x00, 0x00, 0x40, 0x37, 0x00, 0x10, 0x05, 0x38, 0x00, 0x0C, 0x00, 0x39, 0x00, 0x70, 0x02, 0x22, 0x00, 0x04, 0xC0, 0x2B, 0x00, 0x43, 0x00, 0x2C, 0x00, 0x43, 0x00, 0x0E, 0x00, 0xC2, 0x51, 0x00, 0x00, 0x06, 0x10, 0x3F, 0x00, 0x01, 0x00, 0x1C, 0x00, 0x21, 0x00, 0x00, 0x60, 0x0A, 0x00, 0x0E, 0x00, 0xC2, 0xD1, 0x35, 0x00, 0xD0, 0x4E, 0x0E, 0x00, 0xC2, 0x51, 0x24, 0x00, 0x01, 0x00, 0x00, 0x60, 0x00, 0x01, 0x0E, 0x00, 0xC2, 0xD1, 0x35, 0x00, 0xD0, 0x48, 0x0E, 0x00, 0xC2, 0x51, 0x3F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x16, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x24, 0x10, 0x00, 0x00, 0x10, 0x11, 0x00, 0x30, 0x00, 0x12, 0x00, 0x00, 0x04, 0x0E, 0x00, 0xC2, 0x51, 0x0A, 0x22, 0x62, 0x02, 0x34, 0x20, 0x55, 0x22, 0x38, 0x20, 0xA8, 0xC0, 0x34, 0x21, 0xF5, 0xFF, 0x36, 0x21, 0xFF, 0xFE, 0x18, 0x20, 0x0F, 0x69, 0xFF, 0xFF, 0xFF, 0xFF, 0x13, 0x00, 0x9B, 0x7D, 0x13, 0x00, 0x0E, 0x60, 0x13, 0x00, 0x9E, 0x5C, 0x13, 0x00, 0x0A, 0x30, 0x13, 0x00, 0xF8, 0x2F, 0x13, 0x00, 0xC5, 0x1F, 0x13, 0x00, 0x90, 0x00, 0x19, 0x00, 0x9B, 0x7D, 0x19, 0x00, 0x0E, 0x60, 0x19, 0x00, 0x9E, 0x5C, 0x19, 0x00, 0x0A, 0x30, 0x19, 0x00, 0xF8, 0x2F, 0x19, 0x00, 0xC5, 0x1F, 0x19, 0x00, 0x90, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x15, 0x00, 0x40, 0x00, 0x15, 0x00, 0xC0, 0x20, 0x15, 0x00, 0xC0, 0x41, 0x15, 0x00, 0xC0, 0x68, 0x15, 0x00, 0xC0, 0x89, 0x15, 0x00, 0xC0, 0xB0, 0x15, 0x00, 0xC0, 0xD1, 0x15, 0x00, 0xC0, 0xF3, 0x1A, 0x00, 0x40, 0x00, 0x1A, 0x00, 0xC0, 0x20, 0x1A, 0x00, 0xC0, 0x41, 0x1A, 0x00, 0xC0, 0x68, 0x1A, 0x00, 0xC0, 0x89, 0x1A, 0x00, 0xC0, 0xB0, 0x1A, 0x00, 0xC0, 0xD1, 0x1A, 0x00, 0xC0, 0xF3, 0xFF, 0xFF, 0xFF, 0xFF, 0x08, 0x0B, 0x28, 0x2B, 0x2E, 0x6B, 0x6E, 0x8B, 0x8E, 0xCE, 0xD2, 0xD2, 0xD2, 0xD2, 0xD2, 0xD2, 0x21, 0x00, 0x00, 0xC2, 0x00, 0x00, 0x00, 0x50, 0x01, 0x00, 0x00, 0x17, 0x02, 0x00, 0x00, 0xCC, 0x3F, 0x00, 0x01, 0x00, 0x3F, 0x00, 0x00, 0x00, 0x00, 0x60, 0xF4, 0x01, 0x00, 0x20, 0x01, 0x00, 0x02, 0x20, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x40, 0x20, 0x00, 0x48, 0x42, 0x20, 0x00, 0x01, 0x44, 0x20, 0x00, 0x48, 0x46, 0x20, 0x00, 0x81, 0x48, 0x20, 0x00, 0x00, 0x4A, 0x20, 0x00, 0xF8, 0x4C, 0x20, 0x00, 0x00, 0x4E, 0x20, 0x38, 0x01, 0x50, 0x20, 0x30, 0xCC, 0x52, 0x20, 0x00, 0x08, 0x54, 0x20, 0x10, 0x8C, 0x56, 0x20, 0x00, 0xE0, 0x58, 0x20, 0x00, 0x50, 0x5A, 0x20, 0x00, 0x80, 0x5C, 0x20, 0x00, 0x20, 0x5E, 0x20, 0x00, 0x00, 0x00, 0x20, 0x01, 0x00, 0x08, 0x20, 0x14, 0x14, 0x0E, 0x20, 0x01, 0x00, 0x02, 0x20, 0x60, 0xC0, 0x00, 0x60, 0x0A, 0x00, 0x02, 0x20, 0x20, 0xC0, 0x00, 0x60, 0x0A, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x20, 0x01, 0x00, 0x02, 0x20, 0x20, 0x00, 0x0C, 0x20, 0x10, 0x00, 0x0E, 0x20, 0x00, 0x80, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xDA, 0x41, 0x2E, 0x80, }; u4Byte <API key> = 9120; void <API key>( IN PDM_ODM_T pDM_Odm, OUT u1Byte *pFirmware, OUT u4Byte *pFirmwareSize ) { #if (DM_ODM_SUPPORT_TYPE & (ODM_CE)) *((SIZE_PTR *)pFirmware) = (SIZE_PTR)<API key>; #else ODM_MoveMemory(pDM_Odm, pFirmware, <API key>, <API key>); #endif *pFirmwareSize = <API key>; } // <API key> u1Byte <API key>[] = { 0xf1,0x88,0x30,0x00,0x00,0x00,0x00,0x00,0x03,0x13,0x16,0x44,0xac,0x33,0x02,0x00, 0xcc,0xcc,0xcc,0xcc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x02,0x86,0xad,0x02,0xa8,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x02,0xa8,0x7b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x02,0xaf,0xea,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x02,0xa8,0x05,0x00,0x00,0x00,0x00,0x00,0x02,0xad,0xe0,0x00,0x00, 0x00,0x00,0x00,0x02,0xaf,0xe9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x02,0x87,0xa5,0x02,0x8a,0xc3,0x02,0x80,0x86,0x02,0x80,0x89,0x02,0x80,0x8c,0x02, 0xa9,0xd6,0x02,0x98,0x69,0x02,0x80,0x95,0x02,0x80,0x98,0x02,0x80,0x9b,0x02,0x80, 0x9e,0x02,0x80,0xa1,0x02,0x80,0xa4,0x02,0x80,0xa7,0x02,0x80,0xaa,0x02,0x80,0xad, 0x02,0x80,0xb0,0x02,0x80,0xb3,0x02,0x80,0xb6,0x02,0x80,0xb9,0x02,0x80,0xbc,0x02, 0x80,0xbf,0x02,0x80,0xc2,0x02,0x80,0xc5,0x02,0x80,0xc8,0x02,0x80,0xcb,0x02,0x80, 0xce,0x02,0x80,0xd1,0x02,0xb2,0xbf,0x02,0x80,0xd7,0x00,0x00,0x00,0x02,0x80,0xdd, 0x02,0x80,0xe0,0x02,0x80,0xe3,0x02,0x80,0xe6,0x02,0xa6,0xc0,0x02,0x80,0xec,0x02, 0x80,0xef,0x02,0x80,0xf2,0x02,0x80,0xf5,0x02,0x80,0xf8,0x02,0x80,0xfb,0x02,0x80, 0xfe,0x02,0x81,0x01,0x02,0x81,0x04,0x02,0x81,0x07,0x02,0x81,0x0a,0x02,0x81,0x0d, 0x02,0x81,0x10,0x02,0x81,0x13,0x02,0x81,0x16,0x02,0x81,0x19,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x02,0x9f,0x11,0x02,0x9f,0x5f,0x02,0xb0,0x37,0x02,0x9e,0xb8, 0x02,0x81,0x40,0x02,0xab,0x35,0x02,0xaf,0x3c,0x02,0x81,0x49,0x02,0x81,0x4c,0x02, 0x81,0x4f,0x02,0x81,0x52,0x02,0x81,0x55,0x02,0x81,0x58,0x02,0x81,0x5b,0x02,0x81, 0x5e,0x02,0x81,0x61,0x02,0x81,0x64,0x02,0x81,0x67,0x02,0x81,0x6a,0x02,0x81,0x6d, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x15,0xf0,0xff,0x0f,0x00,0x00,0x00,0x15,0xf0,0x0f,0x00,0x00,0x00,0x00,0x05,0xf0, 0xff,0x0f,0x00,0x00,0x00,0x05,0xf0,0x0f,0x00,0x00,0x00,0x00,0x10,0xf0,0xff,0x0f, 0x00,0x00,0x00,0x10,0xf0,0x0f,0x00,0x00,0x00,0x00,0xf5,0x0f,0x00,0x00,0x00,0x00, 0x00,0xf0,0x0f,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x0a, 0x08,0x03,0x03,0x00,0x04,0x09,0x07,0x03,0x03,0x00,0x04,0x08,0x06,0x03,0x02,0x00, 0x04,0x08,0x05,0x03,0x01,0x00,0x04,0x0d,0x0a,0x07,0x05,0x00,0x08,0x0c,0x0a,0x07, 0x04,0x00,0x08,0x0b,0x0a,0x06,0x05,0x00,0x08,0x0b,0x0a,0x05,0x03,0x00,0x08,0x0b, 0x0a,0x03,0x02,0x00,0x08,0x14,0x12,0x0c,0x04,0x00,0x10,0x14,0x12,0x09,0x04,0x00, 0x10,0x24,0x22,0x1c,0x12,0x00,0x20,0x24,0x22,0x18,0x0c,0x00,0x20,0x24,0x22,0x14, 0x06,0x00,0x20,0x24,0x22,0x0f,0x04,0x00,0x20,0x24,0x21,0x0a,0x04,0x00,0x20,0x23, 0x21,0x0c,0x04,0x00,0x20,0x23,0x1f,0x0a,0x04,0x00,0x20,0x22,0x1f,0x0f,0x04,0x00, 0x20,0x21,0x1f,0x16,0x0c,0x00,0x20,0x31,0x2f,0x20,0x14,0x00,0x30,0x31,0x2f,0x18, 0x10,0x00,0x30,0x31,0x2c,0x18,0x0c,0x00,0x30,0x31,0x2a,0x14,0x0c,0x00,0x30,0x31, 0x28,0x14,0x00,0x00,0x30,0x31,0x24,0x14,0x00,0x00,0x30,0x31,0x1e,0x14,0x00,0x00, 0x30,0x04,0x04,0x04,0x05,0x04,0x04,0x05,0x07,0x07,0x07,0x08,0x0a,0x04,0x07,0x0a, 0x0e,0x11,0x13,0x14,0x15,0x04,0x04,0x04,0x05,0x07,0x07,0x09,0x09,0x0c,0x0e,0x10, 0x12,0x05,0x06,0x07,0x0c,0x11,0x11,0x12,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x24,0x26,0x2a,0x00,0x00,0x00,0x1f,0x21,0x25,0x27,0x28,0x00,0x04,0x00, 0x04,0x00,0x08,0x00,0x10,0x00,0x18,0x00,0x24,0x00,0x30,0x00,0x48,0x00,0x60,0x00, 0x90,0x00,0xc0,0x00,0xd8,0x00,0x46,0x00,0x64,0x00,0x78,0x00,0xb4,0x01,0x04,0x01, 0x86,0x01,0xa4,0x01,0xe0,0x02,0x02,0x04,0x08,0x0c,0x12,0x18,0x24,0x30,0x48,0x60, 0x6c,0x14,0x28,0x32,0x50,0x78,0xa0,0xc8,0xf0,0x01,0x01,0x01,0x02,0x01,0x02,0x03, 0x03,0x04,0x04,0x05,0x05,0x02,0x04,0x06,0x07,0x07,0x08,0x08,0x08,0x01,0x01,0x01, 0x01,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x01,0x02,0x03,0x04,0x05,0x06,0x07, 0x08,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05, 0x05,0x05,0x04,0x03,0x02,0x19,0x06,0x04,0x02,0x00,0x18,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xc2,0xaf,0x80,0xfe,0x32,0x12,0x84,0x04,0x85,0xd0,0x0b,0x75,0xd0,0x08,0xaa,0xe0, 0xc2,0x8c,0xe5,0x8a,0x24,0x67,0xf5,0x8a,0xe5,0x8c,0x34,0x79,0xf5,0x8c,0xd2,0x8c, 0xec,0x24,0x87,0xf8,0xe6,0xbc,0x02,0x02,0x74,0xff,0xc3,0x95,0x81,0xb4,0x40,0x00, 0x40,0xce,0x79,0x03,0x78,0x80,0x16,0xe6,0x08,0x70,0x0b,0xc2,0xaf,0xe6,0x30,0xe1, 0x03,0x44,0x18,0xf6,0xd2,0xaf,0x08,0xd9,0xed,0xea,0x8b,0xd0,0x22,0xe5,0x0c,0xff, 0x23,0x24,0x81,0xf8,0x0f,0x08,0x08,0xbf,0x03,0x04,0x7f,0x00,0x78,0x81,0xe6,0x30, 0xe4,0xf2,0x00,0xe5,0x0c,0xc3,0x9f,0x50,0x20,0x05,0x0c,0x74,0x86,0x25,0x0c,0xf8, 0xe6,0xfd,0xa6,0x81,0x08,0xe6,0xae,0x0c,0xbe,0x02,0x02,0x74,0xff,0xcd,0xf8,0xe8, 0x6d,0x60,0xe0,0x08,0xe6,0xc0,0xe0,0x80,0xf6,0xe5,0x0c,0xd3,0x9f,0x40,0x27,0xe5, 0x0c,0x24,0x87,0xf8,0xe6,0xae,0x0c,0xbe,0x02,0x02,0x74,0xff,0xfd,0x18,0xe6,0xcd, 0xf8,0xe5,0x81,0x6d,0x60,0x06,0xd0,0xe0,0xf6,0x18,0x80,0xf5,0xe5,0x0c,0x24,0x86, 0xc8,0xf6,0x15,0x0c,0x80,0xd3,0xe5,0x0c,0x23,0x24,0x81,0xf8,0x7f,0x04,0xc2,0xaf, 0xe6,0x30,0xe0,0x03,0x10,0xe2,0x0c,0x7f,0x00,0x30,0xe1,0x07,0x30,0xe3,0x04,0x7f, 0x08,0x54,0xf4,0x54,0x7c,0xc6,0xd2,0xaf,0x54,0x80,0x42,0x07,0x22,0x78,0x86,0xa6, 0x81,0x74,0x02,0x60,0x06,0xff,0x08,0x76,0xff,0xdf,0xfb,0x7f,0x03,0xe4,0x78,0x80, 0xf6,0x08,0xf6,0x08,0xdf,0xfa,0x78,0x81,0x76,0x30,0x90,0x87,0x9a,0x74,0x01,0x93, 0xc0,0xe0,0xe4,0x93,0xc0,0xe0,0x43,0x89,0x01,0x75,0x8a,0x60,0x75,0x8c,0x79,0xd2, 0x8c,0xd2,0xaf,0x22,0x02,0xef,0xd3,0x94,0x02,0x40,0x03,0x7f,0xff,0x22,0x74,0x81, 0x2f,0x2f,0xf8,0xe6,0x20,0xe5,0xf4,0xc2,0xaf,0xe6,0x44,0x30,0xf6,0xd2,0xaf,0xae, 0x0c,0xee,0xc3,0x9f,0x50,0x21,0x0e,0x74,0x86,0x2e,0xf8,0xe6,0xf9,0x08,0xe6,0x18, 0xbe,0x02,0x02,0x74,0xff,0xfd,0xed,0x69,0x60,0x09,0x09,0xe7,0x19,0x19,0xf7,0x09, 0x09,0x80,0xf3,0x16,0x16,0x80,0xda,0xee,0xd3,0x9f,0x40,0x04,0x05,0x81,0x05,0x81, 0xee,0xd3,0x9f,0x40,0x22,0x74,0x86,0x2e,0xf8,0x08,0xe6,0xf9,0xee,0xb5,0x0c,0x02, 0xa9,0x81,0x18,0x06,0x06,0xe6,0xfd,0xed,0x69,0x60,0x09,0x19,0x19,0xe7,0x09,0x09, 0xf7,0x19,0x80,0xf3,0x1e,0x80,0xd9,0xef,0x24,0x86,0xf8,0xe6,0x04,0xf8,0xef,0x2f, 0x04,0x90,0x87,0x9a,0x93,0xf6,0x08,0xef,0x2f,0x93,0xf6,0x7f,0x00,0x22,0xef,0xd3, 0x94,0x02,0x40,0x03,0x7f,0xff,0x22,0xef,0x23,0x24,0x81,0xf8,0xe6,0x30,0xe5,0xf4, 0xc2,0xaf,0xe6,0x54,0x8c,0xf6,0xd2,0xaf,0xe5,0x0c,0xb5,0x07,0x0a,0x74,0x86,0x2f, 0xf8,0xe6,0xf5,0x81,0x02,0x84,0x4d,0x50,0x2e,0x74,0x87,0x2f,0xf8,0xe6,0xbf,0x02, 0x02,0x74,0xff,0xfd,0x18,0xe6,0xf9,0x74,0x86,0x2f,0xf8,0xfb,0xe6,0xfc,0xe9,0x6c, 0x60,0x08,0xa8,0x05,0xe7,0xf6,0x1d,0x19,0x80,0xf4,0xa8,0x03,0xa6,0x05,0x1f,0xe5, 0x0c,0xb5,0x07,0xe3,0x7f,0x00,0x22,0x74,0x87,0x2f,0xf8,0xe6,0xfd,0x18,0x86,0x01, 0x0f,0x74,0x86,0x2f,0xf8,0xa6,0x01,0x08,0x86,0x04,0xe5,0x0c,0xb5,0x07,0x02,0xac, 0x81,0xed,0x6c,0x60,0x08,0x0d,0x09,0xa8,0x05,0xe6,0xf7,0x80,0xf4,0xe5,0x0c,0xb5, 0x07,0xde,0x89,0x81,0x7f,0x00,0x22,0xef,0xd3,0x94,0x02,0x40,0x03,0x7f,0xff,0x22, 0xef,0x23,0x24,0x81,0xf8,0xc2,0xaf,0xe6,0x30,0xe5,0x05,0x30,0xe0,0x02,0xd2,0xe4, 0xd2,0xe2,0xc6,0xd2,0xaf,0x7f,0x00,0x30,0xe2,0x01,0x0f,0x02,0x84,0x4c,0x8f,0xf0, 0xe4,0xff,0xfe,0xe5,0x0c,0x23,0x24,0x80,0xf8,0xc2,0xa9,0x30,0xf7,0x0d,0x7f,0x08, 0xe6,0x60,0x0b,0x2d,0xf6,0x60,0x32,0x50,0x30,0x80,0x07,0x30,0xf1,0x06,0xed,0xf6, 0x60,0x27,0x7e,0x02,0x08,0x30,0xf0,0x10,0xc2,0xaf,0xe6,0x10,0xe7,0x25,0x0e,0x30, 0xe2,0x0c,0xd2,0xaf,0x7f,0x04,0x80,0x14,0xc2,0xaf,0xe6,0x10,0xe7,0x15,0x54,0xec, 0x4e,0xf6,0xd2,0xaf,0xd2,0xa9,0x02,0x84,0x4d,0x7f,0x08,0x08,0xef,0x44,0x83,0xf4, 0xc2,0xaf,0x56,0xc6,0xd2,0xaf,0xd2,0xa9,0x54,0x80,0x4f,0xff,0x22,0x02,0x86,0xeb, 0x02,0x84,0xdd,0xe4,0x93,0xa3,0xf8,0xe4,0x93,0xa3,0x40,0x03,0xf6,0x80,0x01,0xf2, 0x08,0xdf,0xf4,0x80,0x29,0xe4,0x93,0xa3,0xf8,0x54,0x07,0x24,0x0c,0xc8,0xc3,0x33, 0xc4,0x54,0x0f,0x44,0x20,0xc8,0x83,0x40,0x04,0xf4,0x56,0x80,0x01,0x46,0xf6,0xdf, 0xe4,0x80,0x0b,0x01,0x02,0x04,0x08,0x10,0x20,0x40,0x80,0x90,0x87,0xa0,0xe4,0x7e, 0x01,0x93,0x60,0xbc,0xa3,0xff,0x54,0x3f,0x30,0xe5,0x09,0x54,0x1f,0xfe,0xe4,0x93, 0xa3,0x60,0x01,0x0e,0xcf,0x54,0xc0,0x25,0xe0,0x60,0xa8,0x40,0xb8,0xe4,0x93,0xa3, 0xfa,0xe4,0x93,0xa3,0xf8,0xe4,0x93,0xa3,0xc8,0xc5,0x82,0xc8,0xca,0xc5,0x83,0xca, 0xf0,0xa3,0xc8,0xc5,0x82,0xc8,0xca,0xc5,0x83,0xca,0xdf,0xe9,0xde,0xe7,0x80,0xbe, 0xef,0x5b,0xff,0xee,0x5a,0xfe,0xed,0x59,0xfd,0xec,0x58,0xfc,0x22,0xef,0x4b,0xff, 0xee,0x4a,0xfe,0xed,0x49,0xfd,0xec,0x48,0xfc,0x22,0xe0,0xfc,0xa3,0xe0,0xfd,0xa3, 0xe0,0xfe,0xa3,0xe0,0xff,0x22,0xe0,0xf8,0xa3,0xe0,0xf9,0xa3,0xe0,0xfa,0xa3,0xe0, 0xfb,0x22,0xe0,0xfb,0xa3,0xe0,0xfa,0xa3,0xe0,0xf9,0x22,0xeb,0xf0,0xa3,0xea,0xf0, 0xa3,0xe9,0xf0,0x22,0xd0,0x83,0xd0,0x82,0xf8,0xe4,0x93,0x70,0x12,0x74,0x01,0x93, 0x70,0x0d,0xa3,0xa3,0x93,0xf8,0x74,0x01,0x93,0xf5,0x82,0x88,0x83,0xe4,0x73,0x74, 0x02,0x93,0x68,0x60,0xef,0xa3,0xa3,0xa3,0x80,0xdf,0xa0,0x9d,0xa7,0x9f,0x96,0x66, 0x41,0x92,0x9d,0x00,0x00,0x90,0x92,0x9c,0xef,0xf0,0x7f,0x02,0xd1,0x27,0x90,0x84, 0xc1,0xe0,0xff,0x90,0x92,0x9c,0xe0,0xfe,0xef,0x4e,0x90,0x84,0xc1,0xf0,0x22,0x90, 0x92,0x10,0x74,0x12,0xf0,0x90,0x92,0x1e,0x74,0x05,0xf0,0x90,0x92,0x12,0xef,0xf0, 0xa3,0xed,0xf0,0xa3,0xeb,0xf0,0x90,0x92,0x0e,0xe0,0x90,0x92,0x15,0xf0,0x90,0x92, 0x0f,0xe0,0x90,0x92,0x16,0xf0,0x7b,0x01,0x7a,0x92,0x79,0x10,0x12,0x5e,0x10,0x7f, 0x04,0x80,0xb2,0x90,0x02,0x09,0xe0,0xf5,0x5b,0x12,0x02,0xf6,0x25,0x5b,0x90,0x84, 0xc6,0x31,0xcd,0x25,0x5b,0x90,0x84,0xc7,0x51,0x75,0x25,0x5b,0x90,0x84,0xc8,0x51, 0x84,0x25,0x5b,0x90,0x84,0xc9,0xf0,0x90,0x00,0x04,0x12,0x03,0x0f,0x25,0x5b,0x90, 0x84,0xca,0xf0,0x90,0x00,0x05,0x12,0x03,0x0f,0x25,0x5b,0x90,0x84,0xcb,0x11,0x37, 0x25,0x5b,0x90,0x84,0xcc,0xf0,0x22,0xf0,0x90,0x00,0x06,0x02,0x03,0x0f,0xf1,0xd7, 0xff,0x54,0x7f,0x90,0x85,0xc5,0xf0,0xef,0xb1,0x0e,0xa3,0x31,0xcd,0xff,0x54,0xf0, 0xc4,0x54,0x0f,0xfe,0x90,0x85,0xc3,0xe0,0x54,0xf0,0x4e,0x51,0x84,0x54,0x01,0x25, 0xe0,0xfe,0x90,0x85,0xc1,0xe0,0x54,0xfd,0x4e,0xf0,0xef,0x54,0x0f,0xc4,0x54,0xf0, 0xff,0x91,0xed,0x51,0x74,0x90,0x85,0xc4,0x11,0x37,0x30,0xe0,0x51,0xc3,0x13,0x54, 0x07,0xff,0xc3,0x94,0x04,0x90,0x85,0xd8,0x50,0x04,0xef,0xf0,0x80,0x29,0x74,0x03, 0x11,0xf2,0xe9,0x24,0x06,0xf9,0xe4,0x3a,0xfa,0x12,0x02,0xf6,0xff,0x74,0x03,0x24, 0xfd,0xfe,0xef,0xc4,0x54,0x0f,0xfd,0xef,0x54,0x0f,0xff,0xed,0x2e,0x54,0x0f,0xfe, 0xc4,0x54,0xf0,0x4f,0x12,0x03,0x3c,0x11,0xf3,0x11,0x38,0xc4,0x54,0x0f,0xff,0xc3, 0x94,0x04,0x90,0x85,0xcd,0x50,0x05,0x74,0x04,0xf0,0x80,0x02,0xef,0xf0,0x11,0xf3, 0x90,0x00,0x04,0x12,0x03,0x0f,0xfd,0x7f,0x02,0x12,0x57,0x82,0x11,0xf3,0x12,0x71, 0xcb,0x12,0xae,0xa2,0xf0,0x90,0x85,0xc5,0x12,0xb3,0x8a,0x91,0xec,0x90,0x01,0xbe, 0xf0,0x22,0xf0,0x90,0x92,0x05,0x02,0x87,0x62,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0, 0xf1,0xd7,0x20,0xe0,0x05,0x12,0x9e,0xea,0x21,0xc7,0x90,0x87,0x4a,0x74,0x05,0x11, 0xf2,0x91,0xfc,0x90,0x86,0x75,0x31,0xdc,0x54,0x04,0xfd,0xef,0x54,0xfb,0x31,0xd4, 0xf1,0xbf,0x31,0xea,0x54,0x10,0xfd,0xef,0x54,0xef,0x31,0xd4,0xf1,0xc7,0x31,0xea, 0x54,0x40,0xfd,0xef,0x54,0xbf,0x31,0xd4,0xf1,0xcf,0x31,0xcd,0x54,0x80,0xff,0x90, 0x86,0x76,0xe0,0x54,0x7f,0x4f,0xf0,0x12,0x02,0xf6,0x13,0x13,0x54,0x3f,0x30,0xe0, 0x07,0x90,0x06,0x90,0xe0,0x44,0x04,0xf0,0x11,0xf3,0x12,0x02,0xf6,0x13,0x13,0x13, 0x54,0x1f,0x30,0xe0,0x07,0x90,0x06,0x90,0xe0,0x44,0x08,0xf0,0x90,0x84,0xc5,0xe0, 0xb4,0x02,0x09,0x90,0x86,0x76,0xe0,0xb1,0x0e,0x20,0xe0,0x3d,0x31,0xce,0x54,0x7f, 0xff,0x90,0x86,0x76,0xe0,0x54,0x80,0x51,0x74,0x90,0x86,0x77,0x51,0x84,0xff,0x54, 0x01,0xfe,0x90,0x86,0x78,0x91,0xf4,0x54,0xfe,0xff,0xee,0x54,0x01,0x4f,0xf0,0x90, 0x86,0x76,0xe0,0x54,0x7f,0xff,0x90,0x86,0x75,0xe0,0xfe,0xc4,0x13,0x54,0x07,0x7d, 0x00,0x20,0xe0,0x02,0x7d,0x01,0x12,0x54,0x9f,0x90,0x84,0xc5,0xe0,0xb4,0x01,0x07, 0x90,0xfe,0x10,0xe0,0x44,0x04,0xf0,0xd0,0xd0,0x92,0xaf,0x22,0x4f,0xf0,0x90,0x00, 0x01,0x02,0x03,0x0f,0x4d,0xff,0x90,0x86,0x75,0xf0,0xee,0x22,0xe0,0x54,0xfe,0x4e, 0xfe,0xf0,0xef,0x54,0x02,0xff,0xee,0x54,0xfd,0x4f,0xff,0xf0,0x12,0x02,0xf6,0xfe, 0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x91,0xfc,0x90,0x86,0x72,0x31,0xdc,0x54, 0x04,0xfd,0xef,0x54,0xfb,0x51,0x7c,0xf1,0xbf,0x31,0xea,0x54,0x10,0xfd,0xef,0x54, 0xef,0x51,0x7c,0xf1,0xc7,0x31,0xea,0x54,0x40,0xfd,0xef,0x54,0xbf,0x51,0x7c,0xf1, 0xcf,0x51,0x75,0x54,0x01,0xff,0x90,0x86,0x74,0xe0,0x54,0xfe,0x31,0xcc,0xff,0x54, 0x01,0xfe,0x90,0x86,0x73,0x91,0xf4,0x54,0x04,0xff,0xee,0x54,0xfb,0x4f,0xf0,0x90, 0x86,0x72,0xe0,0xc3,0x13,0x54,0x01,0xff,0x12,0x7c,0x72,0x91,0xe5,0x54,0x01,0xff, 0x12,0x7c,0x7e,0x91,0xe5,0x13,0x54,0x01,0xff,0x12,0x66,0xda,0x12,0xa6,0x8d,0x54, 0x01,0xff,0x12,0x9d,0x77,0x90,0x86,0x72,0xe0,0x54,0x01,0xff,0x12,0x9e,0x47,0xd0, 0xd0,0x92,0xaf,0x22,0x4f,0xf0,0x90,0x00,0x02,0x02,0x03,0x0f,0x4d,0xff,0x90,0x86, 0x72,0xf0,0xee,0x22,0xf0,0x90,0x00,0x03,0x02,0x03,0x0f,0x51,0x76,0xff,0x30,0xe0, 0x1c,0x12,0x02,0xf6,0x90,0x86,0x6d,0x31,0xcd,0x90,0x86,0x6e,0xf0,0xef,0x54,0xfe, 0xff,0xa3,0xe0,0x54,0x01,0x4f,0x51,0x84,0x90,0x86,0x70,0xf0,0x22,0x90,0x86,0x6d, 0x74,0x05,0xf0,0xa3,0x74,0x0a,0xf0,0xa3,0xe0,0x54,0x01,0x44,0x1e,0xf0,0xa3,0x74, 0x05,0xf0,0x22,0x90,0x92,0x02,0x12,0x87,0x6b,0x90,0x92,0x01,0xef,0xf0,0x12,0x87, 0x74,0x8b,0x14,0x00,0x8b,0x1d,0x01,0x8b,0x25,0x02,0x8b,0x2d,0x03,0x8b,0x36,0x04, 0x8b,0x3f,0x12,0x8b,0x48,0x14,0x8b,0x51,0x20,0x8b,0x59,0x21,0x8b,0x61,0x23,0x8b, 0x6a,0x25,0x8b,0x73,0x27,0x8b,0x7b,0x40,0x8b,0x84,0x42,0x8b,0xd0,0x47,0x8b,0x95, 0x80,0x8b,0x8d,0x81,0x8b,0x9d,0x82,0x8b,0xa6,0x83,0x8b,0xaf,0x84,0x8b,0xb8,0x88, 0x00,0x00,0x8b,0xc1,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x87,0xf3,0x90,0x92,0x02, 0x12,0x87,0x62,0x81,0x7e,0x90,0x92,0x02,0x12,0x87,0x62,0x81,0x43,0x90,0x92,0x02, 0x12,0x87,0x62,0x02,0x78,0x94,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x6b,0x03,0x90, 0x92,0x02,0x12,0x87,0x62,0x02,0x90,0x04,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x90, 0x9c,0x90,0x92,0x02,0x12,0x87,0x62,0x01,0x3e,0x90,0x92,0x02,0x12,0x87,0x62,0x41, 0x8b,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x90,0xab,0x90,0x92,0x02,0x12,0x87,0x62, 0x02,0x90,0xb3,0x90,0x92,0x02,0x12,0x87,0x62,0x80,0x56,0x90,0x92,0x02,0x12,0x87, 0x62,0x02,0x39,0x73,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x4e,0x29,0x90,0x92,0x02, 0x12,0x87,0x62,0x21,0xf1,0x90,0x92,0x02,0x12,0x87,0x62,0x01,0xf9,0x90,0x92,0x02, 0x12,0x87,0x62,0x02,0x7a,0xfe,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x6f,0x63,0x90, 0x92,0x02,0x12,0x87,0x62,0x02,0x6f,0xa4,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x7b, 0xd0,0x90,0x01,0xc0,0xe0,0x44,0x01,0xf0,0x90,0x92,0x01,0xe0,0x90,0x01,0xc2,0xf0, 0x22,0x91,0xfc,0x90,0x92,0x7b,0x91,0xf4,0x54,0x02,0xff,0xee,0x54,0xfd,0x31,0xcc, 0x90,0x92,0x7c,0x51,0x75,0x90,0x92,0x7d,0xf0,0x12,0xaf,0xdf,0x90,0x92,0x7b,0xe0, 0x54,0x01,0xff,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xef,0x64,0x01,0x70,0x1a,0xb1, 0x04,0x60,0x0a,0x91,0x3c,0x12,0x7b,0xfd,0x12,0xaf,0xcc,0x80,0x07,0x91,0x3c,0x12, 0x7b,0xbf,0xf1,0xf6,0x12,0x7a,0x8a,0x80,0x17,0xb1,0x04,0x60,0x07,0x91,0x3c,0x12, 0x7b,0xfd,0x80,0x05,0x91,0x3c,0x12,0x7b,0xbf,0xf1,0x92,0xf1,0x99,0x12,0x7a,0xb9, 0xd0,0xd0,0x92,0xaf,0x22,0x90,0x05,0x73,0xf0,0x90,0x01,0x3f,0x74,0x10,0xf0,0xfd, 0x7f,0x03,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x8b,0x5b,0x8a,0x5c,0x89,0x5d, 0x12,0x02,0xf6,0xff,0x90,0x92,0x7a,0xf0,0xbf,0x01,0x0c,0x31,0xce,0x64,0x01,0x60, 0x18,0x7d,0x13,0x7f,0x6f,0x80,0x0f,0xab,0x5b,0xaa,0x5c,0xa9,0x5d,0x31,0xce,0x64, 0x01,0x60,0x06,0xe4,0xfd,0xff,0x12,0x9e,0xb8,0xd0,0xd0,0x92,0xaf,0x22,0x8b,0x5b, 0x8a,0x5c,0x89,0x5d,0x31,0xce,0xff,0xf5,0x5f,0x12,0x02,0xf6,0xfe,0xc3,0x13,0x30, 0xe0,0x06,0x51,0x76,0xf5,0x60,0x80,0x02,0x8f,0x60,0x85,0x5f,0x5e,0xe5,0x5e,0xd3, 0x95,0x60,0x50,0x26,0xab,0x5b,0xaa,0x5c,0xa9,0x5d,0x12,0x02,0xf6,0x54,0x01,0xfd, 0xaf,0x5e,0x12,0x6e,0x5f,0xaf,0x5e,0x12,0x77,0x39,0xef,0xaf,0x5e,0x70,0x05,0x12, 0x90,0xbb,0x80,0x02,0xf1,0xa7,0x05,0x5e,0x80,0xd3,0xe5,0x5f,0x70,0x16,0xff,0x12, 0x77,0x39,0xef,0x70,0x0f,0x12,0x9f,0x11,0x12,0x79,0x61,0x12,0xaf,0xc4,0x54,0xbf, 0xf0,0x54,0x7f,0xf0,0x22,0x90,0x86,0x72,0xe0,0x13,0x13,0x22,0xf0,0x90,0x85,0xc3, 0xe0,0x54,0x0f,0x22,0xe0,0x54,0xfe,0x4e,0xfe,0xf0,0xef,0x22,0x12,0x02,0xf6,0xff, 0x54,0x01,0xfe,0x22,0x90,0x92,0x7d,0xe0,0x90,0x01,0x3f,0x22,0xe0,0xff,0xc4,0x13, 0x13,0x13,0x54,0x01,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xd1,0x6c,0x20,0xe6, 0x02,0xc1,0x2b,0x90,0x00,0x8c,0xe0,0x90,0x92,0x90,0xf0,0x7f,0x8d,0x12,0x7b,0x51, 0x90,0x92,0x91,0xef,0xf0,0x90,0x00,0x8e,0xe0,0x90,0x92,0x92,0xf0,0x90,0x92,0x91, 0xe0,0x24,0xfc,0x60,0x0f,0x24,0x03,0x60,0x02,0xc1,0x24,0x90,0x92,0x90,0xe0,0xff, 0xd1,0x73,0xc1,0x24,0x90,0x92,0x90,0xe0,0x24,0xdc,0x12,0x97,0xcc,0xfb,0xe4,0xfd, 0xff,0xd1,0x59,0x75,0xf0,0x12,0xd1,0x64,0x13,0x13,0x54,0x03,0xfb,0x0d,0xe4,0xff, 0xd1,0x59,0x75,0xf0,0x12,0xd1,0x64,0xb1,0x0e,0xfb,0x0d,0xe4,0xff,0xd1,0x59,0x75, 0xf0,0x12,0xd1,0x64,0xc4,0x54,0x03,0xfb,0x0d,0xe4,0xff,0xd1,0x59,0x12,0x95,0xe7, 0xfb,0xe4,0xfd,0x0f,0xd1,0x59,0x75,0xf0,0x12,0x90,0x89,0x3d,0x12,0x05,0x28,0xd1, 0x56,0xf1,0xe9,0xc4,0x13,0x54,0x01,0xfb,0x0d,0x7f,0x01,0xd1,0x59,0xf1,0xe9,0x54, 0x1f,0xd1,0x57,0x12,0x97,0xe0,0xe0,0xfb,0xe4,0xfd,0x0f,0xd1,0x59,0x75,0xf0,0x08, 0xa4,0x24,0x01,0xf5,0x82,0xe4,0x34,0x82,0xd1,0x54,0x75,0xf0,0x08,0xa4,0x24,0x02, 0xf5,0x82,0xe4,0x34,0x82,0xd1,0x54,0x75,0xf0,0x08,0xa4,0x24,0x03,0xf5,0x82,0xe4, 0x34,0x82,0xd1,0x54,0x75,0xf0,0x08,0xa4,0x24,0x04,0xf5,0x82,0xe4,0x34,0x82,0xf5, 0x83,0xe0,0xfb,0xe4,0xfd,0x0f,0xd1,0x59,0x75,0xf0,0x08,0xa4,0x24,0x05,0xf5,0x82, 0xe4,0x34,0x82,0xd1,0x54,0x75,0xf0,0x08,0xa4,0x24,0x06,0xf5,0x82,0xe4,0x34,0x82, 0xd1,0x54,0x75,0xf0,0x08,0xa4,0x24,0x07,0xf5,0x82,0xe4,0x34,0x82,0xf5,0x83,0xe0, 0xfb,0x0d,0xd1,0x30,0xd1,0x6c,0x30,0xe0,0x02,0xf1,0xa0,0xd0,0xd0,0x92,0xaf,0x22, 0xef,0x70,0x04,0x74,0xf0,0x80,0x16,0xef,0xb4,0x01,0x04,0x74,0xf4,0x80,0x0e,0xef, 0xb4,0x02,0x04,0x74,0xf8,0x80,0x06,0xef,0xb4,0x03,0x08,0x74,0xfc,0x2d,0x12,0xb0, 0xb2,0xeb,0xf0,0x22,0xf5,0x83,0xe0,0xfb,0x0d,0xd1,0x30,0x90,0x92,0x90,0xe0,0x22, 0x75,0xf0,0x12,0xec,0x90,0x89,0x3f,0x12,0x05,0x28,0xe0,0x22,0x7f,0x8f,0x12,0x7b, 0x51,0xef,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x90,0x92,0x9a,0xef,0xf0,0xd1, 0x6c,0x30,0xe6,0x38,0x7f,0x8d,0x12,0x7b,0x51,0xef,0x64,0x01,0x70,0x2e,0x90,0x92, 0x9b,0xf0,0x90,0x92,0x9b,0xe0,0xfd,0x90,0x92,0x9a,0xe0,0x12,0x94,0x78,0xe5,0x82, 0x2d,0x12,0x97,0xc3,0xfb,0xe4,0xff,0xd1,0x30,0x90,0x92,0x9b,0xe0,0x04,0xf0,0xe0, 0xc3,0x94,0x10,0x40,0xdd,0xd1,0x6c,0x30,0xe0,0x02,0xf1,0xa0,0xd0,0xd0,0x92,0xaf, 0x22,0x12,0xb3,0x7c,0xce,0xc3,0x13,0xce,0x13,0xd8,0xf9,0xff,0x12,0xb3,0xa1,0x12, 0xac,0x0e,0x64,0x01,0x60,0x02,0xe1,0x91,0x90,0x85,0xc5,0xe0,0x70,0x02,0xe1,0x91, 0xf1,0xe0,0x64,0x01,0x70,0x22,0x90,0x06,0xab,0xe0,0x90,0x85,0xcc,0xf0,0x90,0x06, 0xaa,0xe0,0x90,0x85,0xcb,0xf0,0xa3,0xe0,0xff,0x70,0x08,0x90,0x85,0xcb,0xe0,0xfe, 0xff,0x80,0x00,0x90,0x85,0xcc,0xef,0xf0,0x12,0x2c,0x26,0xe4,0x90,0x85,0xce,0xf0, 0x90,0x85,0xd1,0xa3,0xe0,0x90,0x05,0x58,0xf0,0x12,0xad,0x6b,0x12,0xad,0x78,0x54, 0xef,0xf0,0xf1,0xe0,0x24,0xfd,0x50,0x02,0x80,0x03,0x12,0xac,0x8b,0xf1,0xaf,0x13, 0x54,0x1f,0x30,0xe0,0x55,0xef,0xc4,0x13,0x13,0x54,0x03,0x20,0xe0,0x23,0xf1,0xb7, 0x6f,0x70,0x47,0x90,0x85,0xc2,0xe0,0x44,0x40,0xf0,0x90,0x85,0xcb,0xe0,0x91,0x35, 0x12,0x7b,0xfd,0xf1,0xfd,0x7d,0x02,0x7f,0x02,0x12,0x7c,0x41,0x12,0xae,0xe3,0x80, 0x29,0x12,0xaf,0xbc,0x64,0x01,0x70,0x22,0xf1,0xb7,0xfe,0x6f,0x60,0x1c,0x90,0x05, 0x73,0xe0,0xff,0xee,0x6f,0x60,0x13,0xf1,0xaf,0x54,0x3f,0x30,0xe0,0x0c,0xef,0x54, 0xbf,0x91,0x38,0x12,0x7b,0xbf,0xf1,0x99,0xf1,0x92,0x90,0x85,0xc2,0xe0,0x44,0x04, 0xf0,0x22,0x7d,0x02,0x7f,0x02,0x02,0x7c,0xa9,0x7d,0x01,0x7f,0x02,0x02,0x7c,0xa9, 0xe4,0xfd,0x7f,0x8d,0x02,0x7b,0x3e,0x12,0x90,0xc2,0xe0,0x54,0xfb,0xf0,0x22,0x90, 0x85,0xc2,0xe0,0xff,0x13,0x13,0x22,0x90,0x85,0xcb,0xe0,0xff,0xa3,0xe0,0x22,0x54, 0x08,0xfe,0xef,0x54,0xf7,0x4e,0x22,0x54,0x20,0xfe,0xef,0x54,0xdf,0x4e,0x22,0x54, 0x80,0xfe,0xef,0x54,0x7f,0x4e,0x22,0x90,0x92,0x05,0x12,0x87,0x6b,0x02,0x02,0xf6, 0x90,0x85,0xc3,0xe0,0xff,0xc4,0x54,0x0f,0x22,0x75,0xf0,0x12,0x90,0x89,0x3e,0x12, 0x05,0x28,0xe0,0x22,0xa1,0x15,0x7d,0x02,0x7f,0x02,0x12,0x7c,0x41,0x7d,0x01,0x7f, 0x02,0x02,0x7c,0x41,0x12,0x02,0xf6,0xff,0x90,0x92,0x79,0xf0,0xbf,0x01,0x07,0x11, 0x17,0xe4,0x90,0x92,0x79,0xf0,0x22,0x11,0x95,0x7f,0xf5,0x7e,0x01,0x12,0x64,0x37, 0xbf,0x01,0x06,0x90,0x92,0x05,0xe0,0xa3,0xf0,0x11,0x95,0x7f,0xf6,0x7e,0x01,0x12, 0x64,0x37,0xbf,0x01,0x08,0x90,0x92,0x05,0xe0,0x90,0x92,0x07,0xf0,0x11,0x95,0x7f, 0xf4,0x7e,0x01,0x12,0x64,0x37,0xbf,0x01,0x08,0x90,0x92,0x05,0xe0,0x90,0x92,0x08, 0xf0,0x11,0x95,0x7f,0xf3,0x7e,0x01,0x12,0x64,0x37,0xbf,0x01,0x08,0x90,0x92,0x05, 0xe0,0x90,0x92,0x09,0xf0,0x11,0x95,0x7f,0xf2,0x7e,0x01,0x12,0x64,0x37,0xbf,0x01, 0x08,0x90,0x92,0x05,0xe0,0x90,0x92,0x0a,0xf0,0x90,0x92,0x06,0xe0,0xff,0xa3,0xe0, 0xfd,0xa3,0xe0,0xfb,0xa3,0xe0,0x90,0x92,0x0e,0xf0,0x90,0x92,0x0a,0xe0,0x90,0x92, 0x0f,0xf0,0x02,0x87,0xbf,0x7b,0x01,0x7a,0x92,0x79,0x05,0x22,0x12,0x02,0xf6,0x54, 0x01,0xff,0x90,0x92,0x80,0xe0,0x54,0xfe,0x4f,0xf0,0x22,0x12,0x02,0xf6,0x90,0x85, 0xd0,0xf0,0x22,0x12,0x02,0xf6,0x90,0x86,0x71,0xf0,0x22,0x11,0xc2,0xe0,0x44,0x04, 0xf0,0x22,0x8f,0x61,0xef,0xc4,0x54,0xf0,0x24,0x05,0xf5,0x82,0xe4,0x34,0x81,0xf5, 0x83,0x22,0xe4,0xf5,0x62,0x90,0x85,0xbb,0xe0,0xff,0xe5,0x62,0xc3,0x9f,0x40,0x02, 0x61,0x72,0xe5,0x62,0x13,0x13,0x13,0x54,0x1f,0x90,0x92,0x2f,0xf0,0xe5,0x62,0x54, 0x07,0xa3,0xf0,0x90,0x04,0xa0,0xe0,0xff,0xa3,0xe0,0xfe,0xef,0x64,0x01,0x70,0x2e, 0xe5,0x62,0x6e,0x70,0x29,0xa3,0xe0,0xf5,0x63,0xa3,0xe0,0x90,0x92,0x2e,0xf0,0xe5, 0x62,0x91,0x78,0xe5,0x63,0xf0,0xe5,0x62,0x11,0xc5,0xe0,0x54,0xfc,0xff,0x90,0x92, 0x2e,0xe0,0x54,0x03,0x4f,0xff,0xe5,0x62,0x11,0xc5,0xef,0xf0,0x61,0x6e,0xaf,0x62, 0x12,0x77,0x39,0xef,0x70,0x02,0x61,0x6e,0x75,0xf0,0x12,0xe5,0x62,0x12,0x8e,0x64, 0x12,0x8d,0x0e,0x30,0xe0,0x02,0x61,0x6e,0x90,0x92,0x2f,0xe0,0x24,0x75,0xf5,0x82, 0xe4,0x34,0x8f,0xf5,0x83,0xe0,0xfd,0x7c,0x00,0x90,0x92,0x30,0xe0,0xd1,0x5d,0x80, 0x05,0xc3,0x33,0xce,0x33,0xce,0xd8,0xf9,0xff,0xee,0x5c,0xfe,0xef,0x5d,0x4e,0x60, 0x02,0x61,0x6e,0xd1,0x16,0xfe,0xa3,0xe0,0x4e,0x70,0x06,0xd1,0x09,0x70,0x02,0x61, 0x6e,0xe5,0x62,0x75,0xf0,0x12,0xa4,0x24,0x44,0xf9,0x74,0x89,0x35,0xf0,0xfa,0x7b, 0x01,0x90,0x92,0x28,0x12,0x87,0x6b,0xd1,0x16,0xf5,0x67,0xa3,0xe0,0xf5,0x68,0xd1, 0x09,0xff,0x90,0x92,0x2b,0xd1,0x54,0xe5,0x62,0xb1,0xea,0x90,0x92,0x2d,0xf0,0xfd, 0x75,0xf0,0x12,0xe5,0x62,0x12,0x8e,0x64,0xfe,0x13,0x13,0x54,0x03,0x90,0x92,0x2e, 0xf0,0xe5,0x62,0x91,0x78,0xe0,0xf5,0x63,0x54,0x7f,0xf5,0x64,0xd3,0x9d,0x40,0x16, 0x90,0x92,0x2d,0xe0,0xf5,0x64,0xe5,0x63,0x30,0xe7,0x07,0xe5,0x64,0x44,0x80,0xff, 0x80,0x02,0xaf,0x64,0x8f,0x63,0xe5,0x64,0x90,0x83,0x09,0x93,0xff,0x74,0xdc,0x25, 0x62,0xf1,0xcc,0xc3,0x9f,0xe5,0x64,0x40,0x07,0x90,0x82,0xe1,0x93,0xff,0x80,0x05, 0x90,0x82,0xf5,0x93,0xff,0xd1,0x37,0x12,0x87,0x6b,0x74,0x7c,0x25,0x62,0xf5,0x82, 0xe4,0x34,0x90,0xf5,0x83,0xe0,0xc3,0x94,0x05,0x40,0x02,0x61,0x64,0xe5,0x63,0x30, 0xe7,0x04,0x05,0x69,0x05,0x69,0xe5,0x69,0xd3,0x94,0x1a,0xaf,0x69,0x40,0x02,0x7f, 0x1a,0xd1,0x37,0x12,0x87,0x6b,0xc3,0xe5,0x68,0x94,0x0f,0xe5,0x67,0x94,0x00,0x50, 0x72,0x91,0x6c,0xff,0x90,0x92,0x2c,0xe0,0x2f,0xff,0x90,0x92,0x2b,0xe0,0x35,0xf0, 0xfe,0xb1,0xce,0xff,0xee,0x35,0xf0,0xfe,0x90,0x00,0x04,0x12,0x04,0x18,0x2f,0xfd, 0xee,0x35,0xf0,0xb1,0xf2,0xd3,0xed,0x9f,0xec,0x9e,0x40,0x04,0x71,0x7f,0x61,0x5f, 0x90,0x92,0x28,0x12,0x87,0x62,0x12,0x03,0xed,0x65,0x68,0x70,0x04,0xe5,0xf0,0x65, 0x67,0x75,0xf0,0x12,0x70,0x23,0xe5,0x62,0x12,0x8f,0xec,0xd1,0xcb,0xfe,0xef,0x54, 0x3f,0xff,0xee,0x04,0x54,0x03,0xfe,0xc4,0x33,0x33,0x54,0xc0,0x4f,0xf0,0xe4,0xfd, 0xaf,0x62,0x91,0x85,0x75,0xf0,0x12,0x80,0x00,0xe5,0x62,0x12,0x8f,0xec,0x54,0x3f, 0xf0,0x61,0x5f,0xe5,0x62,0x70,0x42,0x91,0x6c,0xff,0xae,0xf0,0xb1,0xce,0xfd,0xe5, 0xf0,0x3e,0xb1,0xf2,0xc3,0xed,0x9f,0xec,0x9e,0x50,0x08,0x90,0x90,0xdc,0x74,0x01, 0xf0,0x80,0x26,0x91,0x6c,0xfb,0xaa,0xf0,0xe5,0x68,0xae,0x67,0x78,0x03,0xce,0xc3, 0x13,0xce,0x13,0xd8,0xf9,0xff,0x7c,0x00,0x7d,0x05,0x12,0x03,0x70,0xd3,0xeb,0x9f, 0xea,0x9e,0x40,0x05,0xe4,0x90,0x90,0xdc,0xf0,0xab,0x69,0xad,0x62,0xaf,0x68,0xae, 0x67,0x12,0x46,0xe6,0x8e,0x65,0x8f,0x66,0xb1,0xb8,0xc3,0x74,0x01,0x93,0x95,0x66, 0xe4,0x93,0x95,0x65,0x50,0x08,0x7d,0x01,0xaf,0x62,0x91,0x85,0x80,0x0e,0xb1,0xc6, 0xc3,0xe5,0x66,0x9f,0xe5,0x65,0x94,0x00,0x50,0x08,0x71,0x7f,0x71,0x73,0xe4,0xf0, 0x80,0x2d,0x71,0x73,0xe0,0x04,0xf0,0x71,0x73,0xe0,0xc3,0x94,0x05,0x40,0x20,0x71, 0x73,0xe4,0xf0,0xb1,0xc6,0xb1,0xb8,0x74,0x01,0x93,0x2f,0xff,0xe4,0x93,0x34,0x00, 0xc3,0x13,0xfe,0xef,0x13,0xff,0xe5,0x62,0xb1,0xfd,0xee,0xf0,0xa3,0xef,0xf0,0xe4, 0xf5,0x65,0xf5,0x66,0x75,0x6b,0x01,0x7d,0x01,0xaf,0x62,0x12,0x65,0xc2,0x05,0x62, 0x01,0xd5,0x22,0x74,0xac,0x25,0x62,0xf5,0x82,0xe4,0x34,0x8f,0xf5,0x83,0x22,0x7d, 0x01,0xaf,0x62,0x90,0x92,0x31,0xef,0xf0,0xa3,0xed,0xf0,0x90,0x92,0x31,0xe0,0xff, 0x91,0x78,0xe0,0xf5,0x6c,0x54,0x7f,0xf5,0x6e,0x75,0xf0,0x12,0xef,0x90,0x89,0x3d, 0x12,0x05,0x28,0xe0,0x90,0x92,0x34,0xf0,0x90,0x92,0x31,0xe0,0xb1,0xe7,0xfc,0x11, 0xc4,0xe0,0x54,0x03,0xf5,0x6d,0xe5,0x6e,0x90,0x83,0x45,0x93,0xff,0x90,0x92,0x31, 0xe0,0xfd,0xb1,0xfd,0xd1,0x54,0xed,0x12,0x8e,0x64,0xc4,0x54,0x03,0x90,0x92,0x33, 0xf0,0x74,0xcc,0x2d,0xb1,0xb0,0xe5,0x6e,0xf0,0x74,0x4c,0x2d,0xd1,0x4c,0xe5,0x6d, 0xf0,0xe5,0x6e,0xd3,0x9c,0x40,0x06,0x8c,0x6e,0xaf,0x04,0x8f,0x6c,0x90,0x92,0x32, 0xe0,0xf5,0x6f,0xe4,0x90,0x92,0x35,0xf0,0x90,0x92,0x35,0xe0,0xc3,0x95,0x6f,0x50, 0x59,0xe5,0x6c,0x30,0xe7,0x07,0x85,0x6e,0x6c,0xb1,0xd6,0x60,0x4d,0x7d,0x02,0xaf, 0x6e,0x12,0x78,0x6f,0xef,0x60,0x1a,0x90,0x92,0x34,0xe0,0xfd,0x90,0x92,0x31,0xe0, 0xfb,0x90,0x8a,0x85,0x74,0x01,0xb1,0xde,0x43,0x6c,0x80,0xb1,0xd6,0x70,0x23,0x80, 0x29,0x90,0x92,0x34,0xe0,0xfd,0xe5,0x6e,0xd3,0x9d,0x40,0x0e,0x90,0x92,0x31,0xe0, 0xfb,0xa3,0xe0,0x90,0x8a,0x85,0xb1,0xde,0x80,0x10,0x90,0x92,0x34,0xe0,0xf5,0x6c, 0x80,0x08,0x90,0x92,0x35,0xe0,0x04,0xf0,0x80,0x9e,0x90,0x92,0x31,0xe0,0xff,0x90, 0x91,0x0b,0xe5,0x6d,0xf0,0xe4,0xfb,0xad,0x6c,0x02,0x27,0x3d,0x90,0x92,0x28,0x12, 0x87,0x62,0x90,0x00,0x08,0x02,0x04,0x18,0xc4,0x54,0xf0,0x24,0x00,0xf5,0x82,0xe4, 0x34,0x81,0xf5,0x83,0x22,0x8d,0x6c,0xac,0x07,0xec,0x91,0x78,0xe0,0xf5,0x6d,0x54, 0x7f,0xfb,0xe5,0x6d,0x54,0x80,0xf5,0x6e,0x75,0xf0,0x12,0xec,0xb1,0xea,0xf5,0x70, 0x12,0x8e,0x60,0xc4,0x54,0x03,0xf5,0x71,0xeb,0xb1,0xba,0xe4,0x93,0xfe,0x74,0x01, 0x93,0xff,0xec,0xb1,0xfd,0xee,0xf0,0xa3,0xef,0xf0,0xb1,0xad,0xe5,0x6d,0xf0,0x12, 0x8e,0x60,0x13,0x13,0x54,0x03,0xf5,0x6f,0x74,0x4c,0x2c,0xd1,0x4c,0xe5,0x6f,0xf0, 0xeb,0x64,0x2c,0x70,0x2b,0x12,0x8e,0x60,0xff,0x54,0x03,0xfe,0xe5,0x6f,0xc3,0x9e, 0x50,0x1e,0x05,0x6f,0xe5,0x6f,0x54,0x03,0x25,0xe0,0x25,0xe0,0xfe,0x75,0xf0,0x12, 0xec,0x90,0x89,0x3f,0x12,0x05,0x28,0xef,0x54,0xf3,0x4e,0xf0,0x8b,0x6d,0xa1,0x9d, 0xeb,0xc3,0x95,0x70,0x50,0x71,0xad,0x03,0xaf,0x71,0xd1,0x23,0xab,0x07,0xad,0x70, 0xaf,0x71,0xd1,0x23,0x8f,0x70,0xeb,0x04,0xfd,0xed,0xd3,0x95,0x70,0x50,0x4d,0xed, 0x13,0x13,0x13,0x54,0x1f,0xff,0xec,0xf1,0xe0,0xe5,0x82,0x2f,0xf1,0xc3,0xf5,0x82, 0x75,0x83,0x00,0xed,0x54,0x07,0xd1,0x5d,0x80,0x05,0xc3,0x33,0xce,0x33,0xce,0xd8, 0xf9,0xff,0xee,0x55,0x83,0xfe,0xef,0x55,0x82,0x4e,0x60,0x1d,0xbb,0x13,0x14,0x7b, 0x18,0x8b,0x6d,0x74,0xcc,0x2c,0xf5,0x82,0xe4,0x34,0x8f,0xf5,0x83,0xe0,0x44,0x04, 0xf0,0x80,0x09,0xab,0x05,0x8b,0x6d,0x80,0x03,0x0d,0x80,0xad,0xad,0x6d,0xaf,0x71, 0x12,0xb0,0x7b,0x8f,0x6d,0x80,0x26,0xeb,0x65,0x70,0x70,0x1a,0x75,0xf0,0x12,0xec, 0x12,0x8f,0xec,0xc4,0x13,0x54,0x07,0x30,0xe0,0x22,0xe5,0x6d,0x20,0xe7,0x1d,0xeb, 0x44,0x80,0xf5,0x6d,0x80,0x07,0xb1,0xad,0xe5,0x70,0xf0,0xf5,0x6d,0xaf,0x04,0x90, 0x91,0x0b,0xe5,0x6f,0xf0,0xab,0x6c,0xad,0x6d,0x12,0x27,0x3d,0x22,0x74,0xcc,0x2c, 0xf5,0x82,0xe4,0x34,0x90,0xf5,0x83,0x22,0xe5,0x64,0x25,0xe0,0x24,0x1d,0xf5,0x82, 0xe4,0x34,0x83,0xf5,0x83,0x22,0xe5,0x64,0x90,0x83,0x45,0x93,0xff,0x22,0x90,0x00, 0x06,0x12,0x04,0x18,0x2f,0x22,0x90,0x92,0x32,0xe0,0x14,0xf0,0xe0,0x22,0xf0,0xaf, 0x6e,0x12,0x6b,0xe2,0x8f,0x6c,0x22,0x75,0xf0,0x12,0x90,0x89,0x3c,0x12,0x05,0x28, 0xe0,0x22,0xfc,0xe5,0x67,0xc3,0x13,0xfe,0xe5,0x68,0x13,0xff,0x22,0x25,0xe0,0x24, 0x7b,0xf5,0x82,0xe4,0x34,0x8f,0xf5,0x83,0x22,0x75,0xf0,0x12,0xe5,0x62,0x90,0x89, 0x42,0x12,0x05,0x28,0xe0,0x22,0x75,0xf0,0x12,0xe5,0x62,0x90,0x89,0x40,0x12,0x05, 0x28,0xe0,0x22,0xef,0x60,0x0a,0xed,0xc3,0x94,0x2c,0x40,0x04,0x7e,0x20,0x80,0x02, 0xe4,0xfe,0xc3,0xed,0x9e,0xff,0x22,0x8f,0x69,0xef,0x75,0xf0,0x06,0xa4,0x24,0x3f, 0xf9,0x74,0x82,0x35,0xf0,0xfa,0x7b,0xff,0x90,0x92,0x25,0x22,0xf5,0x82,0xe4,0x34, 0x90,0xf5,0x83,0x22,0xe4,0xf0,0xa3,0xef,0xf0,0x75,0xf0,0x12,0x22,0xff,0x74,0x01, 0x7e,0x00,0xa8,0x07,0x08,0x22,0xe4,0xfb,0xfa,0xfd,0x7f,0x01,0x12,0x86,0x4e,0x90, 0x92,0x24,0xef,0xf0,0x60,0xf0,0x90,0x84,0xc1,0xe0,0xff,0x70,0x04,0xa3,0xe0,0x60, 0xe5,0xc2,0xaf,0xef,0x30,0xe0,0x0e,0x90,0x84,0xc1,0xe0,0x54,0xfe,0xf0,0xe4,0xff, 0x12,0x2d,0xbd,0x11,0xd2,0xd1,0xc0,0x30,0xe1,0x06,0x54,0xfd,0xf0,0x12,0x60,0x5d, 0xd1,0xc0,0x30,0xe2,0x06,0x54,0xfb,0xf0,0x12,0x6a,0x6d,0xd1,0xc0,0x30,0xe4,0x0c, 0x54,0xef,0xf0,0x12,0x6f,0x22,0xbf,0x01,0x03,0x12,0xa2,0x44,0xd2,0xaf,0x80,0xb6, 0xd2,0xaf,0xc2,0xaf,0x90,0x84,0xc1,0xe0,0xff,0x22,0xe0,0xff,0xc4,0x13,0x13,0x54, 0x03,0x22,0x90,0x86,0x72,0xd1,0xca,0x30,0xe0,0x02,0xd1,0xdd,0x22,0xf1,0xbb,0xe4, 0x90,0x88,0xd8,0xd1,0xfe,0x90,0x88,0x76,0xd1,0xfe,0xa3,0xd1,0xfe,0xa3,0xf0,0xa3, 0xf0,0x90,0x88,0x88,0xf0,0xa3,0xf0,0x90,0x88,0xca,0xf0,0xa3,0xf0,0x22,0xf0,0xa3, 0xf0,0xa3,0xf0,0xa3,0xf0,0x22,0x7e,0x00,0x7f,0x24,0x7d,0x00,0x7b,0x01,0x7a,0x86, 0x79,0x72,0x12,0x06,0xde,0x90,0x06,0x90,0xe0,0x44,0x20,0xf0,0x12,0xb3,0x69,0xd1, 0xdd,0x90,0x84,0xc5,0xe0,0xff,0x64,0x02,0x70,0x29,0xf1,0xb2,0x30,0xe0,0x02,0x7e, 0x01,0x90,0x86,0x90,0xf1,0xb0,0x30,0xe1,0x02,0x7e,0x01,0x90,0x86,0x8e,0xf1,0xb0, 0x30,0xe2,0x02,0x7e,0x01,0x90,0x86,0x8f,0xee,0xf0,0x90,0xfd,0x80,0xe0,0x90,0x02, 0xfb,0xf0,0x22,0xef,0x64,0x01,0x70,0x1d,0xf1,0xa9,0x30,0xe0,0x02,0x7f,0x01,0x90, 0x86,0x90,0xf1,0xa7,0x30,0xe1,0x02,0x7f,0x01,0x90,0x86,0x8e,0xf1,0xa7,0x30,0xe2, 0x02,0x7f,0x01,0x80,0x23,0x90,0x84,0xc5,0xe0,0x64,0x03,0x70,0x20,0xf1,0xa0,0x30, 0xe0,0x02,0x7f,0x01,0x90,0x86,0x90,0xf1,0x9e,0x30,0xe1,0x02,0x7f,0x01,0x90,0x86, 0x8e,0xf1,0x9e,0x30,0xe2,0x02,0x7f,0x01,0x90,0x86,0x8f,0xef,0xf0,0x22,0xef,0xf0, 0x90,0xfd,0x78,0xe0,0x7f,0x00,0x22,0xef,0xf0,0x90,0xfd,0x70,0xe0,0x7f,0x00,0x22, 0xee,0xf0,0x90,0xfd,0x80,0xe0,0x7e,0x00,0x22,0xc1,0xd2,0x90,0x86,0x72,0xe0,0x54, 0xbf,0xf0,0x22,0xf5,0x82,0xe4,0x35,0x83,0xf5,0x83,0xe0,0x22,0xf5,0x82,0xe4,0x34, 0x8f,0xf5,0x83,0xe0,0x22,0xe4,0x90,0x84,0xc1,0xd1,0xfe,0x90,0x92,0x77,0xf0,0x22, 0x75,0xf0,0x08,0xa4,0x24,0x00,0xf5,0x82,0xe4,0x34,0x82,0xf5,0x83,0x22,0x90,0x92, 0x36,0xef,0xf0,0x90,0x04,0x7e,0xe0,0xff,0xa3,0xe0,0x90,0x92,0x46,0xf0,0xe0,0xfe, 0x6f,0x60,0x65,0x90,0x92,0x37,0x74,0x03,0xf0,0x90,0x92,0x45,0x74,0x08,0xf0,0xee, 0x04,0x54,0x0f,0xff,0xe4,0xfe,0xef,0x75,0xf0,0x08,0xa4,0x24,0x00,0xf5,0x82,0xe4, 0x34,0x80,0xf5,0x83,0xe5,0x82,0x2e,0x12,0x97,0xc3,0xfd,0x74,0x39,0x2e,0xf5,0x82, 0xe4,0x34,0x92,0xf5,0x83,0xed,0xf0,0x0e,0xee,0xb4,0x08,0xda,0x7b,0x01,0x7a,0x92, 0x79,0x37,0x12,0x5e,0x10,0x90,0x92,0x46,0xe0,0x04,0x54,0x0f,0xff,0xf0,0xbf,0x0f, 0x02,0xe4,0xf0,0x90,0x92,0x46,0xe0,0x90,0x04,0x7f,0xf0,0x90,0x92,0x36,0xe0,0x7f, 0x04,0x70,0x02,0x80,0x04,0x12,0x87,0xa5,0x22,0x8f,0x0d,0x7f,0x02,0x12,0x86,0x27, 0x90,0x84,0xc1,0xe0,0x45,0x0d,0xf0,0x22,0x90,0x85,0xc5,0xe0,0x60,0x57,0x90,0x85, 0xc1,0xe0,0x30,0xe0,0x19,0x90,0x85,0xdc,0xe0,0x04,0xf0,0x12,0xb3,0x7c,0xce,0xc3, 0x13,0xce,0x13,0xd8,0xf9,0xff,0x90,0x85,0xfc,0xee,0xf0,0xa3,0xef,0xf0,0x12,0x8f, 0xaf,0x13,0x54,0x1f,0x30,0xe0,0x0d,0x90,0x01,0x3b,0xe0,0x30,0xe4,0x06,0x12,0x8f, 0xf6,0x12,0xb3,0x97,0x90,0x92,0x96,0x31,0xdd,0xc3,0x90,0x92,0x97,0xe0,0x94,0x80, 0x90,0x92,0x96,0xe0,0x64,0x80,0x94,0x80,0x40,0x0b,0x90,0x01,0x98,0xe0,0x54,0xfe, 0xf0,0xe0,0x44,0x01,0xf0,0x12,0x5d,0x1f,0x12,0x6e,0x1d,0xe4,0x90,0x88,0xe0,0xf0, 0x7f,0x01,0x11,0x69,0x12,0xb2,0xad,0x12,0xa6,0x8d,0x54,0x03,0x30,0xe0,0x51,0x90, 0x88,0x76,0xe0,0xfe,0xa3,0xe0,0xff,0x7c,0x00,0x7d,0x64,0x12,0x03,0x82,0x90,0x88, 0xca,0xe0,0x6e,0x70,0x03,0xa3,0xe0,0x6f,0x60,0x0a,0x90,0x88,0xca,0xe4,0x75,0xf0, 0x01,0x02,0x07,0x0a,0x90,0x88,0x7a,0xe0,0xfe,0xa3,0xe0,0xff,0x90,0x88,0x88,0xe0, 0xb5,0x06,0x14,0xa3,0xe0,0xb5,0x07,0x0f,0xef,0x4e,0x60,0x0b,0x90,0x01,0xc7,0x74, 0x31,0xf0,0x7f,0x01,0x02,0x5f,0xe9,0x31,0x41,0xe4,0x90,0x88,0xca,0xf0,0xa3,0xf0, 0x22,0xe4,0x90,0x92,0x39,0xf0,0xa3,0xf0,0x90,0x06,0x32,0xe0,0x44,0x20,0xf0,0x12, 0x75,0xe4,0xef,0x64,0x01,0x70,0x7c,0x90,0x88,0xd9,0xe0,0xff,0x90,0x92,0x8c,0x74, 0x0a,0xf0,0x7b,0x08,0x7d,0x01,0x71,0xd2,0x12,0xb3,0xa1,0x90,0x92,0x36,0xa3,0x91, 0x94,0xfd,0x74,0x2c,0x2e,0xd1,0x2f,0x90,0x92,0x38,0xef,0xf0,0x90,0x92,0x36,0xa3, 0xe0,0x24,0x28,0xf9,0xe4,0x34,0xfc,0xfa,0x7b,0x01,0xe4,0xfd,0x12,0x52,0x21,0x90, 0x92,0x38,0xe0,0xff,0x90,0x92,0x37,0xe0,0x2f,0xff,0x90,0x92,0x36,0xe0,0x34,0x00, 0xcf,0x24,0x30,0xcf,0x34,0x00,0xfe,0x90,0x92,0x39,0xf0,0xa3,0xef,0xf0,0x31,0xe4, 0x31,0xd4,0x90,0x88,0xd9,0xe0,0xfb,0xe4,0xff,0x12,0x15,0x44,0x31,0xd4,0x90,0x88, 0xd5,0xe0,0xfb,0x7f,0x11,0x12,0x15,0x44,0x90,0x04,0x1f,0x74,0x20,0xf0,0x90,0x88, 0x88,0x31,0xdd,0x22,0x90,0x92,0x39,0xe0,0xfc,0xa3,0xe0,0xfd,0x22,0xe4,0x75,0xf0, 0x01,0x02,0x07,0x0a,0xad,0x07,0x90,0x88,0x80,0x31,0xdd,0x90,0x88,0x80,0xe0,0xff, 0xae,0x05,0x74,0x04,0x2e,0xb1,0x6f,0xef,0xf0,0x90,0x88,0x80,0xa3,0xe0,0xff,0x74, 0x05,0x2e,0xd1,0x1f,0xef,0xf0,0x22,0xe4,0x90,0x92,0x1f,0xf0,0xa3,0xf0,0x51,0x57, 0xef,0x64,0x01,0x60,0x3b,0xc3,0x90,0x92,0x20,0xe0,0x94,0x88,0x90,0x92,0x1f,0xe0, 0x94,0x13,0x40,0x0f,0x90,0x01,0xc1,0xe0,0x44,0x10,0xf0,0x90,0x01,0xc7,0x74,0xfd, 0xf0,0x80,0x1d,0x90,0x92,0x1f,0x31,0xdd,0x51,0xc1,0xd3,0x90,0x92,0x20,0xe0,0x94, 0x32,0x90,0x92,0x1f,0xe0,0x94,0x00,0x40,0xc5,0x90,0x01,0xc6,0xe0,0x30,0xe3,0xbe, 0x90,0x01,0xc7,0x74,0xfe,0xf0,0x22,0x90,0x01,0x9a,0xe0,0x54,0xc0,0x44,0x0b,0x12, 0xa2,0x34,0x90,0x01,0x98,0xe0,0x54,0xc0,0x7f,0x00,0xb4,0x40,0x02,0x7f,0x01,0x22, 0x90,0x92,0x93,0xef,0xf0,0xe4,0xa3,0xf0,0xa3,0xf0,0x90,0x01,0x09,0xe0,0x7f,0x00, 0x30,0xe7,0x02,0x7f,0x01,0x90,0x92,0x93,0xe0,0x6f,0x60,0x34,0xc3,0x90,0x92,0x95, 0xe0,0x94,0x88,0x90,0x92,0x94,0xe0,0x94,0x13,0x40,0x08,0x90,0x01,0xc0,0xe0,0x44, 0x10,0xf0,0x22,0x90,0x92,0x94,0x31,0xdd,0x51,0xc1,0xd3,0x90,0x92,0x95,0xe0,0x94, 0x32,0x90,0x92,0x94,0xe0,0x94,0x00,0x40,0xc1,0x90,0x01,0xc6,0xe0,0x30,0xe0,0xba, 0x22,0x7f,0x14,0x7e,0x00,0x02,0x7c,0x9f,0x12,0xb2,0x83,0x7f,0x08,0x12,0x7b,0x51, 0xef,0x54,0xef,0xfd,0x7f,0x08,0x12,0x7b,0x3e,0xe4,0xff,0x51,0x70,0x7d,0x35,0x7f, 0x27,0x12,0x7b,0x3e,0x90,0x85,0xc2,0xe0,0x54,0xef,0xf0,0x22,0xd3,0x10,0xaf,0x01, 0xc3,0xc0,0xd0,0x51,0xfc,0x51,0xc8,0xd0,0xd0,0x92,0xaf,0x22,0x90,0x85,0xc2,0xe0, 0x44,0x10,0xf0,0x90,0x85,0xd0,0xe0,0xfd,0x7f,0x93,0x12,0x7b,0x3e,0x90,0x85,0xc6, 0xe0,0x60,0x12,0x90,0x01,0x2f,0xe0,0x30,0xe7,0x05,0x74,0x10,0xf0,0x80,0x06,0x90, 0x01,0x2f,0x74,0x90,0xf0,0x7f,0x08,0x12,0x7b,0x51,0xef,0x44,0x10,0xfd,0x7f,0x08, 0x12,0x7b,0x3e,0x7f,0x01,0x51,0x70,0x7d,0x34,0x7f,0x27,0x12,0x7b,0x3e,0x7f,0x90, 0xf1,0x57,0x7f,0x90,0x12,0x7b,0x3e,0x7f,0x14,0x7e,0x00,0x02,0x7c,0x9f,0x90,0x85, 0xc8,0xe0,0xff,0x60,0x03,0xb4,0x08,0x0d,0x71,0x66,0xbf,0x01,0x08,0x51,0xec,0x90, 0x01,0xe5,0xe0,0x04,0xf0,0x22,0x90,0x92,0x7b,0xe0,0xc3,0x13,0x20,0xe0,0x3a,0x90, 0x02,0x87,0xe0,0x60,0x02,0x80,0x08,0x90,0x01,0x00,0xe0,0x64,0x3f,0x60,0x05,0x12, 0xaf,0x35,0x80,0x45,0x90,0x86,0x72,0xe0,0x30,0xe0,0x0a,0x90,0x02,0x82,0xe0,0x60, 0x04,0xf1,0xec,0x80,0x34,0x90,0x86,0x7a,0xe0,0x30,0xe0,0x04,0xf1,0xe5,0x80,0x29, 0x90,0x02,0x86,0xe0,0x20,0xe1,0x02,0x80,0x07,0x90,0x02,0x86,0xe0,0x30,0xe3,0x08, 0x90,0x01,0xb8,0x74,0x04,0xf0,0x80,0x11,0x90,0x04,0x1d,0xe0,0x60,0x08,0x90,0x01, 0xb8,0x74,0x40,0xf0,0x80,0x03,0x02,0xaf,0xac,0x90,0x01,0xb9,0x74,0x08,0xf0,0x7f, 0x00,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x90,0x92,0x8a,0xed,0xf0,0xa3,0xeb, 0xf0,0x90,0x92,0x89,0xef,0xf0,0xe4,0xfd,0xfc,0xd1,0x27,0x90,0x92,0x89,0xe0,0x90, 0x04,0x25,0xf0,0x90,0x92,0x8a,0xe0,0x60,0x05,0x91,0x88,0x44,0x80,0xf0,0xaf,0x05, 0x74,0x20,0x2f,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0x54,0xc0,0xf0,0x91,0x88, 0x54,0xc0,0xf0,0x90,0x92,0x8c,0xe0,0xff,0xae,0x05,0x74,0x18,0x2e,0xf5,0x82,0xe4, 0x34,0xfc,0xf5,0x83,0xef,0xf0,0x90,0x00,0x8b,0xe0,0xd3,0x94,0x03,0x74,0x10,0x40, 0x07,0x91,0x74,0x74,0x04,0xf0,0x80,0x04,0x91,0x74,0xe4,0xf0,0xaf,0x05,0x91,0x7d, 0xe0,0x54,0x01,0xfe,0x90,0x92,0x8b,0xe0,0x25,0xe0,0x25,0xe0,0xfb,0xee,0x44,0x02, 0x4b,0xfe,0x91,0x7d,0xee,0xf0,0x74,0x11,0x2f,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83, 0x74,0xff,0xf0,0x74,0x29,0x2f,0x91,0xa4,0x54,0xf7,0xf0,0xae,0x04,0xaf,0x05,0xd0, 0xd0,0x92,0xaf,0x22,0x2e,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0x22,0x74,0x12,0x2f, 0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0x22,0x74,0x21,0x2f,0xf5,0x82,0xe4,0x34,0xfc, 0xf5,0x83,0xe0,0x22,0xe0,0xfe,0x24,0x28,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0, 0xff,0x74,0x29,0x2e,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0x22,0x90,0x88,0xd9, 0xb1,0x4b,0x91,0x94,0xfd,0x90,0x92,0x05,0xe0,0x24,0x2c,0xd1,0x2f,0x90,0x92,0x05, 0xe0,0x2f,0x24,0x30,0xa3,0xf0,0xe0,0xfd,0x24,0x04,0xb1,0x6f,0xe0,0xfe,0x74,0x05, 0x2d,0xf5,0x82,0xe4,0x34,0xfc,0xb1,0x64,0x90,0x88,0x80,0xf0,0xa3,0xef,0xf0,0x90, 0x92,0x06,0xe0,0x24,0x0c,0xf9,0xe4,0x34,0xfc,0xb1,0x5c,0x75,0x1e,0x04,0x7b,0x01, 0x7a,0x88,0x79,0x82,0x12,0x6a,0x21,0x90,0x92,0x06,0xe0,0x24,0x14,0xf0,0xe0,0xfd, 0x24,0x01,0xd1,0x3b,0x2d,0xf5,0x82,0xe4,0x34,0xfc,0xb1,0x64,0x90,0x88,0x86,0xf0, 0xa3,0xef,0xf0,0x90,0x88,0xda,0xb1,0x4b,0x90,0x88,0x7c,0xe0,0xfe,0xa3,0xe0,0xff, 0x4e,0x60,0x11,0x90,0x92,0x05,0xe0,0xb1,0x56,0x8f,0x1e,0x7b,0x01,0x7a,0x88,0x79, 0x8a,0x12,0x6a,0x21,0x90,0x88,0xdb,0xb1,0x4b,0xb1,0x56,0x90,0x88,0x7e,0xa3,0xe0, 0xf5,0x1e,0x7b,0x01,0x7a,0x88,0x79,0xaa,0x02,0x6a,0x21,0xe0,0xff,0x12,0x7b,0x2a, 0x90,0x92,0x05,0xef,0xf0,0x22,0x24,0x00,0xf9,0xe4,0x34,0xfc,0x75,0x1b,0x01,0xf5, 0x1c,0x89,0x1d,0x22,0xf5,0x83,0xe0,0x7c,0x00,0x24,0x00,0xff,0xec,0x3e,0x22,0xf5, 0x82,0xe4,0x34,0xfc,0xf5,0x83,0x22,0xef,0x60,0x04,0xb1,0x7f,0x91,0xad,0x22,0xe4, 0xfd,0xfc,0x90,0x88,0xd8,0xe0,0xff,0xd1,0x27,0xab,0x05,0x74,0x01,0x2b,0xd1,0x3b, 0x2b,0xf5,0x82,0xe4,0x34,0xfc,0x12,0xa6,0xa8,0x90,0x88,0x76,0xf0,0xa3,0xef,0xf0, 0x74,0x03,0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0xfe,0x74,0x02,0x2b,0xf5, 0x82,0xe4,0x34,0xfc,0xd1,0x16,0x90,0x88,0x78,0xf0,0xa3,0xef,0xf0,0x74,0x05,0x2b, 0xd1,0x1f,0xe0,0xfe,0x74,0x04,0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xd1,0x16,0x90,0x88, 0x7a,0xf0,0xa3,0xef,0xf0,0x74,0x07,0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0, 0xfe,0x74,0x06,0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xd1,0x16,0x90,0x88,0x7c,0xf0,0xa3, 0xef,0xf0,0x74,0x09,0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0xfe,0x74,0x08, 0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0x24,0x00,0xff,0xec,0x3e,0x90,0x88, 0x7e,0xf0,0xa3,0xef,0xf0,0x22,0xf5,0x83,0xe0,0x24,0x00,0xff,0xea,0x3e,0x22,0xf5, 0x82,0xe4,0x34,0xfc,0xf5,0x83,0x22,0x12,0x7b,0x2a,0x7c,0x00,0xad,0x07,0x22,0xf5, 0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0xfb,0x02,0x5d,0x98,0xf5,0x82,0xe4,0x34,0xfc, 0xf5,0x83,0xe0,0xfe,0x74,0x00,0x22,0xef,0x60,0x4e,0x90,0x88,0xce,0xe0,0xff,0x60, 0x03,0x12,0x7b,0x8a,0x90,0x01,0xc7,0xe4,0xf0,0x90,0x01,0x17,0xe0,0xfe,0x90,0x01, 0x16,0xb1,0x66,0x90,0x85,0xb7,0xf0,0xa3,0xef,0xf0,0x90,0x06,0x09,0xe0,0x54,0xfe, 0xf0,0x7d,0x35,0x7f,0xff,0xd1,0xb8,0xf1,0x5f,0x90,0x02,0x86,0xe0,0x44,0x04,0xf0, 0x12,0x72,0x79,0xd1,0xc3,0xf1,0x11,0xd1,0xb5,0x12,0x76,0xe6,0x90,0x01,0x34,0x74, 0x08,0xf0,0xfd,0xe4,0xff,0x02,0x7c,0xa9,0x7d,0x08,0xe4,0xff,0x12,0x7c,0x41,0x90, 0x06,0x90,0xe0,0x54,0xf0,0xf0,0x90,0x02,0x86,0xe0,0x54,0xfb,0xf0,0xd1,0xea,0x12, 0x97,0xb9,0x02,0x97,0x06,0xe4,0xfd,0xff,0x90,0x05,0x22,0xef,0xf0,0x90,0x92,0x77, 0xed,0xf0,0x22,0x22,0x90,0x85,0xc5,0xe0,0x64,0x01,0x70,0x1d,0x12,0x8c,0xed,0x60, 0x0f,0xe4,0xfd,0x7f,0x0c,0x12,0xa9,0xd6,0xe4,0xfd,0xff,0xd1,0xb8,0x02,0x6b,0x98, 0x90,0x85,0xc8,0xe0,0x70,0x03,0x12,0xa9,0xd2,0x22,0x12,0xb3,0x69,0x12,0x77,0x89, 0x90,0x01,0x3f,0x74,0x04,0xf0,0x90,0x84,0xc5,0xe0,0xff,0xb4,0x01,0x07,0x90,0xfd, 0x00,0xe0,0x54,0xef,0xf0,0xef,0xb4,0x01,0x07,0x90,0xfe,0x10,0xe0,0x54,0xfb,0xf0, 0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xf1,0xb9,0xf1,0x4d,0xf1,0xd5,0x7f,0x02, 0xf1,0x57,0x7f,0x02,0x12,0xa6,0x95,0x44,0x02,0xf0,0x90,0x01,0x00,0x74,0xff,0xf0, 0x90,0x06,0xb7,0x74,0x09,0xf0,0x90,0x06,0xb4,0x74,0x86,0xf0,0xf1,0xb2,0xf1,0x4d, 0x12,0x87,0x4a,0xed,0x44,0x0f,0xf1,0xc6,0xd0,0xd0,0x92,0xaf,0x22,0x90,0x92,0x81, 0x12,0x04,0xeb,0x90,0x92,0x81,0x22,0x12,0x7b,0x51,0xef,0x44,0x01,0xfd,0x22,0xd3, 0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xf1,0xb9,0xf1,0xa8,0xf1,0xd5,0x12,0xb0,0x37,0x7f, 0x02,0x12,0x7b,0x51,0xef,0x54,0xfe,0xfd,0x7f,0x02,0x12,0x7b,0x3e,0xf1,0xb2,0xf1, 0xa8,0x12,0x87,0x4a,0xed,0x54,0xf0,0xf1,0xc6,0x90,0x01,0x00,0x74,0x3f,0xf0,0x90, 0x01,0x34,0x74,0x08,0xf0,0x90,0x01,0x01,0xe0,0x54,0xfd,0xf0,0x90,0x05,0x53,0xe0, 0x44,0x20,0xf0,0xd0,0xd0,0x92,0xaf,0x22,0x90,0x92,0x85,0x12,0x04,0xeb,0x90,0x92, 0x85,0x22,0x7d,0xb0,0xe4,0xff,0x02,0x7b,0xe0,0x7f,0x30,0x7e,0x08,0x12,0x70,0x61, 0xed,0x44,0x80,0xfd,0xec,0x22,0xfd,0xec,0x90,0x8d,0x9d,0x12,0x04,0xeb,0x7d,0xb0, 0xe4,0xff,0x02,0x78,0xdd,0x12,0x87,0x4a,0x90,0x91,0x66,0x12,0x04,0xeb,0x7f,0x30, 0x7e,0x08,0x02,0x71,0x18,0x90,0x01,0xb8,0x74,0x08,0xf0,0x22,0x90,0x01,0xb8,0x74, 0x02,0xf0,0x22,0xe4,0xf5,0x40,0xf5,0x41,0xf5,0x42,0x75,0x43,0x80,0xad,0x40,0x7f, 0x50,0x12,0x7b,0x3e,0xad,0x41,0x7f,0x51,0x12,0x7b,0x3e,0xad,0x42,0x7f,0x52,0x12, 0x7b,0x3e,0xad,0x43,0x7f,0x53,0x02,0x7b,0x3e,0x75,0x48,0x12,0xe4,0xf5,0x49,0x75, 0x4a,0x07,0x75,0x4b,0x32,0x90,0x01,0x30,0xe5,0x48,0xf0,0xa3,0xe5,0x49,0xf0,0xa3, 0xe5,0x4a,0xf0,0xa3,0xe5,0x4b,0xf0,0x90,0x01,0x20,0xe5,0x50,0xf0,0x22,0x12,0x75, 0xb6,0x12,0x75,0x58,0x11,0x19,0x11,0x4a,0x80,0xa9,0x75,0x52,0x06,0x75,0x53,0x01, 0x75,0x54,0x03,0x75,0x55,0x62,0x90,0x01,0x38,0xe5,0x52,0xf0,0xa3,0xe5,0x53,0xf0, 0xa3,0xe5,0x54,0xf0,0xa3,0xe5,0x55,0xf0,0x22,0x12,0x7c,0x4e,0x90,0x84,0xc5,0xef, 0xf0,0x11,0x3e,0x90,0x01,0x64,0x74,0x01,0xf0,0x90,0x04,0x23,0xe0,0x44,0x80,0xf0, 0x90,0x00,0x17,0xe0,0x54,0xfc,0x44,0x04,0xfd,0x7f,0x17,0x12,0x7b,0x3e,0x90,0x00, 0x38,0xe0,0x44,0x40,0xfd,0x7f,0x38,0x12,0x7b,0x3e,0x02,0x68,0xe2,0x90,0x00,0x80, 0xe0,0x44,0x80,0xfd,0x7f,0x80,0x12,0x7b,0x3e,0xd1,0x9d,0xd1,0xb3,0x12,0x7b,0x9c, 0x31,0x1a,0x12,0x97,0xd5,0x7f,0x01,0x12,0x85,0x15,0x90,0x92,0x7f,0x74,0x02,0xf0, 0xff,0x12,0x85,0x15,0x90,0x92,0x7f,0xe0,0x04,0xf0,0x11,0x69,0x31,0x37,0x90,0x00, 0x80,0xe0,0x44,0x40,0xfd,0x7f,0x80,0x12,0x7b,0x3e,0x75,0x20,0xff,0x12,0x7c,0xcd, 0x12,0x9a,0x07,0x90,0x00,0x81,0xe0,0x44,0x04,0xfd,0x7f,0x81,0x12,0x7b,0x3e,0x51, 0x2c,0x90,0x00,0x00,0xe0,0x54,0xfb,0xfd,0xe4,0xff,0xd1,0x95,0x44,0x04,0xfd,0x7f, 0x01,0x12,0x7b,0x3e,0x90,0x01,0x98,0x74,0x80,0xf0,0xa3,0x74,0x88,0xf0,0xa3,0xe4, 0xf0,0xa3,0x74,0x80,0xf0,0xe4,0xff,0x02,0x85,0x9e,0x90,0x01,0x01,0xe0,0x44,0x04, 0xf0,0x90,0x01,0x9a,0xe0,0x54,0xc0,0x51,0x34,0x90,0x01,0x99,0xe0,0x44,0xc0,0xf0, 0x90,0x01,0x9b,0x74,0x80,0xf0,0x22,0x51,0x26,0x12,0x7b,0xef,0x12,0x3c,0x03,0xf1, 0x15,0x31,0x70,0x31,0x6b,0x12,0x97,0x06,0x12,0x7b,0x64,0x12,0x78,0xb9,0x90,0x89, 0x16,0xe0,0x54,0x7f,0xf0,0x54,0xbf,0xf0,0x54,0xdf,0xf0,0x54,0xf0,0xf0,0xe4,0x90, 0x89,0x18,0xf0,0x90,0x89,0x16,0xe0,0x54,0xef,0xf0,0x22,0x51,0x19,0x02,0x06,0xde, 0x7e,0x00,0x7f,0xac,0x7d,0x00,0x7b,0x01,0x7a,0x85,0x79,0xc1,0x12,0x06,0xde,0x51, 0x19,0x12,0x06,0xde,0x90,0x85,0xc4,0x74,0x02,0xf0,0x90,0x85,0xcb,0x14,0x51,0x3c, 0x90,0x85,0xd1,0xe4,0xf0,0xa3,0x74,0x02,0xf0,0x51,0x0a,0xe4,0xfd,0xff,0x12,0x57, 0x82,0x7d,0x0c,0x7f,0x02,0x12,0x57,0x82,0x7d,0x0c,0x7f,0x01,0x12,0x57,0x82,0x90, 0x84,0xc5,0xe0,0xff,0xb4,0x01,0x08,0x90,0x85,0xd0,0x74,0xdd,0xf0,0x80,0x0f,0xef, 0x90,0x85,0xd0,0xb4,0x03,0x05,0x74,0xd4,0xf0,0x80,0x03,0x74,0x40,0xf0,0x7f,0x79, 0x12,0x7b,0x51,0xef,0x54,0x03,0xff,0xbf,0x02,0x0f,0x7f,0x28,0x12,0x7b,0x51,0xef, 0x30,0xe2,0x06,0x90,0x85,0xfb,0x74,0x02,0xf0,0x12,0x8a,0xad,0x51,0x0a,0x7f,0x01, 0x12,0x69,0x33,0x90,0x06,0x04,0xe0,0x54,0x7f,0xf0,0x90,0x06,0x0a,0xe0,0x54,0xf8, 0xf0,0x12,0x9e,0xb5,0xe4,0x90,0x86,0x71,0xf0,0x22,0x90,0x85,0xfb,0xe0,0x24,0x04, 0x90,0x85,0xdd,0xf0,0xa3,0x74,0x08,0xf0,0x22,0x7e,0x00,0x7f,0x04,0x7d,0x00,0x7b, 0x01,0x7a,0x92,0x79,0x7b,0x22,0xe4,0xfd,0xff,0x02,0x6e,0x5f,0x90,0x01,0xe4,0xe4, 0xf0,0xa3,0xf0,0x22,0xf0,0x7f,0x0a,0x7e,0x00,0x02,0x7c,0x9f,0xf0,0xa3,0xf0,0xa3, 0x74,0x08,0xf0,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xe4,0x90,0x92,0x5a,0x51, 0x3c,0xa3,0xf0,0xe4,0xa3,0xf0,0xa3,0xf0,0x90,0x92,0x62,0xf0,0xa3,0xf0,0xa3,0xf0, 0x90,0x01,0xc4,0x74,0x44,0xf0,0x74,0xa2,0xa3,0xf0,0x90,0x01,0x1f,0xe0,0xfe,0x90, 0x01,0x1e,0x12,0x9d,0x66,0x90,0x92,0x51,0xf0,0xa3,0xef,0xf0,0x90,0x02,0x82,0xe0, 0x90,0x92,0x59,0xf0,0x90,0x86,0x72,0xe0,0x20,0xe0,0x02,0xa1,0x32,0xe4,0x90,0x92, 0x58,0xf0,0x90,0x92,0x59,0xe0,0xff,0x90,0x92,0x58,0xe0,0xc3,0x9f,0x40,0x02,0xa1, 0x32,0x90,0x92,0x51,0xe0,0xfc,0xa3,0xe0,0xfd,0xec,0xff,0x90,0xfd,0x11,0xf0,0x90, 0x92,0x62,0xef,0xf0,0x74,0x01,0x2d,0xf5,0x82,0xe4,0x34,0xfb,0xf5,0x83,0xe0,0xfe, 0x74,0x00,0x2d,0xf5,0x82,0xe4,0x34,0xfb,0xd1,0xa8,0x54,0x3f,0xfe,0x90,0x92,0x53, 0xf0,0xa3,0xef,0xf0,0x90,0x92,0x5e,0xee,0xf0,0xa3,0xef,0xf0,0x74,0x02,0x2d,0xf5, 0x82,0xe4,0x34,0xfb,0xf5,0x83,0xe0,0x54,0x0f,0x33,0x33,0x33,0x54,0xf8,0xff,0x74, 0x03,0x2d,0xf5,0x82,0xe4,0x34,0xfb,0xf5,0x83,0xe0,0x54,0x03,0xfe,0xef,0x24,0x18, 0x2e,0xff,0x90,0x92,0x63,0xf0,0x90,0x92,0x52,0xe0,0x2f,0xff,0x90,0x92,0x51,0xe0, 0x34,0x00,0xfe,0x90,0x92,0x55,0xb1,0x5e,0xc0,0x07,0xb1,0x43,0x7d,0x01,0x12,0x55, 0x36,0xc0,0x07,0xb1,0x43,0x7d,0x04,0x12,0x55,0x36,0xab,0x07,0xd0,0x05,0xd0,0x07, 0x12,0x5d,0x98,0x90,0x92,0x5a,0xef,0xb1,0x42,0xe4,0xfd,0x12,0x55,0x36,0xef,0x54, 0xfc,0x90,0x92,0x57,0xf0,0x90,0x92,0x63,0xe0,0xff,0x90,0x92,0x53,0xe4,0x8f,0xf0, 0x12,0x07,0x0a,0x90,0x92,0x53,0xe0,0xfe,0xa3,0xe0,0xff,0x12,0x7a,0xd0,0x90,0x92, 0x53,0xee,0xf0,0xa3,0xef,0xf0,0xb1,0x67,0x7d,0x0f,0x12,0x55,0x36,0x90,0x92,0x53, 0xe0,0xfc,0xa3,0xe0,0xfd,0x90,0x92,0x51,0xec,0x8d,0xf0,0x12,0x07,0x0a,0x90,0x85, 0xb7,0xe0,0xfc,0xa3,0xe0,0xfd,0xd3,0x90,0x92,0x52,0xe0,0x9d,0x90,0x92,0x51,0xe0, 0x9c,0x40,0x1b,0x90,0x85,0xb8,0xe0,0x24,0x01,0xfd,0x90,0x85,0xb7,0xe0,0x34,0x00, 0xfc,0xc3,0x90,0x92,0x52,0xe0,0x9d,0xf0,0x90,0x92,0x51,0xe0,0x9c,0xf0,0xef,0x30, 0xe6,0x06,0x90,0x01,0xc7,0x74,0x22,0xf0,0xef,0x30,0xe7,0x06,0x90,0x01,0xc7,0x74, 0x21,0xf0,0xef,0x30,0xe5,0x06,0x90,0x01,0xc7,0x74,0x23,0xf0,0x90,0x92,0x57,0xe0, 0x24,0x40,0x60,0x04,0x24,0x20,0x70,0x2a,0x90,0x86,0x75,0x12,0x8d,0x0c,0x20,0xe0, 0x02,0x81,0xc6,0x90,0x86,0x87,0xe0,0x04,0xb1,0x42,0x12,0x59,0x20,0xef,0x70,0x02, 0x81,0xc6,0x90,0x92,0x57,0xe0,0xff,0x12,0x7b,0x77,0x90,0x86,0x88,0xe0,0x04,0xf0, 0x81,0xc6,0xd1,0x8d,0x54,0x03,0x30,0xe0,0x56,0x90,0x92,0x5a,0xe0,0xff,0x90,0x92, 0x56,0xe0,0x2f,0xff,0x90,0x92,0x55,0xe0,0x34,0x00,0xcf,0x24,0x08,0xcf,0x34,0x00, 0xfe,0x90,0x92,0x60,0xb1,0x5e,0xef,0x64,0x45,0x70,0x34,0xb1,0x4d,0xb1,0xa4,0xef, 0x64,0x01,0x70,0x2b,0xb1,0x4d,0xb1,0x70,0xef,0x64,0x01,0x70,0x22,0x90,0x92,0x64, 0x04,0xb1,0x4c,0xa3,0xe0,0xfd,0xd1,0x21,0xef,0x70,0x0c,0x90,0x92,0x62,0xe0,0xfd, 0x90,0xfd,0x11,0xb1,0x4c,0xb1,0xe6,0x90,0x92,0x62,0xe0,0x90,0xfd,0x11,0xf0,0xb1, 0x43,0x12,0x59,0x20,0xef,0x60,0x18,0xb1,0x43,0x90,0x92,0x5a,0xe0,0xfd,0x90,0x92, 0x5d,0xe0,0xfb,0x12,0x54,0x02,0xef,0x60,0x06,0x90,0x92,0x64,0x74,0x01,0xf0,0x90, 0x86,0x72,0xe0,0xc3,0x13,0x30,0xe0,0x13,0xb1,0x43,0x90,0x92,0x5a,0xe0,0xfd,0x12, 0x38,0x10,0xef,0x60,0x06,0x90,0x92,0x64,0x74,0x01,0xf0,0x12,0x8c,0xe5,0x54,0x3f, 0x30,0xe0,0x0a,0xb1,0x43,0x90,0x92,0x5a,0xe0,0xfd,0x12,0x21,0xb6,0x90,0x86,0x72, 0x12,0x8d,0x0c,0x30,0xe0,0x10,0x90,0x92,0x64,0xe0,0x70,0x0a,0xb1,0x43,0x90,0x92, 0x5a,0xe0,0xfd,0x12,0x4a,0x3f,0x12,0x79,0x00,0xef,0x64,0x01,0x60,0x07,0x90,0x01, 0x3f,0xe0,0x30,0xe2,0x05,0x7f,0x01,0x12,0x5f,0xe9,0x90,0x01,0x3f,0xe0,0x30,0xe2, 0x02,0xb1,0x56,0x12,0x6f,0xe5,0xef,0x64,0x01,0x70,0x36,0x90,0x86,0x89,0xe0,0x04, 0xf0,0x12,0x6f,0xe5,0xad,0x07,0xef,0x64,0x01,0x60,0x1f,0xb1,0x56,0xed,0xb4,0x02, 0x08,0x90,0x01,0xc7,0x74,0x42,0xf0,0x80,0x0a,0xed,0xb4,0x04,0x06,0x90,0x01,0xc7, 0x74,0x43,0xf0,0x7f,0x01,0x12,0x5f,0xe9,0x80,0x18,0xb1,0x67,0x12,0x7c,0x0b,0x80, 0x09,0x90,0x86,0x72,0xe0,0x54,0xfe,0xf0,0x80,0x08,0x90,0x92,0x58,0xe0,0x04,0xf0, 0x41,0x92,0x74,0x44,0x04,0x90,0x01,0xc4,0xf0,0x74,0xa2,0xa3,0xf0,0xd0,0xd0,0x92, 0xaf,0x22,0xf0,0x90,0x92,0x55,0xe0,0xfe,0xa3,0xe0,0xff,0x22,0xf0,0x90,0x92,0x60, 0xe0,0xfe,0xa3,0xe0,0xff,0x22,0x90,0x86,0x7a,0xe0,0x44,0x01,0xf0,0x22,0xf0,0xa3, 0xef,0xf0,0xe4,0xfd,0x02,0x55,0x36,0x90,0x92,0x51,0xe0,0xfe,0xa3,0xe0,0xff,0x22, 0xb1,0xdd,0x24,0x16,0xff,0xe4,0x3e,0xfe,0xe4,0xfd,0x12,0x55,0x36,0x90,0x88,0x86, 0xa3,0xe0,0xb5,0x07,0x19,0x90,0x92,0x26,0xe0,0x24,0x16,0xd1,0x67,0x7d,0x01,0x12, 0x55,0x36,0xef,0xfd,0x90,0x88,0x86,0xe0,0x6d,0x70,0x01,0xe4,0x60,0x03,0x7f,0x00, 0x22,0x7f,0x01,0x22,0xb1,0xdd,0xe4,0xa3,0xf0,0x90,0x92,0x27,0xe0,0xfd,0xc3,0x94, 0x04,0x50,0x27,0x90,0x92,0x26,0xe0,0x24,0x10,0xd1,0x67,0x12,0x55,0x36,0x90,0x92, 0x27,0xe0,0x24,0x82,0xf5,0x82,0xe4,0x34,0x88,0xf5,0x83,0xe0,0x6f,0x60,0x03,0x7f, 0x00,0x22,0x90,0x92,0x27,0xe0,0x04,0xf0,0x80,0xcf,0x7f,0x01,0x22,0x90,0x92,0x25, 0xee,0xf0,0xa3,0xef,0xf0,0x22,0xb1,0xdd,0xa3,0xed,0xf0,0xe4,0xa3,0xf0,0xd1,0x70, 0x50,0x17,0xd1,0x79,0x24,0xaa,0xf5,0x82,0xe4,0x34,0x88,0xf5,0x83,0xe0,0xb5,0x07, 0x1d,0x90,0x92,0x28,0xe0,0x04,0xf0,0x80,0xe5,0x90,0x06,0x32,0xe0,0x44,0x80,0xf0, 0x90,0x01,0xc7,0x74,0x30,0xf0,0x7f,0x01,0x12,0x5f,0xe9,0x7f,0x01,0x22,0x7f,0x00, 0x22,0xb1,0xdd,0xa3,0xed,0xf0,0x90,0x88,0x7c,0xe0,0x70,0x02,0xa3,0xe0,0x60,0x23, 0xe4,0x90,0x92,0x28,0xf0,0xd1,0x70,0x50,0x1d,0xd1,0x79,0x24,0x8a,0xf5,0x82,0xe4, 0x34,0x88,0xf5,0x83,0xe0,0x6f,0x60,0x03,0x7f,0x00,0x22,0x90,0x92,0x28,0xe0,0x04, 0xf0,0x80,0xe2,0x7f,0x00,0x22,0x90,0x06,0x32,0xe0,0x44,0x40,0xf0,0xe4,0x90,0x88, 0x88,0xf0,0xa3,0xf0,0x7f,0x01,0x22,0xff,0x90,0x92,0x25,0xe0,0x34,0x00,0xfe,0x22, 0x90,0x92,0x28,0xe0,0xfd,0xc3,0x94,0x02,0x22,0x90,0x92,0x25,0xe0,0xfe,0xa3,0xe0, 0xff,0xed,0x24,0x1c,0xfd,0x12,0x55,0x36,0x90,0x92,0x28,0xe0,0x22,0x90,0x86,0x72, 0xe0,0xc4,0x13,0x13,0x22,0x12,0x7b,0x3e,0x90,0x01,0x01,0xe0,0x22,0x90,0x84,0xa1, 0x74,0x02,0xf0,0xa3,0x74,0x10,0xf0,0x22,0xf5,0x83,0xe0,0x7a,0x00,0x24,0x00,0xff, 0xea,0x3e,0x22,0x90,0x01,0x94,0xe0,0x44,0x01,0xf0,0x90,0x01,0xc7,0xe4,0xf0,0x22, 0x90,0x92,0x4b,0xef,0xf0,0x90,0x84,0xc5,0xe0,0x64,0x02,0x70,0x22,0x90,0x92,0x4b, 0xe0,0xfd,0x64,0x01,0x70,0x35,0xb1,0x56,0x90,0x86,0x76,0xe0,0x12,0x8d,0x0e,0x30, 0xe0,0x09,0x90,0x01,0x4d,0xe0,0x64,0x80,0xf0,0x80,0x20,0xaf,0x05,0x80,0x19,0x90, 0x01,0x00,0x74,0xff,0xf0,0x7f,0x64,0x7e,0x00,0x12,0x7c,0x9f,0x90,0x06,0x90,0xe0, 0x44,0x01,0xf0,0x90,0x92,0x4b,0xe0,0xff,0x12,0x2a,0x87,0x90,0x88,0xe1,0xe0,0x54, 0xfe,0xf0,0x02,0x97,0xbb,0x7b,0xff,0x7a,0x83,0x79,0x09,0x90,0x89,0x1b,0x12,0x87, 0x6b,0x7a,0x82,0x79,0x00,0x90,0x89,0x1e,0x12,0x87,0x6b,0x7a,0x82,0x79,0x3f,0x90, 0x89,0x21,0x12,0x87,0x6b,0x7a,0x82,0x79,0xe1,0x90,0x89,0x27,0x12,0x87,0x6b,0x7a, 0x83,0x79,0x1d,0x90,0x89,0x2a,0x12,0x87,0x6b,0x7a,0x83,0x79,0x45,0x90,0x89,0x2d, 0x12,0x87,0x6b,0x7a,0x83,0x79,0x59,0x90,0x89,0x33,0x12,0x87,0x6b,0x7a,0x83,0x79, 0x6d,0x90,0x89,0x36,0x12,0x87,0x6b,0x7a,0x83,0x79,0x95,0x90,0x89,0x39,0x02,0x87, 0x6b,0x7d,0x02,0x90,0x01,0xc4,0x74,0x71,0xf0,0x74,0xa7,0xa3,0xf0,0x90,0x92,0x7f, 0xe0,0xff,0xed,0xc3,0x9f,0x50,0x15,0xed,0x25,0xe0,0x24,0x81,0xf8,0xe6,0x30,0xe4, 0x08,0x12,0x9f,0xe5,0xa3,0xf0,0x7f,0x00,0x22,0x0d,0x80,0xe1,0x7f,0x01,0x22,0xe4, 0x90,0x92,0x21,0xf0,0xa3,0xf0,0xa3,0xf0,0x90,0x92,0x21,0xe0,0x64,0x01,0xf0,0x24, 0x9f,0x90,0x01,0xc4,0xf0,0x74,0xa7,0xa3,0xf0,0x12,0x7c,0x66,0xbf,0x01,0x03,0x12, 0x5b,0x25,0x90,0x85,0xc5,0xe0,0x60,0x0f,0x90,0x85,0xc8,0xe0,0xff,0x90,0x85,0xc7, 0xe0,0x6f,0x60,0x03,0x12,0xac,0x6b,0xc2,0xaf,0xf1,0x71,0xbf,0x01,0x03,0x12,0xb2, 0xa2,0xd2,0xaf,0x90,0x92,0x22,0x12,0x99,0xdd,0x54,0x7f,0x45,0xf0,0x70,0x0d,0x7f, 0xff,0x12,0x7b,0x51,0xef,0x04,0xfd,0x7f,0xff,0x12,0x7b,0x3e,0x12,0x8f,0xf4,0x12, 0x84,0x4d,0x80,0xa4,0x32,0xc0,0xe0,0xc0,0xf0,0xc0,0x83,0xc0,0x82,0xc0,0xd0,0x75, 0xd0,0x00,0xc0,0x00,0xc0,0x01,0xc0,0x02,0xc0,0x03,0xc0,0x04,0xc0,0x05,0xc0,0x06, 0xc0,0x07,0x90,0x01,0xc4,0x74,0x05,0xf0,0x74,0xa8,0xa3,0xf0,0x12,0x6c,0xbc,0xe5, 0x47,0x30,0xe7,0x02,0x11,0x5c,0x74,0x05,0x04,0x90,0x01,0xc4,0xf0,0x74,0xa8,0xa3, 0xf0,0xd0,0x07,0xd0,0x06,0xd0,0x05,0xd0,0x04,0xd0,0x03,0xd0,0x02,0xd0,0x01,0xd0, 0x00,0xd0,0xd0,0xd0,0x82,0xd0,0x83,0xd0,0xf0,0xd0,0xe0,0x32,0x7f,0x01,0x7e,0x00, 0x12,0x7a,0x72,0x7f,0xf2,0x12,0x7b,0x51,0xef,0x20,0xe6,0x0e,0x7f,0x05,0x12,0x7b, 0x51,0xef,0x44,0x80,0xfd,0x7f,0x05,0x12,0x7b,0x3e,0x22,0xc0,0xe0,0xc0,0xf0,0xc0, 0x83,0xc0,0x82,0xc0,0xd0,0x75,0xd0,0x00,0xc0,0x00,0xc0,0x01,0xc0,0x02,0xc0,0x03, 0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0,0x07,0x90,0x01,0xc4,0x74,0x7b,0xf0,0x74,0xa8, 0xa3,0xf0,0x12,0x71,0x90,0xe5,0x4c,0x30,0xe1,0x02,0xf1,0x2b,0xe5,0x4c,0x30,0xe3, 0x03,0x12,0xb0,0xba,0xe5,0x4c,0x30,0xe4,0x02,0xf1,0xb4,0xe5,0x4c,0x30,0xe5,0x03, 0x12,0xb0,0xc7,0xe5,0x4e,0x30,0xe0,0x02,0x31,0x31,0xe5,0x4e,0x30,0xe1,0x03,0x12, 0x98,0x78,0xe5,0x4e,0x30,0xe2,0x02,0xd1,0xac,0xe5,0x4e,0x30,0xe3,0x02,0x91,0x15, 0xe5,0x4e,0x30,0xe4,0x02,0x91,0x3e,0xe5,0x4e,0x30,0xe5,0x03,0x12,0xb0,0x1b,0xe5, 0x4e,0x30,0xe6,0x02,0x91,0x74,0xe5,0x4f,0x30,0xe1,0x02,0xf1,0xd5,0xe5,0x4f,0x30, 0xe4,0x02,0xf1,0x30,0xe5,0x4f,0x30,0xe5,0x02,0xf1,0x28,0x74,0x7b,0x04,0x90,0x01, 0xc4,0xf0,0x74,0xa8,0xa3,0xf0,0xd0,0x07,0xd0,0x06,0xd0,0x05,0xd0,0x04,0xd0,0x03, 0xd0,0x02,0xd0,0x01,0xd0,0x00,0xd0,0xd0,0xd0,0x82,0xd0,0x83,0xd0,0xf0,0xd0,0xe0, 0x32,0xe4,0xf5,0x72,0x90,0x85,0xc5,0xe0,0x70,0x02,0x21,0xd1,0x91,0x0e,0x64,0x01, 0x60,0x02,0x21,0xd1,0x71,0x6b,0x12,0x87,0x3d,0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0, 0x07,0x90,0x05,0x62,0x71,0x84,0x78,0x10,0x12,0x04,0xd8,0xd0,0x03,0xd0,0x02,0xd0, 0x01,0xd0,0x00,0x12,0x87,0x3d,0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0,0x07,0xa3,0x71, 0x84,0x78,0x18,0x12,0x04,0xd8,0xd0,0x03,0xd0,0x02,0xd0,0x01,0xd0,0x00,0x91,0x62, 0xf1,0xbc,0x60,0x1e,0x24,0xfe,0x60,0x03,0x04,0x70,0x1a,0xd1,0xe3,0xe0,0xff,0x60, 0x06,0x90,0x85,0xce,0xe0,0x60,0x0e,0xef,0x70,0x08,0x90,0x85,0xcb,0xe0,0xa3,0xf0, 0x80,0x00,0x75,0x72,0x01,0xe5,0x72,0x60,0x28,0x91,0x5a,0x90,0x85,0xce,0xe0,0x60, 0x03,0xb4,0x01,0x04,0x91,0x04,0x80,0x08,0x91,0x04,0x75,0xf0,0x03,0xa4,0x24,0xfe, 0xff,0x90,0x85,0xcd,0xe0,0x2f,0x91,0x30,0x90,0x85,0xc8,0xe0,0x20,0xe2,0x02,0x31, 0xd2,0x22,0x7d,0x01,0x7f,0x04,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x90,0x92,0x9e, 0xed,0xf0,0x90,0x85,0xc1,0xe0,0xfe,0xc4,0x13,0x13,0x54,0x03,0x30,0xe0,0x02,0x61, 0x30,0xee,0x12,0x8d,0x0e,0x30,0xe0,0x02,0x61,0x30,0x90,0x85,0xc8,0xe0,0xfe,0x6f, 0x70,0x02,0x61,0x30,0xef,0x70,0x02,0x41,0x9c,0x24,0xfe,0x70,0x02,0x41,0xd8,0x24, 0xfe,0x60,0x4d,0x24,0xfc,0x70,0x02,0x61,0x17,0x24,0xfc,0x60,0x02,0x61,0x29,0xee, 0xb4,0x0e,0x03,0x12,0x74,0x93,0x90,0x85,0xc8,0xe0,0x70,0x05,0x7f,0x01,0x12,0x79, 0x80,0x90,0x85,0xc8,0xe0,0xb4,0x06,0x03,0x12,0x73,0x8e,0x90,0x85,0xc8,0xe0,0xb4, 0x04,0x0f,0x90,0x92,0x9e,0xe0,0xff,0x60,0x05,0x12,0x6d,0x4c,0x80,0x03,0x12,0x79, 0x61,0x90,0x85,0xc8,0xe0,0x64,0x08,0x60,0x02,0x61,0x29,0x12,0x7a,0xb9,0x61,0x29, 0x90,0x85,0xc8,0xe0,0x70,0x05,0x7f,0x01,0x12,0x79,0x80,0x90,0x85,0xc8,0xe0,0xb4, 0x06,0x03,0x12,0x73,0x8e,0x90,0x85,0xc8,0xe0,0xb4,0x0e,0x08,0x71,0x35,0xbf,0x01, 0x03,0x12,0x74,0x93,0x90,0x85,0xc8,0xe0,0x64,0x0c,0x60,0x02,0x61,0x29,0x71,0x35, 0xef,0x64,0x01,0x60,0x02,0x61,0x29,0x12,0x70,0x9e,0x61,0x29,0x90,0x85,0xc8,0xe0, 0xb4,0x0e,0x08,0x71,0x35,0xbf,0x01,0x03,0x12,0x74,0x93,0x90,0x85,0xc8,0xe0,0xb4, 0x06,0x03,0x12,0x73,0x8e,0x90,0x85,0xc8,0xe0,0xb4,0x0c,0x08,0x71,0x35,0xbf,0x01, 0x03,0x12,0x70,0x9e,0x90,0x85,0xc8,0xe0,0x64,0x04,0x70,0x5d,0xf1,0x3c,0xef,0x64, 0x01,0x70,0x56,0x12,0x77,0xfe,0x80,0x51,0x90,0x85,0xc8,0xe0,0xb4,0x0e,0x08,0x71, 0x35,0xbf,0x01,0x03,0x12,0x74,0x93,0x90,0x85,0xc8,0xe0,0xb4,0x06,0x03,0x12,0x73, 0x8e,0x90,0x85,0xc8,0xe0,0xb4,0x0c,0x08,0x71,0x35,0xbf,0x01,0x03,0x12,0x70,0x9e, 0x90,0x85,0xc8,0xe0,0x70,0x05,0x7f,0x01,0x12,0x79,0x80,0x90,0x85,0xc8,0xe0,0xb4, 0x04,0x17,0x12,0x79,0xf3,0x80,0x12,0x90,0x85,0xc8,0xe0,0xb4,0x0c,0x0b,0x12,0x8f, 0xaf,0x54,0x3f,0x30,0xe0,0x03,0x12,0x7a,0x8a,0x90,0x85,0xc8,0x12,0xb3,0x8a,0xf0, 0xd0,0xd0,0x92,0xaf,0x22,0x12,0x7a,0x29,0xef,0x64,0x01,0x60,0x04,0xf1,0x35,0x80, 0x21,0x90,0x85,0xc1,0xe0,0x13,0x13,0x13,0x54,0x1f,0x30,0xe0,0x05,0x12,0x9f,0xec, 0x80,0x10,0x90,0x85,0xc7,0xe0,0xd3,0x94,0x04,0x40,0x05,0x12,0x9f,0xe5,0x80,0x02, 0xe1,0xac,0x90,0x01,0xb9,0x74,0x02,0xf0,0x7f,0x00,0x22,0x90,0x05,0x61,0xe0,0xff, 0xe4,0xfc,0xfd,0xfe,0x78,0x08,0x12,0x04,0xd8,0xa8,0x04,0xa9,0x05,0xaa,0x06,0xab, 0x07,0x90,0x05,0x60,0xe0,0xff,0xe4,0xfc,0xfd,0xfe,0x22,0xe4,0x90,0x92,0x47,0xf0, 0x90,0x85,0xc5,0xe0,0x60,0x6d,0x91,0x0e,0x64,0x01,0x70,0x67,0x90,0x85,0xcb,0xe0, 0x90,0x05,0x73,0xf0,0x71,0x6b,0x12,0x87,0x3d,0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0, 0x07,0x90,0x05,0x62,0x71,0x84,0x78,0x10,0x12,0x04,0xd8,0xd0,0x03,0xd0,0x02,0xd0, 0x01,0xd0,0x00,0x12,0x87,0x3d,0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0,0x07,0xa3,0x71, 0x84,0x78,0x18,0x12,0x04,0xd8,0xd0,0x03,0xd0,0x02,0xd0,0x01,0xd0,0x00,0x91,0x62, 0x90,0x92,0x47,0x74,0x01,0xf0,0xe4,0x90,0x85,0xcc,0xf0,0x04,0x60,0x15,0x91,0x5a, 0xe4,0x90,0x91,0x6e,0xf0,0x90,0x85,0xcd,0x91,0x2f,0x90,0x85,0xc8,0xe0,0x20,0xe2, 0x02,0x31,0xd2,0x22,0xe4,0x90,0x91,0x6e,0xf0,0x90,0x85,0xce,0xe0,0x22,0xe4,0xff, 0x12,0x77,0x39,0xef,0x22,0x91,0x0e,0x64,0x01,0x70,0x0a,0x90,0x85,0xc5,0xe0,0x60, 0x04,0xb1,0x6b,0x91,0x26,0x22,0xf0,0xe4,0x90,0x91,0x6e,0xf0,0x90,0x86,0x6e,0xe0, 0x90,0x91,0x6f,0xf0,0xe4,0xfb,0xfd,0x7f,0x54,0x7e,0x01,0x02,0x61,0x41,0x91,0x0e, 0x64,0x01,0x70,0x15,0x90,0x85,0xc5,0xe0,0x60,0x0f,0xb1,0x6b,0xf0,0x90,0x85,0xc1, 0xe0,0xb1,0x76,0x54,0x07,0x70,0x02,0x91,0x6b,0x22,0x90,0x85,0xc9,0xe0,0x44,0x10, 0xf0,0x22,0x12,0x87,0x3d,0x90,0x86,0x02,0x02,0x04,0xeb,0x90,0x85,0xc7,0xe0,0xff, 0x7d,0x01,0x21,0xd6,0xe4,0xff,0x12,0x77,0x39,0xbf,0x01,0x0e,0x90,0x85,0xc5,0xe0, 0x60,0x08,0x91,0xdf,0x54,0x07,0x70,0x02,0x91,0x6b,0x22,0xe4,0xf5,0x72,0x90,0x06, 0xa9,0xe0,0xf5,0x72,0x54,0xc0,0x70,0x07,0x91,0xdf,0x54,0xfd,0xf0,0x80,0xcc,0xe5, 0x72,0x30,0xe6,0x1f,0x90,0x85,0xc5,0xe0,0x64,0x01,0x70,0x19,0x90,0x85,0xc9,0xe0, 0x44,0x01,0x12,0x8c,0xec,0x64,0x02,0x60,0x05,0x12,0x77,0x61,0x80,0x07,0x12,0x79, 0x41,0x80,0x02,0x91,0xdf,0xe5,0x72,0x90,0x85,0xc9,0x30,0xe7,0x0d,0xe0,0x44,0x02, 0x91,0x26,0x90,0x85,0xc1,0xe0,0x44,0x04,0xf0,0x22,0xe0,0x54,0xfd,0xf0,0x22,0x90, 0x85,0xc9,0xe0,0x54,0xfe,0xf0,0x22,0x12,0x8f,0xaf,0x13,0x54,0x1f,0x30,0xe0,0x10, 0xef,0xc4,0x13,0x13,0x54,0x03,0x30,0xe0,0x07,0x7d,0x02,0x7f,0x02,0x12,0x7c,0x41, 0x90,0x85,0xc1,0xe0,0xff,0x13,0x13,0x54,0x3f,0x30,0xe0,0x09,0xef,0xb1,0x76,0x54, 0x07,0x70,0x4f,0x80,0x4b,0x90,0x85,0xce,0xe0,0x04,0xf0,0x90,0x85,0xc9,0xe0,0x54, 0xef,0xf0,0x90,0x86,0x6d,0xe0,0xff,0x90,0x85,0xce,0xe0,0xd3,0x9f,0x40,0x31,0x91, 0x0e,0x64,0x01,0x70,0x2d,0x12,0x8c,0xed,0x70,0x05,0x12,0x70,0xdb,0x80,0x24,0x12, 0x70,0xdb,0x90,0x85,0xcf,0xe0,0x04,0xf0,0xe0,0xd3,0x94,0x02,0x40,0x09,0xb1,0x63, 0xe4,0x90,0x85,0xcf,0xf0,0x80,0x03,0x12,0x79,0x41,0xe4,0x90,0x85,0xce,0xf0,0x22, 0x91,0x6b,0x22,0x90,0x85,0xc2,0xe0,0x54,0xfb,0xf0,0x22,0x90,0x01,0x57,0xe4,0xf0, 0x90,0x01,0x3c,0x74,0x02,0x22,0x54,0xfb,0xf0,0x90,0x85,0xc9,0xe0,0x54,0xfd,0xf0, 0x22,0x71,0x8b,0x12,0xb3,0x97,0x12,0x8f,0x92,0x90,0x92,0x7b,0xe0,0x30,0xe0,0x14, 0xf1,0xcc,0x90,0x92,0x7e,0xe0,0x60,0x05,0x14,0xf0,0x02,0x7a,0x8a,0xf1,0xdf,0xe4, 0xff,0x12,0x8b,0xf3,0x22,0x90,0x85,0xc5,0xe0,0x60,0x0e,0x90,0x06,0x92,0xe0,0x30, 0xe1,0x03,0x02,0x6b,0x98,0xf1,0xc4,0x91,0x6b,0x22,0x90,0x85,0xc1,0x12,0x96,0xca, 0x30,0xe0,0x18,0xef,0x54,0xbf,0xd1,0x8f,0x30,0xe0,0x06,0xe0,0x44,0x01,0xf0,0x80, 0x08,0xe0,0x54,0xfe,0xd1,0xa1,0x74,0x04,0xf0,0x91,0x6b,0xe4,0xff,0x02,0x68,0x8f, 0xc0,0xe0,0xc0,0xf0,0xc0,0x83,0xc0,0x82,0xc0,0xd0,0x75,0xd0,0x00,0xc0,0x00,0xc0, 0x01,0xc0,0x02,0xc0,0x03,0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0,0x07,0x90,0x01,0xc4, 0x74,0xe0,0xf0,0x74,0xad,0xa3,0xf0,0x12,0x75,0x28,0xe5,0x56,0x30,0xe1,0x02,0xd1, 0x98,0xe5,0x56,0x30,0xe2,0x02,0xb1,0xa5,0xe5,0x57,0x30,0xe0,0x02,0xd1,0xea,0xe5, 0x59,0x30,0xe1,0x05,0x7f,0x04,0x12,0x98,0x69,0xe5,0x59,0x30,0xe4,0x02,0xb1,0x81, 0xe5,0x59,0x30,0xe5,0x02,0xb1,0xba,0xe5,0x59,0x30,0xe6,0x02,0xd1,0x64,0x74,0xe0, 0x04,0x90,0x01,0xc4,0xf0,0x74,0xad,0xa3,0xf0,0xd0,0x07,0xd0,0x06,0xd0,0x05,0xd0, 0x04,0xd0,0x03,0xd0,0x02,0xd0,0x01,0xd0,0x00,0xd0,0xd0,0xd0,0x82,0xd0,0x83,0xd0, 0xf0,0xd0,0xe0,0x32,0x90,0x85,0xc1,0x12,0x8d,0x0c,0x30,0xe0,0x1d,0xef,0x54,0x7f, 0xd1,0x8f,0x30,0xe1,0x06,0xe0,0x44,0x02,0xf0,0x80,0x07,0xe0,0x54,0xfd,0xd1,0xa1, 0x04,0xf0,0x90,0x85,0xc5,0xe0,0x60,0x02,0x91,0x6b,0x7f,0x01,0x02,0x68,0x8f,0xf0, 0x90,0x04,0xe0,0xe0,0x90,0x85,0xc2,0x22,0x90,0x85,0xc5,0xe0,0x60,0x02,0x91,0xe7, 0x22,0xf0,0x90,0x01,0xb9,0x74,0x01,0xf0,0x90,0x01,0xb8,0x22,0x90,0x88,0xe7,0xe0, 0x04,0xf0,0x90,0x85,0xc8,0xe0,0x64,0x02,0x60,0x28,0x12,0x8e,0xc1,0x90,0x85,0xc2, 0xe0,0x13,0x13,0x13,0x54,0x1f,0x30,0xe0,0x13,0x12,0x8f,0xb7,0x6f,0x70,0x0d,0xef, 0x14,0x12,0x8c,0x35,0x12,0x7b,0xfd,0x12,0x8f,0xf6,0xd1,0xe3,0x90,0x01,0xe6,0xe0, 0x04,0xf0,0x22,0x90,0x85,0xcc,0xe0,0x14,0xf0,0x22,0x12,0xb2,0x3c,0x90,0x92,0x47, 0xef,0xf0,0x30,0xe0,0x05,0x7d,0x01,0xe4,0x80,0x02,0xe4,0xfd,0xff,0x12,0x57,0x82, 0x90,0x92,0x47,0xe0,0x30,0xe6,0x11,0x90,0x01,0x2f,0xe0,0x30,0xe7,0x04,0xe4,0xf0, 0x80,0x06,0x90,0x01,0x2f,0x74,0x80,0xf0,0x90,0x85,0xd7,0xe0,0xff,0xa3,0xe0,0xfd, 0x90,0x85,0xde,0xe0,0xfb,0x02,0x51,0x7d,0x02,0x4d,0x6e,0xe4,0xff,0x02,0x97,0xee, 0xe4,0xff,0x02,0x2d,0xbd,0x90,0x01,0xb8,0x74,0x01,0xf0,0x22,0x12,0x7a,0x29,0xef, 0x64,0x01,0x60,0x04,0xf1,0x35,0x80,0x5b,0x90,0x85,0xc9,0xe0,0xff,0x54,0x03,0x60, 0x05,0x12,0x9f,0xec,0x80,0x4d,0x90,0x85,0xc7,0xe0,0xfe,0xe4,0xc3,0x9e,0x50,0x08, 0x90,0x01,0xb8,0x74,0x04,0xf0,0x80,0x3b,0xef,0x30,0xe2,0x05,0x12,0x9f,0xe5,0x80, 0x32,0x90,0x85,0xc9,0xe0,0x30,0xe4,0x08,0x90,0x01,0xb8,0x74,0x10,0xf0,0x80,0x23, 0x90,0x85,0xc2,0xe0,0x13,0x13,0x54,0x3f,0x20,0xe0,0x08,0x90,0x01,0xb8,0x74,0x20, 0xf0,0x80,0x10,0x90,0x86,0x71,0xe0,0x60,0x08,0x90,0x01,0xb8,0x74,0x80,0xf0,0x80, 0x02,0x80,0x09,0x90,0x01,0xb9,0x74,0x04,0xf0,0x7f,0x00,0x22,0x90,0x01,0xb8,0xe4, 0xf0,0x7f,0x01,0x22,0x12,0x40,0xb9,0x7f,0x02,0x02,0x98,0x69,0x90,0x85,0xc3,0xe0, 0xc4,0x54,0x0f,0x22,0x90,0x85,0xc1,0xe0,0x54,0xf7,0xf0,0x22,0x90,0x92,0x7d,0xe0, 0x90,0x05,0x73,0xf0,0x22,0x90,0x85,0xc5,0xe0,0x60,0x03,0x12,0x9e,0xc4,0x22,0x90, 0x92,0x7c,0xe0,0x14,0x90,0x92,0x7e,0xf0,0x22,0x32,0xc0,0xe0,0xc0,0x83,0xc0,0x82, 0xc0,0xd0,0x75,0xd0,0x00,0xc0,0x05,0xc0,0x07,0x7d,0xea,0x90,0x01,0xc4,0xed,0xf0, 0x74,0xaf,0xff,0xa3,0xf0,0xed,0x04,0x90,0x01,0xc4,0xf0,0xa3,0xef,0xf0,0xd0,0x07, 0xd0,0x05,0xd0,0xd0,0xd0,0x82,0xd0,0x83,0xd0,0xe0,0x32,0xe4,0xff,0x12,0x77,0x39, 0xbf,0x01,0x13,0x90,0x85,0xc5,0xe0,0x60,0x0d,0x12,0x8c,0xed,0x64,0x02,0x60,0x03, 0x02,0x77,0x61,0x12,0x79,0x41,0x22,0xe4,0x90,0x92,0x98,0xf0,0xa3,0xf0,0x90,0x05, 0xf8,0xe0,0x70,0x0f,0xa3,0xe0,0x70,0x0b,0xa3,0xe0,0x70,0x07,0xa3,0xe0,0x70,0x03, 0x7f,0x01,0x22,0xd3,0x90,0x92,0x99,0xe0,0x94,0xe8,0x90,0x92,0x98,0xe0,0x94,0x03, 0x40,0x0a,0x90,0x01,0xc0,0xe0,0x44,0x20,0xf0,0x7f,0x00,0x22,0x7f,0x32,0x7e,0x00, 0x12,0x7c,0x9f,0x90,0x92,0x98,0x12,0x99,0xdd,0x80,0xc3,0xef,0x60,0x0a,0xed,0xd3, 0x94,0x0b,0x40,0x04,0x7e,0x20,0x80,0x02,0xe4,0xfe,0xed,0x2e,0xff,0x22,0x90,0x92, 0x8d,0x12,0x87,0x6b,0xe4,0xff,0x90,0x92,0x8d,0x12,0x87,0x62,0x8f,0x82,0x75,0x83, 0x00,0x12,0x03,0x0f,0xfe,0x74,0xf0,0x2f,0x11,0xb2,0xee,0xf0,0x0f,0xef,0xb4,0x10, 0xe5,0x22,0xf5,0x82,0xe4,0x34,0x02,0xf5,0x83,0x22,0x90,0x86,0x72,0xe0,0x30,0xe0, 0x05,0x7f,0x10,0x12,0x98,0x69,0x22,0x90,0x01,0xcf,0xe0,0x90,0x92,0x36,0xf0,0xe0, 0xff,0x30,0xe0,0x07,0x90,0x01,0xcf,0xe0,0x54,0xfe,0xf0,0xef,0x30,0xe5,0x23,0x90, 0x01,0xcf,0xe0,0x54,0xdf,0xf0,0x90,0x01,0x34,0x74,0x20,0xf0,0xe4,0xf5,0xa8,0xf5, 0xe8,0x12,0x75,0xb6,0x90,0x00,0x03,0xe0,0x54,0xfb,0xfd,0x7f,0x03,0x12,0x7b,0x3e, 0x80,0xfe,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x90,0x04,0x1d,0xe0,0x60,0x1a, 0x90,0x05,0x22,0xe0,0x54,0x90,0x60,0x07,0x90,0x01,0xc0,0xe0,0x44,0x08,0xf0,0x90, 0x01,0xc6,0xe0,0x30,0xe1,0xe4,0x7f,0x00,0x80,0x02,0x7f,0x01,0xd0,0xd0,0x92,0xaf, 0x22,0xc3,0xee,0x94,0x01,0x40,0x0a,0x0d,0xed,0x13,0x90,0xfd,0x10,0xf0,0xe4,0x2f, 0xff,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x90,0x92,0x65,0xee,0xf0,0xa3,0xef, 0xf0,0x12,0x70,0x61,0x90,0x92,0x6f,0x12,0x04,0xeb,0x90,0x92,0x67,0x12,0x87,0x4a, 0x12,0x04,0xa7,0x90,0x92,0x6f,0x12,0x87,0x56,0x12,0x87,0x30,0xc0,0x04,0xc0,0x05, 0xc0,0x06,0xc0,0x07,0x90,0x92,0x67,0x12,0x87,0x4a,0x90,0x92,0x6b,0x12,0x87,0x56, 0x12,0x87,0x30,0xd0,0x03,0xd0,0x02,0xd0,0x01,0xd0,0x00,0x12,0x87,0x3d,0x90,0x92, 0x73,0x12,0x04,0xeb,0x90,0x92,0x73,0x12,0x87,0x4a,0x90,0x91,0x66,0x12,0x04,0xeb, 0x90,0x92,0x65,0xe0,0xfe,0xa3,0xe0,0xff,0x12,0x71,0x18,0xd0,0xd0,0x92,0xaf,0x22, 0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xe4,0xfe,0xef,0x54,0xe0,0xc4,0x13,0x54,0x07, 0xfd,0xef,0x54,0x1f,0xff,0xed,0x60,0x2c,0x14,0x60,0x1e,0x24,0xfd,0x60,0x0f,0x24, 0xfe,0x70,0x2a,0xef,0x25,0xe0,0xff,0xc3,0x74,0xde,0x9f,0xfe,0x80,0x1f,0xef,0x25, 0xe0,0xff,0xc3,0x74,0xf2,0x9f,0xfe,0x80,0x14,0xef,0x25,0xe0,0xff,0xc3,0x74,0x06, 0x9f,0xfe,0x80,0x09,0xef,0x25,0xe0,0xff,0xc3,0x74,0x10,0x9f,0xfe,0xaf,0x06,0xd0, 0xd0,0x92,0xaf,0x22,0xd3,0xef,0x64,0x80,0x94,0x1c,0x40,0x07,0xef,0x64,0x80,0x94, 0x94,0x40,0x03,0x7f,0x00,0x22,0xc3,0xef,0x64,0x80,0x94,0x80,0x40,0x03,0x7f,0x64, 0x22,0xef,0x24,0x64,0xff,0x22,0xef,0x90,0x02,0x86,0x60,0x06,0xe0,0x44,0x04,0xf0, 0x80,0x04,0xe0,0x54,0xfb,0xf0,0x90,0x92,0x78,0xed,0xf0,0x22,0xe4,0x90,0x92,0x48, 0xf0,0xa3,0xf0,0xa3,0xf0,0x7f,0x83,0x12,0x7b,0x51,0x90,0x92,0x48,0xef,0xf0,0x7f, 0x83,0x12,0x7b,0x51,0xae,0x07,0x90,0x92,0x48,0xe0,0xff,0xb5,0x06,0x01,0x22,0xc3, 0x90,0x92,0x4a,0xe0,0x94,0x64,0x90,0x92,0x49,0xe0,0x94,0x00,0x40,0x0d,0x90,0x01, 0xc0,0xe0,0x44,0x40,0xf0,0x90,0x92,0x48,0xe0,0xff,0x22,0x90,0x92,0x49,0x12,0x99, 0xdd,0x80,0xc2,0x90,0x01,0xc4,0x74,0x83,0xf0,0x74,0xb2,0xa3,0xf0,0x7f,0x90,0x12, 0x7b,0x51,0xef,0x20,0xe0,0xf7,0x74,0x83,0x04,0x90,0x01,0xc4,0xf0,0x74,0xb2,0xa3, 0xf0,0x22,0x90,0x85,0xc1,0xe0,0x30,0xe0,0x03,0x12,0x9b,0x4e,0x22,0x90,0x92,0x7b, 0xe0,0x30,0xe0,0x0a,0x90,0x01,0x3b,0xe0,0x30,0xe4,0x03,0x12,0x8f,0xf6,0x22,0x90, 0x92,0x4c,0xee,0xf0,0xa3,0xef,0xf0,0xe4,0x90,0x92,0x50,0xf0,0x7d,0x09,0x12,0x55, 0x36,0xef,0x64,0x06,0x70,0x2a,0x71,0x60,0x7d,0x14,0x12,0x55,0x36,0xef,0x70,0x20, 0x71,0x60,0x7d,0x15,0x12,0x55,0x36,0xef,0x64,0x50,0x70,0x14,0x71,0x60,0x7d,0x21, 0x12,0x55,0x36,0xef,0x20,0xe0,0x03,0x30,0xe2,0x06,0x90,0x92,0x50,0x74,0x01,0xf0, 0x90,0x86,0x73,0xe0,0x13,0x13,0x54,0x3f,0x30,0xe0,0x3f,0x71,0x60,0x7d,0x09,0x12, 0x55,0x36,0xef,0x64,0x11,0x70,0x33,0x90,0x92,0x4d,0xe0,0x24,0x14,0xff,0x90,0x92, 0x4c,0xe0,0x34,0x00,0xfe,0x90,0x92,0x4e,0xf0,0xa3,0xef,0xf0,0x7d,0x02,0x12,0x55, 0x36,0xef,0x70,0x16,0x90,0x92,0x4e,0xe0,0xfe,0xa3,0xe0,0xff,0x7d,0x03,0x12,0x55, 0x36,0xbf,0x89,0x06,0x90,0x92,0x50,0x74,0x01,0xf0,0x90,0x92,0x50,0xe0,0xff,0x90, 0x84,0xbf,0xa3,0xe0,0x24,0x7f,0xf5,0x82,0xe4,0x34,0x82,0xf5,0x83,0xef,0xf0,0x22, 0x90,0x92,0x4c,0xe0,0xfe,0xa3,0xe0,0xff,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0, 0xe4,0xfd,0x7f,0x8f,0x12,0x7b,0x3e,0xd0,0xd0,0x92,0xaf,0x22,0x90,0x05,0x62,0xe0, 0xfe,0x90,0x05,0x61,0xe0,0xfd,0xed,0x78,0x02,0x22,0xe0,0x90,0x01,0xba,0xf0,0x90, 0x85,0xc7,0xe0,0x90,0x01,0xbb,0x22,0x90,0x85,0xcb,0xe0,0x14,0x90,0x05,0x73,0xf0, 0x22,0x90,0x92,0x36,0xee,0xf0,0xa3,0xef,0xf0,0x22,0x6b,0x7c,}; u4Byte <API key> = 13260; void <API key>( IN PDM_ODM_T pDM_Odm, OUT u1Byte *pFirmware, OUT u4Byte *pFirmwareSize ) { #if (DM_ODM_SUPPORT_TYPE & (ODM_CE)) *((SIZE_PTR *)pFirmware) = (SIZE_PTR)<API key>; #else ODM_MoveMemory(pDM_Odm, pFirmware, <API key>, <API key>); #endif *pFirmwareSize = <API key>; } // <API key> u1Byte <API key>[] = { 0xf1,0x88,0x30,0x00,0x00,0x00,0x00,0x00,0x03,0x13,0x16,0x44,0xac,0x33,0x02,0x00, 0xcc,0xcc,0xcc,0xcc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x02,0x86,0xad,0x02,0xa8,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x02,0xa8,0x7b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x02,0xaf,0xea,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x02,0xa8,0x05,0x00,0x00,0x00,0x00,0x00,0x02,0xad,0xe0,0x00,0x00, 0x00,0x00,0x00,0x02,0xaf,0xe9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x02,0x87,0xa5,0x02,0x8a,0xc3,0x02,0x80,0x86,0x02,0x80,0x89,0x02,0x80,0x8c,0x02, 0xa9,0xd6,0x02,0x98,0x69,0x02,0x80,0x95,0x02,0x80,0x98,0x02,0x80,0x9b,0x02,0x80, 0x9e,0x02,0x80,0xa1,0x02,0x80,0xa4,0x02,0x80,0xa7,0x02,0x80,0xaa,0x02,0x80,0xad, 0x02,0x80,0xb0,0x02,0x80,0xb3,0x02,0x80,0xb6,0x02,0x80,0xb9,0x02,0x80,0xbc,0x02, 0x80,0xbf,0x02,0x80,0xc2,0x02,0x80,0xc5,0x02,0x80,0xc8,0x02,0x80,0xcb,0x02,0x80, 0xce,0x02,0x80,0xd1,0x02,0xb2,0xbf,0x02,0x80,0xd7,0x00,0x00,0x00,0x02,0x80,0xdd, 0x02,0x80,0xe0,0x02,0x80,0xe3,0x02,0x80,0xe6,0x02,0xa6,0xc0,0x02,0x80,0xec,0x02, 0x80,0xef,0x02,0x80,0xf2,0x02,0x80,0xf5,0x02,0x80,0xf8,0x02,0x80,0xfb,0x02,0x80, 0xfe,0x02,0x81,0x01,0x02,0x81,0x04,0x02,0x81,0x07,0x02,0x81,0x0a,0x02,0x81,0x0d, 0x02,0x81,0x10,0x02,0x81,0x13,0x02,0x81,0x16,0x02,0x81,0x19,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x02,0x9f,0x11,0x02,0x9f,0x5f,0x02,0xb0,0x37,0x02,0x9e,0xb8, 0x02,0x81,0x40,0x02,0xab,0x35,0x02,0xaf,0x3c,0x02,0x81,0x49,0x02,0x81,0x4c,0x02, 0x81,0x4f,0x02,0x81,0x52,0x02,0x81,0x55,0x02,0x81,0x58,0x02,0x81,0x5b,0x02,0x81, 0x5e,0x02,0x81,0x61,0x02,0x81,0x64,0x02,0x81,0x67,0x02,0x81,0x6a,0x02,0x81,0x6d, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x15,0xf0,0xff,0x0f,0x00,0x00,0x00,0x15,0xf0,0x0f,0x00,0x00,0x00,0x00,0x05,0xf0, 0xff,0x0f,0x00,0x00,0x00,0x05,0xf0,0x0f,0x00,0x00,0x00,0x00,0x10,0xf0,0xff,0x0f, 0x00,0x00,0x00,0x10,0xf0,0x0f,0x00,0x00,0x00,0x00,0xf5,0x0f,0x00,0x00,0x00,0x00, 0x00,0xf0,0x0f,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x0a, 0x08,0x03,0x03,0x00,0x04,0x09,0x07,0x03,0x03,0x00,0x04,0x08,0x06,0x03,0x02,0x00, 0x04,0x08,0x05,0x03,0x01,0x00,0x04,0x0d,0x0a,0x07,0x05,0x00,0x08,0x0c,0x0a,0x07, 0x04,0x00,0x08,0x0b,0x0a,0x06,0x05,0x00,0x08,0x0b,0x0a,0x05,0x03,0x00,0x08,0x0b, 0x0a,0x03,0x02,0x00,0x08,0x14,0x12,0x0c,0x04,0x00,0x10,0x14,0x12,0x09,0x04,0x00, 0x10,0x24,0x22,0x1c,0x12,0x00,0x20,0x24,0x22,0x18,0x0c,0x00,0x20,0x24,0x22,0x14, 0x06,0x00,0x20,0x24,0x22,0x0f,0x04,0x00,0x20,0x24,0x21,0x0a,0x04,0x00,0x20,0x23, 0x21,0x0c,0x04,0x00,0x20,0x23,0x1f,0x0a,0x04,0x00,0x20,0x22,0x1f,0x0f,0x04,0x00, 0x20,0x21,0x1f,0x16,0x0c,0x00,0x20,0x31,0x2f,0x20,0x14,0x00,0x30,0x31,0x2f,0x18, 0x10,0x00,0x30,0x31,0x2c,0x18,0x0c,0x00,0x30,0x31,0x2a,0x14,0x0c,0x00,0x30,0x31, 0x28,0x14,0x00,0x00,0x30,0x31,0x24,0x14,0x00,0x00,0x30,0x31,0x1e,0x14,0x00,0x00, 0x30,0x04,0x04,0x04,0x05,0x04,0x04,0x05,0x07,0x07,0x07,0x08,0x0a,0x04,0x07,0x0a, 0x0e,0x11,0x13,0x14,0x15,0x04,0x04,0x04,0x05,0x07,0x07,0x09,0x09,0x0c,0x0e,0x10, 0x12,0x05,0x06,0x07,0x0c,0x11,0x11,0x12,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x24,0x26,0x2a,0x00,0x00,0x00,0x1f,0x21,0x25,0x27,0x28,0x00,0x04,0x00, 0x04,0x00,0x08,0x00,0x10,0x00,0x18,0x00,0x24,0x00,0x30,0x00,0x48,0x00,0x60,0x00, 0x90,0x00,0xc0,0x00,0xd8,0x00,0x46,0x00,0x64,0x00,0x78,0x00,0xb4,0x01,0x04,0x01, 0x86,0x01,0xa4,0x01,0xe0,0x02,0x02,0x04,0x08,0x0c,0x12,0x18,0x24,0x30,0x48,0x60, 0x6c,0x14,0x28,0x32,0x50,0x78,0xa0,0xc8,0xf0,0x01,0x01,0x01,0x02,0x01,0x02,0x03, 0x03,0x04,0x04,0x05,0x05,0x02,0x04,0x06,0x07,0x07,0x08,0x08,0x08,0x01,0x01,0x01, 0x01,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x01,0x02,0x03,0x04,0x05,0x06,0x07, 0x08,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05, 0x05,0x05,0x04,0x03,0x02,0x19,0x06,0x04,0x02,0x00,0x18,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xc2,0xaf,0x80,0xfe,0x32,0x12,0x84,0x04,0x85,0xd0,0x0b,0x75,0xd0,0x08,0xaa,0xe0, 0xc2,0x8c,0xe5,0x8a,0x24,0x67,0xf5,0x8a,0xe5,0x8c,0x34,0x79,0xf5,0x8c,0xd2,0x8c, 0xec,0x24,0x87,0xf8,0xe6,0xbc,0x02,0x02,0x74,0xff,0xc3,0x95,0x81,0xb4,0x40,0x00, 0x40,0xce,0x79,0x03,0x78,0x80,0x16,0xe6,0x08,0x70,0x0b,0xc2,0xaf,0xe6,0x30,0xe1, 0x03,0x44,0x18,0xf6,0xd2,0xaf,0x08,0xd9,0xed,0xea,0x8b,0xd0,0x22,0xe5,0x0c,0xff, 0x23,0x24,0x81,0xf8,0x0f,0x08,0x08,0xbf,0x03,0x04,0x7f,0x00,0x78,0x81,0xe6,0x30, 0xe4,0xf2,0x00,0xe5,0x0c,0xc3,0x9f,0x50,0x20,0x05,0x0c,0x74,0x86,0x25,0x0c,0xf8, 0xe6,0xfd,0xa6,0x81,0x08,0xe6,0xae,0x0c,0xbe,0x02,0x02,0x74,0xff,0xcd,0xf8,0xe8, 0x6d,0x60,0xe0,0x08,0xe6,0xc0,0xe0,0x80,0xf6,0xe5,0x0c,0xd3,0x9f,0x40,0x27,0xe5, 0x0c,0x24,0x87,0xf8,0xe6,0xae,0x0c,0xbe,0x02,0x02,0x74,0xff,0xfd,0x18,0xe6,0xcd, 0xf8,0xe5,0x81,0x6d,0x60,0x06,0xd0,0xe0,0xf6,0x18,0x80,0xf5,0xe5,0x0c,0x24,0x86, 0xc8,0xf6,0x15,0x0c,0x80,0xd3,0xe5,0x0c,0x23,0x24,0x81,0xf8,0x7f,0x04,0xc2,0xaf, 0xe6,0x30,0xe0,0x03,0x10,0xe2,0x0c,0x7f,0x00,0x30,0xe1,0x07,0x30,0xe3,0x04,0x7f, 0x08,0x54,0xf4,0x54,0x7c,0xc6,0xd2,0xaf,0x54,0x80,0x42,0x07,0x22,0x78,0x86,0xa6, 0x81,0x74,0x02,0x60,0x06,0xff,0x08,0x76,0xff,0xdf,0xfb,0x7f,0x03,0xe4,0x78,0x80, 0xf6,0x08,0xf6,0x08,0xdf,0xfa,0x78,0x81,0x76,0x30,0x90,0x87,0x9a,0x74,0x01,0x93, 0xc0,0xe0,0xe4,0x93,0xc0,0xe0,0x43,0x89,0x01,0x75,0x8a,0x60,0x75,0x8c,0x79,0xd2, 0x8c,0xd2,0xaf,0x22,0x02,0xef,0xd3,0x94,0x02,0x40,0x03,0x7f,0xff,0x22,0x74,0x81, 0x2f,0x2f,0xf8,0xe6,0x20,0xe5,0xf4,0xc2,0xaf,0xe6,0x44,0x30,0xf6,0xd2,0xaf,0xae, 0x0c,0xee,0xc3,0x9f,0x50,0x21,0x0e,0x74,0x86,0x2e,0xf8,0xe6,0xf9,0x08,0xe6,0x18, 0xbe,0x02,0x02,0x74,0xff,0xfd,0xed,0x69,0x60,0x09,0x09,0xe7,0x19,0x19,0xf7,0x09, 0x09,0x80,0xf3,0x16,0x16,0x80,0xda,0xee,0xd3,0x9f,0x40,0x04,0x05,0x81,0x05,0x81, 0xee,0xd3,0x9f,0x40,0x22,0x74,0x86,0x2e,0xf8,0x08,0xe6,0xf9,0xee,0xb5,0x0c,0x02, 0xa9,0x81,0x18,0x06,0x06,0xe6,0xfd,0xed,0x69,0x60,0x09,0x19,0x19,0xe7,0x09,0x09, 0xf7,0x19,0x80,0xf3,0x1e,0x80,0xd9,0xef,0x24,0x86,0xf8,0xe6,0x04,0xf8,0xef,0x2f, 0x04,0x90,0x87,0x9a,0x93,0xf6,0x08,0xef,0x2f,0x93,0xf6,0x7f,0x00,0x22,0xef,0xd3, 0x94,0x02,0x40,0x03,0x7f,0xff,0x22,0xef,0x23,0x24,0x81,0xf8,0xe6,0x30,0xe5,0xf4, 0xc2,0xaf,0xe6,0x54,0x8c,0xf6,0xd2,0xaf,0xe5,0x0c,0xb5,0x07,0x0a,0x74,0x86,0x2f, 0xf8,0xe6,0xf5,0x81,0x02,0x84,0x4d,0x50,0x2e,0x74,0x87,0x2f,0xf8,0xe6,0xbf,0x02, 0x02,0x74,0xff,0xfd,0x18,0xe6,0xf9,0x74,0x86,0x2f,0xf8,0xfb,0xe6,0xfc,0xe9,0x6c, 0x60,0x08,0xa8,0x05,0xe7,0xf6,0x1d,0x19,0x80,0xf4,0xa8,0x03,0xa6,0x05,0x1f,0xe5, 0x0c,0xb5,0x07,0xe3,0x7f,0x00,0x22,0x74,0x87,0x2f,0xf8,0xe6,0xfd,0x18,0x86,0x01, 0x0f,0x74,0x86,0x2f,0xf8,0xa6,0x01,0x08,0x86,0x04,0xe5,0x0c,0xb5,0x07,0x02,0xac, 0x81,0xed,0x6c,0x60,0x08,0x0d,0x09,0xa8,0x05,0xe6,0xf7,0x80,0xf4,0xe5,0x0c,0xb5, 0x07,0xde,0x89,0x81,0x7f,0x00,0x22,0xef,0xd3,0x94,0x02,0x40,0x03,0x7f,0xff,0x22, 0xef,0x23,0x24,0x81,0xf8,0xc2,0xaf,0xe6,0x30,0xe5,0x05,0x30,0xe0,0x02,0xd2,0xe4, 0xd2,0xe2,0xc6,0xd2,0xaf,0x7f,0x00,0x30,0xe2,0x01,0x0f,0x02,0x84,0x4c,0x8f,0xf0, 0xe4,0xff,0xfe,0xe5,0x0c,0x23,0x24,0x80,0xf8,0xc2,0xa9,0x30,0xf7,0x0d,0x7f,0x08, 0xe6,0x60,0x0b,0x2d,0xf6,0x60,0x32,0x50,0x30,0x80,0x07,0x30,0xf1,0x06,0xed,0xf6, 0x60,0x27,0x7e,0x02,0x08,0x30,0xf0,0x10,0xc2,0xaf,0xe6,0x10,0xe7,0x25,0x0e,0x30, 0xe2,0x0c,0xd2,0xaf,0x7f,0x04,0x80,0x14,0xc2,0xaf,0xe6,0x10,0xe7,0x15,0x54,0xec, 0x4e,0xf6,0xd2,0xaf,0xd2,0xa9,0x02,0x84,0x4d,0x7f,0x08,0x08,0xef,0x44,0x83,0xf4, 0xc2,0xaf,0x56,0xc6,0xd2,0xaf,0xd2,0xa9,0x54,0x80,0x4f,0xff,0x22,0x02,0x86,0xeb, 0x02,0x84,0xdd,0xe4,0x93,0xa3,0xf8,0xe4,0x93,0xa3,0x40,0x03,0xf6,0x80,0x01,0xf2, 0x08,0xdf,0xf4,0x80,0x29,0xe4,0x93,0xa3,0xf8,0x54,0x07,0x24,0x0c,0xc8,0xc3,0x33, 0xc4,0x54,0x0f,0x44,0x20,0xc8,0x83,0x40,0x04,0xf4,0x56,0x80,0x01,0x46,0xf6,0xdf, 0xe4,0x80,0x0b,0x01,0x02,0x04,0x08,0x10,0x20,0x40,0x80,0x90,0x87,0xa0,0xe4,0x7e, 0x01,0x93,0x60,0xbc,0xa3,0xff,0x54,0x3f,0x30,0xe5,0x09,0x54,0x1f,0xfe,0xe4,0x93, 0xa3,0x60,0x01,0x0e,0xcf,0x54,0xc0,0x25,0xe0,0x60,0xa8,0x40,0xb8,0xe4,0x93,0xa3, 0xfa,0xe4,0x93,0xa3,0xf8,0xe4,0x93,0xa3,0xc8,0xc5,0x82,0xc8,0xca,0xc5,0x83,0xca, 0xf0,0xa3,0xc8,0xc5,0x82,0xc8,0xca,0xc5,0x83,0xca,0xdf,0xe9,0xde,0xe7,0x80,0xbe, 0xef,0x5b,0xff,0xee,0x5a,0xfe,0xed,0x59,0xfd,0xec,0x58,0xfc,0x22,0xef,0x4b,0xff, 0xee,0x4a,0xfe,0xed,0x49,0xfd,0xec,0x48,0xfc,0x22,0xe0,0xfc,0xa3,0xe0,0xfd,0xa3, 0xe0,0xfe,0xa3,0xe0,0xff,0x22,0xe0,0xf8,0xa3,0xe0,0xf9,0xa3,0xe0,0xfa,0xa3,0xe0, 0xfb,0x22,0xe0,0xfb,0xa3,0xe0,0xfa,0xa3,0xe0,0xf9,0x22,0xeb,0xf0,0xa3,0xea,0xf0, 0xa3,0xe9,0xf0,0x22,0xd0,0x83,0xd0,0x82,0xf8,0xe4,0x93,0x70,0x12,0x74,0x01,0x93, 0x70,0x0d,0xa3,0xa3,0x93,0xf8,0x74,0x01,0x93,0xf5,0x82,0x88,0x83,0xe4,0x73,0x74, 0x02,0x93,0x68,0x60,0xef,0xa3,0xa3,0xa3,0x80,0xdf,0xa0,0x9d,0xa7,0x9f,0x96,0x66, 0x41,0x92,0x9d,0x00,0x00,0x90,0x92,0x9c,0xef,0xf0,0x7f,0x02,0xd1,0x27,0x90,0x84, 0xc1,0xe0,0xff,0x90,0x92,0x9c,0xe0,0xfe,0xef,0x4e,0x90,0x84,0xc1,0xf0,0x22,0x90, 0x92,0x10,0x74,0x12,0xf0,0x90,0x92,0x1e,0x74,0x05,0xf0,0x90,0x92,0x12,0xef,0xf0, 0xa3,0xed,0xf0,0xa3,0xeb,0xf0,0x90,0x92,0x0e,0xe0,0x90,0x92,0x15,0xf0,0x90,0x92, 0x0f,0xe0,0x90,0x92,0x16,0xf0,0x7b,0x01,0x7a,0x92,0x79,0x10,0x12,0x5e,0x10,0x7f, 0x04,0x80,0xb2,0x90,0x02,0x09,0xe0,0xf5,0x5b,0x12,0x02,0xf6,0x25,0x5b,0x90,0x84, 0xc6,0x31,0xcd,0x25,0x5b,0x90,0x84,0xc7,0x51,0x75,0x25,0x5b,0x90,0x84,0xc8,0x51, 0x84,0x25,0x5b,0x90,0x84,0xc9,0xf0,0x90,0x00,0x04,0x12,0x03,0x0f,0x25,0x5b,0x90, 0x84,0xca,0xf0,0x90,0x00,0x05,0x12,0x03,0x0f,0x25,0x5b,0x90,0x84,0xcb,0x11,0x37, 0x25,0x5b,0x90,0x84,0xcc,0xf0,0x22,0xf0,0x90,0x00,0x06,0x02,0x03,0x0f,0xf1,0xd7, 0xff,0x54,0x7f,0x90,0x85,0xc5,0xf0,0xef,0xb1,0x0e,0xa3,0x31,0xcd,0xff,0x54,0xf0, 0xc4,0x54,0x0f,0xfe,0x90,0x85,0xc3,0xe0,0x54,0xf0,0x4e,0x51,0x84,0x54,0x01,0x25, 0xe0,0xfe,0x90,0x85,0xc1,0xe0,0x54,0xfd,0x4e,0xf0,0xef,0x54,0x0f,0xc4,0x54,0xf0, 0xff,0x91,0xed,0x51,0x74,0x90,0x85,0xc4,0x11,0x37,0x30,0xe0,0x51,0xc3,0x13,0x54, 0x07,0xff,0xc3,0x94,0x04,0x90,0x85,0xd8,0x50,0x04,0xef,0xf0,0x80,0x29,0x74,0x03, 0x11,0xf2,0xe9,0x24,0x06,0xf9,0xe4,0x3a,0xfa,0x12,0x02,0xf6,0xff,0x74,0x03,0x24, 0xfd,0xfe,0xef,0xc4,0x54,0x0f,0xfd,0xef,0x54,0x0f,0xff,0xed,0x2e,0x54,0x0f,0xfe, 0xc4,0x54,0xf0,0x4f,0x12,0x03,0x3c,0x11,0xf3,0x11,0x38,0xc4,0x54,0x0f,0xff,0xc3, 0x94,0x04,0x90,0x85,0xcd,0x50,0x05,0x74,0x04,0xf0,0x80,0x02,0xef,0xf0,0x11,0xf3, 0x90,0x00,0x04,0x12,0x03,0x0f,0xfd,0x7f,0x02,0x12,0x57,0x82,0x11,0xf3,0x12,0x71, 0xcb,0x12,0xae,0xa2,0xf0,0x90,0x85,0xc5,0x12,0xb3,0x8a,0x91,0xec,0x90,0x01,0xbe, 0xf0,0x22,0xf0,0x90,0x92,0x05,0x02,0x87,0x62,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0, 0xf1,0xd7,0x20,0xe0,0x05,0x12,0x9e,0xea,0x21,0xc7,0x90,0x87,0x4a,0x74,0x05,0x11, 0xf2,0x91,0xfc,0x90,0x86,0x75,0x31,0xdc,0x54,0x04,0xfd,0xef,0x54,0xfb,0x31,0xd4, 0xf1,0xbf,0x31,0xea,0x54,0x10,0xfd,0xef,0x54,0xef,0x31,0xd4,0xf1,0xc7,0x31,0xea, 0x54,0x40,0xfd,0xef,0x54,0xbf,0x31,0xd4,0xf1,0xcf,0x31,0xcd,0x54,0x80,0xff,0x90, 0x86,0x76,0xe0,0x54,0x7f,0x4f,0xf0,0x12,0x02,0xf6,0x13,0x13,0x54,0x3f,0x30,0xe0, 0x07,0x90,0x06,0x90,0xe0,0x44,0x04,0xf0,0x11,0xf3,0x12,0x02,0xf6,0x13,0x13,0x13, 0x54,0x1f,0x30,0xe0,0x07,0x90,0x06,0x90,0xe0,0x44,0x08,0xf0,0x90,0x84,0xc5,0xe0, 0xb4,0x02,0x09,0x90,0x86,0x76,0xe0,0xb1,0x0e,0x20,0xe0,0x3d,0x31,0xce,0x54,0x7f, 0xff,0x90,0x86,0x76,0xe0,0x54,0x80,0x51,0x74,0x90,0x86,0x77,0x51,0x84,0xff,0x54, 0x01,0xfe,0x90,0x86,0x78,0x91,0xf4,0x54,0xfe,0xff,0xee,0x54,0x01,0x4f,0xf0,0x90, 0x86,0x76,0xe0,0x54,0x7f,0xff,0x90,0x86,0x75,0xe0,0xfe,0xc4,0x13,0x54,0x07,0x7d, 0x00,0x20,0xe0,0x02,0x7d,0x01,0x12,0x54,0x9f,0x90,0x84,0xc5,0xe0,0xb4,0x01,0x07, 0x90,0xfe,0x10,0xe0,0x44,0x04,0xf0,0xd0,0xd0,0x92,0xaf,0x22,0x4f,0xf0,0x90,0x00, 0x01,0x02,0x03,0x0f,0x4d,0xff,0x90,0x86,0x75,0xf0,0xee,0x22,0xe0,0x54,0xfe,0x4e, 0xfe,0xf0,0xef,0x54,0x02,0xff,0xee,0x54,0xfd,0x4f,0xff,0xf0,0x12,0x02,0xf6,0xfe, 0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x91,0xfc,0x90,0x86,0x72,0x31,0xdc,0x54, 0x04,0xfd,0xef,0x54,0xfb,0x51,0x7c,0xf1,0xbf,0x31,0xea,0x54,0x10,0xfd,0xef,0x54, 0xef,0x51,0x7c,0xf1,0xc7,0x31,0xea,0x54,0x40,0xfd,0xef,0x54,0xbf,0x51,0x7c,0xf1, 0xcf,0x51,0x75,0x54,0x01,0xff,0x90,0x86,0x74,0xe0,0x54,0xfe,0x31,0xcc,0xff,0x54, 0x01,0xfe,0x90,0x86,0x73,0x91,0xf4,0x54,0x04,0xff,0xee,0x54,0xfb,0x4f,0xf0,0x90, 0x86,0x72,0xe0,0xc3,0x13,0x54,0x01,0xff,0x12,0x7c,0x72,0x91,0xe5,0x54,0x01,0xff, 0x12,0x7c,0x7e,0x91,0xe5,0x13,0x54,0x01,0xff,0x12,0x66,0xda,0x12,0xa6,0x8d,0x54, 0x01,0xff,0x12,0x9d,0x77,0x90,0x86,0x72,0xe0,0x54,0x01,0xff,0x12,0x9e,0x47,0xd0, 0xd0,0x92,0xaf,0x22,0x4f,0xf0,0x90,0x00,0x02,0x02,0x03,0x0f,0x4d,0xff,0x90,0x86, 0x72,0xf0,0xee,0x22,0xf0,0x90,0x00,0x03,0x02,0x03,0x0f,0x51,0x76,0xff,0x30,0xe0, 0x1c,0x12,0x02,0xf6,0x90,0x86,0x6d,0x31,0xcd,0x90,0x86,0x6e,0xf0,0xef,0x54,0xfe, 0xff,0xa3,0xe0,0x54,0x01,0x4f,0x51,0x84,0x90,0x86,0x70,0xf0,0x22,0x90,0x86,0x6d, 0x74,0x05,0xf0,0xa3,0x74,0x0a,0xf0,0xa3,0xe0,0x54,0x01,0x44,0x1e,0xf0,0xa3,0x74, 0x05,0xf0,0x22,0x90,0x92,0x02,0x12,0x87,0x6b,0x90,0x92,0x01,0xef,0xf0,0x12,0x87, 0x74,0x8b,0x14,0x00,0x8b,0x1d,0x01,0x8b,0x25,0x02,0x8b,0x2d,0x03,0x8b,0x36,0x04, 0x8b,0x3f,0x12,0x8b,0x48,0x14,0x8b,0x51,0x20,0x8b,0x59,0x21,0x8b,0x61,0x23,0x8b, 0x6a,0x25,0x8b,0x73,0x27,0x8b,0x7b,0x40,0x8b,0x84,0x42,0x8b,0xd0,0x47,0x8b,0x95, 0x80,0x8b,0x8d,0x81,0x8b,0x9d,0x82,0x8b,0xa6,0x83,0x8b,0xaf,0x84,0x8b,0xb8,0x88, 0x00,0x00,0x8b,0xc1,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x87,0xf3,0x90,0x92,0x02, 0x12,0x87,0x62,0x81,0x7e,0x90,0x92,0x02,0x12,0x87,0x62,0x81,0x43,0x90,0x92,0x02, 0x12,0x87,0x62,0x02,0x78,0x94,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x6b,0x03,0x90, 0x92,0x02,0x12,0x87,0x62,0x02,0x90,0x04,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x90, 0x9c,0x90,0x92,0x02,0x12,0x87,0x62,0x01,0x3e,0x90,0x92,0x02,0x12,0x87,0x62,0x41, 0x8b,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x90,0xab,0x90,0x92,0x02,0x12,0x87,0x62, 0x02,0x90,0xb3,0x90,0x92,0x02,0x12,0x87,0x62,0x80,0x56,0x90,0x92,0x02,0x12,0x87, 0x62,0x02,0x39,0x73,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x4e,0x29,0x90,0x92,0x02, 0x12,0x87,0x62,0x21,0xf1,0x90,0x92,0x02,0x12,0x87,0x62,0x01,0xf9,0x90,0x92,0x02, 0x12,0x87,0x62,0x02,0x7a,0xfe,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x6f,0x63,0x90, 0x92,0x02,0x12,0x87,0x62,0x02,0x6f,0xa4,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x7b, 0xd0,0x90,0x01,0xc0,0xe0,0x44,0x01,0xf0,0x90,0x92,0x01,0xe0,0x90,0x01,0xc2,0xf0, 0x22,0x91,0xfc,0x90,0x92,0x7b,0x91,0xf4,0x54,0x02,0xff,0xee,0x54,0xfd,0x31,0xcc, 0x90,0x92,0x7c,0x51,0x75,0x90,0x92,0x7d,0xf0,0x12,0xaf,0xdf,0x90,0x92,0x7b,0xe0, 0x54,0x01,0xff,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xef,0x64,0x01,0x70,0x1a,0xb1, 0x04,0x60,0x0a,0x91,0x3c,0x12,0x7b,0xfd,0x12,0xaf,0xcc,0x80,0x07,0x91,0x3c,0x12, 0x7b,0xbf,0xf1,0xf6,0x12,0x7a,0x8a,0x80,0x17,0xb1,0x04,0x60,0x07,0x91,0x3c,0x12, 0x7b,0xfd,0x80,0x05,0x91,0x3c,0x12,0x7b,0xbf,0xf1,0x92,0xf1,0x99,0x12,0x7a,0xb9, 0xd0,0xd0,0x92,0xaf,0x22,0x90,0x05,0x73,0xf0,0x90,0x01,0x3f,0x74,0x10,0xf0,0xfd, 0x7f,0x03,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x8b,0x5b,0x8a,0x5c,0x89,0x5d, 0x12,0x02,0xf6,0xff,0x90,0x92,0x7a,0xf0,0xbf,0x01,0x0c,0x31,0xce,0x64,0x01,0x60, 0x18,0x7d,0x13,0x7f,0x6f,0x80,0x0f,0xab,0x5b,0xaa,0x5c,0xa9,0x5d,0x31,0xce,0x64, 0x01,0x60,0x06,0xe4,0xfd,0xff,0x12,0x9e,0xb8,0xd0,0xd0,0x92,0xaf,0x22,0x8b,0x5b, 0x8a,0x5c,0x89,0x5d,0x31,0xce,0xff,0xf5,0x5f,0x12,0x02,0xf6,0xfe,0xc3,0x13,0x30, 0xe0,0x06,0x51,0x76,0xf5,0x60,0x80,0x02,0x8f,0x60,0x85,0x5f,0x5e,0xe5,0x5e,0xd3, 0x95,0x60,0x50,0x26,0xab,0x5b,0xaa,0x5c,0xa9,0x5d,0x12,0x02,0xf6,0x54,0x01,0xfd, 0xaf,0x5e,0x12,0x6e,0x5f,0xaf,0x5e,0x12,0x77,0x39,0xef,0xaf,0x5e,0x70,0x05,0x12, 0x90,0xbb,0x80,0x02,0xf1,0xa7,0x05,0x5e,0x80,0xd3,0xe5,0x5f,0x70,0x16,0xff,0x12, 0x77,0x39,0xef,0x70,0x0f,0x12,0x9f,0x11,0x12,0x79,0x61,0x12,0xaf,0xc4,0x54,0xbf, 0xf0,0x54,0x7f,0xf0,0x22,0x90,0x86,0x72,0xe0,0x13,0x13,0x22,0xf0,0x90,0x85,0xc3, 0xe0,0x54,0x0f,0x22,0xe0,0x54,0xfe,0x4e,0xfe,0xf0,0xef,0x22,0x12,0x02,0xf6,0xff, 0x54,0x01,0xfe,0x22,0x90,0x92,0x7d,0xe0,0x90,0x01,0x3f,0x22,0xe0,0xff,0xc4,0x13, 0x13,0x13,0x54,0x01,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xd1,0x6c,0x20,0xe6, 0x02,0xc1,0x2b,0x90,0x00,0x8c,0xe0,0x90,0x92,0x90,0xf0,0x7f,0x8d,0x12,0x7b,0x51, 0x90,0x92,0x91,0xef,0xf0,0x90,0x00,0x8e,0xe0,0x90,0x92,0x92,0xf0,0x90,0x92,0x91, 0xe0,0x24,0xfc,0x60,0x0f,0x24,0x03,0x60,0x02,0xc1,0x24,0x90,0x92,0x90,0xe0,0xff, 0xd1,0x73,0xc1,0x24,0x90,0x92,0x90,0xe0,0x24,0xdc,0x12,0x97,0xcc,0xfb,0xe4,0xfd, 0xff,0xd1,0x59,0x75,0xf0,0x12,0xd1,0x64,0x13,0x13,0x54,0x03,0xfb,0x0d,0xe4,0xff, 0xd1,0x59,0x75,0xf0,0x12,0xd1,0x64,0xb1,0x0e,0xfb,0x0d,0xe4,0xff,0xd1,0x59,0x75, 0xf0,0x12,0xd1,0x64,0xc4,0x54,0x03,0xfb,0x0d,0xe4,0xff,0xd1,0x59,0x12,0x95,0xe7, 0xfb,0xe4,0xfd,0x0f,0xd1,0x59,0x75,0xf0,0x12,0x90,0x89,0x3d,0x12,0x05,0x28,0xd1, 0x56,0xf1,0xe9,0xc4,0x13,0x54,0x01,0xfb,0x0d,0x7f,0x01,0xd1,0x59,0xf1,0xe9,0x54, 0x1f,0xd1,0x57,0x12,0x97,0xe0,0xe0,0xfb,0xe4,0xfd,0x0f,0xd1,0x59,0x75,0xf0,0x08, 0xa4,0x24,0x01,0xf5,0x82,0xe4,0x34,0x82,0xd1,0x54,0x75,0xf0,0x08,0xa4,0x24,0x02, 0xf5,0x82,0xe4,0x34,0x82,0xd1,0x54,0x75,0xf0,0x08,0xa4,0x24,0x03,0xf5,0x82,0xe4, 0x34,0x82,0xd1,0x54,0x75,0xf0,0x08,0xa4,0x24,0x04,0xf5,0x82,0xe4,0x34,0x82,0xf5, 0x83,0xe0,0xfb,0xe4,0xfd,0x0f,0xd1,0x59,0x75,0xf0,0x08,0xa4,0x24,0x05,0xf5,0x82, 0xe4,0x34,0x82,0xd1,0x54,0x75,0xf0,0x08,0xa4,0x24,0x06,0xf5,0x82,0xe4,0x34,0x82, 0xd1,0x54,0x75,0xf0,0x08,0xa4,0x24,0x07,0xf5,0x82,0xe4,0x34,0x82,0xf5,0x83,0xe0, 0xfb,0x0d,0xd1,0x30,0xd1,0x6c,0x30,0xe0,0x02,0xf1,0xa0,0xd0,0xd0,0x92,0xaf,0x22, 0xef,0x70,0x04,0x74,0xf0,0x80,0x16,0xef,0xb4,0x01,0x04,0x74,0xf4,0x80,0x0e,0xef, 0xb4,0x02,0x04,0x74,0xf8,0x80,0x06,0xef,0xb4,0x03,0x08,0x74,0xfc,0x2d,0x12,0xb0, 0xb2,0xeb,0xf0,0x22,0xf5,0x83,0xe0,0xfb,0x0d,0xd1,0x30,0x90,0x92,0x90,0xe0,0x22, 0x75,0xf0,0x12,0xec,0x90,0x89,0x3f,0x12,0x05,0x28,0xe0,0x22,0x7f,0x8f,0x12,0x7b, 0x51,0xef,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x90,0x92,0x9a,0xef,0xf0,0xd1, 0x6c,0x30,0xe6,0x38,0x7f,0x8d,0x12,0x7b,0x51,0xef,0x64,0x01,0x70,0x2e,0x90,0x92, 0x9b,0xf0,0x90,0x92,0x9b,0xe0,0xfd,0x90,0x92,0x9a,0xe0,0x12,0x94,0x78,0xe5,0x82, 0x2d,0x12,0x97,0xc3,0xfb,0xe4,0xff,0xd1,0x30,0x90,0x92,0x9b,0xe0,0x04,0xf0,0xe0, 0xc3,0x94,0x10,0x40,0xdd,0xd1,0x6c,0x30,0xe0,0x02,0xf1,0xa0,0xd0,0xd0,0x92,0xaf, 0x22,0x12,0xb3,0x7c,0xce,0xc3,0x13,0xce,0x13,0xd8,0xf9,0xff,0x12,0xb3,0xa1,0x12, 0xac,0x0e,0x64,0x01,0x60,0x02,0xe1,0x91,0x90,0x85,0xc5,0xe0,0x70,0x02,0xe1,0x91, 0xf1,0xe0,0x64,0x01,0x70,0x22,0x90,0x06,0xab,0xe0,0x90,0x85,0xcc,0xf0,0x90,0x06, 0xaa,0xe0,0x90,0x85,0xcb,0xf0,0xa3,0xe0,0xff,0x70,0x08,0x90,0x85,0xcb,0xe0,0xfe, 0xff,0x80,0x00,0x90,0x85,0xcc,0xef,0xf0,0x12,0x2c,0x26,0xe4,0x90,0x85,0xce,0xf0, 0x90,0x85,0xd1,0xa3,0xe0,0x90,0x05,0x58,0xf0,0x12,0xad,0x6b,0x12,0xad,0x78,0x54, 0xef,0xf0,0xf1,0xe0,0x24,0xfd,0x50,0x02,0x80,0x03,0x12,0xac,0x8b,0xf1,0xaf,0x13, 0x54,0x1f,0x30,0xe0,0x55,0xef,0xc4,0x13,0x13,0x54,0x03,0x20,0xe0,0x23,0xf1,0xb7, 0x6f,0x70,0x47,0x90,0x85,0xc2,0xe0,0x44,0x40,0xf0,0x90,0x85,0xcb,0xe0,0x91,0x35, 0x12,0x7b,0xfd,0xf1,0xfd,0x7d,0x02,0x7f,0x02,0x12,0x7c,0x41,0x12,0xae,0xe3,0x80, 0x29,0x12,0xaf,0xbc,0x64,0x01,0x70,0x22,0xf1,0xb7,0xfe,0x6f,0x60,0x1c,0x90,0x05, 0x73,0xe0,0xff,0xee,0x6f,0x60,0x13,0xf1,0xaf,0x54,0x3f,0x30,0xe0,0x0c,0xef,0x54, 0xbf,0x91,0x38,0x12,0x7b,0xbf,0xf1,0x99,0xf1,0x92,0x90,0x85,0xc2,0xe0,0x44,0x04, 0xf0,0x22,0x7d,0x02,0x7f,0x02,0x02,0x7c,0xa9,0x7d,0x01,0x7f,0x02,0x02,0x7c,0xa9, 0xe4,0xfd,0x7f,0x8d,0x02,0x7b,0x3e,0x12,0x90,0xc2,0xe0,0x54,0xfb,0xf0,0x22,0x90, 0x85,0xc2,0xe0,0xff,0x13,0x13,0x22,0x90,0x85,0xcb,0xe0,0xff,0xa3,0xe0,0x22,0x54, 0x08,0xfe,0xef,0x54,0xf7,0x4e,0x22,0x54,0x20,0xfe,0xef,0x54,0xdf,0x4e,0x22,0x54, 0x80,0xfe,0xef,0x54,0x7f,0x4e,0x22,0x90,0x92,0x05,0x12,0x87,0x6b,0x02,0x02,0xf6, 0x90,0x85,0xc3,0xe0,0xff,0xc4,0x54,0x0f,0x22,0x75,0xf0,0x12,0x90,0x89,0x3e,0x12, 0x05,0x28,0xe0,0x22,0xa1,0x15,0x7d,0x02,0x7f,0x02,0x12,0x7c,0x41,0x7d,0x01,0x7f, 0x02,0x02,0x7c,0x41,0x12,0x02,0xf6,0xff,0x90,0x92,0x79,0xf0,0xbf,0x01,0x07,0x11, 0x17,0xe4,0x90,0x92,0x79,0xf0,0x22,0x11,0x95,0x7f,0xf5,0x7e,0x01,0x12,0x64,0x37, 0xbf,0x01,0x06,0x90,0x92,0x05,0xe0,0xa3,0xf0,0x11,0x95,0x7f,0xf6,0x7e,0x01,0x12, 0x64,0x37,0xbf,0x01,0x08,0x90,0x92,0x05,0xe0,0x90,0x92,0x07,0xf0,0x11,0x95,0x7f, 0xf4,0x7e,0x01,0x12,0x64,0x37,0xbf,0x01,0x08,0x90,0x92,0x05,0xe0,0x90,0x92,0x08, 0xf0,0x11,0x95,0x7f,0xf3,0x7e,0x01,0x12,0x64,0x37,0xbf,0x01,0x08,0x90,0x92,0x05, 0xe0,0x90,0x92,0x09,0xf0,0x11,0x95,0x7f,0xf2,0x7e,0x01,0x12,0x64,0x37,0xbf,0x01, 0x08,0x90,0x92,0x05,0xe0,0x90,0x92,0x0a,0xf0,0x90,0x92,0x06,0xe0,0xff,0xa3,0xe0, 0xfd,0xa3,0xe0,0xfb,0xa3,0xe0,0x90,0x92,0x0e,0xf0,0x90,0x92,0x0a,0xe0,0x90,0x92, 0x0f,0xf0,0x02,0x87,0xbf,0x7b,0x01,0x7a,0x92,0x79,0x05,0x22,0x12,0x02,0xf6,0x54, 0x01,0xff,0x90,0x92,0x80,0xe0,0x54,0xfe,0x4f,0xf0,0x22,0x12,0x02,0xf6,0x90,0x85, 0xd0,0xf0,0x22,0x12,0x02,0xf6,0x90,0x86,0x71,0xf0,0x22,0x11,0xc2,0xe0,0x44,0x04, 0xf0,0x22,0x8f,0x61,0xef,0xc4,0x54,0xf0,0x24,0x05,0xf5,0x82,0xe4,0x34,0x81,0xf5, 0x83,0x22,0xe4,0xf5,0x62,0x90,0x85,0xbb,0xe0,0xff,0xe5,0x62,0xc3,0x9f,0x40,0x02, 0x61,0x72,0xe5,0x62,0x13,0x13,0x13,0x54,0x1f,0x90,0x92,0x2f,0xf0,0xe5,0x62,0x54, 0x07,0xa3,0xf0,0x90,0x04,0xa0,0xe0,0xff,0xa3,0xe0,0xfe,0xef,0x64,0x01,0x70,0x2e, 0xe5,0x62,0x6e,0x70,0x29,0xa3,0xe0,0xf5,0x63,0xa3,0xe0,0x90,0x92,0x2e,0xf0,0xe5, 0x62,0x91,0x78,0xe5,0x63,0xf0,0xe5,0x62,0x11,0xc5,0xe0,0x54,0xfc,0xff,0x90,0x92, 0x2e,0xe0,0x54,0x03,0x4f,0xff,0xe5,0x62,0x11,0xc5,0xef,0xf0,0x61,0x6e,0xaf,0x62, 0x12,0x77,0x39,0xef,0x70,0x02,0x61,0x6e,0x75,0xf0,0x12,0xe5,0x62,0x12,0x8e,0x64, 0x12,0x8d,0x0e,0x30,0xe0,0x02,0x61,0x6e,0x90,0x92,0x2f,0xe0,0x24,0x75,0xf5,0x82, 0xe4,0x34,0x8f,0xf5,0x83,0xe0,0xfd,0x7c,0x00,0x90,0x92,0x30,0xe0,0xd1,0x5d,0x80, 0x05,0xc3,0x33,0xce,0x33,0xce,0xd8,0xf9,0xff,0xee,0x5c,0xfe,0xef,0x5d,0x4e,0x60, 0x02,0x61,0x6e,0xd1,0x16,0xfe,0xa3,0xe0,0x4e,0x70,0x06,0xd1,0x09,0x70,0x02,0x61, 0x6e,0xe5,0x62,0x75,0xf0,0x12,0xa4,0x24,0x44,0xf9,0x74,0x89,0x35,0xf0,0xfa,0x7b, 0x01,0x90,0x92,0x28,0x12,0x87,0x6b,0xd1,0x16,0xf5,0x67,0xa3,0xe0,0xf5,0x68,0xd1, 0x09,0xff,0x90,0x92,0x2b,0xd1,0x54,0xe5,0x62,0xb1,0xea,0x90,0x92,0x2d,0xf0,0xfd, 0x75,0xf0,0x12,0xe5,0x62,0x12,0x8e,0x64,0xfe,0x13,0x13,0x54,0x03,0x90,0x92,0x2e, 0xf0,0xe5,0x62,0x91,0x78,0xe0,0xf5,0x63,0x54,0x7f,0xf5,0x64,0xd3,0x9d,0x40,0x16, 0x90,0x92,0x2d,0xe0,0xf5,0x64,0xe5,0x63,0x30,0xe7,0x07,0xe5,0x64,0x44,0x80,0xff, 0x80,0x02,0xaf,0x64,0x8f,0x63,0xe5,0x64,0x90,0x83,0x09,0x93,0xff,0x74,0xdc,0x25, 0x62,0xf1,0xcc,0xc3,0x9f,0xe5,0x64,0x40,0x07,0x90,0x82,0xe1,0x93,0xff,0x80,0x05, 0x90,0x82,0xf5,0x93,0xff,0xd1,0x37,0x12,0x87,0x6b,0x74,0x7c,0x25,0x62,0xf5,0x82, 0xe4,0x34,0x90,0xf5,0x83,0xe0,0xc3,0x94,0x05,0x40,0x02,0x61,0x64,0xe5,0x63,0x30, 0xe7,0x04,0x05,0x69,0x05,0x69,0xe5,0x69,0xd3,0x94,0x1a,0xaf,0x69,0x40,0x02,0x7f, 0x1a,0xd1,0x37,0x12,0x87,0x6b,0xc3,0xe5,0x68,0x94,0x0f,0xe5,0x67,0x94,0x00,0x50, 0x72,0x91,0x6c,0xff,0x90,0x92,0x2c,0xe0,0x2f,0xff,0x90,0x92,0x2b,0xe0,0x35,0xf0, 0xfe,0xb1,0xce,0xff,0xee,0x35,0xf0,0xfe,0x90,0x00,0x04,0x12,0x04,0x18,0x2f,0xfd, 0xee,0x35,0xf0,0xb1,0xf2,0xd3,0xed,0x9f,0xec,0x9e,0x40,0x04,0x71,0x7f,0x61,0x5f, 0x90,0x92,0x28,0x12,0x87,0x62,0x12,0x03,0xed,0x65,0x68,0x70,0x04,0xe5,0xf0,0x65, 0x67,0x75,0xf0,0x12,0x70,0x23,0xe5,0x62,0x12,0x8f,0xec,0xd1,0xcb,0xfe,0xef,0x54, 0x3f,0xff,0xee,0x04,0x54,0x03,0xfe,0xc4,0x33,0x33,0x54,0xc0,0x4f,0xf0,0xe4,0xfd, 0xaf,0x62,0x91,0x85,0x75,0xf0,0x12,0x80,0x00,0xe5,0x62,0x12,0x8f,0xec,0x54,0x3f, 0xf0,0x61,0x5f,0xe5,0x62,0x70,0x42,0x91,0x6c,0xff,0xae,0xf0,0xb1,0xce,0xfd,0xe5, 0xf0,0x3e,0xb1,0xf2,0xc3,0xed,0x9f,0xec,0x9e,0x50,0x08,0x90,0x90,0xdc,0x74,0x01, 0xf0,0x80,0x26,0x91,0x6c,0xfb,0xaa,0xf0,0xe5,0x68,0xae,0x67,0x78,0x03,0xce,0xc3, 0x13,0xce,0x13,0xd8,0xf9,0xff,0x7c,0x00,0x7d,0x05,0x12,0x03,0x70,0xd3,0xeb,0x9f, 0xea,0x9e,0x40,0x05,0xe4,0x90,0x90,0xdc,0xf0,0xab,0x69,0xad,0x62,0xaf,0x68,0xae, 0x67,0x12,0x46,0xe6,0x8e,0x65,0x8f,0x66,0xb1,0xb8,0xc3,0x74,0x01,0x93,0x95,0x66, 0xe4,0x93,0x95,0x65,0x50,0x08,0x7d,0x01,0xaf,0x62,0x91,0x85,0x80,0x0e,0xb1,0xc6, 0xc3,0xe5,0x66,0x9f,0xe5,0x65,0x94,0x00,0x50,0x08,0x71,0x7f,0x71,0x73,0xe4,0xf0, 0x80,0x2d,0x71,0x73,0xe0,0x04,0xf0,0x71,0x73,0xe0,0xc3,0x94,0x05,0x40,0x20,0x71, 0x73,0xe4,0xf0,0xb1,0xc6,0xb1,0xb8,0x74,0x01,0x93,0x2f,0xff,0xe4,0x93,0x34,0x00, 0xc3,0x13,0xfe,0xef,0x13,0xff,0xe5,0x62,0xb1,0xfd,0xee,0xf0,0xa3,0xef,0xf0,0xe4, 0xf5,0x65,0xf5,0x66,0x75,0x6b,0x01,0x7d,0x01,0xaf,0x62,0x12,0x65,0xc2,0x05,0x62, 0x01,0xd5,0x22,0x74,0xac,0x25,0x62,0xf5,0x82,0xe4,0x34,0x8f,0xf5,0x83,0x22,0x7d, 0x01,0xaf,0x62,0x90,0x92,0x31,0xef,0xf0,0xa3,0xed,0xf0,0x90,0x92,0x31,0xe0,0xff, 0x91,0x78,0xe0,0xf5,0x6c,0x54,0x7f,0xf5,0x6e,0x75,0xf0,0x12,0xef,0x90,0x89,0x3d, 0x12,0x05,0x28,0xe0,0x90,0x92,0x34,0xf0,0x90,0x92,0x31,0xe0,0xb1,0xe7,0xfc,0x11, 0xc4,0xe0,0x54,0x03,0xf5,0x6d,0xe5,0x6e,0x90,0x83,0x45,0x93,0xff,0x90,0x92,0x31, 0xe0,0xfd,0xb1,0xfd,0xd1,0x54,0xed,0x12,0x8e,0x64,0xc4,0x54,0x03,0x90,0x92,0x33, 0xf0,0x74,0xcc,0x2d,0xb1,0xb0,0xe5,0x6e,0xf0,0x74,0x4c,0x2d,0xd1,0x4c,0xe5,0x6d, 0xf0,0xe5,0x6e,0xd3,0x9c,0x40,0x06,0x8c,0x6e,0xaf,0x04,0x8f,0x6c,0x90,0x92,0x32, 0xe0,0xf5,0x6f,0xe4,0x90,0x92,0x35,0xf0,0x90,0x92,0x35,0xe0,0xc3,0x95,0x6f,0x50, 0x59,0xe5,0x6c,0x30,0xe7,0x07,0x85,0x6e,0x6c,0xb1,0xd6,0x60,0x4d,0x7d,0x02,0xaf, 0x6e,0x12,0x78,0x6f,0xef,0x60,0x1a,0x90,0x92,0x34,0xe0,0xfd,0x90,0x92,0x31,0xe0, 0xfb,0x90,0x8a,0x85,0x74,0x01,0xb1,0xde,0x43,0x6c,0x80,0xb1,0xd6,0x70,0x23,0x80, 0x29,0x90,0x92,0x34,0xe0,0xfd,0xe5,0x6e,0xd3,0x9d,0x40,0x0e,0x90,0x92,0x31,0xe0, 0xfb,0xa3,0xe0,0x90,0x8a,0x85,0xb1,0xde,0x80,0x10,0x90,0x92,0x34,0xe0,0xf5,0x6c, 0x80,0x08,0x90,0x92,0x35,0xe0,0x04,0xf0,0x80,0x9e,0x90,0x92,0x31,0xe0,0xff,0x90, 0x91,0x0b,0xe5,0x6d,0xf0,0xe4,0xfb,0xad,0x6c,0x02,0x27,0x3d,0x90,0x92,0x28,0x12, 0x87,0x62,0x90,0x00,0x08,0x02,0x04,0x18,0xc4,0x54,0xf0,0x24,0x00,0xf5,0x82,0xe4, 0x34,0x81,0xf5,0x83,0x22,0x8d,0x6c,0xac,0x07,0xec,0x91,0x78,0xe0,0xf5,0x6d,0x54, 0x7f,0xfb,0xe5,0x6d,0x54,0x80,0xf5,0x6e,0x75,0xf0,0x12,0xec,0xb1,0xea,0xf5,0x70, 0x12,0x8e,0x60,0xc4,0x54,0x03,0xf5,0x71,0xeb,0xb1,0xba,0xe4,0x93,0xfe,0x74,0x01, 0x93,0xff,0xec,0xb1,0xfd,0xee,0xf0,0xa3,0xef,0xf0,0xb1,0xad,0xe5,0x6d,0xf0,0x12, 0x8e,0x60,0x13,0x13,0x54,0x03,0xf5,0x6f,0x74,0x4c,0x2c,0xd1,0x4c,0xe5,0x6f,0xf0, 0xeb,0x64,0x2c,0x70,0x2b,0x12,0x8e,0x60,0xff,0x54,0x03,0xfe,0xe5,0x6f,0xc3,0x9e, 0x50,0x1e,0x05,0x6f,0xe5,0x6f,0x54,0x03,0x25,0xe0,0x25,0xe0,0xfe,0x75,0xf0,0x12, 0xec,0x90,0x89,0x3f,0x12,0x05,0x28,0xef,0x54,0xf3,0x4e,0xf0,0x8b,0x6d,0xa1,0x9d, 0xeb,0xc3,0x95,0x70,0x50,0x71,0xad,0x03,0xaf,0x71,0xd1,0x23,0xab,0x07,0xad,0x70, 0xaf,0x71,0xd1,0x23,0x8f,0x70,0xeb,0x04,0xfd,0xed,0xd3,0x95,0x70,0x50,0x4d,0xed, 0x13,0x13,0x13,0x54,0x1f,0xff,0xec,0xf1,0xe0,0xe5,0x82,0x2f,0xf1,0xc3,0xf5,0x82, 0x75,0x83,0x00,0xed,0x54,0x07,0xd1,0x5d,0x80,0x05,0xc3,0x33,0xce,0x33,0xce,0xd8, 0xf9,0xff,0xee,0x55,0x83,0xfe,0xef,0x55,0x82,0x4e,0x60,0x1d,0xbb,0x13,0x14,0x7b, 0x18,0x8b,0x6d,0x74,0xcc,0x2c,0xf5,0x82,0xe4,0x34,0x8f,0xf5,0x83,0xe0,0x44,0x04, 0xf0,0x80,0x09,0xab,0x05,0x8b,0x6d,0x80,0x03,0x0d,0x80,0xad,0xad,0x6d,0xaf,0x71, 0x12,0xb0,0x7b,0x8f,0x6d,0x80,0x26,0xeb,0x65,0x70,0x70,0x1a,0x75,0xf0,0x12,0xec, 0x12,0x8f,0xec,0xc4,0x13,0x54,0x07,0x30,0xe0,0x22,0xe5,0x6d,0x20,0xe7,0x1d,0xeb, 0x44,0x80,0xf5,0x6d,0x80,0x07,0xb1,0xad,0xe5,0x70,0xf0,0xf5,0x6d,0xaf,0x04,0x90, 0x91,0x0b,0xe5,0x6f,0xf0,0xab,0x6c,0xad,0x6d,0x12,0x27,0x3d,0x22,0x74,0xcc,0x2c, 0xf5,0x82,0xe4,0x34,0x90,0xf5,0x83,0x22,0xe5,0x64,0x25,0xe0,0x24,0x1d,0xf5,0x82, 0xe4,0x34,0x83,0xf5,0x83,0x22,0xe5,0x64,0x90,0x83,0x45,0x93,0xff,0x22,0x90,0x00, 0x06,0x12,0x04,0x18,0x2f,0x22,0x90,0x92,0x32,0xe0,0x14,0xf0,0xe0,0x22,0xf0,0xaf, 0x6e,0x12,0x6b,0xe2,0x8f,0x6c,0x22,0x75,0xf0,0x12,0x90,0x89,0x3c,0x12,0x05,0x28, 0xe0,0x22,0xfc,0xe5,0x67,0xc3,0x13,0xfe,0xe5,0x68,0x13,0xff,0x22,0x25,0xe0,0x24, 0x7b,0xf5,0x82,0xe4,0x34,0x8f,0xf5,0x83,0x22,0x75,0xf0,0x12,0xe5,0x62,0x90,0x89, 0x42,0x12,0x05,0x28,0xe0,0x22,0x75,0xf0,0x12,0xe5,0x62,0x90,0x89,0x40,0x12,0x05, 0x28,0xe0,0x22,0xef,0x60,0x0a,0xed,0xc3,0x94,0x2c,0x40,0x04,0x7e,0x20,0x80,0x02, 0xe4,0xfe,0xc3,0xed,0x9e,0xff,0x22,0x8f,0x69,0xef,0x75,0xf0,0x06,0xa4,0x24,0x3f, 0xf9,0x74,0x82,0x35,0xf0,0xfa,0x7b,0xff,0x90,0x92,0x25,0x22,0xf5,0x82,0xe4,0x34, 0x90,0xf5,0x83,0x22,0xe4,0xf0,0xa3,0xef,0xf0,0x75,0xf0,0x12,0x22,0xff,0x74,0x01, 0x7e,0x00,0xa8,0x07,0x08,0x22,0xe4,0xfb,0xfa,0xfd,0x7f,0x01,0x12,0x86,0x4e,0x90, 0x92,0x24,0xef,0xf0,0x60,0xf0,0x90,0x84,0xc1,0xe0,0xff,0x70,0x04,0xa3,0xe0,0x60, 0xe5,0xc2,0xaf,0xef,0x30,0xe0,0x0e,0x90,0x84,0xc1,0xe0,0x54,0xfe,0xf0,0xe4,0xff, 0x12,0x2d,0xbd,0x11,0xd2,0xd1,0xc0,0x30,0xe1,0x06,0x54,0xfd,0xf0,0x12,0x60,0x5d, 0xd1,0xc0,0x30,0xe2,0x06,0x54,0xfb,0xf0,0x12,0x6a,0x6d,0xd1,0xc0,0x30,0xe4,0x0c, 0x54,0xef,0xf0,0x12,0x6f,0x22,0xbf,0x01,0x03,0x12,0xa2,0x44,0xd2,0xaf,0x80,0xb6, 0xd2,0xaf,0xc2,0xaf,0x90,0x84,0xc1,0xe0,0xff,0x22,0xe0,0xff,0xc4,0x13,0x13,0x54, 0x03,0x22,0x90,0x86,0x72,0xd1,0xca,0x30,0xe0,0x02,0xd1,0xdd,0x22,0xf1,0xbb,0xe4, 0x90,0x88,0xd8,0xd1,0xfe,0x90,0x88,0x76,0xd1,0xfe,0xa3,0xd1,0xfe,0xa3,0xf0,0xa3, 0xf0,0x90,0x88,0x88,0xf0,0xa3,0xf0,0x90,0x88,0xca,0xf0,0xa3,0xf0,0x22,0xf0,0xa3, 0xf0,0xa3,0xf0,0xa3,0xf0,0x22,0x7e,0x00,0x7f,0x24,0x7d,0x00,0x7b,0x01,0x7a,0x86, 0x79,0x72,0x12,0x06,0xde,0x90,0x06,0x90,0xe0,0x44,0x20,0xf0,0x12,0xb3,0x69,0xd1, 0xdd,0x90,0x84,0xc5,0xe0,0xff,0x64,0x02,0x70,0x29,0xf1,0xb2,0x30,0xe0,0x02,0x7e, 0x01,0x90,0x86,0x90,0xf1,0xb0,0x30,0xe1,0x02,0x7e,0x01,0x90,0x86,0x8e,0xf1,0xb0, 0x30,0xe2,0x02,0x7e,0x01,0x90,0x86,0x8f,0xee,0xf0,0x90,0xfd,0x80,0xe0,0x90,0x02, 0xfb,0xf0,0x22,0xef,0x64,0x01,0x70,0x1d,0xf1,0xa9,0x30,0xe0,0x02,0x7f,0x01,0x90, 0x86,0x90,0xf1,0xa7,0x30,0xe1,0x02,0x7f,0x01,0x90,0x86,0x8e,0xf1,0xa7,0x30,0xe2, 0x02,0x7f,0x01,0x80,0x23,0x90,0x84,0xc5,0xe0,0x64,0x03,0x70,0x20,0xf1,0xa0,0x30, 0xe0,0x02,0x7f,0x01,0x90,0x86,0x90,0xf1,0x9e,0x30,0xe1,0x02,0x7f,0x01,0x90,0x86, 0x8e,0xf1,0x9e,0x30,0xe2,0x02,0x7f,0x01,0x90,0x86,0x8f,0xef,0xf0,0x22,0xef,0xf0, 0x90,0xfd,0x78,0xe0,0x7f,0x00,0x22,0xef,0xf0,0x90,0xfd,0x70,0xe0,0x7f,0x00,0x22, 0xee,0xf0,0x90,0xfd,0x80,0xe0,0x7e,0x00,0x22,0xc1,0xd2,0x90,0x86,0x72,0xe0,0x54, 0xbf,0xf0,0x22,0xf5,0x82,0xe4,0x35,0x83,0xf5,0x83,0xe0,0x22,0xf5,0x82,0xe4,0x34, 0x8f,0xf5,0x83,0xe0,0x22,0xe4,0x90,0x84,0xc1,0xd1,0xfe,0x90,0x92,0x77,0xf0,0x22, 0x75,0xf0,0x08,0xa4,0x24,0x00,0xf5,0x82,0xe4,0x34,0x82,0xf5,0x83,0x22,0x90,0x92, 0x36,0xef,0xf0,0x90,0x04,0x7e,0xe0,0xff,0xa3,0xe0,0x90,0x92,0x46,0xf0,0xe0,0xfe, 0x6f,0x60,0x65,0x90,0x92,0x37,0x74,0x03,0xf0,0x90,0x92,0x45,0x74,0x08,0xf0,0xee, 0x04,0x54,0x0f,0xff,0xe4,0xfe,0xef,0x75,0xf0,0x08,0xa4,0x24,0x00,0xf5,0x82,0xe4, 0x34,0x80,0xf5,0x83,0xe5,0x82,0x2e,0x12,0x97,0xc3,0xfd,0x74,0x39,0x2e,0xf5,0x82, 0xe4,0x34,0x92,0xf5,0x83,0xed,0xf0,0x0e,0xee,0xb4,0x08,0xda,0x7b,0x01,0x7a,0x92, 0x79,0x37,0x12,0x5e,0x10,0x90,0x92,0x46,0xe0,0x04,0x54,0x0f,0xff,0xf0,0xbf,0x0f, 0x02,0xe4,0xf0,0x90,0x92,0x46,0xe0,0x90,0x04,0x7f,0xf0,0x90,0x92,0x36,0xe0,0x7f, 0x04,0x70,0x02,0x80,0x04,0x12,0x87,0xa5,0x22,0x8f,0x0d,0x7f,0x02,0x12,0x86,0x27, 0x90,0x84,0xc1,0xe0,0x45,0x0d,0xf0,0x22,0x90,0x85,0xc5,0xe0,0x60,0x57,0x90,0x85, 0xc1,0xe0,0x30,0xe0,0x19,0x90,0x85,0xdc,0xe0,0x04,0xf0,0x12,0xb3,0x7c,0xce,0xc3, 0x13,0xce,0x13,0xd8,0xf9,0xff,0x90,0x85,0xfc,0xee,0xf0,0xa3,0xef,0xf0,0x12,0x8f, 0xaf,0x13,0x54,0x1f,0x30,0xe0,0x0d,0x90,0x01,0x3b,0xe0,0x30,0xe4,0x06,0x12,0x8f, 0xf6,0x12,0xb3,0x97,0x90,0x92,0x96,0x31,0xdd,0xc3,0x90,0x92,0x97,0xe0,0x94,0x80, 0x90,0x92,0x96,0xe0,0x64,0x80,0x94,0x80,0x40,0x0b,0x90,0x01,0x98,0xe0,0x54,0xfe, 0xf0,0xe0,0x44,0x01,0xf0,0x12,0x5d,0x1f,0x12,0x6e,0x1d,0xe4,0x90,0x88,0xe0,0xf0, 0x7f,0x01,0x11,0x69,0x12,0xb2,0xad,0x12,0xa6,0x8d,0x54,0x03,0x30,0xe0,0x51,0x90, 0x88,0x76,0xe0,0xfe,0xa3,0xe0,0xff,0x7c,0x00,0x7d,0x64,0x12,0x03,0x82,0x90,0x88, 0xca,0xe0,0x6e,0x70,0x03,0xa3,0xe0,0x6f,0x60,0x0a,0x90,0x88,0xca,0xe4,0x75,0xf0, 0x01,0x02,0x07,0x0a,0x90,0x88,0x7a,0xe0,0xfe,0xa3,0xe0,0xff,0x90,0x88,0x88,0xe0, 0xb5,0x06,0x14,0xa3,0xe0,0xb5,0x07,0x0f,0xef,0x4e,0x60,0x0b,0x90,0x01,0xc7,0x74, 0x31,0xf0,0x7f,0x01,0x02,0x5f,0xe9,0x31,0x41,0xe4,0x90,0x88,0xca,0xf0,0xa3,0xf0, 0x22,0xe4,0x90,0x92,0x39,0xf0,0xa3,0xf0,0x90,0x06,0x32,0xe0,0x44,0x20,0xf0,0x12, 0x75,0xe4,0xef,0x64,0x01,0x70,0x7c,0x90,0x88,0xd9,0xe0,0xff,0x90,0x92,0x8c,0x74, 0x0a,0xf0,0x7b,0x08,0x7d,0x01,0x71,0xd2,0x12,0xb3,0xa1,0x90,0x92,0x36,0xa3,0x91, 0x94,0xfd,0x74,0x2c,0x2e,0xd1,0x2f,0x90,0x92,0x38,0xef,0xf0,0x90,0x92,0x36,0xa3, 0xe0,0x24,0x28,0xf9,0xe4,0x34,0xfc,0xfa,0x7b,0x01,0xe4,0xfd,0x12,0x52,0x21,0x90, 0x92,0x38,0xe0,0xff,0x90,0x92,0x37,0xe0,0x2f,0xff,0x90,0x92,0x36,0xe0,0x34,0x00, 0xcf,0x24,0x30,0xcf,0x34,0x00,0xfe,0x90,0x92,0x39,0xf0,0xa3,0xef,0xf0,0x31,0xe4, 0x31,0xd4,0x90,0x88,0xd9,0xe0,0xfb,0xe4,0xff,0x12,0x15,0x44,0x31,0xd4,0x90,0x88, 0xd5,0xe0,0xfb,0x7f,0x11,0x12,0x15,0x44,0x90,0x04,0x1f,0x74,0x20,0xf0,0x90,0x88, 0x88,0x31,0xdd,0x22,0x90,0x92,0x39,0xe0,0xfc,0xa3,0xe0,0xfd,0x22,0xe4,0x75,0xf0, 0x01,0x02,0x07,0x0a,0xad,0x07,0x90,0x88,0x80,0x31,0xdd,0x90,0x88,0x80,0xe0,0xff, 0xae,0x05,0x74,0x04,0x2e,0xb1,0x6f,0xef,0xf0,0x90,0x88,0x80,0xa3,0xe0,0xff,0x74, 0x05,0x2e,0xd1,0x1f,0xef,0xf0,0x22,0xe4,0x90,0x92,0x1f,0xf0,0xa3,0xf0,0x51,0x57, 0xef,0x64,0x01,0x60,0x3b,0xc3,0x90,0x92,0x20,0xe0,0x94,0x88,0x90,0x92,0x1f,0xe0, 0x94,0x13,0x40,0x0f,0x90,0x01,0xc1,0xe0,0x44,0x10,0xf0,0x90,0x01,0xc7,0x74,0xfd, 0xf0,0x80,0x1d,0x90,0x92,0x1f,0x31,0xdd,0x51,0xc1,0xd3,0x90,0x92,0x20,0xe0,0x94, 0x32,0x90,0x92,0x1f,0xe0,0x94,0x00,0x40,0xc5,0x90,0x01,0xc6,0xe0,0x30,0xe3,0xbe, 0x90,0x01,0xc7,0x74,0xfe,0xf0,0x22,0x90,0x01,0x9a,0xe0,0x54,0xc0,0x44,0x0b,0x12, 0xa2,0x34,0x90,0x01,0x98,0xe0,0x54,0xc0,0x7f,0x00,0xb4,0x40,0x02,0x7f,0x01,0x22, 0x90,0x92,0x93,0xef,0xf0,0xe4,0xa3,0xf0,0xa3,0xf0,0x90,0x01,0x09,0xe0,0x7f,0x00, 0x30,0xe7,0x02,0x7f,0x01,0x90,0x92,0x93,0xe0,0x6f,0x60,0x34,0xc3,0x90,0x92,0x95, 0xe0,0x94,0x88,0x90,0x92,0x94,0xe0,0x94,0x13,0x40,0x08,0x90,0x01,0xc0,0xe0,0x44, 0x10,0xf0,0x22,0x90,0x92,0x94,0x31,0xdd,0x51,0xc1,0xd3,0x90,0x92,0x95,0xe0,0x94, 0x32,0x90,0x92,0x94,0xe0,0x94,0x00,0x40,0xc1,0x90,0x01,0xc6,0xe0,0x30,0xe0,0xba, 0x22,0x7f,0x14,0x7e,0x00,0x02,0x7c,0x9f,0x12,0xb2,0x83,0x7f,0x08,0x12,0x7b,0x51, 0xef,0x54,0xef,0xfd,0x7f,0x08,0x12,0x7b,0x3e,0xe4,0xff,0x51,0x70,0x7d,0x35,0x7f, 0x27,0x12,0x7b,0x3e,0x90,0x85,0xc2,0xe0,0x54,0xef,0xf0,0x22,0xd3,0x10,0xaf,0x01, 0xc3,0xc0,0xd0,0x51,0xfc,0x51,0xc8,0xd0,0xd0,0x92,0xaf,0x22,0x90,0x85,0xc2,0xe0, 0x44,0x10,0xf0,0x90,0x85,0xd0,0xe0,0xfd,0x7f,0x93,0x12,0x7b,0x3e,0x90,0x85,0xc6, 0xe0,0x60,0x12,0x90,0x01,0x2f,0xe0,0x30,0xe7,0x05,0x74,0x10,0xf0,0x80,0x06,0x90, 0x01,0x2f,0x74,0x90,0xf0,0x7f,0x08,0x12,0x7b,0x51,0xef,0x44,0x10,0xfd,0x7f,0x08, 0x12,0x7b,0x3e,0x7f,0x01,0x51,0x70,0x7d,0x34,0x7f,0x27,0x12,0x7b,0x3e,0x7f,0x90, 0xf1,0x57,0x7f,0x90,0x12,0x7b,0x3e,0x7f,0x14,0x7e,0x00,0x02,0x7c,0x9f,0x90,0x85, 0xc8,0xe0,0xff,0x60,0x03,0xb4,0x08,0x0d,0x71,0x66,0xbf,0x01,0x08,0x51,0xec,0x90, 0x01,0xe5,0xe0,0x04,0xf0,0x22,0x90,0x92,0x7b,0xe0,0xc3,0x13,0x20,0xe0,0x3a,0x90, 0x02,0x87,0xe0,0x60,0x02,0x80,0x08,0x90,0x01,0x00,0xe0,0x64,0x3f,0x60,0x05,0x12, 0xaf,0x35,0x80,0x45,0x90,0x86,0x72,0xe0,0x30,0xe0,0x0a,0x90,0x02,0x82,0xe0,0x60, 0x04,0xf1,0xec,0x80,0x34,0x90,0x86,0x7a,0xe0,0x30,0xe0,0x04,0xf1,0xe5,0x80,0x29, 0x90,0x02,0x86,0xe0,0x20,0xe1,0x02,0x80,0x07,0x90,0x02,0x86,0xe0,0x30,0xe3,0x08, 0x90,0x01,0xb8,0x74,0x04,0xf0,0x80,0x11,0x90,0x04,0x1d,0xe0,0x60,0x08,0x90,0x01, 0xb8,0x74,0x40,0xf0,0x80,0x03,0x02,0xaf,0xac,0x90,0x01,0xb9,0x74,0x08,0xf0,0x7f, 0x00,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x90,0x92,0x8a,0xed,0xf0,0xa3,0xeb, 0xf0,0x90,0x92,0x89,0xef,0xf0,0xe4,0xfd,0xfc,0xd1,0x27,0x90,0x92,0x89,0xe0,0x90, 0x04,0x25,0xf0,0x90,0x92,0x8a,0xe0,0x60,0x05,0x91,0x88,0x44,0x80,0xf0,0xaf,0x05, 0x74,0x20,0x2f,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0x54,0xc0,0xf0,0x91,0x88, 0x54,0xc0,0xf0,0x90,0x92,0x8c,0xe0,0xff,0xae,0x05,0x74,0x18,0x2e,0xf5,0x82,0xe4, 0x34,0xfc,0xf5,0x83,0xef,0xf0,0x90,0x00,0x8b,0xe0,0xd3,0x94,0x03,0x74,0x10,0x40, 0x07,0x91,0x74,0x74,0x04,0xf0,0x80,0x04,0x91,0x74,0xe4,0xf0,0xaf,0x05,0x91,0x7d, 0xe0,0x54,0x01,0xfe,0x90,0x92,0x8b,0xe0,0x25,0xe0,0x25,0xe0,0xfb,0xee,0x44,0x02, 0x4b,0xfe,0x91,0x7d,0xee,0xf0,0x74,0x11,0x2f,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83, 0x74,0xff,0xf0,0x74,0x29,0x2f,0x91,0xa4,0x54,0xf7,0xf0,0xae,0x04,0xaf,0x05,0xd0, 0xd0,0x92,0xaf,0x22,0x2e,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0x22,0x74,0x12,0x2f, 0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0x22,0x74,0x21,0x2f,0xf5,0x82,0xe4,0x34,0xfc, 0xf5,0x83,0xe0,0x22,0xe0,0xfe,0x24,0x28,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0, 0xff,0x74,0x29,0x2e,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0x22,0x90,0x88,0xd9, 0xb1,0x4b,0x91,0x94,0xfd,0x90,0x92,0x05,0xe0,0x24,0x2c,0xd1,0x2f,0x90,0x92,0x05, 0xe0,0x2f,0x24,0x30,0xa3,0xf0,0xe0,0xfd,0x24,0x04,0xb1,0x6f,0xe0,0xfe,0x74,0x05, 0x2d,0xf5,0x82,0xe4,0x34,0xfc,0xb1,0x64,0x90,0x88,0x80,0xf0,0xa3,0xef,0xf0,0x90, 0x92,0x06,0xe0,0x24,0x0c,0xf9,0xe4,0x34,0xfc,0xb1,0x5c,0x75,0x1e,0x04,0x7b,0x01, 0x7a,0x88,0x79,0x82,0x12,0x6a,0x21,0x90,0x92,0x06,0xe0,0x24,0x14,0xf0,0xe0,0xfd, 0x24,0x01,0xd1,0x3b,0x2d,0xf5,0x82,0xe4,0x34,0xfc,0xb1,0x64,0x90,0x88,0x86,0xf0, 0xa3,0xef,0xf0,0x90,0x88,0xda,0xb1,0x4b,0x90,0x88,0x7c,0xe0,0xfe,0xa3,0xe0,0xff, 0x4e,0x60,0x11,0x90,0x92,0x05,0xe0,0xb1,0x56,0x8f,0x1e,0x7b,0x01,0x7a,0x88,0x79, 0x8a,0x12,0x6a,0x21,0x90,0x88,0xdb,0xb1,0x4b,0xb1,0x56,0x90,0x88,0x7e,0xa3,0xe0, 0xf5,0x1e,0x7b,0x01,0x7a,0x88,0x79,0xaa,0x02,0x6a,0x21,0xe0,0xff,0x12,0x7b,0x2a, 0x90,0x92,0x05,0xef,0xf0,0x22,0x24,0x00,0xf9,0xe4,0x34,0xfc,0x75,0x1b,0x01,0xf5, 0x1c,0x89,0x1d,0x22,0xf5,0x83,0xe0,0x7c,0x00,0x24,0x00,0xff,0xec,0x3e,0x22,0xf5, 0x82,0xe4,0x34,0xfc,0xf5,0x83,0x22,0xef,0x60,0x04,0xb1,0x7f,0x91,0xad,0x22,0xe4, 0xfd,0xfc,0x90,0x88,0xd8,0xe0,0xff,0xd1,0x27,0xab,0x05,0x74,0x01,0x2b,0xd1,0x3b, 0x2b,0xf5,0x82,0xe4,0x34,0xfc,0x12,0xa6,0xa8,0x90,0x88,0x76,0xf0,0xa3,0xef,0xf0, 0x74,0x03,0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0xfe,0x74,0x02,0x2b,0xf5, 0x82,0xe4,0x34,0xfc,0xd1,0x16,0x90,0x88,0x78,0xf0,0xa3,0xef,0xf0,0x74,0x05,0x2b, 0xd1,0x1f,0xe0,0xfe,0x74,0x04,0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xd1,0x16,0x90,0x88, 0x7a,0xf0,0xa3,0xef,0xf0,0x74,0x07,0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0, 0xfe,0x74,0x06,0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xd1,0x16,0x90,0x88,0x7c,0xf0,0xa3, 0xef,0xf0,0x74,0x09,0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0xfe,0x74,0x08, 0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0x24,0x00,0xff,0xec,0x3e,0x90,0x88, 0x7e,0xf0,0xa3,0xef,0xf0,0x22,0xf5,0x83,0xe0,0x24,0x00,0xff,0xea,0x3e,0x22,0xf5, 0x82,0xe4,0x34,0xfc,0xf5,0x83,0x22,0x12,0x7b,0x2a,0x7c,0x00,0xad,0x07,0x22,0xf5, 0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0xfb,0x02,0x5d,0x98,0xf5,0x82,0xe4,0x34,0xfc, 0xf5,0x83,0xe0,0xfe,0x74,0x00,0x22,0xef,0x60,0x4e,0x90,0x88,0xce,0xe0,0xff,0x60, 0x03,0x12,0x7b,0x8a,0x90,0x01,0xc7,0xe4,0xf0,0x90,0x01,0x17,0xe0,0xfe,0x90,0x01, 0x16,0xb1,0x66,0x90,0x85,0xb7,0xf0,0xa3,0xef,0xf0,0x90,0x06,0x09,0xe0,0x54,0xfe, 0xf0,0x7d,0x35,0x7f,0xff,0xd1,0xb8,0xf1,0x5f,0x90,0x02,0x86,0xe0,0x44,0x04,0xf0, 0x12,0x72,0x79,0xd1,0xc3,0xf1,0x11,0xd1,0xb5,0x12,0x76,0xe6,0x90,0x01,0x34,0x74, 0x08,0xf0,0xfd,0xe4,0xff,0x02,0x7c,0xa9,0x7d,0x08,0xe4,0xff,0x12,0x7c,0x41,0x90, 0x06,0x90,0xe0,0x54,0xf0,0xf0,0x90,0x02,0x86,0xe0,0x54,0xfb,0xf0,0xd1,0xea,0x12, 0x97,0xb9,0x02,0x97,0x06,0xe4,0xfd,0xff,0x90,0x05,0x22,0xef,0xf0,0x90,0x92,0x77, 0xed,0xf0,0x22,0x22,0x90,0x85,0xc5,0xe0,0x64,0x01,0x70,0x1d,0x12,0x8c,0xed,0x60, 0x0f,0xe4,0xfd,0x7f,0x0c,0x12,0xa9,0xd6,0xe4,0xfd,0xff,0xd1,0xb8,0x02,0x6b,0x98, 0x90,0x85,0xc8,0xe0,0x70,0x03,0x12,0xa9,0xd2,0x22,0x12,0xb3,0x69,0x12,0x77,0x89, 0x90,0x01,0x3f,0x74,0x04,0xf0,0x90,0x84,0xc5,0xe0,0xff,0xb4,0x01,0x07,0x90,0xfd, 0x00,0xe0,0x54,0xef,0xf0,0xef,0xb4,0x01,0x07,0x90,0xfe,0x10,0xe0,0x54,0xfb,0xf0, 0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xf1,0xb9,0xf1,0x4d,0xf1,0xd5,0x7f,0x02, 0xf1,0x57,0x7f,0x02,0x12,0xa6,0x95,0x44,0x02,0xf0,0x90,0x01,0x00,0x74,0xff,0xf0, 0x90,0x06,0xb7,0x74,0x09,0xf0,0x90,0x06,0xb4,0x74,0x86,0xf0,0xf1,0xb2,0xf1,0x4d, 0x12,0x87,0x4a,0xed,0x44,0x0f,0xf1,0xc6,0xd0,0xd0,0x92,0xaf,0x22,0x90,0x92,0x81, 0x12,0x04,0xeb,0x90,0x92,0x81,0x22,0x12,0x7b,0x51,0xef,0x44,0x01,0xfd,0x22,0xd3, 0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xf1,0xb9,0xf1,0xa8,0xf1,0xd5,0x12,0xb0,0x37,0x7f, 0x02,0x12,0x7b,0x51,0xef,0x54,0xfe,0xfd,0x7f,0x02,0x12,0x7b,0x3e,0xf1,0xb2,0xf1, 0xa8,0x12,0x87,0x4a,0xed,0x54,0xf0,0xf1,0xc6,0x90,0x01,0x00,0x74,0x3f,0xf0,0x90, 0x01,0x34,0x74,0x08,0xf0,0x90,0x01,0x01,0xe0,0x54,0xfd,0xf0,0x90,0x05,0x53,0xe0, 0x44,0x20,0xf0,0xd0,0xd0,0x92,0xaf,0x22,0x90,0x92,0x85,0x12,0x04,0xeb,0x90,0x92, 0x85,0x22,0x7d,0xb0,0xe4,0xff,0x02,0x7b,0xe0,0x7f,0x30,0x7e,0x08,0x12,0x70,0x61, 0xed,0x44,0x80,0xfd,0xec,0x22,0xfd,0xec,0x90,0x8d,0x9d,0x12,0x04,0xeb,0x7d,0xb0, 0xe4,0xff,0x02,0x78,0xdd,0x12,0x87,0x4a,0x90,0x91,0x66,0x12,0x04,0xeb,0x7f,0x30, 0x7e,0x08,0x02,0x71,0x18,0x90,0x01,0xb8,0x74,0x08,0xf0,0x22,0x90,0x01,0xb8,0x74, 0x02,0xf0,0x22,0xe4,0xf5,0x40,0xf5,0x41,0xf5,0x42,0x75,0x43,0x80,0xad,0x40,0x7f, 0x50,0x12,0x7b,0x3e,0xad,0x41,0x7f,0x51,0x12,0x7b,0x3e,0xad,0x42,0x7f,0x52,0x12, 0x7b,0x3e,0xad,0x43,0x7f,0x53,0x02,0x7b,0x3e,0x75,0x48,0x12,0xe4,0xf5,0x49,0x75, 0x4a,0x07,0x75,0x4b,0x32,0x90,0x01,0x30,0xe5,0x48,0xf0,0xa3,0xe5,0x49,0xf0,0xa3, 0xe5,0x4a,0xf0,0xa3,0xe5,0x4b,0xf0,0x90,0x01,0x20,0xe5,0x50,0xf0,0x22,0x12,0x75, 0xb6,0x12,0x75,0x58,0x11,0x19,0x11,0x4a,0x80,0xa9,0x75,0x52,0x06,0x75,0x53,0x01, 0x75,0x54,0x03,0x75,0x55,0x62,0x90,0x01,0x38,0xe5,0x52,0xf0,0xa3,0xe5,0x53,0xf0, 0xa3,0xe5,0x54,0xf0,0xa3,0xe5,0x55,0xf0,0x22,0x12,0x7c,0x4e,0x90,0x84,0xc5,0xef, 0xf0,0x11,0x3e,0x90,0x01,0x64,0x74,0x01,0xf0,0x90,0x04,0x23,0xe0,0x44,0x80,0xf0, 0x90,0x00,0x17,0xe0,0x54,0xfc,0x44,0x04,0xfd,0x7f,0x17,0x12,0x7b,0x3e,0x90,0x00, 0x38,0xe0,0x44,0x40,0xfd,0x7f,0x38,0x12,0x7b,0x3e,0x02,0x68,0xe2,0x90,0x00,0x80, 0xe0,0x44,0x80,0xfd,0x7f,0x80,0x12,0x7b,0x3e,0xd1,0x9d,0xd1,0xb3,0x12,0x7b,0x9c, 0x31,0x1a,0x12,0x97,0xd5,0x7f,0x01,0x12,0x85,0x15,0x90,0x92,0x7f,0x74,0x02,0xf0, 0xff,0x12,0x85,0x15,0x90,0x92,0x7f,0xe0,0x04,0xf0,0x11,0x69,0x31,0x37,0x90,0x00, 0x80,0xe0,0x44,0x40,0xfd,0x7f,0x80,0x12,0x7b,0x3e,0x75,0x20,0xff,0x12,0x7c,0xcd, 0x12,0x9a,0x07,0x90,0x00,0x81,0xe0,0x44,0x04,0xfd,0x7f,0x81,0x12,0x7b,0x3e,0x51, 0x2c,0x90,0x00,0x00,0xe0,0x54,0xfb,0xfd,0xe4,0xff,0xd1,0x95,0x44,0x04,0xfd,0x7f, 0x01,0x12,0x7b,0x3e,0x90,0x01,0x98,0x74,0x80,0xf0,0xa3,0x74,0x88,0xf0,0xa3,0xe4, 0xf0,0xa3,0x74,0x80,0xf0,0xe4,0xff,0x02,0x85,0x9e,0x90,0x01,0x01,0xe0,0x44,0x04, 0xf0,0x90,0x01,0x9a,0xe0,0x54,0xc0,0x51,0x34,0x90,0x01,0x99,0xe0,0x44,0xc0,0xf0, 0x90,0x01,0x9b,0x74,0x80,0xf0,0x22,0x51,0x26,0x12,0x7b,0xef,0x12,0x3c,0x03,0xf1, 0x15,0x31,0x70,0x31,0x6b,0x12,0x97,0x06,0x12,0x7b,0x64,0x12,0x78,0xb9,0x90,0x89, 0x16,0xe0,0x54,0x7f,0xf0,0x54,0xbf,0xf0,0x54,0xdf,0xf0,0x54,0xf0,0xf0,0xe4,0x90, 0x89,0x18,0xf0,0x90,0x89,0x16,0xe0,0x54,0xef,0xf0,0x22,0x51,0x19,0x02,0x06,0xde, 0x7e,0x00,0x7f,0xac,0x7d,0x00,0x7b,0x01,0x7a,0x85,0x79,0xc1,0x12,0x06,0xde,0x51, 0x19,0x12,0x06,0xde,0x90,0x85,0xc4,0x74,0x02,0xf0,0x90,0x85,0xcb,0x14,0x51,0x3c, 0x90,0x85,0xd1,0xe4,0xf0,0xa3,0x74,0x02,0xf0,0x51,0x0a,0xe4,0xfd,0xff,0x12,0x57, 0x82,0x7d,0x0c,0x7f,0x02,0x12,0x57,0x82,0x7d,0x0c,0x7f,0x01,0x12,0x57,0x82,0x90, 0x84,0xc5,0xe0,0xff,0xb4,0x01,0x08,0x90,0x85,0xd0,0x74,0xdd,0xf0,0x80,0x0f,0xef, 0x90,0x85,0xd0,0xb4,0x03,0x05,0x74,0xd4,0xf0,0x80,0x03,0x74,0x40,0xf0,0x7f,0x79, 0x12,0x7b,0x51,0xef,0x54,0x03,0xff,0xbf,0x02,0x0f,0x7f,0x28,0x12,0x7b,0x51,0xef, 0x30,0xe2,0x06,0x90,0x85,0xfb,0x74,0x02,0xf0,0x12,0x8a,0xad,0x51,0x0a,0x7f,0x01, 0x12,0x69,0x33,0x90,0x06,0x04,0xe0,0x54,0x7f,0xf0,0x90,0x06,0x0a,0xe0,0x54,0xf8, 0xf0,0x12,0x9e,0xb5,0xe4,0x90,0x86,0x71,0xf0,0x22,0x90,0x85,0xfb,0xe0,0x24,0x04, 0x90,0x85,0xdd,0xf0,0xa3,0x74,0x08,0xf0,0x22,0x7e,0x00,0x7f,0x04,0x7d,0x00,0x7b, 0x01,0x7a,0x92,0x79,0x7b,0x22,0xe4,0xfd,0xff,0x02,0x6e,0x5f,0x90,0x01,0xe4,0xe4, 0xf0,0xa3,0xf0,0x22,0xf0,0x7f,0x0a,0x7e,0x00,0x02,0x7c,0x9f,0xf0,0xa3,0xf0,0xa3, 0x74,0x08,0xf0,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xe4,0x90,0x92,0x5a,0x51, 0x3c,0xa3,0xf0,0xe4,0xa3,0xf0,0xa3,0xf0,0x90,0x92,0x62,0xf0,0xa3,0xf0,0xa3,0xf0, 0x90,0x01,0xc4,0x74,0x44,0xf0,0x74,0xa2,0xa3,0xf0,0x90,0x01,0x1f,0xe0,0xfe,0x90, 0x01,0x1e,0x12,0x9d,0x66,0x90,0x92,0x51,0xf0,0xa3,0xef,0xf0,0x90,0x02,0x82,0xe0, 0x90,0x92,0x59,0xf0,0x90,0x86,0x72,0xe0,0x20,0xe0,0x02,0xa1,0x32,0xe4,0x90,0x92, 0x58,0xf0,0x90,0x92,0x59,0xe0,0xff,0x90,0x92,0x58,0xe0,0xc3,0x9f,0x40,0x02,0xa1, 0x32,0x90,0x92,0x51,0xe0,0xfc,0xa3,0xe0,0xfd,0xec,0xff,0x90,0xfd,0x11,0xf0,0x90, 0x92,0x62,0xef,0xf0,0x74,0x01,0x2d,0xf5,0x82,0xe4,0x34,0xfb,0xf5,0x83,0xe0,0xfe, 0x74,0x00,0x2d,0xf5,0x82,0xe4,0x34,0xfb,0xd1,0xa8,0x54,0x3f,0xfe,0x90,0x92,0x53, 0xf0,0xa3,0xef,0xf0,0x90,0x92,0x5e,0xee,0xf0,0xa3,0xef,0xf0,0x74,0x02,0x2d,0xf5, 0x82,0xe4,0x34,0xfb,0xf5,0x83,0xe0,0x54,0x0f,0x33,0x33,0x33,0x54,0xf8,0xff,0x74, 0x03,0x2d,0xf5,0x82,0xe4,0x34,0xfb,0xf5,0x83,0xe0,0x54,0x03,0xfe,0xef,0x24,0x18, 0x2e,0xff,0x90,0x92,0x63,0xf0,0x90,0x92,0x52,0xe0,0x2f,0xff,0x90,0x92,0x51,0xe0, 0x34,0x00,0xfe,0x90,0x92,0x55,0xb1,0x5e,0xc0,0x07,0xb1,0x43,0x7d,0x01,0x12,0x55, 0x36,0xc0,0x07,0xb1,0x43,0x7d,0x04,0x12,0x55,0x36,0xab,0x07,0xd0,0x05,0xd0,0x07, 0x12,0x5d,0x98,0x90,0x92,0x5a,0xef,0xb1,0x42,0xe4,0xfd,0x12,0x55,0x36,0xef,0x54, 0xfc,0x90,0x92,0x57,0xf0,0x90,0x92,0x63,0xe0,0xff,0x90,0x92,0x53,0xe4,0x8f,0xf0, 0x12,0x07,0x0a,0x90,0x92,0x53,0xe0,0xfe,0xa3,0xe0,0xff,0x12,0x7a,0xd0,0x90,0x92, 0x53,0xee,0xf0,0xa3,0xef,0xf0,0xb1,0x67,0x7d,0x0f,0x12,0x55,0x36,0x90,0x92,0x53, 0xe0,0xfc,0xa3,0xe0,0xfd,0x90,0x92,0x51,0xec,0x8d,0xf0,0x12,0x07,0x0a,0x90,0x85, 0xb7,0xe0,0xfc,0xa3,0xe0,0xfd,0xd3,0x90,0x92,0x52,0xe0,0x9d,0x90,0x92,0x51,0xe0, 0x9c,0x40,0x1b,0x90,0x85,0xb8,0xe0,0x24,0x01,0xfd,0x90,0x85,0xb7,0xe0,0x34,0x00, 0xfc,0xc3,0x90,0x92,0x52,0xe0,0x9d,0xf0,0x90,0x92,0x51,0xe0,0x9c,0xf0,0xef,0x30, 0xe6,0x06,0x90,0x01,0xc7,0x74,0x22,0xf0,0xef,0x30,0xe7,0x06,0x90,0x01,0xc7,0x74, 0x21,0xf0,0xef,0x30,0xe5,0x06,0x90,0x01,0xc7,0x74,0x23,0xf0,0x90,0x92,0x57,0xe0, 0x24,0x40,0x60,0x04,0x24,0x20,0x70,0x2a,0x90,0x86,0x75,0x12,0x8d,0x0c,0x20,0xe0, 0x02,0x81,0xc6,0x90,0x86,0x87,0xe0,0x04,0xb1,0x42,0x12,0x59,0x20,0xef,0x70,0x02, 0x81,0xc6,0x90,0x92,0x57,0xe0,0xff,0x12,0x7b,0x77,0x90,0x86,0x88,0xe0,0x04,0xf0, 0x81,0xc6,0xd1,0x8d,0x54,0x03,0x30,0xe0,0x56,0x90,0x92,0x5a,0xe0,0xff,0x90,0x92, 0x56,0xe0,0x2f,0xff,0x90,0x92,0x55,0xe0,0x34,0x00,0xcf,0x24,0x08,0xcf,0x34,0x00, 0xfe,0x90,0x92,0x60,0xb1,0x5e,0xef,0x64,0x45,0x70,0x34,0xb1,0x4d,0xb1,0xa4,0xef, 0x64,0x01,0x70,0x2b,0xb1,0x4d,0xb1,0x70,0xef,0x64,0x01,0x70,0x22,0x90,0x92,0x64, 0x04,0xb1,0x4c,0xa3,0xe0,0xfd,0xd1,0x21,0xef,0x70,0x0c,0x90,0x92,0x62,0xe0,0xfd, 0x90,0xfd,0x11,0xb1,0x4c,0xb1,0xe6,0x90,0x92,0x62,0xe0,0x90,0xfd,0x11,0xf0,0xb1, 0x43,0x12,0x59,0x20,0xef,0x60,0x18,0xb1,0x43,0x90,0x92,0x5a,0xe0,0xfd,0x90,0x92, 0x5d,0xe0,0xfb,0x12,0x54,0x02,0xef,0x60,0x06,0x90,0x92,0x64,0x74,0x01,0xf0,0x90, 0x86,0x72,0xe0,0xc3,0x13,0x30,0xe0,0x13,0xb1,0x43,0x90,0x92,0x5a,0xe0,0xfd,0x12, 0x38,0x10,0xef,0x60,0x06,0x90,0x92,0x64,0x74,0x01,0xf0,0x12,0x8c,0xe5,0x54,0x3f, 0x30,0xe0,0x0a,0xb1,0x43,0x90,0x92,0x5a,0xe0,0xfd,0x12,0x21,0xb6,0x90,0x86,0x72, 0x12,0x8d,0x0c,0x30,0xe0,0x10,0x90,0x92,0x64,0xe0,0x70,0x0a,0xb1,0x43,0x90,0x92, 0x5a,0xe0,0xfd,0x12,0x4a,0x3f,0x12,0x79,0x00,0xef,0x64,0x01,0x60,0x07,0x90,0x01, 0x3f,0xe0,0x30,0xe2,0x05,0x7f,0x01,0x12,0x5f,0xe9,0x90,0x01,0x3f,0xe0,0x30,0xe2, 0x02,0xb1,0x56,0x12,0x6f,0xe5,0xef,0x64,0x01,0x70,0x36,0x90,0x86,0x89,0xe0,0x04, 0xf0,0x12,0x6f,0xe5,0xad,0x07,0xef,0x64,0x01,0x60,0x1f,0xb1,0x56,0xed,0xb4,0x02, 0x08,0x90,0x01,0xc7,0x74,0x42,0xf0,0x80,0x0a,0xed,0xb4,0x04,0x06,0x90,0x01,0xc7, 0x74,0x43,0xf0,0x7f,0x01,0x12,0x5f,0xe9,0x80,0x18,0xb1,0x67,0x12,0x7c,0x0b,0x80, 0x09,0x90,0x86,0x72,0xe0,0x54,0xfe,0xf0,0x80,0x08,0x90,0x92,0x58,0xe0,0x04,0xf0, 0x41,0x92,0x74,0x44,0x04,0x90,0x01,0xc4,0xf0,0x74,0xa2,0xa3,0xf0,0xd0,0xd0,0x92, 0xaf,0x22,0xf0,0x90,0x92,0x55,0xe0,0xfe,0xa3,0xe0,0xff,0x22,0xf0,0x90,0x92,0x60, 0xe0,0xfe,0xa3,0xe0,0xff,0x22,0x90,0x86,0x7a,0xe0,0x44,0x01,0xf0,0x22,0xf0,0xa3, 0xef,0xf0,0xe4,0xfd,0x02,0x55,0x36,0x90,0x92,0x51,0xe0,0xfe,0xa3,0xe0,0xff,0x22, 0xb1,0xdd,0x24,0x16,0xff,0xe4,0x3e,0xfe,0xe4,0xfd,0x12,0x55,0x36,0x90,0x88,0x86, 0xa3,0xe0,0xb5,0x07,0x19,0x90,0x92,0x26,0xe0,0x24,0x16,0xd1,0x67,0x7d,0x01,0x12, 0x55,0x36,0xef,0xfd,0x90,0x88,0x86,0xe0,0x6d,0x70,0x01,0xe4,0x60,0x03,0x7f,0x00, 0x22,0x7f,0x01,0x22,0xb1,0xdd,0xe4,0xa3,0xf0,0x90,0x92,0x27,0xe0,0xfd,0xc3,0x94, 0x04,0x50,0x27,0x90,0x92,0x26,0xe0,0x24,0x10,0xd1,0x67,0x12,0x55,0x36,0x90,0x92, 0x27,0xe0,0x24,0x82,0xf5,0x82,0xe4,0x34,0x88,0xf5,0x83,0xe0,0x6f,0x60,0x03,0x7f, 0x00,0x22,0x90,0x92,0x27,0xe0,0x04,0xf0,0x80,0xcf,0x7f,0x01,0x22,0x90,0x92,0x25, 0xee,0xf0,0xa3,0xef,0xf0,0x22,0xb1,0xdd,0xa3,0xed,0xf0,0xe4,0xa3,0xf0,0xd1,0x70, 0x50,0x17,0xd1,0x79,0x24,0xaa,0xf5,0x82,0xe4,0x34,0x88,0xf5,0x83,0xe0,0xb5,0x07, 0x1d,0x90,0x92,0x28,0xe0,0x04,0xf0,0x80,0xe5,0x90,0x06,0x32,0xe0,0x44,0x80,0xf0, 0x90,0x01,0xc7,0x74,0x30,0xf0,0x7f,0x01,0x12,0x5f,0xe9,0x7f,0x01,0x22,0x7f,0x00, 0x22,0xb1,0xdd,0xa3,0xed,0xf0,0x90,0x88,0x7c,0xe0,0x70,0x02,0xa3,0xe0,0x60,0x23, 0xe4,0x90,0x92,0x28,0xf0,0xd1,0x70,0x50,0x1d,0xd1,0x79,0x24,0x8a,0xf5,0x82,0xe4, 0x34,0x88,0xf5,0x83,0xe0,0x6f,0x60,0x03,0x7f,0x00,0x22,0x90,0x92,0x28,0xe0,0x04, 0xf0,0x80,0xe2,0x7f,0x00,0x22,0x90,0x06,0x32,0xe0,0x44,0x40,0xf0,0xe4,0x90,0x88, 0x88,0xf0,0xa3,0xf0,0x7f,0x01,0x22,0xff,0x90,0x92,0x25,0xe0,0x34,0x00,0xfe,0x22, 0x90,0x92,0x28,0xe0,0xfd,0xc3,0x94,0x02,0x22,0x90,0x92,0x25,0xe0,0xfe,0xa3,0xe0, 0xff,0xed,0x24,0x1c,0xfd,0x12,0x55,0x36,0x90,0x92,0x28,0xe0,0x22,0x90,0x86,0x72, 0xe0,0xc4,0x13,0x13,0x22,0x12,0x7b,0x3e,0x90,0x01,0x01,0xe0,0x22,0x90,0x84,0xa1, 0x74,0x02,0xf0,0xa3,0x74,0x10,0xf0,0x22,0xf5,0x83,0xe0,0x7a,0x00,0x24,0x00,0xff, 0xea,0x3e,0x22,0x90,0x01,0x94,0xe0,0x44,0x01,0xf0,0x90,0x01,0xc7,0xe4,0xf0,0x22, 0x90,0x92,0x4b,0xef,0xf0,0x90,0x84,0xc5,0xe0,0x64,0x02,0x70,0x22,0x90,0x92,0x4b, 0xe0,0xfd,0x64,0x01,0x70,0x35,0xb1,0x56,0x90,0x86,0x76,0xe0,0x12,0x8d,0x0e,0x30, 0xe0,0x09,0x90,0x01,0x4d,0xe0,0x64,0x80,0xf0,0x80,0x20,0xaf,0x05,0x80,0x19,0x90, 0x01,0x00,0x74,0xff,0xf0,0x7f,0x64,0x7e,0x00,0x12,0x7c,0x9f,0x90,0x06,0x90,0xe0, 0x44,0x01,0xf0,0x90,0x92,0x4b,0xe0,0xff,0x12,0x2a,0x87,0x90,0x88,0xe1,0xe0,0x54, 0xfe,0xf0,0x02,0x97,0xbb,0x7b,0xff,0x7a,0x83,0x79,0x09,0x90,0x89,0x1b,0x12,0x87, 0x6b,0x7a,0x82,0x79,0x00,0x90,0x89,0x1e,0x12,0x87,0x6b,0x7a,0x82,0x79,0x3f,0x90, 0x89,0x21,0x12,0x87,0x6b,0x7a,0x82,0x79,0xe1,0x90,0x89,0x27,0x12,0x87,0x6b,0x7a, 0x83,0x79,0x1d,0x90,0x89,0x2a,0x12,0x87,0x6b,0x7a,0x83,0x79,0x45,0x90,0x89,0x2d, 0x12,0x87,0x6b,0x7a,0x83,0x79,0x59,0x90,0x89,0x33,0x12,0x87,0x6b,0x7a,0x83,0x79, 0x6d,0x90,0x89,0x36,0x12,0x87,0x6b,0x7a,0x83,0x79,0x95,0x90,0x89,0x39,0x02,0x87, 0x6b,0x7d,0x02,0x90,0x01,0xc4,0x74,0x71,0xf0,0x74,0xa7,0xa3,0xf0,0x90,0x92,0x7f, 0xe0,0xff,0xed,0xc3,0x9f,0x50,0x15,0xed,0x25,0xe0,0x24,0x81,0xf8,0xe6,0x30,0xe4, 0x08,0x12,0x9f,0xe5,0xa3,0xf0,0x7f,0x00,0x22,0x0d,0x80,0xe1,0x7f,0x01,0x22,0xe4, 0x90,0x92,0x21,0xf0,0xa3,0xf0,0xa3,0xf0,0x90,0x92,0x21,0xe0,0x64,0x01,0xf0,0x24, 0x9f,0x90,0x01,0xc4,0xf0,0x74,0xa7,0xa3,0xf0,0x12,0x7c,0x66,0xbf,0x01,0x03,0x12, 0x5b,0x25,0x90,0x85,0xc5,0xe0,0x60,0x0f,0x90,0x85,0xc8,0xe0,0xff,0x90,0x85,0xc7, 0xe0,0x6f,0x60,0x03,0x12,0xac,0x6b,0xc2,0xaf,0xf1,0x71,0xbf,0x01,0x03,0x12,0xb2, 0xa2,0xd2,0xaf,0x90,0x92,0x22,0x12,0x99,0xdd,0x54,0x7f,0x45,0xf0,0x70,0x0d,0x7f, 0xff,0x12,0x7b,0x51,0xef,0x04,0xfd,0x7f,0xff,0x12,0x7b,0x3e,0x12,0x8f,0xf4,0x12, 0x84,0x4d,0x80,0xa4,0x32,0xc0,0xe0,0xc0,0xf0,0xc0,0x83,0xc0,0x82,0xc0,0xd0,0x75, 0xd0,0x00,0xc0,0x00,0xc0,0x01,0xc0,0x02,0xc0,0x03,0xc0,0x04,0xc0,0x05,0xc0,0x06, 0xc0,0x07,0x90,0x01,0xc4,0x74,0x05,0xf0,0x74,0xa8,0xa3,0xf0,0x12,0x6c,0xbc,0xe5, 0x47,0x30,0xe7,0x02,0x11,0x5c,0x74,0x05,0x04,0x90,0x01,0xc4,0xf0,0x74,0xa8,0xa3, 0xf0,0xd0,0x07,0xd0,0x06,0xd0,0x05,0xd0,0x04,0xd0,0x03,0xd0,0x02,0xd0,0x01,0xd0, 0x00,0xd0,0xd0,0xd0,0x82,0xd0,0x83,0xd0,0xf0,0xd0,0xe0,0x32,0x7f,0x01,0x7e,0x00, 0x12,0x7a,0x72,0x7f,0xf2,0x12,0x7b,0x51,0xef,0x20,0xe6,0x0e,0x7f,0x05,0x12,0x7b, 0x51,0xef,0x44,0x80,0xfd,0x7f,0x05,0x12,0x7b,0x3e,0x22,0xc0,0xe0,0xc0,0xf0,0xc0, 0x83,0xc0,0x82,0xc0,0xd0,0x75,0xd0,0x00,0xc0,0x00,0xc0,0x01,0xc0,0x02,0xc0,0x03, 0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0,0x07,0x90,0x01,0xc4,0x74,0x7b,0xf0,0x74,0xa8, 0xa3,0xf0,0x12,0x71,0x90,0xe5,0x4c,0x30,0xe1,0x02,0xf1,0x2b,0xe5,0x4c,0x30,0xe3, 0x03,0x12,0xb0,0xba,0xe5,0x4c,0x30,0xe4,0x02,0xf1,0xb4,0xe5,0x4c,0x30,0xe5,0x03, 0x12,0xb0,0xc7,0xe5,0x4e,0x30,0xe0,0x02,0x31,0x31,0xe5,0x4e,0x30,0xe1,0x03,0x12, 0x98,0x78,0xe5,0x4e,0x30,0xe2,0x02,0xd1,0xac,0xe5,0x4e,0x30,0xe3,0x02,0x91,0x15, 0xe5,0x4e,0x30,0xe4,0x02,0x91,0x3e,0xe5,0x4e,0x30,0xe5,0x03,0x12,0xb0,0x1b,0xe5, 0x4e,0x30,0xe6,0x02,0x91,0x74,0xe5,0x4f,0x30,0xe1,0x02,0xf1,0xd5,0xe5,0x4f,0x30, 0xe4,0x02,0xf1,0x30,0xe5,0x4f,0x30,0xe5,0x02,0xf1,0x28,0x74,0x7b,0x04,0x90,0x01, 0xc4,0xf0,0x74,0xa8,0xa3,0xf0,0xd0,0x07,0xd0,0x06,0xd0,0x05,0xd0,0x04,0xd0,0x03, 0xd0,0x02,0xd0,0x01,0xd0,0x00,0xd0,0xd0,0xd0,0x82,0xd0,0x83,0xd0,0xf0,0xd0,0xe0, 0x32,0xe4,0xf5,0x72,0x90,0x85,0xc5,0xe0,0x70,0x02,0x21,0xd1,0x91,0x0e,0x64,0x01, 0x60,0x02,0x21,0xd1,0x71,0x6b,0x12,0x87,0x3d,0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0, 0x07,0x90,0x05,0x62,0x71,0x84,0x78,0x10,0x12,0x04,0xd8,0xd0,0x03,0xd0,0x02,0xd0, 0x01,0xd0,0x00,0x12,0x87,0x3d,0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0,0x07,0xa3,0x71, 0x84,0x78,0x18,0x12,0x04,0xd8,0xd0,0x03,0xd0,0x02,0xd0,0x01,0xd0,0x00,0x91,0x62, 0xf1,0xbc,0x60,0x1e,0x24,0xfe,0x60,0x03,0x04,0x70,0x1a,0xd1,0xe3,0xe0,0xff,0x60, 0x06,0x90,0x85,0xce,0xe0,0x60,0x0e,0xef,0x70,0x08,0x90,0x85,0xcb,0xe0,0xa3,0xf0, 0x80,0x00,0x75,0x72,0x01,0xe5,0x72,0x60,0x28,0x91,0x5a,0x90,0x85,0xce,0xe0,0x60, 0x03,0xb4,0x01,0x04,0x91,0x04,0x80,0x08,0x91,0x04,0x75,0xf0,0x03,0xa4,0x24,0xfe, 0xff,0x90,0x85,0xcd,0xe0,0x2f,0x91,0x30,0x90,0x85,0xc8,0xe0,0x20,0xe2,0x02,0x31, 0xd2,0x22,0x7d,0x01,0x7f,0x04,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x90,0x92,0x9e, 0xed,0xf0,0x90,0x85,0xc1,0xe0,0xfe,0xc4,0x13,0x13,0x54,0x03,0x30,0xe0,0x02,0x61, 0x30,0xee,0x12,0x8d,0x0e,0x30,0xe0,0x02,0x61,0x30,0x90,0x85,0xc8,0xe0,0xfe,0x6f, 0x70,0x02,0x61,0x30,0xef,0x70,0x02,0x41,0x9c,0x24,0xfe,0x70,0x02,0x41,0xd8,0x24, 0xfe,0x60,0x4d,0x24,0xfc,0x70,0x02,0x61,0x17,0x24,0xfc,0x60,0x02,0x61,0x29,0xee, 0xb4,0x0e,0x03,0x12,0x74,0x93,0x90,0x85,0xc8,0xe0,0x70,0x05,0x7f,0x01,0x12,0x79, 0x80,0x90,0x85,0xc8,0xe0,0xb4,0x06,0x03,0x12,0x73,0x8e,0x90,0x85,0xc8,0xe0,0xb4, 0x04,0x0f,0x90,0x92,0x9e,0xe0,0xff,0x60,0x05,0x12,0x6d,0x4c,0x80,0x03,0x12,0x79, 0x61,0x90,0x85,0xc8,0xe0,0x64,0x08,0x60,0x02,0x61,0x29,0x12,0x7a,0xb9,0x61,0x29, 0x90,0x85,0xc8,0xe0,0x70,0x05,0x7f,0x01,0x12,0x79,0x80,0x90,0x85,0xc8,0xe0,0xb4, 0x06,0x03,0x12,0x73,0x8e,0x90,0x85,0xc8,0xe0,0xb4,0x0e,0x08,0x71,0x35,0xbf,0x01, 0x03,0x12,0x74,0x93,0x90,0x85,0xc8,0xe0,0x64,0x0c,0x60,0x02,0x61,0x29,0x71,0x35, 0xef,0x64,0x01,0x60,0x02,0x61,0x29,0x12,0x70,0x9e,0x61,0x29,0x90,0x85,0xc8,0xe0, 0xb4,0x0e,0x08,0x71,0x35,0xbf,0x01,0x03,0x12,0x74,0x93,0x90,0x85,0xc8,0xe0,0xb4, 0x06,0x03,0x12,0x73,0x8e,0x90,0x85,0xc8,0xe0,0xb4,0x0c,0x08,0x71,0x35,0xbf,0x01, 0x03,0x12,0x70,0x9e,0x90,0x85,0xc8,0xe0,0x64,0x04,0x70,0x5d,0xf1,0x3c,0xef,0x64, 0x01,0x70,0x56,0x12,0x77,0xfe,0x80,0x51,0x90,0x85,0xc8,0xe0,0xb4,0x0e,0x08,0x71, 0x35,0xbf,0x01,0x03,0x12,0x74,0x93,0x90,0x85,0xc8,0xe0,0xb4,0x06,0x03,0x12,0x73, 0x8e,0x90,0x85,0xc8,0xe0,0xb4,0x0c,0x08,0x71,0x35,0xbf,0x01,0x03,0x12,0x70,0x9e, 0x90,0x85,0xc8,0xe0,0x70,0x05,0x7f,0x01,0x12,0x79,0x80,0x90,0x85,0xc8,0xe0,0xb4, 0x04,0x17,0x12,0x79,0xf3,0x80,0x12,0x90,0x85,0xc8,0xe0,0xb4,0x0c,0x0b,0x12,0x8f, 0xaf,0x54,0x3f,0x30,0xe0,0x03,0x12,0x7a,0x8a,0x90,0x85,0xc8,0x12,0xb3,0x8a,0xf0, 0xd0,0xd0,0x92,0xaf,0x22,0x12,0x7a,0x29,0xef,0x64,0x01,0x60,0x04,0xf1,0x35,0x80, 0x21,0x90,0x85,0xc1,0xe0,0x13,0x13,0x13,0x54,0x1f,0x30,0xe0,0x05,0x12,0x9f,0xec, 0x80,0x10,0x90,0x85,0xc7,0xe0,0xd3,0x94,0x04,0x40,0x05,0x12,0x9f,0xe5,0x80,0x02, 0xe1,0xac,0x90,0x01,0xb9,0x74,0x02,0xf0,0x7f,0x00,0x22,0x90,0x05,0x61,0xe0,0xff, 0xe4,0xfc,0xfd,0xfe,0x78,0x08,0x12,0x04,0xd8,0xa8,0x04,0xa9,0x05,0xaa,0x06,0xab, 0x07,0x90,0x05,0x60,0xe0,0xff,0xe4,0xfc,0xfd,0xfe,0x22,0xe4,0x90,0x92,0x47,0xf0, 0x90,0x85,0xc5,0xe0,0x60,0x6d,0x91,0x0e,0x64,0x01,0x70,0x67,0x90,0x85,0xcb,0xe0, 0x90,0x05,0x73,0xf0,0x71,0x6b,0x12,0x87,0x3d,0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0, 0x07,0x90,0x05,0x62,0x71,0x84,0x78,0x10,0x12,0x04,0xd8,0xd0,0x03,0xd0,0x02,0xd0, 0x01,0xd0,0x00,0x12,0x87,0x3d,0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0,0x07,0xa3,0x71, 0x84,0x78,0x18,0x12,0x04,0xd8,0xd0,0x03,0xd0,0x02,0xd0,0x01,0xd0,0x00,0x91,0x62, 0x90,0x92,0x47,0x74,0x01,0xf0,0xe4,0x90,0x85,0xcc,0xf0,0x04,0x60,0x15,0x91,0x5a, 0xe4,0x90,0x91,0x6e,0xf0,0x90,0x85,0xcd,0x91,0x2f,0x90,0x85,0xc8,0xe0,0x20,0xe2, 0x02,0x31,0xd2,0x22,0xe4,0x90,0x91,0x6e,0xf0,0x90,0x85,0xce,0xe0,0x22,0xe4,0xff, 0x12,0x77,0x39,0xef,0x22,0x91,0x0e,0x64,0x01,0x70,0x0a,0x90,0x85,0xc5,0xe0,0x60, 0x04,0xb1,0x6b,0x91,0x26,0x22,0xf0,0xe4,0x90,0x91,0x6e,0xf0,0x90,0x86,0x6e,0xe0, 0x90,0x91,0x6f,0xf0,0xe4,0xfb,0xfd,0x7f,0x54,0x7e,0x01,0x02,0x61,0x41,0x91,0x0e, 0x64,0x01,0x70,0x15,0x90,0x85,0xc5,0xe0,0x60,0x0f,0xb1,0x6b,0xf0,0x90,0x85,0xc1, 0xe0,0xb1,0x76,0x54,0x07,0x70,0x02,0x91,0x6b,0x22,0x90,0x85,0xc9,0xe0,0x44,0x10, 0xf0,0x22,0x12,0x87,0x3d,0x90,0x86,0x02,0x02,0x04,0xeb,0x90,0x85,0xc7,0xe0,0xff, 0x7d,0x01,0x21,0xd6,0xe4,0xff,0x12,0x77,0x39,0xbf,0x01,0x0e,0x90,0x85,0xc5,0xe0, 0x60,0x08,0x91,0xdf,0x54,0x07,0x70,0x02,0x91,0x6b,0x22,0xe4,0xf5,0x72,0x90,0x06, 0xa9,0xe0,0xf5,0x72,0x54,0xc0,0x70,0x07,0x91,0xdf,0x54,0xfd,0xf0,0x80,0xcc,0xe5, 0x72,0x30,0xe6,0x1f,0x90,0x85,0xc5,0xe0,0x64,0x01,0x70,0x19,0x90,0x85,0xc9,0xe0, 0x44,0x01,0x12,0x8c,0xec,0x64,0x02,0x60,0x05,0x12,0x77,0x61,0x80,0x07,0x12,0x79, 0x41,0x80,0x02,0x91,0xdf,0xe5,0x72,0x90,0x85,0xc9,0x30,0xe7,0x0d,0xe0,0x44,0x02, 0x91,0x26,0x90,0x85,0xc1,0xe0,0x44,0x04,0xf0,0x22,0xe0,0x54,0xfd,0xf0,0x22,0x90, 0x85,0xc9,0xe0,0x54,0xfe,0xf0,0x22,0x12,0x8f,0xaf,0x13,0x54,0x1f,0x30,0xe0,0x10, 0xef,0xc4,0x13,0x13,0x54,0x03,0x30,0xe0,0x07,0x7d,0x02,0x7f,0x02,0x12,0x7c,0x41, 0x90,0x85,0xc1,0xe0,0xff,0x13,0x13,0x54,0x3f,0x30,0xe0,0x09,0xef,0xb1,0x76,0x54, 0x07,0x70,0x4f,0x80,0x4b,0x90,0x85,0xce,0xe0,0x04,0xf0,0x90,0x85,0xc9,0xe0,0x54, 0xef,0xf0,0x90,0x86,0x6d,0xe0,0xff,0x90,0x85,0xce,0xe0,0xd3,0x9f,0x40,0x31,0x91, 0x0e,0x64,0x01,0x70,0x2d,0x12,0x8c,0xed,0x70,0x05,0x12,0x70,0xdb,0x80,0x24,0x12, 0x70,0xdb,0x90,0x85,0xcf,0xe0,0x04,0xf0,0xe0,0xd3,0x94,0x02,0x40,0x09,0xb1,0x63, 0xe4,0x90,0x85,0xcf,0xf0,0x80,0x03,0x12,0x79,0x41,0xe4,0x90,0x85,0xce,0xf0,0x22, 0x91,0x6b,0x22,0x90,0x85,0xc2,0xe0,0x54,0xfb,0xf0,0x22,0x90,0x01,0x57,0xe4,0xf0, 0x90,0x01,0x3c,0x74,0x02,0x22,0x54,0xfb,0xf0,0x90,0x85,0xc9,0xe0,0x54,0xfd,0xf0, 0x22,0x71,0x8b,0x12,0xb3,0x97,0x12,0x8f,0x92,0x90,0x92,0x7b,0xe0,0x30,0xe0,0x14, 0xf1,0xcc,0x90,0x92,0x7e,0xe0,0x60,0x05,0x14,0xf0,0x02,0x7a,0x8a,0xf1,0xdf,0xe4, 0xff,0x12,0x8b,0xf3,0x22,0x90,0x85,0xc5,0xe0,0x60,0x0e,0x90,0x06,0x92,0xe0,0x30, 0xe1,0x03,0x02,0x6b,0x98,0xf1,0xc4,0x91,0x6b,0x22,0x90,0x85,0xc1,0x12,0x96,0xca, 0x30,0xe0,0x18,0xef,0x54,0xbf,0xd1,0x8f,0x30,0xe0,0x06,0xe0,0x44,0x01,0xf0,0x80, 0x08,0xe0,0x54,0xfe,0xd1,0xa1,0x74,0x04,0xf0,0x91,0x6b,0xe4,0xff,0x02,0x68,0x8f, 0xc0,0xe0,0xc0,0xf0,0xc0,0x83,0xc0,0x82,0xc0,0xd0,0x75,0xd0,0x00,0xc0,0x00,0xc0, 0x01,0xc0,0x02,0xc0,0x03,0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0,0x07,0x90,0x01,0xc4, 0x74,0xe0,0xf0,0x74,0xad,0xa3,0xf0,0x12,0x75,0x28,0xe5,0x56,0x30,0xe1,0x02,0xd1, 0x98,0xe5,0x56,0x30,0xe2,0x02,0xb1,0xa5,0xe5,0x57,0x30,0xe0,0x02,0xd1,0xea,0xe5, 0x59,0x30,0xe1,0x05,0x7f,0x04,0x12,0x98,0x69,0xe5,0x59,0x30,0xe4,0x02,0xb1,0x81, 0xe5,0x59,0x30,0xe5,0x02,0xb1,0xba,0xe5,0x59,0x30,0xe6,0x02,0xd1,0x64,0x74,0xe0, 0x04,0x90,0x01,0xc4,0xf0,0x74,0xad,0xa3,0xf0,0xd0,0x07,0xd0,0x06,0xd0,0x05,0xd0, 0x04,0xd0,0x03,0xd0,0x02,0xd0,0x01,0xd0,0x00,0xd0,0xd0,0xd0,0x82,0xd0,0x83,0xd0, 0xf0,0xd0,0xe0,0x32,0x90,0x85,0xc1,0x12,0x8d,0x0c,0x30,0xe0,0x1d,0xef,0x54,0x7f, 0xd1,0x8f,0x30,0xe1,0x06,0xe0,0x44,0x02,0xf0,0x80,0x07,0xe0,0x54,0xfd,0xd1,0xa1, 0x04,0xf0,0x90,0x85,0xc5,0xe0,0x60,0x02,0x91,0x6b,0x7f,0x01,0x02,0x68,0x8f,0xf0, 0x90,0x04,0xe0,0xe0,0x90,0x85,0xc2,0x22,0x90,0x85,0xc5,0xe0,0x60,0x02,0x91,0xe7, 0x22,0xf0,0x90,0x01,0xb9,0x74,0x01,0xf0,0x90,0x01,0xb8,0x22,0x90,0x88,0xe7,0xe0, 0x04,0xf0,0x90,0x85,0xc8,0xe0,0x64,0x02,0x60,0x28,0x12,0x8e,0xc1,0x90,0x85,0xc2, 0xe0,0x13,0x13,0x13,0x54,0x1f,0x30,0xe0,0x13,0x12,0x8f,0xb7,0x6f,0x70,0x0d,0xef, 0x14,0x12,0x8c,0x35,0x12,0x7b,0xfd,0x12,0x8f,0xf6,0xd1,0xe3,0x90,0x01,0xe6,0xe0, 0x04,0xf0,0x22,0x90,0x85,0xcc,0xe0,0x14,0xf0,0x22,0x12,0xb2,0x3c,0x90,0x92,0x47, 0xef,0xf0,0x30,0xe0,0x05,0x7d,0x01,0xe4,0x80,0x02,0xe4,0xfd,0xff,0x12,0x57,0x82, 0x90,0x92,0x47,0xe0,0x30,0xe6,0x11,0x90,0x01,0x2f,0xe0,0x30,0xe7,0x04,0xe4,0xf0, 0x80,0x06,0x90,0x01,0x2f,0x74,0x80,0xf0,0x90,0x85,0xd7,0xe0,0xff,0xa3,0xe0,0xfd, 0x90,0x85,0xde,0xe0,0xfb,0x02,0x51,0x7d,0x02,0x4d,0x6e,0xe4,0xff,0x02,0x97,0xee, 0xe4,0xff,0x02,0x2d,0xbd,0x90,0x01,0xb8,0x74,0x01,0xf0,0x22,0x12,0x7a,0x29,0xef, 0x64,0x01,0x60,0x04,0xf1,0x35,0x80,0x5b,0x90,0x85,0xc9,0xe0,0xff,0x54,0x03,0x60, 0x05,0x12,0x9f,0xec,0x80,0x4d,0x90,0x85,0xc7,0xe0,0xfe,0xe4,0xc3,0x9e,0x50,0x08, 0x90,0x01,0xb8,0x74,0x04,0xf0,0x80,0x3b,0xef,0x30,0xe2,0x05,0x12,0x9f,0xe5,0x80, 0x32,0x90,0x85,0xc9,0xe0,0x30,0xe4,0x08,0x90,0x01,0xb8,0x74,0x10,0xf0,0x80,0x23, 0x90,0x85,0xc2,0xe0,0x13,0x13,0x54,0x3f,0x20,0xe0,0x08,0x90,0x01,0xb8,0x74,0x20, 0xf0,0x80,0x10,0x90,0x86,0x71,0xe0,0x60,0x08,0x90,0x01,0xb8,0x74,0x80,0xf0,0x80, 0x02,0x80,0x09,0x90,0x01,0xb9,0x74,0x04,0xf0,0x7f,0x00,0x22,0x90,0x01,0xb8,0xe4, 0xf0,0x7f,0x01,0x22,0x12,0x40,0xb9,0x7f,0x02,0x02,0x98,0x69,0x90,0x85,0xc3,0xe0, 0xc4,0x54,0x0f,0x22,0x90,0x85,0xc1,0xe0,0x54,0xf7,0xf0,0x22,0x90,0x92,0x7d,0xe0, 0x90,0x05,0x73,0xf0,0x22,0x90,0x85,0xc5,0xe0,0x60,0x03,0x12,0x9e,0xc4,0x22,0x90, 0x92,0x7c,0xe0,0x14,0x90,0x92,0x7e,0xf0,0x22,0x32,0xc0,0xe0,0xc0,0x83,0xc0,0x82, 0xc0,0xd0,0x75,0xd0,0x00,0xc0,0x05,0xc0,0x07,0x7d,0xea,0x90,0x01,0xc4,0xed,0xf0, 0x74,0xaf,0xff,0xa3,0xf0,0xed,0x04,0x90,0x01,0xc4,0xf0,0xa3,0xef,0xf0,0xd0,0x07, 0xd0,0x05,0xd0,0xd0,0xd0,0x82,0xd0,0x83,0xd0,0xe0,0x32,0xe4,0xff,0x12,0x77,0x39, 0xbf,0x01,0x13,0x90,0x85,0xc5,0xe0,0x60,0x0d,0x12,0x8c,0xed,0x64,0x02,0x60,0x03, 0x02,0x77,0x61,0x12,0x79,0x41,0x22,0xe4,0x90,0x92,0x98,0xf0,0xa3,0xf0,0x90,0x05, 0xf8,0xe0,0x70,0x0f,0xa3,0xe0,0x70,0x0b,0xa3,0xe0,0x70,0x07,0xa3,0xe0,0x70,0x03, 0x7f,0x01,0x22,0xd3,0x90,0x92,0x99,0xe0,0x94,0xe8,0x90,0x92,0x98,0xe0,0x94,0x03, 0x40,0x0a,0x90,0x01,0xc0,0xe0,0x44,0x20,0xf0,0x7f,0x00,0x22,0x7f,0x32,0x7e,0x00, 0x12,0x7c,0x9f,0x90,0x92,0x98,0x12,0x99,0xdd,0x80,0xc3,0xef,0x60,0x0a,0xed,0xd3, 0x94,0x0b,0x40,0x04,0x7e,0x20,0x80,0x02,0xe4,0xfe,0xed,0x2e,0xff,0x22,0x90,0x92, 0x8d,0x12,0x87,0x6b,0xe4,0xff,0x90,0x92,0x8d,0x12,0x87,0x62,0x8f,0x82,0x75,0x83, 0x00,0x12,0x03,0x0f,0xfe,0x74,0xf0,0x2f,0x11,0xb2,0xee,0xf0,0x0f,0xef,0xb4,0x10, 0xe5,0x22,0xf5,0x82,0xe4,0x34,0x02,0xf5,0x83,0x22,0x90,0x86,0x72,0xe0,0x30,0xe0, 0x05,0x7f,0x10,0x12,0x98,0x69,0x22,0x90,0x01,0xcf,0xe0,0x90,0x92,0x36,0xf0,0xe0, 0xff,0x30,0xe0,0x07,0x90,0x01,0xcf,0xe0,0x54,0xfe,0xf0,0xef,0x30,0xe5,0x23,0x90, 0x01,0xcf,0xe0,0x54,0xdf,0xf0,0x90,0x01,0x34,0x74,0x20,0xf0,0xe4,0xf5,0xa8,0xf5, 0xe8,0x12,0x75,0xb6,0x90,0x00,0x03,0xe0,0x54,0xfb,0xfd,0x7f,0x03,0x12,0x7b,0x3e, 0x80,0xfe,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x90,0x04,0x1d,0xe0,0x60,0x1a, 0x90,0x05,0x22,0xe0,0x54,0x90,0x60,0x07,0x90,0x01,0xc0,0xe0,0x44,0x08,0xf0,0x90, 0x01,0xc6,0xe0,0x30,0xe1,0xe4,0x7f,0x00,0x80,0x02,0x7f,0x01,0xd0,0xd0,0x92,0xaf, 0x22,0xc3,0xee,0x94,0x01,0x40,0x0a,0x0d,0xed,0x13,0x90,0xfd,0x10,0xf0,0xe4,0x2f, 0xff,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x90,0x92,0x65,0xee,0xf0,0xa3,0xef, 0xf0,0x12,0x70,0x61,0x90,0x92,0x6f,0x12,0x04,0xeb,0x90,0x92,0x67,0x12,0x87,0x4a, 0x12,0x04,0xa7,0x90,0x92,0x6f,0x12,0x87,0x56,0x12,0x87,0x30,0xc0,0x04,0xc0,0x05, 0xc0,0x06,0xc0,0x07,0x90,0x92,0x67,0x12,0x87,0x4a,0x90,0x92,0x6b,0x12,0x87,0x56, 0x12,0x87,0x30,0xd0,0x03,0xd0,0x02,0xd0,0x01,0xd0,0x00,0x12,0x87,0x3d,0x90,0x92, 0x73,0x12,0x04,0xeb,0x90,0x92,0x73,0x12,0x87,0x4a,0x90,0x91,0x66,0x12,0x04,0xeb, 0x90,0x92,0x65,0xe0,0xfe,0xa3,0xe0,0xff,0x12,0x71,0x18,0xd0,0xd0,0x92,0xaf,0x22, 0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xe4,0xfe,0xef,0x54,0xe0,0xc4,0x13,0x54,0x07, 0xfd,0xef,0x54,0x1f,0xff,0xed,0x60,0x2c,0x14,0x60,0x1e,0x24,0xfd,0x60,0x0f,0x24, 0xfe,0x70,0x2a,0xef,0x25,0xe0,0xff,0xc3,0x74,0xde,0x9f,0xfe,0x80,0x1f,0xef,0x25, 0xe0,0xff,0xc3,0x74,0xf2,0x9f,0xfe,0x80,0x14,0xef,0x25,0xe0,0xff,0xc3,0x74,0x06, 0x9f,0xfe,0x80,0x09,0xef,0x25,0xe0,0xff,0xc3,0x74,0x10,0x9f,0xfe,0xaf,0x06,0xd0, 0xd0,0x92,0xaf,0x22,0xd3,0xef,0x64,0x80,0x94,0x1c,0x40,0x07,0xef,0x64,0x80,0x94, 0x94,0x40,0x03,0x7f,0x00,0x22,0xc3,0xef,0x64,0x80,0x94,0x80,0x40,0x03,0x7f,0x64, 0x22,0xef,0x24,0x64,0xff,0x22,0xef,0x90,0x02,0x86,0x60,0x06,0xe0,0x44,0x04,0xf0, 0x80,0x04,0xe0,0x54,0xfb,0xf0,0x90,0x92,0x78,0xed,0xf0,0x22,0xe4,0x90,0x92,0x48, 0xf0,0xa3,0xf0,0xa3,0xf0,0x7f,0x83,0x12,0x7b,0x51,0x90,0x92,0x48,0xef,0xf0,0x7f, 0x83,0x12,0x7b,0x51,0xae,0x07,0x90,0x92,0x48,0xe0,0xff,0xb5,0x06,0x01,0x22,0xc3, 0x90,0x92,0x4a,0xe0,0x94,0x64,0x90,0x92,0x49,0xe0,0x94,0x00,0x40,0x0d,0x90,0x01, 0xc0,0xe0,0x44,0x40,0xf0,0x90,0x92,0x48,0xe0,0xff,0x22,0x90,0x92,0x49,0x12,0x99, 0xdd,0x80,0xc2,0x90,0x01,0xc4,0x74,0x83,0xf0,0x74,0xb2,0xa3,0xf0,0x7f,0x90,0x12, 0x7b,0x51,0xef,0x20,0xe0,0xf7,0x74,0x83,0x04,0x90,0x01,0xc4,0xf0,0x74,0xb2,0xa3, 0xf0,0x22,0x90,0x85,0xc1,0xe0,0x30,0xe0,0x03,0x12,0x9b,0x4e,0x22,0x90,0x92,0x7b, 0xe0,0x30,0xe0,0x0a,0x90,0x01,0x3b,0xe0,0x30,0xe4,0x03,0x12,0x8f,0xf6,0x22,0x90, 0x92,0x4c,0xee,0xf0,0xa3,0xef,0xf0,0xe4,0x90,0x92,0x50,0xf0,0x7d,0x09,0x12,0x55, 0x36,0xef,0x64,0x06,0x70,0x2a,0x71,0x60,0x7d,0x14,0x12,0x55,0x36,0xef,0x70,0x20, 0x71,0x60,0x7d,0x15,0x12,0x55,0x36,0xef,0x64,0x50,0x70,0x14,0x71,0x60,0x7d,0x21, 0x12,0x55,0x36,0xef,0x20,0xe0,0x03,0x30,0xe2,0x06,0x90,0x92,0x50,0x74,0x01,0xf0, 0x90,0x86,0x73,0xe0,0x13,0x13,0x54,0x3f,0x30,0xe0,0x3f,0x71,0x60,0x7d,0x09,0x12, 0x55,0x36,0xef,0x64,0x11,0x70,0x33,0x90,0x92,0x4d,0xe0,0x24,0x14,0xff,0x90,0x92, 0x4c,0xe0,0x34,0x00,0xfe,0x90,0x92,0x4e,0xf0,0xa3,0xef,0xf0,0x7d,0x02,0x12,0x55, 0x36,0xef,0x70,0x16,0x90,0x92,0x4e,0xe0,0xfe,0xa3,0xe0,0xff,0x7d,0x03,0x12,0x55, 0x36,0xbf,0x89,0x06,0x90,0x92,0x50,0x74,0x01,0xf0,0x90,0x92,0x50,0xe0,0xff,0x90, 0x84,0xbf,0xa3,0xe0,0x24,0x7f,0xf5,0x82,0xe4,0x34,0x82,0xf5,0x83,0xef,0xf0,0x22, 0x90,0x92,0x4c,0xe0,0xfe,0xa3,0xe0,0xff,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0, 0xe4,0xfd,0x7f,0x8f,0x12,0x7b,0x3e,0xd0,0xd0,0x92,0xaf,0x22,0x90,0x05,0x62,0xe0, 0xfe,0x90,0x05,0x61,0xe0,0xfd,0xed,0x78,0x02,0x22,0xe0,0x90,0x01,0xba,0xf0,0x90, 0x85,0xc7,0xe0,0x90,0x01,0xbb,0x22,0x90,0x85,0xcb,0xe0,0x14,0x90,0x05,0x73,0xf0, 0x22,0x90,0x92,0x36,0xee,0xf0,0xa3,0xef,0xf0,0x22,0x6b,0x7c,}; u4Byte <API key> = 13260; void <API key>( IN PDM_ODM_T pDM_Odm, OUT u1Byte *pFirmware, OUT u4Byte *pFirmwareSize ) { #if (DM_ODM_SUPPORT_TYPE & (ODM_CE)) *((SIZE_PTR *)pFirmware) = (SIZE_PTR)<API key>; *pFirmwareSize = <API key>; #else ODM_MoveMemory(pDM_Odm, pFirmware, <API key>, <API key>); *pFirmwareSize = <API key>; #endif } u1Byte <API key>[] = { 0xf1,0x88,0x30,0x00,0x00,0x00,0x00,0x00,0x03,0x13,0x16,0x44,0xac,0x33,0x02,0x00, 0xcc,0xcc,0xcc,0xcc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x02,0x86,0xad,0x02,0xa8,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x02,0xa8,0x7b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x02,0xaf,0xea,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x02,0xa8,0x05,0x00,0x00,0x00,0x00,0x00,0x02,0xad,0xe0,0x00,0x00, 0x00,0x00,0x00,0x02,0xaf,0xe9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x02,0x87,0xa5,0x02,0x8a,0xc3,0x02,0x80,0x86,0x02,0x80,0x89,0x02,0x80,0x8c,0x02, 0xa9,0xd6,0x02,0x98,0x69,0x02,0x80,0x95,0x02,0x80,0x98,0x02,0x80,0x9b,0x02,0x80, 0x9e,0x02,0x80,0xa1,0x02,0x80,0xa4,0x02,0x80,0xa7,0x02,0x80,0xaa,0x02,0x80,0xad, 0x02,0x80,0xb0,0x02,0x80,0xb3,0x02,0x80,0xb6,0x02,0x80,0xb9,0x02,0x80,0xbc,0x02, 0x80,0xbf,0x02,0x80,0xc2,0x02,0x80,0xc5,0x02,0x80,0xc8,0x02,0x80,0xcb,0x02,0x80, 0xce,0x02,0x80,0xd1,0x02,0xb2,0xbf,0x02,0x80,0xd7,0x00,0x00,0x00,0x02,0x80,0xdd, 0x02,0x80,0xe0,0x02,0x80,0xe3,0x02,0x80,0xe6,0x02,0xa6,0xc0,0x02,0x80,0xec,0x02, 0x80,0xef,0x02,0x80,0xf2,0x02,0x80,0xf5,0x02,0x80,0xf8,0x02,0x80,0xfb,0x02,0x80, 0xfe,0x02,0x81,0x01,0x02,0x81,0x04,0x02,0x81,0x07,0x02,0x81,0x0a,0x02,0x81,0x0d, 0x02,0x81,0x10,0x02,0x81,0x13,0x02,0x81,0x16,0x02,0x81,0x19,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x02,0x9f,0x11,0x02,0x9f,0x5f,0x02,0xb0,0x37,0x02,0x9e,0xb8, 0x02,0x81,0x40,0x02,0xab,0x35,0x02,0xaf,0x3c,0x02,0x81,0x49,0x02,0x81,0x4c,0x02, 0x81,0x4f,0x02,0x81,0x52,0x02,0x81,0x55,0x02,0x81,0x58,0x02,0x81,0x5b,0x02,0x81, 0x5e,0x02,0x81,0x61,0x02,0x81,0x64,0x02,0x81,0x67,0x02,0x81,0x6a,0x02,0x81,0x6d, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x15,0xf0,0xff,0x0f,0x00,0x00,0x00,0x15,0xf0,0x0f,0x00,0x00,0x00,0x00,0x05,0xf0, 0xff,0x0f,0x00,0x00,0x00,0x05,0xf0,0x0f,0x00,0x00,0x00,0x00,0x10,0xf0,0xff,0x0f, 0x00,0x00,0x00,0x10,0xf0,0x0f,0x00,0x00,0x00,0x00,0xf5,0x0f,0x00,0x00,0x00,0x00, 0x00,0xf0,0x0f,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x0a, 0x08,0x03,0x03,0x00,0x04,0x09,0x07,0x03,0x03,0x00,0x04,0x08,0x06,0x03,0x02,0x00, 0x04,0x08,0x05,0x03,0x01,0x00,0x04,0x0d,0x0a,0x07,0x05,0x00,0x08,0x0c,0x0a,0x07, 0x04,0x00,0x08,0x0b,0x0a,0x06,0x05,0x00,0x08,0x0b,0x0a,0x05,0x03,0x00,0x08,0x0b, 0x0a,0x03,0x02,0x00,0x08,0x14,0x12,0x0c,0x04,0x00,0x10,0x14,0x12,0x09,0x04,0x00, 0x10,0x24,0x22,0x1c,0x12,0x00,0x20,0x24,0x22,0x18,0x0c,0x00,0x20,0x24,0x22,0x14, 0x06,0x00,0x20,0x24,0x22,0x0f,0x04,0x00,0x20,0x24,0x21,0x0a,0x04,0x00,0x20,0x23, 0x21,0x0c,0x04,0x00,0x20,0x23,0x1f,0x0a,0x04,0x00,0x20,0x22,0x1f,0x0f,0x04,0x00, 0x20,0x21,0x1f,0x16,0x0c,0x00,0x20,0x31,0x2f,0x20,0x14,0x00,0x30,0x31,0x2f,0x18, 0x10,0x00,0x30,0x31,0x2c,0x18,0x0c,0x00,0x30,0x31,0x2a,0x14,0x0c,0x00,0x30,0x31, 0x28,0x14,0x00,0x00,0x30,0x31,0x24,0x14,0x00,0x00,0x30,0x31,0x1e,0x14,0x00,0x00, 0x30,0x04,0x04,0x04,0x05,0x04,0x04,0x05,0x07,0x07,0x07,0x08,0x0a,0x04,0x07,0x0a, 0x0e,0x11,0x13,0x14,0x15,0x04,0x04,0x04,0x05,0x07,0x07,0x09,0x09,0x0c,0x0e,0x10, 0x12,0x05,0x06,0x07,0x0c,0x11,0x11,0x12,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x24,0x26,0x2a,0x00,0x00,0x00,0x1f,0x21,0x25,0x27,0x28,0x00,0x04,0x00, 0x04,0x00,0x08,0x00,0x10,0x00,0x18,0x00,0x24,0x00,0x30,0x00,0x48,0x00,0x60,0x00, 0x90,0x00,0xc0,0x00,0xd8,0x00,0x46,0x00,0x64,0x00,0x78,0x00,0xb4,0x01,0x04,0x01, 0x86,0x01,0xa4,0x01,0xe0,0x02,0x02,0x04,0x08,0x0c,0x12,0x18,0x24,0x30,0x48,0x60, 0x6c,0x14,0x28,0x32,0x50,0x78,0xa0,0xc8,0xf0,0x01,0x01,0x01,0x02,0x01,0x02,0x03, 0x03,0x04,0x04,0x05,0x05,0x02,0x04,0x06,0x07,0x07,0x08,0x08,0x08,0x01,0x01,0x01, 0x01,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x01,0x02,0x03,0x04,0x05,0x06,0x07, 0x08,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05, 0x05,0x05,0x04,0x03,0x02,0x19,0x06,0x04,0x02,0x00,0x18,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xc2,0xaf,0x80,0xfe,0x32,0x12,0x84,0x04,0x85,0xd0,0x0b,0x75,0xd0,0x08,0xaa,0xe0, 0xc2,0x8c,0xe5,0x8a,0x24,0x67,0xf5,0x8a,0xe5,0x8c,0x34,0x79,0xf5,0x8c,0xd2,0x8c, 0xec,0x24,0x87,0xf8,0xe6,0xbc,0x02,0x02,0x74,0xff,0xc3,0x95,0x81,0xb4,0x40,0x00, 0x40,0xce,0x79,0x03,0x78,0x80,0x16,0xe6,0x08,0x70,0x0b,0xc2,0xaf,0xe6,0x30,0xe1, 0x03,0x44,0x18,0xf6,0xd2,0xaf,0x08,0xd9,0xed,0xea,0x8b,0xd0,0x22,0xe5,0x0c,0xff, 0x23,0x24,0x81,0xf8,0x0f,0x08,0x08,0xbf,0x03,0x04,0x7f,0x00,0x78,0x81,0xe6,0x30, 0xe4,0xf2,0x00,0xe5,0x0c,0xc3,0x9f,0x50,0x20,0x05,0x0c,0x74,0x86,0x25,0x0c,0xf8, 0xe6,0xfd,0xa6,0x81,0x08,0xe6,0xae,0x0c,0xbe,0x02,0x02,0x74,0xff,0xcd,0xf8,0xe8, 0x6d,0x60,0xe0,0x08,0xe6,0xc0,0xe0,0x80,0xf6,0xe5,0x0c,0xd3,0x9f,0x40,0x27,0xe5, 0x0c,0x24,0x87,0xf8,0xe6,0xae,0x0c,0xbe,0x02,0x02,0x74,0xff,0xfd,0x18,0xe6,0xcd, 0xf8,0xe5,0x81,0x6d,0x60,0x06,0xd0,0xe0,0xf6,0x18,0x80,0xf5,0xe5,0x0c,0x24,0x86, 0xc8,0xf6,0x15,0x0c,0x80,0xd3,0xe5,0x0c,0x23,0x24,0x81,0xf8,0x7f,0x04,0xc2,0xaf, 0xe6,0x30,0xe0,0x03,0x10,0xe2,0x0c,0x7f,0x00,0x30,0xe1,0x07,0x30,0xe3,0x04,0x7f, 0x08,0x54,0xf4,0x54,0x7c,0xc6,0xd2,0xaf,0x54,0x80,0x42,0x07,0x22,0x78,0x86,0xa6, 0x81,0x74,0x02,0x60,0x06,0xff,0x08,0x76,0xff,0xdf,0xfb,0x7f,0x03,0xe4,0x78,0x80, 0xf6,0x08,0xf6,0x08,0xdf,0xfa,0x78,0x81,0x76,0x30,0x90,0x87,0x9a,0x74,0x01,0x93, 0xc0,0xe0,0xe4,0x93,0xc0,0xe0,0x43,0x89,0x01,0x75,0x8a,0x60,0x75,0x8c,0x79,0xd2, 0x8c,0xd2,0xaf,0x22,0x02,0xef,0xd3,0x94,0x02,0x40,0x03,0x7f,0xff,0x22,0x74,0x81, 0x2f,0x2f,0xf8,0xe6,0x20,0xe5,0xf4,0xc2,0xaf,0xe6,0x44,0x30,0xf6,0xd2,0xaf,0xae, 0x0c,0xee,0xc3,0x9f,0x50,0x21,0x0e,0x74,0x86,0x2e,0xf8,0xe6,0xf9,0x08,0xe6,0x18, 0xbe,0x02,0x02,0x74,0xff,0xfd,0xed,0x69,0x60,0x09,0x09,0xe7,0x19,0x19,0xf7,0x09, 0x09,0x80,0xf3,0x16,0x16,0x80,0xda,0xee,0xd3,0x9f,0x40,0x04,0x05,0x81,0x05,0x81, 0xee,0xd3,0x9f,0x40,0x22,0x74,0x86,0x2e,0xf8,0x08,0xe6,0xf9,0xee,0xb5,0x0c,0x02, 0xa9,0x81,0x18,0x06,0x06,0xe6,0xfd,0xed,0x69,0x60,0x09,0x19,0x19,0xe7,0x09,0x09, 0xf7,0x19,0x80,0xf3,0x1e,0x80,0xd9,0xef,0x24,0x86,0xf8,0xe6,0x04,0xf8,0xef,0x2f, 0x04,0x90,0x87,0x9a,0x93,0xf6,0x08,0xef,0x2f,0x93,0xf6,0x7f,0x00,0x22,0xef,0xd3, 0x94,0x02,0x40,0x03,0x7f,0xff,0x22,0xef,0x23,0x24,0x81,0xf8,0xe6,0x30,0xe5,0xf4, 0xc2,0xaf,0xe6,0x54,0x8c,0xf6,0xd2,0xaf,0xe5,0x0c,0xb5,0x07,0x0a,0x74,0x86,0x2f, 0xf8,0xe6,0xf5,0x81,0x02,0x84,0x4d,0x50,0x2e,0x74,0x87,0x2f,0xf8,0xe6,0xbf,0x02, 0x02,0x74,0xff,0xfd,0x18,0xe6,0xf9,0x74,0x86,0x2f,0xf8,0xfb,0xe6,0xfc,0xe9,0x6c, 0x60,0x08,0xa8,0x05,0xe7,0xf6,0x1d,0x19,0x80,0xf4,0xa8,0x03,0xa6,0x05,0x1f,0xe5, 0x0c,0xb5,0x07,0xe3,0x7f,0x00,0x22,0x74,0x87,0x2f,0xf8,0xe6,0xfd,0x18,0x86,0x01, 0x0f,0x74,0x86,0x2f,0xf8,0xa6,0x01,0x08,0x86,0x04,0xe5,0x0c,0xb5,0x07,0x02,0xac, 0x81,0xed,0x6c,0x60,0x08,0x0d,0x09,0xa8,0x05,0xe6,0xf7,0x80,0xf4,0xe5,0x0c,0xb5, 0x07,0xde,0x89,0x81,0x7f,0x00,0x22,0xef,0xd3,0x94,0x02,0x40,0x03,0x7f,0xff,0x22, 0xef,0x23,0x24,0x81,0xf8,0xc2,0xaf,0xe6,0x30,0xe5,0x05,0x30,0xe0,0x02,0xd2,0xe4, 0xd2,0xe2,0xc6,0xd2,0xaf,0x7f,0x00,0x30,0xe2,0x01,0x0f,0x02,0x84,0x4c,0x8f,0xf0, 0xe4,0xff,0xfe,0xe5,0x0c,0x23,0x24,0x80,0xf8,0xc2,0xa9,0x30,0xf7,0x0d,0x7f,0x08, 0xe6,0x60,0x0b,0x2d,0xf6,0x60,0x32,0x50,0x30,0x80,0x07,0x30,0xf1,0x06,0xed,0xf6, 0x60,0x27,0x7e,0x02,0x08,0x30,0xf0,0x10,0xc2,0xaf,0xe6,0x10,0xe7,0x25,0x0e,0x30, 0xe2,0x0c,0xd2,0xaf,0x7f,0x04,0x80,0x14,0xc2,0xaf,0xe6,0x10,0xe7,0x15,0x54,0xec, 0x4e,0xf6,0xd2,0xaf,0xd2,0xa9,0x02,0x84,0x4d,0x7f,0x08,0x08,0xef,0x44,0x83,0xf4, 0xc2,0xaf,0x56,0xc6,0xd2,0xaf,0xd2,0xa9,0x54,0x80,0x4f,0xff,0x22,0x02,0x86,0xeb, 0x02,0x84,0xdd,0xe4,0x93,0xa3,0xf8,0xe4,0x93,0xa3,0x40,0x03,0xf6,0x80,0x01,0xf2, 0x08,0xdf,0xf4,0x80,0x29,0xe4,0x93,0xa3,0xf8,0x54,0x07,0x24,0x0c,0xc8,0xc3,0x33, 0xc4,0x54,0x0f,0x44,0x20,0xc8,0x83,0x40,0x04,0xf4,0x56,0x80,0x01,0x46,0xf6,0xdf, 0xe4,0x80,0x0b,0x01,0x02,0x04,0x08,0x10,0x20,0x40,0x80,0x90,0x87,0xa0,0xe4,0x7e, 0x01,0x93,0x60,0xbc,0xa3,0xff,0x54,0x3f,0x30,0xe5,0x09,0x54,0x1f,0xfe,0xe4,0x93, 0xa3,0x60,0x01,0x0e,0xcf,0x54,0xc0,0x25,0xe0,0x60,0xa8,0x40,0xb8,0xe4,0x93,0xa3, 0xfa,0xe4,0x93,0xa3,0xf8,0xe4,0x93,0xa3,0xc8,0xc5,0x82,0xc8,0xca,0xc5,0x83,0xca, 0xf0,0xa3,0xc8,0xc5,0x82,0xc8,0xca,0xc5,0x83,0xca,0xdf,0xe9,0xde,0xe7,0x80,0xbe, 0xef,0x5b,0xff,0xee,0x5a,0xfe,0xed,0x59,0xfd,0xec,0x58,0xfc,0x22,0xef,0x4b,0xff, 0xee,0x4a,0xfe,0xed,0x49,0xfd,0xec,0x48,0xfc,0x22,0xe0,0xfc,0xa3,0xe0,0xfd,0xa3, 0xe0,0xfe,0xa3,0xe0,0xff,0x22,0xe0,0xf8,0xa3,0xe0,0xf9,0xa3,0xe0,0xfa,0xa3,0xe0, 0xfb,0x22,0xe0,0xfb,0xa3,0xe0,0xfa,0xa3,0xe0,0xf9,0x22,0xeb,0xf0,0xa3,0xea,0xf0, 0xa3,0xe9,0xf0,0x22,0xd0,0x83,0xd0,0x82,0xf8,0xe4,0x93,0x70,0x12,0x74,0x01,0x93, 0x70,0x0d,0xa3,0xa3,0x93,0xf8,0x74,0x01,0x93,0xf5,0x82,0x88,0x83,0xe4,0x73,0x74, 0x02,0x93,0x68,0x60,0xef,0xa3,0xa3,0xa3,0x80,0xdf,0xa0,0x9d,0xa7,0x9f,0x96,0x66, 0x41,0x92,0x9d,0x00,0x00,0x90,0x92,0x9c,0xef,0xf0,0x7f,0x02,0xd1,0x27,0x90,0x84, 0xc1,0xe0,0xff,0x90,0x92,0x9c,0xe0,0xfe,0xef,0x4e,0x90,0x84,0xc1,0xf0,0x22,0x90, 0x92,0x10,0x74,0x12,0xf0,0x90,0x92,0x1e,0x74,0x05,0xf0,0x90,0x92,0x12,0xef,0xf0, 0xa3,0xed,0xf0,0xa3,0xeb,0xf0,0x90,0x92,0x0e,0xe0,0x90,0x92,0x15,0xf0,0x90,0x92, 0x0f,0xe0,0x90,0x92,0x16,0xf0,0x7b,0x01,0x7a,0x92,0x79,0x10,0x12,0x5e,0x10,0x7f, 0x04,0x80,0xb2,0x90,0x02,0x09,0xe0,0xf5,0x5b,0x12,0x02,0xf6,0x25,0x5b,0x90,0x84, 0xc6,0x31,0xcd,0x25,0x5b,0x90,0x84,0xc7,0x51,0x75,0x25,0x5b,0x90,0x84,0xc8,0x51, 0x84,0x25,0x5b,0x90,0x84,0xc9,0xf0,0x90,0x00,0x04,0x12,0x03,0x0f,0x25,0x5b,0x90, 0x84,0xca,0xf0,0x90,0x00,0x05,0x12,0x03,0x0f,0x25,0x5b,0x90,0x84,0xcb,0x11,0x37, 0x25,0x5b,0x90,0x84,0xcc,0xf0,0x22,0xf0,0x90,0x00,0x06,0x02,0x03,0x0f,0xf1,0xd7, 0xff,0x54,0x7f,0x90,0x85,0xc5,0xf0,0xef,0xb1,0x0e,0xa3,0x31,0xcd,0xff,0x54,0xf0, 0xc4,0x54,0x0f,0xfe,0x90,0x85,0xc3,0xe0,0x54,0xf0,0x4e,0x51,0x84,0x54,0x01,0x25, 0xe0,0xfe,0x90,0x85,0xc1,0xe0,0x54,0xfd,0x4e,0xf0,0xef,0x54,0x0f,0xc4,0x54,0xf0, 0xff,0x91,0xed,0x51,0x74,0x90,0x85,0xc4,0x11,0x37,0x30,0xe0,0x51,0xc3,0x13,0x54, 0x07,0xff,0xc3,0x94,0x04,0x90,0x85,0xd8,0x50,0x04,0xef,0xf0,0x80,0x29,0x74,0x03, 0x11,0xf2,0xe9,0x24,0x06,0xf9,0xe4,0x3a,0xfa,0x12,0x02,0xf6,0xff,0x74,0x03,0x24, 0xfd,0xfe,0xef,0xc4,0x54,0x0f,0xfd,0xef,0x54,0x0f,0xff,0xed,0x2e,0x54,0x0f,0xfe, 0xc4,0x54,0xf0,0x4f,0x12,0x03,0x3c,0x11,0xf3,0x11,0x38,0xc4,0x54,0x0f,0xff,0xc3, 0x94,0x04,0x90,0x85,0xcd,0x50,0x05,0x74,0x04,0xf0,0x80,0x02,0xef,0xf0,0x11,0xf3, 0x90,0x00,0x04,0x12,0x03,0x0f,0xfd,0x7f,0x02,0x12,0x57,0x82,0x11,0xf3,0x12,0x71, 0xcb,0x12,0xae,0xa2,0xf0,0x90,0x85,0xc5,0x12,0xb3,0x8a,0x91,0xec,0x90,0x01,0xbe, 0xf0,0x22,0xf0,0x90,0x92,0x05,0x02,0x87,0x62,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0, 0xf1,0xd7,0x20,0xe0,0x05,0x12,0x9e,0xea,0x21,0xc7,0x90,0x87,0x4a,0x74,0x05,0x11, 0xf2,0x91,0xfc,0x90,0x86,0x75,0x31,0xdc,0x54,0x04,0xfd,0xef,0x54,0xfb,0x31,0xd4, 0xf1,0xbf,0x31,0xea,0x54,0x10,0xfd,0xef,0x54,0xef,0x31,0xd4,0xf1,0xc7,0x31,0xea, 0x54,0x40,0xfd,0xef,0x54,0xbf,0x31,0xd4,0xf1,0xcf,0x31,0xcd,0x54,0x80,0xff,0x90, 0x86,0x76,0xe0,0x54,0x7f,0x4f,0xf0,0x12,0x02,0xf6,0x13,0x13,0x54,0x3f,0x30,0xe0, 0x07,0x90,0x06,0x90,0xe0,0x44,0x04,0xf0,0x11,0xf3,0x12,0x02,0xf6,0x13,0x13,0x13, 0x54,0x1f,0x30,0xe0,0x07,0x90,0x06,0x90,0xe0,0x44,0x08,0xf0,0x90,0x84,0xc5,0xe0, 0xb4,0x02,0x09,0x90,0x86,0x76,0xe0,0xb1,0x0e,0x20,0xe0,0x3d,0x31,0xce,0x54,0x7f, 0xff,0x90,0x86,0x76,0xe0,0x54,0x80,0x51,0x74,0x90,0x86,0x77,0x51,0x84,0xff,0x54, 0x01,0xfe,0x90,0x86,0x78,0x91,0xf4,0x54,0xfe,0xff,0xee,0x54,0x01,0x4f,0xf0,0x90, 0x86,0x76,0xe0,0x54,0x7f,0xff,0x90,0x86,0x75,0xe0,0xfe,0xc4,0x13,0x54,0x07,0x7d, 0x00,0x20,0xe0,0x02,0x7d,0x01,0x12,0x54,0x9f,0x90,0x84,0xc5,0xe0,0xb4,0x01,0x07, 0x90,0xfe,0x10,0xe0,0x44,0x04,0xf0,0xd0,0xd0,0x92,0xaf,0x22,0x4f,0xf0,0x90,0x00, 0x01,0x02,0x03,0x0f,0x4d,0xff,0x90,0x86,0x75,0xf0,0xee,0x22,0xe0,0x54,0xfe,0x4e, 0xfe,0xf0,0xef,0x54,0x02,0xff,0xee,0x54,0xfd,0x4f,0xff,0xf0,0x12,0x02,0xf6,0xfe, 0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x91,0xfc,0x90,0x86,0x72,0x31,0xdc,0x54, 0x04,0xfd,0xef,0x54,0xfb,0x51,0x7c,0xf1,0xbf,0x31,0xea,0x54,0x10,0xfd,0xef,0x54, 0xef,0x51,0x7c,0xf1,0xc7,0x31,0xea,0x54,0x40,0xfd,0xef,0x54,0xbf,0x51,0x7c,0xf1, 0xcf,0x51,0x75,0x54,0x01,0xff,0x90,0x86,0x74,0xe0,0x54,0xfe,0x31,0xcc,0xff,0x54, 0x01,0xfe,0x90,0x86,0x73,0x91,0xf4,0x54,0x04,0xff,0xee,0x54,0xfb,0x4f,0xf0,0x90, 0x86,0x72,0xe0,0xc3,0x13,0x54,0x01,0xff,0x12,0x7c,0x72,0x91,0xe5,0x54,0x01,0xff, 0x12,0x7c,0x7e,0x91,0xe5,0x13,0x54,0x01,0xff,0x12,0x66,0xda,0x12,0xa6,0x8d,0x54, 0x01,0xff,0x12,0x9d,0x77,0x90,0x86,0x72,0xe0,0x54,0x01,0xff,0x12,0x9e,0x47,0xd0, 0xd0,0x92,0xaf,0x22,0x4f,0xf0,0x90,0x00,0x02,0x02,0x03,0x0f,0x4d,0xff,0x90,0x86, 0x72,0xf0,0xee,0x22,0xf0,0x90,0x00,0x03,0x02,0x03,0x0f,0x51,0x76,0xff,0x30,0xe0, 0x1c,0x12,0x02,0xf6,0x90,0x86,0x6d,0x31,0xcd,0x90,0x86,0x6e,0xf0,0xef,0x54,0xfe, 0xff,0xa3,0xe0,0x54,0x01,0x4f,0x51,0x84,0x90,0x86,0x70,0xf0,0x22,0x90,0x86,0x6d, 0x74,0x05,0xf0,0xa3,0x74,0x0a,0xf0,0xa3,0xe0,0x54,0x01,0x44,0x1e,0xf0,0xa3,0x74, 0x05,0xf0,0x22,0x90,0x92,0x02,0x12,0x87,0x6b,0x90,0x92,0x01,0xef,0xf0,0x12,0x87, 0x74,0x8b,0x14,0x00,0x8b,0x1d,0x01,0x8b,0x25,0x02,0x8b,0x2d,0x03,0x8b,0x36,0x04, 0x8b,0x3f,0x12,0x8b,0x48,0x14,0x8b,0x51,0x20,0x8b,0x59,0x21,0x8b,0x61,0x23,0x8b, 0x6a,0x25,0x8b,0x73,0x27,0x8b,0x7b,0x40,0x8b,0x84,0x42,0x8b,0xd0,0x47,0x8b,0x95, 0x80,0x8b,0x8d,0x81,0x8b,0x9d,0x82,0x8b,0xa6,0x83,0x8b,0xaf,0x84,0x8b,0xb8,0x88, 0x00,0x00,0x8b,0xc1,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x87,0xf3,0x90,0x92,0x02, 0x12,0x87,0x62,0x81,0x7e,0x90,0x92,0x02,0x12,0x87,0x62,0x81,0x43,0x90,0x92,0x02, 0x12,0x87,0x62,0x02,0x78,0x94,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x6b,0x03,0x90, 0x92,0x02,0x12,0x87,0x62,0x02,0x90,0x04,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x90, 0x9c,0x90,0x92,0x02,0x12,0x87,0x62,0x01,0x3e,0x90,0x92,0x02,0x12,0x87,0x62,0x41, 0x8b,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x90,0xab,0x90,0x92,0x02,0x12,0x87,0x62, 0x02,0x90,0xb3,0x90,0x92,0x02,0x12,0x87,0x62,0x80,0x56,0x90,0x92,0x02,0x12,0x87, 0x62,0x02,0x39,0x73,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x4e,0x29,0x90,0x92,0x02, 0x12,0x87,0x62,0x21,0xf1,0x90,0x92,0x02,0x12,0x87,0x62,0x01,0xf9,0x90,0x92,0x02, 0x12,0x87,0x62,0x02,0x7a,0xfe,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x6f,0x63,0x90, 0x92,0x02,0x12,0x87,0x62,0x02,0x6f,0xa4,0x90,0x92,0x02,0x12,0x87,0x62,0x02,0x7b, 0xd0,0x90,0x01,0xc0,0xe0,0x44,0x01,0xf0,0x90,0x92,0x01,0xe0,0x90,0x01,0xc2,0xf0, 0x22,0x91,0xfc,0x90,0x92,0x7b,0x91,0xf4,0x54,0x02,0xff,0xee,0x54,0xfd,0x31,0xcc, 0x90,0x92,0x7c,0x51,0x75,0x90,0x92,0x7d,0xf0,0x12,0xaf,0xdf,0x90,0x92,0x7b,0xe0, 0x54,0x01,0xff,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xef,0x64,0x01,0x70,0x1a,0xb1, 0x04,0x60,0x0a,0x91,0x3c,0x12,0x7b,0xfd,0x12,0xaf,0xcc,0x80,0x07,0x91,0x3c,0x12, 0x7b,0xbf,0xf1,0xf6,0x12,0x7a,0x8a,0x80,0x17,0xb1,0x04,0x60,0x07,0x91,0x3c,0x12, 0x7b,0xfd,0x80,0x05,0x91,0x3c,0x12,0x7b,0xbf,0xf1,0x92,0xf1,0x99,0x12,0x7a,0xb9, 0xd0,0xd0,0x92,0xaf,0x22,0x90,0x05,0x73,0xf0,0x90,0x01,0x3f,0x74,0x10,0xf0,0xfd, 0x7f,0x03,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x8b,0x5b,0x8a,0x5c,0x89,0x5d, 0x12,0x02,0xf6,0xff,0x90,0x92,0x7a,0xf0,0xbf,0x01,0x0c,0x31,0xce,0x64,0x01,0x60, 0x18,0x7d,0x13,0x7f,0x6f,0x80,0x0f,0xab,0x5b,0xaa,0x5c,0xa9,0x5d,0x31,0xce,0x64, 0x01,0x60,0x06,0xe4,0xfd,0xff,0x12,0x9e,0xb8,0xd0,0xd0,0x92,0xaf,0x22,0x8b,0x5b, 0x8a,0x5c,0x89,0x5d,0x31,0xce,0xff,0xf5,0x5f,0x12,0x02,0xf6,0xfe,0xc3,0x13,0x30, 0xe0,0x06,0x51,0x76,0xf5,0x60,0x80,0x02,0x8f,0x60,0x85,0x5f,0x5e,0xe5,0x5e,0xd3, 0x95,0x60,0x50,0x26,0xab,0x5b,0xaa,0x5c,0xa9,0x5d,0x12,0x02,0xf6,0x54,0x01,0xfd, 0xaf,0x5e,0x12,0x6e,0x5f,0xaf,0x5e,0x12,0x77,0x39,0xef,0xaf,0x5e,0x70,0x05,0x12, 0x90,0xbb,0x80,0x02,0xf1,0xa7,0x05,0x5e,0x80,0xd3,0xe5,0x5f,0x70,0x16,0xff,0x12, 0x77,0x39,0xef,0x70,0x0f,0x12,0x9f,0x11,0x12,0x79,0x61,0x12,0xaf,0xc4,0x54,0xbf, 0xf0,0x54,0x7f,0xf0,0x22,0x90,0x86,0x72,0xe0,0x13,0x13,0x22,0xf0,0x90,0x85,0xc3, 0xe0,0x54,0x0f,0x22,0xe0,0x54,0xfe,0x4e,0xfe,0xf0,0xef,0x22,0x12,0x02,0xf6,0xff, 0x54,0x01,0xfe,0x22,0x90,0x92,0x7d,0xe0,0x90,0x01,0x3f,0x22,0xe0,0xff,0xc4,0x13, 0x13,0x13,0x54,0x01,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xd1,0x6c,0x20,0xe6, 0x02,0xc1,0x2b,0x90,0x00,0x8c,0xe0,0x90,0x92,0x90,0xf0,0x7f,0x8d,0x12,0x7b,0x51, 0x90,0x92,0x91,0xef,0xf0,0x90,0x00,0x8e,0xe0,0x90,0x92,0x92,0xf0,0x90,0x92,0x91, 0xe0,0x24,0xfc,0x60,0x0f,0x24,0x03,0x60,0x02,0xc1,0x24,0x90,0x92,0x90,0xe0,0xff, 0xd1,0x73,0xc1,0x24,0x90,0x92,0x90,0xe0,0x24,0xdc,0x12,0x97,0xcc,0xfb,0xe4,0xfd, 0xff,0xd1,0x59,0x75,0xf0,0x12,0xd1,0x64,0x13,0x13,0x54,0x03,0xfb,0x0d,0xe4,0xff, 0xd1,0x59,0x75,0xf0,0x12,0xd1,0x64,0xb1,0x0e,0xfb,0x0d,0xe4,0xff,0xd1,0x59,0x75, 0xf0,0x12,0xd1,0x64,0xc4,0x54,0x03,0xfb,0x0d,0xe4,0xff,0xd1,0x59,0x12,0x95,0xe7, 0xfb,0xe4,0xfd,0x0f,0xd1,0x59,0x75,0xf0,0x12,0x90,0x89,0x3d,0x12,0x05,0x28,0xd1, 0x56,0xf1,0xe9,0xc4,0x13,0x54,0x01,0xfb,0x0d,0x7f,0x01,0xd1,0x59,0xf1,0xe9,0x54, 0x1f,0xd1,0x57,0x12,0x97,0xe0,0xe0,0xfb,0xe4,0xfd,0x0f,0xd1,0x59,0x75,0xf0,0x08, 0xa4,0x24,0x01,0xf5,0x82,0xe4,0x34,0x82,0xd1,0x54,0x75,0xf0,0x08,0xa4,0x24,0x02, 0xf5,0x82,0xe4,0x34,0x82,0xd1,0x54,0x75,0xf0,0x08,0xa4,0x24,0x03,0xf5,0x82,0xe4, 0x34,0x82,0xd1,0x54,0x75,0xf0,0x08,0xa4,0x24,0x04,0xf5,0x82,0xe4,0x34,0x82,0xf5, 0x83,0xe0,0xfb,0xe4,0xfd,0x0f,0xd1,0x59,0x75,0xf0,0x08,0xa4,0x24,0x05,0xf5,0x82, 0xe4,0x34,0x82,0xd1,0x54,0x75,0xf0,0x08,0xa4,0x24,0x06,0xf5,0x82,0xe4,0x34,0x82, 0xd1,0x54,0x75,0xf0,0x08,0xa4,0x24,0x07,0xf5,0x82,0xe4,0x34,0x82,0xf5,0x83,0xe0, 0xfb,0x0d,0xd1,0x30,0xd1,0x6c,0x30,0xe0,0x02,0xf1,0xa0,0xd0,0xd0,0x92,0xaf,0x22, 0xef,0x70,0x04,0x74,0xf0,0x80,0x16,0xef,0xb4,0x01,0x04,0x74,0xf4,0x80,0x0e,0xef, 0xb4,0x02,0x04,0x74,0xf8,0x80,0x06,0xef,0xb4,0x03,0x08,0x74,0xfc,0x2d,0x12,0xb0, 0xb2,0xeb,0xf0,0x22,0xf5,0x83,0xe0,0xfb,0x0d,0xd1,0x30,0x90,0x92,0x90,0xe0,0x22, 0x75,0xf0,0x12,0xec,0x90,0x89,0x3f,0x12,0x05,0x28,0xe0,0x22,0x7f,0x8f,0x12,0x7b, 0x51,0xef,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x90,0x92,0x9a,0xef,0xf0,0xd1, 0x6c,0x30,0xe6,0x38,0x7f,0x8d,0x12,0x7b,0x51,0xef,0x64,0x01,0x70,0x2e,0x90,0x92, 0x9b,0xf0,0x90,0x92,0x9b,0xe0,0xfd,0x90,0x92,0x9a,0xe0,0x12,0x94,0x78,0xe5,0x82, 0x2d,0x12,0x97,0xc3,0xfb,0xe4,0xff,0xd1,0x30,0x90,0x92,0x9b,0xe0,0x04,0xf0,0xe0, 0xc3,0x94,0x10,0x40,0xdd,0xd1,0x6c,0x30,0xe0,0x02,0xf1,0xa0,0xd0,0xd0,0x92,0xaf, 0x22,0x12,0xb3,0x7c,0xce,0xc3,0x13,0xce,0x13,0xd8,0xf9,0xff,0x12,0xb3,0xa1,0x12, 0xac,0x0e,0x64,0x01,0x60,0x02,0xe1,0x91,0x90,0x85,0xc5,0xe0,0x70,0x02,0xe1,0x91, 0xf1,0xe0,0x64,0x01,0x70,0x22,0x90,0x06,0xab,0xe0,0x90,0x85,0xcc,0xf0,0x90,0x06, 0xaa,0xe0,0x90,0x85,0xcb,0xf0,0xa3,0xe0,0xff,0x70,0x08,0x90,0x85,0xcb,0xe0,0xfe, 0xff,0x80,0x00,0x90,0x85,0xcc,0xef,0xf0,0x12,0x2c,0x26,0xe4,0x90,0x85,0xce,0xf0, 0x90,0x85,0xd1,0xa3,0xe0,0x90,0x05,0x58,0xf0,0x12,0xad,0x6b,0x12,0xad,0x78,0x54, 0xef,0xf0,0xf1,0xe0,0x24,0xfd,0x50,0x02,0x80,0x03,0x12,0xac,0x8b,0xf1,0xaf,0x13, 0x54,0x1f,0x30,0xe0,0x55,0xef,0xc4,0x13,0x13,0x54,0x03,0x20,0xe0,0x23,0xf1,0xb7, 0x6f,0x70,0x47,0x90,0x85,0xc2,0xe0,0x44,0x40,0xf0,0x90,0x85,0xcb,0xe0,0x91,0x35, 0x12,0x7b,0xfd,0xf1,0xfd,0x7d,0x02,0x7f,0x02,0x12,0x7c,0x41,0x12,0xae,0xe3,0x80, 0x29,0x12,0xaf,0xbc,0x64,0x01,0x70,0x22,0xf1,0xb7,0xfe,0x6f,0x60,0x1c,0x90,0x05, 0x73,0xe0,0xff,0xee,0x6f,0x60,0x13,0xf1,0xaf,0x54,0x3f,0x30,0xe0,0x0c,0xef,0x54, 0xbf,0x91,0x38,0x12,0x7b,0xbf,0xf1,0x99,0xf1,0x92,0x90,0x85,0xc2,0xe0,0x44,0x04, 0xf0,0x22,0x7d,0x02,0x7f,0x02,0x02,0x7c,0xa9,0x7d,0x01,0x7f,0x02,0x02,0x7c,0xa9, 0xe4,0xfd,0x7f,0x8d,0x02,0x7b,0x3e,0x12,0x90,0xc2,0xe0,0x54,0xfb,0xf0,0x22,0x90, 0x85,0xc2,0xe0,0xff,0x13,0x13,0x22,0x90,0x85,0xcb,0xe0,0xff,0xa3,0xe0,0x22,0x54, 0x08,0xfe,0xef,0x54,0xf7,0x4e,0x22,0x54,0x20,0xfe,0xef,0x54,0xdf,0x4e,0x22,0x54, 0x80,0xfe,0xef,0x54,0x7f,0x4e,0x22,0x90,0x92,0x05,0x12,0x87,0x6b,0x02,0x02,0xf6, 0x90,0x85,0xc3,0xe0,0xff,0xc4,0x54,0x0f,0x22,0x75,0xf0,0x12,0x90,0x89,0x3e,0x12, 0x05,0x28,0xe0,0x22,0xa1,0x15,0x7d,0x02,0x7f,0x02,0x12,0x7c,0x41,0x7d,0x01,0x7f, 0x02,0x02,0x7c,0x41,0x12,0x02,0xf6,0xff,0x90,0x92,0x79,0xf0,0xbf,0x01,0x07,0x11, 0x17,0xe4,0x90,0x92,0x79,0xf0,0x22,0x11,0x95,0x7f,0xf5,0x7e,0x01,0x12,0x64,0x37, 0xbf,0x01,0x06,0x90,0x92,0x05,0xe0,0xa3,0xf0,0x11,0x95,0x7f,0xf6,0x7e,0x01,0x12, 0x64,0x37,0xbf,0x01,0x08,0x90,0x92,0x05,0xe0,0x90,0x92,0x07,0xf0,0x11,0x95,0x7f, 0xf4,0x7e,0x01,0x12,0x64,0x37,0xbf,0x01,0x08,0x90,0x92,0x05,0xe0,0x90,0x92,0x08, 0xf0,0x11,0x95,0x7f,0xf3,0x7e,0x01,0x12,0x64,0x37,0xbf,0x01,0x08,0x90,0x92,0x05, 0xe0,0x90,0x92,0x09,0xf0,0x11,0x95,0x7f,0xf2,0x7e,0x01,0x12,0x64,0x37,0xbf,0x01, 0x08,0x90,0x92,0x05,0xe0,0x90,0x92,0x0a,0xf0,0x90,0x92,0x06,0xe0,0xff,0xa3,0xe0, 0xfd,0xa3,0xe0,0xfb,0xa3,0xe0,0x90,0x92,0x0e,0xf0,0x90,0x92,0x0a,0xe0,0x90,0x92, 0x0f,0xf0,0x02,0x87,0xbf,0x7b,0x01,0x7a,0x92,0x79,0x05,0x22,0x12,0x02,0xf6,0x54, 0x01,0xff,0x90,0x92,0x80,0xe0,0x54,0xfe,0x4f,0xf0,0x22,0x12,0x02,0xf6,0x90,0x85, 0xd0,0xf0,0x22,0x12,0x02,0xf6,0x90,0x86,0x71,0xf0,0x22,0x11,0xc2,0xe0,0x44,0x04, 0xf0,0x22,0x8f,0x61,0xef,0xc4,0x54,0xf0,0x24,0x05,0xf5,0x82,0xe4,0x34,0x81,0xf5, 0x83,0x22,0xe4,0xf5,0x62,0x90,0x85,0xbb,0xe0,0xff,0xe5,0x62,0xc3,0x9f,0x40,0x02, 0x61,0x72,0xe5,0x62,0x13,0x13,0x13,0x54,0x1f,0x90,0x92,0x2f,0xf0,0xe5,0x62,0x54, 0x07,0xa3,0xf0,0x90,0x04,0xa0,0xe0,0xff,0xa3,0xe0,0xfe,0xef,0x64,0x01,0x70,0x2e, 0xe5,0x62,0x6e,0x70,0x29,0xa3,0xe0,0xf5,0x63,0xa3,0xe0,0x90,0x92,0x2e,0xf0,0xe5, 0x62,0x91,0x78,0xe5,0x63,0xf0,0xe5,0x62,0x11,0xc5,0xe0,0x54,0xfc,0xff,0x90,0x92, 0x2e,0xe0,0x54,0x03,0x4f,0xff,0xe5,0x62,0x11,0xc5,0xef,0xf0,0x61,0x6e,0xaf,0x62, 0x12,0x77,0x39,0xef,0x70,0x02,0x61,0x6e,0x75,0xf0,0x12,0xe5,0x62,0x12,0x8e,0x64, 0x12,0x8d,0x0e,0x30,0xe0,0x02,0x61,0x6e,0x90,0x92,0x2f,0xe0,0x24,0x75,0xf5,0x82, 0xe4,0x34,0x8f,0xf5,0x83,0xe0,0xfd,0x7c,0x00,0x90,0x92,0x30,0xe0,0xd1,0x5d,0x80, 0x05,0xc3,0x33,0xce,0x33,0xce,0xd8,0xf9,0xff,0xee,0x5c,0xfe,0xef,0x5d,0x4e,0x60, 0x02,0x61,0x6e,0xd1,0x16,0xfe,0xa3,0xe0,0x4e,0x70,0x06,0xd1,0x09,0x70,0x02,0x61, 0x6e,0xe5,0x62,0x75,0xf0,0x12,0xa4,0x24,0x44,0xf9,0x74,0x89,0x35,0xf0,0xfa,0x7b, 0x01,0x90,0x92,0x28,0x12,0x87,0x6b,0xd1,0x16,0xf5,0x67,0xa3,0xe0,0xf5,0x68,0xd1, 0x09,0xff,0x90,0x92,0x2b,0xd1,0x54,0xe5,0x62,0xb1,0xea,0x90,0x92,0x2d,0xf0,0xfd, 0x75,0xf0,0x12,0xe5,0x62,0x12,0x8e,0x64,0xfe,0x13,0x13,0x54,0x03,0x90,0x92,0x2e, 0xf0,0xe5,0x62,0x91,0x78,0xe0,0xf5,0x63,0x54,0x7f,0xf5,0x64,0xd3,0x9d,0x40,0x16, 0x90,0x92,0x2d,0xe0,0xf5,0x64,0xe5,0x63,0x30,0xe7,0x07,0xe5,0x64,0x44,0x80,0xff, 0x80,0x02,0xaf,0x64,0x8f,0x63,0xe5,0x64,0x90,0x83,0x09,0x93,0xff,0x74,0xdc,0x25, 0x62,0xf1,0xcc,0xc3,0x9f,0xe5,0x64,0x40,0x07,0x90,0x82,0xe1,0x93,0xff,0x80,0x05, 0x90,0x82,0xf5,0x93,0xff,0xd1,0x37,0x12,0x87,0x6b,0x74,0x7c,0x25,0x62,0xf5,0x82, 0xe4,0x34,0x90,0xf5,0x83,0xe0,0xc3,0x94,0x05,0x40,0x02,0x61,0x64,0xe5,0x63,0x30, 0xe7,0x04,0x05,0x69,0x05,0x69,0xe5,0x69,0xd3,0x94,0x1a,0xaf,0x69,0x40,0x02,0x7f, 0x1a,0xd1,0x37,0x12,0x87,0x6b,0xc3,0xe5,0x68,0x94,0x0f,0xe5,0x67,0x94,0x00,0x50, 0x72,0x91,0x6c,0xff,0x90,0x92,0x2c,0xe0,0x2f,0xff,0x90,0x92,0x2b,0xe0,0x35,0xf0, 0xfe,0xb1,0xce,0xff,0xee,0x35,0xf0,0xfe,0x90,0x00,0x04,0x12,0x04,0x18,0x2f,0xfd, 0xee,0x35,0xf0,0xb1,0xf2,0xd3,0xed,0x9f,0xec,0x9e,0x40,0x04,0x71,0x7f,0x61,0x5f, 0x90,0x92,0x28,0x12,0x87,0x62,0x12,0x03,0xed,0x65,0x68,0x70,0x04,0xe5,0xf0,0x65, 0x67,0x75,0xf0,0x12,0x70,0x23,0xe5,0x62,0x12,0x8f,0xec,0xd1,0xcb,0xfe,0xef,0x54, 0x3f,0xff,0xee,0x04,0x54,0x03,0xfe,0xc4,0x33,0x33,0x54,0xc0,0x4f,0xf0,0xe4,0xfd, 0xaf,0x62,0x91,0x85,0x75,0xf0,0x12,0x80,0x00,0xe5,0x62,0x12,0x8f,0xec,0x54,0x3f, 0xf0,0x61,0x5f,0xe5,0x62,0x70,0x42,0x91,0x6c,0xff,0xae,0xf0,0xb1,0xce,0xfd,0xe5, 0xf0,0x3e,0xb1,0xf2,0xc3,0xed,0x9f,0xec,0x9e,0x50,0x08,0x90,0x90,0xdc,0x74,0x01, 0xf0,0x80,0x26,0x91,0x6c,0xfb,0xaa,0xf0,0xe5,0x68,0xae,0x67,0x78,0x03,0xce,0xc3, 0x13,0xce,0x13,0xd8,0xf9,0xff,0x7c,0x00,0x7d,0x05,0x12,0x03,0x70,0xd3,0xeb,0x9f, 0xea,0x9e,0x40,0x05,0xe4,0x90,0x90,0xdc,0xf0,0xab,0x69,0xad,0x62,0xaf,0x68,0xae, 0x67,0x12,0x46,0xe6,0x8e,0x65,0x8f,0x66,0xb1,0xb8,0xc3,0x74,0x01,0x93,0x95,0x66, 0xe4,0x93,0x95,0x65,0x50,0x08,0x7d,0x01,0xaf,0x62,0x91,0x85,0x80,0x0e,0xb1,0xc6, 0xc3,0xe5,0x66,0x9f,0xe5,0x65,0x94,0x00,0x50,0x08,0x71,0x7f,0x71,0x73,0xe4,0xf0, 0x80,0x2d,0x71,0x73,0xe0,0x04,0xf0,0x71,0x73,0xe0,0xc3,0x94,0x05,0x40,0x20,0x71, 0x73,0xe4,0xf0,0xb1,0xc6,0xb1,0xb8,0x74,0x01,0x93,0x2f,0xff,0xe4,0x93,0x34,0x00, 0xc3,0x13,0xfe,0xef,0x13,0xff,0xe5,0x62,0xb1,0xfd,0xee,0xf0,0xa3,0xef,0xf0,0xe4, 0xf5,0x65,0xf5,0x66,0x75,0x6b,0x01,0x7d,0x01,0xaf,0x62,0x12,0x65,0xc2,0x05,0x62, 0x01,0xd5,0x22,0x74,0xac,0x25,0x62,0xf5,0x82,0xe4,0x34,0x8f,0xf5,0x83,0x22,0x7d, 0x01,0xaf,0x62,0x90,0x92,0x31,0xef,0xf0,0xa3,0xed,0xf0,0x90,0x92,0x31,0xe0,0xff, 0x91,0x78,0xe0,0xf5,0x6c,0x54,0x7f,0xf5,0x6e,0x75,0xf0,0x12,0xef,0x90,0x89,0x3d, 0x12,0x05,0x28,0xe0,0x90,0x92,0x34,0xf0,0x90,0x92,0x31,0xe0,0xb1,0xe7,0xfc,0x11, 0xc4,0xe0,0x54,0x03,0xf5,0x6d,0xe5,0x6e,0x90,0x83,0x45,0x93,0xff,0x90,0x92,0x31, 0xe0,0xfd,0xb1,0xfd,0xd1,0x54,0xed,0x12,0x8e,0x64,0xc4,0x54,0x03,0x90,0x92,0x33, 0xf0,0x74,0xcc,0x2d,0xb1,0xb0,0xe5,0x6e,0xf0,0x74,0x4c,0x2d,0xd1,0x4c,0xe5,0x6d, 0xf0,0xe5,0x6e,0xd3,0x9c,0x40,0x06,0x8c,0x6e,0xaf,0x04,0x8f,0x6c,0x90,0x92,0x32, 0xe0,0xf5,0x6f,0xe4,0x90,0x92,0x35,0xf0,0x90,0x92,0x35,0xe0,0xc3,0x95,0x6f,0x50, 0x59,0xe5,0x6c,0x30,0xe7,0x07,0x85,0x6e,0x6c,0xb1,0xd6,0x60,0x4d,0x7d,0x02,0xaf, 0x6e,0x12,0x78,0x6f,0xef,0x60,0x1a,0x90,0x92,0x34,0xe0,0xfd,0x90,0x92,0x31,0xe0, 0xfb,0x90,0x8a,0x85,0x74,0x01,0xb1,0xde,0x43,0x6c,0x80,0xb1,0xd6,0x70,0x23,0x80, 0x29,0x90,0x92,0x34,0xe0,0xfd,0xe5,0x6e,0xd3,0x9d,0x40,0x0e,0x90,0x92,0x31,0xe0, 0xfb,0xa3,0xe0,0x90,0x8a,0x85,0xb1,0xde,0x80,0x10,0x90,0x92,0x34,0xe0,0xf5,0x6c, 0x80,0x08,0x90,0x92,0x35,0xe0,0x04,0xf0,0x80,0x9e,0x90,0x92,0x31,0xe0,0xff,0x90, 0x91,0x0b,0xe5,0x6d,0xf0,0xe4,0xfb,0xad,0x6c,0x02,0x27,0x3d,0x90,0x92,0x28,0x12, 0x87,0x62,0x90,0x00,0x08,0x02,0x04,0x18,0xc4,0x54,0xf0,0x24,0x00,0xf5,0x82,0xe4, 0x34,0x81,0xf5,0x83,0x22,0x8d,0x6c,0xac,0x07,0xec,0x91,0x78,0xe0,0xf5,0x6d,0x54, 0x7f,0xfb,0xe5,0x6d,0x54,0x80,0xf5,0x6e,0x75,0xf0,0x12,0xec,0xb1,0xea,0xf5,0x70, 0x12,0x8e,0x60,0xc4,0x54,0x03,0xf5,0x71,0xeb,0xb1,0xba,0xe4,0x93,0xfe,0x74,0x01, 0x93,0xff,0xec,0xb1,0xfd,0xee,0xf0,0xa3,0xef,0xf0,0xb1,0xad,0xe5,0x6d,0xf0,0x12, 0x8e,0x60,0x13,0x13,0x54,0x03,0xf5,0x6f,0x74,0x4c,0x2c,0xd1,0x4c,0xe5,0x6f,0xf0, 0xeb,0x64,0x2c,0x70,0x2b,0x12,0x8e,0x60,0xff,0x54,0x03,0xfe,0xe5,0x6f,0xc3,0x9e, 0x50,0x1e,0x05,0x6f,0xe5,0x6f,0x54,0x03,0x25,0xe0,0x25,0xe0,0xfe,0x75,0xf0,0x12, 0xec,0x90,0x89,0x3f,0x12,0x05,0x28,0xef,0x54,0xf3,0x4e,0xf0,0x8b,0x6d,0xa1,0x9d, 0xeb,0xc3,0x95,0x70,0x50,0x71,0xad,0x03,0xaf,0x71,0xd1,0x23,0xab,0x07,0xad,0x70, 0xaf,0x71,0xd1,0x23,0x8f,0x70,0xeb,0x04,0xfd,0xed,0xd3,0x95,0x70,0x50,0x4d,0xed, 0x13,0x13,0x13,0x54,0x1f,0xff,0xec,0xf1,0xe0,0xe5,0x82,0x2f,0xf1,0xc3,0xf5,0x82, 0x75,0x83,0x00,0xed,0x54,0x07,0xd1,0x5d,0x80,0x05,0xc3,0x33,0xce,0x33,0xce,0xd8, 0xf9,0xff,0xee,0x55,0x83,0xfe,0xef,0x55,0x82,0x4e,0x60,0x1d,0xbb,0x13,0x14,0x7b, 0x18,0x8b,0x6d,0x74,0xcc,0x2c,0xf5,0x82,0xe4,0x34,0x8f,0xf5,0x83,0xe0,0x44,0x04, 0xf0,0x80,0x09,0xab,0x05,0x8b,0x6d,0x80,0x03,0x0d,0x80,0xad,0xad,0x6d,0xaf,0x71, 0x12,0xb0,0x7b,0x8f,0x6d,0x80,0x26,0xeb,0x65,0x70,0x70,0x1a,0x75,0xf0,0x12,0xec, 0x12,0x8f,0xec,0xc4,0x13,0x54,0x07,0x30,0xe0,0x22,0xe5,0x6d,0x20,0xe7,0x1d,0xeb, 0x44,0x80,0xf5,0x6d,0x80,0x07,0xb1,0xad,0xe5,0x70,0xf0,0xf5,0x6d,0xaf,0x04,0x90, 0x91,0x0b,0xe5,0x6f,0xf0,0xab,0x6c,0xad,0x6d,0x12,0x27,0x3d,0x22,0x74,0xcc,0x2c, 0xf5,0x82,0xe4,0x34,0x90,0xf5,0x83,0x22,0xe5,0x64,0x25,0xe0,0x24,0x1d,0xf5,0x82, 0xe4,0x34,0x83,0xf5,0x83,0x22,0xe5,0x64,0x90,0x83,0x45,0x93,0xff,0x22,0x90,0x00, 0x06,0x12,0x04,0x18,0x2f,0x22,0x90,0x92,0x32,0xe0,0x14,0xf0,0xe0,0x22,0xf0,0xaf, 0x6e,0x12,0x6b,0xe2,0x8f,0x6c,0x22,0x75,0xf0,0x12,0x90,0x89,0x3c,0x12,0x05,0x28, 0xe0,0x22,0xfc,0xe5,0x67,0xc3,0x13,0xfe,0xe5,0x68,0x13,0xff,0x22,0x25,0xe0,0x24, 0x7b,0xf5,0x82,0xe4,0x34,0x8f,0xf5,0x83,0x22,0x75,0xf0,0x12,0xe5,0x62,0x90,0x89, 0x42,0x12,0x05,0x28,0xe0,0x22,0x75,0xf0,0x12,0xe5,0x62,0x90,0x89,0x40,0x12,0x05, 0x28,0xe0,0x22,0xef,0x60,0x0a,0xed,0xc3,0x94,0x2c,0x40,0x04,0x7e,0x20,0x80,0x02, 0xe4,0xfe,0xc3,0xed,0x9e,0xff,0x22,0x8f,0x69,0xef,0x75,0xf0,0x06,0xa4,0x24,0x3f, 0xf9,0x74,0x82,0x35,0xf0,0xfa,0x7b,0xff,0x90,0x92,0x25,0x22,0xf5,0x82,0xe4,0x34, 0x90,0xf5,0x83,0x22,0xe4,0xf0,0xa3,0xef,0xf0,0x75,0xf0,0x12,0x22,0xff,0x74,0x01, 0x7e,0x00,0xa8,0x07,0x08,0x22,0xe4,0xfb,0xfa,0xfd,0x7f,0x01,0x12,0x86,0x4e,0x90, 0x92,0x24,0xef,0xf0,0x60,0xf0,0x90,0x84,0xc1,0xe0,0xff,0x70,0x04,0xa3,0xe0,0x60, 0xe5,0xc2,0xaf,0xef,0x30,0xe0,0x0e,0x90,0x84,0xc1,0xe0,0x54,0xfe,0xf0,0xe4,0xff, 0x12,0x2d,0xbd,0x11,0xd2,0xd1,0xc0,0x30,0xe1,0x06,0x54,0xfd,0xf0,0x12,0x60,0x5d, 0xd1,0xc0,0x30,0xe2,0x06,0x54,0xfb,0xf0,0x12,0x6a,0x6d,0xd1,0xc0,0x30,0xe4,0x0c, 0x54,0xef,0xf0,0x12,0x6f,0x22,0xbf,0x01,0x03,0x12,0xa2,0x44,0xd2,0xaf,0x80,0xb6, 0xd2,0xaf,0xc2,0xaf,0x90,0x84,0xc1,0xe0,0xff,0x22,0xe0,0xff,0xc4,0x13,0x13,0x54, 0x03,0x22,0x90,0x86,0x72,0xd1,0xca,0x30,0xe0,0x02,0xd1,0xdd,0x22,0xf1,0xbb,0xe4, 0x90,0x88,0xd8,0xd1,0xfe,0x90,0x88,0x76,0xd1,0xfe,0xa3,0xd1,0xfe,0xa3,0xf0,0xa3, 0xf0,0x90,0x88,0x88,0xf0,0xa3,0xf0,0x90,0x88,0xca,0xf0,0xa3,0xf0,0x22,0xf0,0xa3, 0xf0,0xa3,0xf0,0xa3,0xf0,0x22,0x7e,0x00,0x7f,0x24,0x7d,0x00,0x7b,0x01,0x7a,0x86, 0x79,0x72,0x12,0x06,0xde,0x90,0x06,0x90,0xe0,0x44,0x20,0xf0,0x12,0xb3,0x69,0xd1, 0xdd,0x90,0x84,0xc5,0xe0,0xff,0x64,0x02,0x70,0x29,0xf1,0xb2,0x30,0xe0,0x02,0x7e, 0x01,0x90,0x86,0x90,0xf1,0xb0,0x30,0xe1,0x02,0x7e,0x01,0x90,0x86,0x8e,0xf1,0xb0, 0x30,0xe2,0x02,0x7e,0x01,0x90,0x86,0x8f,0xee,0xf0,0x90,0xfd,0x80,0xe0,0x90,0x02, 0xfb,0xf0,0x22,0xef,0x64,0x01,0x70,0x1d,0xf1,0xa9,0x30,0xe0,0x02,0x7f,0x01,0x90, 0x86,0x90,0xf1,0xa7,0x30,0xe1,0x02,0x7f,0x01,0x90,0x86,0x8e,0xf1,0xa7,0x30,0xe2, 0x02,0x7f,0x01,0x80,0x23,0x90,0x84,0xc5,0xe0,0x64,0x03,0x70,0x20,0xf1,0xa0,0x30, 0xe0,0x02,0x7f,0x01,0x90,0x86,0x90,0xf1,0x9e,0x30,0xe1,0x02,0x7f,0x01,0x90,0x86, 0x8e,0xf1,0x9e,0x30,0xe2,0x02,0x7f,0x01,0x90,0x86,0x8f,0xef,0xf0,0x22,0xef,0xf0, 0x90,0xfd,0x78,0xe0,0x7f,0x00,0x22,0xef,0xf0,0x90,0xfd,0x70,0xe0,0x7f,0x00,0x22, 0xee,0xf0,0x90,0xfd,0x80,0xe0,0x7e,0x00,0x22,0xc1,0xd2,0x90,0x86,0x72,0xe0,0x54, 0xbf,0xf0,0x22,0xf5,0x82,0xe4,0x35,0x83,0xf5,0x83,0xe0,0x22,0xf5,0x82,0xe4,0x34, 0x8f,0xf5,0x83,0xe0,0x22,0xe4,0x90,0x84,0xc1,0xd1,0xfe,0x90,0x92,0x77,0xf0,0x22, 0x75,0xf0,0x08,0xa4,0x24,0x00,0xf5,0x82,0xe4,0x34,0x82,0xf5,0x83,0x22,0x90,0x92, 0x36,0xef,0xf0,0x90,0x04,0x7e,0xe0,0xff,0xa3,0xe0,0x90,0x92,0x46,0xf0,0xe0,0xfe, 0x6f,0x60,0x65,0x90,0x92,0x37,0x74,0x03,0xf0,0x90,0x92,0x45,0x74,0x08,0xf0,0xee, 0x04,0x54,0x0f,0xff,0xe4,0xfe,0xef,0x75,0xf0,0x08,0xa4,0x24,0x00,0xf5,0x82,0xe4, 0x34,0x80,0xf5,0x83,0xe5,0x82,0x2e,0x12,0x97,0xc3,0xfd,0x74,0x39,0x2e,0xf5,0x82, 0xe4,0x34,0x92,0xf5,0x83,0xed,0xf0,0x0e,0xee,0xb4,0x08,0xda,0x7b,0x01,0x7a,0x92, 0x79,0x37,0x12,0x5e,0x10,0x90,0x92,0x46,0xe0,0x04,0x54,0x0f,0xff,0xf0,0xbf,0x0f, 0x02,0xe4,0xf0,0x90,0x92,0x46,0xe0,0x90,0x04,0x7f,0xf0,0x90,0x92,0x36,0xe0,0x7f, 0x04,0x70,0x02,0x80,0x04,0x12,0x87,0xa5,0x22,0x8f,0x0d,0x7f,0x02,0x12,0x86,0x27, 0x90,0x84,0xc1,0xe0,0x45,0x0d,0xf0,0x22,0x90,0x85,0xc5,0xe0,0x60,0x57,0x90,0x85, 0xc1,0xe0,0x30,0xe0,0x19,0x90,0x85,0xdc,0xe0,0x04,0xf0,0x12,0xb3,0x7c,0xce,0xc3, 0x13,0xce,0x13,0xd8,0xf9,0xff,0x90,0x85,0xfc,0xee,0xf0,0xa3,0xef,0xf0,0x12,0x8f, 0xaf,0x13,0x54,0x1f,0x30,0xe0,0x0d,0x90,0x01,0x3b,0xe0,0x30,0xe4,0x06,0x12,0x8f, 0xf6,0x12,0xb3,0x97,0x90,0x92,0x96,0x31,0xdd,0xc3,0x90,0x92,0x97,0xe0,0x94,0x80, 0x90,0x92,0x96,0xe0,0x64,0x80,0x94,0x80,0x40,0x0b,0x90,0x01,0x98,0xe0,0x54,0xfe, 0xf0,0xe0,0x44,0x01,0xf0,0x12,0x5d,0x1f,0x12,0x6e,0x1d,0xe4,0x90,0x88,0xe0,0xf0, 0x7f,0x01,0x11,0x69,0x12,0xb2,0xad,0x12,0xa6,0x8d,0x54,0x03,0x30,0xe0,0x51,0x90, 0x88,0x76,0xe0,0xfe,0xa3,0xe0,0xff,0x7c,0x00,0x7d,0x64,0x12,0x03,0x82,0x90,0x88, 0xca,0xe0,0x6e,0x70,0x03,0xa3,0xe0,0x6f,0x60,0x0a,0x90,0x88,0xca,0xe4,0x75,0xf0, 0x01,0x02,0x07,0x0a,0x90,0x88,0x7a,0xe0,0xfe,0xa3,0xe0,0xff,0x90,0x88,0x88,0xe0, 0xb5,0x06,0x14,0xa3,0xe0,0xb5,0x07,0x0f,0xef,0x4e,0x60,0x0b,0x90,0x01,0xc7,0x74, 0x31,0xf0,0x7f,0x01,0x02,0x5f,0xe9,0x31,0x41,0xe4,0x90,0x88,0xca,0xf0,0xa3,0xf0, 0x22,0xe4,0x90,0x92,0x39,0xf0,0xa3,0xf0,0x90,0x06,0x32,0xe0,0x44,0x20,0xf0,0x12, 0x75,0xe4,0xef,0x64,0x01,0x70,0x7c,0x90,0x88,0xd9,0xe0,0xff,0x90,0x92,0x8c,0x74, 0x0a,0xf0,0x7b,0x08,0x7d,0x01,0x71,0xd2,0x12,0xb3,0xa1,0x90,0x92,0x36,0xa3,0x91, 0x94,0xfd,0x74,0x2c,0x2e,0xd1,0x2f,0x90,0x92,0x38,0xef,0xf0,0x90,0x92,0x36,0xa3, 0xe0,0x24,0x28,0xf9,0xe4,0x34,0xfc,0xfa,0x7b,0x01,0xe4,0xfd,0x12,0x52,0x21,0x90, 0x92,0x38,0xe0,0xff,0x90,0x92,0x37,0xe0,0x2f,0xff,0x90,0x92,0x36,0xe0,0x34,0x00, 0xcf,0x24,0x30,0xcf,0x34,0x00,0xfe,0x90,0x92,0x39,0xf0,0xa3,0xef,0xf0,0x31,0xe4, 0x31,0xd4,0x90,0x88,0xd9,0xe0,0xfb,0xe4,0xff,0x12,0x15,0x44,0x31,0xd4,0x90,0x88, 0xd5,0xe0,0xfb,0x7f,0x11,0x12,0x15,0x44,0x90,0x04,0x1f,0x74,0x20,0xf0,0x90,0x88, 0x88,0x31,0xdd,0x22,0x90,0x92,0x39,0xe0,0xfc,0xa3,0xe0,0xfd,0x22,0xe4,0x75,0xf0, 0x01,0x02,0x07,0x0a,0xad,0x07,0x90,0x88,0x80,0x31,0xdd,0x90,0x88,0x80,0xe0,0xff, 0xae,0x05,0x74,0x04,0x2e,0xb1,0x6f,0xef,0xf0,0x90,0x88,0x80,0xa3,0xe0,0xff,0x74, 0x05,0x2e,0xd1,0x1f,0xef,0xf0,0x22,0xe4,0x90,0x92,0x1f,0xf0,0xa3,0xf0,0x51,0x57, 0xef,0x64,0x01,0x60,0x3b,0xc3,0x90,0x92,0x20,0xe0,0x94,0x88,0x90,0x92,0x1f,0xe0, 0x94,0x13,0x40,0x0f,0x90,0x01,0xc1,0xe0,0x44,0x10,0xf0,0x90,0x01,0xc7,0x74,0xfd, 0xf0,0x80,0x1d,0x90,0x92,0x1f,0x31,0xdd,0x51,0xc1,0xd3,0x90,0x92,0x20,0xe0,0x94, 0x32,0x90,0x92,0x1f,0xe0,0x94,0x00,0x40,0xc5,0x90,0x01,0xc6,0xe0,0x30,0xe3,0xbe, 0x90,0x01,0xc7,0x74,0xfe,0xf0,0x22,0x90,0x01,0x9a,0xe0,0x54,0xc0,0x44,0x0b,0x12, 0xa2,0x34,0x90,0x01,0x98,0xe0,0x54,0xc0,0x7f,0x00,0xb4,0x40,0x02,0x7f,0x01,0x22, 0x90,0x92,0x93,0xef,0xf0,0xe4,0xa3,0xf0,0xa3,0xf0,0x90,0x01,0x09,0xe0,0x7f,0x00, 0x30,0xe7,0x02,0x7f,0x01,0x90,0x92,0x93,0xe0,0x6f,0x60,0x34,0xc3,0x90,0x92,0x95, 0xe0,0x94,0x88,0x90,0x92,0x94,0xe0,0x94,0x13,0x40,0x08,0x90,0x01,0xc0,0xe0,0x44, 0x10,0xf0,0x22,0x90,0x92,0x94,0x31,0xdd,0x51,0xc1,0xd3,0x90,0x92,0x95,0xe0,0x94, 0x32,0x90,0x92,0x94,0xe0,0x94,0x00,0x40,0xc1,0x90,0x01,0xc6,0xe0,0x30,0xe0,0xba, 0x22,0x7f,0x14,0x7e,0x00,0x02,0x7c,0x9f,0x12,0xb2,0x83,0x7f,0x08,0x12,0x7b,0x51, 0xef,0x54,0xef,0xfd,0x7f,0x08,0x12,0x7b,0x3e,0xe4,0xff,0x51,0x70,0x7d,0x35,0x7f, 0x27,0x12,0x7b,0x3e,0x90,0x85,0xc2,0xe0,0x54,0xef,0xf0,0x22,0xd3,0x10,0xaf,0x01, 0xc3,0xc0,0xd0,0x51,0xfc,0x51,0xc8,0xd0,0xd0,0x92,0xaf,0x22,0x90,0x85,0xc2,0xe0, 0x44,0x10,0xf0,0x90,0x85,0xd0,0xe0,0xfd,0x7f,0x93,0x12,0x7b,0x3e,0x90,0x85,0xc6, 0xe0,0x60,0x12,0x90,0x01,0x2f,0xe0,0x30,0xe7,0x05,0x74,0x10,0xf0,0x80,0x06,0x90, 0x01,0x2f,0x74,0x90,0xf0,0x7f,0x08,0x12,0x7b,0x51,0xef,0x44,0x10,0xfd,0x7f,0x08, 0x12,0x7b,0x3e,0x7f,0x01,0x51,0x70,0x7d,0x34,0x7f,0x27,0x12,0x7b,0x3e,0x7f,0x90, 0xf1,0x57,0x7f,0x90,0x12,0x7b,0x3e,0x7f,0x14,0x7e,0x00,0x02,0x7c,0x9f,0x90,0x85, 0xc8,0xe0,0xff,0x60,0x03,0xb4,0x08,0x0d,0x71,0x66,0xbf,0x01,0x08,0x51,0xec,0x90, 0x01,0xe5,0xe0,0x04,0xf0,0x22,0x90,0x92,0x7b,0xe0,0xc3,0x13,0x20,0xe0,0x3a,0x90, 0x02,0x87,0xe0,0x60,0x02,0x80,0x08,0x90,0x01,0x00,0xe0,0x64,0x3f,0x60,0x05,0x12, 0xaf,0x35,0x80,0x45,0x90,0x86,0x72,0xe0,0x30,0xe0,0x0a,0x90,0x02,0x82,0xe0,0x60, 0x04,0xf1,0xec,0x80,0x34,0x90,0x86,0x7a,0xe0,0x30,0xe0,0x04,0xf1,0xe5,0x80,0x29, 0x90,0x02,0x86,0xe0,0x20,0xe1,0x02,0x80,0x07,0x90,0x02,0x86,0xe0,0x30,0xe3,0x08, 0x90,0x01,0xb8,0x74,0x04,0xf0,0x80,0x11,0x90,0x04,0x1d,0xe0,0x60,0x08,0x90,0x01, 0xb8,0x74,0x40,0xf0,0x80,0x03,0x02,0xaf,0xac,0x90,0x01,0xb9,0x74,0x08,0xf0,0x7f, 0x00,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x90,0x92,0x8a,0xed,0xf0,0xa3,0xeb, 0xf0,0x90,0x92,0x89,0xef,0xf0,0xe4,0xfd,0xfc,0xd1,0x27,0x90,0x92,0x89,0xe0,0x90, 0x04,0x25,0xf0,0x90,0x92,0x8a,0xe0,0x60,0x05,0x91,0x88,0x44,0x80,0xf0,0xaf,0x05, 0x74,0x20,0x2f,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0x54,0xc0,0xf0,0x91,0x88, 0x54,0xc0,0xf0,0x90,0x92,0x8c,0xe0,0xff,0xae,0x05,0x74,0x18,0x2e,0xf5,0x82,0xe4, 0x34,0xfc,0xf5,0x83,0xef,0xf0,0x90,0x00,0x8b,0xe0,0xd3,0x94,0x03,0x74,0x10,0x40, 0x07,0x91,0x74,0x74,0x04,0xf0,0x80,0x04,0x91,0x74,0xe4,0xf0,0xaf,0x05,0x91,0x7d, 0xe0,0x54,0x01,0xfe,0x90,0x92,0x8b,0xe0,0x25,0xe0,0x25,0xe0,0xfb,0xee,0x44,0x02, 0x4b,0xfe,0x91,0x7d,0xee,0xf0,0x74,0x11,0x2f,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83, 0x74,0xff,0xf0,0x74,0x29,0x2f,0x91,0xa4,0x54,0xf7,0xf0,0xae,0x04,0xaf,0x05,0xd0, 0xd0,0x92,0xaf,0x22,0x2e,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0x22,0x74,0x12,0x2f, 0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0x22,0x74,0x21,0x2f,0xf5,0x82,0xe4,0x34,0xfc, 0xf5,0x83,0xe0,0x22,0xe0,0xfe,0x24,0x28,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0, 0xff,0x74,0x29,0x2e,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0x22,0x90,0x88,0xd9, 0xb1,0x4b,0x91,0x94,0xfd,0x90,0x92,0x05,0xe0,0x24,0x2c,0xd1,0x2f,0x90,0x92,0x05, 0xe0,0x2f,0x24,0x30,0xa3,0xf0,0xe0,0xfd,0x24,0x04,0xb1,0x6f,0xe0,0xfe,0x74,0x05, 0x2d,0xf5,0x82,0xe4,0x34,0xfc,0xb1,0x64,0x90,0x88,0x80,0xf0,0xa3,0xef,0xf0,0x90, 0x92,0x06,0xe0,0x24,0x0c,0xf9,0xe4,0x34,0xfc,0xb1,0x5c,0x75,0x1e,0x04,0x7b,0x01, 0x7a,0x88,0x79,0x82,0x12,0x6a,0x21,0x90,0x92,0x06,0xe0,0x24,0x14,0xf0,0xe0,0xfd, 0x24,0x01,0xd1,0x3b,0x2d,0xf5,0x82,0xe4,0x34,0xfc,0xb1,0x64,0x90,0x88,0x86,0xf0, 0xa3,0xef,0xf0,0x90,0x88,0xda,0xb1,0x4b,0x90,0x88,0x7c,0xe0,0xfe,0xa3,0xe0,0xff, 0x4e,0x60,0x11,0x90,0x92,0x05,0xe0,0xb1,0x56,0x8f,0x1e,0x7b,0x01,0x7a,0x88,0x79, 0x8a,0x12,0x6a,0x21,0x90,0x88,0xdb,0xb1,0x4b,0xb1,0x56,0x90,0x88,0x7e,0xa3,0xe0, 0xf5,0x1e,0x7b,0x01,0x7a,0x88,0x79,0xaa,0x02,0x6a,0x21,0xe0,0xff,0x12,0x7b,0x2a, 0x90,0x92,0x05,0xef,0xf0,0x22,0x24,0x00,0xf9,0xe4,0x34,0xfc,0x75,0x1b,0x01,0xf5, 0x1c,0x89,0x1d,0x22,0xf5,0x83,0xe0,0x7c,0x00,0x24,0x00,0xff,0xec,0x3e,0x22,0xf5, 0x82,0xe4,0x34,0xfc,0xf5,0x83,0x22,0xef,0x60,0x04,0xb1,0x7f,0x91,0xad,0x22,0xe4, 0xfd,0xfc,0x90,0x88,0xd8,0xe0,0xff,0xd1,0x27,0xab,0x05,0x74,0x01,0x2b,0xd1,0x3b, 0x2b,0xf5,0x82,0xe4,0x34,0xfc,0x12,0xa6,0xa8,0x90,0x88,0x76,0xf0,0xa3,0xef,0xf0, 0x74,0x03,0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0xfe,0x74,0x02,0x2b,0xf5, 0x82,0xe4,0x34,0xfc,0xd1,0x16,0x90,0x88,0x78,0xf0,0xa3,0xef,0xf0,0x74,0x05,0x2b, 0xd1,0x1f,0xe0,0xfe,0x74,0x04,0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xd1,0x16,0x90,0x88, 0x7a,0xf0,0xa3,0xef,0xf0,0x74,0x07,0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0, 0xfe,0x74,0x06,0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xd1,0x16,0x90,0x88,0x7c,0xf0,0xa3, 0xef,0xf0,0x74,0x09,0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0xfe,0x74,0x08, 0x2b,0xf5,0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0x24,0x00,0xff,0xec,0x3e,0x90,0x88, 0x7e,0xf0,0xa3,0xef,0xf0,0x22,0xf5,0x83,0xe0,0x24,0x00,0xff,0xea,0x3e,0x22,0xf5, 0x82,0xe4,0x34,0xfc,0xf5,0x83,0x22,0x12,0x7b,0x2a,0x7c,0x00,0xad,0x07,0x22,0xf5, 0x82,0xe4,0x34,0xfc,0xf5,0x83,0xe0,0xfb,0x02,0x5d,0x98,0xf5,0x82,0xe4,0x34,0xfc, 0xf5,0x83,0xe0,0xfe,0x74,0x00,0x22,0xef,0x60,0x4e,0x90,0x88,0xce,0xe0,0xff,0x60, 0x03,0x12,0x7b,0x8a,0x90,0x01,0xc7,0xe4,0xf0,0x90,0x01,0x17,0xe0,0xfe,0x90,0x01, 0x16,0xb1,0x66,0x90,0x85,0xb7,0xf0,0xa3,0xef,0xf0,0x90,0x06,0x09,0xe0,0x54,0xfe, 0xf0,0x7d,0x35,0x7f,0xff,0xd1,0xb8,0xf1,0x5f,0x90,0x02,0x86,0xe0,0x44,0x04,0xf0, 0x12,0x72,0x79,0xd1,0xc3,0xf1,0x11,0xd1,0xb5,0x12,0x76,0xe6,0x90,0x01,0x34,0x74, 0x08,0xf0,0xfd,0xe4,0xff,0x02,0x7c,0xa9,0x7d,0x08,0xe4,0xff,0x12,0x7c,0x41,0x90, 0x06,0x90,0xe0,0x54,0xf0,0xf0,0x90,0x02,0x86,0xe0,0x54,0xfb,0xf0,0xd1,0xea,0x12, 0x97,0xb9,0x02,0x97,0x06,0xe4,0xfd,0xff,0x90,0x05,0x22,0xef,0xf0,0x90,0x92,0x77, 0xed,0xf0,0x22,0x22,0x90,0x85,0xc5,0xe0,0x64,0x01,0x70,0x1d,0x12,0x8c,0xed,0x60, 0x0f,0xe4,0xfd,0x7f,0x0c,0x12,0xa9,0xd6,0xe4,0xfd,0xff,0xd1,0xb8,0x02,0x6b,0x98, 0x90,0x85,0xc8,0xe0,0x70,0x03,0x12,0xa9,0xd2,0x22,0x12,0xb3,0x69,0x12,0x77,0x89, 0x90,0x01,0x3f,0x74,0x04,0xf0,0x90,0x84,0xc5,0xe0,0xff,0xb4,0x01,0x07,0x90,0xfd, 0x00,0xe0,0x54,0xef,0xf0,0xef,0xb4,0x01,0x07,0x90,0xfe,0x10,0xe0,0x54,0xfb,0xf0, 0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xf1,0xb9,0xf1,0x4d,0xf1,0xd5,0x7f,0x02, 0xf1,0x57,0x7f,0x02,0x12,0xa6,0x95,0x44,0x02,0xf0,0x90,0x01,0x00,0x74,0xff,0xf0, 0x90,0x06,0xb7,0x74,0x09,0xf0,0x90,0x06,0xb4,0x74,0x86,0xf0,0xf1,0xb2,0xf1,0x4d, 0x12,0x87,0x4a,0xed,0x44,0x0f,0xf1,0xc6,0xd0,0xd0,0x92,0xaf,0x22,0x90,0x92,0x81, 0x12,0x04,0xeb,0x90,0x92,0x81,0x22,0x12,0x7b,0x51,0xef,0x44,0x01,0xfd,0x22,0xd3, 0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xf1,0xb9,0xf1,0xa8,0xf1,0xd5,0x12,0xb0,0x37,0x7f, 0x02,0x12,0x7b,0x51,0xef,0x54,0xfe,0xfd,0x7f,0x02,0x12,0x7b,0x3e,0xf1,0xb2,0xf1, 0xa8,0x12,0x87,0x4a,0xed,0x54,0xf0,0xf1,0xc6,0x90,0x01,0x00,0x74,0x3f,0xf0,0x90, 0x01,0x34,0x74,0x08,0xf0,0x90,0x01,0x01,0xe0,0x54,0xfd,0xf0,0x90,0x05,0x53,0xe0, 0x44,0x20,0xf0,0xd0,0xd0,0x92,0xaf,0x22,0x90,0x92,0x85,0x12,0x04,0xeb,0x90,0x92, 0x85,0x22,0x7d,0xb0,0xe4,0xff,0x02,0x7b,0xe0,0x7f,0x30,0x7e,0x08,0x12,0x70,0x61, 0xed,0x44,0x80,0xfd,0xec,0x22,0xfd,0xec,0x90,0x8d,0x9d,0x12,0x04,0xeb,0x7d,0xb0, 0xe4,0xff,0x02,0x78,0xdd,0x12,0x87,0x4a,0x90,0x91,0x66,0x12,0x04,0xeb,0x7f,0x30, 0x7e,0x08,0x02,0x71,0x18,0x90,0x01,0xb8,0x74,0x08,0xf0,0x22,0x90,0x01,0xb8,0x74, 0x02,0xf0,0x22,0xe4,0xf5,0x40,0xf5,0x41,0xf5,0x42,0x75,0x43,0x80,0xad,0x40,0x7f, 0x50,0x12,0x7b,0x3e,0xad,0x41,0x7f,0x51,0x12,0x7b,0x3e,0xad,0x42,0x7f,0x52,0x12, 0x7b,0x3e,0xad,0x43,0x7f,0x53,0x02,0x7b,0x3e,0x75,0x48,0x12,0xe4,0xf5,0x49,0x75, 0x4a,0x07,0x75,0x4b,0x32,0x90,0x01,0x30,0xe5,0x48,0xf0,0xa3,0xe5,0x49,0xf0,0xa3, 0xe5,0x4a,0xf0,0xa3,0xe5,0x4b,0xf0,0x90,0x01,0x20,0xe5,0x50,0xf0,0x22,0x12,0x75, 0xb6,0x12,0x75,0x58,0x11,0x19,0x11,0x4a,0x80,0xa9,0x75,0x52,0x06,0x75,0x53,0x01, 0x75,0x54,0x03,0x75,0x55,0x62,0x90,0x01,0x38,0xe5,0x52,0xf0,0xa3,0xe5,0x53,0xf0, 0xa3,0xe5,0x54,0xf0,0xa3,0xe5,0x55,0xf0,0x22,0x12,0x7c,0x4e,0x90,0x84,0xc5,0xef, 0xf0,0x11,0x3e,0x90,0x01,0x64,0x74,0x01,0xf0,0x90,0x04,0x23,0xe0,0x44,0x80,0xf0, 0x90,0x00,0x17,0xe0,0x54,0xfc,0x44,0x04,0xfd,0x7f,0x17,0x12,0x7b,0x3e,0x90,0x00, 0x38,0xe0,0x44,0x40,0xfd,0x7f,0x38,0x12,0x7b,0x3e,0x02,0x68,0xe2,0x90,0x00,0x80, 0xe0,0x44,0x80,0xfd,0x7f,0x80,0x12,0x7b,0x3e,0xd1,0x9d,0xd1,0xb3,0x12,0x7b,0x9c, 0x31,0x1a,0x12,0x97,0xd5,0x7f,0x01,0x12,0x85,0x15,0x90,0x92,0x7f,0x74,0x02,0xf0, 0xff,0x12,0x85,0x15,0x90,0x92,0x7f,0xe0,0x04,0xf0,0x11,0x69,0x31,0x37,0x90,0x00, 0x80,0xe0,0x44,0x40,0xfd,0x7f,0x80,0x12,0x7b,0x3e,0x75,0x20,0xff,0x12,0x7c,0xcd, 0x12,0x9a,0x07,0x90,0x00,0x81,0xe0,0x44,0x04,0xfd,0x7f,0x81,0x12,0x7b,0x3e,0x51, 0x2c,0x90,0x00,0x00,0xe0,0x54,0xfb,0xfd,0xe4,0xff,0xd1,0x95,0x44,0x04,0xfd,0x7f, 0x01,0x12,0x7b,0x3e,0x90,0x01,0x98,0x74,0x80,0xf0,0xa3,0x74,0x88,0xf0,0xa3,0xe4, 0xf0,0xa3,0x74,0x80,0xf0,0xe4,0xff,0x02,0x85,0x9e,0x90,0x01,0x01,0xe0,0x44,0x04, 0xf0,0x90,0x01,0x9a,0xe0,0x54,0xc0,0x51,0x34,0x90,0x01,0x99,0xe0,0x44,0xc0,0xf0, 0x90,0x01,0x9b,0x74,0x80,0xf0,0x22,0x51,0x26,0x12,0x7b,0xef,0x12,0x3c,0x03,0xf1, 0x15,0x31,0x70,0x31,0x6b,0x12,0x97,0x06,0x12,0x7b,0x64,0x12,0x78,0xb9,0x90,0x89, 0x16,0xe0,0x54,0x7f,0xf0,0x54,0xbf,0xf0,0x54,0xdf,0xf0,0x54,0xf0,0xf0,0xe4,0x90, 0x89,0x18,0xf0,0x90,0x89,0x16,0xe0,0x54,0xef,0xf0,0x22,0x51,0x19,0x02,0x06,0xde, 0x7e,0x00,0x7f,0xac,0x7d,0x00,0x7b,0x01,0x7a,0x85,0x79,0xc1,0x12,0x06,0xde,0x51, 0x19,0x12,0x06,0xde,0x90,0x85,0xc4,0x74,0x02,0xf0,0x90,0x85,0xcb,0x14,0x51,0x3c, 0x90,0x85,0xd1,0xe4,0xf0,0xa3,0x74,0x02,0xf0,0x51,0x0a,0xe4,0xfd,0xff,0x12,0x57, 0x82,0x7d,0x0c,0x7f,0x02,0x12,0x57,0x82,0x7d,0x0c,0x7f,0x01,0x12,0x57,0x82,0x90, 0x84,0xc5,0xe0,0xff,0xb4,0x01,0x08,0x90,0x85,0xd0,0x74,0xdd,0xf0,0x80,0x0f,0xef, 0x90,0x85,0xd0,0xb4,0x03,0x05,0x74,0xd4,0xf0,0x80,0x03,0x74,0x40,0xf0,0x7f,0x79, 0x12,0x7b,0x51,0xef,0x54,0x03,0xff,0xbf,0x02,0x0f,0x7f,0x28,0x12,0x7b,0x51,0xef, 0x30,0xe2,0x06,0x90,0x85,0xfb,0x74,0x02,0xf0,0x12,0x8a,0xad,0x51,0x0a,0x7f,0x01, 0x12,0x69,0x33,0x90,0x06,0x04,0xe0,0x54,0x7f,0xf0,0x90,0x06,0x0a,0xe0,0x54,0xf8, 0xf0,0x12,0x9e,0xb5,0xe4,0x90,0x86,0x71,0xf0,0x22,0x90,0x85,0xfb,0xe0,0x24,0x04, 0x90,0x85,0xdd,0xf0,0xa3,0x74,0x08,0xf0,0x22,0x7e,0x00,0x7f,0x04,0x7d,0x00,0x7b, 0x01,0x7a,0x92,0x79,0x7b,0x22,0xe4,0xfd,0xff,0x02,0x6e,0x5f,0x90,0x01,0xe4,0xe4, 0xf0,0xa3,0xf0,0x22,0xf0,0x7f,0x0a,0x7e,0x00,0x02,0x7c,0x9f,0xf0,0xa3,0xf0,0xa3, 0x74,0x08,0xf0,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xe4,0x90,0x92,0x5a,0x51, 0x3c,0xa3,0xf0,0xe4,0xa3,0xf0,0xa3,0xf0,0x90,0x92,0x62,0xf0,0xa3,0xf0,0xa3,0xf0, 0x90,0x01,0xc4,0x74,0x44,0xf0,0x74,0xa2,0xa3,0xf0,0x90,0x01,0x1f,0xe0,0xfe,0x90, 0x01,0x1e,0x12,0x9d,0x66,0x90,0x92,0x51,0xf0,0xa3,0xef,0xf0,0x90,0x02,0x82,0xe0, 0x90,0x92,0x59,0xf0,0x90,0x86,0x72,0xe0,0x20,0xe0,0x02,0xa1,0x32,0xe4,0x90,0x92, 0x58,0xf0,0x90,0x92,0x59,0xe0,0xff,0x90,0x92,0x58,0xe0,0xc3,0x9f,0x40,0x02,0xa1, 0x32,0x90,0x92,0x51,0xe0,0xfc,0xa3,0xe0,0xfd,0xec,0xff,0x90,0xfd,0x11,0xf0,0x90, 0x92,0x62,0xef,0xf0,0x74,0x01,0x2d,0xf5,0x82,0xe4,0x34,0xfb,0xf5,0x83,0xe0,0xfe, 0x74,0x00,0x2d,0xf5,0x82,0xe4,0x34,0xfb,0xd1,0xa8,0x54,0x3f,0xfe,0x90,0x92,0x53, 0xf0,0xa3,0xef,0xf0,0x90,0x92,0x5e,0xee,0xf0,0xa3,0xef,0xf0,0x74,0x02,0x2d,0xf5, 0x82,0xe4,0x34,0xfb,0xf5,0x83,0xe0,0x54,0x0f,0x33,0x33,0x33,0x54,0xf8,0xff,0x74, 0x03,0x2d,0xf5,0x82,0xe4,0x34,0xfb,0xf5,0x83,0xe0,0x54,0x03,0xfe,0xef,0x24,0x18, 0x2e,0xff,0x90,0x92,0x63,0xf0,0x90,0x92,0x52,0xe0,0x2f,0xff,0x90,0x92,0x51,0xe0, 0x34,0x00,0xfe,0x90,0x92,0x55,0xb1,0x5e,0xc0,0x07,0xb1,0x43,0x7d,0x01,0x12,0x55, 0x36,0xc0,0x07,0xb1,0x43,0x7d,0x04,0x12,0x55,0x36,0xab,0x07,0xd0,0x05,0xd0,0x07, 0x12,0x5d,0x98,0x90,0x92,0x5a,0xef,0xb1,0x42,0xe4,0xfd,0x12,0x55,0x36,0xef,0x54, 0xfc,0x90,0x92,0x57,0xf0,0x90,0x92,0x63,0xe0,0xff,0x90,0x92,0x53,0xe4,0x8f,0xf0, 0x12,0x07,0x0a,0x90,0x92,0x53,0xe0,0xfe,0xa3,0xe0,0xff,0x12,0x7a,0xd0,0x90,0x92, 0x53,0xee,0xf0,0xa3,0xef,0xf0,0xb1,0x67,0x7d,0x0f,0x12,0x55,0x36,0x90,0x92,0x53, 0xe0,0xfc,0xa3,0xe0,0xfd,0x90,0x92,0x51,0xec,0x8d,0xf0,0x12,0x07,0x0a,0x90,0x85, 0xb7,0xe0,0xfc,0xa3,0xe0,0xfd,0xd3,0x90,0x92,0x52,0xe0,0x9d,0x90,0x92,0x51,0xe0, 0x9c,0x40,0x1b,0x90,0x85,0xb8,0xe0,0x24,0x01,0xfd,0x90,0x85,0xb7,0xe0,0x34,0x00, 0xfc,0xc3,0x90,0x92,0x52,0xe0,0x9d,0xf0,0x90,0x92,0x51,0xe0,0x9c,0xf0,0xef,0x30, 0xe6,0x06,0x90,0x01,0xc7,0x74,0x22,0xf0,0xef,0x30,0xe7,0x06,0x90,0x01,0xc7,0x74, 0x21,0xf0,0xef,0x30,0xe5,0x06,0x90,0x01,0xc7,0x74,0x23,0xf0,0x90,0x92,0x57,0xe0, 0x24,0x40,0x60,0x04,0x24,0x20,0x70,0x2a,0x90,0x86,0x75,0x12,0x8d,0x0c,0x20,0xe0, 0x02,0x81,0xc6,0x90,0x86,0x87,0xe0,0x04,0xb1,0x42,0x12,0x59,0x20,0xef,0x70,0x02, 0x81,0xc6,0x90,0x92,0x57,0xe0,0xff,0x12,0x7b,0x77,0x90,0x86,0x88,0xe0,0x04,0xf0, 0x81,0xc6,0xd1,0x8d,0x54,0x03,0x30,0xe0,0x56,0x90,0x92,0x5a,0xe0,0xff,0x90,0x92, 0x56,0xe0,0x2f,0xff,0x90,0x92,0x55,0xe0,0x34,0x00,0xcf,0x24,0x08,0xcf,0x34,0x00, 0xfe,0x90,0x92,0x60,0xb1,0x5e,0xef,0x64,0x45,0x70,0x34,0xb1,0x4d,0xb1,0xa4,0xef, 0x64,0x01,0x70,0x2b,0xb1,0x4d,0xb1,0x70,0xef,0x64,0x01,0x70,0x22,0x90,0x92,0x64, 0x04,0xb1,0x4c,0xa3,0xe0,0xfd,0xd1,0x21,0xef,0x70,0x0c,0x90,0x92,0x62,0xe0,0xfd, 0x90,0xfd,0x11,0xb1,0x4c,0xb1,0xe6,0x90,0x92,0x62,0xe0,0x90,0xfd,0x11,0xf0,0xb1, 0x43,0x12,0x59,0x20,0xef,0x60,0x18,0xb1,0x43,0x90,0x92,0x5a,0xe0,0xfd,0x90,0x92, 0x5d,0xe0,0xfb,0x12,0x54,0x02,0xef,0x60,0x06,0x90,0x92,0x64,0x74,0x01,0xf0,0x90, 0x86,0x72,0xe0,0xc3,0x13,0x30,0xe0,0x13,0xb1,0x43,0x90,0x92,0x5a,0xe0,0xfd,0x12, 0x38,0x10,0xef,0x60,0x06,0x90,0x92,0x64,0x74,0x01,0xf0,0x12,0x8c,0xe5,0x54,0x3f, 0x30,0xe0,0x0a,0xb1,0x43,0x90,0x92,0x5a,0xe0,0xfd,0x12,0x21,0xb6,0x90,0x86,0x72, 0x12,0x8d,0x0c,0x30,0xe0,0x10,0x90,0x92,0x64,0xe0,0x70,0x0a,0xb1,0x43,0x90,0x92, 0x5a,0xe0,0xfd,0x12,0x4a,0x3f,0x12,0x79,0x00,0xef,0x64,0x01,0x60,0x07,0x90,0x01, 0x3f,0xe0,0x30,0xe2,0x05,0x7f,0x01,0x12,0x5f,0xe9,0x90,0x01,0x3f,0xe0,0x30,0xe2, 0x02,0xb1,0x56,0x12,0x6f,0xe5,0xef,0x64,0x01,0x70,0x36,0x90,0x86,0x89,0xe0,0x04, 0xf0,0x12,0x6f,0xe5,0xad,0x07,0xef,0x64,0x01,0x60,0x1f,0xb1,0x56,0xed,0xb4,0x02, 0x08,0x90,0x01,0xc7,0x74,0x42,0xf0,0x80,0x0a,0xed,0xb4,0x04,0x06,0x90,0x01,0xc7, 0x74,0x43,0xf0,0x7f,0x01,0x12,0x5f,0xe9,0x80,0x18,0xb1,0x67,0x12,0x7c,0x0b,0x80, 0x09,0x90,0x86,0x72,0xe0,0x54,0xfe,0xf0,0x80,0x08,0x90,0x92,0x58,0xe0,0x04,0xf0, 0x41,0x92,0x74,0x44,0x04,0x90,0x01,0xc4,0xf0,0x74,0xa2,0xa3,0xf0,0xd0,0xd0,0x92, 0xaf,0x22,0xf0,0x90,0x92,0x55,0xe0,0xfe,0xa3,0xe0,0xff,0x22,0xf0,0x90,0x92,0x60, 0xe0,0xfe,0xa3,0xe0,0xff,0x22,0x90,0x86,0x7a,0xe0,0x44,0x01,0xf0,0x22,0xf0,0xa3, 0xef,0xf0,0xe4,0xfd,0x02,0x55,0x36,0x90,0x92,0x51,0xe0,0xfe,0xa3,0xe0,0xff,0x22, 0xb1,0xdd,0x24,0x16,0xff,0xe4,0x3e,0xfe,0xe4,0xfd,0x12,0x55,0x36,0x90,0x88,0x86, 0xa3,0xe0,0xb5,0x07,0x19,0x90,0x92,0x26,0xe0,0x24,0x16,0xd1,0x67,0x7d,0x01,0x12, 0x55,0x36,0xef,0xfd,0x90,0x88,0x86,0xe0,0x6d,0x70,0x01,0xe4,0x60,0x03,0x7f,0x00, 0x22,0x7f,0x01,0x22,0xb1,0xdd,0xe4,0xa3,0xf0,0x90,0x92,0x27,0xe0,0xfd,0xc3,0x94, 0x04,0x50,0x27,0x90,0x92,0x26,0xe0,0x24,0x10,0xd1,0x67,0x12,0x55,0x36,0x90,0x92, 0x27,0xe0,0x24,0x82,0xf5,0x82,0xe4,0x34,0x88,0xf5,0x83,0xe0,0x6f,0x60,0x03,0x7f, 0x00,0x22,0x90,0x92,0x27,0xe0,0x04,0xf0,0x80,0xcf,0x7f,0x01,0x22,0x90,0x92,0x25, 0xee,0xf0,0xa3,0xef,0xf0,0x22,0xb1,0xdd,0xa3,0xed,0xf0,0xe4,0xa3,0xf0,0xd1,0x70, 0x50,0x17,0xd1,0x79,0x24,0xaa,0xf5,0x82,0xe4,0x34,0x88,0xf5,0x83,0xe0,0xb5,0x07, 0x1d,0x90,0x92,0x28,0xe0,0x04,0xf0,0x80,0xe5,0x90,0x06,0x32,0xe0,0x44,0x80,0xf0, 0x90,0x01,0xc7,0x74,0x30,0xf0,0x7f,0x01,0x12,0x5f,0xe9,0x7f,0x01,0x22,0x7f,0x00, 0x22,0xb1,0xdd,0xa3,0xed,0xf0,0x90,0x88,0x7c,0xe0,0x70,0x02,0xa3,0xe0,0x60,0x23, 0xe4,0x90,0x92,0x28,0xf0,0xd1,0x70,0x50,0x1d,0xd1,0x79,0x24,0x8a,0xf5,0x82,0xe4, 0x34,0x88,0xf5,0x83,0xe0,0x6f,0x60,0x03,0x7f,0x00,0x22,0x90,0x92,0x28,0xe0,0x04, 0xf0,0x80,0xe2,0x7f,0x00,0x22,0x90,0x06,0x32,0xe0,0x44,0x40,0xf0,0xe4,0x90,0x88, 0x88,0xf0,0xa3,0xf0,0x7f,0x01,0x22,0xff,0x90,0x92,0x25,0xe0,0x34,0x00,0xfe,0x22, 0x90,0x92,0x28,0xe0,0xfd,0xc3,0x94,0x02,0x22,0x90,0x92,0x25,0xe0,0xfe,0xa3,0xe0, 0xff,0xed,0x24,0x1c,0xfd,0x12,0x55,0x36,0x90,0x92,0x28,0xe0,0x22,0x90,0x86,0x72, 0xe0,0xc4,0x13,0x13,0x22,0x12,0x7b,0x3e,0x90,0x01,0x01,0xe0,0x22,0x90,0x84,0xa1, 0x74,0x02,0xf0,0xa3,0x74,0x10,0xf0,0x22,0xf5,0x83,0xe0,0x7a,0x00,0x24,0x00,0xff, 0xea,0x3e,0x22,0x90,0x01,0x94,0xe0,0x44,0x01,0xf0,0x90,0x01,0xc7,0xe4,0xf0,0x22, 0x90,0x92,0x4b,0xef,0xf0,0x90,0x84,0xc5,0xe0,0x64,0x02,0x70,0x22,0x90,0x92,0x4b, 0xe0,0xfd,0x64,0x01,0x70,0x35,0xb1,0x56,0x90,0x86,0x76,0xe0,0x12,0x8d,0x0e,0x30, 0xe0,0x09,0x90,0x01,0x4d,0xe0,0x64,0x80,0xf0,0x80,0x20,0xaf,0x05,0x80,0x19,0x90, 0x01,0x00,0x74,0xff,0xf0,0x7f,0x64,0x7e,0x00,0x12,0x7c,0x9f,0x90,0x06,0x90,0xe0, 0x44,0x01,0xf0,0x90,0x92,0x4b,0xe0,0xff,0x12,0x2a,0x87,0x90,0x88,0xe1,0xe0,0x54, 0xfe,0xf0,0x02,0x97,0xbb,0x7b,0xff,0x7a,0x83,0x79,0x09,0x90,0x89,0x1b,0x12,0x87, 0x6b,0x7a,0x82,0x79,0x00,0x90,0x89,0x1e,0x12,0x87,0x6b,0x7a,0x82,0x79,0x3f,0x90, 0x89,0x21,0x12,0x87,0x6b,0x7a,0x82,0x79,0xe1,0x90,0x89,0x27,0x12,0x87,0x6b,0x7a, 0x83,0x79,0x1d,0x90,0x89,0x2a,0x12,0x87,0x6b,0x7a,0x83,0x79,0x45,0x90,0x89,0x2d, 0x12,0x87,0x6b,0x7a,0x83,0x79,0x59,0x90,0x89,0x33,0x12,0x87,0x6b,0x7a,0x83,0x79, 0x6d,0x90,0x89,0x36,0x12,0x87,0x6b,0x7a,0x83,0x79,0x95,0x90,0x89,0x39,0x02,0x87, 0x6b,0x7d,0x02,0x90,0x01,0xc4,0x74,0x71,0xf0,0x74,0xa7,0xa3,0xf0,0x90,0x92,0x7f, 0xe0,0xff,0xed,0xc3,0x9f,0x50,0x15,0xed,0x25,0xe0,0x24,0x81,0xf8,0xe6,0x30,0xe4, 0x08,0x12,0x9f,0xe5,0xa3,0xf0,0x7f,0x00,0x22,0x0d,0x80,0xe1,0x7f,0x01,0x22,0xe4, 0x90,0x92,0x21,0xf0,0xa3,0xf0,0xa3,0xf0,0x90,0x92,0x21,0xe0,0x64,0x01,0xf0,0x24, 0x9f,0x90,0x01,0xc4,0xf0,0x74,0xa7,0xa3,0xf0,0x12,0x7c,0x66,0xbf,0x01,0x03,0x12, 0x5b,0x25,0x90,0x85,0xc5,0xe0,0x60,0x0f,0x90,0x85,0xc8,0xe0,0xff,0x90,0x85,0xc7, 0xe0,0x6f,0x60,0x03,0x12,0xac,0x6b,0xc2,0xaf,0xf1,0x71,0xbf,0x01,0x03,0x12,0xb2, 0xa2,0xd2,0xaf,0x90,0x92,0x22,0x12,0x99,0xdd,0x54,0x7f,0x45,0xf0,0x70,0x0d,0x7f, 0xff,0x12,0x7b,0x51,0xef,0x04,0xfd,0x7f,0xff,0x12,0x7b,0x3e,0x12,0x8f,0xf4,0x12, 0x84,0x4d,0x80,0xa4,0x32,0xc0,0xe0,0xc0,0xf0,0xc0,0x83,0xc0,0x82,0xc0,0xd0,0x75, 0xd0,0x00,0xc0,0x00,0xc0,0x01,0xc0,0x02,0xc0,0x03,0xc0,0x04,0xc0,0x05,0xc0,0x06, 0xc0,0x07,0x90,0x01,0xc4,0x74,0x05,0xf0,0x74,0xa8,0xa3,0xf0,0x12,0x6c,0xbc,0xe5, 0x47,0x30,0xe7,0x02,0x11,0x5c,0x74,0x05,0x04,0x90,0x01,0xc4,0xf0,0x74,0xa8,0xa3, 0xf0,0xd0,0x07,0xd0,0x06,0xd0,0x05,0xd0,0x04,0xd0,0x03,0xd0,0x02,0xd0,0x01,0xd0, 0x00,0xd0,0xd0,0xd0,0x82,0xd0,0x83,0xd0,0xf0,0xd0,0xe0,0x32,0x7f,0x01,0x7e,0x00, 0x12,0x7a,0x72,0x7f,0xf2,0x12,0x7b,0x51,0xef,0x20,0xe6,0x0e,0x7f,0x05,0x12,0x7b, 0x51,0xef,0x44,0x80,0xfd,0x7f,0x05,0x12,0x7b,0x3e,0x22,0xc0,0xe0,0xc0,0xf0,0xc0, 0x83,0xc0,0x82,0xc0,0xd0,0x75,0xd0,0x00,0xc0,0x00,0xc0,0x01,0xc0,0x02,0xc0,0x03, 0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0,0x07,0x90,0x01,0xc4,0x74,0x7b,0xf0,0x74,0xa8, 0xa3,0xf0,0x12,0x71,0x90,0xe5,0x4c,0x30,0xe1,0x02,0xf1,0x2b,0xe5,0x4c,0x30,0xe3, 0x03,0x12,0xb0,0xba,0xe5,0x4c,0x30,0xe4,0x02,0xf1,0xb4,0xe5,0x4c,0x30,0xe5,0x03, 0x12,0xb0,0xc7,0xe5,0x4e,0x30,0xe0,0x02,0x31,0x31,0xe5,0x4e,0x30,0xe1,0x03,0x12, 0x98,0x78,0xe5,0x4e,0x30,0xe2,0x02,0xd1,0xac,0xe5,0x4e,0x30,0xe3,0x02,0x91,0x15, 0xe5,0x4e,0x30,0xe4,0x02,0x91,0x3e,0xe5,0x4e,0x30,0xe5,0x03,0x12,0xb0,0x1b,0xe5, 0x4e,0x30,0xe6,0x02,0x91,0x74,0xe5,0x4f,0x30,0xe1,0x02,0xf1,0xd5,0xe5,0x4f,0x30, 0xe4,0x02,0xf1,0x30,0xe5,0x4f,0x30,0xe5,0x02,0xf1,0x28,0x74,0x7b,0x04,0x90,0x01, 0xc4,0xf0,0x74,0xa8,0xa3,0xf0,0xd0,0x07,0xd0,0x06,0xd0,0x05,0xd0,0x04,0xd0,0x03, 0xd0,0x02,0xd0,0x01,0xd0,0x00,0xd0,0xd0,0xd0,0x82,0xd0,0x83,0xd0,0xf0,0xd0,0xe0, 0x32,0xe4,0xf5,0x72,0x90,0x85,0xc5,0xe0,0x70,0x02,0x21,0xd1,0x91,0x0e,0x64,0x01, 0x60,0x02,0x21,0xd1,0x71,0x6b,0x12,0x87,0x3d,0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0, 0x07,0x90,0x05,0x62,0x71,0x84,0x78,0x10,0x12,0x04,0xd8,0xd0,0x03,0xd0,0x02,0xd0, 0x01,0xd0,0x00,0x12,0x87,0x3d,0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0,0x07,0xa3,0x71, 0x84,0x78,0x18,0x12,0x04,0xd8,0xd0,0x03,0xd0,0x02,0xd0,0x01,0xd0,0x00,0x91,0x62, 0xf1,0xbc,0x60,0x1e,0x24,0xfe,0x60,0x03,0x04,0x70,0x1a,0xd1,0xe3,0xe0,0xff,0x60, 0x06,0x90,0x85,0xce,0xe0,0x60,0x0e,0xef,0x70,0x08,0x90,0x85,0xcb,0xe0,0xa3,0xf0, 0x80,0x00,0x75,0x72,0x01,0xe5,0x72,0x60,0x28,0x91,0x5a,0x90,0x85,0xce,0xe0,0x60, 0x03,0xb4,0x01,0x04,0x91,0x04,0x80,0x08,0x91,0x04,0x75,0xf0,0x03,0xa4,0x24,0xfe, 0xff,0x90,0x85,0xcd,0xe0,0x2f,0x91,0x30,0x90,0x85,0xc8,0xe0,0x20,0xe2,0x02,0x31, 0xd2,0x22,0x7d,0x01,0x7f,0x04,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x90,0x92,0x9e, 0xed,0xf0,0x90,0x85,0xc1,0xe0,0xfe,0xc4,0x13,0x13,0x54,0x03,0x30,0xe0,0x02,0x61, 0x30,0xee,0x12,0x8d,0x0e,0x30,0xe0,0x02,0x61,0x30,0x90,0x85,0xc8,0xe0,0xfe,0x6f, 0x70,0x02,0x61,0x30,0xef,0x70,0x02,0x41,0x9c,0x24,0xfe,0x70,0x02,0x41,0xd8,0x24, 0xfe,0x60,0x4d,0x24,0xfc,0x70,0x02,0x61,0x17,0x24,0xfc,0x60,0x02,0x61,0x29,0xee, 0xb4,0x0e,0x03,0x12,0x74,0x93,0x90,0x85,0xc8,0xe0,0x70,0x05,0x7f,0x01,0x12,0x79, 0x80,0x90,0x85,0xc8,0xe0,0xb4,0x06,0x03,0x12,0x73,0x8e,0x90,0x85,0xc8,0xe0,0xb4, 0x04,0x0f,0x90,0x92,0x9e,0xe0,0xff,0x60,0x05,0x12,0x6d,0x4c,0x80,0x03,0x12,0x79, 0x61,0x90,0x85,0xc8,0xe0,0x64,0x08,0x60,0x02,0x61,0x29,0x12,0x7a,0xb9,0x61,0x29, 0x90,0x85,0xc8,0xe0,0x70,0x05,0x7f,0x01,0x12,0x79,0x80,0x90,0x85,0xc8,0xe0,0xb4, 0x06,0x03,0x12,0x73,0x8e,0x90,0x85,0xc8,0xe0,0xb4,0x0e,0x08,0x71,0x35,0xbf,0x01, 0x03,0x12,0x74,0x93,0x90,0x85,0xc8,0xe0,0x64,0x0c,0x60,0x02,0x61,0x29,0x71,0x35, 0xef,0x64,0x01,0x60,0x02,0x61,0x29,0x12,0x70,0x9e,0x61,0x29,0x90,0x85,0xc8,0xe0, 0xb4,0x0e,0x08,0x71,0x35,0xbf,0x01,0x03,0x12,0x74,0x93,0x90,0x85,0xc8,0xe0,0xb4, 0x06,0x03,0x12,0x73,0x8e,0x90,0x85,0xc8,0xe0,0xb4,0x0c,0x08,0x71,0x35,0xbf,0x01, 0x03,0x12,0x70,0x9e,0x90,0x85,0xc8,0xe0,0x64,0x04,0x70,0x5d,0xf1,0x3c,0xef,0x64, 0x01,0x70,0x56,0x12,0x77,0xfe,0x80,0x51,0x90,0x85,0xc8,0xe0,0xb4,0x0e,0x08,0x71, 0x35,0xbf,0x01,0x03,0x12,0x74,0x93,0x90,0x85,0xc8,0xe0,0xb4,0x06,0x03,0x12,0x73, 0x8e,0x90,0x85,0xc8,0xe0,0xb4,0x0c,0x08,0x71,0x35,0xbf,0x01,0x03,0x12,0x70,0x9e, 0x90,0x85,0xc8,0xe0,0x70,0x05,0x7f,0x01,0x12,0x79,0x80,0x90,0x85,0xc8,0xe0,0xb4, 0x04,0x17,0x12,0x79,0xf3,0x80,0x12,0x90,0x85,0xc8,0xe0,0xb4,0x0c,0x0b,0x12,0x8f, 0xaf,0x54,0x3f,0x30,0xe0,0x03,0x12,0x7a,0x8a,0x90,0x85,0xc8,0x12,0xb3,0x8a,0xf0, 0xd0,0xd0,0x92,0xaf,0x22,0x12,0x7a,0x29,0xef,0x64,0x01,0x60,0x04,0xf1,0x35,0x80, 0x21,0x90,0x85,0xc1,0xe0,0x13,0x13,0x13,0x54,0x1f,0x30,0xe0,0x05,0x12,0x9f,0xec, 0x80,0x10,0x90,0x85,0xc7,0xe0,0xd3,0x94,0x04,0x40,0x05,0x12,0x9f,0xe5,0x80,0x02, 0xe1,0xac,0x90,0x01,0xb9,0x74,0x02,0xf0,0x7f,0x00,0x22,0x90,0x05,0x61,0xe0,0xff, 0xe4,0xfc,0xfd,0xfe,0x78,0x08,0x12,0x04,0xd8,0xa8,0x04,0xa9,0x05,0xaa,0x06,0xab, 0x07,0x90,0x05,0x60,0xe0,0xff,0xe4,0xfc,0xfd,0xfe,0x22,0xe4,0x90,0x92,0x47,0xf0, 0x90,0x85,0xc5,0xe0,0x60,0x6d,0x91,0x0e,0x64,0x01,0x70,0x67,0x90,0x85,0xcb,0xe0, 0x90,0x05,0x73,0xf0,0x71,0x6b,0x12,0x87,0x3d,0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0, 0x07,0x90,0x05,0x62,0x71,0x84,0x78,0x10,0x12,0x04,0xd8,0xd0,0x03,0xd0,0x02,0xd0, 0x01,0xd0,0x00,0x12,0x87,0x3d,0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0,0x07,0xa3,0x71, 0x84,0x78,0x18,0x12,0x04,0xd8,0xd0,0x03,0xd0,0x02,0xd0,0x01,0xd0,0x00,0x91,0x62, 0x90,0x92,0x47,0x74,0x01,0xf0,0xe4,0x90,0x85,0xcc,0xf0,0x04,0x60,0x15,0x91,0x5a, 0xe4,0x90,0x91,0x6e,0xf0,0x90,0x85,0xcd,0x91,0x2f,0x90,0x85,0xc8,0xe0,0x20,0xe2, 0x02,0x31,0xd2,0x22,0xe4,0x90,0x91,0x6e,0xf0,0x90,0x85,0xce,0xe0,0x22,0xe4,0xff, 0x12,0x77,0x39,0xef,0x22,0x91,0x0e,0x64,0x01,0x70,0x0a,0x90,0x85,0xc5,0xe0,0x60, 0x04,0xb1,0x6b,0x91,0x26,0x22,0xf0,0xe4,0x90,0x91,0x6e,0xf0,0x90,0x86,0x6e,0xe0, 0x90,0x91,0x6f,0xf0,0xe4,0xfb,0xfd,0x7f,0x54,0x7e,0x01,0x02,0x61,0x41,0x91,0x0e, 0x64,0x01,0x70,0x15,0x90,0x85,0xc5,0xe0,0x60,0x0f,0xb1,0x6b,0xf0,0x90,0x85,0xc1, 0xe0,0xb1,0x76,0x54,0x07,0x70,0x02,0x91,0x6b,0x22,0x90,0x85,0xc9,0xe0,0x44,0x10, 0xf0,0x22,0x12,0x87,0x3d,0x90,0x86,0x02,0x02,0x04,0xeb,0x90,0x85,0xc7,0xe0,0xff, 0x7d,0x01,0x21,0xd6,0xe4,0xff,0x12,0x77,0x39,0xbf,0x01,0x0e,0x90,0x85,0xc5,0xe0, 0x60,0x08,0x91,0xdf,0x54,0x07,0x70,0x02,0x91,0x6b,0x22,0xe4,0xf5,0x72,0x90,0x06, 0xa9,0xe0,0xf5,0x72,0x54,0xc0,0x70,0x07,0x91,0xdf,0x54,0xfd,0xf0,0x80,0xcc,0xe5, 0x72,0x30,0xe6,0x1f,0x90,0x85,0xc5,0xe0,0x64,0x01,0x70,0x19,0x90,0x85,0xc9,0xe0, 0x44,0x01,0x12,0x8c,0xec,0x64,0x02,0x60,0x05,0x12,0x77,0x61,0x80,0x07,0x12,0x79, 0x41,0x80,0x02,0x91,0xdf,0xe5,0x72,0x90,0x85,0xc9,0x30,0xe7,0x0d,0xe0,0x44,0x02, 0x91,0x26,0x90,0x85,0xc1,0xe0,0x44,0x04,0xf0,0x22,0xe0,0x54,0xfd,0xf0,0x22,0x90, 0x85,0xc9,0xe0,0x54,0xfe,0xf0,0x22,0x12,0x8f,0xaf,0x13,0x54,0x1f,0x30,0xe0,0x10, 0xef,0xc4,0x13,0x13,0x54,0x03,0x30,0xe0,0x07,0x7d,0x02,0x7f,0x02,0x12,0x7c,0x41, 0x90,0x85,0xc1,0xe0,0xff,0x13,0x13,0x54,0x3f,0x30,0xe0,0x09,0xef,0xb1,0x76,0x54, 0x07,0x70,0x4f,0x80,0x4b,0x90,0x85,0xce,0xe0,0x04,0xf0,0x90,0x85,0xc9,0xe0,0x54, 0xef,0xf0,0x90,0x86,0x6d,0xe0,0xff,0x90,0x85,0xce,0xe0,0xd3,0x9f,0x40,0x31,0x91, 0x0e,0x64,0x01,0x70,0x2d,0x12,0x8c,0xed,0x70,0x05,0x12,0x70,0xdb,0x80,0x24,0x12, 0x70,0xdb,0x90,0x85,0xcf,0xe0,0x04,0xf0,0xe0,0xd3,0x94,0x02,0x40,0x09,0xb1,0x63, 0xe4,0x90,0x85,0xcf,0xf0,0x80,0x03,0x12,0x79,0x41,0xe4,0x90,0x85,0xce,0xf0,0x22, 0x91,0x6b,0x22,0x90,0x85,0xc2,0xe0,0x54,0xfb,0xf0,0x22,0x90,0x01,0x57,0xe4,0xf0, 0x90,0x01,0x3c,0x74,0x02,0x22,0x54,0xfb,0xf0,0x90,0x85,0xc9,0xe0,0x54,0xfd,0xf0, 0x22,0x71,0x8b,0x12,0xb3,0x97,0x12,0x8f,0x92,0x90,0x92,0x7b,0xe0,0x30,0xe0,0x14, 0xf1,0xcc,0x90,0x92,0x7e,0xe0,0x60,0x05,0x14,0xf0,0x02,0x7a,0x8a,0xf1,0xdf,0xe4, 0xff,0x12,0x8b,0xf3,0x22,0x90,0x85,0xc5,0xe0,0x60,0x0e,0x90,0x06,0x92,0xe0,0x30, 0xe1,0x03,0x02,0x6b,0x98,0xf1,0xc4,0x91,0x6b,0x22,0x90,0x85,0xc1,0x12,0x96,0xca, 0x30,0xe0,0x18,0xef,0x54,0xbf,0xd1,0x8f,0x30,0xe0,0x06,0xe0,0x44,0x01,0xf0,0x80, 0x08,0xe0,0x54,0xfe,0xd1,0xa1,0x74,0x04,0xf0,0x91,0x6b,0xe4,0xff,0x02,0x68,0x8f, 0xc0,0xe0,0xc0,0xf0,0xc0,0x83,0xc0,0x82,0xc0,0xd0,0x75,0xd0,0x00,0xc0,0x00,0xc0, 0x01,0xc0,0x02,0xc0,0x03,0xc0,0x04,0xc0,0x05,0xc0,0x06,0xc0,0x07,0x90,0x01,0xc4, 0x74,0xe0,0xf0,0x74,0xad,0xa3,0xf0,0x12,0x75,0x28,0xe5,0x56,0x30,0xe1,0x02,0xd1, 0x98,0xe5,0x56,0x30,0xe2,0x02,0xb1,0xa5,0xe5,0x57,0x30,0xe0,0x02,0xd1,0xea,0xe5, 0x59,0x30,0xe1,0x05,0x7f,0x04,0x12,0x98,0x69,0xe5,0x59,0x30,0xe4,0x02,0xb1,0x81, 0xe5,0x59,0x30,0xe5,0x02,0xb1,0xba,0xe5,0x59,0x30,0xe6,0x02,0xd1,0x64,0x74,0xe0, 0x04,0x90,0x01,0xc4,0xf0,0x74,0xad,0xa3,0xf0,0xd0,0x07,0xd0,0x06,0xd0,0x05,0xd0, 0x04,0xd0,0x03,0xd0,0x02,0xd0,0x01,0xd0,0x00,0xd0,0xd0,0xd0,0x82,0xd0,0x83,0xd0, 0xf0,0xd0,0xe0,0x32,0x90,0x85,0xc1,0x12,0x8d,0x0c,0x30,0xe0,0x1d,0xef,0x54,0x7f, 0xd1,0x8f,0x30,0xe1,0x06,0xe0,0x44,0x02,0xf0,0x80,0x07,0xe0,0x54,0xfd,0xd1,0xa1, 0x04,0xf0,0x90,0x85,0xc5,0xe0,0x60,0x02,0x91,0x6b,0x7f,0x01,0x02,0x68,0x8f,0xf0, 0x90,0x04,0xe0,0xe0,0x90,0x85,0xc2,0x22,0x90,0x85,0xc5,0xe0,0x60,0x02,0x91,0xe7, 0x22,0xf0,0x90,0x01,0xb9,0x74,0x01,0xf0,0x90,0x01,0xb8,0x22,0x90,0x88,0xe7,0xe0, 0x04,0xf0,0x90,0x85,0xc8,0xe0,0x64,0x02,0x60,0x28,0x12,0x8e,0xc1,0x90,0x85,0xc2, 0xe0,0x13,0x13,0x13,0x54,0x1f,0x30,0xe0,0x13,0x12,0x8f,0xb7,0x6f,0x70,0x0d,0xef, 0x14,0x12,0x8c,0x35,0x12,0x7b,0xfd,0x12,0x8f,0xf6,0xd1,0xe3,0x90,0x01,0xe6,0xe0, 0x04,0xf0,0x22,0x90,0x85,0xcc,0xe0,0x14,0xf0,0x22,0x12,0xb2,0x3c,0x90,0x92,0x47, 0xef,0xf0,0x30,0xe0,0x05,0x7d,0x01,0xe4,0x80,0x02,0xe4,0xfd,0xff,0x12,0x57,0x82, 0x90,0x92,0x47,0xe0,0x30,0xe6,0x11,0x90,0x01,0x2f,0xe0,0x30,0xe7,0x04,0xe4,0xf0, 0x80,0x06,0x90,0x01,0x2f,0x74,0x80,0xf0,0x90,0x85,0xd7,0xe0,0xff,0xa3,0xe0,0xfd, 0x90,0x85,0xde,0xe0,0xfb,0x02,0x51,0x7d,0x02,0x4d,0x6e,0xe4,0xff,0x02,0x97,0xee, 0xe4,0xff,0x02,0x2d,0xbd,0x90,0x01,0xb8,0x74,0x01,0xf0,0x22,0x12,0x7a,0x29,0xef, 0x64,0x01,0x60,0x04,0xf1,0x35,0x80,0x5b,0x90,0x85,0xc9,0xe0,0xff,0x54,0x03,0x60, 0x05,0x12,0x9f,0xec,0x80,0x4d,0x90,0x85,0xc7,0xe0,0xfe,0xe4,0xc3,0x9e,0x50,0x08, 0x90,0x01,0xb8,0x74,0x04,0xf0,0x80,0x3b,0xef,0x30,0xe2,0x05,0x12,0x9f,0xe5,0x80, 0x32,0x90,0x85,0xc9,0xe0,0x30,0xe4,0x08,0x90,0x01,0xb8,0x74,0x10,0xf0,0x80,0x23, 0x90,0x85,0xc2,0xe0,0x13,0x13,0x54,0x3f,0x20,0xe0,0x08,0x90,0x01,0xb8,0x74,0x20, 0xf0,0x80,0x10,0x90,0x86,0x71,0xe0,0x60,0x08,0x90,0x01,0xb8,0x74,0x80,0xf0,0x80, 0x02,0x80,0x09,0x90,0x01,0xb9,0x74,0x04,0xf0,0x7f,0x00,0x22,0x90,0x01,0xb8,0xe4, 0xf0,0x7f,0x01,0x22,0x12,0x40,0xb9,0x7f,0x02,0x02,0x98,0x69,0x90,0x85,0xc3,0xe0, 0xc4,0x54,0x0f,0x22,0x90,0x85,0xc1,0xe0,0x54,0xf7,0xf0,0x22,0x90,0x92,0x7d,0xe0, 0x90,0x05,0x73,0xf0,0x22,0x90,0x85,0xc5,0xe0,0x60,0x03,0x12,0x9e,0xc4,0x22,0x90, 0x92,0x7c,0xe0,0x14,0x90,0x92,0x7e,0xf0,0x22,0x32,0xc0,0xe0,0xc0,0x83,0xc0,0x82, 0xc0,0xd0,0x75,0xd0,0x00,0xc0,0x05,0xc0,0x07,0x7d,0xea,0x90,0x01,0xc4,0xed,0xf0, 0x74,0xaf,0xff,0xa3,0xf0,0xed,0x04,0x90,0x01,0xc4,0xf0,0xa3,0xef,0xf0,0xd0,0x07, 0xd0,0x05,0xd0,0xd0,0xd0,0x82,0xd0,0x83,0xd0,0xe0,0x32,0xe4,0xff,0x12,0x77,0x39, 0xbf,0x01,0x13,0x90,0x85,0xc5,0xe0,0x60,0x0d,0x12,0x8c,0xed,0x64,0x02,0x60,0x03, 0x02,0x77,0x61,0x12,0x79,0x41,0x22,0xe4,0x90,0x92,0x98,0xf0,0xa3,0xf0,0x90,0x05, 0xf8,0xe0,0x70,0x0f,0xa3,0xe0,0x70,0x0b,0xa3,0xe0,0x70,0x07,0xa3,0xe0,0x70,0x03, 0x7f,0x01,0x22,0xd3,0x90,0x92,0x99,0xe0,0x94,0xe8,0x90,0x92,0x98,0xe0,0x94,0x03, 0x40,0x0a,0x90,0x01,0xc0,0xe0,0x44,0x20,0xf0,0x7f,0x00,0x22,0x7f,0x32,0x7e,0x00, 0x12,0x7c,0x9f,0x90,0x92,0x98,0x12,0x99,0xdd,0x80,0xc3,0xef,0x60,0x0a,0xed,0xd3, 0x94,0x0b,0x40,0x04,0x7e,0x20,0x80,0x02,0xe4,0xfe,0xed,0x2e,0xff,0x22,0x90,0x92, 0x8d,0x12,0x87,0x6b,0xe4,0xff,0x90,0x92,0x8d,0x12,0x87,0x62,0x8f,0x82,0x75,0x83, 0x00,0x12,0x03,0x0f,0xfe,0x74,0xf0,0x2f,0x11,0xb2,0xee,0xf0,0x0f,0xef,0xb4,0x10, 0xe5,0x22,0xf5,0x82,0xe4,0x34,0x02,0xf5,0x83,0x22,0x90,0x86,0x72,0xe0,0x30,0xe0, 0x05,0x7f,0x10,0x12,0x98,0x69,0x22,0x90,0x01,0xcf,0xe0,0x90,0x92,0x36,0xf0,0xe0, 0xff,0x30,0xe0,0x07,0x90,0x01,0xcf,0xe0,0x54,0xfe,0xf0,0xef,0x30,0xe5,0x23,0x90, 0x01,0xcf,0xe0,0x54,0xdf,0xf0,0x90,0x01,0x34,0x74,0x20,0xf0,0xe4,0xf5,0xa8,0xf5, 0xe8,0x12,0x75,0xb6,0x90,0x00,0x03,0xe0,0x54,0xfb,0xfd,0x7f,0x03,0x12,0x7b,0x3e, 0x80,0xfe,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x90,0x04,0x1d,0xe0,0x60,0x1a, 0x90,0x05,0x22,0xe0,0x54,0x90,0x60,0x07,0x90,0x01,0xc0,0xe0,0x44,0x08,0xf0,0x90, 0x01,0xc6,0xe0,0x30,0xe1,0xe4,0x7f,0x00,0x80,0x02,0x7f,0x01,0xd0,0xd0,0x92,0xaf, 0x22,0xc3,0xee,0x94,0x01,0x40,0x0a,0x0d,0xed,0x13,0x90,0xfd,0x10,0xf0,0xe4,0x2f, 0xff,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0x90,0x92,0x65,0xee,0xf0,0xa3,0xef, 0xf0,0x12,0x70,0x61,0x90,0x92,0x6f,0x12,0x04,0xeb,0x90,0x92,0x67,0x12,0x87,0x4a, 0x12,0x04,0xa7,0x90,0x92,0x6f,0x12,0x87,0x56,0x12,0x87,0x30,0xc0,0x04,0xc0,0x05, 0xc0,0x06,0xc0,0x07,0x90,0x92,0x67,0x12,0x87,0x4a,0x90,0x92,0x6b,0x12,0x87,0x56, 0x12,0x87,0x30,0xd0,0x03,0xd0,0x02,0xd0,0x01,0xd0,0x00,0x12,0x87,0x3d,0x90,0x92, 0x73,0x12,0x04,0xeb,0x90,0x92,0x73,0x12,0x87,0x4a,0x90,0x91,0x66,0x12,0x04,0xeb, 0x90,0x92,0x65,0xe0,0xfe,0xa3,0xe0,0xff,0x12,0x71,0x18,0xd0,0xd0,0x92,0xaf,0x22, 0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0,0xe4,0xfe,0xef,0x54,0xe0,0xc4,0x13,0x54,0x07, 0xfd,0xef,0x54,0x1f,0xff,0xed,0x60,0x2c,0x14,0x60,0x1e,0x24,0xfd,0x60,0x0f,0x24, 0xfe,0x70,0x2a,0xef,0x25,0xe0,0xff,0xc3,0x74,0xde,0x9f,0xfe,0x80,0x1f,0xef,0x25, 0xe0,0xff,0xc3,0x74,0xf2,0x9f,0xfe,0x80,0x14,0xef,0x25,0xe0,0xff,0xc3,0x74,0x06, 0x9f,0xfe,0x80,0x09,0xef,0x25,0xe0,0xff,0xc3,0x74,0x10,0x9f,0xfe,0xaf,0x06,0xd0, 0xd0,0x92,0xaf,0x22,0xd3,0xef,0x64,0x80,0x94,0x1c,0x40,0x07,0xef,0x64,0x80,0x94, 0x94,0x40,0x03,0x7f,0x00,0x22,0xc3,0xef,0x64,0x80,0x94,0x80,0x40,0x03,0x7f,0x64, 0x22,0xef,0x24,0x64,0xff,0x22,0xef,0x90,0x02,0x86,0x60,0x06,0xe0,0x44,0x04,0xf0, 0x80,0x04,0xe0,0x54,0xfb,0xf0,0x90,0x92,0x78,0xed,0xf0,0x22,0xe4,0x90,0x92,0x48, 0xf0,0xa3,0xf0,0xa3,0xf0,0x7f,0x83,0x12,0x7b,0x51,0x90,0x92,0x48,0xef,0xf0,0x7f, 0x83,0x12,0x7b,0x51,0xae,0x07,0x90,0x92,0x48,0xe0,0xff,0xb5,0x06,0x01,0x22,0xc3, 0x90,0x92,0x4a,0xe0,0x94,0x64,0x90,0x92,0x49,0xe0,0x94,0x00,0x40,0x0d,0x90,0x01, 0xc0,0xe0,0x44,0x40,0xf0,0x90,0x92,0x48,0xe0,0xff,0x22,0x90,0x92,0x49,0x12,0x99, 0xdd,0x80,0xc2,0x90,0x01,0xc4,0x74,0x83,0xf0,0x74,0xb2,0xa3,0xf0,0x7f,0x90,0x12, 0x7b,0x51,0xef,0x20,0xe0,0xf7,0x74,0x83,0x04,0x90,0x01,0xc4,0xf0,0x74,0xb2,0xa3, 0xf0,0x22,0x90,0x85,0xc1,0xe0,0x30,0xe0,0x03,0x12,0x9b,0x4e,0x22,0x90,0x92,0x7b, 0xe0,0x30,0xe0,0x0a,0x90,0x01,0x3b,0xe0,0x30,0xe4,0x03,0x12,0x8f,0xf6,0x22,0x90, 0x92,0x4c,0xee,0xf0,0xa3,0xef,0xf0,0xe4,0x90,0x92,0x50,0xf0,0x7d,0x09,0x12,0x55, 0x36,0xef,0x64,0x06,0x70,0x2a,0x71,0x60,0x7d,0x14,0x12,0x55,0x36,0xef,0x70,0x20, 0x71,0x60,0x7d,0x15,0x12,0x55,0x36,0xef,0x64,0x50,0x70,0x14,0x71,0x60,0x7d,0x21, 0x12,0x55,0x36,0xef,0x20,0xe0,0x03,0x30,0xe2,0x06,0x90,0x92,0x50,0x74,0x01,0xf0, 0x90,0x86,0x73,0xe0,0x13,0x13,0x54,0x3f,0x30,0xe0,0x3f,0x71,0x60,0x7d,0x09,0x12, 0x55,0x36,0xef,0x64,0x11,0x70,0x33,0x90,0x92,0x4d,0xe0,0x24,0x14,0xff,0x90,0x92, 0x4c,0xe0,0x34,0x00,0xfe,0x90,0x92,0x4e,0xf0,0xa3,0xef,0xf0,0x7d,0x02,0x12,0x55, 0x36,0xef,0x70,0x16,0x90,0x92,0x4e,0xe0,0xfe,0xa3,0xe0,0xff,0x7d,0x03,0x12,0x55, 0x36,0xbf,0x89,0x06,0x90,0x92,0x50,0x74,0x01,0xf0,0x90,0x92,0x50,0xe0,0xff,0x90, 0x84,0xbf,0xa3,0xe0,0x24,0x7f,0xf5,0x82,0xe4,0x34,0x82,0xf5,0x83,0xef,0xf0,0x22, 0x90,0x92,0x4c,0xe0,0xfe,0xa3,0xe0,0xff,0x22,0xd3,0x10,0xaf,0x01,0xc3,0xc0,0xd0, 0xe4,0xfd,0x7f,0x8f,0x12,0x7b,0x3e,0xd0,0xd0,0x92,0xaf,0x22,0x90,0x05,0x62,0xe0, 0xfe,0x90,0x05,0x61,0xe0,0xfd,0xed,0x78,0x02,0x22,0xe0,0x90,0x01,0xba,0xf0,0x90, 0x85,0xc7,0xe0,0x90,0x01,0xbb,0x22,0x90,0x85,0xcb,0xe0,0x14,0x90,0x05,0x73,0xf0, 0x22,0x90,0x92,0x36,0xee,0xf0,0xa3,0xef,0xf0,0x22,0x6b,0x7c,}; u4Byte <API key> = 13260; void <API key>( IN PDM_ODM_T pDM_Odm, OUT u1Byte *pFirmware, OUT u4Byte *pFirmwareSize ) { #if (DM_ODM_SUPPORT_TYPE & (ODM_CE)) *((SIZE_PTR *)pFirmware) = (SIZE_PTR)<API key>; #else ODM_MoveMemory(pDM_Odm, pFirmware, <API key>, <API key>); #endif *pFirmwareSize = <API key>; } #endif // end of HWIMG_SUPPORT
/** * @file: Popup dialog interfaces for the media project. * * Drupal.media.popups.mediaBrowser * Launches the media browser which allows users to pick a piece of media. * * Drupal.media.popups.mediaStyleSelector * Launches the style selection form where the user can choose * what format / style they want their media in. * */ (function ($) { namespace('Drupal.media.popups'); /** * Media browser popup. Creates a media browser dialog. * * @param {function} * onSelect Callback for when dialog is closed, received (Array * media, Object extra); * @param {Object} * globalOptions Global options that will get passed upon initialization of the browser. * @see Drupal.media.popups.mediaBrowser.getDefaults(); * * @param {Object} * pluginOptions Options for specific plugins. These are passed * to the plugin upon initialization. If a function is passed here as * a callback, it is obviously not passed, but is accessible to the plugin * in Drupal.settings.variables. * * Example * pluginOptions = {library: {<API key>:'/foo/bar'}}; * * @param {Object} * widgetOptions Options controlling the appearance and behavior of the * modal dialog. * @see Drupal.media.popups.mediaBrowser.getDefaults(); */ Drupal.media.popups.mediaBrowser = function (onSelect, globalOptions, pluginOptions, widgetOptions) { var options = Drupal.media.popups.mediaBrowser.getDefaults(); options.global = $.extend({}, options.global, globalOptions); options.plugins = pluginOptions; options.widget = $.extend({}, options.widget, widgetOptions); // Create it as a modal window. var browserSrc = options.widget.src; if ($.isArray(browserSrc) && browserSrc.length) { browserSrc = browserSrc[browserSrc.length - 1]; } // Params to send along to the iframe. WIP. var params = {}; $.extend(params, options.global); params.plugins = options.plugins; browserSrc += '&' + $.param(params); var mediaIframe = Drupal.media.popups.getPopupIframe(browserSrc, 'mediaBrowser'); // Attach the onLoad event mediaIframe.bind('load', options, options.widget.onLoad); /** * Setting up the modal dialog */ var ok = 'OK'; var cancel = 'Cancel'; var notSelected = 'You have not selected anything!'; if (Drupal && Drupal.t) { ok = Drupal.t(ok); cancel = Drupal.t(cancel); notSelected = Drupal.t(notSelected); } // @todo: let some options come through here. Currently can't be changed. var dialogOptions = options.dialog; dialogOptions.buttons[ok] = function () { var selected = this.contentWindow.Drupal.media.browser.selectedMedia; if (selected.length < 1) { alert(notSelected); return; } onSelect(selected); $(this).dialog("destroy"); }; dialogOptions.buttons[cancel] = function () { $(this).dialog("destroy"); }; Drupal.media.popups.setDialogPadding(mediaIframe.dialog(dialogOptions)); // Remove the title bar. mediaIframe.parents(".ui-dialog").find(".ui-dialog-titlebar").remove(); Drupal.media.popups.overlayDisplace(mediaIframe.parents(".ui-dialog")); return mediaIframe; }; Drupal.media.popups.mediaBrowser.mediaBrowserOnLoad = function (e) { var options = e.data; if (this.contentWindow.Drupal.media == undefined) return; if (this.contentWindow.Drupal.media.browser.selectedMedia.length > 0) { var ok = (Drupal && Drupal.t) ? Drupal.t('OK') : 'OK'; var ok_func = $(this).dialog('option', 'buttons')[ok]; ok_func.call(this); return; } }; Drupal.media.popups.mediaBrowser.getDefaults = function () { return { global: { types: [], // Types to allow, defaults to all. activePlugins: [] // If provided, a list of plugins which should be enabled. }, widget: { // Settings for the actual iFrame which is launched. src: Drupal.settings.media.browserUrl, // Src of the media browser (if you want to totally override it) onLoad: Drupal.media.popups.mediaBrowser.mediaBrowserOnLoad // Onload function when iFrame loads. }, dialog: Drupal.media.popups.getDialogOptions() }; }; Drupal.media.popups.mediaBrowser.finalizeSelection = function () { var selected = this.contentWindow.Drupal.media.browser.selectedMedia; if (selected.length < 1) { alert(notSelected); return; } onSelect(selected); $(this).dialog("destroy"); } /** * Style chooser Popup. Creates a dialog for a user to choose a media style. * * @param mediaFile * The mediaFile you are requesting this formatting form for. * @todo: should this be fid? That's actually all we need now. * * @param Function * onSubmit Function to be called when the user chooses a media * style. Takes one parameter (Object formattedMedia). * * @param Object * options Options for the mediaStyleChooser dialog. */ Drupal.media.popups.mediaStyleSelector = function (mediaFile, onSelect, options) { var defaults = Drupal.media.popups.mediaStyleSelector.getDefaults(); // @todo: remove this awful hack :( defaults.src = defaults.src.replace('-media_id-', mediaFile.fid) + '&fields=' + JSON.stringify(mediaFile.fields); options = $.extend({}, defaults, options); // Create it as a modal window. var mediaIframe = Drupal.media.popups.getPopupIframe(options.src, 'mediaStyleSelector'); // Attach the onLoad event mediaIframe.bind('load', options, options.onLoad); /** * Set up the button text */ var ok = 'OK'; var cancel = 'Cancel'; var notSelected = 'Very sorry, there was an unknown error embedding media.'; if (Drupal && Drupal.t) { ok = Drupal.t(ok); cancel = Drupal.t(cancel); notSelected = Drupal.t(notSelected); } // @todo: let some options come through here. Currently can't be changed. var dialogOptions = Drupal.media.popups.getDialogOptions(); dialogOptions.buttons[ok] = function () { var formattedMedia = this.contentWindow.Drupal.media.formatForm.getFormattedMedia(); if (!formattedMedia) { alert(notSelected); return; } onSelect(formattedMedia); $(this).dialog("destroy"); }; dialogOptions.buttons[cancel] = function () { $(this).dialog("destroy"); }; Drupal.media.popups.setDialogPadding(mediaIframe.dialog(dialogOptions)); // Remove the title bar. mediaIframe.parents(".ui-dialog").find(".ui-dialog-titlebar").remove(); Drupal.media.popups.overlayDisplace(mediaIframe.parents(".ui-dialog")); return mediaIframe; }; Drupal.media.popups.mediaStyleSelector.mediaBrowserOnLoad = function (e) { }; Drupal.media.popups.mediaStyleSelector.getDefaults = function () { return { src: Drupal.settings.media.styleSelectorUrl, onLoad: Drupal.media.popups.mediaStyleSelector.mediaBrowserOnLoad }; }; /** * Style chooser Popup. Creates a dialog for a user to choose a media style. * * @param mediaFile * The mediaFile you are requesting this formatting form for. * @todo: should this be fid? That's actually all we need now. * * @param Function * onSubmit Function to be called when the user chooses a media * style. Takes one parameter (Object formattedMedia). * * @param Object * options Options for the mediaStyleChooser dialog. */ Drupal.media.popups.mediaFieldEditor = function (fid, onSelect, options) { var defaults = Drupal.media.popups.mediaFieldEditor.getDefaults(); // @todo: remove this awful hack :( defaults.src = defaults.src.replace('-media_id-', fid); options = $.extend({}, defaults, options); // Create it as a modal window. var mediaIframe = Drupal.media.popups.getPopupIframe(options.src, 'mediaFieldEditor'); // Attach the onLoad event // @TODO - This event is firing too early in IE on Windows 7, // - so the height being calculated is too short for the content. mediaIframe.bind('load', options, options.onLoad); /** * Set up the button text */ var ok = 'OK'; var cancel = 'Cancel'; var notSelected = 'Very sorry, there was an unknown error embedding media.'; if (Drupal && Drupal.t) { ok = Drupal.t(ok); cancel = Drupal.t(cancel); notSelected = Drupal.t(notSelected); } // @todo: let some options come through here. Currently can't be changed. var dialogOptions = Drupal.media.popups.getDialogOptions(); dialogOptions.buttons[ok] = function () { alert('hell yeah'); return "poo"; var formattedMedia = this.contentWindow.Drupal.media.formatForm.getFormattedMedia(); if (!formattedMedia) { alert(notSelected); return; } onSelect(formattedMedia); $(this).dialog("destroy"); }; dialogOptions.buttons[cancel] = function () { $(this).dialog("destroy"); }; Drupal.media.popups.setDialogPadding(mediaIframe.dialog(dialogOptions)); // Remove the title bar. mediaIframe.parents(".ui-dialog").find(".ui-dialog-titlebar").remove(); Drupal.media.popups.overlayDisplace(mediaIframe.parents(".ui-dialog")); return mediaIframe; }; Drupal.media.popups.mediaFieldEditor.mediaBrowserOnLoad = function (e) { }; Drupal.media.popups.mediaFieldEditor.getDefaults = function () { return { // @todo: do this for real src: '/media/-media_id-/edit?render=media-popup', onLoad: Drupal.media.popups.mediaFieldEditor.mediaBrowserOnLoad }; }; /** * Generic functions to both the media-browser and style selector */ /** * Returns the commonly used options for the dialog. */ Drupal.media.popups.getDialogOptions = function () { return { buttons: {}, dialogClass: 'media-wrapper', modal: true, draggable: false, resizable: false, minWidth: 500, width: 670, height: 280, position: 'center', overlay: { backgroundColor: '#000000', opacity: 0.4 }, zIndex: 10000, close: function (event, ui) { $(event.target).remove(); } }; }; /** * Created padding on a dialog * * @param jQuery dialogElement * The element which has .dialog() attached to it. */ Drupal.media.popups.setDialogPadding = function (dialogElement) { // @TODO: Perhaps remove this hardcoded reference to height. // - It's included to make IE on Windows 7 display the dialog without // collapsing. 550 is the height that displays all of the tab panes // within the Add Media overlay. This is either a bug in the jQuery // UI library, a bug in IE on Windows 7 or a bug in the way the // dialog is instantiated. Or a combo of the three. // All browsers except IE on Win7 ignore these defaults and adjust // the height of the iframe correctly to match the content in the panes dialogElement.height(dialogElement.dialog('option', 'height')); dialogElement.width(dialogElement.dialog('option', 'width')); }; /** * Get an iframe to serve as the dialog's contents. Common to both plugins. */ Drupal.media.popups.getPopupIframe = function (src, id, options) { var defaults = {width: '800px', scrolling: 'auto'}; var options = $.extend({}, defaults, options); return $('<iframe class="media-modal-frame"/>') .attr('src', src) .attr('width', options.width) .attr('id', id) .attr('scrolling', options.scrolling); }; Drupal.media.popups.overlayDisplace = function (dialog) { if (parent.window.Drupal.overlay) { var overlayDisplace = parent.window.Drupal.overlay.getDisplacement('top'); if (dialog.offset().top < overlayDisplace) { dialog.css('top', overlayDisplace); } } } })(jQuery);
<?php defined('_JEXEC') or die; JHtml::_('behavior.keepalive'); ?> <div class="login<?php echo $this->pageclass_sfx?>"> <?php if ($this->params->get('show_page_heading')) : ?> <div class="page-header"> <h1> <?php echo $this->escape($this->params->get('page_heading')); ?> </h1> </div> <?php endif; ?> <?php if (($this->params->get('<API key>') == 1 && str_replace(' ', '', $this->params->get('login_description')) != '') || $this->params->get('login_image') != '') : ?> <div class="login-description"> <?php endif; ?> <?php if ($this->params->get('<API key>') == 1) : ?> <?php echo $this->params->get('login_description'); ?> <?php endif; ?> <?php if (($this->params->get('login_image') != '')) :?> <img src="<?php echo $this->escape($this->params->get('login_image')); ?>" class="login-image" alt="<?php echo JText::_('<API key>')?>"/> <?php endif; ?> <?php if (($this->params->get('<API key>') == 1 && str_replace(' ', '', $this->params->get('login_description')) != '') || $this->params->get('login_image') != '') : ?> </div> <?php endif; ?> <h2>Log In</h2> <form action="<?php echo JRoute::_('index.php?option=com_users&task=user.login'); ?>" method="post" class="form-validate form-horizontal well"> <fieldset> <?php foreach ($this->form->getFieldset('credentials') as $field) : ?> <?php if (!$field->hidden) : ?> <div class="control-group"> <div class="control-label"> <?php echo $field->label; ?> </div> <div class="controls"> <?php echo $field->input; ?> </div> </div> <?php endif; ?> <?php endforeach; ?> <?php if ($this->tfa): ?> <div class="control-group"> <div class="control-label"> <?php echo $this->form->getField('secretkey')->label; ?> </div> <div class="controls"> <?php echo $this->form->getField('secretkey')->input; ?> </div> </div> <?php endif; ?> <?php if (JPluginHelper::isEnabled('system', 'remember')) : ?> <div class="control-group"> <div class="control-label"><label><?php echo JText::_('<API key>') ?></label></div> <div class="controls"><input id="remember" type="checkbox" name="remember" class="inputbox" value="yes"/></div> </div> <?php endif; ?> <div class="control-group"> <div class="controls"> <button type="submit" class="btn btn-primary"> <?php echo JText::_('JLOGIN'); ?> </button> </div> </div> <input type="hidden" name="return" value="<?php echo base64_encode($this->params->get('login_redirect_url', $this->form->getValue('return'))); ?>" /> <?php echo JHtml::_('form.token'); ?> </fieldset> <div> <ul class="nav nav-tabs nav-stacked"> <li> <a href="<?php echo JRoute::_('index.php?option=com_users&view=reset'); ?>"> <?php echo JText::_('<API key>'); ?></a> </li> <li> <a href="<?php echo JRoute::_('index.php?option=com_users&view=remind'); ?>"> <?php echo JText::_('<API key>'); ?></a> </li> <?php $usersConfig = JComponentHelper::getParams('com_users'); if ($usersConfig->get('<API key>')) : ?> <li> <a href="<?php echo JRoute::_('index.php?option=com_users&view=registration'); ?>"> <?php echo JText::_('<API key>'); ?></a> </li> <?php endif; ?> </ul> </div> </form> </div>
<?php require_once('wordfenceConstants.php'); require_once('wordfenceClass.php'); require_once('wordfenceURLHoover.php'); class wordfenceScanner { //serialized: protected $path = ''; protected $results = array(); public $errorMsg = false; private $apiKey = false; private $wordpressVersion = ''; private $totalFilesScanned = 0; private $startTime = false; private $lastStatusTime = false; private $patterns = ""; private $api = false; public function __sleep(){ return array('path', 'results', 'errorMsg', 'apiKey', 'wordpressVersion', 'urlHoover', 'totalFilesScanned', 'startTime', 'lastStatusTime', 'patterns'); } public function __wakeup(){ } public function __construct($apiKey, $wordpressVersion, $path){ $this->apiKey = $apiKey; $this->wordpressVersion = $wordpressVersion; $this->api = new wfAPI($this->apiKey, $this->wordpressVersion); if($path[strlen($path) - 1] != '/'){ $path .= '/'; } $this->path = $path; $this->results = array(); $this->errorMsg = false; //First extract hosts or IP's and their URL's into $this->hostsFound and URL's into $this->urlsFound $this->urlHoover = new wordfenceURLHoover($this->apiKey, $this->wordpressVersion); $this->setupSigs(); } private function setupSigs(){ $this->api = new wfAPI($this->apiKey, $this->wordpressVersion); $sigData = $this->api->call('get_patterns', array(), array()); //For testing, comment out above two, include server sig file and get local sigs //$sigData = wfSigs::getSigData(); if(! (is_array($sigData) && isset($sigData['sigPattern'])) ){ throw new Exception("Wordfence could not get the attack signature patterns from the scanning server."); } $this->patterns = $sigData; } public function scan($forkObj){ if(! $this->startTime){ $this->startTime = microtime(true); } if(! $this->lastStatusTime){ $this->lastStatusTime = microtime(true); } $db = new wfDB(); $lastCount = 'whatever'; $excludePattern = false; if(wfConfig::get('scan_exclude', false)){ $exParts = explode(',', wfConfig::get('scan_exclude')); foreach($exParts as &$exPart){ $exPart = preg_quote($exPart); $exPart = preg_replace('/\\\\\*/', '.*', $exPart); } $excludePattern = '/^(?:' . implode('|', $exParts) . ')$/i'; } while(true){ $thisCount = $db->querySingle("select count(*) from " . $db->prefix() . "wfFileMods where oldMD5 != newMD5 and knownFile=0"); if($thisCount == $lastCount){ //count should always be decreasing. If not, we're in an infinite loop so lets catch it early break; } $lastCount = $thisCount; $res1 = $db->querySelect("select filename, filenameMD5, hex(newMD5) as newMD5 from " . $db->prefix() . "wfFileMods where oldMD5 != newMD5 and knownFile=0 limit 500"); if(sizeof($res1) < 1){ break; } foreach($res1 as $rec1){ $db->queryWrite("update " . $db->prefix() . "wfFileMods set oldMD5 = newMD5 where filenameMD5='%s'", $rec1['filenameMD5']); //A way to mark as scanned so that if we come back from a sleep we don't rescan this one. $file = $rec1['filename']; if($excludePattern && preg_match($excludePattern, $file)){ continue; } $fileSum = $rec1['newMD5']; if(! file_exists($this->path . $file)){ continue; } $fileExt = ''; if(preg_match('/\.([a-zA-Z\d\-]{1,7})$/', $file, $matches)){ $fileExt = strtolower($matches[1]); } $isPHP = false; if(preg_match('/^(?:php|phtml|php\d+)$/', $fileExt)){ $isPHP = true; } $dontScanForURLs = false; if( (! wfConfig::get('<API key>')) && (preg_match('/^(?:\.htaccess|wp\-config\.php)$/', $file) || preg_match('/^(?:sql|tbz|tgz|gz|tar|log|err\d+)$/', $fileExt)) ){ $dontScanForURLs = true; } if(preg_match('/^(?:jpg|jpeg|mp3|avi|m4v|gif|png)$/', $fileExt) && (! wfConfig::get('<API key>')) ){ continue; } if(wfUtils::fileTooBig($this->path . $file)){ //We can't use filesize on 32 bit systems for files > 2 gigs //We should not need this check because files > 2 gigs are not hashed and therefore won't be received back as unknowns from the API server //But we do it anyway to be safe. wordfence::status(2, 'error', "Encountered file that is too large: $file - Skipping."); continue; } $fsize = filesize($this->path . $file); //Checked if too big above if($fsize > 1000000){ $fsize = sprintf('%.2f', ($fsize / 1000000)) . "M"; } else { $fsize = $fsize . "B"; } if(function_exists('memory_get_usage')){ wordfence::status(4, 'info', "Scanning contents: $file (Size:$fsize Mem:" . sprintf('%.1f', memory_get_usage(true) / (1024 * 1024)) . "M)"); } else { wordfence::status(4, 'info', "Scanning contents: $file (Size: $fsize)"); } $stime = microtime(true); $fh = @fopen($this->path . $file, 'r'); if(! $fh){ continue; } $totalRead = 0; while(! feof($fh)){ $data = fread($fh, 1 * 1024 * 1024); //read 1 megs max per chunk $totalRead += strlen($data); if($totalRead < 1){ break; } if($isPHP || wfConfig::get('<API key>') ){ if(strpos($data, '$allowed'.'Sites') !== false && strpos($data, "define ('VER"."SION', '1.") !== false && strpos($data, "TimThum"."b script created by") !== false){ if(! $this->isSafeFile($this->path . $file)){ $this->addResult(array( 'type' => 'file', 'severity' => 1, 'ignoreP' => $this->path . $file, 'ignoreC' => $fileSum, 'shortMsg' => "File is an old version of TimThumb which is vulnerable.", 'longMsg' => "This file appears to be an old version of the TimThumb script which makes your system vulnerable to attackers. Please upgrade the theme or plugin that uses this or remove it.", 'data' => array( 'file' => $file, 'canDiff' => false, 'canFix' => false, 'canDelete' => true ) )); break; } } else if(strpos($file, 'lib/wordfenceScanner.php') === false && preg_match($this->patterns['sigPattern'], $data, $matches)){ if(! $this->isSafeFile($this->path . $file)){ $this->addResult(array( 'type' => 'file', 'severity' => 1, 'ignoreP' => $this->path . $file, 'ignoreC' => $fileSum, 'shortMsg' => "This file appears to be malicious", 'longMsg' => "This file appears to be installed by a hacker to perform malicious activity. If you know about this file you can choose to ignore it to exclude it from future scans. The text we found in this file that matches a known malicious file is: <strong style=\"color: #F00;\">\"" . $matches[1] . "\"</strong>.", 'data' => array( 'file' => $file, 'canDiff' => false, 'canFix' => false, 'canDelete' => true ) )); break; } } if(preg_match($this->patterns['pat2'], $data)){ if(! $this->isSafeFile($this->path . $file)){ $this->addResult(array( 'type' => 'file', 'severity' => 1, 'ignoreP' => $this->path . $file, 'ignoreC' => $fileSum, 'shortMsg' => "This file may contain malicious executable code", 'longMsg' => "This file is a PHP executable file and contains an " . $this->patterns['word1'] . " function and " . $this->patterns['word2'] . " decoding function on the same line. This is a common technique used by hackers to hide and execute code. If you know about this file you can choose to ignore it to exclude it from future scans.", 'data' => array( 'file' => $file, 'canDiff' => false, 'canFix' => false, 'canDelete' => true ) )); break; } } if(wfConfig::get('<API key>')){ $badStringFound = false; if(strpos($data, $this->patterns['badstrings'][0]) !== false){ for($i = 1; $i < sizeof($this->patterns['badstrings']); $i++){ if(strpos($data, $this->patterns['badstrings'][$i]) !== false){ $badStringFound = $this->patterns['badstrings'][$i]; break; } } } if($badStringFound){ if(! $this->isSafeFile($this->path . $file)){ $this->addResult(array( 'type' => 'file', 'severity' => 1, 'ignoreP' => $this->path . $file, 'ignoreC' => $fileSum, 'shortMsg' => "This file may contain malicious executable code", 'longMsg' => "This file is a PHP executable file and contains the word 'eval' (without quotes) and the word '" . $badStringFound . "' (without quotes). The eval() function along with an encoding function like the one mentioned are commonly used by hackers to hide their code. If you know about this file you can choose to ignore it to exclude it from future scans.", 'data' => array( 'file' => $file, 'canDiff' => false, 'canFix' => false, 'canDelete' => true ) )); break; } } } if(! $dontScanForURLs){ $this->urlHoover->hoover($file, $data); } } else { if(! $dontScanForURLs){ $this->urlHoover->hoover($file, $data); } } if($totalRead > 2 * 1024 * 1024){ break; } } fclose($fh); $mtime = sprintf("%.5f", microtime(true) - $stime); $this->totalFilesScanned++; if(microtime(true) - $this->lastStatusTime > 1){ $this->lastStatusTime = microtime(true); $this->writeScanningStatus(); } $forkObj->forkIfNeeded(); } } $this->writeScanningStatus(); wordfence::status(2, 'info', "Asking Wordfence to check URL's against malware list."); $hooverResults = $this->urlHoover->getBaddies(); if($this->urlHoover->errorMsg){ $this->errorMsg = $this->urlHoover->errorMsg; return false; } $this->urlHoover->cleanup(); foreach($hooverResults as $file => $hresults){ foreach($hresults as $result){ if(preg_match('/wfBrowscapCache\.php$/', $file)){ continue; } if($result['badList'] == 'goog-malware-shavar'){ if(! $this->isSafeFile($this->path . $file)){ $this->addResult(array( 'type' => 'file', 'severity' => 1, 'ignoreP' => $this->path . $file, 'ignoreC' => md5_file($this->path . $file), 'shortMsg' => "File contains suspected malware URL: " . $this->path . $file, 'longMsg' => "This file contains a suspected malware URL listed on Google's list of malware sites. Wordfence decodes " . $this->patterns['word3'] . " when scanning files so the URL may not be visible if you view this file. The URL is: " . $result['URL'] . " - More info available at <a href=\"http://safebrowsing.clients.google.com/safebrowsing/diagnostic?site=" . urlencode($result['URL']) . "&client=googlechrome&hl=en-US\" target=\"_blank\">Google Safe Browsing diagnostic page</a>.", 'data' => array( 'file' => $file, 'badURL' => $result['URL'], 'canDiff' => false, 'canFix' => false, 'canDelete' => true, 'gsb' => 'goog-malware-shavar' ) )); } } else if($result['badList'] == '<API key>'){ if(! $this->isSafeFile($this->path . $file)){ $this->addResult(array( 'type' => 'file', 'severity' => 1, 'ignoreP' => $this->path . $file, 'ignoreC' => md5_file($this->path . $file), 'shortMsg' => "File contains suspected phishing URL: " . $this->path . $file, 'longMsg' => "This file contains a URL that is a suspected phishing site that is currently listed on Google's list of known phishing sites. The URL is: " . $result['URL'], 'data' => array( 'file' => $file, 'badURL' => $result['URL'], 'canDiff' => false, 'canFix' => false, 'canDelete' => true, 'gsb' => '<API key>' ) )); } } } } return $this->results; } private function writeScanningStatus(){ wordfence::status(2, 'info', "Scanned contents of " . $this->totalFilesScanned . " additional files at " . sprintf('%.2f', ($this->totalFilesScanned / (microtime(true) - $this->startTime))) . " per second"); } public static function containsCode($arr){ foreach($arr as $elem){ if(preg_match($this->patterns['pat3'], $elem)){ return true; } } return false; } private static function hostInURL($host, $url){ $host = str_replace('.', '\\.', $host); return preg_match('/(?:^|^http:\/\/|^https:\/\/|^ftp:\/\/)' . $host . '(?:$|\/)/i', $url); } private function addResult($result){ for($i = 0; $i < sizeof($this->results); $i++){ if($this->results[$i]['type'] == 'file' && $this->results[$i]['data']['file'] == $result['data']['file']){ if($this->results[$i]['severity'] > $result['severity']){ $this->results[$i] = $result; //Overwrite with more severe results } return; } } //We don't have a results for this file so append $this->results[] = $result; } private function isSafeFile($file){ if(! $this->api){ $this->api = new wfAPI($this->apiKey, $this->wordpressVersion); } $wfHash = wordfenceHash::wfHash($file); $result = $this->api->call('is_safe_file', array(), array('shac' => strtoupper($wfHash[1]))); if(isset($result['isSafe']) && $result['isSafe'] == 1){ return true; } return false; } } ?>
<?php namespace Drupal\simple_fb_connect; use Facebook\GraphNodes\GraphNode; use Drupal\user\Entity\User; use Drupal\user\UserInterface; use Drupal\Core\Config\<API key>; use Drupal\Core\Language\<API key>; use Drupal\Core\Logger\<API key>; use Drupal\Core\StringTranslation\<API key>; use Drupal\Core\StringTranslation\<API key>; use Drupal\Core\Entity\<API key>; use Drupal\Core\Entity\<API key>; use Drupal\Core\Utility\Token; use Drupal\Core\Transliteration\PhpTransliteration; use Symfony\Component\EventDispatcher\<API key>; use Symfony\Component\EventDispatcher\GenericEvent; use Drupal\Core\Entity\<API key>; use Drupal\Component\Utility\Unicode; /** * Contains all logic that is related to Drupal user management. */ class <API key> { use <API key>; protected $configFactory; protected $loggerFactory; protected $eventDispatcher; protected $entityTypeManager; protected $entityFieldManager; protected $token; protected $transliteration; protected $languageManager; /** * Constructor. * * @param \Drupal\Core\Config\<API key> $config_factory * Used for accessing Drupal configuration. * @param \Drupal\Core\Logger\<API key> $logger_factory * Used for logging errors. * @param \Drupal\Core\<API key> $string_translation * Used for translating strings in UI messages. * @param \Symfony\Component\EventDispatcher\<API key> $event_dispatcher * Used for dispatching events to other modules. * @param \Drupal\Core\Entity\<API key> $entity_type_manager * Used for loading and creating Drupal user objects. * @param \Drupal\Core\Entity\<API key> $<API key> * Used for access Drupal user field definitions. * @param \Drupal\Core\Utility\Token $token * Used for token support in Drupal user picture directory. * @param \Drupal\Core\Transliteration\PhpTransliteration $transliteration * Used for user picture directory and file transiliteration. * @param \Drupal\Core\Language\<API key> $language_manager * Used for detecting the current UI language. */ public function __construct(<API key> $config_factory, <API key> $logger_factory, <API key> $string_translation, <API key> $event_dispatcher, <API key> $entity_type_manager, <API key> $<API key>, Token $token, PhpTransliteration $transliteration, <API key> $language_manager) { $this->configFactory = $config_factory; $this->loggerFactory = $logger_factory; $this->stringTranslation = $string_translation; $this->eventDispatcher = $event_dispatcher; $this->entityTypeManager = $entity_type_manager; $this->entityFieldManager = $<API key>; $this->token = $token; $this->transliteration = $transliteration; $this->languageManager = $language_manager; } /** * Loads existing Drupal user object by given property and value. * * Note that first matching user is returned. Email address and account name * are unique so there can be only zero ore one matching user when * loading users by these properties. * * @param string $field * User entity field to search from. * @param string $value * Value to search for. * * @return \Drupal\user\Entity\User|false * Drupal user account if found * False otherwise */ public function loadUserByProperty($field, $value) { $users = $this->entityTypeManager ->getStorage('user') ->loadByProperties([$field => $value]); if (!empty($users)) { return current($users); } // If user was not found, return FALSE. return FALSE; } /** * Create a new user account. * * @param string $name * User's name on Facebook. * @param string $email * User's email address. * @param int $fbid * User's Facebook ID. * @param \Facebook\GraphNodes\GraphNode $fb_profile_pic * GraphNode object representing user's Facebook profile picture. * * @return \Drupal\user\Entity\User|false * Drupal user account if user was created * False otherwise */ public function createUser($name, $email, $fbid, GraphNode $fb_profile_pic) { // Make sure we have everything we need. if (!$name || !$email || !$fb_profile_pic) { $this->loggerFactory ->get('simple_fb_connect') ->error('Failed to create user. Name: @name, email: @email', ['@name' => $name, '@email' => $email]); $this->drupalSetMessage($this->t('Error while creating user account. Please contact site administrator.'), 'error'); return FALSE; } // Check if site configuration allows new users to register. if ($this->registrationBlocked()) { $this->loggerFactory ->get('simple_fb_connect') ->warning('Failed to create user. User registration is disabled in Drupal account settings. Name: @name, email: @email.', ['@name' => $name, '@email' => $email]); $this->drupalSetMessage($this->t('Only existing users can log in with Facebook. Contact system administrator.'), 'error'); return FALSE; } // Set up the user fields. // - Username will be user's name on Facebook. // - Password can be very long since the user doesn't see this. // There are three different language fields. // - preferred_language // - <API key> // - langcode of the user entity i.e. the language of the profile fields // - We use the same logic as core and populate the current UI language to // all of these. Other modules can subscribe to the triggered event and // change the languages if they will. // Get the current UI language. $langcode = $this->languageManager->getCurrentLanguage()->getId(); $fields = [ 'name' => $this-><API key>($name), 'mail' => $email, 'init' => $email, 'pass' => $this->userPassword(32), 'status' => $this->getNewUserStatus(), 'langcode' => $langcode, 'preferred_langcode' => $langcode, '<API key>' => $langcode, ]; // Check if user's picture should be downloaded from FB. We don't download // the default silhouette unless Drupal user picture is a required field. $file = FALSE; $is_silhouette = (bool) $fb_profile_pic->getField('is_silhouette'); if ($this->userPictureEnabled() && ($this->userPictureRequired() || !$is_silhouette)) { $file = $this->downloadProfilePic($fb_profile_pic->getField('url'), $fbid); if (!$file) { $this->loggerFactory ->get('simple_fb_connect') ->error('Failed to create user. Profile picture could not be downloaded. Name: @name, email: @email', ['@name' => $name, '@email' => $email]); $this->drupalSetMessage($this->t('Error while creating user account. Please contact site administrator.'), 'error'); return FALSE; } $file->save(); $fields['user_picture'] = $file->id(); } // Create new user account. $new_user = $this->entityTypeManager ->getStorage('user') ->create($fields); // Dispatch an event so that other modules can react to the user creation. // Set the account twice on the event: as the main subject but also in the // list of arguments. $event = new GenericEvent($new_user, ['account' => $new_user, 'fbid' => $fbid]); $this->eventDispatcher->dispatch('simple_fb_connect.user_created', $event); // Validate the new user. $violations = $new_user->validate(); if (count($violations) > 0) { $property = $violations[0]->getPropertyPath(); $msg = $violations[0]->getMessage(); $this->drupalSetMessage($this->t('Error while creating user account. Please contact site administrator.'), 'error'); $this->loggerFactory ->get('simple_fb_connect') ->error('Could not create new user, validation failed. Property: @property. Message: @message', ['@property' => $property, '@message' => $msg]); return FALSE; } // Try to save the new user account. try { $new_user->save(); $this->loggerFactory ->get('simple_fb_connect') ->notice('New user created. Username @username, UID: @uid', ['@username' => $new_user->getAccountName(), '@uid' => $new_user->id()]); $this->drupalSetMessage($this->t('New user account %username created.', ['%username' => $new_user->getAccountName()])); // Set the owner of the profile picture file if it was downloaded. if ($file) { $file->setOwner($new_user); $file->save(); } return $new_user; } catch (<API key> $ex) { $this->drupalSetMessage($this->t('Creation of user account failed. Please contact site administrator.'), 'error'); $this->loggerFactory ->get('simple_fb_connect') ->error('Could not create new user. Exception: @message', ['@message' => $ex->getMessage()]); } return FALSE; } public function loginUser(User $drupal_user) { // Prevent admin login if defined in module settings. if ($this-><API key>($drupal_user)) { $this->drupalSetMessage($this->t('Facebook login is disabled for site administrator. Login with your local user account.'), 'error'); return FALSE; } // Prevent login if user has one of the roles defined in module settings. if ($this->loginDisabledByRole($drupal_user)) { $this->drupalSetMessage($this->t('Facebook login is disabled for your role. Please login with your local user account.'), 'error'); return FALSE; } // Check that the account is active and log the user in. if ($drupal_user->isActive()) { $this->userLoginFinalize($drupal_user); // Dispatch an event so that other modules can react to the user login. // Set the account twice on the event: as the main subject but also in the // list of arguments. $event = new GenericEvent($drupal_user, ['account' => $drupal_user]); $this->eventDispatcher->dispatch('simple_fb_connect.user_login', $event); // TODO: Add Boost cookie if Boost module is enabled return TRUE; } // If we are still here, account is blocked. $this->drupalSetMessage($this->t('You could not be logged in because your user account %username is not active.', ['%username' => $drupal_user->getAccountName()]), 'warning'); $this->loggerFactory ->get('simple_fb_connect') ->warning('Facebook login for user @user prevented. Account is blocked.', ['@user' => $drupal_user->getAccountName()]); return FALSE; } /** * Checks if user registration is blocked in Drupal account settings. * * @return bool * True if registration is blocked * False if registration is not blocked */ protected function registrationBlocked() { // Check if Drupal account registration settings is Administrators only. if ($this->configFactory ->get('user.settings') ->get('register') == 'admin_only') { return TRUE; } // If we didnt' return TRUE already, registration is not blocked. return FALSE; } /** * Ensures that Drupal usernames will be unique. * * Drupal usernames will be generated so that the user's full name on Facebook * will become user's Drupal username. This method will check if the username * is already used and appends a number until it finds the first available * username. * * @param string $fb_name * User's full name on Facebook. * * @return string * Unique username */ protected function <API key>($fb_name) { // Truncate to max length. We use hard coded length because using // USERNAME_MAX_LENGTH cause unit tests to fail. $max_length = 60; $fb_name = Unicode::substr($fb_name, 0, $max_length); // Add a trailing number if needed to make username unique. $base = $fb_name; $i = 1; $candidate = $base; while ($this->loadUserByProperty('name', $candidate)) { $i++; // Calculate max length for $base and truncate if needed. $max_length_base = $max_length - strlen((string) $i) - 1; $base = Unicode::substr($base, 0, $max_length_base); $candidate = $base . " " . $i; } // Trim leading and trailing whitespace. $candidate = trim($candidate); // Remove multiple spacebars from the username if needed. $candidate = preg_replace('/ {2,}/', ' ', $candidate); return $candidate; } /** * Returns the status for new users. * * @return int * Value 0 means that new accounts remain blocked and require approval. * Value 1 means that visitors can register new accounts without approval. */ protected function getNewUserStatus() { if ($this->configFactory ->get('user.settings') ->get('register') == 'visitors') { return 1; } return 0; } /** * Checks if current user is admin and admin login via FB is disabled. * * @param \Drupal\user\Entity\User $drupal_user * User object. * * @return bool * True if current user is admin and admin login via fB is disabled. * False otherwise. */ protected function <API key>(User $drupal_user) { // Check if current user is admin. if ($drupal_user->id() == 1) { // Check if admin FB login is disabled. if ($this->configFactory ->get('simple_fb_connect.settings') ->get('disable_admin_login')) { $this->loggerFactory ->get('simple_fb_connect') ->warning('Facebook login for user @user prevented. Facebook login for site administrator (user 1) is disabled in module settings.', ['@user' => $drupal_user->getAccountName()]); return TRUE; } } // User is not admin or admin login is not disabled. return FALSE; } /** * Checks if the user has one of the "FB login disabled" roles. * * @param \Drupal\user\Entity\User $drupal_user * User object. * * @return bool * True if login is disabled for one of this user's role * False if login is not disabled for this user's roles */ protected function loginDisabledByRole(User $drupal_user) { // Read roles that are blocked from module settings. $disabled_roles = $this->configFactory ->get('simple_fb_connect.settings') ->get('disabled_roles'); // Filter out allowed roles. Allowed roles have have value "0". // "0" evaluates to FALSE so second parameter of array_filter is omitted. $disabled_roles = array_filter($disabled_roles); // Loop through all roles the user has. foreach ($drupal_user->getRoles() as $role) { // Check if FB login is disabled for this role. if (array_key_exists($role, $disabled_roles)) { $this->loggerFactory ->get('simple_fb_connect') ->warning('Facebook login for user @user prevented. Facebook login for role @role is disabled in module settings.', ['@user' => $drupal_user->getAccountName(), '@role' => $role]); return TRUE; } } // FB login is not disabled for any of the user's roles. return FALSE; } /** * Downloads and sets user profile picture. * * @param User $drupal_user * User object to update the profile picture for. * @param string $picture_url * Absolute URL where the picture will be downloaded from. * @param string $fbid * User's Facebook ID. * * @deprecated This method is deprecated as of 8.x-3.1 when the logic of this * method was moved to method createUser because the user creation failed when * user_picture was required field. * * @return bool * True if picture was successfully set. * False otherwise. */ public function setProfilePic(User $drupal_user, $picture_url, $fbid) { // Try to download the profile picture and add it to user fields. if ($this->userPictureEnabled()) { if ($file = $this->downloadProfilePic($picture_url, $fbid)) { // Set the owner of the file to be the Drupal user. $file->setOwner($drupal_user); $file->save(); // Set user's profile picture and save user. $drupal_user->set('user_picture', $file->id()); $drupal_user->save(); return TRUE; } } return FALSE; } /** * Downloads the profile picture to Drupal filesystem. * * @param string $picture_url * Absolute URL where to download the profile picture. * @param string $fbid * Facebook ID of the user. * * @return \Drupal\file\FileInterface|false * FileInterface object if file was succesfully downloaded * False otherwise */ protected function downloadProfilePic($picture_url, $fbid) { // Make sure that we have everything we need. if (!$picture_url || !$fbid) { return FALSE; } // Determine target directory. $scheme = $this->configFactory ->get('system.file') ->get('default_scheme'); $file_directory = $this->getPictureDirectory(); if (!$file_directory) { return FALSE; } $directory = $scheme . '://' . $file_directory; // Replace tokens. $directory = $this->token->replace($directory); // Transliterate directory name. $directory = $this->transliteration->transliterate($directory, 'en', '_', 50); if (!$this-><API key>($directory, 1)) { $this->loggerFactory ->get('simple_fb_connect') ->error('Could not save FB profile picture. Directory is not writeable: @directory', ['@directory' => $directory]); return FALSE; } // Generate filename and transliterate. FB API always serves JPG. $filename = $this->transliteration->transliterate($fbid . '.jpg', 'en', '_', 50); $destination = $directory . '/' . $filename; // Download the picture to local filesystem. if (!$file = $this->systemRetrieveFile($picture_url, $destination, TRUE, 1)) { $this->loggerFactory ->get('simple_fb_connect') ->error('Could not download Facebook profile picture from url: @url', ['@url' => $picture_url]); return FALSE; } return $file; } /** * Returns whether this site supports the default user picture feature. * * We use this method instead of the procedural <API key>() * so that we can unit test our own methods. * * @return bool * True if user pictures are enabled * False otherwise */ protected function userPictureEnabled() { $field_definitions = $this->entityFieldManager->getFieldDefinitions('user', 'user'); return isset($field_definitions['user_picture']); } /** * Returns picture directory if site supports the user picture feature. * * @return string|bool * Directory for user pictures if site supports user picture feature. * False otherwise. */ protected function getPictureDirectory() { $field_definitions = $this->entityFieldManager->getFieldDefinitions('user', 'user'); if (isset($field_definitions['user_picture'])) { return $field_definitions['user_picture']->getSetting('file_directory'); } return FALSE; } /** * Checks if user pictures are enabled and required. * * @return bool * True if user pictures are enabled and field is required. * False otherwise. */ protected function userPictureRequired() { $field_definitions = $this->entityFieldManager->getFieldDefinitions('user', 'user'); if (isset($field_definitions['user_picture'])) { return $field_definitions['user_picture']->get('required'); } // If user_picture field is not defined, it is not required. return FALSE; } /** * Wrapper for <API key>. * * We need to wrap the legacy procedural Drupal API functions so that we are * not using them directly in our own methods. This way we can unit test our * own methods. * * @see <API key> */ protected function <API key>(&$directory, $options) { return <API key>($directory, $options); } /** * Wrapper for <API key>. * * We need to wrap the legacy procedural Drupal API functions so that we are * not using them directly in our own methods. This way we can unit test our * own methods. * * @see <API key> */ protected function systemRetrieveFile($url, $destination, $managed, $replace) { return <API key>($url, $destination, $managed, $replace); } /** * Wrapper for drupal_set_message. * * We need to wrap the legacy procedural Drupal API functions so that we are * not using them directly in our own methods. This way we can unit test our * own methods. * * @see drupal_set_message */ protected function drupalSetMessage($message = NULL, $type = 'status', $repeat = FALSE) { return drupal_set_message($message, $type, $repeat); } /** * Wrapper for user_password. * * We need to wrap the legacy procedural Drupal API functions so that we are * not using them directly in our own methods. This way we can unit test our * own methods. * * @see user_password */ protected function userPassword($length) { return user_password($length); } /** * Wrapper for user_login_finalize. * * We need to wrap the legacy procedural Drupal API functions so that we are * not using them directly in our own methods. This way we can unit test our * own methods. * * @see user_password */ protected function userLoginFinalize(UserInterface $account) { return user_login_finalize($account); } }
#include "ScriptPCH.h" #include "<API key>.h" #include "ScriptedEscortAI.h" enum eSpells { //Eadric <API key> = 68197, <API key> = 66863, <API key> = 66867, SPELL_RADIANCE = 66935, SPELL_VENGEANCE = 66865, //Paletress SPELL_SMITE = 66536, SPELL_SMITE_H = 67674, SPELL_HOLY_FIRE = 66538, SPELL_HOLY_FIRE_H = 67676, SPELL_RENEW = 66537, SPELL_RENEW_H = 67675, SPELL_HOLY_NOVA = 66546, SPELL_SHIELD = 66515, SPELL_CONFESS = 66680, //Npc_argent_soldier SPELL_STRIKE = 67237, SPELL_CLEAVE = 15284, SPELL_PUMMEL = 67235, SPELL_PAIN = 34942, SPELL_MIND = 67229, SPELL_SSMITE = 67289, SPELL_LIGHT = 67290, SPELL_FLURRY = 67233, SPELL_FINAL = 67255, SPELL_DIVINE = 67251, SPELL_FONT = 67194, //Memory SPELL_OLD_WOUNDS = 66620, SPELL_OLD_WOUNDS_H = 67679, SPELL_SHADOWS_PAST = 66619, <API key> = 67678, <API key> = 66552, <API key> = 67677 }; enum Misc { ACHIEV_CONF = 3802 }; enum eEnums { SAY_START_10 = -1999956, SAY_START_9 = -1999955, SAY_START_8 = -1999941, SAY_START_7 = -1999954, SAY_START_6 = -1999951 }; class OrientationCheck : public std::unary_function<Unit*, bool> { public: explicit OrientationCheck(Unit* _caster) : caster(_caster) { } bool operator() (Unit* unit) { return !unit->isInFront(caster, 40.0f, 2.5f); } private: Unit* caster; }; class <API key> : public SpellScriptLoader { public: <API key>() : SpellScriptLoader("<API key>") { } class <API key> : public SpellScript { PrepareSpellScript(<API key>); void FilterTargets(std::list<Unit*>& unitList) { unitList.remove_if(OrientationCheck(GetCaster())); } void Register() { OnUnitTargetSelect += SpellUnitTargetFn(<API key>::FilterTargets, EFFECT_0, <API key>); OnUnitTargetSelect += SpellUnitTargetFn(<API key>::FilterTargets, EFFECT_1, <API key>); } }; SpellScript *GetSpellScript() const { return new <API key>(); } }; class boss_eadric : public CreatureScript { public: boss_eadric() : CreatureScript("boss_eadric") { } CreatureAI* GetAI(Creature* pCreature) const { return new boss_eadricAI(pCreature); } struct boss_eadricAI : public ScriptedAI { boss_eadricAI(Creature* pCreature) : ScriptedAI(pCreature) { pInstance = (InstanceScript*)pCreature->GetInstanceScript(); pCreature->SetReactState(REACT_PASSIVE); pCreature->SetFlag(UNIT_FIELD_FLAGS,<API key>); pCreature->SetFlag(UNIT_FIELD_FLAGS,<API key>); me->ApplySpellImmune(0, IMMUNITY_EFFECT, <API key>, true); me->ApplySpellImmune(0, IMMUNITY_MECHANIC, MECHANIC_GRIP, true); } InstanceScript* pInstance; uint32 uiVenganceTimer; uint32 uiRadianceTimer; uint32 <API key>; uint32 uiResetTimer; bool bDone; void Reset() { uiVenganceTimer = 10000; uiRadianceTimer = 16000; <API key> = 25000; uiResetTimer = 5000; me->GetMotionMaster()->MovePoint(1,746.71f,661.02f,411.69f); me->SetOrientation(4.714f); bDone = false; } void DamageTaken(Unit *done_by, uint32 &damage) { if (damage >= me->GetHealth()) { damage = 0; EnterEvadeMode(); me->SetFlag(UNIT_FIELD_FLAGS,<API key>); me->SetFlag(UNIT_FIELD_FLAGS,<API key>); DoScriptText(SAY_START_8, me); me->setFaction(35); bDone = true; if (GameObject* pGO = GameObject::GetGameObject(*me, pInstance->GetData64(DATA_MAIN_GATE))) pInstance->HandleGameObject(pGO->GetGUID(),true); if (GameObject* pGO = GameObject::GetGameObject(*me, pInstance->GetData64(DATA_MAIN_GATE1))) pInstance->HandleGameObject(pGO->GetGUID(),true); if (pInstance) pInstance->SetData(<API key>, DONE); } } void MovementInform(uint32 MovementType, uint32 Data) { if (MovementType != POINT_MOTION_TYPE) return; } void UpdateAI(const uint32 uiDiff) { if (bDone && uiResetTimer <= uiDiff) { me->GetMotionMaster()->MovePoint(0,746.843f, 695.68f, 412.339f); bDone = false; if (GameObject* pGO = GameObject::GetGameObject(*me, pInstance->GetData64(DATA_MAIN_GATE))) pInstance->HandleGameObject(pGO->GetGUID(),true); } else uiResetTimer -= uiDiff; if (!UpdateVictim()) return; if (<API key> <= uiDiff) { me-><API key>(true); if (Unit* pTarget = SelectTarget(<API key>, 0, 250, true)) { if (pTarget && pTarget->isAlive()) { DoCast(pTarget, <API key>); DoCast(pTarget, <API key>); } } <API key> = 25000; } else <API key> -= uiDiff; if (uiVenganceTimer <= uiDiff) { DoCast(me,SPELL_VENGEANCE); uiVenganceTimer = 10000; } else uiVenganceTimer -= uiDiff; if (uiRadianceTimer <= uiDiff) { DoCastAOE(SPELL_RADIANCE); uiRadianceTimer = 16000; } else uiRadianceTimer -= uiDiff; <API key>(); } }; }; class boss_paletress : public CreatureScript { public: boss_paletress() : CreatureScript("boss_paletress") { } CreatureAI* GetAI(Creature* pCreature) const { return new boss_paletressAI(pCreature); } struct boss_paletressAI : public ScriptedAI { boss_paletressAI(Creature* pCreature) : ScriptedAI(pCreature) { pInstance = (InstanceScript*)pCreature->GetInstanceScript(); MemoryGUID = 0; pCreature->SetReactState(REACT_PASSIVE); pCreature->SetFlag(UNIT_FIELD_FLAGS,<API key>); pCreature->SetFlag(UNIT_FIELD_FLAGS,<API key>); pCreature->RestoreFaction(); me->ApplySpellImmune(0, IMMUNITY_EFFECT, <API key>, true); me->ApplySpellImmune(0, IMMUNITY_MECHANIC, MECHANIC_GRIP, true); } InstanceScript* pInstance; Creature* pMemory; uint64 MemoryGUID; bool bHealth; bool bDone; uint32 uiHolyFireTimer; uint32 uiHolySmiteTimer; uint32 uiRenewTimer; uint32 uiResetTimer; void Reset() { me->RemoveAllAuras(); uiHolyFireTimer = urand(9000,12000); uiHolySmiteTimer = urand(5000,7000); uiRenewTimer = urand(2000,5000); uiResetTimer = 7000; me->GetMotionMaster()->MovePoint(1,746.71f,661.02f,411.69f); me->SetOrientation(4.714f); bHealth = false; bDone = false; if (Creature *pMemory = Unit::GetCreature(*me, MemoryGUID)) if (pMemory->isAlive()) pMemory->RemoveFromWorld(); } void SetData(uint32 uiId, uint32 uiValue) { if (uiId == 1) me->RemoveAura(SPELL_SHIELD); } void DamageTaken(Unit *done_by, uint32 &damage) { if (damage >= me->GetHealth()) { damage = 0; EnterEvadeMode(); me->SetFlag(UNIT_FIELD_FLAGS,<API key>); me->SetFlag(UNIT_FIELD_FLAGS,<API key>); DoScriptText(SAY_START_7, me); me->setFaction(35); bDone = true; if (GameObject* pGO = GameObject::GetGameObject(*me, pInstance->GetData64(DATA_MAIN_GATE))) pInstance->HandleGameObject(pGO->GetGUID(),true); if (GameObject* pGO = GameObject::GetGameObject(*me, pInstance->GetData64(DATA_MAIN_GATE1))) pInstance->HandleGameObject(pGO->GetGUID(),true); pInstance->SetData(<API key>, DONE); if (IsHeroic()) pInstance-><API key>(ACHIEV_CONF); } } void MovementInform(uint32 MovementType, uint32 Data) { if (MovementType != POINT_MOTION_TYPE) return; } void UpdateAI(const uint32 uiDiff) { if (bDone && uiResetTimer <= uiDiff) { me->GetMotionMaster()->MovePoint(0,746.843f, 695.68f, 412.339f); bDone = false; if (GameObject* pGO = GameObject::GetGameObject(*me, pInstance->GetData64(DATA_MAIN_GATE))) pInstance->HandleGameObject(pGO->GetGUID(),true); } else uiResetTimer -= uiDiff; if (!UpdateVictim()) return; if (uiHolyFireTimer <= uiDiff) { if (Unit* pTarget = SelectTarget(<API key>, 0, 250, true)) { if (pTarget && pTarget->isAlive()) DoCast(pTarget,SPELL_HOLY_FIRE); } if (me->HasAura(SPELL_SHIELD)) uiHolyFireTimer = 13000; else uiHolyFireTimer = urand(9000,12000); } else uiHolyFireTimer -= uiDiff; if (uiHolySmiteTimer <= uiDiff) { if (Unit* pTarget = SelectTarget(<API key>, 0, 250, true)) { if (pTarget && pTarget->isAlive()) DoCast(pTarget,SPELL_SMITE); } if (me->HasAura(SPELL_SHIELD)) uiHolySmiteTimer = 9000; else uiHolySmiteTimer = urand(5000,7000); } else uiHolySmiteTimer -= uiDiff; if (me->HasAura(SPELL_SHIELD)) if (uiRenewTimer <= uiDiff) { me-><API key>(true); uint8 uiTarget = urand(0,1); switch(uiTarget) { case 0: DoCast(me,SPELL_RENEW); break; case 1: if (Creature *pMemory = Unit::GetCreature(*me, MemoryGUID)) if (pMemory->isAlive()) DoCast(pMemory, SPELL_RENEW); break; } uiRenewTimer = urand(15000,17000); } else uiRenewTimer -= uiDiff; if (!bHealth && me->GetHealth()*100 / me->GetMaxHealth() <= 35) { DoScriptText(SAY_START_6, me); me-><API key>(true); DoCastAOE(SPELL_HOLY_NOVA,false); DoCast(me, SPELL_SHIELD); DoCastAOE(SPELL_CONFESS,false); bHealth = true; switch(urand(0, 24)) { case 0: me->SummonCreature(MEMORY_ALGALON, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 1: me->SummonCreature(MEMORY_CHROMAGGUS, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 2: me->SummonCreature(MEMORY_CYANIGOSA, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 3: me->SummonCreature(MEMORY_DELRISSA, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 4: me->SummonCreature(MEMORY_ECK, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 5: me->SummonCreature(MEMORY_ENTROPIUS, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 6: me->SummonCreature(MEMORY_GRUUL, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 7: me->SummonCreature(MEMORY_HAKKAR, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 8: me->SummonCreature(MEMORY_HEIGAN, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 9: me->SummonCreature(MEMORY_HEROD, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 10: me->SummonCreature(MEMORY_HOGGER, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 11: me->SummonCreature(MEMORY_IGNIS, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 12: me->SummonCreature(MEMORY_ILLIDAN, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 13: me->SummonCreature(MEMORY_INGVAR, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 14: me->SummonCreature(MEMORY_KALITHRESH, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 15: me->SummonCreature(MEMORY_LUCIFRON, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 16: me->SummonCreature(MEMORY_MALCHEZAAR, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 17: me->SummonCreature(MEMORY_MUTANUS, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 18: me->SummonCreature(MEMORY_ONYXIA, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 19: me->SummonCreature(MEMORY_THUNDERAAN, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 20: me->SummonCreature(MEMORY_VANCLEEF, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 21: me->SummonCreature(MEMORY_VASHJ, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 22: me->SummonCreature(MEMORY_VEKNILASH, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 23: me->SummonCreature(MEMORY_VEZAX, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; case 24: me->SummonCreature(MEMORY_ARCHIMONDE, 0.0f, 0.0f, 0.0f, 0, <API key>, 5000); break; } } <API key>(); } void JustSummoned(Creature* pSummon) { MemoryGUID = pSummon->GetGUID(); } }; }; class npc_memory : public CreatureScript { public: npc_memory() : CreatureScript("npc_memory") { } CreatureAI* GetAI(Creature* pCreature) const { return new npc_memoryAI(pCreature); } struct npc_memoryAI : public ScriptedAI { npc_memoryAI(Creature* pCreature) : ScriptedAI(pCreature) { } uint32 uiOldWoundsTimer; uint32 uiShadowsPastTimer; uint32 uiWakingNightmare; void Reset() { uiOldWoundsTimer = 12000; uiShadowsPastTimer = 15000; uiWakingNightmare = 7000; } void UpdateAI(const uint32 uiDiff) { if (!UpdateVictim()) return; if (uiOldWoundsTimer <= uiDiff) { if (Unit* pTarget = SelectTarget(<API key>,0)) { if (pTarget && pTarget->isAlive()) DoCast(pTarget, SPELL_OLD_WOUNDS); } uiOldWoundsTimer = 23000; }else uiOldWoundsTimer -= uiDiff; if (uiWakingNightmare <= uiDiff) { DoCast(me, <API key>); uiWakingNightmare = 15000; }else uiWakingNightmare -= uiDiff; if (uiShadowsPastTimer <= uiDiff) { if (Unit* pTarget = SelectTarget(<API key>,1)) { if (pTarget && pTarget->isAlive()) DoCast(pTarget,SPELL_SHADOWS_PAST); } uiShadowsPastTimer = 20000; }else uiShadowsPastTimer -= uiDiff; <API key>(); } void JustDied(Unit* pKiller) { if (me->isSummon()) { if (Unit* pSummoner = CAST_SUM(me)->GetSummoner()) { if (pSummoner && pSummoner->isAlive()) CAST_CRE(pSummoner)->AI()->SetData(1,0); } } } }; }; // THIS AI NEEDS MORE IMPROVEMENTS class npc_argent_soldier : public CreatureScript { public: npc_argent_soldier() : CreatureScript("npc_argent_soldier") {} CreatureAI* GetAI(Creature* pCreature) const { return new <API key>(pCreature); } struct <API key> : public npc_escortAI { <API key>(Creature* pCreature) : npc_escortAI(pCreature) { pInstance = (InstanceScript*)pCreature->GetInstanceScript(); me->SetReactState(REACT_DEFENSIVE); me->SetFlag(UNIT_FIELD_FLAGS,<API key>); me->SetFlag(UNIT_FIELD_FLAGS,<API key>); if (GameObject* pGO = GameObject::GetGameObject(*me, pInstance->GetData64(DATA_MAIN_GATE))) pInstance->HandleGameObject(pGO->GetGUID(),true); SetDespawnAtEnd(false); uiWaypoint = 0; } InstanceScript* pInstance; uint8 uiWaypoint; uint32 uiStrikeTimer; uint32 uiCleaveTimer; uint32 uiPummelTimer; uint32 uiPainTimer; uint32 uiMindTimer; uint32 uiSsmiteTimer; uint32 uiFontTimer; uint32 uiLightTimer; uint32 uiFlurryTimer; uint32 uiFinalTimer; uint32 uiDivineTimer; uint32 uiResetTimer; void Reset() { uiStrikeTimer = 4000; uiCleaveTimer = 5000; uiPummelTimer = 8000; uiPainTimer = 6000; uiMindTimer = 7000; uiSsmiteTimer = 9000; uiResetTimer = 3000; uiLightTimer = 2000; uiFontTimer = 30000; uiFlurryTimer = 14000; uiFinalTimer = 21000; uiDivineTimer = 20000; } void WaypointReached(uint32 uiPoint) { if (uiPoint == 0) { switch(uiWaypoint) { case 1: me->SetOrientation(4.60f); me->SetReactState(REACT_AGGRESSIVE); me->RemoveFlag(UNIT_FIELD_FLAGS, <API key>|<API key>); break; break; } } if (uiPoint == 1) { switch(uiWaypoint) { case 0: me->SetOrientation(5.81f); me->SetReactState(REACT_AGGRESSIVE); me->RemoveFlag(UNIT_FIELD_FLAGS, <API key>|<API key>); break; case 2: me->SetOrientation(3.39f); me->SetReactState(REACT_AGGRESSIVE); me->RemoveFlag(UNIT_FIELD_FLAGS, <API key>|<API key>); if (GameObject* pGO = GameObject::GetGameObject(*me, pInstance->GetData64(DATA_MAIN_GATE))) pInstance->HandleGameObject(pGO->GetGUID(),false); break; } me-><API key>(); } } void SetData(uint32 uiType, uint32 uiData) { switch(me->GetEntry()) { case <API key>: switch(uiType) { case 0: AddWaypoint(0,737.14f,655.42f,412.88f); AddWaypoint(1,712.14f,628.42f,411.88f); break; case 1: AddWaypoint(0,742.44f,650.29f,411.79f); break; case 2: AddWaypoint(0,756.14f,655.42f,411.88f); AddWaypoint(1,781.626f, 629.383f, 411.892f); break; } break; case NPC_ARGENT_MONK: switch(uiType) { case 0: AddWaypoint(0,737.14f,655.42f,412.88f); AddWaypoint(1,713.12f,632.97f,411.90f); break; case 1: AddWaypoint(0,746.73f,650.24f,411.56f); break; case 2: AddWaypoint(0,756.14f,655.42f,411.88f); AddWaypoint(1,781.351f, 633.146f, 411.907f); break; } break; case NPC_PRIESTESS: switch(uiType) { case 0: AddWaypoint(0,737.14f,655.42f,412.88f); AddWaypoint(1,715.06f,637.07f,411.91f); break; case 1: AddWaypoint(0,750.72f,650.20f,411.77f); break; case 2: AddWaypoint(0,756.14f,655.42f,411.88f); AddWaypoint(1,780.439f, 636.681f, 411.918f); break; } break; } Start(false,true,0); uiWaypoint = uiType; } void UpdateAI(const uint32 uiDiff) { npc_escortAI::UpdateAI(uiDiff); if (!UpdateVictim()) return; switch(me->GetEntry()) { case <API key>: { if (uiCleaveTimer <= uiDiff) { if (Unit* pTarget = SelectTarget(<API key>,0)) DoCast(pTarget,SPELL_STRIKE); uiCleaveTimer = 20000; } else uiCleaveTimer -= uiDiff; if (uiStrikeTimer <= uiDiff) { if (Unit* pTarget = SelectTarget(<API key>,0)) DoCast(pTarget,SPELL_CLEAVE); uiStrikeTimer = 25000; } else uiStrikeTimer -= uiDiff; if (uiLightTimer <= uiDiff) { DoCast(me,SPELL_LIGHT); uiLightTimer = urand (15000, 17000); } else uiLightTimer -= uiDiff; break; } case NPC_ARGENT_MONK: { if (uiDivineTimer <= uiDiff) { DoCast(me,SPELL_DIVINE); uiDivineTimer = 85000; } else uiDivineTimer -= uiDiff; if (uiFinalTimer <= uiDiff) { DoCast(me,SPELL_FINAL); uiFinalTimer = 70000; } else uiFinalTimer -= uiDiff; if (uiPummelTimer <= uiDiff) { if (Unit* pTarget = SelectTarget(<API key>,0)) DoCast(pTarget,SPELL_PUMMEL); uiPummelTimer = 35000; } else uiPummelTimer -= uiDiff; if (uiFlurryTimer <= uiDiff) { DoCast(me,SPELL_FLURRY); uiFlurryTimer = 22000; } else uiFlurryTimer -= uiDiff; break; } case NPC_PRIESTESS: { if (uiFontTimer <= uiDiff) { DoCast(me,SPELL_FONT); uiFontTimer = urand (15000, 17000); } else uiFontTimer -= uiDiff; if (uiPainTimer <= uiDiff) { if (Unit* pTarget = SelectTarget(<API key>,0)) DoCast(pTarget,SPELL_PAIN); uiPainTimer = 30000; } else uiPainTimer -= uiDiff; if (uiMindTimer <= uiDiff) { if (Unit* pTarget = SelectTarget(<API key>,0)) DoCast(pTarget,SPELL_MIND); uiMindTimer = 90000; } else uiMindTimer -= uiDiff; if (uiSsmiteTimer <= uiDiff) { if (Unit* pTarget = SelectTarget(<API key>,0)) DoCast(pTarget,SPELL_SSMITE); uiSsmiteTimer = 25000; } else uiSsmiteTimer -= uiDiff; break; } } <API key>(); } void JustDied(Unit* pKiller) { if (pInstance) pInstance->SetData(<API key>,pInstance->GetData(<API key>) + 1); } }; }; void <API key>() { new boss_eadric(); new <API key>(); new boss_paletress(); new npc_memory(); new npc_argent_soldier(); }
#include "client.hh" #include "game.hh" #include "display.hh" #include "options.hh" #include "server.hh" #include "gui/HelpMenu.hh" #include "main.hh" #include "gui/GameMenu.hh" #include "SoundEngine.hh" #include "SoundEffectManager.hh" #include "MusicManager.hh" #include "player.hh" #include "world.hh" #include "nls.hh" #include "StateManager.hh" #include "lev/Index.hh" #include "lev/PersistentIndex.hh" #include "lev/Proxy.hh" #include "lev/RatingManager.hh" #include "lev/ScoreManager.hh" #include "ecl_sdl.hh" #include "enet/enet.h" #include <cctype> #include <cstring> #include <cassert> #include <algorithm> #include <iostream> using namespace enigma::client; using namespace ecl; using namespace std; #include "client_internal.hh" namespace { /*! Display a message and change the current mouse speed. */ void set_mousespeed (double speed) { int s = round_nearest<int>(speed); options::SetMouseSpeed (s); s = round_nearest<int> (options::GetMouseSpeed ()); Msg_ShowText(strf(_("Mouse speed: %d"), s), false, 2.0); } /*! Generate the message that is displayed when the level starts. */ std::string displayedLevelInfo (lev::Proxy *level) { std::string text; std::string tmp; tmp = level->getLocalizedString("title"); if (tmp.empty()) tmp = _("Another nameless level"); text = string("\"")+ tmp +"\""; tmp = level->getAuthor(); if (!tmp.empty()) text += _(" by ") + tmp; tmp = level->getLocalizedString("subtitle"); if (!tmp.empty() && tmp != "subtitle") text += string(" - \"")+ tmp + "\""; tmp = level->getCredits(false); if (!tmp.empty()) text += string(" - Credits: ")+ tmp; tmp = level->getDedication(false); if (!tmp.empty()) text += string(" - Dedication: ")+ tmp; return text; } } namespace { Client client_instance; const char HSEP = '^'; // history separator (use character that user cannot use) } #define CLIENT client_instance Client::Client() : m_state (cls_idle), m_levelname(), m_hunt_against_time(0), m_cheater(false), m_user_input() { m_network_host = 0; } Client::~Client() { network_stop(); } void Client::init() { std::string command; for (int i = 0; i < 10; i++) { command = app.state->getString(ecl::strf("CommandHistory#%d", i).c_str()); if (command.size() > 0) commandHistory.push_back(command); else break; } } void Client::shutdown() { for (int i = 0; i < commandHistory.size(); i++) app.state->setProperty(ecl::strf("CommandHistory#%d", i).c_str(), commandHistory[i].c_str()); } bool Client::network_start() { if (m_network_host) return true; m_network_host = enet_host_create (NULL, 1 /* only allow 1 outgoing connection */, 57600 / 8 /* 56K modem with 56 Kbps downstream bandwidth */, 14400 / 8 /* 56K modem with 14 Kbps upstream bandwidth */); if (m_network_host == NULL) { fprintf (stderr, "An error occurred while trying to create an ENet client host.\n"); return false; } ENetAddress sv_address; ENetPeer *m_server; /* Connect to some.server.net:1234. */ <API key> (&sv_address, "localhost"); sv_address.port = 12345; /* Initiate the connection, allocating the two channels 0 and 1. */ m_server = enet_host_connect (m_network_host, &sv_address, 2); if (m_server == NULL) { fprintf (stderr, "No available peers for initiating an ENet connection.\n"); return false; } // Wait up to 5 seconds for the connection attempt to succeed. ENetEvent event; if (enet_host_service (m_network_host, &event, 5000) > 0 && event.type == <API key>) { fprintf (stderr, "Connection to some.server.net:1234 succeeded."); return true; } else { /* Either the 5 seconds are up or a disconnect event was */ /* received. Reset the peer in the event the 5 seconds */ /* had run out without any significant event. */ enet_peer_reset (m_server); m_server = 0; fprintf (stderr, "Connection to localhost:12345 failed."); return false; } } void Client::network_stop () { if (m_network_host) enet_host_destroy (m_network_host); if (m_server) enet_peer_reset (m_server); } void Client::handle_events() { SDL_Event e; //senquack: added joystick support int joyx = 0, joyy = 0; double fjoyx = 0, fjoyy = 0; uint8_t hat_status; // For reading DPAD int analog_deadzone; double analog_speed; int gsensor_deadzone, gsensor_centerx, gsensor_centery; const double gsensor_max = 26200.0; // Maximum reading the gsensor on GCW can report double gsensor_speed; static double speed_scale = 1.0; // Use only the g-sensor if it is enabled if (options::GetGsensorEnabled() && joy_gsensor) { gsensor_deadzone = options::GetGsensorDeadzone() * 500; gsensor_speed = (double)options::GetGsensorSpeed() * 5.0; joyx = SDL_JoystickGetAxis(joy_gsensor, 0); joyy = SDL_JoystickGetAxis(joy_gsensor, 1); //Translate readings to the calibrated center for x and y gsensor_centerx = options::GetGsensorCenterX(); gsensor_centery = options::GetGsensorCenterY(); joyx -= gsensor_centerx; joyy -= gsensor_centery; if (abs(joyx) > gsensor_deadzone || abs(joyy) > gsensor_deadzone) { fjoyx = (double)joyx / gsensor_max; fjoyy = (double)joyy / gsensor_max; server::Msg_MouseForce ( V2 (fjoyx * gsensor_speed * speed_scale, fjoyy * gsensor_speed * speed_scale)); } } else if (joy_gcw0) { // Note: we also use the analog speed for the DPAD analog_speed = (double)options::GetAnalogSpeed() * 5.0; analog_deadzone = options::GetAnalogDeadzone() * 500; // First, try reading the DPAD, and if it is pressed, bypass reading the analog hat_status = SDL_JoystickGetHat(joy_gcw0, 0); if (hat_status) { // A direction is pressed if (hat_status & SDL_HAT_UP) { joyy = -32767.0; } if (hat_status & SDL_HAT_DOWN) { joyy = 32767.0; } if (hat_status & SDL_HAT_LEFT) { joyx = -32767.0; } if (hat_status & SDL_HAT_RIGHT) { joyx = 32767.0; } } else { joyx=SDL_JoystickGetAxis(joy_gcw0, 0); joyy=SDL_JoystickGetAxis(joy_gcw0, 1); } if (abs(joyx) > analog_deadzone || abs(joyy) > analog_deadzone) { fjoyx = (double)joyx / 32767.0; fjoyy = (double)joyy / 32767.0; // This can help alleviate the non-linear sensitivity of the stick, but ultimately I went without it: // fjoyx = fjoyx * fjoyx * fjoyx; // fjoyy = fjoyy * fjoyy * fjoyy; server::Msg_MouseForce ( V2 (fjoyx * analog_speed * speed_scale, fjoyy * analog_speed * speed_scale)); } } while (SDL_PollEvent(&e)) { switch (e.type) { case SDL_KEYDOWN: on_keydown(e); break; case SDL_MOUSEMOTION: if (abs(e.motion.xrel) > 300 || abs(e.motion.yrel) > 300) { fprintf(stderr, "mouse event with %i, %i\n", e.motion.xrel, e.motion.yrel); } else server::Msg_MouseForce (options::GetDouble("MouseSpeed") * V2 (e.motion.xrel, e.motion.yrel)); break; //senquack - added joystick support: case SDL_JOYBUTTONDOWN: <API key>(); if (e.jbutton.button == 0) { // B button is pressed ; apply speed scale speed_scale = (double)options::GetSpeedScale1() / 10.0; } else if (e.jbutton.button == 3) { // X button is pressed ; apply speed scale speed_scale = (double)options::GetSpeedScale2() / 10.0; } else if (e.jbutton.button == 2) { // Y button is pressed ; apply speed scale speed_scale = (double)options::GetSpeedScale3() / 10.0; } else if (e.jbutton.button == 4) { // SELECT is pressed ; rotate inventory like mouse scrollwheel rotate_inventory(-1); } else if (e.jbutton.button == 6) { // L trigger is pressed ; rotate inventory like mouse scrollwheel rotate_inventory(+1); } else if (e.jbutton.button == 1 || e.jbutton.button == 7) { // A button or R trigger is pressed ; use inventory item server::Msg_ActivateItem(); } else if (e.jbutton.button == 5) { // START button is pressed ; open menu show_menu(true); } break; case SDL_JOYBUTTONUP: <API key>(); if (e.jbutton.button == 3) { // X button released ; normal marble movement speed_scale = 1.0; } else if (e.jbutton.button == 2) { // Y button is released ; normal marble movement speed_scale = 1.0; } else if (e.jbutton.button == 0) { // B button is released ; normal marble movement speed_scale = 1.0; } break; case SDL_MOUSEBUTTONDOWN: case SDL_MOUSEBUTTONUP: on_mousebutton(e); break; case SDL_ACTIVEEVENT: { <API key>(); if (e.active.gain == 0 && !video::IsFullScreen()) show_menu(false); break; } case SDL_VIDEOEXPOSE: { display::RedrawAll(video::GetScreen()); break; } case SDL_QUIT: client::Msg_Command("abort"); app.bossKeyPressed = true; break; } } } //senquack - added joystick support //void Client::<API key>() // int b = SDL_GetMouseState(0, 0); // player::InhibitPickup((b & SDL_BUTTON(1)) || (b & SDL_BUTTON(3))); void Client::<API key>() { //senquack - normally, you can hold the left or right mouse buttons to inhibit picking up a item.. // since we aren't goint to have a right mouse button during play, we'll use the <API key> for this. int b = SDL_GetMouseState(0, 0); int gcw_inhibit_pickup = 0; if (joy_gcw0) { gcw_inhibit_pickup = <API key>(joy_gcw0, 1) | <API key>(joy_gcw0, 6) | <API key>(joy_gcw0, 7); } player::InhibitPickup(gcw_inhibit_pickup || (b & SDL_BUTTON(1)) || (b & SDL_BUTTON(3))); } void Client::on_mousebutton(SDL_Event &e) { if (e.button.state == SDL_PRESSED) { if (e.button.button == 1) { // left mousebutton -> activate first item in inventory server::Msg_ActivateItem (); } else if (e.button.button == 3|| e.button.button == 4) { // right mousebutton, wheel down -> rotate inventory rotate_inventory(+1); } else if (e.button.button == 5) { // wheel down -> inverse rotate inventory rotate_inventory(-1); } } <API key>(); } void Client::rotate_inventory (int direction) { m_user_input = ""; STATUSBAR->hide_text(); player::RotateInventory(direction); } void Client::process_userinput() { // no addition of existing commands to history if (consoleIndex == 1) { for (int i = 0; i < commandHistory.size(); i++) { if (newCommand == commandHistory[i]) { // take existing history command instead of new command consoleIndex = i + 2; break; } } } // resort history with selected command at bottom if (consoleIndex == 1) { if (commandHistory.size() < 10) commandHistory.push_back(std::string("")); for (int i = 8; i >= 0; i if (i < commandHistory.size() - 1) commandHistory[i+1] = commandHistory[i]; } } else if (consoleIndex > 1) { newCommand = commandHistory[consoleIndex - 2]; for (int i = consoleIndex - 3; i >= 0; i if (i < commandHistory.size()) commandHistory[i+1] = commandHistory[i]; } } else { // document history or inventory return; } commandHistory[0] = newCommand; newCommand = ""; consoleIndex = 0; STATUSBAR->hide_text(); server::Msg_Command(commandHistory[0]); } void Client::user_input_append(char c) { if (consoleIndex <= 0) { consoleIndex = 1; newCommand = c; } else if (consoleIndex == 1) { newCommand += c; } else { newCommand = commandHistory[consoleIndex - 2] + c; consoleIndex = 1; } Msg_ShowText(newCommand, false); } void Client::<API key>() { if (consoleIndex == 1) { newCommand.erase(newCommand.size() - 1, 1); if (!newCommand.empty()) Msg_ShowText(newCommand, false); else { consoleIndex = 0; STATUSBAR->hide_text(); } } else if (consoleIndex > 1) { newCommand = commandHistory[consoleIndex - 2]; newCommand.erase(newCommand.size() - 1, 1); if (!newCommand.empty()) { consoleIndex = 1; Msg_ShowText(newCommand, false); } else { consoleIndex = 0; STATUSBAR->hide_text(); } } } void Client::user_input_previous() { if (consoleIndex < 0) { ++consoleIndex; int docIndex = documentHistory.size() + consoleIndex; if (docIndex < documentHistory.size()) { Msg_ShowText(documentHistory[docIndex], true); } else { consoleIndex = 0; STATUSBAR->hide_text(); } } else if (consoleIndex == 0) { if (newCommand.length() > 0) { consoleIndex = 1; Msg_ShowText(newCommand, false); } else if (commandHistory.size() > 0) { consoleIndex = 2; Msg_ShowText(commandHistory[0], false); } } else if (consoleIndex <= commandHistory.size()) { ++consoleIndex; Msg_ShowText(commandHistory[consoleIndex - 2], false); } else { // top of history or new command without history consoleIndex = 0; STATUSBAR->hide_text(); } } void Client::user_input_next() { if (consoleIndex <= 0) { --consoleIndex; int docIndex = documentHistory.size() + consoleIndex; if (docIndex >= 0) { Msg_ShowText(documentHistory[docIndex], true); } else { consoleIndex = 0; STATUSBAR->hide_text(); } } else if (consoleIndex == 1 || (consoleIndex == 2 && newCommand.size() == 0)) { consoleIndex = 0; STATUSBAR->hide_text(); } else if (consoleIndex > 1) { --consoleIndex; Msg_ShowText(consoleIndex == 1 ? newCommand : commandHistory[consoleIndex - 2], false); } } void Client::on_keydown(SDL_Event &e) { SDLKey keysym = e.key.keysym.sym; SDLMod keymod = e.key.keysym.mod; if (keymod & KMOD_CTRL) { switch (keysym) { case SDLK_a: server::Msg_Command ("restart"); break; case SDLK_F3: if (keymod & KMOD_SHIFT) { // force a reload from file lev::Proxy::releaseCache(); server::Msg_Command ("restart"); } default: break; }; } else if (keymod & KMOD_ALT) { switch (keysym) { case SDLK_x: abort(); break; case SDLK_t: if (enigma::WizardMode) { Screen *scr = video::GetScreen(); ecl::TintRect(scr->get_surface (), display::GetGameArea(), 100, 100, 100, 0); scr->update_all(); } break; case SDLK_s: if (enigma::WizardMode) { server::Msg_Command ("god"); } break; case SDLK_RETURN: { video::TempInputGrab (false); video::ToggleFullscreen (); sdl::FlushEvents(); } break; default: break; }; } else if (keymod & KMOD_META) { switch (keysym) { case SDLK_q: // Mac OS X application quit sequence app.bossKeyPressed = true; abort(); break; default: break; }; } else { switch (keysym) { case SDLK_ESCAPE: if (keymod & KMOD_SHIFT) { app.bossKeyPressed = true; abort(); } else { show_menu(true); } break; case SDLK_LEFT: set_mousespeed(options::GetMouseSpeed() - 1); break; case SDLK_RIGHT: set_mousespeed(options::GetMouseSpeed() + 1); break; case SDLK_TAB: rotate_inventory(+1); break; case SDLK_F1: show_help(); break; case SDLK_F2: // display hint break; case SDLK_F3: if (keymod & KMOD_SHIFT) server::Msg_Command ("restart"); else server::Msg_Command ("suicide"); break; case SDLK_F4: Msg_AdvanceLevel(lev::ADVANCE_STRICTLY); break; case SDLK_F5: Msg_AdvanceLevel(lev::ADVANCE_UNSOLVED); break; case SDLK_F6: Msg_JumpBack(); break; case SDLK_F10: { lev::Proxy *level = server::LoadedProxy; std::string basename = std::string("screenshots/") + level-><API key>(); std::string fname = basename + ".png"; std::string fullPath; int i = 1; while (app.resourceFS->findFile(fname, fullPath)) { fname = basename + ecl::strf("#%d", i++) + ".png"; } std::string savePath = app.userImagePath + "/" + fname; video::Screenshot(savePath); break; } case SDLK_RETURN: process_userinput(); break; case SDLK_BACKSPACE: <API key>(); break; case SDLK_UP: user_input_previous(); break; case SDLK_DOWN: user_input_next(); break; default: if (e.key.keysym.unicode && (e.key.keysym.unicode & 0xff80) == 0) { char ascii = static_cast<char>(e.key.keysym.unicode & 0x7f); if (isalnum (ascii) || strchr(" .-!\"$%&/()=?{[]}\\#'+*~_,;.:<>|", ascii)) // don't add '^' or change history code { user_input_append(ascii); } } break; } } } static const char *helptext_ingame[] = { N_("Left mouse button:"), N_("Activate/drop leftmost inventory item"), N_("Right mouse button:"), N_("Rotate inventory items"), N_("Escape:"), N_("Show game menu"), N_("Shift+Escape:"), N_("Quit game immediately"), N_("F1:"), N_("Show this help"), N_("F3:"), N_("Kill current marble"), N_("Shift+F3:"), N_("Restart the current level"), N_("F4:"), N_("Skip to next level"), N_("F5:"), 0, // see below N_("F6:"), N_("Jump back to last level"), N_("F10:"), N_("Make screenshot"), N_("Left/right arrow:"), N_("Change mouse speed"), N_("Alt+x:"), N_("Return to level menu"), // N_("Alt+Return:"), N_("Switch between fullscreen and window"), 0 }; void Client::show_help() { server::Msg_Pause (true); video::TempInputGrab grab(false); helptext_ingame[17] = app.state->getInt("NextLevelMode") == lev::NEXT_LEVEL_NOT_BEST ? _("Skip to next level for best score hunt") : _("Skip to next unsolved level"); video::ShowMouse(); gui::displayHelp(helptext_ingame, 200); video::HideMouse(); <API key>(); if (m_state == cls_game) display::RedrawAll(video::GetScreen()); server::Msg_Pause (false); game::ResetGameTimer(); if (app.state->getInt("NextLevelMode") == lev::NEXT_LEVEL_NOT_BEST) server::Msg_Command ("restart"); // inhibit cheating } void Client::show_menu(bool isESC) { if (isESC && server::LastMenuTime != 0.0 && server::LevelTime - server::LastMenuTime < 0.3) { return; // protection against ESC D.o.S. attacks } if (isESC && server::LastMenuTime != 0.0 && server::LevelTime - server::LastMenuTime < 0.35) { server::MenuCount++; if (server::MenuCount > 10) mark_cheater(); } server::Msg_Pause (true); ecl::Screen *screen = video::GetScreen(); video::TempInputGrab grab (false); video::ShowMouse(); { int x, y; display::<API key>(&x, &y); enigma::gui::GameMenu(x, y).manage(); } video::HideMouse(); <API key>(); if (m_state == cls_game) display::RedrawAll(screen); server::Msg_Pause (false); game::ResetGameTimer(); if (isESC) // protection against ESC D.o.S. attacks server::LastMenuTime = server::LevelTime; } void Client::draw_screen() { switch (m_state) { case cls_error: { Screen *scr = video::GetScreen(); GC gc (scr->get_surface()); blit(gc, 0,0, enigma::GetImage("menu_bg", ".jpg")); Font *f = enigma::GetFont("menufont"); vector<string> lines; ecl::split_copy (m_error_message, '\n', back_inserter(lines)); int x = 60; int y = 60; int yskip = 25; const video::VMInfo *vminfo = video::GetInfo(); int width = vminfo->width - 120; for (unsigned i=0; i<lines.size(); ) { std::string::size_type breakPos = ecl::breakString (f, lines[i], " ", width); f->render(gc, x, y, lines[i].substr(0,breakPos).c_str()); y += yskip; if (breakPos != lines[i].size()) { // process rest of line lines[i] = lines[i].substr(breakPos); } else { // process next line i++; } } scr->update_all(); scr->flush_updates(); //senquack - NEW: copy backbuffer to our hidden real SDL screen (to allow double buffering): video::FlipBackbuffer(); break; } default: break; } } std::string Client::init_hunted_time() { std::string hunted; m_hunt_against_time = 0; if (app.state->getInt("NextLevelMode") == lev::NEXT_LEVEL_NOT_BEST) { lev::Index *ind = lev::Index::getCurrentIndex(); lev::ScoreManager *scm = lev::ScoreManager::instance(); lev::Proxy *curProxy = ind->getCurrent(); lev::RatingManager *ratingMgr = lev::RatingManager::instance(); int difficulty = app.state->getInt("Difficulty"); int wr_time = ratingMgr->getBestScore(curProxy, difficulty); int best_user_time = scm->getBestUserScore(curProxy, difficulty); if (best_user_time>0 && (wr_time == -1 || best_user_time<wr_time)) { m_hunt_against_time = best_user_time; hunted = "you"; } else if (wr_time>0) { m_hunt_against_time = wr_time; hunted = ratingMgr->getBestScoreHolder(curProxy, difficulty); } // STATUSBAR->set_timerstart(-m_hunt_against_time); } return hunted; } void Client::tick (double dtime) { const double timestep = 0.01; // 10ms switch (m_state) { case cls_idle: break; case cls_preparing_game: { video::TransitionEffect *fx = m_effect.get(); if (fx && !fx->finished()) { fx->tick (dtime); } else { m_effect.reset(); server::Msg_StartGame(); m_state = cls_game; m_timeaccu = 0; m_total_game_time = 0; sdl::FlushEvents(); } break; } case cls_game: if (app.state->getInt("NextLevelMode") == lev::NEXT_LEVEL_NOT_BEST) { int old_second = round_nearest<int> (m_total_game_time); int second = round_nearest<int> (m_total_game_time + dtime); if (m_hunt_against_time && old_second <= m_hunt_against_time) { if (second > m_hunt_against_time) { // happens exactly once when par has passed by lev::Index *ind = lev::Index::getCurrentIndex(); lev::ScoreManager *scm = lev::ScoreManager::instance(); lev::Proxy *curProxy = ind->getCurrent(); lev::RatingManager *ratingMgr = lev::RatingManager::instance(); int difficulty = app.state->getInt("Difficulty"); int wr_time = ratingMgr->getBestScore(curProxy, difficulty); int best_user_time = scm->getBestUserScore(curProxy, difficulty); string message; if (wr_time>0 && (best_user_time<0 || best_user_time>wr_time)) { message = string(_("Too slow for ")) + ratingMgr->getBestScoreHolder(curProxy, difficulty) + "... Ctrl-A"; } else { message = string(_("You are slow today ... Ctrl-A")); } client::Msg_PlaySound("shatter", 1.0); Msg_ShowText(message, true, 2.0); } else { if (old_second<second && // tick every second (second >= (<API key>) || // at least 5 seconds second >= round_nearest<int> (m_hunt_against_time*.8))) // or the last 20% before par { client::Msg_PlaySound("pickup", 1.0); } } } } m_total_game_time += dtime; STATUSBAR->set_time (m_total_game_time); // fall through case cls_finished: { m_timeaccu += dtime; for (;m_timeaccu >= timestep; m_timeaccu -= timestep) { display::Tick (timestep); } display::Redraw(video::GetScreen()); handle_events(); break; } case cls_gamemenu: break; case cls_gamehelp: break; case cls_abort: break; case cls_error: { SDL_Event e; while (SDL_PollEvent(&e)) { switch (e.type) { case SDL_QUIT: app.bossKeyPressed = true; // fall through case SDL_KEYDOWN: client::Msg_Command("abort"); break; } } } break; } } void Client::level_finished() { lev::Index *ind = lev::Index::getCurrentIndex(); lev::ScoreManager *scm = lev::ScoreManager::instance(); lev::Proxy *curProxy = ind->getCurrent(); lev::RatingManager *ratingMgr = lev::RatingManager::instance(); int difficulty = app.state->getInt("Difficulty"); int wr_time = ratingMgr->getBestScore(curProxy, difficulty); int best_user_time = scm->getBestUserScore(curProxy, difficulty); int par_time = ratingMgr->getParScore(curProxy, difficulty); int level_time = round_nearest<int> (m_total_game_time); string text; bool timehunt_restart = false; std::string par_name = ratingMgr->getBestScoreHolder(curProxy, difficulty); for (int cut = 2; par_name.length() > 55; cut++) par_name = ratingMgr->getBestScoreHolder(curProxy, difficulty, cut); if (wr_time > 0) { if (best_user_time<0 || best_user_time>wr_time) { if (level_time == wr_time) text = string(_("Exactly the world record of "))+par_name+"!"; else if (level_time<wr_time) text = _("Great! A new world record!"); } } if (text.length() == 0 && best_user_time>0) { if (level_time == best_user_time) { text = _("Again your personal record..."); if (app.state->getInt("NextLevelMode") == lev::NEXT_LEVEL_NOT_BEST) timehunt_restart = true; // when hunting yourself: Equal is too slow } else if (level_time<best_user_time) { if (par_time >= 0 && level_time <= par_time) text = _("New personal record - better than par!"); // Uncomment the following lines to show the "but over par!"-part. // (This has been criticised as demoralizing.) //else if (par_time >= 0) // text = _("New personal record, but over par!"); else text = _("New personal record!"); } } if (app.state->getInt("NextLevelMode") == lev::NEXT_LEVEL_NOT_BEST && (wr_time>0 || best_user_time>0)) { bool with_par = best_user_time == -1 || (wr_time >0 && wr_time<best_user_time); int behind = level_time - (with_par ? wr_time : best_user_time); if (behind>0) { if (best_user_time>0 && level_time<best_user_time && with_par) { text = _("Your record, "); } else { text = ""; } text += ecl::timeformat(behind); if (with_par) text += _("behind world record."); else text += _("behind your record."); timehunt_restart = true; // time hunt failed -> repeat level } } if (text.length() == 0) { if (par_time >= 0 && level_time <= par_time) text = _("Level finished - better than par!"); // Uncomment the following lines to show the "but over par!"-part. // (This has been criticised as demoralizing.) //else if (par_time >= 0) // text = _("Level finished, but over par!"); else text = _("Level finished!"); } if (m_cheater) text += _(" Cheater!"); Msg_ShowText(text, false); if (!m_cheater) { scm->updateUserScore(curProxy, difficulty, level_time); // save score (just in case Enigma crashes when loading next level) lev::ScoreManager::instance()->save(); } if (timehunt_restart) server::Msg_Command("restart"); else m_state = cls_finished; } void Client::level_loaded(bool isRestart) { lev::Index *ind = lev::Index::getCurrentIndex(); lev::ScoreManager *scm = lev::ScoreManager::instance(); lev::Proxy *curProxy = ind->getCurrent(); // update window title video::SetCaption(ecl::strf(_("Enigma pack %s - level #%d: %s"), ind->getName().c_str(), ind->getCurrentLevel(), curProxy->getTitle().c_str()).c_str()); std::string hunted = init_hunted_time(); // sets m_hunt_against_time (used below) documentHistory.clear(); consoleIndex = 0; // show level information (name, author, etc.) std::string displayed_info = ""; if (m_hunt_against_time>0) { if (hunted == "you") displayed_info = _("Your record: "); else displayed_info = _("World record to beat: "); displayed_info += ecl::timeformat(m_hunt_against_time); //+ _(" by ") +hunted; // makes the string too long in many levels Msg_ShowDocument(displayed_info, true, 4.0); } else { displayed_info = displayedLevelInfo(curProxy); Msg_ShowDocument(displayed_info, true, 2.0); } sound::StartLevelMusic(); // start screen transition GC gc(video::BackBuffer()); display::DrawAll(gc); m_effect.reset (video::MakeEffect ((isRestart ? video::TM_SQUARES : video::TM_PUSH_RANDOM), video::BackBuffer())); m_cheater = false; m_state = cls_preparing_game; } void Client::handle_message (Message *m) { // @@@ unused switch (m->type) { case CLMSG_LEVEL_LOADED: break; default: fprintf (stderr, "Unhandled client event: %d\n", m->type); break; } } void Client::error (const string &text) { m_error_message = text; m_state = cls_error; draw_screen(); } void Client::registerDocument(std::string text) { documentHistory.push_back(text); consoleIndex = -1; } void Client::finishedText() { consoleIndex = 0; } void client::ClientInit() { CLIENT.init(); } void client::ClientShutdown() { CLIENT.shutdown(); } bool client::NetworkStart() { return CLIENT.network_start(); } void client::Msg_LevelLoaded(bool isRestart) { CLIENT.level_loaded(isRestart); } void client::Tick (double dtime) { CLIENT.tick (dtime); sound::Tick (dtime); } void client::Stop() { CLIENT.stop (); } void client::Msg_AdvanceLevel (lev::LevelAdvanceMode mode) { lev::Index *ind = lev::Index::getCurrentIndex(); // log last played level lev::PersistentIndex::addCurrentToHistory(); if (ind->advanceLevel(mode)) { // now we may advance server::Msg_LoadLevel(ind->getCurrent(), false); } else client::Msg_Command("abort"); } void client::Msg_JumpBack() { // log last played level lev::PersistentIndex::addCurrentToHistory(); server::Msg_JumpBack(); } bool client::AbortGameP() { return CLIENT.abort_p(); } void client::Msg_Command(const string& cmd) { if (cmd == "abort") { CLIENT.abort(); } else if (cmd == "level_finished") { client::Msg_PlaySound("finished", 1.0); CLIENT.level_finished(); } else if (cmd == "cheater") { CLIENT.mark_cheater(); } else if (cmd == "easy_going") { CLIENT.easy_going(); } else { enigma::Log << "Warning: Client received unknown command '" << cmd << "'\n"; } } void client::Msg_PlayerPosition (unsigned iplayer, const V2 &pos) { if (iplayer == (unsigned)player::CurrentPlayer()) { sound::SetListenerPosition (pos); display::SetReferencePoint (pos); } } void client::Msg_PlaySound (const std::string &wavfile, const ecl::V2 &pos, double relative_volume) { sound::EmitSoundEvent (wavfile.c_str(), pos, relative_volume); } void client::Msg_PlaySound (const std::string &wavfile, double relative_volume) { sound::EmitSoundEvent (wavfile.c_str(), V2(), relative_volume); } void client::Msg_Sparkle (const ecl::V2 &pos) { display::AddEffect (pos, "ring-anim", true); } void client::Msg_ShowText(const std::string &text, bool scrolling, double duration) { STATUSBAR->show_text (text, scrolling, duration); } void client::Msg_ShowDocument(const std::string &text, bool scrolling, double duration) { CLIENT.registerDocument(text); Msg_ShowText(text, scrolling, duration); } void client::Msg_FinishedText() { CLIENT.finishedText(); } void client::Msg_Error (const std::string &text) { CLIENT.error (text); }
<?php class DbLeads extends ActiveRecord{ public function tableName(){ return 'db_leads'; } public function rules(){ return array( array('userId, propId, type, status', 'required'), array('userId, propId, caseHolder, caseHolderTime, addedBy, updated, created', 'numerical', 'integerOnly'=>true), array('type, initialType, origin, status', 'length', 'max'=>255), array('updated','default', 'value'=>time(), 'setOnEmpty'=>false,'on'=>'update'), array('updated,created','default', 'value'=>time(), 'setOnEmpty'=>false,'on'=>'insert'), array('notes', 'safe'), array('id, userId, propId, type, initialType, origin, status, notes, caseHolder, caseHolderTime, addedBy, updated, created', 'safe', 'on'=>'search'), ); } public function relations(){ return array( 'property' => array(self::BELONGS_TO, 'DbProperties', 'propId'), 'user' => array(self::BELONGS_TO, 'DbUsers', 'userId'), ); } public function attributeLabels(){ return array( 'id' => 'ID', 'userId' => 'User', 'propId' => 'Prop', 'type' => 'Type', 'initialType' => 'Initial Type', 'origin' => 'Origin', 'status' => 'Status', 'notes' => 'Notes', 'caseHolder' => 'Case Holder', 'caseHolderTime' => 'Case Holder Time', 'addedBy' => 'Added By', 'updated' => 'Updated', 'created' => 'Created', ); } public function search(){ $criteria=new CDbCriteria; $criteria->compare('id',$this->id); $criteria->compare('userId',$this->userId); $criteria->compare('propId',$this->propId); $criteria->compare('type',$this->type); $criteria->compare('initialType',$this->initialType); $criteria->compare('origin',$this->origin,true); $criteria->compare('status',$this->status,true); $criteria->compare('notes',$this->notes,true); $criteria->compare('caseHolder',$this->caseHolder); $criteria->compare('caseHolderTime',$this->caseHolderTime); $criteria->compare('addedBy',$this->addedBy); $criteria->compare('updated',$this->updated); $criteria->compare('created',$this->created); return new CActiveDataProvider($this, array( 'criteria'=>$criteria, )); } public static function model($className=__CLASS__){ return parent::model($className); } public function requiredDefaults(){ if(empty($this->status)){ $this->status = 'new'; } } public $types = array( 'Valuation'=>'Valuation', ); public $origins = array( 'call'=>'Call', 'email'=>'Email', 'mailShot'=>'Mail Shot', 'rightmove'=>'Rightmove', 'selfGen' => 'Self Generated', 'viewing'=>'Viewing', 'website'=>'Website', 'zoopla'=>'Zoopla', ); public $statuses = array( 'new'=>'New', 'processing' => 'Processing', 'followUp'=>'Follow Up', 'unavailable'=>'Unavailable', 'dead'=>'Dead', 'business' => 'Business', ); }
html, body {background-image: none; background-color: #fff;} html:after {opacity: 0;} #editor-controls {border-bottom: 1px solid #ddd; margin: 0 0.5em; padding: 0.5em 0; clear: both;} .editor-toolbar {position: relative;} .<API key> {position: absolute; top: 0px; right: 0px; bottom: 0px;} .<API key> .btn {margin-left: 0.5em;} select {padding: 5px 10px; border: 1px solid #cde; background-color: transparent; color: inherit; font-size: inherit; cursor: pointer; -webkit-appearance: none;} select:hover {background-color: #def;} #writing-area header {padding: 1em; margin: 0px; font-size: 1.2em;}
<?php /** * The core plugin class. * * This is used to define <API key>, admin-specific hooks, and * public-facing site hooks. * * Also maintains the unique identifier of this plugin as well as the current * version of the plugin. * * @since 1.0.0 * @package Followers_Scraper * @subpackage Followers_Scraper/includes * @author Alexander Sterpu <st.vojak@gmail.com> */ class Followers_Scraper { /** * The loader that's responsible for maintaining and registering all hooks that power * the plugin. * * @since 1.0.0 * @access protected * @var <API key> $loader Maintains and registers all hooks for the plugin. */ protected $loader; /** * The unique identifier of this plugin. * * @since 1.0.0 * @access protected * @var string $plugin_name The string used to uniquely identify this plugin. */ protected $plugin_name; /** * The current version of the plugin. * * @since 1.0.0 * @access protected * @var string $version The current version of the plugin. */ protected $version; /** * Define the core functionality of the plugin. * * Set the plugin name and the plugin version that can be used throughout the plugin. * Load the dependencies, define the locale, and set the hooks for the admin area and * the public-facing side of the site. * * @since 1.0.0 */ public function __construct() { $this->plugin_name = 'followers-scraper'; $this->version = '1.0.0'; $this->load_dependencies(); $this->set_locale(); $this->define_admin_hooks(); $this->define_public_hooks(); } /** * Load the required dependencies for this plugin. * * Include the following files that make up the plugin: * * - <API key>. Orchestrates the hooks of the plugin. * - <API key>. Defines <API key> functionality. * - <API key>. Defines all hooks for the admin area. * - <API key>. Defines all hooks for the public side of the site. * * Create an instance of the loader which will be used to register the hooks * with WordPress. * * @since 1.0.0 * @access private */ private function load_dependencies() { /** * The class responsible for orchestrating the actions and filters of the * core plugin. */ require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/<API key>.php'; /** * The class responsible for defining <API key> functionality * of the plugin. */ require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/<API key>.php'; /** * The class responsible for defining all actions that occur in the admin area. */ require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/<API key>.php'; /** * The class responsible for defining all actions that occur in the public-facing * side of the site. */ require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/<API key>.php'; $this->loader = new <API key>(); } /** * Define the locale for this plugin for <API key>. * * Uses the <API key> class in order to set the domain and to register the hook * with WordPress. * * @since 1.0.0 * @access private */ private function set_locale() { $plugin_i18n = new <API key>(); $plugin_i18n->set_domain( $this->get_plugin_name() ); $this->loader->add_action( 'plugins_loaded', $plugin_i18n, '<API key>' ); } /** * Register all of the hooks related to the admin area functionality * of the plugin. * * @since 1.0.0 * @access private */ private function define_admin_hooks() { $plugin_admin = new <API key>( $this->get_plugin_name(), $this->get_version() ); $this->loader->add_action( 'plugin_action_links', $plugin_admin, 'links', 2, 2); } /** * Register all of the hooks related to the public-facing functionality * of the plugin. * * @since 1.0.0 * @access private */ private function define_public_hooks() { $plugin_public = new <API key>( $this->get_plugin_name(), $this->get_version() ); $this->loader->add_filter( 'the_posts', $plugin_public, 'post_filter' ); $this->loader->add_action( 'wp_head', $plugin_public, 'add_ajax_url' ); $this->loader->add_action( '<API key>', $plugin_public, 'get_page' ); $this->loader->add_action( '<API key>', $plugin_public, 'get_page' ); $this->loader->add_action( '<API key>', $plugin_public, 'get_followers' ); $this->loader->add_action( '<API key>', $plugin_public, 'get_followers' ); } /** * Run the loader to execute all of the hooks with WordPress. * * @since 1.0.0 */ public function run() { $this->loader->run(); } /** * The name of the plugin used to uniquely identify it within the context of * WordPress and to define <API key> functionality. * * @since 1.0.0 * @return string The name of the plugin. */ public function get_plugin_name() { return $this->plugin_name; } /** * The reference to the class that orchestrates the hooks with the plugin. * * @since 1.0.0 * @return <API key> Orchestrates the hooks of the plugin. */ public function get_loader() { return $this->loader; } /** * Retrieve the version number of the plugin. * * @since 1.0.0 * @return string The version number of the plugin. */ public function get_version() { return $this->version; } }
#include <linux/kernel.h> #include <linux/mm.h> #include <linux/tty.h> #include <linux/tty_driver.h> #include <linux/smp_lock.h> #include <linux/console.h> #include <linux/init.h> #include <linux/module.h> #include <linux/interrupt.h> /* For in_interrupt() */ #include <linux/config.h> #include <linux/delay.h> #include <linux/smp.h> #include <linux/security.h> #include <linux/bootmem.h> #include <asm/uaccess.h> #define __LOG_BUF_LEN (1 << <API key>) /* printk's without a loglevel use this.. */ #define <API key> 4 /* KERN_WARNING */ /* We show everything that is MORE important than this.. */ #define <API key> 1 /* Minimum loglevel we let people use */ #define <API key> 7 /* anything MORE serious than KERN_DEBUG */ <API key>(log_wait); int console_printk[4] = { <API key>, /* console_loglevel */ <API key>, /* <API key> */ <API key>, /* <API key> */ <API key>, /* <API key> */ }; EXPORT_SYMBOL(console_printk); int oops_in_progress; /* * console_sem protects the console_drivers list, and also * provides serialisation for access to the entire console * driver system. */ static DECLARE_MUTEX(console_sem); struct console *console_drivers; /* * This is used for debugging the mess that is the VT code by * keeping track if we have the console semaphore held. It's * definitely not the perfect debug tool (we don't know if _WE_ * hold it are racing, but it helps tracking those weird code * path in the console code where we end up in places I want * locked without the console sempahore held */ static int console_locked; /* * logbuf_lock protects log_buf, log_start, log_end, con_start and logged_chars * It is also used in interesting ways to provide interlocking in * release_console_sem(). */ static spinlock_t logbuf_lock = SPIN_LOCK_UNLOCKED; static char __log_buf[__LOG_BUF_LEN]; static char *log_buf = __log_buf; static int log_buf_len = __LOG_BUF_LEN; #define LOG_BUF_MASK (log_buf_len-1) #define LOG_BUF(idx) (log_buf[(idx) & LOG_BUF_MASK]) /* * The indices into log_buf are not constrained to log_buf_len - they * must be masked before subscripting */ static unsigned long log_start; /* Index into log_buf: next char to be read by syslog() */ static unsigned long con_start; /* Index into log_buf: next char to be sent to consoles */ static unsigned long log_end; /* Index into log_buf: <API key> + 1 */ static unsigned long logged_chars; /* Number of chars produced since last read+clear operation */ /* * Array of consoles built from command line options (console=) */ struct console_cmdline { char name[8]; /* Name of the driver */ int index; /* Minor dev. to use */ char *options; /* Options for the driver */ }; #define MAX_CMDLINECONSOLES 8 static struct console_cmdline console_cmdline[MAX_CMDLINECONSOLES]; static int preferred_console = -1; /* Flag: console code may call schedule() */ static int <API key>; /* * Setup a list of consoles. Called from init/main.c */ static int __init console_setup(char *str) { char name[sizeof(console_cmdline[0].name)]; char *s, *options; int idx; /* * Decode str into name, index, options. */ if (str[0] >= '0' && str[0] <= '9') { strcpy(name, "ttyS"); strncpy(name + 4, str, sizeof(name) - 5); } else strncpy(name, str, sizeof(name) - 1); name[sizeof(name) - 1] = 0; if ((options = strchr(str, ',')) != NULL) *(options++) = 0; #ifdef __sparc__ if (!strcmp(str, "ttya")) strcpy(name, "ttyS0"); if (!strcmp(str, "ttyb")) strcpy(name, "ttyS1"); #endif for(s = name; *s; s++) if (*s >= '0' && *s <= '9') break; idx = simple_strtoul(s, NULL, 10); *s = 0; <API key>(name, idx, options); return 1; } __setup("console=", console_setup); /** * <API key> - add a device to the list of preferred consoles. * * The last preferred console added will be used for kernel messages * and stdin/out/err for init. Normally this is used by console_setup * above to handle user-supplied console arguments; however it can also * be used by arch-specific code either to override the user or more * commonly to provide a default console (ie from PROM variables) when * the user has not supplied one. */ int __init <API key>(char *name, int idx, char *options) { struct console_cmdline *c; int i; /* * See if this tty is not yet registered, and * if we have a slot free. */ for(i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++) if (strcmp(console_cmdline[i].name, name) == 0 && console_cmdline[i].index == idx) { preferred_console = i; return 0; } if (i == MAX_CMDLINECONSOLES) return -E2BIG; preferred_console = i; c = &console_cmdline[i]; memcpy(c->name, name, sizeof(c->name)); c->name[sizeof(c->name) - 1] = 0; c->options = options; c->index = idx; return 0; } static int __init log_buf_len_setup(char *str) { unsigned long size = memparse(str, &str); unsigned long flags; if (size) size = roundup_pow_of_two(size); if (size > log_buf_len) { unsigned long start, dest_idx, offset; char * new_log_buf; new_log_buf = alloc_bootmem(size); if (!new_log_buf) { printk("log_buf_len: allocation failed\n"); goto out; } spin_lock_irqsave(&logbuf_lock, flags); log_buf_len = size; log_buf = new_log_buf; offset = start = min(con_start, log_start); dest_idx = 0; while (start != log_end) { log_buf[dest_idx] = __log_buf[start & (__LOG_BUF_LEN - 1)]; start++; dest_idx++; } log_start -= offset; con_start -= offset; log_end -= offset; <API key>(&logbuf_lock, flags); printk("log_buf_len: %d\n", log_buf_len); } out: return 1; } __setup("log_buf_len=", log_buf_len_setup); /* * Commands to do_syslog: * * 0 -- Close the log. Currently a NOP. * 1 -- Open the log. Currently a NOP. * 2 -- Read from the log. * 3 -- Read all messages remaining in the ring buffer. * 4 -- Read and clear all messages remaining in the ring buffer * 5 -- Clear ring buffer. * 6 -- Disable printk's to console * 7 -- Enable printk's to console * 8 -- Set level of messages printed to console * 9 -- Return number of unread characters in the log buffer * 10 -- Return size of the log buffer */ int do_syslog(int type, char __user * buf, int len) { unsigned long i, j, limit, count; int do_clear = 0; char c; int error = 0; error = security_syslog(type); if (error) return error; switch (type) { case 0: /* Close log */ break; case 1: /* Open log */ break; case 2: /* Read from log */ error = -EINVAL; if (!buf || len < 0) goto out; error = 0; if (!len) goto out; error = verify_area(VERIFY_WRITE,buf,len); if (error) goto out; error = <API key>(log_wait, (log_start - log_end)); if (error) goto out; i = 0; spin_lock_irq(&logbuf_lock); while (!error && (log_start != log_end) && i < len) { c = LOG_BUF(log_start); log_start++; spin_unlock_irq(&logbuf_lock); error = __put_user(c,buf); buf++; i++; cond_resched(); spin_lock_irq(&logbuf_lock); } spin_unlock_irq(&logbuf_lock); if (!error) error = i; break; case 4: /* Read/clear last kernel messages */ do_clear = 1; /* FALL THRU */ case 3: /* Read last kernel messages */ error = -EINVAL; if (!buf || len < 0) goto out; error = 0; if (!len) goto out; error = verify_area(VERIFY_WRITE,buf,len); if (error) goto out; count = len; if (count > log_buf_len) count = log_buf_len; spin_lock_irq(&logbuf_lock); if (count > logged_chars) count = logged_chars; if (do_clear) logged_chars = 0; limit = log_end; /* * __put_user() could sleep, and while we sleep * printk() could overwrite the messages * we try to copy to user space. Therefore * the messages are copied in reverse. <manfreds> */ for(i = 0; i < count && !error; i++) { j = limit-1-i; if (j + log_buf_len < log_end) break; c = LOG_BUF(j); spin_unlock_irq(&logbuf_lock); error = __put_user(c,&buf[count-1-i]); cond_resched(); spin_lock_irq(&logbuf_lock); } spin_unlock_irq(&logbuf_lock); if (error) break; error = i; if(i != count) { int offset = count-error; /* buffer overflow during copy, correct user buffer. */ for(i=0;i<error;i++) { if (__get_user(c,&buf[i+offset]) || __put_user(c,&buf[i])) { error = -EFAULT; break; } cond_resched(); } } break; case 5: /* Clear ring buffer */ logged_chars = 0; break; case 6: /* Disable logging to console */ console_loglevel = <API key>; break; case 7: /* Enable logging to console */ console_loglevel = <API key>; break; case 8: /* Set level of messages printed to console */ error = -EINVAL; if (len < 1 || len > 8) goto out; if (len < <API key>) len = <API key>; console_loglevel = len; error = 0; break; case 9: /* Number of chars in the log buffer */ error = log_end - log_start; break; case 10: /* Size of the log buffer */ error = log_buf_len; break; default: error = -EINVAL; break; } out: return error; } asmlinkage long sys_syslog(int type, char __user * buf, int len) { return do_syslog(type, buf, len); } /* * Crashdump special routine. Don't print to global log_buf, just to the * actual console device(s). */ static void <API key>(const char *buf, unsigned long len) { struct console *con; for (con = console_drivers; con; con = con->next) { if ((con->flags & CON_ENABLED) && con->write) con->write(con, buf, len); } } /* * Call the console drivers on a range of log_buf */ static void <API key>(unsigned long start, unsigned long end) { struct console *con; for (con = console_drivers; con; con = con->next) { if ((con->flags & CON_ENABLED) && con->write) con->write(con, &LOG_BUF(start), end - start); } } /* * Write out chars from start to end - 1 inclusive */ static void <API key>(unsigned long start, unsigned long end, int msg_log_level) { if (msg_log_level < console_loglevel && console_drivers && start != end) { if ((start & LOG_BUF_MASK) > (end & LOG_BUF_MASK)) { /* wrapped write */ <API key>(start & LOG_BUF_MASK, log_buf_len); <API key>(0, end & LOG_BUF_MASK); } else { <API key>(start, end); } } } /* * Call the console drivers, asking them to write out * log_buf[start] to log_buf[end - 1]. * The console_sem must be held. */ static void <API key>(unsigned long start, unsigned long end) { unsigned long cur_index, start_print; static int msg_level = -1; if (((long)(start - end)) > 0) BUG(); cur_index = start; start_print = start; while (cur_index != end) { if ( msg_level < 0 && ((end - cur_index) > 2) && LOG_BUF(cur_index + 0) == '<' && LOG_BUF(cur_index + 1) >= '0' && LOG_BUF(cur_index + 1) <= '7' && LOG_BUF(cur_index + 2) == '>') { msg_level = LOG_BUF(cur_index + 1) - '0'; cur_index += 3; start_print = cur_index; } while (cur_index != end) { char c = LOG_BUF(cur_index); cur_index++; if (c == '\n') { if (msg_level < 0) { /* * printk() has already given us loglevel tags in * the buffer. This code is here in case the * log buffer has wrapped right round and scribbled * on those tags */ msg_level = <API key>; } <API key>(start_print, cur_index, msg_level); msg_level = -1; start_print = cur_index; break; } } } <API key>(start_print, end, msg_level); } static void emit_log_char(char c) { LOG_BUF(log_end) = c; log_end++; if (log_end - log_start > log_buf_len) log_start = log_end - log_buf_len; if (log_end - con_start > log_buf_len) con_start = log_end - log_buf_len; if (logged_chars < log_buf_len) logged_chars++; } /* * Zap console related locks when oopsing. Only zap at most once * every 10 seconds, to leave time for slow consoles to print a * full oops. */ static void zap_locks(void) { static unsigned long oops_timestamp; if (time_after_eq(jiffies, oops_timestamp) && !time_after(jiffies, oops_timestamp + 30*HZ)) return; oops_timestamp = jiffies; /* If a crash is occurring, make sure we can't deadlock */ spin_lock_init(&logbuf_lock); /* And make sure that we print immediately */ init_MUTEX(&console_sem); } /* * This is printk. It can be called from any context. We want it to work. * * We try to grab the console_sem. If we succeed, it's easy - we log the output and * call the console drivers. If we fail to get the semaphore we place the output * into the log buffer and return. The current holder of the console_sem will * notice the new output in release_console_sem() and will send it to the * consoles before releasing the semaphore. * * One effect of this deferred printing is that code which calls printk() and * then changes console_loglevel may break. This is because console_loglevel * is inspected when the actual printing occurs. */ asmlinkage int printk(const char *fmt, ...) { va_list args; int r; va_start(args, fmt); r = vprintk(fmt, args); va_end(args); return r; } asmlinkage int vprintk(const char *fmt, va_list args) { unsigned long flags; int printed_len; char *p; static char printk_buf[1024]; static int log_level_unknown = 1; if (unlikely(oops_in_progress)) zap_locks(); /* This stops the holder of console_sem just where we want him */ spin_lock_irqsave(&logbuf_lock, flags); /* Emit the output into the temporary buffer */ printed_len = vscnprintf(printk_buf, sizeof(printk_buf), fmt, args); if (unlikely(crashdump_mode())) { <API key>(printk_buf, printed_len); <API key>(&logbuf_lock, flags); goto out; } /* * Copy the output into log_buf. If the caller didn't provide * appropriate log level tags, we insert them here */ for (p = printk_buf; *p; p++) { if (log_level_unknown) { if (p[0] != '<' || p[1] < '0' || p[1] > '7' || p[2] != '>') { emit_log_char('<'); emit_log_char(<API key> + '0'); emit_log_char('>'); } log_level_unknown = 0; } emit_log_char(*p); if (*p == '\n') log_level_unknown = 1; } if (!cpu_online(smp_processor_id()) && system_state != SYSTEM_RUNNING) { /* * Some console drivers may assume that per-cpu resources have * been allocated. So don't allow them to be called by this * CPU until it is officially up. We shouldn't be calling into * random console drivers on a CPU which doesn't exist yet.. */ <API key>(&logbuf_lock, flags); goto out; } if (!down_trylock(&console_sem)) { console_locked = 1; /* * We own the drivers. We can drop the spinlock and let * release_console_sem() print the text */ <API key>(&logbuf_lock, flags); <API key> = 0; release_console_sem(); } else { /* * Someone else owns the drivers. We drop the spinlock, which * allows the semaphore holder to proceed and to call the * console drivers with the output which we just produced. */ <API key>(&logbuf_lock, flags); } out: return printed_len; } EXPORT_SYMBOL(printk); EXPORT_SYMBOL(vprintk); /** * acquire_console_sem - lock the console system for exclusive use. * * Acquires a semaphore which guarantees that the caller has * exclusive access to the console system and the console_drivers list. * * Can sleep, returns nothing. */ void acquire_console_sem(void) { if (in_interrupt()) BUG(); down(&console_sem); console_locked = 1; <API key> = 1; } EXPORT_SYMBOL(acquire_console_sem); int is_console_locked(void) { return console_locked; } EXPORT_SYMBOL(is_console_locked); /** * release_console_sem - unlock the console system * * Releases the semaphore which the caller holds on the console system * and the console driver list. * * While the semaphore was held, console output may have been buffered * by printk(). If this is the case, release_console_sem() emits * the output prior to releasing the semaphore. * * If there is output waiting for klogd, we wake it up. * * release_console_sem() may be called from any context. */ void release_console_sem(void) { unsigned long flags; unsigned long _con_start, _log_end; unsigned long wake_klogd = 0; for ( ; ; ) { spin_lock_irqsave(&logbuf_lock, flags); wake_klogd |= log_start - log_end; if (con_start == log_end) break; /* Nothing to print */ _con_start = con_start; _log_end = log_end; con_start = log_end; /* Flush */ <API key>(&logbuf_lock, flags); <API key>(_con_start, _log_end); } console_locked = 0; <API key> = 0; up(&console_sem); <API key>(&logbuf_lock, flags); if (wake_klogd && !oops_in_progress && waitqueue_active(&log_wait)) <API key>(&log_wait); } EXPORT_SYMBOL(release_console_sem); /** <API key> - yield the CPU if required * * If the console code is currently allowed to sleep, and * if this CPU should yield the CPU to another task, do * so here. * * Must be called within acquire_console_sem(). */ void <API key>(void) { if (<API key> && need_resched()) { set_current_state(TASK_RUNNING); schedule(); } } EXPORT_SYMBOL(<API key>); void console_print(const char *s) { printk(KERN_EMERG "%s", s); } EXPORT_SYMBOL(console_print); void console_unblank(void) { struct console *c; /* * Try to get the console semaphore. If someone else owns it * we have to return without unblanking because console_unblank * may be called in interrupt context. */ if (down_trylock(&console_sem) != 0) return; console_locked = 1; <API key> = 0; for (c = console_drivers; c != NULL; c = c->next) if ((c->flags & CON_ENABLED) && c->unblank) c->unblank(); release_console_sem(); } EXPORT_SYMBOL(console_unblank); /* * Return the console tty driver structure and its associated index */ struct tty_driver *console_device(int *index) { struct console *c; struct tty_driver *driver = NULL; acquire_console_sem(); for (c = console_drivers; c != NULL; c = c->next) { if (!c->device) continue; driver = c->device(c, index); if (driver) break; } release_console_sem(); return driver; } /* * Prevent further output on the passed console device so that (for example) * serial drivers can disable console output before suspending a port, and can * re-enable output afterwards. */ void console_stop(struct console *console) { acquire_console_sem(); console->flags &= ~CON_ENABLED; release_console_sem(); } EXPORT_SYMBOL(console_stop); void console_start(struct console *console) { acquire_console_sem(); console->flags |= CON_ENABLED; release_console_sem(); } EXPORT_SYMBOL(console_start); /* * The console driver calls this routine during kernel initialization * to register the console printing procedure with printk() and to * print any messages that were printed by the kernel before the * console driver was initialized. */ void register_console(struct console * console) { int i; unsigned long flags; /* * See if we want to use this console driver. If we * didn't select a console we take the first one * that registers here. */ if (preferred_console < 0) { if (console->index < 0) console->index = 0; if (console->setup == NULL || console->setup(console, NULL) == 0) { console->flags |= CON_ENABLED | CON_CONSDEV; preferred_console = 0; } } /* * See if this console matches one we selected on * the command line. */ for(i = 0; i < MAX_CMDLINECONSOLES && console_cmdline[i].name[0]; i++) { if (strcmp(console_cmdline[i].name, console->name) != 0) continue; if (console->index >= 0 && console->index != console_cmdline[i].index) continue; if (console->index < 0) console->index = console_cmdline[i].index; if (console->setup && console->setup(console, console_cmdline[i].options) != 0) break; console->flags |= CON_ENABLED; console->index = console_cmdline[i].index; if (i == preferred_console) console->flags |= CON_CONSDEV; break; } if (!(console->flags & CON_ENABLED)) return; /* * Put this console in the list - keep the * preferred driver at the head of the list. */ acquire_console_sem(); if ((console->flags & CON_CONSDEV) || console_drivers == NULL) { console->next = console_drivers; console_drivers = console; } else { console->next = console_drivers->next; console_drivers->next = console; } if (console->flags & CON_PRINTBUFFER) { /* * release_console_sem() will print out the buffered messages * for us. */ spin_lock_irqsave(&logbuf_lock, flags); con_start = log_start; <API key>(&logbuf_lock, flags); } release_console_sem(); } EXPORT_SYMBOL(register_console); int unregister_console(struct console * console) { struct console *a,*b; int res = 1; acquire_console_sem(); if (console_drivers == console) { console_drivers=console->next; res = 0; } else { for (a=console_drivers->next, b=console_drivers ; a; b=a, a=b->next) { if (a == console) { b->next = a->next; res = 0; break; } } } /* If last console is removed, we re-enable picking the first * one that gets registered. Without that, pmac early boot console * would prevent fbcon from taking over. */ if (console_drivers == NULL) preferred_console = -1; release_console_sem(); return res; } EXPORT_SYMBOL(unregister_console); /** * tty_write_message - write a message to a certain tty, not just the console. * * This is used for messages that need to be redirected to a specific tty. * We don't put it into the syslog queue right now maybe in the future if * really needed. */ void tty_write_message(struct tty_struct *tty, char *msg) { if (tty && tty->driver->write) tty->driver->write(tty, 0, msg, strlen(msg)); return; } /* * printk rate limiting, lifted from the networking subsystem. * * This enforces a rate limit: not more than one kernel message * every <API key> to make a denial-of-service * attack impossible. */ int __printk_ratelimit(int ratelimit_jiffies, int ratelimit_burst) { static spinlock_t ratelimit_lock = SPIN_LOCK_UNLOCKED; static unsigned long toks = 10*5*HZ; static unsigned long last_msg; static int missed; unsigned long flags; unsigned long now = jiffies; spin_lock_irqsave(&ratelimit_lock, flags); toks += now - last_msg; last_msg = now; if (toks > (ratelimit_burst * ratelimit_jiffies)) toks = ratelimit_burst * ratelimit_jiffies; if (toks >= ratelimit_jiffies) { int lost = missed; missed = 0; toks -= ratelimit_jiffies; <API key>(&ratelimit_lock, flags); if (lost) printk(KERN_WARNING "printk: %d messages suppressed.\n", lost); return 1; } missed++; <API key>(&ratelimit_lock, flags); return 0; } EXPORT_SYMBOL(__printk_ratelimit); /* minimum time in jiffies between messages */ int <API key> = 5*HZ; /* number of messages we send before ratelimiting */ int <API key> = 10; int printk_ratelimit(void) { return __printk_ratelimit(<API key>, <API key>); } EXPORT_SYMBOL(printk_ratelimit);
<?php $ami_host = "localhost"; $ami_user = "admin"; $ami_secret = "elastix456"; $asterisk_version = '1.8'; $dialplan_context = "from_internal"; $fop_path = "/var/www/html/panel/"; ?>
/** @file page/page0zip.cc Compressed page interface Created June 2005 by Marko Makela *******************************************************/ // First include (the generated) my_config.h, to get correct platform defines. #include "my_config.h" #include <map> using namespace std; #define THIS_MODULE #include "page0zip.h" #ifdef UNIV_NONINL # include "page0zip.ic" #endif #undef THIS_MODULE #include "fil0fil.h" #include "fsp0fsp.h" #include "page0page.h" #include "page0zip_dir.h" #include "page0zip_fields.h" #include "page0zip_helper.h" #include "page0zip_stats.h" #include "page0zip_trailer.h" #include "mtr0log.h" #include "dict0dict.h" #include "btr0cur.h" #include "log0recv.h" #include "page0types.h" #ifndef UNIV_HOTBACKUP # include "buf0buf.h" # include "btr0sea.h" # include "dict0boot.h" # include "lock0lock.h" # include "srv0srv.h" # include "zlib_embedded/zlib.h" # include "comp0comp.h" # include "buf0lru.h" # include "srv0mon.h" #else /* !UNIV_HOTBACKUP */ # define <API key>(block, temp_block) ((void) 0) # define <API key>() ((void) 0) #endif /* !UNIV_HOTBACKUP */ #include "blind_fwrite.h" #include "mach0data.h" #include "zlib.h" /* Compression level to be used by zlib. Settable by user. */ UNIV_INTERN uint page_zip_level = <API key>; /* Whether or not to log compressed page images to avoid possible compression algorithm changes in zlib. */ UNIV_INTERN my_bool page_zip_log_pages = false; UNIV_INTERN my_bool page_zip_debug = FALSE; /* Please refer to ../include/page0zip.ic for a description of the compressed page format. */ /* The infimum and supremum records are omitted from the compressed page. On compress, we compare that the records are there, and on uncompress we restore the records. */ /** Extra bytes of an infimum record */ static const byte infimum_extra[] = { 0x01, /* info_bits=0, n_owned=1 */ 0x00, 0x02 /* heap_no=0, status=2 */ }; /** Data bytes of an infimum record */ static const byte infimum_data[] = { 0x69, 0x6e, 0x66, 0x69, 0x6d, 0x75, 0x6d, 0x00 /* "infimum\0" */ }; /** Extra bytes and data bytes of a supremum record */ static const byte supremum_extra_data[] = { /* 0x0?, */ /* info_bits=0, n_owned=1..8 */ 0x00, 0x0b, /* heap_no=1, status=3 */ 0x00, 0x00, /* next=0 */ 0x73, 0x75, 0x70, 0x72, 0x65, 0x6d, 0x75, 0x6d /* "supremum" */ }; #ifndef UNIV_HOTBACKUP /** Determine the guaranteed free space on an empty page. @return minimum payload size on the page */ UNIV_INTERN ulint page_zip_empty_size( ulint n_fields, /*!< in: number of columns in the index */ ulint zip_size, /*!< in: compressed page size in bytes */ ibool compact_metadata) /*!< in: if TRUE calculate the minimum size when compact metadata is used */ { lint size = zip_size /* subtract the page header and the longest uncompressed data needed for one record */ - (PAGE_DATA + <API key> + DATA_TRX_RBP_LEN + 1/* encoded heap_no==2 in page_zip_write_rec() */ + 1/* end of modification log */ + (compact_metadata ? 2 : 0) /* 2 bytes for n_blobs */ - <API key>/* omitted bytes */) /* subtract the space for <API key>() */ - compressBound(static_cast<uLong>(2 * (n_fields + 1))); return(size > 0 ? (ulint) size : 0); } #endif /* !UNIV_HOTBACKUP */ extern "C" { /** Allocate memory for zlib. */ static void* page_zip_zalloc( void* opaque, /*!< in/out: memory heap */ uInt items, /*!< in: number of items to allocate */ uInt size) /*!< in: size of an item in bytes */ { return(mem_heap_zalloc(static_cast<mem_heap_t*>(opaque), items * size)); } /** Deallocate memory for zlib. */ static void page_zip_free( void* opaque __attribute__((unused)), /*!< in: memory heap */ void* address __attribute__((unused)))/*!< in: object to free */ { } } /* extern "C" */ /** Configure the zlib allocator to use the given memory heap. */ UNIV_INTERN void page_zip_set_alloc( void* stream, /*!< in/out: zlib stream */ mem_heap_t* heap) /*!< in: memory heap to use */ { z_stream* strm = static_cast<z_stream*>(stream); strm->zalloc = page_zip_zalloc; strm->zfree = page_zip_free; strm->opaque = heap; } #ifdef UNIV_DEBUG /** Set this variable in a debugger to enable excessive logging in page_zip_compress(). */ UNIV_INTERN ibool <API key>; /** Set this variable in a debugger to enable binary logging of the data passed to deflate(). When this variable is nonzero, it will act as a log file name generator. */ UNIV_INTERN unsigned <API key>; /** Wrapper for deflate(). Log the operation if <API key> is set. @return deflate() status: Z_OK, Z_BUF_ERROR, ... */ static int <API key>( FILE* logfile,/*!< in: log file, or NULL */ z_streamp strm, /*!< in/out: compressed stream for deflate() */ int flush) /*!< in: deflate() flushing method */ { int status; if (UNIV_UNLIKELY(<API key>)) { ut_print_buf(stderr, strm->next_in, strm->avail_in); } if (UNIV_LIKELY_NULL(logfile)) { blind_fwrite(strm->next_in, 1, strm->avail_in, logfile); } status = deflate(strm, flush); if (UNIV_UNLIKELY(<API key>)) { fprintf(stderr, " -> %d\n", status); } return(status); } /* Redefine deflate(). */ # undef deflate /** Debug wrapper for the zlib compression routine deflate(). Log the operation if <API key> is set. @param strm in/out: compressed stream @param flush in: flushing method @return deflate() status: Z_OK, Z_BUF_ERROR, ... */ # define deflate(strm, flush) <API key>(logfile, strm, flush) /** Declaration of the logfile parameter */ # define FILE_LOGFILE FILE* logfile, /** The logfile parameter */ # define LOGFILE logfile, #else /* UNIV_DEBUG */ /** Empty declaration of the logfile parameter */ # define FILE_LOGFILE /** Missing logfile parameter */ # define LOGFILE #endif /* UNIV_DEBUG */ /** Store the blobs for the given record pn the blob storage. For compact metadata format, the blobs are stored before the transaction ids and rollback pointers. This means that normally we need to compute the number of blobs to compute the size of the blob storage before writing the transaction id and rollback pointers, however, typically most pages do not have any blob pointers so we do not go through the records to compute the number of blobs until we encounter the first blob pointer. */ static void <API key>( page_zip_des_t* page_zip, /* compressed page and its metadata */ dict_index_t* index, /* index object for the page */ ulint rec_no, /* record number for the record whose blob pointers are to be stored in the blob storage. */ const rec_t* rec, /* pointer to the actual record */ const ulint* offsets, /* offsets of the record */ byte* blob_storage, /* pointer to the blob storage */ byte** trx_rbp_storage_ptr) /* double pointer to trx rbp storage. can be modified if compact metadata format is used */ { ulint n_ext = rec_offs_n_extern(offsets); /* TODO(rongrong): when we stop compressing garbage, we won't have to check whether the record was purged */ if (!n_ext || <API key>(page_zip, page_offset(rec))) { return; } if (page_zip->compact_metadata && !page_zip->n_blobs) { /* This is the first time we hit a record that has some blob pointers. We now compute the number of blobs on the page to make room for the blob pointer storage which comes before trx id and rbps for compact metadata format. */ ulint n_blobs = <API key>(page_zip, page_align(rec), index); byte* trx_rbp_storage_end = (*trx_rbp_storage_ptr) - (rec_no * DATA_TRX_RBP_LEN); /* move the storage for trx rbps */ memmove(trx_rbp_storage_end - (n_blobs * <API key>), trx_rbp_storage_end, rec_no * DATA_TRX_RBP_LEN); *trx_rbp_storage_ptr -= n_blobs * <API key>; /* write the number of blobs to the beginning of blob storage */ mach_write_to_2(blob_storage, n_blobs); /* zerofill the storage for blob pointers */ memset(blob_storage - n_blobs * <API key>, 0, n_blobs * <API key>); } <API key>(blob_storage, rec, offsets, page_zip->n_blobs); page_zip->n_blobs += n_ext; } /** * Restore trx id and rollback pointer of a record from the trailer of the * compressed page. */ static void <API key>( byte* trx_rbp_storage, /* in: storage for transaciton ids and rollback pointers */ rec_t* rec, /* in/out: the record whose uncompressed fields must be restored from the trailer of page_zip->data */ ulint rec_no, /* in: the index of rec in recs. This is basically heap_no - <API key> */ const ulint* offsets, /* in: the offsets of the record as obtained by rec_get_offsets() */ ulint trx_id_col) { ulint len; byte* dst; ut_ad(trx_id_col && (trx_id_col != ULINT_UNDEFINED)); dst = rec_get_nth_field(rec, offsets, trx_id_col, &len); ut_ad(len >= DATA_TRX_RBP_LEN); memcpy(dst, trx_rbp_storage - DATA_TRX_RBP_LEN * (rec_no + 1), DATA_TRX_RBP_LEN); } /** * Restore the blob pointers of a record from the trailer of the compressed * page. */ static void <API key>( byte* externs, /* in: storage for blob pointers */ rec_t* rec, /* in/out: the record whose uncompressed fields must be restored from the trailer of page_zip->data */ const ulint* offsets, /* in: the offsets of the record as obtained by rec_get_offsets() */ ulint n_prev_blobs) /* number of blob pointers that belong to the previous records on the same page */ { ulint i; ulint len; byte* dst; externs -= n_prev_blobs * <API key>; for (i = 0; i < rec_offs_n_fields(offsets); i++) { if (rec_offs_nth_extern(offsets, i)) { dst = rec_get_nth_field(rec, offsets, i, &len); if (UNIV_UNLIKELY(len < <API key>)) { page_zip_fail("length of a field with an " "external pointer can not be " "less than %d", <API key>); ut_error; } dst += len - <API key>; /* restore the BLOB pointer */ externs -= <API key>; memcpy(dst, externs, <API key>); } } } /** Restore uncompressed fields (trx id, rollback ptr, blobs) of all of the records on a page from the trailer of the compressed page */ static void <API key>( page_zip_des_t* page_zip, /*!< in: page_zip->data trailer and page header. out: page_zip->n_blobs; */ rec_t** recs, /*!< in: the records on the page obtained by page_zip_dir_decode(). out: uncompressed parts of the records. */ const dict_index_t* index, /*!< in: the index object describes the columns of the table */ ulint trx_id_col, /*!< in: the column number for the transaction id */ mem_heap_t* heap) /*!< in/out: temporary memory heap */ { uint rec_no; ulint n_dense = page_zip_dir_elems(page_zip); ulint* offsets = NULL; rec_t* rec; /* This must be a primary key leaf page or a node pointer page */ ut_ad(!page_is_leaf(page_zip->data) || (trx_id_col && trx_id_col < ULINT_UNDEFINED)); if (UNIV_UNLIKELY(trx_id_col == ULINT_UNDEFINED)) { /* node pointer page */ byte* node_ptrs_storage = page_zip_dir_start(page_zip); for (rec_no = 0; rec_no < n_dense; ++rec_no) { rec = recs[rec_no]; ut_ad(rec_no + <API key> == rec_get_heap_no_new(rec)); offsets = rec_get_offsets(rec, index, offsets, ULINT_UNDEFINED, &heap); memcpy(rec_get_end(rec, offsets) - REC_NODE_PTR_SIZE, node_ptrs_storage - REC_NODE_PTR_SIZE * (rec_no + 1), REC_NODE_PTR_SIZE); } } else { /* primary key leaf page */ byte* trx_rbp_storage; byte* externs; ulint n_ext; /* page_zip->n_blobs must be zero before restoring uncompressed fields */ externs = <API key>(page_zip); trx_rbp_storage = <API key>(page_zip, true); for (rec_no = 0; rec_no < n_dense; ++rec_no) { rec = recs[rec_no]; ut_ad(rec_no + <API key> == rec_get_heap_no_new(rec)); offsets = rec_get_offsets(rec, index, offsets, ULINT_UNDEFINED, &heap); <API key>(trx_rbp_storage, rec, rec_no, offsets, trx_id_col); n_ext = rec_offs_n_extern(offsets); if (n_ext && !<API key>(page_zip, page_offset(rec))) { <API key>( externs, rec, offsets, page_zip->n_blobs); page_zip->n_blobs += n_ext; } } } } /** Write the data portion of a clustered leaf record with external pointers to a data stream in forward direction. @return the pointer to the stream after the record is written. */ static byte* <API key>( #ifdef UNIV_DEBUG ibool mlog, /*!< in: If TRUE this function is called to write the record to the modification log */ #endif byte* data, /*!< out: pointer to the data stream where the record is written */ const rec_t* rec, /*!< in: the record that is written to the data stream */ const ulint* offsets, /*!< in: offsets for the record as obtained by rec_get_offsets() */ ulint trx_id_col) /* in: the colum no. for the transaction id */ { uint i; const byte* src; ulint len; const byte* start = rec; for (i = 0; i < rec_offs_n_fields(offsets); ++i) { if (UNIV_UNLIKELY(i == trx_id_col)) { ut_a(!rec_offs_nth_extern(offsets, i)); ut_a(!rec_offs_nth_extern(offsets, i + 1)); /* Locate trx_id and roll_ptr. */ src = rec_get_nth_field(rec, offsets, i, &len); ut_a(len == DATA_TRX_ID_LEN); ut_a(src + DATA_TRX_ID_LEN == rec_get_nth_field(rec, offsets, i + 1, &len)); ut_a(len == DATA_ROLL_PTR_LEN); #ifdef UNIV_DEBUG if (mlog) ASSERT_ZERO(data, src - start); #endif /* Write the preceding fields. */ memcpy(data, start, src - start); data += src - start; start = src + DATA_TRX_RBP_LEN; i++; /* skip also roll_ptr */ } else if (rec_offs_nth_extern(offsets, i)) { src = rec_get_nth_field(rec, offsets, i, &len); ut_a(len >= <API key>); src += len - <API key>; memcpy(data, start, src - start); data += src - start; start = src + <API key>; } } /* Log the last bytes of the record. */ len = rec_offs_data_size(offsets) - (start - rec); #ifdef UNIV_DEBUG if (mlog) ASSERT_ZERO(data, len); #endif memcpy(data, start, len); data += len; return (data); } /** Write the data portion of a clustered leaf record with no external pointers to a data stream in forward direction. Uncompressed fields are omitted. @return the pointer to the stream after the record is written. */ static byte* <API key>( #ifdef UNIV_DEBUG ibool mlog, /*!< in: If TRUE this function is called to write the record to the modification log */ #endif byte* data, /*!< out: pointer to the data stream where the record is written. */ const rec_t* rec, /*!< in: the record that is written to the data stream */ const ulint* offsets, /*!< in: offsets for the record as obtained by rec_get_offsets() */ ulint trx_id_col) /* in: the column no. for the transaction id column. */ { ulint len; /* Locate trx_id and roll_ptr. */ const byte* src = rec_get_nth_field(rec, offsets, trx_id_col, &len); ut_ad(len == DATA_TRX_ID_LEN); ut_ad(src + DATA_TRX_ID_LEN == rec_get_nth_field(rec, offsets, trx_id_col + 1, &len)); ut_ad(len == DATA_ROLL_PTR_LEN); /* Write the preceding fields. */ #ifdef UNIV_DEBUG if (mlog) ASSERT_ZERO(data, src - rec); #endif memcpy(data, rec, src - rec); data += src - rec; /* Advance the record pointer to skip trx_id and roll_ptr */ src += DATA_TRX_RBP_LEN; /* Write the last bytes of the record */ len = rec_offs_data_size(offsets) - (src - rec); #ifdef UNIV_DEBUG if (mlog) ASSERT_ZERO(data, len); #endif memcpy(data, src, len); data += len; return data; } /** Write the data portion of a record of a secondary index leaf page to a data stream in forward direction. @return the pointer to the stream after the record is written. */ static byte* <API key>( #ifdef UNIV_DEBUG ibool mlog, /*!< in: If TRUE this function is called to write the record to the modification log. */ #endif byte* data, /*!< out: pointer to the data stream where the record is written */ const rec_t* rec, /*!< in: the record that is written to the data stream */ const ulint* offsets) /*!< in: offsets for the record as obtained by rec_get_offsets() */ { ulint len = rec_offs_data_size(offsets); /* Leaf page of a secondary index: no externally stored columns */ ut_ad(!rec_offs_any_extern(offsets)); #ifdef UNIV_DEBUG if (mlog) /* Write the entire record */ ASSERT_ZERO(data, len); #endif memcpy(data, rec, len); data += len; return data; } /** Write the data portion of a record of a non-leaf page to a data stream in forward direction. @return the pointer to the stream after the record is written. */ static byte* <API key>( #ifdef UNIV_DEBUG ibool mlog, /*!< in: If TRUE this function is called to write the record to the modification log */ #endif byte* data, /*!< out: pointer to the data stream where the record is written */ const rec_t* rec, /*!< in: the record that is written to the data stream */ const ulint* offsets) /*!< in: offsets for the record as obtained by rec_get_offsets() */ { ulint len = rec_offs_data_size(offsets) - REC_NODE_PTR_SIZE; /* Non-leaf nodes should not have any externally stored columns. */ ut_ad(!rec_offs_any_extern(offsets)); /* Copy the data bytes, except node_ptr. */ #ifdef UNIV_DEBUG if (mlog) ASSERT_ZERO(data, len); #endif memcpy(data, rec, len); data += len; return data; } /** Write a record to a data stream in forward direction. The record is written in such a way that it can be recovered later if the data stream is read in forward direction. For leaf pages of clustered indexes and non-leaf pages for any index, the uncompressed fields are not written to the data stream. In particular, this means that the offsets of the record are reversed because they are normally stored in backwards direction. @return the pointer to the stream after the record is written. */ static byte* <API key>( #ifdef UNIV_DEBUG ibool mlog, /*!< in: If TRUE this function is called to write the record to modification log */ #endif byte* data, /*!< out: pointer to the data stream where the record is written */ const rec_t* rec, /*!< in: the record that is written to the data stream */ const ulint* offsets, /*!< in: offsets for the record as obtained by rec_get_offsets() */ ulint trx_id_col) /*!< in: the column no. for the transaction id column. trx_id_col = 0 implies a secondary index leaf page, and trx_id_col = ULINT_UNDEFINED implies a non-leaf page. */ { const byte* start = rec - rec_offs_extra_size(offsets); const byte* b = rec - <API key>; /* Write the extra bytes backwards, so rec_offs_extra_size() can be * easily computed by invoking <API key>(). */ while (b != start) { *data++ = *--b; ut_ad(!mlog || !*data); } if (UNIV_LIKELY(trx_id_col != ULINT_UNDEFINED)) { if (trx_id_col) { /* leaf page in a clustered index */ if (UNIV_UNLIKELY(rec_offs_any_extern(offsets))) { #ifdef UNIV_DEBUG return <API key>( mlog, data, rec, offsets, trx_id_col); #else return <API key>( data, rec, offsets, trx_id_col); #endif } else { #ifdef UNIV_DEBUG return <API key>( mlog, data, rec, offsets, trx_id_col); #else return <API key>( data, rec, offsets, trx_id_col); #endif } } else { #ifdef UNIV_DEBUG return <API key>( mlog, data, rec, offsets); #else /* leaf page in a secondary index */ return <API key>( data, rec, offsets); #endif } } else { /* non-leaf page */ ut_ad(trx_id_col == ULINT_UNDEFINED); #ifdef UNIV_DEBUG return <API key>( mlog, data, rec, offsets); #else return <API key>(data, rec, offsets); #endif } } /** Read the data portion of a clustered leaf record with external pointers from a data stream in forward direction. @return the pointer to the stream after the record is read. */ static const byte* <API key>( const byte* data, /*!< in: pointer to the data stream where the record is to be read. */ rec_t* rec, /*!< out: the record that is read from the data stream */ const ulint* offsets, /*!< in: offsets for the record as obtained by rec_get_offsets() */ ulint trx_id_col, /*!< in: the column no. for the transaction id column. */ const byte* end) /*!< in: the end of the deserialization stream. Used only for validation. */ { ulint i; ulint len; byte* next_out = rec; byte* dst; /* Check if there are any externally stored columns. For each externally stored column, skip the <API key> bytes used for blob pointers. */ for (i = 0; i < rec_offs_n_fields(offsets); ++i) { if (UNIV_UNLIKELY(i == trx_id_col)) { /* Skip trx_id and roll_ptr */ dst = rec_get_nth_field(rec, offsets, i, &len); /* zerofill the trx id and roll ptr of the record */ memset(dst, 0, DATA_TRX_RBP_LEN); if (UNIV_UNLIKELY(dst - next_out >= end - data)) { page_zip_fail( "<API key>: " "trx_id len %lu, %p - %p >= %p - %p\n", (ulong) len, (const void*) dst, (const void*) next_out, (const void*) end, (const void*) data); ut_error; } if (UNIV_UNLIKELY(len < DATA_TRX_RBP_LEN)) { page_zip_fail( "<API key>: " "trx_id len %lu < %d\n", len, DATA_TRX_RBP_LEN); ut_error; } if (UNIV_UNLIKELY(rec_offs_nth_extern(offsets, i))) { page_zip_fail( "<API key>: " "column %lu must be trx id column but " "it has blob pointers.\n", i); ut_error; } memcpy(next_out, data, dst - next_out); data += dst - next_out; next_out = dst + DATA_TRX_RBP_LEN; } else if (rec_offs_nth_extern(offsets, i)) { dst = rec_get_nth_field(rec, offsets, i, &len); ut_a(len >= <API key>); /* zerofill the blob pointer of the column */ memset(dst + len - <API key>, 0, <API key>); len += dst - next_out - <API key>; if (UNIV_UNLIKELY(data + len >= end)) { page_zip_fail( "<API key>: " "ext %p + %lu >= %p\n", (const void*) data, (ulong) len, (const void*) end); ut_error; } memcpy(next_out, data, len); data += len; next_out += len + <API key>; } } /* Copy the last bytes of the record */ len = rec_get_end(rec, offsets) - next_out; if (UNIV_UNLIKELY(data + len >= end)) { page_zip_fail("<API key>: " "last %p + %lu >= %p\n", (const void*) data, (ulong) len, (const void*) end); ut_error; } memcpy(next_out, data, len); data += len; return (data); } /** Read the data portion of a clustered leaf record with no external pointers from a data stream in forward direction. Uncompressed fields are not read. @return the pointer to the stream after the record is read. */ static const byte* <API key>( const byte* data, /*!< in: pointer to the data stream where the record is to be read */ rec_t* rec, /*!< out: the record that is read from the data stream */ const ulint* offsets, /*!< in: offsets for the record as obtained by rec_get_offsets() */ ulint trx_id_col, /*!< in: the column no for the transaction id column */ const byte* end) /*!< in: the end of the deserialization stream. Used only for validation. */ { ulint len; /* Skip DB_TRX_ID and DB_ROLL_PTR */ ulint l = <API key>(offsets, trx_id_col, &len); byte* b; if (UNIV_UNLIKELY(data + l >= end)) { page_zip_fail("<API key>: " "%p + %lu >= %p\n", (const void*) data, (ulong) l, (const void*) end); ut_error; } /* Copy any preceding data bytes */ memcpy(rec, data, l); data += l; /* zerfoill DB_TRX_ID and DB_ROLL_PTR */ memset(rec + l, 0, DATA_TRX_RBP_LEN); /* Copy any bytes following DB_TRX_ID, DB_ROLL_PTR */ b = rec + l + DATA_TRX_RBP_LEN; len = rec_get_end(rec, offsets) - b; if (UNIV_UNLIKELY(data + len >= end)) { page_zip_fail("<API key>: " "%p + %lu >= %p\n", (const void*) data, (ulong) len, (const void*) end); ut_error; } memcpy(b, data, len); data += len; return (data); } /** Read the data portion of a record of a secondary index leaf page from a data stream in forward direction. @return the pointer to the stream after the record is read. */ static const byte* <API key>( const byte* data, /*!< in: pointer to the data stream where the record is to be read */ rec_t* rec, /*!< out: the record that is read from the data stream */ const ulint* offsets, /*!< in: offsets for the record as obtained by rec_get_offsets() */ const byte* end) /*!< in: the end of the deserialization stream. Used only for validation. */ { ulint len = rec_offs_data_size(offsets); /* Copy all data bytes of a record in a secondary index */ if (UNIV_UNLIKELY(data + len >= end)) { page_zip_fail("<API key> :" "sec %p + %lu >= %p\n", (const void*) data, (ulong) len, (const void*) end); ut_error; } memcpy(rec, data, len); data += len; return (data); } /** Read the data portion of a record of a non-leaf page to a data stream in forward direction. @return the pointer to the stream after the record is read */ static const byte* <API key>( const byte* data, /*!< in: pointer to the data stream where the record is to be read */ rec_t* rec, /*!< out: the record that is read from the data stream */ const ulint* offsets, /*!< in: offsets for the record as obtained by rec_get_offsets() */ const byte* end) /*!< in: the end of the deserialization stream. Used only for validation. */ { ulint len = rec_offs_data_size(offsets) - REC_NODE_PTR_SIZE; /* Copy the data bytes, except node_ptr */ if (UNIV_UNLIKELY(data + len >= end)) { page_zip_fail("<API key>: " "node_ptr %p + %lu >= %p\n", (const void*) data, (ulong) len, (const void*) end); ut_error; } memcpy(rec, data, len); data += len; return (data); } /** Read a record from a data stream in forward direction except for the uncompressed fields. @return the pointer to the stream after the record is read */ static const byte* <API key>( const byte* data, /*!< in: pointer to the data stream where the record is to be read */ rec_t* rec, /*!< out: the record that is read from the data stream */ const dict_index_t* index, /*!< in: the index object for the table */ ulint* offsets, /*!< out: used for offsets for the record as obtained by <API key>() */ ulint trx_id_col, /*!< in: the column no for transaction id column */ ulint heap_status, /*!< in: heap_no and status bits for the record */ const byte* end) /*!< in: the end of the deserialization stream. Used only for validation. */ { byte* start; byte* b; <API key>(data, index, heap_status & REC_STATUS_NODE_PTR, offsets); rec_offs_make_valid(rec, index, offsets); start = rec_get_start(rec, offsets); b = rec - <API key>; /* Copy the extra bytes (backwards) */ while (b != start) { *--b = *data++; } if (UNIV_LIKELY(trx_id_col != ULINT_UNDEFINED)) { if (trx_id_col) { /* Clustered leaf page */ if (UNIV_UNLIKELY(rec_offs_any_extern(offsets))) { return <API key>( data, rec, offsets, trx_id_col, end); } else { return <API key>( data, rec, offsets, trx_id_col, end); } } else { /* secondary leaf page */ return <API key>(data, rec, offsets, end); } } else { /* non-leaf page */ return <API key>(data, rec, offsets, end); } } /** Compress the records of a node pointer page. @return Z_OK, or a zlib error code */ static int <API key>( FILE_LOGFILE page_zip_des_t* page_zip, /*!< in: used for reading headers in page_zip->data. out: write uncompressed fields to the trailer of page_zip->data. */ z_stream* c_stream, /*!< in/out: compressed page stream */ const rec_t** recs, /*!< in: dense page directory sorted by address */ dict_index_t* index, /*!< in: the index of the page */ mem_heap_t* heap) /*!< in: temporary memory heap */ { int err = Z_OK; ulint* offsets = NULL; ulint n_dense = page_zip_dir_elems(page_zip); ulint rec_no; byte* node_ptrs_storage = page_zip_dir_start(page_zip); do { const rec_t* rec = *recs++; offsets = rec_get_offsets(rec, index, offsets, ULINT_UNDEFINED, &heap); /* Only leaf nodes may contain externally stored columns. */ ut_ad(!rec_offs_any_extern(offsets)); UNIV_MEM_ASSERT_RW(rec, rec_offs_data_size(offsets)); UNIV_MEM_ASSERT_RW(rec - rec_offs_extra_size(offsets), rec_offs_extra_size(offsets)); /* Compress the extra bytes. */ c_stream->avail_in = static_cast<uInt>( rec - <API key> - c_stream->next_in); if (c_stream->avail_in) { err = deflate(c_stream, Z_NO_FLUSH); if (UNIV_UNLIKELY(err != Z_OK)) { break; } } ut_ad(!c_stream->avail_in); /* Compress the data bytes, except node_ptr. */ c_stream->next_in = (byte*) rec; c_stream->avail_in = static_cast<uInt>( rec_offs_data_size(offsets) - REC_NODE_PTR_SIZE); if (c_stream->avail_in) { err = deflate(c_stream, Z_NO_FLUSH); if (UNIV_UNLIKELY(err != Z_OK)) { break; } } ut_ad(!c_stream->avail_in); c_stream->next_in += REC_NODE_PTR_SIZE; /* store the pointers uncompressed */ rec_no = rec_get_heap_no_new(rec) - <API key>; memcpy(node_ptrs_storage - REC_NODE_PTR_SIZE * (rec_no + 1), rec_get_end((rec_t*)rec, offsets) - REC_NODE_PTR_SIZE, REC_NODE_PTR_SIZE); } while (--n_dense); return(err); } /** Compress the records of a leaf node of a secondary index. @return Z_OK, or a zlib error code */ static int <API key>( FILE_LOGFILE z_stream* c_stream, /*!< in/out: compressed page stream */ const rec_t** recs, /*!< in: dense page directory sorted by address */ ulint n_dense, /*!< in: size of recs[] */ const dict_index_t* index, /*!< the index of the page */ mem_heap_t* heap) /*!< temporary memory heap */ { int err = Z_OK; const rec_t* rec = NULL; ulint *offsets = NULL; ut_ad(n_dense > 0); do { rec = *recs++; /* Compress everything up to this record. */ c_stream->avail_in = static_cast<uInt>( rec - <API key> - c_stream->next_in); if (UNIV_LIKELY(c_stream->avail_in)) { UNIV_MEM_ASSERT_RW(c_stream->next_in, c_stream->avail_in); err = deflate(c_stream, Z_NO_FLUSH); if (UNIV_UNLIKELY(err != Z_OK)) { goto func_exit; } } ut_ad(!c_stream->avail_in); ut_ad(c_stream->next_in == rec - <API key>); /* Skip the <API key>. */ c_stream->next_in = (byte*) rec; } while (--n_dense); /* Compress until the end of the last record */ ut_ad(rec); offsets = rec_get_offsets(rec, index, offsets, ULINT_UNDEFINED, &heap); c_stream->avail_in = rec_get_end((rec_t*) rec, offsets) - c_stream->next_in; err = deflate(c_stream, Z_NO_FLUSH); func_exit: return(err); } /** Add one record with no blob pointers to the compression stream of a clustered page. */ static int <API key>( FILE_LOGFILE z_stream* c_stream, /*!< in/out: compressed page stream */ const rec_t* rec, /*!< in: record */ const ulint* offsets, /*!< in: rec_get_offsets(rec) */ ulint trx_id_col) /*!< in: the column number for the transaction id */ { int err; ulint len; const byte* src; /* Compress the extra bytes. */ c_stream->avail_in = static_cast<uInt>( rec - <API key> - c_stream->next_in); if (c_stream->avail_in) { err = deflate(c_stream, Z_NO_FLUSH); if (UNIV_UNLIKELY(err != Z_OK)) { return err; } } ut_ad(!c_stream->avail_in); ut_ad(c_stream->next_in == rec - <API key>); /* Compress the data bytes. */ c_stream->next_in = (byte*) rec; /* Compress the part of the record up to trx_id. */ src = rec_get_nth_field(rec, offsets, trx_id_col, &len); ut_ad(src + DATA_TRX_ID_LEN == rec_get_nth_field(rec, offsets, trx_id_col + 1, &len)); ut_ad(len == DATA_ROLL_PTR_LEN); UNIV_MEM_ASSERT_RW(rec, rec_offs_data_size(offsets)); UNIV_MEM_ASSERT_RW(rec - rec_offs_extra_size(offsets), rec_offs_extra_size(offsets)); /* Compress any preceding bytes */ c_stream->avail_in = static_cast<uInt>(src - c_stream->next_in); if (c_stream->avail_in) { err = deflate(c_stream, Z_NO_FLUSH); if (UNIV_UNLIKELY(err != Z_OK)) { return (err); } } ut_ad(!c_stream->avail_in); ut_ad(c_stream->next_in == src); c_stream->next_in += DATA_TRX_RBP_LEN; /* Skip also roll_ptr */ ut_ad(trx_id_col + 1 < rec_offs_n_fields(offsets)); /* Compress the last bytes of the record. */ c_stream->avail_in = static_cast<uInt>( rec + rec_offs_data_size(offsets) - c_stream->next_in); if (c_stream->avail_in) { err = deflate(c_stream, Z_NO_FLUSH); if (UNIV_UNLIKELY(err != Z_OK)) { return err; } } ut_ad(!c_stream->avail_in); return Z_OK; } /** Compress a record of a leaf node of a clustered index that contains externally stored columns. @return Z_OK, or a zlib error code */ static int <API key>( FILE_LOGFILE page_zip_des_t* page_zip, /*!< in: used for reading headers in page_zip->data. out: write uncompressed fields to the trailer of page_zip->data. */ z_stream* c_stream, /*!< in/out: compressed page stream */ const rec_t* rec, /*!< in: record */ const ulint* offsets, /*!< in: rec_get_offsets(rec) */ ulint trx_id_col) /*!< in: position of of DB_TRX_ID */ { int err; ulint i; ibool purged = !!<API key>(page_zip, page_offset(rec)); UNIV_MEM_ASSERT_RW(rec, rec_offs_data_size(offsets)); UNIV_MEM_ASSERT_RW(rec - rec_offs_extra_size(offsets), rec_offs_extra_size(offsets)); /* Compress the extra bytes */ c_stream->avail_in = static_cast<uInt>( rec - <API key> - c_stream->next_in); if (c_stream->avail_in) { err = deflate(c_stream, Z_NO_FLUSH); if (UNIV_UNLIKELY(err != Z_OK)) { return err; } } ut_ad(!c_stream->avail_in); ut_ad(c_stream->next_in == rec - <API key>); /* Compress the data bytes. */ c_stream->next_in = (byte*) rec; for (i = 0; i < rec_offs_n_fields(offsets); i++) { ulint len; const byte* src; if (UNIV_UNLIKELY(i == trx_id_col)) { ut_ad(!rec_offs_nth_extern(offsets, i)); /* Store trx_id and roll_ptr in uncompressed form. */ src = rec_get_nth_field(rec, offsets, i, &len); ut_ad(src + DATA_TRX_ID_LEN == rec_get_nth_field(rec, offsets, i + 1, &len)); ut_ad(len == DATA_ROLL_PTR_LEN); /* Compress any preceding bytes. */ c_stream->avail_in = static_cast<uInt>( src - c_stream->next_in); if (c_stream->avail_in) { err = deflate(c_stream, Z_NO_FLUSH); if (UNIV_UNLIKELY(err != Z_OK)) { return(err); } } ut_ad(!c_stream->avail_in); ut_ad(c_stream->next_in == src); c_stream->next_in += DATA_TRX_RBP_LEN; /* Skip also roll_ptr */ i++; } else if (rec_offs_nth_extern(offsets, i)) { src = rec_get_nth_field(rec, offsets, i, &len); ut_ad(len >= <API key>); src += len - <API key>; c_stream->avail_in = static_cast<uInt>( src - c_stream->next_in); if (UNIV_LIKELY(c_stream->avail_in)) { err = deflate(c_stream, Z_NO_FLUSH); if (UNIV_UNLIKELY(err != Z_OK)) { return(err); } } ut_a(!c_stream->avail_in); ut_a(c_stream->next_in == src); /* Reserve space for the data at the end of the space reserved for the compressed data and the page modification log. */ if (UNIV_UNLIKELY (c_stream->avail_out <= <API key>)) { /* out of space */ return(Z_BUF_ERROR); } c_stream->next_in += <API key>; /* If the record is not purged, the available output size for compression stream should be reduced by the pointer size. */ if (!purged) { c_stream->avail_out -= <API key>; } } } return(Z_OK); } /** Compress the records of a leaf node of a clustered index. @return Z_OK, or a zlib error code */ static int <API key>( FILE_LOGFILE page_zip_des_t* page_zip, /*!< in: used for reading headers in page_zip->data. out: write uncompressed fields to the trailer of page_zip->data. */ z_stream* c_stream, /*!< in/out: compressed page stream */ const rec_t** recs, /*!< in: dense page directory sorted by address */ dict_index_t* index, /*!< in: the index of the page */ mem_heap_t* heap) /*!< in: temporary memory heap */ { int err = Z_OK; ulint* offsets = NULL; ulint n_dense = page_zip_dir_elems(page_zip); ulint trx_id_col = <API key>(index, DATA_TRX_ID); const rec_t* rec; ulint rec_no; byte* trx_rbp_storage; byte* externs; ut_ad(page_zip->n_blobs == 0); externs = <API key>(page_zip); trx_rbp_storage = <API key>(page_zip, false); if (page_zip->compact_metadata) { mach_write_to_2(externs, 0); } for (rec_no = 0; rec_no < n_dense; ++rec_no) { rec = recs[rec_no]; ut_ad(rec_no + <API key> == rec_get_heap_no_new(rec)); offsets = rec_get_offsets(rec, index, offsets, ULINT_UNDEFINED, &heap); ut_ad(rec_offs_n_fields(offsets) == <API key>(index)); UNIV_MEM_ASSERT_RW(rec, rec_offs_data_size(offsets)); UNIV_MEM_ASSERT_RW(rec - rec_offs_extra_size(offsets), rec_offs_extra_size(offsets)); if (rec_offs_any_extern(offsets)) { ut_ad(dict_index_is_clust(index)); err = <API key>( LOGFILE page_zip, c_stream, rec, offsets, trx_id_col); if (UNIV_UNLIKELY(err != Z_OK)) { goto func_exit; } } else { err = <API key>( LOGFILE c_stream, rec, offsets, trx_id_col); if (UNIV_UNLIKELY(err != Z_OK)) { goto func_exit; } } <API key>(page_zip, index, rec_no, rec, offsets, externs, &trx_rbp_storage); <API key>(trx_rbp_storage, rec, offsets, rec_no, trx_id_col); page_zip_size_check(page_zip, index); } func_exit: return(err); } /* Memory block caches used for caching the blocks used for page_zip_compress() and page_zip_decompress() */ ulint <API key> = 1000; ulint <API key> = 1000; mem_block_cache_t <API key>; mem_block_cache_t <API key>; mem_block_cache_t* <API key>; mem_block_cache_t* <API key>; /** Below are the amounts of memory used for different phases during compression and decompression. */ /** Memory needed by page_zip_compress(). This doesn't include the memory used by the functions called by page_zip_compress(). */ #define PZ_MEM_COMP_BASE MEM_SPACE_NEEDED(UNIV_PAGE_SIZE) /** Memory needed for zlib stream compression. Below, we compute an upperbound for the average amount of memory we need to allocate for <API key>() assuming that the average record size of a table is at least 16 and that there are at most 50 columns on a table. */ #ifdef UNIV_DEBUG #define <API key> \ (PZ_MEM_COMP_BASE \ + MEM_SPACE_NEEDED(50L * (2 + sizeof(ulint))) \ + MEM_SPACE_NEEDED((UNIV_PAGE_SIZE / 16) * sizeof(ulint)) \ + MEM_SPACE_NEEDED(<API key>(<API key>, \ MAX_MEM_LEVEL)) \ + 2 * UNIV_PAGE_SIZE) #else /* UNIV_DEBUG */ #define <API key> \ (PZ_MEM_COMP_BASE \ + MEM_SPACE_NEEDED(50L * (2 + sizeof(ulint))) \ + MEM_SPACE_NEEDED((UNIV_PAGE_SIZE / 16) * sizeof(ulint)) \ + MEM_SPACE_NEEDED(<API key>(<API key>, \ MAX_MEM_LEVEL))) #endif /* UNIV_DEBUG */ /** Macros to define the maximum length of a page after its records are serialized, and the size of the buffer that is used to store the serialized buffer. Even though the serialization of records should not require more than UNIV_PAGE_SIZE memory, we give more just in case the serialization needs some extra space for metadata. page_zip_serialize() will fail if the length of a page after its records are serialized is more than <API key>. The buffer for serialization has to be a bit bigger than <API key> because we detect whether we exceeded the length limit after serializing the record. */ #define <API key> (2 * UNIV_PAGE_SIZE) #define <API key> (5 * UNIV_PAGE_SIZE / 2) /** The amount of space we would like to reserve on the compressed page for the compression output. If the trailer of a compressed page occupies too much space, it may make sense to split that page before even trying to serialize its records. This helps us abort the compression early in the process. */ #define <API key> 128 /** Memory needed by page_zip_serialize(): memory needed for the serialization buffer plus the memory needed for the record pointers (recs). We estimate the number of records to be at most UNIV_PAGE_SIZE / 16, assuming each record is at least 16 bytes. */ #define PZ_MEM_SERIALIZE \ (MEM_SPACE_NEEDED(<API key>) \ + MEM_SPACE_NEEDED((UNIV_PAGE_SIZE / 16) * sizeof(ulint))) /** Memory needed by page_zip_decompress(). memory used by the called functions is not included. See the comment to <API key> for why we take n_dense to be UNIV_PAGE_SIZE / 16. */ #define PZ_MEM_DECOMP_BASE \ MEM_SPACE_NEEDED((UNIV_PAGE_SIZE / 16) * (3 * sizeof(rec_t*))) /** Total memory needed by zlib stream decompression: memory needed to store the offsets parameter, the encoding of the index and the decompression operation. See <API key>() for details. */ #define <API key> \ (PZ_MEM_DECOMP_BASE \ + MEM_SPACE_NEEDED(50L * sizeof(ulint)) \ + MEM_SPACE_NEEDED(<API key>(<API key>))) /** Memory needed by <API key>. Note that <API key> is for the buffer that will be used by <API key>(). This buffer must be allocated by the caller but we count it towards deserialization */ #define PZ_MEM_DESERIALIZE \ (<API key> \ + MEM_SPACE_NEEDED(50L * sizeof(ulint))) /* Calculates block size as an upper bound required for memory, used for page_zip_compress and page_zip_decompress, and calls <API key> which initializes the mem_block_cache with it */ UNIV_INTERN void page_zip_init(void) { ulint mem_max_decompress; ulint mem_max_compress = max(max(max(comp_mem_compress(DICT_TF_COMP_ZLIB), comp_mem_compress(DICT_TF_COMP_BZIP)), max(comp_mem_compress(DICT_TF_COMP_LZMA), comp_mem_compress(DICT_TF_COMP_SNAPPY))), max(comp_mem_compress(<API key>), comp_mem_compress(DICT_TF_COMP_LZ4))); mem_max_compress = max(PZ_MEM_COMP_BASE + PZ_MEM_SERIALIZE + mem_max_compress, <API key>); <API key> = &<API key>; <API key>(<API key>, mem_max_compress, &<API key>); mem_max_decompress = max(max(max(comp_mem_decompress(DICT_TF_COMP_ZLIB), comp_mem_decompress(DICT_TF_COMP_BZIP)), max(comp_mem_decompress(DICT_TF_COMP_LZMA), comp_mem_decompress(DICT_TF_COMP_SNAPPY))), max(comp_mem_decompress(<API key>), comp_mem_decompress(DICT_TF_COMP_LZ4))); mem_max_decompress = max(PZ_MEM_COMP_BASE + PZ_MEM_SERIALIZE + mem_max_decompress, <API key>); <API key> = &<API key>; <API key>(<API key>, mem_max_decompress, &<API key>); } /* Frees the <API key>, and <API key> mem_blocks, and all the cached mem_blocks in the queue. */ UNIV_INTERN void page_zip_close(void) { <API key>(<API key>); <API key>(<API key>); } UNIV_INTERN void <API key>( const dict_index_t* index, page_t* page, const rec_t** recs, ulint n_dense, mem_heap_t* heap) { const rec_t* rec; ulint* offsets = NULL; byte* rec_end = page + PAGE_ZIP_START; while (n_dense) { --n_dense; rec = *recs++; offsets = rec_get_offsets(rec, index, offsets, ULINT_UNDEFINED, &heap); memset(rec_end, 0, rec - rec_offs_extra_size(offsets) - rec_end); rec_end = (byte*) rec + rec_offs_data_size(offsets); } memset(rec_end, 0, page + <API key>(page, PAGE_HEAP_TOP) - rec_end); } my_bool page_zip_zlib_wrap = FALSE; uint <API key> = Z_DEFAULT_STRATEGY; /** Write the records on the page to the output buffer in a format in which they can be recovered one by one after decompression. The uncompressed fields of the record -if any- are stored in the compressed page trailer not in the output buffer. @return the buffer that has the serialization of records on the page except for the uncompressed fields of each record. */ UNIV_INTERN byte* page_zip_serialize( page_zip_des_t* page_zip, /* out:the uncompressed fields are written to the trailer that is the end of page_zip->data in addition to the dense directory where the offsets of records are stored */ const page_t* page, /* in: records are read from the page */ dict_index_t* index, /* in: index information is used to extract records from the page */ uint* serialized_len, /* out: the length of the output buffer */ mem_heap_t* heap) /* in/out: heap used for memory allocation */ { ulint n_fields;/* number of index fields needed */ ulint n_dense; const rec_t** recs; /*!< dense page directory, sorted by address */ const rec_t* rec; ulint* offsets = NULL; ulint trx_id_col; ulint rec_no; byte* trx_rbp_storage = NULL; byte* externs = NULL; byte* buf = static_cast<byte*>( mem_heap_alloc(heap, <API key>)); byte* buf_ptr = buf; byte* buf_end = buf + <API key>; ulint len; #ifdef UNIV_DEBUG memset(buf, 0xDB, <API key>); #endif if (page_is_leaf(page)) { n_fields = <API key>(index); } else { n_fields = <API key>(index); } n_dense = page_zip_dir_elems(page_zip); trx_id_col = <API key>(page, index); if (trx_id_col) { /* leaf page of a primary key, store transaction id, rollback pointer, and blob pointers */ if (page_zip->compact_metadata) { <API key>(page_zip, 0); } trx_rbp_storage = <API key>(page_zip, false); externs = <API key>(page_zip); } /* Check if there is enough space on the compressed page for the header, trailer and the compressed page image. */ if (PAGE_DATA /* page header */ + <API key> /* minimum reserved size for the compressed output */ + 1 /* null byte for the end of the modification log */ + <API key>(page_zip, dict_index_is_clust(index)) /* trailer length */ > page_zip_get_size(page_zip)) { return NULL; } recs = static_cast<const rec_t**> ( mem_heap_zalloc(heap, n_dense * sizeof *recs)); /* Encode the index information in serialization stream */ /* <API key>() encodes the index to the buffer. During deserialization, we first want to know the length of the serialized buffer. Therefore the first 3 bytes are reserved for the length of the serialized buffer. We use three bytes to encode this length in case we use page sizes larger than 64K in the future */ len = <API key>(n_fields, index, trx_id_col, buf_ptr + 3); mach_write_to_3(buf_ptr, len); buf_ptr += len + 3; /* Encode n_dense in serialization stream */ mach_write_to_2(buf_ptr, n_dense); buf_ptr += 2; ut_ad(buf_ptr < buf_end); /* Serialize the records in heap_no order. */ page_zip_dir_encode(page_zip, page, recs); for (rec_no = 0; rec_no < n_dense; ++rec_no) { rec = recs[rec_no]; ut_ad(rec_no + <API key> == rec_get_heap_no_new(rec)); offsets = rec_get_offsets(rec, index, offsets, ULINT_UNDEFINED, &heap); #ifdef UNIV_DEBUG buf_ptr = <API key>(FALSE, buf_ptr, rec, offsets, trx_id_col); #else buf_ptr = <API key>(buf_ptr, rec, offsets, trx_id_col); #endif if (buf_ptr >= buf_end) { *serialized_len = 0; return NULL; } if (UNIV_UNLIKELY(trx_id_col == ULINT_UNDEFINED)) { /* node pointer page */ /* store the pointers uncompressed */ <API key>(page_zip, rec_no, rec, offsets); } else if (trx_id_col) { <API key>(page_zip, index, rec_no, rec, offsets, externs, &trx_rbp_storage); <API key>(trx_rbp_storage, rec, offsets, rec_no, trx_id_col); page_zip_size_check(page_zip, index); } } *serialized_len = buf_ptr - buf; return buf; } /** Compress a page. @return TRUE on success, FALSE on failure; page_zip will be left intact on failure. */ UNIV_INTERN ibool <API key>( page_zip_des_t* page_zip,/*!< in: size; out: data, n_blobs, m_start, m_end, m_nonempty */ const page_t* page, /*!< in: uncompressed page */ dict_index_t* index, /*!< in: index of the B-tree node */ uchar compression_flags, /*!< in: compression level and other options */ mem_heap_t* heap) /*< in/out: heap used for memory allocation */ { z_stream c_stream; int err; ulint n_fields;/* number of index fields needed */ byte* fields; /*!< index field information */ ulint n_dense; ulint slot_size;/* amount of uncompressed bytes per record */ const rec_t** recs; /*!< dense page directory, sorted by address */ ulint trx_id_col; #ifndef UNIV_HOTBACKUP uint level; uint wrap; uint strategy; int window_bits; #ifdef UNIV_DEBUG page_t* temp_page; #endif <API key>(compression_flags, &level, &wrap, &strategy); window_bits = wrap ? <API key> : - ((int) <API key>); #endif /* !UNIV_HOTBACKUP */ #ifdef UNIV_DEBUG FILE* logfile = NULL; #endif if (page_is_leaf(page)) { n_fields = <API key>(index); } else { n_fields = <API key>(index); } /* The dense directory excludes the infimum and supremum records. */ n_dense = page_dir_get_n_heap(page) - <API key>; #ifdef UNIV_DEBUG if (UNIV_UNLIKELY(<API key>)) { fprintf(stderr, "compress %p %p %lu %lu %lu\n", (void*) page_zip, (void*) page, (ibool) page_is_leaf(page), n_fields, n_dense); } if (UNIV_UNLIKELY(<API key>)) { /* Create a log file for every compression attempt. */ char logfilename[9]; ut_snprintf(logfilename, sizeof logfilename, "%08x", <API key>++); logfile = fopen(logfilename, "wb"); if (logfile) { /* Write the uncompressed page to the log. */ blind_fwrite(page, 1, UNIV_PAGE_SIZE, logfile); /* Record the compressed size as zero. This will be overwritten at successful exit. */ putc(0, logfile); putc(0, logfile); putc(0, logfile); putc(0, logfile); } } #endif /* UNIV_DEBUG */ recs = static_cast<const rec_t**>( mem_heap_zalloc(heap, n_dense * sizeof *recs)); fields = static_cast<byte*>(mem_heap_alloc(heap, (n_fields + 1) * 2)); /* Compress the data payload. */ page_zip_set_alloc(&c_stream, heap); err = deflateInit2(&c_stream, static_cast<int>(level), Z_DEFLATED, window_bits, MAX_MEM_LEVEL, strategy); ut_a(err == Z_OK); c_stream.next_out = page_zip->data + PAGE_DATA; /* Subtract the space reserved for uncompressed data. */ /* Page header and the end marker of the modification log */ c_stream.avail_out = page_zip_get_size(page_zip) - PAGE_DATA - 1; /* Dense page directory and uncompressed columns, if any */ trx_id_col = <API key>(page, index); if (page_is_leaf(page)) { if (dict_index_is_clust(index)) { slot_size = <API key> + DATA_TRX_RBP_LEN; } else { slot_size = <API key>; } } else { slot_size = <API key> + REC_NODE_PTR_SIZE; } if (UNIV_UNLIKELY(c_stream.avail_out <= n_dense * slot_size + 6/* sizeof(zlib header and footer) */)) { goto zlib_error; } c_stream.avail_out -= static_cast<uInt>(n_dense * slot_size); c_stream.avail_in = static_cast<uInt>( <API key>(n_fields, index, trx_id_col, fields)); c_stream.next_in = fields; if (UNIV_LIKELY(!trx_id_col)) { trx_id_col = ULINT_UNDEFINED; } UNIV_MEM_ASSERT_RW(c_stream.next_in, c_stream.avail_in); err = deflate(&c_stream, Z_FULL_FLUSH); if (err != Z_OK) { goto zlib_error; } ut_ad(!c_stream.avail_in); #ifdef UNIV_DEBUG temp_page = static_cast <ib_page_t*> (mem_heap_zalloc(heap, 2 * UNIV_PAGE_SIZE)); temp_page = page_align(temp_page + UNIV_PAGE_SIZE); memcpy(temp_page, page, UNIV_PAGE_SIZE); page_zip_dir_encode(page_zip, temp_page, recs); <API key>(index, temp_page, recs, n_dense, heap); c_stream.next_in = (byte*) temp_page + PAGE_ZIP_START; #else page_zip_dir_encode(page_zip, page, recs); c_stream.next_in = (byte*) page + PAGE_ZIP_START; #endif /* Compress the records in heap_no order. */ if (UNIV_UNLIKELY(!n_dense)) { } else if (!page_is_leaf(page)) { /* This is a node pointer page. */ err = <API key>(LOGFILE page_zip, &c_stream, recs, index, heap); if (UNIV_UNLIKELY(err != Z_OK)) { goto zlib_error; } } else if (UNIV_LIKELY(trx_id_col == ULINT_UNDEFINED)) { /* This is a leaf page in a secondary index. */ err = <API key>(LOGFILE &c_stream, recs, n_dense, index, heap); if (UNIV_UNLIKELY(err != Z_OK)) { goto zlib_error; } } else { /* This is a leaf page in a clustered index. */ err = <API key>(LOGFILE page_zip, &c_stream, recs, index, heap); if (UNIV_UNLIKELY(err != Z_OK)) { goto zlib_error; } } /* Finish the compression. */ ut_ad(!c_stream.avail_in); /* Compress any trailing garbage, in case the last record was allocated from an originally longer space on the free list, or the data of the last record from <API key>(). */ #ifdef UNIV_DEBUG c_stream.avail_in = <API key>(page, PAGE_HEAP_TOP) - (c_stream.next_in - temp_page); #else c_stream.avail_in = <API key>(page, PAGE_HEAP_TOP) - (c_stream.next_in - page); #endif ut_a(c_stream.avail_in <= UNIV_PAGE_SIZE - PAGE_ZIP_START - PAGE_DIR); UNIV_MEM_ASSERT_RW(c_stream.next_in, c_stream.avail_in); err = deflate(&c_stream, Z_FINISH); if (UNIV_UNLIKELY(err != Z_STREAM_END)) { zlib_error: deflateEnd(&c_stream); #ifdef UNIV_DEBUG if (logfile) { fclose(logfile); } #endif /* UNIV_DEBUG */ return FALSE; } err = deflateEnd(&c_stream); ut_a(err == Z_OK); ut_ad(page_zip->data + PAGE_DATA + c_stream.total_out == c_stream.next_out); ut_ad((ulint) (page_zip_dir_start(page_zip) - c_stream.next_out) >= c_stream.avail_out); /* Valgrind believes that zlib does not initialize some bits in the last 7 or 8 bytes of the stream. Make Valgrind happy. */ UNIV_MEM_VALID(page_zip->data + PAGE_DATA, c_stream.total_out); #ifdef UNIV_DEBUG page_zip->m_start = #endif /* UNIV_DEBUG */ page_zip->m_end = PAGE_DATA + c_stream.total_out; page_zip->m_nonempty = FALSE; #ifdef UNIV_DEBUG if (logfile) { /* Record the compressed size of the block. */ byte sz[4]; mach_write_to_4(sz, c_stream.total_out); fseek(logfile, UNIV_PAGE_SIZE, SEEK_SET); blind_fwrite(sz, 1, sizeof sz, logfile); fclose(logfile); } #endif /* UNIV_DEBUG */ return(TRUE); } /** Compress a page. @return TRUE on success, FALSE on failure; page_zip will be left intact on failure. */ UNIV_INTERN ibool page_zip_compress( page_zip_des_t* page_zip,/*!< in: size; out: data, n_blobs, m_start, m_end, m_nonempty */ const page_t* page, /*!< in: uncompressed page */ dict_index_t* index, /*!< in: index of the B-tree node */ uchar <API key>, /*!< in: zlib compression level and other options */ mtr_t* mtr) /*!< in: mini-transaction, or NULL */ { page_zip_des_t new_page_zip; ulint fsp_flags; ibool ret; mem_heap_t* heap = NULL; uchar comp_level; uchar comp_type; ulint n_dense; uint serialized_len = 0; ulint compressed_len = 0; ulint trailer_len; lint avail_out = 0; byte* buf; #ifndef UNIV_HOTBACKUP ulonglong time_diff; page_zip_stat_t* zip_stat = &page_zip_stat[page_zip->ssize - 1]; ulonglong start = my_timer_now(); ulint space_id = page_get_space_id(page); #endif /* !UNIV_HOTBACKUP */ /* A local copy of <API key> to avoid reading that variable multiple times in this function since it can be changed at anytime. */ my_bool <API key> = <API key>; fsp_flags = fil_get_fsp_flags(space_id, ULINT_UNDEFINED); memset(&new_page_zip, 0, sizeof(new_page_zip)); new_page_zip.ssize = page_zip->ssize; ut_a(page_is_comp(page)); ut_a(fil_page_get_type(page) == FIL_PAGE_INDEX); ut_ad(<API key>((page_t*) page)); ut_ad(<API key>(page_zip)); ut_ad(dict_table_is_comp(index->table)); ut_ad(!dict_index_is_ibuf(index)); UNIV_MEM_ASSERT_RW(page, UNIV_PAGE_SIZE); /* Check the data that will be omitted. */ ut_a(!memcmp(page + (PAGE_NEW_INFIMUM - <API key>), infimum_extra, sizeof infimum_extra)); ut_a(!memcmp(page + PAGE_NEW_INFIMUM, infimum_data, sizeof infimum_data)); ut_a(page[PAGE_NEW_SUPREMUM - <API key>] /* info_bits == 0, n_owned <= max */ <= <API key>); ut_a(!memcmp(page + (PAGE_NEW_SUPREMUM - <API key> + 1), supremum_extra_data, sizeof supremum_extra_data)); if (page_is_empty(page)) { ut_a(rec_get_next_offs(page + PAGE_NEW_INFIMUM, TRUE) == PAGE_NEW_SUPREMUM); } /* The dense directory excludes the infimum and supremum records. */ n_dense = page_dir_get_n_heap(page) - <API key>; if (UNIV_UNLIKELY(n_dense * <API key> >= page_zip_get_size(page_zip))) { goto err_exit; } MONITOR_INC(<API key>); /* Simulate a compression failure with a probability determined by <API key>, only if the page has 2 or more records. */ if (<API key> && <API key> == 0 && page_get_n_recs(page) >= 2 && ((ulint)(rand() % 100) < <API key>)) { #ifdef UNIV_DEBUG fprintf(stderr, "InnoDB: Simulating a compression failure" " for table %s, index %s, page %lu (%s)\n", index->table_name, index->name, page_get_page_no(page), page_is_leaf(page) ? "leaf" : "non-leaf"); #endif goto err_exit; } /* asking a heap of size 0 will just give a memory block with the default block size which is OK */ heap = <API key>(0, <API key>); comp_level = <API key>(fsp_flags); comp_type = <API key>(fsp_flags); new_page_zip.data = static_cast<byte*> ( mem_heap_alloc( heap, page_zip_get_size(page_zip))); /* UNIV_MEM_VALID() is needed here because we need to compute the trailer length here but <API key>() requires the entirety of the compressed page be initialized even though it does not use it. */ UNIV_MEM_VALID(new_page_zip.data, page_zip_get_size(page_zip)); ut_d(memset(new_page_zip.data, 0x85, page_zip_get_size(page_zip))); memcpy(new_page_zip.data, page, PAGE_DATA); page_zip->compact_metadata = new_page_zip.compact_metadata = <API key>(fsp_flags); if (comp_type == <API key>) { ret = <API key>( &new_page_zip, page, index, <API key>, heap); trailer_len = <API key>( &new_page_zip, dict_index_is_clust(index)); } else { comp_state_t comp_state; buf = page_zip_serialize(&new_page_zip, page, index, &serialized_len, heap); if (!buf) { ut_a(!serialized_len); goto err_exit; } trailer_len = <API key>( &new_page_zip, dict_index_is_clust(index)); avail_out = page_zip_get_size(&new_page_zip) - PAGE_DATA /* page header */ - trailer_len /* compressed page trailer */ - 1; /* end marker for the modification log */ if (avail_out <= 0) goto err_exit; comp_state.in = buf; comp_state.out = new_page_zip.data + PAGE_DATA; comp_state.avail_in = serialized_len; comp_state.avail_out = avail_out; comp_state.level = comp_level; comp_state.heap = heap; ret = comp_compress(comp_type, &comp_state); if (ret) { ut_a(avail_out > (lint)comp_state.avail_out); compressed_len = avail_out - comp_state.avail_out; new_page_zip.m_nonempty = FALSE; new_page_zip.m_end = PAGE_DATA + compressed_len; } } if (UNIV_UNLIKELY(!ret)) { err_exit: if (heap) mem_heap_free(heap); #ifndef UNIV_HOTBACKUP if (page_is_leaf(page)) { <API key>(index); } time_diff = my_timer_since(start); <API key>(zip_stat, time_diff, false, dict_index_is_clust(index)); <API key>( space_id, page_zip_get_size(page_zip), time_diff, false, dict_index_is_clust(index), UNIV_PAGE_SIZE - <API key>(index)); if (<API key>) { <API key>( index->id, time_diff, false); } #endif /* !UNIV_HOTBACKUP */ return(FALSE); } #ifdef UNIV_DEBUG page_zip->m_start = #endif /* UNIV_DEBUG */ page_zip->m_end = new_page_zip.m_end; page_zip->m_nonempty = FALSE; page_zip->n_blobs = new_page_zip.n_blobs; /* Copy those header fields that will not be written in <API key>() */ memcpy(page_zip->data + FIL_PAGE_PREV, page + FIL_PAGE_PREV, FIL_PAGE_LSN - FIL_PAGE_PREV); memcpy(page_zip->data + FIL_PAGE_TYPE, page + FIL_PAGE_TYPE, 2); memcpy(page_zip->data + FIL_PAGE_DATA, page + FIL_PAGE_DATA, PAGE_DATA - FIL_PAGE_DATA); /* Copy the rest of the compressed page */ memcpy(page_zip->data + PAGE_DATA, new_page_zip.data + PAGE_DATA, page_zip_get_size(page_zip) - PAGE_DATA); /* Done with new_page_zip.data, free the heap */ ut_ad(heap); mem_heap_free(heap); /* Zero out the area reserved for the modification log. */ memset(page_zip->data + page_zip->m_end, 0, page_zip_get_size(page_zip) - page_zip->m_end - trailer_len); if (UNIV_UNLIKELY(page_zip_debug)) { ut_a(page_zip_validate(page_zip, page, index)); } if (mtr) { #ifndef UNIV_HOTBACKUP <API key>(page_zip, page, index, mtr); #endif /* !UNIV_HOTBACKUP */ } UNIV_MEM_ASSERT_RW(page_zip->data, page_zip_get_size(page_zip)); #ifndef UNIV_HOTBACKUP time_diff = my_timer_since(start); <API key>(zip_stat, time_diff, true, dict_index_is_clust(index)); <API key>( space_id, page_zip_get_size(page_zip), time_diff, true, dict_index_is_clust(index), UNIV_PAGE_SIZE - <API key>(index)); if (<API key>) { <API key>( index->id, time_diff, true); } if (page_is_leaf(page)) { <API key>(index); } #endif /* !UNIV_HOTBACKUP */ return(TRUE); } /** Initialize the <API key> of each record. @return TRUE on success, FALSE on failure */ static ibool <API key>( const page_zip_des_t* page_zip,/*!< in: compressed page */ page_t* page, /*!< in/out: uncompressed page */ ulint info_bits)/*!< in: <API key> or 0 */ { ulint n; ulint i; ulint n_owned = 1; ulint offs; rec_t* rec; n = page_get_n_recs(page); rec = page + PAGE_NEW_INFIMUM; for (i = 0; i < n; i++) { offs = page_zip_dir_get(page_zip, i); if (offs & <API key>) { info_bits |= <API key>; } if (UNIV_UNLIKELY(offs & <API key>)) { info_bits |= n_owned; n_owned = 1; } else { n_owned++; } offs &= <API key>; if (UNIV_UNLIKELY(offs < PAGE_ZIP_START + <API key>)) { page_zip_fail("<API key> 1:" " %u %u %lx\n", (unsigned) i, (unsigned) n, (ulong) offs); return(FALSE); } <API key>(rec, offs); rec = page + offs; rec[-<API key>] = (byte) info_bits; info_bits = 0; } /* Set the next pointer of the last user record. */ <API key>(rec, PAGE_NEW_SUPREMUM); /* Set n_owned of the supremum record. */ page[PAGE_NEW_SUPREMUM - <API key>] = (byte) n_owned; /* The dense directory excludes the infimum and supremum records. */ n = page_dir_get_n_heap(page) - <API key>; if (i >= n) { if (UNIV_LIKELY(i == n)) { return(TRUE); } page_zip_fail("<API key> 2: %u != %u\n", (unsigned) i, (unsigned) n); return(FALSE); } offs = page_zip_dir_get(page_zip, i); /* Set the extra bytes of deleted records on the free list. */ for (;;) { if (UNIV_UNLIKELY(!offs) || UNIV_UNLIKELY(offs & ~<API key>)) { page_zip_fail("<API key> 3: %lx\n", (ulong) offs); return(FALSE); } rec = page + offs; rec[-<API key>] = 0; /* info_bits and n_owned */ if (++i == n) { break; } offs = page_zip_dir_get(page_zip, i); <API key>(rec, offs); } /* Terminate the free list. */ rec[-<API key>] = 0; /* info_bits and n_owned */ <API key>(rec, 0); return(TRUE); } /** Apply the modification log to an uncompressed page. Do not copy the fields that are stored separately. @return pointer to end of modification log, or NULL on failure */ static const byte* page_zip_apply_log( const byte* data, /*!< in: modification log */ ulint size, /*!< in: maximum length of the log, in bytes */ rec_t** recs, /*!< in: dense page directory, sorted by address (indexed by heap_no - <API key>) */ ulint n_dense,/*!< in: size of recs[] */ ulint trx_id_col,/*!< in: column number of trx_id in the index, or ULINT_UNDEFINED if none */ ulint heap_status, /*!< in: heap_no and status bits for the next record to uncompress */ dict_index_t* index, /*!< in: index of the page */ ulint* offsets)/*!< in/out: work area for <API key>() */ { const byte* const end = data + size; for (;;) { ulint val; rec_t* rec; ulint hs; val = *data++; if (UNIV_UNLIKELY(!val)) { return(data - 1); } if (val & 0x80) { val = (val & 0x7f) << 8 | *data++; if (UNIV_UNLIKELY(!val)) { page_zip_fail("page_zip_apply_log:" " invalid val %x%x\n", data[-2], data[-1]); return(NULL); } } if (UNIV_UNLIKELY(data >= end)) { page_zip_fail("page_zip_apply_log: %p >= %p\n", (const void*) data, (const void*) end); return(NULL); } if (UNIV_UNLIKELY((val >> 1) > n_dense)) { page_zip_fail("page_zip_apply_log: %lu>>1 > %lu\n", (ulong) val, (ulong) n_dense); return(NULL); } /* Determine the heap number and status bits of the record. */ rec = recs[(val >> 1) - 1]; hs = ((val >> 1) + 1) << REC_HEAP_NO_SHIFT; hs |= heap_status & ((1 << REC_HEAP_NO_SHIFT) - 1); /* This may either be an old record that is being overwritten (updated in place, or allocated from the free list), or a new record, with the next available_heap_no. */ if (UNIV_UNLIKELY(hs > heap_status)) { page_zip_fail("page_zip_apply_log: %lu > %lu\n", (ulong) hs, (ulong) heap_status); return(NULL); } else if (hs == heap_status) { /* A new record was allocated from the heap. */ if (UNIV_UNLIKELY(val & 1)) { /* Only existing records may be cleared. */ page_zip_fail("page_zip_apply_log:" " attempting to create" " deleted rec %lu\n", (ulong) hs); return(NULL); } heap_status += 1 << REC_HEAP_NO_SHIFT; } mach_write_to_2(rec - REC_NEW_HEAP_NO, hs); if (val & 1) { /* Clear the data bytes of the record. */ mem_heap_t* heap = NULL; ulint* offs; offs = rec_get_offsets(rec, index, offsets, ULINT_UNDEFINED, &heap); memset(rec, 0, rec_offs_data_size(offs)); if (UNIV_LIKELY_NULL(heap)) { mem_heap_free(heap); } continue; } #if REC_STATUS_NODE_PTR != TRUE # error "REC_STATUS_NODE_PTR != TRUE" #endif data = <API key>(data, rec, index, offsets, trx_id_col, hs, end); } } /** Set the heap_no in a record, and skip the fixed-size record header that is not included in the d_stream. @return TRUE on success, FALSE if d_stream does not end at rec */ static ibool <API key>( z_stream* d_stream, /*!< in/out: compressed page stream */ rec_t* rec, /*!< in/out: record */ ulint& heap_status) /*!< in/out: heap_no and status bits */ { if (d_stream->next_out != rec - <API key>) { /* n_dense has grown since the page was last compressed. */ return(FALSE); } /* Skip the <API key>. */ d_stream->next_out = rec; /* Set heap_no and the status bits. */ mach_write_to_2(rec - REC_NEW_HEAP_NO, heap_status); heap_status += 1 << REC_HEAP_NO_SHIFT; return(TRUE); } /** Decompress the trailing garbage for a page. Trailing garbage is compressed to make sure that the compressed page is the same during crash recovery. */ UNIV_INLINE void <API key>( const page_zip_des_t* page_zip, /*!< in: compressed page */ z_stream* d_stream) /*!< in/out: decompression stream */ { /* Decompress any trailing garbage, in case the last record was allocated from an originally longer space on the free list. */ d_stream->avail_out = <API key>(page_zip->data, PAGE_HEAP_TOP) - page_offset(d_stream->next_out); if (UNIV_UNLIKELY(d_stream->avail_out > UNIV_PAGE_SIZE - PAGE_ZIP_START - PAGE_DIR)) { page_zip_fail("<API key>: " "avail_out = %u\n", d_stream->avail_out); ut_error; } } /** Decompress the records of a node pointer page. @return TRUE on success, FALSE on failure */ static ibool <API key>( page_zip_des_t* page_zip, /*!< in/out: compressed page */ z_stream* d_stream, /*!< in/out: compressed page stream */ rec_t** recs, /*!< in: dense page directory sorted by address */ ulint n_dense, /*!< in: size of recs[] */ dict_index_t* index, /*!< in: the index of the page */ ulint* offsets, /*!< in/out: temporary offsets */ ulint* heap_status_ptr, /*!< out: pointer to the integer where we will store the heap status of the last record */ mem_heap_t* heap) /*!< in: temporary memory heap */ { ulint heap_status = REC_STATUS_NODE_PTR | <API key> << REC_HEAP_NO_SHIFT; ulint slot; /* Subtract the space reserved for uncompressed data. */ d_stream->avail_in -= static_cast<uInt>( n_dense * (<API key> + REC_NODE_PTR_SIZE)); /* Decompress the records in heap_no order. */ for (slot = 0; slot < n_dense; slot++) { rec_t* rec = recs[slot]; d_stream->avail_out = static_cast<uInt>( rec - <API key> - d_stream->next_out); ut_ad(d_stream->avail_out < UNIV_PAGE_SIZE - PAGE_ZIP_START - PAGE_DIR); switch (inflate(d_stream, Z_SYNC_FLUSH)) { case Z_STREAM_END: <API key>( d_stream, rec, heap_status); goto zlib_done; case Z_OK: case Z_BUF_ERROR: if (!d_stream->avail_out) { break; } /* fall through */ default: page_zip_fail("<API key>:" " 1 inflate(Z_SYNC_FLUSH)=%s\n", d_stream->msg); goto zlib_error; } if (!<API key>( d_stream, rec, heap_status)) { ut_ad(0); } /* Read the offsets. The status bits are needed here. */ offsets = rec_get_offsets(rec, index, offsets, ULINT_UNDEFINED, &heap); /* Non-leaf nodes should not have any externally stored columns. */ ut_ad(!rec_offs_any_extern(offsets)); /* Decompress the data bytes, except node_ptr. */ d_stream->avail_out =static_cast<uInt>( rec_offs_data_size(offsets) - REC_NODE_PTR_SIZE); switch (inflate(d_stream, Z_SYNC_FLUSH)) { case Z_STREAM_END: goto zlib_done; case Z_OK: case Z_BUF_ERROR: if (!d_stream->avail_out) { break; } /* fall through */ default: page_zip_fail("<API key>:" " 2 inflate(Z_SYNC_FLUSH)=%s\n", d_stream->msg); goto zlib_error; } /* Clear the node pointer in case the record will be deleted and the space will be reallocated to a smaller record. */ memset(d_stream->next_out, 0, REC_NODE_PTR_SIZE); d_stream->next_out += REC_NODE_PTR_SIZE; ut_ad(d_stream->next_out == rec_get_end(rec, offsets)); } <API key>(page_zip, d_stream); if (UNIV_UNLIKELY(inflate(d_stream, Z_FINISH) != Z_STREAM_END)) { page_zip_fail("<API key>: " "inflate(Z_FINISH) = %s\n", d_stream->msg); zlib_error: inflateEnd(d_stream); return(FALSE); } /* Note that d_stream->avail_out > 0 may hold here if the modification log is nonempty. */ zlib_done: if (UNIV_UNLIKELY(inflateEnd(d_stream) != Z_OK)) { ut_error; } *heap_status_ptr = heap_status; return(TRUE); } /** Decompress the records of a leaf node of a secondary index. @return TRUE on success, FALSE on failure */ static ibool <API key>( page_zip_des_t* page_zip, /*!< in/out: compressed page */ z_stream* d_stream, /*!< in/out: compressed page stream */ rec_t** recs, /*!< in: dense page directory sorted by address */ ulint n_dense, /*!< in: size of recs[] */ dict_index_t* index, /*!< in: the index of the page */ ulint* heap_status_ptr) /*!< out: pointer to the integer where we will store the heap status of the last record */ { ulint heap_status = REC_STATUS_ORDINARY | <API key> << REC_HEAP_NO_SHIFT; ulint slot; ut_a(!dict_index_is_clust(index)); /* Subtract the space reserved for uncompressed data. */ d_stream->avail_in -= static_cast<uint>( n_dense * <API key>); for (slot = 0; slot < n_dense; slot++) { rec_t* rec = recs[slot]; /* Decompress everything up to this record. */ d_stream->avail_out = static_cast<uint>( rec - <API key> - d_stream->next_out); if (UNIV_LIKELY(d_stream->avail_out)) { switch (inflate(d_stream, Z_SYNC_FLUSH)) { case Z_STREAM_END: <API key>( d_stream, rec, heap_status); goto zlib_done; case Z_OK: case Z_BUF_ERROR: if (!d_stream->avail_out) { break; } /* fall through */ default: page_zip_fail("<API key>:" " inflate(Z_SYNC_FLUSH)=%s\n", d_stream->msg); goto zlib_error; } } if (!<API key>( d_stream, rec, heap_status)) { ut_ad(0); } } <API key>(page_zip, d_stream); if (UNIV_UNLIKELY(inflate(d_stream, Z_FINISH) != Z_STREAM_END)) { page_zip_fail("<API key>: " " inflate(Z_FINISH) = %s\n", d_stream->msg); zlib_error: inflateEnd(d_stream); return(FALSE); } /* Note that d_stream->avail_out > 0 may hold here if the modification log is nonempty. */ zlib_done: if (UNIV_UNLIKELY(inflateEnd(d_stream) != Z_OK)) { ut_error; } *heap_status_ptr = heap_status; return(TRUE); } /** Decompress a record of a leaf node of a clustered index that contains externally stored columns. */ static void <API key>( z_stream* d_stream, /*!< in/out: compressed page stream */ rec_t* rec, /*!< in/out: record */ const ulint* offsets, /*!< in: rec_get_offsets(rec) */ ulint trx_id_col) /*!< in: position of of DB_TRX_ID */ { ulint i; for (i = 0; i < rec_offs_n_fields(offsets); i++) { ulint len; byte* dst; if (UNIV_UNLIKELY(i == trx_id_col)) { /* Skip trx_id and roll_ptr */ dst = rec_get_nth_field(rec, offsets, i, &len); if (UNIV_UNLIKELY(len < DATA_TRX_RBP_LEN)) { page_zip_fail("<API key>:1" " len[%lu] = %lu\n", (ulong) i, (ulong) len); ut_error; } if (rec_offs_nth_extern(offsets, i)) { page_zip_fail("<API key>:2" " DB_TRX_ID at %lu is ext\n", (ulong) i); ut_error; } d_stream->avail_out = static_cast<uInt>( dst - d_stream->next_out); switch (inflate(d_stream, Z_SYNC_FLUSH)) { case Z_STREAM_END: case Z_OK: case Z_BUF_ERROR: if (UNIV_UNLIKELY(d_stream->avail_out)) { page_zip_fail("<API key>:3" " inflate(Z_SYNC_FLUSH)=%s\n", d_stream->msg); ut_error; } break; default: page_zip_fail("<API key>:4" " inflate(Z_SYNC_FLUSH)=%s\n", d_stream->msg); ut_error; break; } ut_ad(d_stream->next_out == dst); /* Clear DB_TRX_ID and DB_ROLL_PTR in order to avoid uninitialized bytes in case the record is affected by page_zip_apply_log(). */ memset(dst, 0, DATA_TRX_RBP_LEN); d_stream->next_out += DATA_TRX_RBP_LEN; } else if (rec_offs_nth_extern(offsets, i)) { dst = rec_get_nth_field(rec, offsets, i, &len); ut_ad(len >= <API key>); dst += len - <API key>; d_stream->avail_out = static_cast<uInt>( dst - d_stream->next_out); switch (inflate(d_stream, Z_SYNC_FLUSH)) { case Z_STREAM_END: case Z_OK: case Z_BUF_ERROR: if (UNIV_UNLIKELY(d_stream->avail_out)) { page_zip_fail("<API key>:5" " inflate(Z_SYNC_FLUSH)=%s\n", d_stream->msg); ut_error; } break; default: page_zip_fail("<API key>:6" " 2 inflate(Z_SYNC_FLUSH)=%s\n", d_stream->msg); ut_error; break; } ut_ad(d_stream->next_out == dst); /* Clear the BLOB pointer in case the record will be deleted and the space will not be reused. Note that the final initialization of the BLOB pointers (copying from "externs" or clearing) will have to take place only after the page modification log has been applied. Otherwise, we could end up with an uninitialized BLOB pointer when a record is deleted, reallocated and deleted. */ memset(d_stream->next_out, 0, <API key>); d_stream->next_out += <API key>; } } /* Decompress the last bytes of the record. */ d_stream->avail_out = rec_get_end(rec, offsets) - d_stream->next_out; switch (inflate(d_stream, Z_SYNC_FLUSH)) { case Z_STREAM_END: case Z_OK: case Z_BUF_ERROR: if (UNIV_UNLIKELY(d_stream->avail_out)) { page_zip_fail("<API key>:7" " inflate(Z_SYNC_FLUSH)=%s\n", d_stream->msg); ut_error; } break; default: page_zip_fail("<API key>:8" " inflate(Z_SYNC_FLUSH)=%s\n", d_stream->msg); ut_error; break; } } /** Decompress a record of a leaf node of a clustered index. @return TRUE if decompression stream ended, FALSE otherwise */ static ibool <API key>( z_stream* d_stream, /*!< in/out: compressed page stream */ const dict_index_t* index, /*!< in: the index of the page */ rec_t* rec, /*!< in/out: record */ ulint* offsets, /*!< in/out: temporary offsets */ ulint trx_id_col, /*!< in: position of DB_TRX_ID */ mem_heap_t* heap) /*!< in: temporary memory heap */ { int err; ulint len; byte* dst; d_stream->avail_out = rec - <API key> - d_stream->next_out; ut_ad(d_stream->avail_out < UNIV_PAGE_SIZE - PAGE_ZIP_START - PAGE_DIR); err = inflate(d_stream, Z_SYNC_FLUSH); switch (err) { case Z_STREAM_END: /* Apparently, n_dense has grown since the time the page was last compressed. */ return TRUE; case Z_OK: case Z_BUF_ERROR: if (UNIV_UNLIKELY(d_stream->avail_out)) { page_zip_fail("<API key>:" " 1 inflate(Z_SYNC_FLUSH)=%s\n", d_stream->msg); ut_error; } break; default: page_zip_fail("<API key>:" " 2 inflate(Z_SYNC_FLUSH)=%s\n", d_stream->msg); ut_error; break; } ut_ad(d_stream->next_out == rec - <API key>); /* Prepare to decompress the data bytes. */ d_stream->next_out = rec; /* Read the offsets. The status bits are needed here. */ offsets = rec_get_offsets(rec, index, offsets, ULINT_UNDEFINED, &heap); /* Check if there are any externally stored columns. For each externally stored column, restore the <API key> separately. */ if (rec_offs_any_extern(offsets)) { <API key>(d_stream, rec, offsets, trx_id_col); return FALSE; } /* Skip trx_id and roll_ptr */ dst = rec_get_nth_field(rec, offsets, trx_id_col, &len); if (UNIV_UNLIKELY(len < DATA_TRX_RBP_LEN)) { page_zip_fail("<API key>:" " 3 len = %lu\n", (ulong) len); ut_error; } d_stream->avail_out = dst - d_stream->next_out; switch (inflate(d_stream, Z_SYNC_FLUSH)) { case Z_STREAM_END: case Z_OK: case Z_BUF_ERROR: if (UNIV_UNLIKELY(d_stream->avail_out)) { page_zip_fail("<API key>:" " 4 inflate(Z_SYNC_FLUSH)=%s\n", d_stream->msg); ut_error; } break; default: page_zip_fail("<API key>:" " 5 inflate(Z_SYNC_FLUSH)=%s\n", d_stream->msg); ut_error; break; } ut_ad(d_stream->next_out == dst); /* Clear DB_TRX_ID and DB_ROLL_PTR in order to avoid uninitialized bytes in case the record is affected by page_zip_apply_log(). */ memset(dst, 0, DATA_TRX_RBP_LEN); d_stream->next_out += DATA_TRX_RBP_LEN; /* Decompress the last bytes of the record. */ d_stream->avail_out = rec_get_end(rec, offsets) - d_stream->next_out; switch (inflate(d_stream, Z_SYNC_FLUSH)) { case Z_STREAM_END: case Z_OK: case Z_BUF_ERROR: if (UNIV_UNLIKELY(d_stream->avail_out)) { page_zip_fail("<API key>:" " 6 inflate(Z_SYNC_FLUSH)=%s\n", d_stream->msg); ut_error; } break; default: page_zip_fail("<API key>:" " 7 inflate(Z_SYNC_FLUSH)=%s\n", d_stream->msg); ut_error; break; } return FALSE; } /** Compress the records of a leaf node of a clustered index. @return TRUE on success, FALSE on failure */ static ibool <API key>( page_zip_des_t* page_zip, /*!< in/out: compressed page */ z_stream* d_stream, /*!< in/out: compressed page stream */ rec_t** recs, /*!< in: dense page directory sorted by addresses */ ulint n_dense, /*!< in: size of recs[] */ dict_index_t* index, /*!< in: the index of the page */ ulint trx_id_col, /*!< index of the trx_id column */ ulint* offsets, /*!< in/out: temporary offsets */ ulint* heap_status_ptr, /*!< out: pointer to the integer where we will store the heap status of the last record */ mem_heap_t* heap) /*!< in: temporary memory heap */ { ulint slot; ulint heap_status = REC_STATUS_ORDINARY | <API key> << REC_HEAP_NO_SHIFT; ut_a(dict_index_is_clust(index)); /* Subtract the space reserved for uncompresesd data. */ d_stream->avail_in -= n_dense * (<API key> + DATA_TRX_RBP_LEN); /* Decompress the records in heap_no order. */ for (slot = 0; slot < n_dense; ++slot) { rec_t* rec = recs[slot]; /* Set heap_no and the status bits. */ mach_write_to_2(rec - REC_NEW_HEAP_NO, heap_status); heap_status += 1 << REC_HEAP_NO_SHIFT; if (UNIV_UNLIKELY (<API key>( d_stream, index, rec, offsets, trx_id_col, heap))) { goto zlib_done; } } <API key>(page_zip, d_stream); if (UNIV_UNLIKELY(inflate(d_stream, Z_FINISH) != Z_STREAM_END)) { page_zip_fail("<API key>: " " inflate(Z_FINISH) = %s\n", d_stream->msg); ut_error; } /* Note that d_stream->avail_out > 0 may hold here if the modification log is nonempty. */ zlib_done: if (UNIV_UNLIKELY(inflateEnd(d_stream) != Z_OK)) { ut_error; } *heap_status_ptr = heap_status; return(TRUE); } /** This function determines the sign for window_bits and reads the zlib header from the decompress stream. The data may have been compressed with a negative (no adler32 headers) or a positive (with adler32 headers) window_bits. Regardless of the current value of page_zip_zlib_wrap, we always first try the positive window_bits then negative window_bits, because the surest way to determine if the stream has adler32 headers is to see if the stream begins with the zlib header together with the adler32 value of it. This adds a tiny bit of overhead for the pages that were compressed without adler32s. */ static void <API key>( z_stream* strm) { /* Save initial stream position, in case a reset is required. */ Bytef* next_in = strm->next_in; Bytef* next_out = strm->next_out; ulint avail_in = strm->avail_in; ulint avail_out = strm->avail_out; /* initialization must always succeed regardless of the sign of window_bits */ ut_a(inflateInit2(strm, <API key>) == Z_OK); /* Try decoding zlib header assuming adler32. Reset the stream on failure. */ if (inflate(strm, Z_BLOCK) != Z_OK) { /* reset the stream */ strm->next_in = next_in; strm->next_out = next_out; strm->avail_in = avail_in; strm->avail_out = avail_out; ut_a(inflateReset2(strm, -<API key>) == Z_OK); /* read the zlib header */ ut_a(inflate(strm, Z_BLOCK) == Z_OK); } } /** Read the records from the serialized buffer into recs. The uncompressed fields of the records -if any- are not recovered by this function because the modification log is not applied yet. @return True if all the records were recovered from the serialized buffer successfully, False otherwise. */ UNIV_INTERN ibool <API key>( page_t* page, /* in: the header of the page is used. out: *data_end_ptr is set tot page + PAGE_ZIP_START if there were no records on the page when it was serialized. */ const byte* buf, /*in: buffer that has the serialization of records on the page. */ rec_t** recs, /* out: The array of records that are going to be recovered from buf */ ulint n_dense, /* in: The number of records in recs */ ulint** offsets_ptr, /* out: the offsets object allocated by this function will be returned to the caller as scratch memory for rec_get_offsets() */ ulint* trx_id_col_ptr, /* out: this will be set to the column number for transaction id */ ulint* heap_status_ptr, /* out: this will be set to the heap_status of the last record */ byte** data_end_ptr, /* out: end of data on the uncompressed page so that the caller can zero out the unused parts of the page. */ mem_heap_t* heap) /* in/out: temporary memory heap */ { dict_index_t* index = NULL; ulint trx_id_col = ULINT_UNDEFINED; ulint* offsets; ulint heap_status; const byte* buf_ptr = buf; const byte* buf_end = buf + <API key>; ulint n_dense_old; rec_t* rec; ulint len = mach_read_from_3(buf_ptr); buf_ptr += 3; index = <API key>( buf_ptr, buf_ptr + len, page_is_leaf(page) ? &trx_id_col : NULL); if (trx_id_col == ULINT_UNDEFINED && page_is_leaf(page)) { trx_id_col = 0; } buf_ptr += len; ut_a(buf_ptr < buf_end); if (UNIV_UNLIKELY(!index)) { return FALSE; } { /* Pre-allocate the offsets for <API key>(). See <API key>() for an explanation of how n is computed. */ ulint n = 1 + 1/* node ptr */ + <API key> + <API key>(index); offsets = static_cast<ulint*>( mem_heap_alloc(heap, n * sizeof(ulint))); *offsets = n; } /* Deserialize the records in heap_no order. */ n_dense_old = mach_read_from_2(buf_ptr); buf_ptr += 2; ut_a(buf_ptr < buf_end); ut_a(n_dense_old <= n_dense); if (UNIV_LIKELY(page_is_leaf(page))) { heap_status = REC_STATUS_ORDINARY | (<API key> << REC_HEAP_NO_SHIFT); } else { heap_status = REC_STATUS_NODE_PTR | (<API key> << REC_HEAP_NO_SHIFT); } if (n_dense_old) { while (n_dense_old) { rec = *recs++; mach_write_to_2(rec - REC_NEW_HEAP_NO, heap_status); buf_ptr = <API key>( buf_ptr, rec, index, offsets, trx_id_col, heap_status, buf_end); if (buf_ptr >= buf_end) { <API key>(index); return FALSE; } heap_status += 1 << REC_HEAP_NO_SHIFT; --n_dense_old; } *data_end_ptr = rec_get_end(rec, offsets); } else { *data_end_ptr = page + PAGE_ZIP_START; } *index_ptr = index; *offsets_ptr = offsets; *heap_status_ptr = heap_status; *trx_id_col_ptr = trx_id_col; return TRUE; } /** Decompress a page that was compressed using zlib's streaming interface. @return TRUE on success, FALSE on failure */ UNIV_INTERN ibool <API key>( page_zip_des_t* page_zip, /*!< in: data, ssize; out: m_start, m_end, m_nonempty, n_blobs */ page_t* page, /*!< out: uncompressed page, may be trashed */ rec_t** recs, /*!< in: dense page directory sorted by address */ ulint n_dense, /*!< in: size of recs[] */ ulint** offsets_ptr, /*!< out: *offsets_ptr will point to an array of offsets that can be used by the caller */ ulint* trx_id_col_ptr, /*!< out: *trx_id_col_ptr will be set to the column number for the transaction id column if this is a leaf primary key page. Otherwise it will be set to ULINT_UNDEFINED */ ulint* heap_status_ptr, /*!< out: *heap_status_ptr will be set to the heap status (heap number and metadata) of the last record */ byte** data_end_ptr, /*!< out: *data_end_ptr will point to the end of the last record on the compressed page image. */ mem_heap_t* heap) /*!< in: temporary memory heap */ { z_stream d_stream; dict_index_t* index = NULL; ulint trx_id_col = ULINT_UNDEFINED; ulint* offsets; ulint heap_status; page_zip_set_alloc(&d_stream, heap); d_stream.next_in = page_zip->data + PAGE_DATA; /* Subtract the space reserved for the page header and the end marker of the modification log. */ d_stream.avail_in = page_zip_get_size(page_zip) - (PAGE_DATA + 1); d_stream.next_out = page + PAGE_ZIP_START; d_stream.avail_out = UNIV_PAGE_SIZE - PAGE_ZIP_START; <API key>(&d_stream); /* Decode index */ if (UNIV_UNLIKELY(inflate(&d_stream, Z_BLOCK) != Z_OK)) { page_zip_fail("<API key>:" " 1 inflate(Z_BLOCK)=%s\n", d_stream.msg); return FALSE; } index = <API key>( page + PAGE_ZIP_START, d_stream.next_out, page_is_leaf(page) ? &trx_id_col : NULL); if (UNIV_UNLIKELY(!index)) { return FALSE; } d_stream.next_out = page + PAGE_ZIP_START; { /* Pre-allocate the offsets for <API key>(). */ ulint n = 1 + 1/* node ptr */ + <API key> + <API key>(index); offsets = static_cast<ulint*> ( mem_heap_alloc(heap, n * sizeof(ulint))); *offsets = n; } /* Decompress the records in heap_no order. */ if (UNIV_UNLIKELY(!page_is_leaf(page))) { /* This is a node pointer page. */ if (UNIV_UNLIKELY (!<API key>(page_zip, &d_stream, recs, n_dense, index, offsets, &heap_status, heap))) { page_zip_fail("<API key>:" " 2 <API key>" " failed"); <API key>(index); return FALSE; } } else if (trx_id_col == ULINT_UNDEFINED) { /* This is a leaf page in a secondary index. */ trx_id_col = 0; if (UNIV_UNLIKELY(!<API key>(page_zip, &d_stream, recs, n_dense, index, &heap_status))) { page_zip_fail("<API key>:" " 3 <API key> failed"); <API key>(index); return FALSE; } } else { /* This is a leaf page in a clustered index. */ if (UNIV_UNLIKELY(!<API key>(page_zip, &d_stream, recs, n_dense, index, trx_id_col, offsets, &heap_status, heap))) { page_zip_fail("<API key>:" " 4 <API key> failed"); <API key>(index); return FALSE; } } page_zip->m_end = PAGE_DATA + d_stream.total_in; *index_ptr = index; *trx_id_col_ptr = trx_id_col; *heap_status_ptr = heap_status; *data_end_ptr = d_stream.next_out; *offsets_ptr = offsets; return(TRUE); } /** Decompress a page. This function should tolerate errors on the compressed page. Instead of letting assertions fail, it will return FALSE if an inconsistency is detected. @return TRUE on success, FALSE on failure */ UNIV_INTERN ibool page_zip_decompress( page_zip_des_t* page_zip, /*!< in: data, ssize; out: m_start, m_end, m_nonempty, n_blobs */ page_t* page, /*!< out: uncompressed page, may be trashed */ ibool all, /*!< in: TRUE=decompress the whole page; FALSE=verify but do not copy some page header fields that should not change after page creation */ ulint space_id, /*!< in: table space id */ ulint fsp_flags, /*!< in: used to compute compression type and flags. If this is ULINT_UNDEFINED then fsp_flags is determined by other means. */ mem_heap_t** heap_ptr, /*!< out: if index_ptr is not NULL then *heap_ptr is set to the heap that is allocated by this function. The caller is responsible for freeing the heap. */ { dict_index_t* index = NULL; rec_t** recs; /*!< dense page directory, sorted by address */ ulint n_dense; /* number of user records on the page */ ulint trx_id_col = ULINT_UNDEFINED; mem_heap_t* heap; ulint* offsets; const byte* mod_log_ptr; const byte* page_dir_start; ulint info_bits = 0; ulint heap_status; byte* data_end = NULL; /*!< pointer to the end of the data after the compressed page image is decompressed from the compressed page image */ ulint trailer_len; /*!< length of the trailer after the compressed page image is decompressed */ ibool ret; uchar comp_level; uchar comp_type; byte* buf; #ifndef UNIV_HOTBACKUP page_zip_stat_t* zip_stat = &page_zip_stat[page_zip->ssize - 1]; ulonglong start = my_timer_now(); #endif /* !UNIV_HOTBACKUP */ ut_ad(<API key>(page_zip)); UNIV_MEM_ASSERT_W(page, UNIV_PAGE_SIZE); UNIV_MEM_ASSERT_RW(page_zip->data, page_zip_get_size(page_zip)); fsp_flags = fil_get_fsp_flags(space_id, fsp_flags); /* The dense directory excludes the infimum and supremum records. */ n_dense = page_dir_get_n_heap(page_zip->data) - <API key>; if (UNIV_UNLIKELY(n_dense * <API key> >= page_zip_get_size(page_zip))) { page_zip_fail("page_zip_decompress 1: %lu %lu\n", (ulong) n_dense, (ulong) page_zip_get_size(page_zip)); return(FALSE); } /* asking a heap of size 0 will just give a memory block with the default block size which is OK */ heap = <API key>(0, <API key>); recs = static_cast<rec_t**>( mem_heap_alloc(heap, n_dense * (2 * sizeof *recs))); if (all) { /* Copy the page header. */ memcpy(page, page_zip->data, PAGE_DATA); } else { /* Check that the bytes that we skip are identical. */ if (0 #ifdef UNIV_DEBUG || 1 #endif || UNIV_UNLIKELY(page_zip_debug)) { ut_a(!memcmp(FIL_PAGE_TYPE + page, FIL_PAGE_TYPE + page_zip->data, PAGE_HEADER - FIL_PAGE_TYPE)); ut_a(!memcmp(PAGE_HEADER + PAGE_LEVEL + page, PAGE_HEADER + PAGE_LEVEL + page_zip->data, PAGE_DATA - (PAGE_HEADER + PAGE_LEVEL))); } /* Copy the mutable parts of the page header. */ memcpy(page, page_zip->data, FIL_PAGE_TYPE); memcpy(PAGE_HEADER + page, PAGE_HEADER + page_zip->data, PAGE_LEVEL - PAGE_N_DIR_SLOTS); if (0 #ifdef UNIV_DEBUG || 1 #endif || UNIV_UNLIKELY(page_zip_debug)) { /* Check that the page headers match after copying. */ ut_a(!memcmp(page, page_zip->data, PAGE_DATA)); } } if (UNIV_UNLIKELY(page_zip_debug)) { /* Clear the uncompressed page, except the header. */ memset(PAGE_DATA + page, 0x55, UNIV_PAGE_SIZE - PAGE_DATA); } UNIV_MEM_INVALID(PAGE_DATA + page, UNIV_PAGE_SIZE - PAGE_DATA); /* Copy the page directory. */ if (UNIV_UNLIKELY(!page_zip_dir_decode(page_zip, page, recs, recs + n_dense, n_dense))) { mem_heap_free(heap); return(FALSE); } /* Copy the infimum and supremum records. */ memcpy(page + (PAGE_NEW_INFIMUM - <API key>), infimum_extra, sizeof infimum_extra); if (page_is_empty(page)) { <API key>(page + PAGE_NEW_INFIMUM, PAGE_NEW_SUPREMUM); } else { <API key>(page + PAGE_NEW_INFIMUM, page_zip_dir_get(page_zip, 0) & <API key>); } memcpy(page + PAGE_NEW_INFIMUM, infimum_data, sizeof infimum_data); memcpy(page + (PAGE_NEW_SUPREMUM - <API key> + 1), supremum_extra_data, sizeof supremum_extra_data); if (UNIV_UNLIKELY(!page_is_leaf(page))) { /* This is a node pointer page. */ info_bits = mach_read_from_4(page + FIL_PAGE_PREV) == FIL_NULL ? <API key> : 0; } /* Set number of blobs to zero */ page_zip->n_blobs = 0; comp_level = <API key>(fsp_flags); comp_type = <API key>(fsp_flags); page_zip->compact_metadata = <API key>(fsp_flags); if (comp_type == <API key>) { /* compress using zlib's streaming interface */ ret = <API key>(page_zip, page, recs, n_dense, &index, &offsets, &trx_id_col, &heap_status, &data_end, heap); } else { ulint compressed_len = 0; comp_state_t comp_state; ulint avail_in = page_zip_get_size(page_zip) - PAGE_DATA - 1; /* buffer for storing the serialized page */ buf = static_cast<byte*>( mem_heap_alloc(heap, 2 * UNIV_PAGE_SIZE)); comp_state.in = page_zip->data + PAGE_DATA; comp_state.avail_in = avail_in; comp_state.out = buf; comp_state.avail_out = 2 * UNIV_PAGE_SIZE; comp_state.level = comp_level; comp_state.heap = heap; comp_decompress(comp_type, &comp_state); ut_a(avail_in > comp_state.avail_in); compressed_len = avail_in - comp_state.avail_in; page_zip->m_end = compressed_len + PAGE_DATA; ret = <API key>( page, buf, recs, n_dense, &index, &offsets, &trx_id_col, &heap_status, &data_end, heap); } if (!ret) goto err_exit; /* Clear the unused heap space on the uncompressed page. */ page_dir_start = <API key>(page, <API key>(page) - 1); memset(data_end, 0, page_dir_start - data_end); ut_d(page_zip->m_start = page_zip->m_end); /* Apply the modification log. At this point page_zip->m_end must have been set to where the compression output ends. */ trailer_len = <API key>(page_zip, trx_id_col && (trx_id_col != ULINT_UNDEFINED)); mod_log_ptr = page_zip_apply_log(page_zip->data + page_zip->m_end, page_zip_get_size(page_zip) - page_zip->m_end - trailer_len, recs, n_dense, trx_id_col, heap_status, index, offsets); if (UNIV_UNLIKELY(!mod_log_ptr)) { page_zip_fail("page_zip_decompress 2: applying " "modification log failed"); goto err_exit; } page_zip->m_nonempty = (mod_log_ptr != (page_zip->data + page_zip->m_end)); page_zip->m_end = mod_log_ptr - page_zip->data; /* size check */ page_zip_size_check(page_zip, index); /* restore uncompressed fields if the page is a node pointer page or a primary key leaf page */ if (trx_id_col) { <API key>(page_zip, recs, index, trx_id_col, heap); } /* size check */ page_zip_size_check(page_zip, index); /* set the extra bytes */ if (UNIV_UNLIKELY(!<API key>(page_zip, page, info_bits))) { err_exit: if (index) { <API key>(index); } mem_heap_free(heap); return (FALSE); } ut_a(page_is_comp(page)); UNIV_MEM_ASSERT_RW(page, UNIV_PAGE_SIZE); #ifndef UNIV_HOTBACKUP ulonglong time_diff = my_timer_since(start); <API key>(zip_stat, time_diff, dict_index_is_clust(index)); <API key>( space_id, page_zip_get_size(page_zip), time_diff); index_id_t index_id = <API key>(page); if (<API key>) { <API key>(index_id, time_diff); } #endif /* !UNIV_HOTBACKUP */ if (heap_ptr) { if (index_ptr) { *index_ptr = index; } *heap_ptr = heap; } else { ut_ad(!index_ptr); <API key>(index); mem_heap_free(heap); } /* Update the stat counter for LRU policy. */ <API key>(); MONITOR_INC(<API key>); return(TRUE); } /** Flag: make page_zip_validate() compare page headers only */ UNIV_INTERN ibool <API key> = FALSE; /** Check that the compressed and decompressed pages match. @return TRUE if valid, FALSE if not */ UNIV_INTERN ibool <API key>( const page_zip_des_t* page_zip,/*!< in: compressed page */ const page_t* page, /*!< in: uncompressed page */ const dict_index_t* index, /*!< in: index of the page, if known */ ibool sloppy) /*!< in: FALSE=strict, TRUE=ignore the MIN_REC_FLAG */ { page_zip_des_t temp_page_zip; byte* temp_page_buf; page_t* temp_page; ibool valid; mem_heap_t* heap = NULL; dict_index_t** index_ptr; if (index) { index_ptr = NULL; } else { index_ptr = (dict_index_t**)(&index); } ut_a(page_zip_debug); if (memcmp(page_zip->data + FIL_PAGE_PREV, page + FIL_PAGE_PREV, FIL_PAGE_LSN - FIL_PAGE_PREV) || memcmp(page_zip->data + FIL_PAGE_TYPE, page + FIL_PAGE_TYPE, 2) || memcmp(page_zip->data + FIL_PAGE_DATA, page + FIL_PAGE_DATA, PAGE_DATA - FIL_PAGE_DATA)) { page_zip_fail("page_zip_validate: page header\n"); ut_hexdump(page_zip, sizeof *page_zip); ut_hexdump(page_zip->data, page_zip_get_size(page_zip)); ut_hexdump(page, UNIV_PAGE_SIZE); return(FALSE); } ut_a(page_is_comp(page)); if (<API key>) { return(TRUE); } /* page_zip_decompress() expects the uncompressed page to be UNIV_PAGE_SIZE aligned. */ temp_page_buf = static_cast<byte*>(ut_malloc(2 * UNIV_PAGE_SIZE)); temp_page = static_cast<byte*>(ut_align(temp_page_buf, UNIV_PAGE_SIZE)); UNIV_MEM_ASSERT_RW(page, UNIV_PAGE_SIZE); UNIV_MEM_ASSERT_RW(page_zip->data, page_zip_get_size(page_zip)); temp_page_zip = *page_zip; valid = page_zip_decompress( &temp_page_zip, temp_page, TRUE, page_get_space_id(page), ULINT_UNDEFINED, &heap, index_ptr); if (!valid) { fputs("page_zip_validate(): failed to decompress\n", stderr); goto func_exit; } if (page_zip->n_blobs != temp_page_zip.n_blobs) { page_zip_fail("page_zip_validate: n_blobs: %u!=%u\n", page_zip->n_blobs, temp_page_zip.n_blobs); valid = FALSE; } #ifdef UNIV_DEBUG if (page_zip->m_start != temp_page_zip.m_start) { page_zip_fail("page_zip_validate: m_start: %u!=%u\n", page_zip->m_start, temp_page_zip.m_start); valid = FALSE; } #endif /* UNIV_DEBUG */ if (page_zip->m_end != temp_page_zip.m_end) { page_zip_fail("page_zip_validate: m_end: %u!=%u\n", page_zip->m_end, temp_page_zip.m_end); valid = FALSE; } if (page_zip->m_nonempty != temp_page_zip.m_nonempty) { page_zip_fail("page_zip_validate(): m_nonempty: %u!=%u\n", page_zip->m_nonempty, temp_page_zip.m_nonempty); valid = FALSE; } if (memcmp(page + PAGE_HEADER, temp_page + PAGE_HEADER, UNIV_PAGE_SIZE - PAGE_HEADER - FIL_PAGE_DATA_END)) { /* In crash recovery, the "minimum record" flag may be set incorrectly until the mini-transaction is committed. Let us tolerate that difference when we are performing a sloppy validation. */ ulint* offsets; const rec_t* rec; const rec_t* trec; byte info_bits_diff; ulint offset = rec_get_next_offs(page + PAGE_NEW_INFIMUM, TRUE); ut_a(offset >= PAGE_NEW_SUPREMUM); offset -= 5/*REC_NEW_INFO_BITS*/; info_bits_diff = page[offset] ^ temp_page[offset]; if (info_bits_diff == <API key>) { temp_page[offset] = page[offset]; if (!memcmp(page + PAGE_HEADER, temp_page + PAGE_HEADER, UNIV_PAGE_SIZE - PAGE_HEADER - FIL_PAGE_DATA_END)) { /* Only the minimum record flag differed. Let us ignore it. */ page_zip_fail("page_zip_validate: " "min_rec_flag " "(%s" "%lu,%lu,0x%02lx)\n", sloppy ? "ignored, " : "", page_get_space_id(page), page_get_page_no(page), (ulong) page[offset]); valid = sloppy; goto func_exit; } } /* Compare the pointers in the PAGE_FREE list. */ rec = page_header_get_ptr(page, PAGE_FREE); trec = page_header_get_ptr(temp_page, PAGE_FREE); while (rec || trec) { if (page_offset(rec) != page_offset(trec)) { page_zip_fail("page_zip_validate: " "PAGE_FREE list: %u!=%u\n", (unsigned) page_offset(rec), (unsigned) page_offset(trec)); valid = FALSE; goto func_exit; } rec = <API key>(rec, TRUE); trec = <API key>(trec, TRUE); } /* Compare the records. */ offsets = NULL; rec = <API key>( page + PAGE_NEW_INFIMUM, TRUE); trec = <API key>( temp_page + PAGE_NEW_INFIMUM, TRUE); do { if (page_offset(rec) != page_offset(trec)) { page_zip_fail("page_zip_validate: " "record list: 0x%02x!=0x%02x\n", (unsigned) page_offset(rec), (unsigned) page_offset(trec)); valid = FALSE; break; } /* Compare the data. */ offsets = rec_get_offsets( rec, index, offsets, ULINT_UNDEFINED, &heap); if (memcmp(rec - rec_offs_extra_size(offsets), trec - rec_offs_extra_size(offsets), rec_offs_size(offsets))) { page_zip_fail( "page_zip_validate: " "record content: 0x%02x", (unsigned) page_offset(rec)); valid = FALSE; break; } rec = <API key>(rec, TRUE); trec = <API key>(trec, TRUE); } while (rec || trec); } if (heap) { mem_heap_free(heap); } func_exit: if (!valid) { ut_hexdump(page_zip, sizeof *page_zip); ut_hexdump(page_zip->data, page_zip_get_size(page_zip)); ut_hexdump(page, UNIV_PAGE_SIZE); ut_hexdump(temp_page, UNIV_PAGE_SIZE); } ut_free(temp_page_buf); return(valid); } /** Check that the compressed and decompressed pages match. @return TRUE if valid, FALSE if not */ UNIV_INTERN ibool page_zip_validate( const page_zip_des_t* page_zip,/*!< in: compressed page */ const page_t* page, /*!< in: uncompressed page */ const dict_index_t* index) /*!< in: index of the page, if known */ { return(<API key>(page_zip, page, index, recv_recovery_is_on())); } #ifdef UNIV_DEBUG /** Assert that the compressed and decompressed page headers match. @return TRUE */ static ibool page_zip_header_cmp( const page_zip_des_t* page_zip,/*!< in: compressed page */ const byte* page) /*!< in: uncompressed page */ { ut_ad(!memcmp(page_zip->data + FIL_PAGE_PREV, page + FIL_PAGE_PREV, FIL_PAGE_LSN - FIL_PAGE_PREV)); ut_ad(!memcmp(page_zip->data + FIL_PAGE_TYPE, page + FIL_PAGE_TYPE, 2)); ut_ad(!memcmp(page_zip->data + FIL_PAGE_DATA, page + FIL_PAGE_DATA, PAGE_DATA - FIL_PAGE_DATA)); return(TRUE); } #endif /* UNIV_DEBUG */ /** Write the blob pointers of the given record on the blob storage. This function must not be called during the compression/serialization of the page, for that <API key>() must be called. This function must be called when a record is updated or created */ static void <API key>( page_zip_des_t* page_zip, /* compressed page with meta data */ dict_index_t* index, /* index for the page */ const rec_t* rec, /* the records for which blob pointer are to be stored */ const ulint* offsets, /* column offsets for the record */ ibool create) /* record is being inserted if create=TRUE, it is being updated otherwise */ { byte* externs; ulint blob_no; ulint n_ext = rec_offs_n_extern(offsets); if (!n_ext) { return; } blob_no = <API key>(page_zip, rec, index); ut_ad(blob_no <= page_zip->n_blobs); externs = <API key>(page_zip); if (create && page_zip->compact_metadata) { /* memmove the trx rbp storage to make room for the blob pointers */ ulint <API key> = <API key>(page_zip); byte* trx_rbp_storage_end = <API key>(page_zip, false) - <API key>; memmove(trx_rbp_storage_end - n_ext * <API key>, trx_rbp_storage_end, <API key>); /* store the number of blobs in the beginning of externs */ ut_ad(page_zip->n_blobs == <API key>(page_zip)); <API key>(page_zip, page_zip->n_blobs + n_ext); } if (create) { byte* ext_end = externs - (page_zip->n_blobs * <API key>); byte* externs_ptr = externs - (blob_no * <API key>); memmove(ext_end - n_ext * <API key>, ext_end, externs_ptr - ext_end); page_zip->n_blobs += n_ext; } <API key>(externs, rec, offsets, blob_no); } /** Write an entire record on the compressed page. The data must already have been written to the uncompressed page. */ UNIV_INTERN void page_zip_write_rec( page_zip_des_t* page_zip,/*!< in/out: compressed page */ const byte* rec, /*!< in: record being written */ dict_index_t* index, /*!< in: the index the record belongs to */ const ulint* offsets,/*!< in: rec_get_offsets(rec, index) */ ulint create) /*!< in: nonzero=insert, zero=update */ { const page_t* page; byte* data; ulint rec_no; byte* slot; ulint trx_id_col; byte* trx_rbp_storage; ut_ad(PAGE_ZIP_MATCH(rec, page_zip)); ut_ad(<API key>(page_zip)); ut_ad(page_zip_get_size(page_zip) > PAGE_DATA + page_zip_dir_size(page_zip)); ut_ad(rec_offs_comp(offsets)); ut_ad(rec_offs_validate(rec, index, offsets)); ut_ad(page_zip->m_start >= PAGE_DATA); page = page_align(rec); ut_ad(page_zip_header_cmp(page_zip, page)); ut_ad(<API key>((page_t*) page)); UNIV_MEM_ASSERT_RW(page_zip->data, page_zip_get_size(page_zip)); UNIV_MEM_ASSERT_RW(rec, rec_offs_data_size(offsets)); UNIV_MEM_ASSERT_RW(rec - rec_offs_extra_size(offsets), rec_offs_extra_size(offsets)); slot = page_zip_dir_find(page_zip, page_offset(rec)); ut_a(slot); /* Copy the delete mark. */ if (<API key>(rec, TRUE)) { *slot |= (<API key> >> 8); } else { *slot &= ~(<API key> >> 8); } ut_ad(rec_get_start((rec_t*) rec, offsets) >= page + PAGE_ZIP_START); ut_ad(rec_get_end((rec_t*) rec, offsets) <= page + UNIV_PAGE_SIZE - PAGE_DIR - PAGE_DIR_SLOT_SIZE * <API key>(page)); rec_no = rec_get_heap_no_new(rec) - <API key>; ut_ad(rec_no < page_dir_get_n_heap(page) - <API key>); /* Append to the modification log. */ data = page_zip->data + page_zip->m_end; ut_ad(!*data); /* Identify the record by writing its heap number - 1. 0 is reserved to indicate the end of the modification log. */ if (UNIV_UNLIKELY(rec_no + 1 >= 64)) { *data++ = (byte) (0x80 | (rec_no + 1) >> 7); ut_ad(!*data); } *data++ = (byte) ((rec_no + 1) << 1); ut_ad(!*data); trx_id_col = <API key>(page, index); /* Serialize the record into modification log */ #ifdef UNIV_DEBUG data = <API key>(TRUE, data, rec, offsets, trx_id_col); #else data = <API key>(data, rec, offsets, trx_id_col); #endif /* Store uncompressed fields of the record on the trailer of page_zip->data */ if (UNIV_UNLIKELY(trx_id_col == ULINT_UNDEFINED)) { /* node ptr page */ <API key>(page_zip, rec_no, rec, offsets); } else if (trx_id_col) { /* primary key page */ trx_rbp_storage = <API key>(page_zip, false); <API key>(trx_rbp_storage, rec, offsets, rec_no, trx_id_col); <API key>(page_zip, index, rec, offsets, create); page_zip_size_check(page_zip, index); } ut_a(!*data); ut_ad((ulint) (data - page_zip->data) < page_zip_get_size(page_zip)); page_zip->m_end = data - page_zip->data; page_zip->m_nonempty = TRUE; if (UNIV_UNLIKELY(page_zip_debug)) { ut_a(page_zip_validate(page_zip, page_align(rec), index)); } } /** Write a BLOB pointer of a record on the leaf page of a clustered index. The information must already have been updated on the uncompressed page. */ UNIV_INTERN void <API key>( page_zip_des_t* page_zip,/*!< in/out: compressed page */ const byte* rec, /*!< in/out: record whose data is being written */ dict_index_t* index, /*!< in: index of the page */ const ulint* offsets,/*!< in: rec_get_offsets(rec, index) */ ulint n, /*!< in: column index */ mtr_t* mtr) /*!< in: mini-transaction handle, or NULL if no logging is needed */ { const byte* field; byte* externs; const page_t* page = page_align(rec); ulint blob_no; ulint len; ut_ad(PAGE_ZIP_MATCH(rec, page_zip)); ut_ad(<API key>((page_t*) page)); ut_ad(<API key>(page_zip)); ut_ad(page_zip_get_size(page_zip) > PAGE_DATA + page_zip_dir_size(page_zip)); ut_ad(rec_offs_comp(offsets)); ut_ad(rec_offs_validate(rec, NULL, offsets)); ut_ad(rec_offs_any_extern(offsets)); ut_ad(rec_offs_nth_extern(offsets, n)); ut_ad(page_zip->m_start >= PAGE_DATA); ut_ad(page_zip_header_cmp(page_zip, page)); ut_ad(page_is_leaf(page)); ut_ad(dict_index_is_clust(index)); UNIV_MEM_ASSERT_RW(page_zip->data, page_zip_get_size(page_zip)); UNIV_MEM_ASSERT_RW(rec, rec_offs_data_size(offsets)); UNIV_MEM_ASSERT_RW(rec - rec_offs_extra_size(offsets), rec_offs_extra_size(offsets)); blob_no = <API key>(page_zip, rec, index) + <API key>(rec, index, n); ut_a(blob_no < page_zip->n_blobs); if (!page_zip->compact_metadata) { externs = page_zip_dir_start(page_zip) - page_zip_dir_elems(page_zip) * DATA_TRX_RBP_LEN; } else { externs = page_zip_dir_start(page_zip) - 2; } field = rec_get_nth_field(rec, offsets, n, &len); externs -= (blob_no + 1) * <API key>; field += len - <API key>; memcpy(externs, field, <API key>); if (UNIV_UNLIKELY(page_zip_debug)) { ut_a(page_zip_validate(page_zip, page, index)); } if (mtr) { #ifndef UNIV_HOTBACKUP <API key>(field, externs, externs - page_zip->data, mtr); #endif /* !UNIV_HOTBACKUP */ } } /** Write the node pointer of a record on a non-leaf compressed page. */ UNIV_INTERN void <API key>( page_zip_des_t* page_zip,/*!< in/out: compressed page */ byte* rec, /*!< in/out: record */ ulint size, /*!< in: data size of rec */ ulint ptr, /*!< in: node pointer */ mtr_t* mtr) /*!< in: mini-transaction, or NULL */ { byte* field; byte* storage; #ifdef UNIV_DEBUG page_t* page = page_align(rec); #endif /* UNIV_DEBUG */ ut_ad(PAGE_ZIP_MATCH(rec, page_zip)); ut_ad(<API key>(page)); ut_ad(<API key>(page_zip)); ut_ad(page_zip_get_size(page_zip) > PAGE_DATA + page_zip_dir_size(page_zip)); ut_ad(page_rec_is_comp(rec)); ut_ad(page_zip->m_start >= PAGE_DATA); ut_ad(page_zip_header_cmp(page_zip, page)); ut_ad(!page_is_leaf(page)); UNIV_MEM_ASSERT_RW(page_zip->data, page_zip_get_size(page_zip)); UNIV_MEM_ASSERT_RW(rec, size); storage = page_zip_dir_start(page_zip) - (rec_get_heap_no_new(rec) - 1) * REC_NODE_PTR_SIZE; field = rec + size - REC_NODE_PTR_SIZE; if (0 #ifdef UNIV_DEBUG || 1 #endif || UNIV_UNLIKELY(page_zip_debug)) { ut_a(!memcmp(storage, field, REC_NODE_PTR_SIZE)); } #if REC_NODE_PTR_SIZE != 4 # error "REC_NODE_PTR_SIZE != 4" #endif mach_write_to_4(field, ptr); memcpy(storage, field, REC_NODE_PTR_SIZE); if (mtr) { #ifndef UNIV_HOTBACKUP <API key>(field, storage - page_zip->data, mtr); #endif /* !UNIV_HOTBACKUP */ } } /** Write the trx_id and roll_ptr of a record on a B-tree leaf node page. */ UNIV_INTERN void <API key>( page_zip_des_t* page_zip,/*!< in/out: compressed page */ byte* rec, /*!< in/out: record */ const ulint* offsets,/*!< in: rec_get_offsets(rec, index) */ ulint trx_id_col,/*!< in: column number of TRX_ID in rec */ trx_id_t trx_id, /*!< in: transaction identifier */ roll_ptr_t roll_ptr)/*!< in: roll_ptr */ { byte* field; byte* storage; #ifdef UNIV_DEBUG page_t* page = page_align(rec); #endif /* UNIV_DEBUG */ ulint len; ut_ad(PAGE_ZIP_MATCH(rec, page_zip)); ut_ad(<API key>(page)); ut_ad(<API key>(page_zip)); ut_ad(page_zip_get_size(page_zip) > PAGE_DATA + page_zip_dir_size(page_zip)); ut_ad(rec_offs_validate(rec, NULL, offsets)); ut_ad(rec_offs_comp(offsets)); ut_ad(page_zip->m_start >= PAGE_DATA); ut_ad(page_zip_header_cmp(page_zip, page)); ut_ad(page_is_leaf(page)); UNIV_MEM_ASSERT_RW(page_zip->data, page_zip_get_size(page_zip)); storage = <API key>(page_zip, false) - (rec_get_heap_no_new(rec) - 1) * DATA_TRX_RBP_LEN; #if DATA_TRX_ID + 1 != DATA_ROLL_PTR # error "DATA_TRX_ID + 1 != DATA_ROLL_PTR" #endif field = rec_get_nth_field(rec, offsets, trx_id_col, &len); ut_ad(len == DATA_TRX_ID_LEN); ut_ad(field + DATA_TRX_ID_LEN == rec_get_nth_field(rec, offsets, trx_id_col + 1, &len)); ut_ad(len == DATA_ROLL_PTR_LEN); if (0 #ifdef UNIV_DEBUG || 1 #endif || UNIV_UNLIKELY(page_zip_debug)) { ut_a(!memcmp(storage, field, DATA_TRX_RBP_LEN)); } #if DATA_TRX_ID_LEN != 6 # error "DATA_TRX_ID_LEN != 6" #endif mach_write_to_6(field, trx_id); #if DATA_ROLL_PTR_LEN != 7 # error "DATA_ROLL_PTR_LEN != 7" #endif mach_write_to_7(field + DATA_TRX_ID_LEN, roll_ptr); memcpy(storage, field, DATA_TRX_RBP_LEN); UNIV_MEM_ASSERT_RW(rec, rec_offs_data_size(offsets)); UNIV_MEM_ASSERT_RW(rec - rec_offs_extra_size(offsets), rec_offs_extra_size(offsets)); UNIV_MEM_ASSERT_RW(page_zip->data, page_zip_get_size(page_zip)); } /** Clear an area on the uncompressed and compressed page. Do not clear the data payload, as that would grow the modification log. */ static void page_zip_clear_rec( page_zip_des_t* page_zip, /*!< in/out: compressed page */ byte* rec, /*!< in: record to clear */ const dict_index_t* index, /*!< in: index of rec */ const ulint* offsets) /*!< in: rec_get_offsets(rec, index) */ { ulint heap_no; page_t* page = page_align(rec); byte* storage; byte* trx_rbp_storage; byte* field; ulint len; /* page_zip_validate() would fail here if a record containing externally stored columns is being deleted. */ ut_ad(rec_offs_validate(rec, index, offsets)); ut_ad(!page_zip_dir_find(page_zip, page_offset(rec))); ut_ad(<API key>(page_zip, page_offset(rec))); ut_ad(page_zip_header_cmp(page_zip, page)); heap_no = rec_get_heap_no_new(rec); ut_ad(heap_no >= <API key>); UNIV_MEM_ASSERT_RW(page_zip->data, page_zip_get_size(page_zip)); UNIV_MEM_ASSERT_RW(rec, rec_offs_data_size(offsets)); UNIV_MEM_ASSERT_RW(rec - rec_offs_extra_size(offsets), rec_offs_extra_size(offsets)); if (!page_is_leaf(page)) { /* Clear node_ptr. On the compressed page, there is an array of node_ptr immediately before the dense page directory, at the very end of the page. */ storage = page_zip_dir_start(page_zip); ut_ad(<API key>(index) == rec_offs_n_fields(offsets) - 1); field = rec_get_nth_field(rec, offsets, rec_offs_n_fields(offsets) - 1, &len); ut_ad(len == REC_NODE_PTR_SIZE); ut_ad(!rec_offs_any_extern(offsets)); memset(field, 0, REC_NODE_PTR_SIZE); memset(storage - (heap_no - 1) * REC_NODE_PTR_SIZE, 0, REC_NODE_PTR_SIZE); } else if (dict_index_is_clust(index)) { /* Clear trx_id and roll_ptr. On the compressed page, there is an array of these fields immediately before the dense page directory, at the very end of the page. */ const ulint trx_id_pos = <API key>( <API key>( index->table, DATA_TRX_ID), index); trx_rbp_storage = <API key>(page_zip, false); field = rec_get_nth_field(rec, offsets, trx_id_pos, &len); ut_ad(len == DATA_TRX_ID_LEN); memset(field, 0, DATA_TRX_RBP_LEN); memset(trx_rbp_storage - (heap_no - 1) * DATA_TRX_RBP_LEN, 0, DATA_TRX_RBP_LEN); if (rec_offs_any_extern(offsets)) { ulint i; for (i = rec_offs_n_fields(offsets); i /* Clear all BLOB pointers in order to make page_zip_validate() pass. */ if (rec_offs_nth_extern(offsets, i)) { field = rec_get_nth_field( rec, offsets, i, &len); ut_ad(len == <API key>); memset(field + len - <API key>, 0, <API key>); } } } } else { ut_ad(!rec_offs_any_extern(offsets)); } if (UNIV_UNLIKELY(page_zip_debug)) { ut_a(page_zip_validate(page_zip, page, index)); } } /** Write the "deleted" flag of a record on a compressed page. The flag must already have been written on the uncompressed page. */ UNIV_INTERN void <API key>( page_zip_des_t* page_zip,/*!< in/out: compressed page */ const byte* rec, /*!< in: record on the uncompressed page */ ulint flag) /*!< in: the deleted flag (nonzero=TRUE) */ { byte* slot = page_zip_dir_find(page_zip, page_offset(rec)); ut_a(slot); UNIV_MEM_ASSERT_RW(page_zip->data, page_zip_get_size(page_zip)); if (flag) { *slot |= (<API key> >> 8); } else { *slot &= ~(<API key> >> 8); } if (UNIV_UNLIKELY(page_zip_debug)) { ut_a(page_zip_validate(page_zip, page_align(rec), NULL)); } } /** Write the "owned" flag of a record on a compressed page. The n_owned field must already have been written on the uncompressed page. */ UNIV_INTERN void <API key>( page_zip_des_t* page_zip,/*!< in/out: compressed page */ const byte* rec, /*!< in: record on the uncompressed page */ ulint flag) /*!< in: the owned flag (nonzero=TRUE) */ { byte* slot = page_zip_dir_find(page_zip, page_offset(rec)); ut_a(slot); UNIV_MEM_ASSERT_RW(page_zip->data, page_zip_get_size(page_zip)); if (flag) { *slot |= (<API key> >> 8); } else { *slot &= ~(<API key> >> 8); } } /** Insert a record to the dense page directory. */ UNIV_INTERN void page_zip_dir_insert( page_zip_des_t* page_zip, /*!< in/out: compressed page */ const byte* prev_rec, /*!< in: record after which to insert */ const byte* free_rec, /*!< in: record from which rec was allocated, or NULL */ byte* rec, /*!< in: record to insert */ bool is_clustered) /*!< in: clustered index? */ { ulint n_dense; byte* slot_rec; byte* slot_free; ut_ad(prev_rec != rec); ut_ad(page_rec_get_next((rec_t*) prev_rec) == rec); ut_ad(<API key>(page_zip)); UNIV_MEM_ASSERT_RW(page_zip->data, page_zip_get_size(page_zip)); if (page_rec_is_infimum(prev_rec)) { /* Use the first slot. */ slot_rec = page_zip->data + page_zip_get_size(page_zip); } else { slot_rec = page_zip_dir_find(page_zip, page_offset(prev_rec)); ut_a(slot_rec); } if (UNIV_LIKELY_NULL(free_rec)) { /* The record was allocated from the free list. The total number of heap records won't change in this case. Shift the dense directory only up to that slot.*/ ut_ad(rec_get_heap_no_new(rec) < page_dir_get_n_heap(page_zip->data)); ut_ad(rec >= free_rec); slot_free = <API key>(page_zip, page_offset(free_rec)); ut_ad(slot_free); slot_free += <API key>; } else { <API key>(page_zip, is_clustered); /* The record was allocated from the heap. The newly added heap record should have the largest heap_no. Shift to the end of the dense page directory. */ ut_ad(rec_get_heap_no_new(rec) == page_dir_get_n_heap(page_zip->data) - 1); n_dense = page_zip_dir_elems(page_zip); slot_free = page_zip->data + page_zip_get_size(page_zip) - <API key> * (n_dense - 1); } /* Shift the dense directory to allocate place for rec. */ memmove(slot_free - <API key>, slot_free, slot_rec - slot_free); /* Write the entry for the inserted record. The "owned" and "deleted" flags must be zero. */ mach_write_to_2(slot_rec - <API key>, page_offset(rec)); } /** Shift the dense page directory and the array of BLOB pointers when a record is deleted. */ UNIV_INTERN void page_zip_dir_delete( page_zip_des_t* page_zip, /*!< in/out: compressed page */ byte* rec, /*!< in: deleted record */ const dict_index_t* index, /*!< in: index of rec */ const ulint* offsets, /*!< in: rec_get_offsets(rec) */ const byte* free) /*!< in: previous start of the free list */ { byte* slot_rec; byte* slot_free; ulint n_ext; page_t* page = page_align(rec); ut_ad(rec_offs_validate(rec, index, offsets)); ut_ad(rec_offs_comp(offsets)); UNIV_MEM_ASSERT_RW(page_zip->data, page_zip_get_size(page_zip)); UNIV_MEM_ASSERT_RW(rec, rec_offs_data_size(offsets)); UNIV_MEM_ASSERT_RW(rec - rec_offs_extra_size(offsets), rec_offs_extra_size(offsets)); slot_rec = page_zip_dir_find(page_zip, page_offset(rec)); ut_a(slot_rec); /* This could not be done before page_zip_dir_find(). */ <API key>(page, page_zip, PAGE_N_RECS, (ulint)(page_get_n_recs(page) - 1)); if (UNIV_UNLIKELY(!free)) { /* Make the last slot the start of the free list. */ slot_free = page_zip->data + page_zip_get_size(page_zip) - <API key> * (page_dir_get_n_heap(page_zip->data) - <API key>); } else { slot_free = <API key>(page_zip, page_offset(free)); ut_a(slot_free < slot_rec); /* Grow the free list by one slot by moving the start. */ slot_free += <API key>; } if (UNIV_LIKELY(slot_rec > slot_free)) { memmove(slot_free + <API key>, slot_free, slot_rec - slot_free); } /* Write the entry for the deleted record. The "owned" and "deleted" flags will be cleared. */ mach_write_to_2(slot_free, page_offset(rec)); if (!page_is_leaf(page) || !dict_index_is_clust(index)) { ut_ad(!rec_offs_any_extern(offsets)); goto skip_blobs; } n_ext = rec_offs_n_extern(offsets); if (UNIV_UNLIKELY(n_ext)) { ulint blob_no; byte* externs; byte* ext_end; ulint n_dense = page_zip_dir_elems(page_zip); ulint old_n_blobs = page_zip->n_blobs; ulint new_n_blobs = page_zip->n_blobs - n_ext; blob_no = <API key>(page_zip, rec, index); ut_a(blob_no + n_ext <= page_zip->n_blobs); externs = <API key>(page_zip); if (page_zip->compact_metadata) { ut_ad(old_n_blobs == <API key>(page_zip)); <API key>(page_zip, new_n_blobs); } ext_end = externs - old_n_blobs * <API key>; externs -= blob_no * <API key>; /* Shift the blob pointers array. */ memmove(ext_end + n_ext * <API key>, ext_end, ((new_n_blobs - blob_no) * <API key>)); if (page_zip->compact_metadata) { byte* trx_rbp_storage = NULL; byte* trx_rbp_storage_end; /* shift the trx rbp storage because blob storage got smaller */ trx_rbp_storage = <API key>(page_zip, false); trx_rbp_storage_end = trx_rbp_storage - n_dense * DATA_TRX_RBP_LEN; memmove(trx_rbp_storage_end + n_ext * <API key>, trx_rbp_storage_end, n_dense * DATA_TRX_RBP_LEN); /* zerofill the old unused tail of the trx_rbp_storage */ memset(trx_rbp_storage_end, 0, n_ext * <API key>); } else { /* zerofill the remaining parts of the blob storage */ memset(ext_end, 0, n_ext * <API key>); } page_zip->n_blobs = new_n_blobs; } skip_blobs: /* The compression algorithm expects info_bits and n_owned to be 0 for deleted records. */ rec[-<API key>] = 0; /* info_bits and n_owned */ page_zip_clear_rec(page_zip, rec, index, offsets); } /** Reorganize and compress a page. This is a low-level operation for compressed pages, to be used when page_zip_compress() fails. On success, a redo log entry <API key> will be written. The function btr_page_reorganize() should be preferred whenever possible. IMPORTANT: if page_zip_reorganize() is invoked on a leaf page of a non-clustered index, the caller must update the insert buffer free bits in the same mini-transaction in such a way that the modification will be redo-logged. @return TRUE on success, FALSE on failure; page_zip will be left intact on failure, but page will be overwritten. */ UNIV_INTERN ibool page_zip_reorganize( buf_block_t* block, /*!< in/out: page with compressed page; on the compressed page, in: size; out: data, n_blobs, m_start, m_end, m_nonempty */ dict_index_t* index, /*!< in: index of the B-tree node */ mtr_t* mtr) /*!< in: mini-transaction */ { #ifndef UNIV_HOTBACKUP buf_pool_t* buf_pool = buf_pool_from_block(block); #endif /* !UNIV_HOTBACKUP */ page_zip_des_t* page_zip = <API key>(block); page_t* page = buf_block_get_frame(block); buf_block_t* temp_block; page_t* temp_page; ulint log_mode; ut_ad(mtr_memo_contains(mtr, block, MTR_MEMO_PAGE_X_FIX)); ut_ad(page_is_comp(page)); ut_ad(!dict_index_is_ibuf(index)); /* Note that page_zip_validate(page_zip, page, index) may fail here. */ UNIV_MEM_ASSERT_RW(page, UNIV_PAGE_SIZE); UNIV_MEM_ASSERT_RW(page_zip->data, page_zip_get_size(page_zip)); /* Disable logging */ log_mode = mtr_set_log_mode(mtr, MTR_LOG_NONE); #ifndef UNIV_HOTBACKUP temp_block = buf_block_alloc(buf_pool); <API key>(block); block-><API key> = TRUE; #else /* !UNIV_HOTBACKUP */ ut_ad(block == back_block1); temp_block = back_block2; #endif /* !UNIV_HOTBACKUP */ temp_page = temp_block->frame; /* Copy the old page to temporary space */ buf_frame_copy(temp_page, page); btr_blob_dbg_remove(page, index, "zip_reorg"); /* Recreate the page: note that global data on page (possible segment headers, next page-field, etc.) is preserved intact */ page_create(block, mtr, TRUE); /* Copy the records from the temporary space to the recreated page; do not copy the lock bits yet */ <API key>(block, temp_block, <API key>(temp_page), index, mtr); if (!dict_index_is_clust(index) && page_is_leaf(temp_page)) { /* Copy max trx id to recreated page */ trx_id_t max_trx_id = page_get_max_trx_id(temp_page); page_set_max_trx_id(block, NULL, max_trx_id, NULL); ut_ad(max_trx_id != 0); } /* Restore logging. */ mtr_set_log_mode(mtr, log_mode); if (!page_zip_compress(page_zip, page, index, <API key>, mtr)) { #ifndef UNIV_HOTBACKUP buf_block_free(temp_block); #endif /* !UNIV_HOTBACKUP */ return(FALSE); } <API key>(block, temp_block); #ifndef UNIV_HOTBACKUP buf_block_free(temp_block); #endif /* !UNIV_HOTBACKUP */ return(TRUE); } #ifndef UNIV_HOTBACKUP /** Copy the records of a page byte for byte. Do not copy the page header or trailer, except those B-tree header fields that are directly related to the storage of records. Also copy PAGE_MAX_TRX_ID. NOTE: The caller must update the lock table and the adaptive hash index. */ UNIV_INTERN void page_zip_copy_recs( page_zip_des_t* page_zip, /*!< out: copy of src_zip (n_blobs, m_start, m_end, m_nonempty, data[0..size-1]) */ page_t* page, /*!< out: copy of src */ const page_zip_des_t* src_zip, /*!< in: compressed page */ const page_t* src, /*!< in: page */ dict_index_t* index, /*!< in: index of the B-tree */ mtr_t* mtr) /*!< in: mini-transaction */ { ut_ad(<API key>(mtr, page, MTR_MEMO_PAGE_X_FIX)); ut_ad(<API key>(mtr, src, MTR_MEMO_PAGE_X_FIX)); ut_ad(!dict_index_is_ibuf(index)); if (UNIV_UNLIKELY(page_zip_debug)) { /* The B-tree operations that call this function may set FIL_PAGE_PREV or PAGE_LEVEL, causing a temporary min_rec_flag mismatch. A strict page_zip_validate() will be executed later during the B-tree operations. */ ut_a(<API key>(src_zip, src, index, TRUE)); } ut_a(page_zip_get_size(page_zip) == page_zip_get_size(src_zip)); if (UNIV_UNLIKELY(src_zip->n_blobs)) { ut_a(page_is_leaf(src)); ut_a(dict_index_is_clust(index)); } /* The PAGE_MAX_TRX_ID must be set on leaf pages of secondary indexes. It does not matter on other pages. */ ut_a(dict_index_is_clust(index) || !page_is_leaf(src) || page_get_max_trx_id(src)); UNIV_MEM_ASSERT_W(page, UNIV_PAGE_SIZE); UNIV_MEM_ASSERT_W(page_zip->data, page_zip_get_size(page_zip)); UNIV_MEM_ASSERT_RW(src, UNIV_PAGE_SIZE); UNIV_MEM_ASSERT_RW(src_zip->data, page_zip_get_size(page_zip)); /* Copy those B-tree page header fields that are related to the records stored in the page. Also copy the field PAGE_MAX_TRX_ID. Skip the rest of the page header and trailer. On the compressed page, there is no trailer. */ #if PAGE_MAX_TRX_ID + 8 != <API key> # error "PAGE_MAX_TRX_ID + 8 != <API key>" #endif memcpy(PAGE_HEADER + page, PAGE_HEADER + src, <API key>); memcpy(PAGE_DATA + page, PAGE_DATA + src, UNIV_PAGE_SIZE - PAGE_DATA - FIL_PAGE_DATA_END); memcpy(PAGE_HEADER + page_zip->data, PAGE_HEADER + src_zip->data, <API key>); memcpy(PAGE_DATA + page_zip->data, PAGE_DATA + src_zip->data, page_zip_get_size(page_zip) - PAGE_DATA); /* Copy all fields of src_zip to page_zip, except the pointer to the compressed data page. */ { page_zip_t* data = page_zip->data; memcpy(page_zip, src_zip, sizeof *page_zip); page_zip->data = data; } ut_ad(<API key>(page_zip, dict_index_is_clust(index)) + page_zip->m_end < page_zip_get_size(page_zip)); if (!page_is_leaf(src) && UNIV_UNLIKELY(mach_read_from_4(src + FIL_PAGE_PREV) == FIL_NULL) && UNIV_LIKELY(mach_read_from_4(page + FIL_PAGE_PREV) != FIL_NULL)) { /* Clear the <API key> of the first user record. */ ulint offs = rec_get_next_offs(page + PAGE_NEW_INFIMUM, TRUE); if (UNIV_LIKELY(offs != PAGE_NEW_SUPREMUM)) { rec_t* rec = page + offs; ut_a(rec[-<API key>] & <API key>); rec[-<API key>] &= ~ <API key>; } } if (UNIV_UNLIKELY(page_zip_debug)) { ut_a(page_zip_validate(page_zip, page, index)); } btr_blob_dbg_add(page, index, "page_zip_copy_recs"); <API key>(page_zip, page, index, mtr); } #endif /* !UNIV_HOTBACKUP */
FILE(REMOVE_RECURSE "CMakeFiles/g3dlite.dir/AABox.cpp.o" "CMakeFiles/g3dlite.dir/Any.cpp.o" "CMakeFiles/g3dlite.dir/BinaryFormat.cpp.o" "CMakeFiles/g3dlite.dir/BinaryInput.cpp.o" "CMakeFiles/g3dlite.dir/BinaryOutput.cpp.o" "CMakeFiles/g3dlite.dir/Box.cpp.o" "CMakeFiles/g3dlite.dir/Capsule.cpp.o" "CMakeFiles/g3dlite.dir/CollisionDetection.cpp.o" "CMakeFiles/g3dlite.dir/CoordinateFrame.cpp.o" "CMakeFiles/g3dlite.dir/Crypto.cpp.o" "CMakeFiles/g3dlite.dir/Cylinder.cpp.o" "CMakeFiles/g3dlite.dir/debugAssert.cpp.o" "CMakeFiles/g3dlite.dir/FileSystem.cpp.o" "CMakeFiles/g3dlite.dir/fileutils.cpp.o" "CMakeFiles/g3dlite.dir/format.cpp.o" "CMakeFiles/g3dlite.dir/g3dfnmatch.cpp.o" "CMakeFiles/g3dlite.dir/g3dmath.cpp.o" "CMakeFiles/g3dlite.dir/Line.cpp.o" "CMakeFiles/g3dlite.dir/LineSegment.cpp.o" "CMakeFiles/g3dlite.dir/Log.cpp.o" "CMakeFiles/g3dlite.dir/Matrix3.cpp.o" "CMakeFiles/g3dlite.dir/Matrix4.cpp.o" "CMakeFiles/g3dlite.dir/MemoryManager.cpp.o" "CMakeFiles/g3dlite.dir/PhysicsFrame.cpp.o" "CMakeFiles/g3dlite.dir/Plane.cpp.o" "CMakeFiles/g3dlite.dir/prompt.cpp.o" "CMakeFiles/g3dlite.dir/Quat.cpp.o" "CMakeFiles/g3dlite.dir/Random.cpp.o" "CMakeFiles/g3dlite.dir/Ray.cpp.o" "CMakeFiles/g3dlite.dir/ReferenceCount.cpp.o" "CMakeFiles/g3dlite.dir/RegistryUtil.cpp.o" "CMakeFiles/g3dlite.dir/Sphere.cpp.o" "CMakeFiles/g3dlite.dir/stringutils.cpp.o" "CMakeFiles/g3dlite.dir/System.cpp.o" "CMakeFiles/g3dlite.dir/TextInput.cpp.o" "CMakeFiles/g3dlite.dir/TextOutput.cpp.o" "CMakeFiles/g3dlite.dir/Triangle.cpp.o" "CMakeFiles/g3dlite.dir/uint128.cpp.o" "CMakeFiles/g3dlite.dir/UprightFrame.cpp.o" "CMakeFiles/g3dlite.dir/Vector2.cpp.o" "CMakeFiles/g3dlite.dir/Vector3.cpp.o" "CMakeFiles/g3dlite.dir/Vector4.cpp.o" "libg3dlite.pdb" "libg3dlite.a" ) # Per-language clean rules from dependency scanning. FOREACH(lang CXX) INCLUDE(CMakeFiles/g3dlite.dir/cmake_clean_${lang}.cmake OPTIONAL) ENDFOREACH(lang)
#ifndef <API key> #define <API key> #include <string> #include <conio.h> #include <iostream> #include <windows.h> using namespace std; void cls() { HANDLE hStdOut; <API key> csbi; DWORD count; DWORD cellCount; COORD homeCoords = { 0, 0 }; hStdOut = GetStdHandle( STD_OUTPUT_HANDLE ); if (hStdOut == <API key>) return; /* Get the number of cells in the current buffer */ if (!<API key>( hStdOut, &csbi )) return; cellCount = csbi.dwSize.X *csbi.dwSize.Y; /* Fill the entire buffer with spaces */ if (!<API key>(hStdOut,(TCHAR) ' ',cellCount,homeCoords,&count)) return; /* Fill the entire buffer with the current colors and attributes */ if (!<API key>(hStdOut,csbi.wAttributes,cellCount,homeCoords,&count)) return; /* Move the cursor home */ <API key>( hStdOut, homeCoords ); } void pause(char out[] = "Please press any key to continue...") { cout << out; getch(); cout << '\n'; } void pause(string out) { cout << out; getch(); cout << '\n'; } void cmd() { pause(); cls(); } #endif // <API key>
#ifdef HAVE_CONFIG_H #include <config.h> #endif #include <stdio.h> int putc_unlocked (int c, FILE *stream) { return putc (c, stream); }
<?php if(!defined('IN_UCHOME')) { exit('Access Denied'); } $idtype = 'tid'; $thread = magic_check_idtype($id, $idtype); if($thread['magicegg'] >= 8) { showmessage('<API key>', '', '', array(8)); } if(submitcheck('usesubmit')) { $_SGLOBAL['db']->query('UPDATE '.tname('thread')." SET magicegg = magicegg + 1 WHERE tid = '$id' AND uid = '$_SGLOBAL[supe_uid]'"); magic_use($mid, array('id'=>$id, 'idtype'=>$idtype), true); showmessage('magicuse_success', $_POST['refer'], 0); } ?>
# gPrime - A web-based genealogy program # This program is free software; you can redistribute it and/or modify # (at your option) any later version. # This program is distributed in the hope that it will be useful, # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. """ Proxy class for the Gramps databases. Returns objects which are referenced by a person, or through a chain of references starting with a person. """ # Gprime modules from .proxybase import ProxyDbBase from ..lib import (Person, Family, Source, Citation, Event, Media, Place, Repository, Note, Tag) class <API key>(ProxyDbBase): """ A proxy to a Gramps database. This proxy will act like a Gramps database, but returning all objects which are referenced by a selection, or by an object that is referenced by an object which is eventually referenced by one of the selected objects. """ def __init__(self, dbase, all_people=False): """ Create a new <API key> instance. :param all_people: if True, get all people, and the items they link to; if False, get all people that are connected to something, and all of items they link to. :type all_people: boolean """ ProxyDbBase.__init__(self, dbase) self.reset_references() # If restricted_to["Person"] is a set, restrict process to # them, and do not process others outside of them self.restricted_to = {"Person": None} # Build lists of referenced objects # iter through whatever object(s) you want to start # the trace. self.queue = [] if all_people: # Do not add references to those not already included self.restricted_to["Person"] = [x for x in self.db.iter_person_handles()] # Spread activation to all other items: for handle in self.restricted_to["Person"]: if handle: self.queue_object("Person", handle) else: # get rid of orphaned people: # first, get all of the links from people: for person in self.db.iter_people(): self.queue_object("Person", person.handle, False) # save those people: self.restricted_to["Person"] = self.referenced["Person"] # reset, and just follow those people self.reset_references() for handle in self.restricted_to["Person"]: if handle: self.queue_object("Person", handle) # process: while len(self.queue): obj_type, handle, reference = self.queue.pop() self.process_object(obj_type, handle, reference) self.__tables = { 'Person': { "handle_func": self.<API key>, "gid_func": self.get_person_from_gid, "class_func": Person, "cursor_func": self.get_person_cursor, "handles_func": self.get_person_handles, "iter_func": self.iter_people, "count_func": self.<API key>, }, 'Family': { "handle_func": self.<API key>, "gid_func": self.get_family_from_gid, "class_func": Family, "cursor_func": self.get_family_cursor, "handles_func": self.get_family_handles, "iter_func": self.iter_families, "count_func": self.<API key>, }, 'Source': { "handle_func": self.<API key>, "gid_func": self.get_source_from_gid, "class_func": Source, "cursor_func": self.get_source_cursor, "handles_func": self.get_source_handles, "iter_func": self.iter_sources, "count_func": self.<API key>, }, 'Citation': { "handle_func": self.<API key>, "gid_func": self.<API key>, "class_func": Citation, "cursor_func": self.get_citation_cursor, "handles_func": self.<API key>, "iter_func": self.iter_citations, "count_func": self.<API key>, }, 'Event': { "handle_func": self.<API key>, "gid_func": self.get_event_from_gid, "class_func": Event, "cursor_func": self.get_event_cursor, "handles_func": self.get_event_handles, "iter_func": self.iter_events, "count_func": self.<API key>, }, 'Media': { "handle_func": self.<API key>, "gid_func": self.get_media_from_gid, "class_func": Media, "cursor_func": self.get_media_cursor, "handles_func": self.get_media_handles, "iter_func": self.iter_media, "count_func": self.get_number_of_media, }, 'Place': { "handle_func": self.<API key>, "gid_func": self.get_place_from_gid, "class_func": Place, "cursor_func": self.get_place_cursor, "handles_func": self.get_place_handles, "iter_func": self.iter_places, "count_func": self.<API key>, }, 'Repository': { "handle_func": self.<API key>, "gid_func": self.<API key>, "class_func": Repository, "cursor_func": self.<API key>, "handles_func": self.<API key>, "iter_func": self.iter_repositories, "count_func": self.<API key>, }, 'Note': { "handle_func": self.<API key>, "gid_func": self.get_note_from_gid, "class_func": Note, "cursor_func": self.get_note_cursor, "handles_func": self.get_note_handles, "iter_func": self.iter_notes, "count_func": self.get_number_of_notes, }, 'Tag': { "handle_func": self.get_tag_from_handle, "gid_func": None, "class_func": Tag, "cursor_func": self.get_tag_cursor, "handles_func": self.get_tag_handles, "iter_func": self.iter_tags, "count_func": self.get_number_of_tags, } } def get_table_func(self, table=None, func=None): """ Private implementation of get_table_func. """ if table is None: return list(self.__tables.keys()) elif func is None: return self.__tables[table] elif func in self.__tables[table].keys(): return self.__tables[table][func] else: return super().get_table_func(table, func) def queue_object(self, obj_type, handle, reference=True): self.queue.append((obj_type, handle, reference)) def reset_references(self): self.referenced = { "Person": set(), "Family": set(), "Event": set(), "Place": set(), "Source": set(), "Citation": set(), "Repository": set(), "Media": set(), "Note": set(), "Tag": set(), } def process_object(self, class_name, handle, reference=True): if class_name == "Person": obj = self.db.<API key>(handle) if obj: self.process_person(obj, reference) elif class_name == "Family": obj = self.db.<API key>(handle) if obj: self.process_family(obj) elif class_name == "Event": obj = self.db.<API key>(handle) if obj: self.process_event(obj) elif class_name == "Place": obj = self.db.<API key>(handle) if obj: self.process_place(obj) elif class_name == "Source": obj = self.db.<API key>(handle) if obj: self.process_source(obj) elif class_name == "Citation": obj = self.db.<API key>(handle) if obj: self.process_citation(obj) elif class_name == "Repository": obj = self.db.<API key>(handle) if obj: self.process_repository(obj) elif class_name == "Media": obj = self.db.<API key>(handle) if obj: self.process_media(obj) elif class_name == "Note": obj = self.db.<API key>(handle) if obj: self.process_note(obj) else: raise AttributeError("unknown class: '%s'" % class_name) def process_person(self, person, reference=True): """ Follow the person object and find all of the primary objects that it references. """ # A non-person: if person is None: return # A person we have seen before: if person.handle in self.referenced["Person"]: return # A person that we should not add: if (self.restricted_to["Person"] and person.handle not in self.restricted_to["Person"]): return if reference: # forward reference: self.referenced["Person"].add(person.handle) # include backward references to this object: for (class_name, handle) in self.db.<API key>( person.handle, ["Person", "Family"]): self.queue_object(class_name, handle) name = person.get_primary_name() if name: self.process_name(name) for handle in person.<API key>(): family = self.db.<API key>(handle) if family: self.queue_object("Family", family.handle) for handle in person.<API key>(): family = self.db.<API key>(handle) if family: self.queue_object("Family", family.handle) for name in person.get_alternate_names(): if name: self.process_name(name) for event_ref in person.get_event_ref_list(): if event_ref: event = self.db.<API key>(event_ref.ref) if event: self.process_event_ref(event_ref) self.process_addresses(person) self.process_attributes(person) self.<API key>(person) self.process_urls(person) self.<API key>(person) self.process_lds_ords(person) self.process_notes(person) self.<API key>(person) self.process_tags(person) def process_family(self, family): """ Follow the family object and find all of the primary objects that it references. """ if family is None or family.handle in self.referenced["Family"]: return self.referenced["Family"].add(family.handle) if family.mother_handle: self.queue_object("Person", family.mother_handle) if family.father_handle: self.queue_object("Person", family.father_handle) for child_ref in family.get_child_ref_list(): if not child_ref: continue self.queue_object("Person", child_ref.ref) self.process_notes(child_ref) self.<API key>(child_ref) for event_ref in family.get_event_ref_list(): if event_ref: event = self.db.<API key>(event_ref.ref) if event: self.process_event_ref(event_ref) self.<API key>(family) self.process_notes(family) self.<API key>(family) self.process_attributes(family) self.process_lds_ords(family) self.process_tags(family) def process_event(self, event): """ Follow the event object and find all of the primary objects that it references. """ if event is None or event.handle in self.referenced["Event"]: return self.referenced["Event"].add(event.handle) self.<API key>(event) self.process_notes(event) self.<API key>(event) self.process_attributes(event) place_handle = event.get_place_handle() if place_handle: place = self.db.<API key>(place_handle) if place: self.process_place(place) self.process_tags(event) def process_place(self, place): """ Follow the place object and find all of the primary objects that it references. """ if place is None or place.handle in self.referenced["Place"]: return self.referenced["Place"].add(place.handle) self.<API key>(place) self.process_notes(place) self.<API key>(place) self.process_urls(place) for placeref in place.get_placeref_list(): place = self.db.<API key>(placeref.ref) if place: self.process_place(place) self.process_tags(place) def process_source(self, source): """ Follow the source object and find all of the primary objects that it references. """ if source is None or source.handle in self.referenced["Source"]: return self.referenced["Source"].add(source.handle) for repo_ref in source.get_reporef_list(): if repo_ref: self.process_notes(repo_ref) handle = repo_ref.<API key>() repo = self.db.<API key>(handle) if repo: self.process_repository(repo) self.<API key>(source) self.process_notes(source) self.process_tags(source) def process_citation(self, citation): """ Follow the citation object and find all of the primary objects that it references. """ if citation is None or citation.handle in self.referenced["Citation"]: return self.referenced["Citation"].add(citation.handle) source_handle = citation.<API key>() if source_handle: source = self.db.<API key>(source_handle) if source: self.process_source(source) self.<API key>(citation) self.process_notes(citation) self.process_tags(citation) def process_repository(self, repository): """ Follow the repository object and find all of the primary objects that it references. """ if repository is None or repository.handle in self.referenced["Repository"]: return self.referenced["Repository"].add(repository.handle) self.process_notes(repository) self.process_addresses(repository) self.process_urls(repository) self.process_tags(repository) def process_media(self, media): """ Follow the media object and find all of the primary objects that it references. """ if media is None or media.handle in self.referenced["Media"]: return self.referenced["Media"].add(media.handle) self.<API key>(media) self.process_attributes(media) self.process_notes(media) self.process_tags(media) def process_note(self, note): """ Follow the note object and find all of the primary objects that it references. """ if note is None or note.handle in self.referenced["Note"]: return self.referenced["Note"].add(note.handle) for tag in note.text.get_tags(): if tag.name == 'Link': if tag.value.startswith("gramps: obj_class, prop, value = tag.value[9:].split("/") if obj_class == "Media": # bug6493 obj_class = "Media" if prop == "handle": self.queue_object(obj_class, value) self.process_tags(note) def process_notes(self, original_obj): """ Find all of the primary objects referred to """ for note_handle in original_obj.get_note_list(): if note_handle: note = self.db.<API key>(note_handle) self.process_note(note) def process_tags(self, original_obj): """ Record the tags referenced by the primary object. """ for tag_handle in original_obj.get_tag_list(): self.referenced["Tag"].add(tag_handle) def process_name(self, name): """ Find all of the primary objects referred to """ self.<API key>(name) self.process_notes(name) def process_addresses(self, original_obj): """ Find all of the primary objects referred to """ for address in original_obj.get_address_list(): if address: self.process_address(address) def process_address(self, address): """ Find all of the primary objects referred to """ self.<API key>(address) self.process_notes(address) def process_attributes(self, original_obj): """ Find all of the primary objects referred to """ for attribute in original_obj.get_attribute_list(): if attribute: self.process_notes(attribute) self.<API key>(attribute) def <API key>(self, original_obj): """ Find all of the primary objects referred to """ for handle in original_obj.get_citation_list(): if handle: citation = self.db.<API key>(handle) if citation: self.process_citation(citation) def process_urls(self, original_obj): """ Find all of the primary objects referred to """ pass def <API key>(self, original_obj): """ Find all of the primary objects referred to """ for media_ref in original_obj.get_media_list(): if media_ref: self.process_notes(media_ref) self.process_attributes(media_ref) self.<API key>(media_ref) handle = media_ref.<API key>() media = self.db.<API key>(handle) if media: self.process_media(media) def process_lds_ords(self, original_obj): """ Find all of the primary objects referred to """ for lds_ord in original_obj.get_lds_ord_list(): if lds_ord: self.process_lds_ord(lds_ord) def process_lds_ord(self, lds_ord): """ Find all of the primary objects referred to """ fam_handle = lds_ord.get_family_handle() fam = self.db.<API key>(fam_handle) if fam: self.queue_object("Family", fam_handle) place_handle = lds_ord.get_place_handle() if place_handle: place = self.db.<API key>(place_handle) if place: self.process_place(place) self.<API key>(lds_ord) self.process_notes(lds_ord) def <API key>(self, original_obj): """ Find all of the primary objects referred to """ for person_ref in original_obj.get_person_ref_list(): if person_ref: self.<API key>(person_ref) self.process_notes(person_ref) person = self.db.<API key>(person_ref.ref) if person: self.queue_object("Person", person.handle) def process_event_ref(self, event_ref): """ Find all of the primary objects referred to """ self.process_notes(event_ref) self.process_attributes(event_ref) event = self.db.<API key>(event_ref.ref) if event: self.process_event(event) def include_person(self, handle): """ Filter for person """ return handle in self.referenced["Person"] def include_place(self, handle): """ Filter for places """ return handle in self.referenced["Place"] def include_family(self, handle): """ Filter for families """ return handle in self.referenced["Family"] def include_media(self, handle): """ Filter for media objects """ return handle in self.referenced["Media"] def include_event(self, handle): """ Filter for events """ return handle in self.referenced["Event"] def include_source(self, handle): """ Filter for sources """ return handle in self.referenced["Source"] def include_citation(self, handle): """ Filter for citations """ return handle in self.referenced["Citation"] def include_repository(self, handle): """ Filter for repositories """ return handle in self.referenced["Repository"] def include_note(self, handle): """ Filter for notes """ return handle in self.referenced["Note"] def include_tag(self, handle): """ Filter for tags """ return handle in self.referenced["Tag"] def <API key>(self, handle, include_classes=None): """ Return appropriate backlink handles for this proxy. """ for (objclass, handle) in self.db.<API key>(handle, include_classes): if handle in self.referenced[objclass]: yield (objclass, handle)
<!doctype html> <html> <head> <title>eZ AlloyEditor image button tests</title> </head> <body> <div class="editorContainer"></div> <div class="container"></div> <script type="text/javascript" src="../../assets/function.bind.polyfill.js"></script> <script type="text/javascript" src="../../../../Resources/public/vendors/yui3/build/yui/yui.js"></script> <script type="text/javascript" src="../../../../Resources/public/vendors/alloyeditor/dist/alloy-editor/alloy-editor-all.js"></script> <script type="text/javascript" src="./assets/<API key>.js"></script> <script> var filter = (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'raw', loaderFilter; if (filter == 'coverage') { loaderFilter = { searchExp : "/Resources/public/js/", replaceStr: "/Tests/instrument/Resources/public/js/" }; } else { loaderFilter = filter; } YUI({ coverage: ['<API key>'], filter: loaderFilter, modules: { "<API key>": { fullpath: "../../../../Resources/public/js/alloyeditor/buttons/image.js", requires: ['ez-alloyeditor', '<API key>', '<API key>', '<API key>'], }, "<API key>": { requires: ['ez-alloyeditor'], fullpath: "../../../../Resources/public/js/alloyeditor/buttons/mixins/<API key>.js", }, "<API key>": { requires: ['ez-alloyeditor'], fullpath: "../../../../Resources/public/js/alloyeditor/buttons/mixins/widgetbutton.js", }, "<API key>": { requires: ['ez-alloyeditor'], fullpath: "../../../../Resources/public/js/alloyeditor/buttons/mixins/embedimage.js", }, "<API key>": { fullpath: "../../../../Resources/public/js/alloyeditor/plugins/embed.js", }, "ez-alloyeditor": { fullpath: "../../../../Resources/public/js/external/ez-alloyeditor.js", }, } }).use('<API key>', function (Y) { Y.Test.Runner.run(); }); </script> </body> </html>
cmd_kernel/time.o := gcc -Wp,-MD,kernel/.time.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/4.8/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -<API key> -Os -Wframe-larger-than=2048 -fno-stack-protector -m32 -msoft-float -mregparm=3 -freg-struct-return -<API key>=2 -march=i686 -ffreestanding -pipe -Wno-sign-compare -<API key> -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -Iinclude/asm-x86/mach-default -fomit-frame-pointer -<API key> -Wno-pointer-sign -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(time)" -D"KBUILD_MODNAME=KBUILD_STR(time)" -c -o kernel/time.o kernel/time.c deps_kernel/time.o := \ kernel/time.c \ $(wildcard include/config/generic/time.h) \ include/linux/module.h \ $(wildcard include/config/modules.h) \ $(wildcard include/config/modversions.h) \ $(wildcard include/config/unused/symbols.h) \ $(wildcard include/config/generic/bug.h) \ $(wildcard include/config/module/unload.h) \ $(wildcard include/config/kallsyms.h) \ $(wildcard include/config/markers.h) \ $(wildcard include/config/sysfs.h) \ include/linux/list.h \ $(wildcard include/config/debug/list.h) \ include/linux/stddef.h \ include/linux/compiler.h \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ include/linux/compiler-gcc4.h \ include/linux/compiler-gcc.h \ $(wildcard include/config/arch/supports/optimized/inlining.h) \ $(wildcard include/config/optimize/inlining.h) \ include/linux/poison.h \ include/linux/prefetch.h \ include/linux/types.h \ $(wildcard include/config/uid16.h) \ $(wildcard include/config/lbd.h) \ $(wildcard include/config/lsf.h) \ $(wildcard include/config/resources/64bit.h) \ include/linux/posix_types.h \ include/asm/posix_types.h \ $(wildcard include/config/x86/32.h) \ include/asm/posix_types_32.h \ include/asm/types.h \ $(wildcard include/config/x86/64.h) \ $(wildcard include/config/highmem64g.h) \ include/asm-generic/int-ll64.h \ include/asm/processor.h \ $(wildcard include/config/x86/vsmp.h) \ $(wildcard include/config/smp.h) \ $(wildcard include/config/x86/ht.h) \ $(wildcard include/config/paravirt.h) \ $(wildcard include/config/x86/debugctlmsr.h) \ include/asm/processor-flags.h \ include/asm/vm86.h \ $(wildcard include/config/vm86.h) \ include/asm/ptrace.h \ include/asm/ptrace-abi.h \ include/asm/segment.h \ include/asm/ds.h \ include/linux/init.h \ $(wildcard include/config/hotplug.h) \ include/asm/math_emu.h \ include/asm/sigcontext.h \ include/asm/current.h \ include/asm/current_32.h \ include/asm/percpu.h \ include/asm-generic/percpu.h \ $(wildcard include/config/debug/preempt.h) \ $(wildcard include/config/have/setup/per/cpu/area.h) \ include/linux/threads.h \ $(wildcard include/config/nr/cpus.h) \ $(wildcard include/config/base/small.h) \ include/asm/cpufeature.h \ $(wildcard include/config/x86/invlpg.h) \ include/asm/required-features.h \ $(wildcard include/config/x86/minimum/cpu/family.h) \ $(wildcard include/config/math/emulation.h) \ $(wildcard include/config/x86/pae.h) \ $(wildcard include/config/x86/cmov.h) \ $(wildcard include/config/x86/use/3dnow.h) \ include/linux/bitops.h \ $(wildcard include/config/generic/find/first/bit.h) \ $(wildcard include/config/generic/find/next/bit.h) \ include/asm/bitops.h \ include/asm/alternative.h \ include/asm/asm.h \ include/asm-generic/bitops/sched.h \ include/asm-generic/bitops/hweight.h \ include/asm-generic/bitops/fls64.h \ include/asm-generic/bitops/ext2-non-atomic.h \ include/asm-generic/bitops/le.h \ include/asm/byteorder.h \ $(wildcard include/config/x86/bswap.h) \ include/linux/byteorder/little_endian.h \ include/linux/byteorder/swab.h \ include/linux/byteorder/generic.h \ include/asm-generic/bitops/minix.h \ include/asm/system.h \ $(wildcard include/config/ia32/emulation.h) \ $(wildcard include/config/x86/ppro/fence.h) \ $(wildcard include/config/x86/oostore.h) \ include/asm/cmpxchg.h \ include/asm/cmpxchg_32.h \ $(wildcard include/config/x86/cmpxchg.h) \ $(wildcard include/config/x86/cmpxchg64.h) \ include/asm/nops.h \ $(wildcard include/config/mk7.h) \ $(wildcard include/config/x86/p6/nop.h) \ include/linux/kernel.h \ $(wildcard include/config/preempt/voluntary.h) \ $(wildcard include/config/debug/spinlock/sleep.h) \ $(wildcard include/config/printk.h) \ $(wildcard include/config/numa.h) \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \ include/linux/linkage.h \ include/asm/linkage.h \ $(wildcard include/config/x86/alignment/16.h) \ include/linux/log2.h \ $(wildcard include/config/arch/has/ilog2/u32.h) \ $(wildcard include/config/arch/has/ilog2/u64.h) \ include/asm/bug.h \ $(wildcard include/config/bug.h) \ $(wildcard include/config/debug/bugverbose.h) \ include/asm-generic/bug.h \ include/linux/irqflags.h \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/trace/irqflags/support.h) \ $(wildcard include/config/x86.h) \ include/asm/irqflags.h \ $(wildcard include/config/debug/lock/alloc.h) \ include/asm/page.h \ include/linux/const.h \ include/asm/page_32.h \ $(wildcard include/config/highmem4g.h) \ $(wildcard include/config/page/offset.h) \ $(wildcard include/config/hugetlb/page.h) \ $(wildcard include/config/flatmem.h) \ $(wildcard include/config/x86/3dnow.h) \ include/linux/string.h \ include/asm/string.h \ include/asm/string_32.h \ include/asm-generic/pgtable-nopmd.h \ include/asm-generic/pgtable-nopud.h \ include/asm-generic/memory_model.h \ $(wildcard include/config/discontigmem.h) \ $(wildcard include/config/sparsemem/vmemmap.h) \ $(wildcard include/config/sparsemem.h) \ $(wildcard include/config/out/of/line/pfn/to/page.h) \ include/asm-generic/page.h \ include/asm/msr.h \ include/asm/msr-index.h \ include/asm/errno.h \ include/asm-generic/errno.h \ include/asm-generic/errno-base.h \ include/linux/errno.h \ include/asm/desc_defs.h \ include/linux/personality.h \ include/linux/cpumask.h \ $(wildcard include/config/have/cpumask/of/cpu/map.h) \ $(wildcard include/config/hotplug/cpu.h) \ include/linux/bitmap.h \ include/linux/cache.h \ $(wildcard include/config/arch/has/cache/line/size.h) \ include/asm/cache.h \ $(wildcard include/config/x86/l1/cache/shift.h) \ include/linux/stat.h \ include/asm/stat.h \ include/linux/time.h \ include/linux/seqlock.h \ include/linux/spinlock.h \ $(wildcard include/config/debug/spinlock.h) \ $(wildcard include/config/generic/lockbreak.h) \ $(wildcard include/config/preempt.h) \ include/linux/preempt.h \ $(wildcard include/config/preempt/notifiers.h) \ include/linux/thread_info.h \ $(wildcard include/config/compat.h) \ include/asm/thread_info.h \ include/asm/thread_info_32.h \ $(wildcard include/config/4kstacks.h) \ $(wildcard include/config/debug/stack/usage.h) \ include/linux/stringify.h \ include/linux/bottom_half.h \ include/linux/spinlock_types.h \ include/asm/spinlock_types.h \ include/linux/lockdep.h \ $(wildcard include/config/lockdep.h) \ $(wildcard include/config/lock/stat.h) \ $(wildcard include/config/generic/hardirqs.h) \ $(wildcard include/config/prove/locking.h) \ include/asm/spinlock.h \ include/asm/atomic.h \ include/asm/atomic_32.h \ $(wildcard include/config/m386.h) \ include/asm-generic/atomic.h \ include/asm/rwlock.h \ include/linux/spinlock_api_smp.h \ include/linux/math64.h \ include/asm/div64.h \ include/linux/kmod.h \ $(wildcard include/config/kmod.h) \ include/linux/elf.h \ include/linux/elf-em.h \ include/asm/elf.h \ $(wildcard include/config/compat/vdso.h) \ include/asm/user.h \ include/asm/user_32.h \ include/asm/auxvec.h \ include/asm/vdso.h \ include/asm/desc.h \ include/asm/ldt.h \ include/asm/mmu.h \ include/linux/mutex.h \ $(wildcard include/config/debug/mutexes.h) \ include/linux/smp.h \ include/asm/smp.h \ $(wildcard include/config/x86/local/apic.h) \ $(wildcard include/config/x86/io/apic.h) \ $(wildcard include/config/x86/32/smp.h) \ $(wildcard include/config/x86/64/smp.h) \ include/asm/mpspec.h \ $(wildcard include/config/mca.h) \ $(wildcard include/config/eisa.h) \ $(wildcard include/config/acpi.h) \ include/asm/mpspec_def.h \ include/asm-x86/mach-default/mach_mpspec.h \ include/asm/apic.h \ $(wildcard include/config/x86/good/apic.h) \ include/linux/pm.h \ $(wildcard include/config/pm/sleep.h) \ include/linux/delay.h \ include/asm/delay.h \ include/asm/fixmap.h \ include/asm/fixmap_32.h \ $(wildcard include/config/highmem.h) \ $(wildcard include/config/x86/visws/apic.h) \ $(wildcard include/config/x86/f00f/bug.h) \ $(wildcard include/config/x86/cyclone/timer.h) \ $(wildcard include/config/pci/mmconfig.h) \ $(wildcard include/config/provide/ohci1394/dma/init.h) \ include/asm/acpi.h \ $(wildcard include/config/acpi/numa.h) \ include/acpi/pdc_intel.h \ include/asm/numa.h \ include/asm/numa_32.h \ include/asm/apicdef.h \ include/asm/kmap_types.h \ $(wildcard include/config/debug/highmem.h) \ include/asm/io_apic.h \ include/asm/pda.h \ $(wildcard include/config/cc/stackprotector.h) \ include/asm-x86/mach-default/mach_apicdef.h \ include/linux/kobject.h \ include/linux/sysfs.h \ include/linux/kref.h \ include/linux/wait.h \ include/linux/moduleparam.h \ $(wildcard include/config/alpha.h) \ $(wildcard include/config/ia64.h) \ $(wildcard include/config/ppc64.h) \ include/linux/marker.h \ include/asm/local.h \ include/linux/percpu.h \ include/linux/slab.h \ $(wildcard include/config/slab/debug.h) \ $(wildcard include/config/debug/objects.h) \ $(wildcard include/config/slub.h) \ $(wildcard include/config/slob.h) \ $(wildcard include/config/debug/slab.h) \ $(wildcard include/config/slabinfo.h) \ include/linux/gfp.h \ $(wildcard include/config/zone/dma.h) \ $(wildcard include/config/zone/dma32.h) \ include/linux/mmzone.h \ $(wildcard include/config/force/max/zoneorder.h) \ $(wildcard include/config/memory/hotplug.h) \ $(wildcard include/config/arch/populates/node/map.h) \ $(wildcard include/config/flat/node/mem/map.h) \ $(wildcard include/config/have/memory/present.h) \ $(wildcard include/config/need/node/memmap/size.h) \ $(wildcard include/config/need/multiple/nodes.h) \ $(wildcard include/config/have/arch/early/pfn/to/nid.h) \ $(wildcard include/config/sparsemem/extreme.h) \ $(wildcard include/config/nodes/span/other/nodes.h) \ $(wildcard include/config/holes/in/zone.h) \ include/linux/numa.h \ $(wildcard include/config/nodes/shift.h) \ include/linux/nodemask.h \ include/linux/pageblock-flags.h \ $(wildcard include/config/hugetlb/page/size/variable.h) \ include/linux/bounds.h \ include/linux/memory_hotplug.h \ $(wildcard include/config/have/arch/nodedata/extension.h) \ include/linux/notifier.h \ include/linux/rwsem.h \ $(wildcard include/config/rwsem/generic/spinlock.h) \ include/asm/rwsem.h \ include/linux/srcu.h \ include/linux/topology.h \ $(wildcard include/config/sched/smt.h) \ $(wildcard include/config/sched/mc.h) \ include/asm/topology.h \ $(wildcard include/config/debug/per/cpu/maps.h) \ $(wildcard include/config/x86/64/acpi/numa.h) \ include/asm-generic/topology.h \ include/asm/sparsemem.h \ include/linux/slab_def.h \ include/linux/kmalloc_sizes.h \ include/asm/module.h \ $(wildcard include/config/m486.h) \ $(wildcard include/config/m586.h) \ $(wildcard include/config/m586tsc.h) \ $(wildcard include/config/m586mmx.h) \ $(wildcard include/config/mcore2.h) \ $(wildcard include/config/m686.h) \ $(wildcard include/config/mpentiumii.h) \ $(wildcard include/config/mpentiumiii.h) \ $(wildcard include/config/mpentiumm.h) \ $(wildcard include/config/mpentium4.h) \ $(wildcard include/config/mk6.h) \ $(wildcard include/config/mk8.h) \ $(wildcard include/config/x86/elan.h) \ $(wildcard include/config/mcrusoe.h) \ $(wildcard include/config/mefficeon.h) \ $(wildcard include/config/mwinchipc6.h) \ $(wildcard include/config/mwinchip2.h) \ $(wildcard include/config/mwinchip3d.h) \ $(wildcard include/config/mcyrixiii.h) \ $(wildcard include/config/mviac3/2.h) \ $(wildcard include/config/mviac7.h) \ $(wildcard include/config/mgeodegx1.h) \ $(wildcard include/config/mgeode/lx.h) \ include/linux/timex.h \ $(wildcard include/config/no/hz.h) \ include/asm/param.h \ $(wildcard include/config/hz.h) \ include/asm/timex.h \ $(wildcard include/config/x86/rdc321x.h) \ include/asm/tsc.h \ $(wildcard include/config/x86/tsc.h) \ include/linux/capability.h \ include/linux/clocksource.h \ $(wildcard include/config/clocksource/watchdog.h) \ $(wildcard include/config/generic/time/vsyscall.h) \ include/linux/timer.h \ $(wildcard include/config/timer/stats.h) \ $(wildcard include/config/debug/objects/timers.h) \ include/linux/ktime.h \ $(wildcard include/config/ktime/scalar.h) \ include/linux/jiffies.h \ include/linux/debugobjects.h \ $(wildcard include/config/debug/objects/free.h) \ include/asm/io.h \ include/asm/io_32.h \ include/asm-generic/iomap.h \ include/linux/vmalloc.h \ include/linux/syscalls.h \ $(wildcard include/config/v850.h) \ include/linux/aio_abi.h \ include/linux/sem.h \ $(wildcard include/config/sysvipc.h) \ include/linux/ipc.h \ include/asm/ipcbuf.h \ include/asm/sembuf.h \ include/asm/siginfo.h \ include/asm-generic/siginfo.h \ include/asm/signal.h \ include/asm-generic/signal.h \ include/linux/quota.h \ include/linux/dqblk_xfs.h \ include/linux/dqblk_v1.h \ include/linux/dqblk_v2.h \ include/linux/key.h \ $(wildcard include/config/keys.h) \ $(wildcard include/config/sysctl.h) \ include/linux/rbtree.h \ include/linux/rcupdate.h \ $(wildcard include/config/classic/rcu.h) \ include/linux/rcuclassic.h \ include/linux/sysctl.h \ include/linux/security.h \ $(wildcard include/config/security.h) \ $(wildcard include/config/security/network.h) \ $(wildcard include/config/security/network/xfrm.h) \ $(wildcard include/config/audit.h) \ include/linux/fs.h \ $(wildcard include/config/dnotify.h) \ $(wildcard include/config/quota.h) \ $(wildcard include/config/inotify.h) \ $(wildcard include/config/epoll.h) \ $(wildcard include/config/debug/writecount.h) \ $(wildcard include/config/auditsyscall.h) \ $(wildcard include/config/block.h) \ $(wildcard include/config/fs/xip.h) \ $(wildcard include/config/migration.h) \ include/linux/limits.h \ include/linux/ioctl.h \ include/asm/ioctl.h \ include/asm-generic/ioctl.h \ include/linux/kdev_t.h \ include/linux/dcache.h \ $(wildcard include/config/profiling.h) \ include/linux/namei.h \ include/linux/path.h \ include/linux/radix-tree.h \ include/linux/prio_tree.h \ include/linux/pid.h \ include/linux/semaphore.h \ include/linux/nfs_fs_i.h \ include/linux/nfs.h \ include/linux/sunrpc/msg_prot.h \ include/linux/fcntl.h \ include/asm/fcntl.h \ include/asm-generic/fcntl.h \ $(wildcard include/config/64bit.h) \ include/linux/err.h \ include/linux/binfmts.h \ $(wildcard include/config/mmu.h) \ include/linux/signal.h \ include/linux/resource.h \ include/asm/resource.h \ include/asm-generic/resource.h \ include/linux/shm.h \ include/asm/shmparam.h \ include/asm/shmbuf.h \ include/linux/msg.h \ include/asm/msgbuf.h \ include/linux/sched.h \ $(wildcard include/config/sched/debug.h) \ $(wildcard include/config/detect/softlockup.h) \ $(wildcard include/config/split/ptlock/cpus.h) \ $(wildcard include/config/bsd/process/acct.h) \ $(wildcard include/config/taskstats.h) \ $(wildcard include/config/inotify/user.h) \ $(wildcard include/config/posix/mqueue.h) \ $(wildcard include/config/user/sched.h) \ $(wildcard include/config/schedstats.h) \ $(wildcard include/config/task/delay/acct.h) \ $(wildcard include/config/fair/group/sched.h) \ $(wildcard include/config/rt/group/sched.h) \ $(wildcard include/config/blk/dev/io/trace.h) \ $(wildcard include/config/preempt/rcu.h) \ $(wildcard include/config/rt/mutexes.h) \ $(wildcard include/config/task/xacct.h) \ $(wildcard include/config/cpusets.h) \ $(wildcard include/config/cgroups.h) \ $(wildcard include/config/futex.h) \ $(wildcard include/config/fault/injection.h) \ $(wildcard include/config/latencytop.h) \ $(wildcard include/config/have/unstable/sched/clock.h) \ $(wildcard include/config/preempt/bkl.h) \ $(wildcard include/config/group/sched.h) \ $(wildcard include/config/mm/owner.h) \ include/linux/mm_types.h \ $(wildcard include/config/cgroup/mem/res/ctlr.h) \ $(wildcard include/config/proc/fs.h) \ include/linux/auxvec.h \ include/linux/completion.h \ include/asm/cputime.h \ include/asm-generic/cputime.h \ include/linux/fs_struct.h \ include/linux/proportions.h \ include/linux/percpu_counter.h \ include/linux/seccomp.h \ $(wildcard include/config/seccomp.h) \ include/asm/seccomp.h \ include/asm/seccomp_32.h \ include/linux/unistd.h \ include/asm/unistd.h \ include/asm/unistd_32.h \ include/linux/rtmutex.h \ $(wildcard include/config/debug/rt/mutexes.h) \ include/linux/plist.h \ $(wildcard include/config/debug/pi/list.h) \ include/linux/param.h \ include/linux/hrtimer.h \ $(wildcard include/config/high/res/timers.h) \ include/linux/task_io_accounting.h \ $(wildcard include/config/task/io/accounting.h) \ include/linux/latencytop.h \ include/linux/aio.h \ include/linux/workqueue.h \ include/linux/uio.h \ include/linux/xfrm.h \ include/net/flow.h \ include/linux/in6.h \ include/asm/uaccess.h \ include/asm/uaccess_32.h \ $(wildcard include/config/x86/intel/usercopy.h) \ $(wildcard include/config/x86/wp/works/ok.h) \ kernel/timeconst.h \ kernel/time.o: $(deps_kernel/time.o) $(deps_kernel/time.o):
// <auto-generated> // </auto-generated> namespace Core { using System; using System.Collections.Generic; public partial class ACCRUALPOOL { public string PSNPOOLID { get; set; } public string POLICYID { get; set; } public string GRANTDATE { get; set; } public string PERSONID { get; set; } public string ACCRUALCODEID { get; set; } public string GRANTID { get; set; } public string GRANTMODE { get; set; } public string GRANTVALUE { get; set; } public string PAYCODEFROM { get; set; } public string EXPIRYDAY { get; set; } public string EXPIRYVALUE { get; set; } public string DRAWVALUE { get; set; } public string BALANCE { get; set; } public string EXPPAYCODETO { get; set; } public string OVERFLOWACCRUALCODE { get; set; } public string <API key> { get; set; } public string OVERFLOWACCRUALDTM { get; set; } public Nullable<int> DATAFROM { get; set; } } }
package presentateurdecode; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import javax.swing.JFrame; import javax.swing.*; /** * * @author Cyrille */ public class testPrefs extends JFrame{ JPanel p; public static void main(String[] args){ testPrefs tp=new testPrefs(); tp.setVisible(true); } public testPrefs() { setTitle("Analyse Audio - NFP136"); setBounds(100,100,1000,600); setResizable(true); addWindowListener(new WindowAdapter() { public void windowClosing (WindowEvent e){ System.exit(0); } }); Preferences prefs = new Preferences(null); p = prefs.getPanel(); add(p); } }
package handler import ( "net/http" "github.com/labstack/echo" ) type ( User struct { Name string `json:"name" form:"name"` Email string `json:"name" form:"name"` } handler struct { db map[string]*User } ) func (h *handler) createUser(c echo.Context) error { u := new(User) if err := c.Bind(u); err != nil { return err } return c.JSON(http.StatusOK, u) } func (h *handler) getUser(c echo.Context) error { email := c.Param("email") user := h.db[email] if user == nil { return echo.NewHTTPError(http.StatusNotFound, "user not found") } return c.JSON(http.StatusOK, user) }
package nl.pelagic.mac.ids; import static org.hamcrest.core.IsEqual.equalTo; import static org.hamcrest.core.IsNull.notNullValue; import static org.junit.Assert.assertThat; import org.junit.Test; @SuppressWarnings({ "static-method", "javadoc" }) public class <API key> { @Test(timeout = 8000) public void testVendorMAC() { final VendorMACPrefixImpl r = new VendorMACPrefixImpl("vendor", 0x112233L); assertThat(r, notNullValue()); assertThat(Long.valueOf(r.getPrefix()), equalTo(Long.valueOf(0x112233L))); assertThat(r.getVendor(), equalTo("vendor")); assertThat(r.toString(), equalTo("VendorMAC [prefix=112233, vendor=vendor]")); } }
<?php // no direct access defined('_JEXEC') or die('Restricted access'); if($type == 'install' || $type == 'update') { if($type == 'install') { echo '<p><strong>Text Pro</strong> Element installed succesfully.</p>'; } else { echo '<p><strong>Text Pro</strong> Element updated succesfully.</p>'; } } else if($type == 'uninstall') { }
package br.gov.lexml.madoc.server; public class MadocException extends Exception { private static final long serialVersionUID = 1L; public MadocException() { } public MadocException(String message) { super(message); } public MadocException(Throwable cause) { super(cause); } public MadocException(String message, Throwable cause) { super(message, cause); } }
#include "lensautofix.h" // Qt includes #include <QLabel> #include <QGridLayout> #include <QWidget> #include <QApplication> #include <QStyle> // KDE includes #include <klocalizedstring.h> // Libkdcraw includes #include <KDCRAW/RWidgetUtils> // Local includes #include "dimg.h" #include "lensfunsettings.h" #include "<API key>.h" #include "lensfuniface.h" using namespace KDcrawIface; namespace Digikam { class LensAutoFix::Private { public: Private() : settingsView(0), cameraSelector(0) { } LensFunSettings* settingsView; <API key>* cameraSelector; }; LensAutoFix::LensAutoFix(QObject* const parent) : BatchTool(QLatin1String("LensAutoFix"), EnhanceTool, parent), d(new Private) { setToolTitle(i18n("Lens Auto-Correction")); setToolDescription(i18n("Fix automatically lens distortions")); setToolIconName(QLatin1String("lensautofix")); } LensAutoFix::~LensAutoFix() { delete d; } void LensAutoFix::<API key>() { m_settingsWidget = new QWidget; QLabel* const note = new QLabel(i18n("<b>Use Metadata</b> option will parse images' information at " "queue run-time to find relevant lens features.")); note->setWordWrap(true); note->setFrameStyle(QFrame::StyledPanel | QFrame::Raised); d->cameraSelector = new <API key>(); RLineWidget* const line = new RLineWidget(Qt::Horizontal); d->settingsView = new LensFunSettings(); d->cameraSelector-><API key>(true); d->cameraSelector-><API key>(true); QGridLayout* const grid = new QGridLayout(m_settingsWidget); grid->addWidget(note, 0, 0, 1, 2); grid->addWidget(d->cameraSelector, 1, 0, 1, 2); grid->addWidget(line, 2, 0, 1, 2); grid->addWidget(d->settingsView, 3, 0, 1, 2); grid->setRowStretch(4, 10); grid->setMargin(QApplication::style()->pixelMetric(QStyle::<API key>)); grid->setSpacing(QApplication::style()->pixelMetric(QStyle::<API key>)); connect(d->settingsView, SIGNAL(<API key>()), this, SLOT(slotSettingsChanged())); connect(d->cameraSelector, SIGNAL(<API key>()), this, SLOT(slotSettingsChanged())); BatchTool::<API key>(); } BatchToolSettings LensAutoFix::defaultSettings() { BatchToolSettings prm; prm.insert(QLatin1String("UseMetadata"), true); prm.insert(QLatin1String("filterCCA"), true); prm.insert(QLatin1String("filterVIG"), true); prm.insert(QLatin1String("filterDST"), true); prm.insert(QLatin1String("filterGEO"), true); prm.insert(QLatin1String("cropFactor"), -1.0); prm.insert(QLatin1String("focalLength"), -1.0); prm.insert(QLatin1String("aperture"), -1.0); prm.insert(QLatin1String("subjectDistance"), -1.0); prm.insert(QLatin1String("cameraMake"), QString()); prm.insert(QLatin1String("cameraModel"), QString()); prm.insert(QLatin1String("lensModel"), QString()); return prm; } void LensAutoFix::<API key>() { d->cameraSelector->setUseMetadata(settings()[QLatin1String("UseMetadata")].toBool()); LensFunContainer lfPrm; lfPrm.filterCCA = settings()[QLatin1String("filterCCA")].toBool(); lfPrm.filterVIG = settings()[QLatin1String("filterVIG")].toBool(); lfPrm.filterDST = settings()[QLatin1String("filterDST")].toBool(); lfPrm.filterGEO = settings()[QLatin1String("filterGEO")].toBool(); lfPrm.cropFactor = settings()[QLatin1String("cropFactor")].toDouble(); lfPrm.focalLength = settings()[QLatin1String("focalLength")].toDouble(); lfPrm.aperture = settings()[QLatin1String("aperture")].toDouble(); lfPrm.subjectDistance = settings()[QLatin1String("subjectDistance")].toDouble(); lfPrm.cameraMake = settings()[QLatin1String("cameraMake")].toString(); lfPrm.cameraModel = settings()[QLatin1String("cameraModel")].toString(); lfPrm.lensModel = settings()[QLatin1String("lensModel")].toString(); d->cameraSelector->setSettings(lfPrm); } void LensAutoFix::slotSettingsChanged() { // Update checkbox options about Lens corrections available. d->settingsView->setEnabledCCA(d->cameraSelector->useMetadata() ? true : d->cameraSelector->iface()->supportsCCA()); d->settingsView->setEnabledVig(d->cameraSelector->useMetadata() ? true : d->cameraSelector->iface()->supportsVig()); d->settingsView->setEnabledDist(d->cameraSelector->useMetadata() ? true : d->cameraSelector->iface()->supportsDistortion()); d->settingsView->setEnabledGeom(d->cameraSelector->useMetadata() ? true : d->cameraSelector->iface()->supportsDistortion()); BatchToolSettings prm; LensFunContainer settings = d->cameraSelector->settings(); prm.insert(QLatin1String("UseMetadata"), (bool)d->cameraSelector->useMetadata()); prm.insert(QLatin1String("filterCCA"), (bool)settings.filterCCA); prm.insert(QLatin1String("filterVIG"), (bool)settings.filterVIG); prm.insert(QLatin1String("filterDST"), (bool)settings.filterDST); prm.insert(QLatin1String("filterGEO"), (bool)settings.filterGEO); prm.insert(QLatin1String("cropFactor"), (double)settings.cropFactor); prm.insert(QLatin1String("focalLength"), (double)settings.focalLength); prm.insert(QLatin1String("aperture"), (double)settings.aperture); prm.insert(QLatin1String("subjectDistance"), (double)settings.subjectDistance); prm.insert(QLatin1String("cameraMake"), settings.cameraMake); prm.insert(QLatin1String("cameraModel"), settings.cameraModel); prm.insert(QLatin1String("lensModel"), settings.lensModel); BatchTool::slotSettingsChanged(prm); } bool LensAutoFix::toolOperations() { if (!loadToDImg()) { return false; } LensFunContainer prm; bool useMeta = settings()[QLatin1String("UseMetadata")].toBool(); if (useMeta) { LensFunIface iface; DMetadata meta(image().getMetadata()); LensFunIface::MetadataMatch ret = iface.findFromMetadata(meta); prm = iface.settings(); if (ret != LensFunIface::MetadataExactMatch) { setErrorDescription(i18n("Cannot find all lens information to process lens auto-corrections")); return false; } } else { prm.filterCCA = settings()[QLatin1String("filterCCA")].toBool(); prm.filterVIG = settings()[QLatin1String("filterVIG")].toBool(); prm.filterDST = settings()[QLatin1String("filterDST")].toBool(); prm.filterGEO = settings()[QLatin1String("filterGEO")].toBool(); prm.cropFactor = settings()[QLatin1String("cropFactor")].toDouble(); prm.focalLength = settings()[QLatin1String("focalLength")].toDouble(); prm.aperture = settings()[QLatin1String("aperture")].toDouble(); prm.subjectDistance = settings()[QLatin1String("subjectDistance")].toDouble(); QString cameraMake = settings()[QLatin1String("cameraMake")].toString(); QString cameraModel = settings()[QLatin1String("cameraModel")].toString(); QString lensModel = settings()[QLatin1String("lensModel")].toString(); } LensFunFilter filter(&image(), 0L, prm); applyFilter(&filter); KExiv2Data data = image().getMetadata(); filter.<API key>(data); image().setMetadata(data); return savefromDImg(); } } // namespace Digikam
#include <stdio.h> #include <stdlib.h> #include <time.h> #define SUM 4 #define LENGTH 4 #define ARRAY_SIZE(arr) \ (sizeof(arr) / sizeof(((typeof(arr)){})[0])) typedef struct Ans { int x; int y; } Ans; void Combination(int *, int, int, int); int main(void) { int array[LENGTH] = {0}; srand(time(NULL)); for (int i = 0; i < LENGTH; i++) { /* Get random values */ array[i] = rand() % sizeof(LENGTH); printf("%d ", array[i]); } printf("\n"); /* Print the answer */ Combination(array, 0, 0, ARRAY_SIZE(array)); return 0; } void Combination(int *arr, int posA, int posB, int len) { if (posB >= len) { posB = 0; posA += 1; } if (posA >= posB) { posB = posA; } if (posA >= len) { return; } if (arr[posA] + arr[posB] == SUM) { printf("posA=%d posB=%d\n", posA, posB); } printf("%d %d\n", posA, posB); Combination(arr, posA, posB + 1, len); }
/* debug.c - Simple debugging "switch" */ /* Written 1998-2000 by Werner Almesberger, EPFL DI-ICA */ #if HAVE_CONFIG_H #include <config.h> #endif #include <stdlib.h> #include <atm.h> #include <atmd.h> #include "uni.h" #include "../fab.h" #define COMPONENT "FAB(debug)" #define PRV(call) ((FAB *) (call)->fab) typedef struct _fab { CALL *next; /* relay.c may not keep track of calls, but WE are */ } FAB; static CALL *calls; void fab_option(const char *name,const char *value) { diag(COMPONENT,DIAG_FATAL,"unrecognized fabric option \"%s\"",name); } void fab_start(void (*port_notify)(int number,int up)) { sig_start_all(port_notify); } void fab_init(CALL *call) { FAB *fab; fab = alloc_t(FAB); call->fab = fab; fab->next = calls; calls = call; } void fab_destroy(CALL *call) { CALL **walk; for (walk = &calls; *walk; walk = &PRV(*walk)->next) if (*walk == call) break; if (!*walk) diag(COMPONENT,DIAG_FATAL,"fab_destroy: call %p not found",call); *walk = PRV(call)->next; free(PRV(call)); call->fab = NULL; } /* * This function is rather simple-minded, because it only considers a single * port. Should go directly to the fabric control. @@@ */ static int vci_exists(int vci,int threshold) { CALL *call; int found; found = 0; for (call = calls; call; call = PRV(call)->next) if (call->in.pvc.sap_addr.vci == vci || call->out.pvc.sap_addr.vci == vci) if (++found > threshold) return 1; return 0; } static int check_ci(struct sockaddr_atmpvc *pvc) { int vci; if (pvc->sap_addr.vpi == ATM_VPI_ANY) pvc->sap_addr.vpi = 0; /* that was easy :-) */ for (vci = ATM_NOT_RSV_VCI; pvc->sap_addr.vci == ATM_VCI_ANY; vci++) if (!vci_exists(vci,0)) pvc->sap_addr.vci = vci; return !vci_exists(vci,1); } void fab_op(CALL *call,int op,const struct atm_qos *qos, void (*callback)(CALL *call,int cause,void *more,void *user),void *user) { diag(COMPONENT,DIAG_INFO,"fab_op%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s", !op ? " FREE" : "",op & RM_RSV(_RM_ANY) ? " RM_RSV:" : "", op & RM_IN_TX ? " IN_TX" : "",op & RM_IN_RX ? " IN_RX" : "", op & RM_OUT_TX ? " OUT_TX" : "",op & RM_OUT_RX ? " OUT_RX" : "", op & RM_PATH_TX ? " PATH_TX" : "",op & RM_PATH_RX ? " PATH_RX" : "", op & RM_CLAIM(_RM_ANY) ? " RM_CLAIM:" : "", op & _RM_SHIFT(RM_IN_TX) ? " IN_TX" : "", op & _RM_SHIFT(RM_IN_RX) ? " IN_RX" : "", op & _RM_SHIFT(RM_OUT_TX) ? " OUT_TX" : "", op & _RM_SHIFT(RM_OUT_RX) ? " OUT_RX" : "", op & _RM_SHIFT(RM_PATH_TX) ? " PATH_TX" : "", op & _RM_SHIFT(RM_PATH_RX) ? " PATH_RX" : ""); if (op & (RM_RSV(RM_IN) | RM_CLAIM(RM_IN))) if (!check_ci(&call->in.pvc)) { callback(call,ATM_CV_CI_UNAVAIL,NULL,user); return; } if (op & (RM_RSV(RM_OUT) | RM_CLAIM(RM_OUT))) if (!check_ci(&call->out.pvc)) { callback(call,ATM_CV_CI_UNAVAIL,NULL,user); return; } callback(call,0,NULL,user); }
#!/bin/bash # Installs the host package and symlinks host to hostx back="$(pwd)" # Install our package if needed. emerge -u host || exit 1 ourFolder="$(dirname $(which hostx))" if [ -z "${ourFolder}" ]; then echo "Cannot find folder for host." >&2 exit 1 fi # Setup the symlink if needed echo -n "Creating our symlink..." cd "${ourFolder}" || exit 1 if [ ! -e host ]; then ln -s hostx host || exit 1 echo 'done.' else echo 'skipped.' fi cd ${back} || exit 1 # Make sure symlink works echo -n "Validating symlink..." [ "$(which host)" ] || exit 1 echo 'done.' # All done. exit 0
include ../../../Makefile.inc CLC_ROOT = ../../../inc all: exe_src exe_src_m2s exe_bin amd_compile m2c_compile run_m2s run_native check_result exe_src: @-$(CC) $(CC_FLAG) *src.c -o exe_src $(CC_INC) $(CC_LIB) > divide_charchar.exe_src.log 2>&1 exe_src_m2s: @-$(CC) $(CC_FLAG) -m32 *src.c -o exe_src_m2s $(CC_INC) $(M2S_LIB) > divide_charchar.exe_src_m2s.log 2>&1 exe_bin: @-$(CC) $(CC_FLAG) *bin.c -o exe_bin $(CC_INC) $(CC_LIB) > divide_charchar.exe_bin.log 2>&1 amd_compile: @-$(AMD_CC) --amd --amd-dump-all --amd-device 11 divide_charchar.cl > divide_charchar.amdcc.log 2>&1
#<API key>, #<API key> .select{ background-color: #202020 !important; } #imgtextoverlay { background: rgba(0,0,0,0.6); position: absolute; top: 0; left: 0; width: 100%; position: absolute; } #imgtextoverlay p { color: #FFFFFF; font-size: 13px; font-weight: 400; margin-bottom: 0; padding: 14px 14px 0; } #imgtextoverlay a{ display: inline-block; */ font-size: 12px; padding: 2px 0 10px 14px; color: #BCA474; } .<API key> { float: left; } /*.view-content, .views-row, .field-item { border-color:#999; border-style:solid; border-width:1; }*/ /* .container{ width: 100%; margin: 0; padding: 0; } */ header#navbar { background-color: #47244a; margin-bottom: 0px; border:none; border-radius:0px; } header#navbar ul.menu { float:right; } /*.tb-megamenu, .footer { background-color: #47244a; }*/ ul.tb-megamenu-nav{ float: right; } .block-eme-menu ul.tb-megamenu-nav{ float: left; } #<API key> .<API key> { width: 100% !important; } .footer .region-footer { float: none; display: inline-block; } .footer .block { color: #ffffff; float: none; display: inline-block; margin-left: 120px; } .main-container .row { margin-right: 100px; margin-left: 100px; margin-top: 50px; } .<API key>.webform-datepicker div.form-item.form-type-select { display: none; }
<?php /** * @package JPSpan * @subpackage Listener * @version $Id: Listener.php,v 1.2 2004/11/15 10:47:19 harryf Exp $ */ /** * Include handlers for incoming request data */ require_once JPSPAN . 'RequestData.php'; /** * Check <API key> is switched off */ if ( ini_get('<API key>') ) { trigger_error ( "Configuration error: PHP ini setting '<API key>' must be off", E_USER_ERROR ); } /** * Listener for incoming requests * @package JPSpan * @subpackage Listener * @access public */ class JPSpan_Listener { /** * Encoding used by request (e.g. 'xml' or 'php') * @var string * @access public */ var $encoding = 'xml'; /** * Object which responds to request * @var object implementing Responder interface * @access private */ var $Responder; /** * Constructs the listener, setting the default NullResponder * @access public */ function JPSpan_Listener() { $this->Response = & new <API key>(); } /** * Set the Responder * @param object implementing Responder interface * @return void * @access public */ function setResponder(& $Responder) { $this->Responder= & $Responder; } /** * Serve incoming requests * @return void * @access public */ function serve() { $this->Responder->execute($this->getRequestData()); } /** * Detects the type of incoming request and calls the corresponding * RequestData handler to deal with it. * @return mixed request data as native PHP variables. * @access private */ function getRequestData () { switch ( $_SERVER['REQUEST_METHOD'] ) { case 'POST': global $HTTP_RAW_POST_DATA; if ( $HTTP_RAW_POST_DATA ) { return <API key>::fetch($this->encoding); } else { return <API key>::fetch($this->encoding); } break; case 'GET': default: return <API key>::fetch($this->encoding); break; } } } /** * A NullResponder loaded as the default responder * @package JPSpan * @subpackage Listener * @access public */ class <API key> { /** * Does nothing * @param mixed incoming request data * @return void * @access public */ function execute(& $payload) {} }
<?php /** * Custom template tags for this theme. * * Eventually, some of the functionality here could be replaced by core features * * @package IML */ if ( ! function_exists( 'IML_content_nav' ) ) : /** * Display navigation to next/previous pages when applicable */ function IML_content_nav( $nav_id ) { global $wp_query, $post; // Don't print empty markup on single pages if there's nowhere to navigate. if ( is_single() ) { $previous = ( is_attachment() ) ? get_post( $post->post_parent ) : get_adjacent_post( false, '', true ); $next = get_adjacent_post( false, '', false ); if ( ! $next && ! $previous ) return; } // Don't print empty markup in archives if there's only one page. if ( $wp_query->max_num_pages < 2 && ( is_home() || is_archive() || is_search() ) ) return; $nav_class = ( is_single() ) ? 'navigation-post' : 'navigation-paging'; ?> <nav role="navigation" id="<?php echo esc_attr( $nav_id ); ?>" class="<?php echo $nav_class; ?>"> <h1 class="screen-reader-text"><?php _e( 'Post navigation', 'IML' ); ?></h1> <?php if ( is_single() ) : // navigation links for single posts ?> <?php previous_post_link( '<div class="nav-previous">%link</div>', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'IML' ) . '</span> %title' ); ?> <?php next_post_link( '<div class="nav-next">%link</div>', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'IML' ) . '</span>' ); ?> <?php elseif ( $wp_query->max_num_pages > 1 && ( is_home() || is_archive() || is_search() ) ) : // navigation links for home, archive, and search pages ?> <?php if ( get_next_posts_link() ) : ?> <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'IML' ) ); ?></div> <?php endif; ?> <?php if ( <API key>() ) : ?> <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'IML' ) ); ?></div> <?php endif; ?> <?php endif; ?> </nav><!-- #<?php echo esc_html( $nav_id ); ?> --> <?php } endif; // IML_content_nav if ( ! function_exists( 'IML_comment' ) ) : /** * Template for comments and pingbacks. * * Used as a callback by wp_list_comments() for displaying the comments. */ function IML_comment( $comment, $args, $depth ) { $GLOBALS['comment'] = $comment; switch ( $comment->comment_type ) : case 'pingback' : case 'trackback' : ?> <li class="post pingback"> <p><?php _e( 'Pingback:', 'IML' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __( 'Edit', 'IML' ), '<span class="edit-link">', '<span>' ); ?></p> <?php break; default : ?> <li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>"> <article id="comment-<?php comment_ID(); ?>" class="comment"> <footer> <div class="comment-author vcard"> <?php echo get_avatar( $comment, 40 ); ?> <?php printf( __( '%s <span class="says">says:</span>', 'IML' ), sprintf( '<cite class="fn">%s</cite>', <API key>() ) ); ?> </div><!-- .comment-author .vcard --> <?php if ( $comment->comment_approved == '0' ) : ?> <em><?php _e( 'Your comment is awaiting moderation.', 'IML' ); ?></em> <br /> <?php endif; ?> <div class="comment-meta commentmetadata"> <a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>"><time datetime="<?php comment_time( 'c' ); ?>"> <?php printf( _x( '%1$s at %2$s', '1: date, 2: time', 'IML' ), get_comment_date(), get_comment_time() ); ?> </time></a> <?php edit_comment_link( __( 'Edit', 'IML' ), '<span class="edit-link">', '<span>' ); ?> </div><!-- .comment-meta .commentmetadata --> </footer> <div class="comment-content"><?php comment_text(); ?></div> <div class="reply"> <?php comment_reply_link( array_merge( $args, array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?> </div><!-- .reply --> </article><!-- #comment-## --> <?php break; endswitch; } endif; // ends check for IML_comment() if ( ! function_exists( 'IML_posted_on' ) ) : /** * Prints HTML with meta information for the current post-date/time and author. */ function IML_posted_on() { printf( __( 'Posted on <a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a><span class="byline"> by <span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span></span>', 'IML' ), esc_url( get_permalink() ), esc_attr( get_the_time() ), esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_url( <API key>( get_the_author_meta( 'ID' ) ) ), esc_attr( sprintf( __( 'View all posts by %s', 'IML' ), get_the_author() ) ), get_the_author() ); } endif; /** * Returns true if a blog has more than 1 category */ function <API key>() { if ( false === ( $all_the_cool_cats = get_transient( 'all_the_cool_cats' ) ) ) { // Create an array of all the categories that are attached to posts $all_the_cool_cats = get_categories( array( 'hide_empty' => 1, ) ); // Count the number of categories that are attached to the posts $all_the_cool_cats = count( $all_the_cool_cats ); set_transient( 'all_the_cool_cats', $all_the_cool_cats ); } if ( '1' != $all_the_cool_cats ) { // This blog has more than 1 category so <API key> should return true return true; } else { // This blog has only 1 category so <API key> should return false return false; } } /** * Flush out the transients used in <API key> */ function <API key>() { // Like, beat it. Dig? delete_transient( 'all_the_cool_cats' ); } add_action( 'edit_category', '<API key>' ); add_action( 'save_post', '<API key>' );
SUBROUTINE SLAEV2( A, B, C, RT1, RT2, CS1, SN1 ) * * -- LAPACK auxiliary routine (version 3.2) -- * Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd.. * November 2006 * * .. Scalar Arguments .. REAL A, B, C, CS1, RT1, RT2, SN1 * .. * * Purpose * ======= * * SLAEV2 computes the eigendecomposition of a 2-by-2 symmetric matrix * [ A B ] * [ B C ]. * On return, RT1 is the eigenvalue of larger absolute value, RT2 is the * eigenvalue of smaller absolute value, and (CS1,SN1) is the unit right * eigenvector for RT1, giving the decomposition * * [ CS1 SN1 ] [ A B ] [ CS1 -SN1 ] = [ RT1 0 ] * [-SN1 CS1 ] [ B C ] [ SN1 CS1 ] [ 0 RT2 ]. * * Arguments * ========= * * A (input) REAL * The (1,1) element of the 2-by-2 matrix. * * B (input) REAL * The (1,2) element and the conjugate of the (2,1) element of * the 2-by-2 matrix. * * C (input) REAL * The (2,2) element of the 2-by-2 matrix. * * RT1 (output) REAL * The eigenvalue of larger absolute value. * * RT2 (output) REAL * The eigenvalue of smaller absolute value. * * CS1 (output) REAL * SN1 (output) REAL * The vector (CS1, SN1) is a unit right eigenvector for RT1. * * Further Details * =============== * * RT1 is accurate to a few ulps barring over/underflow. * * RT2 may be inaccurate if there is massive cancellation in the * determinant A*C-B*B; higher precision or correctly rounded or * correctly truncated arithmetic would be needed to compute RT2 * accurately in all cases. * * CS1 and SN1 are accurate to a few ulps barring over/underflow. * * Overflow is possible only if RT1 is within a factor of 5 of overflow. * Underflow is harmless if the input data is 0 or exceeds * underflow_threshold / macheps. * * ===================================================================== * * .. Parameters .. REAL ONE PARAMETER ( ONE = 1.0E0 ) REAL TWO PARAMETER ( TWO = 2.0E0 ) REAL ZERO PARAMETER ( ZERO = 0.0E0 ) REAL HALF PARAMETER ( HALF = 0.5E0 ) * .. * .. Local Scalars .. INTEGER SGN1, SGN2 REAL AB, ACMN, ACMX, ACS, ADF, CS, CT, DF, RT, SM, $ TB, TN * .. * .. Intrinsic Functions .. INTRINSIC ABS, SQRT * .. * .. Executable Statements .. * * Compute the eigenvalues * SM = A + C DF = A - C ADF = ABS( DF ) TB = B + B AB = ABS( TB ) IF( ABS( A ).GT.ABS( C ) ) THEN ACMX = A ACMN = C ELSE ACMX = C ACMN = A END IF IF( ADF.GT.AB ) THEN RT = ADF*SQRT( ONE+( AB / ADF )**2 ) ELSE IF( ADF.LT.AB ) THEN RT = AB*SQRT( ONE+( ADF / AB )**2 ) ELSE * * Includes case AB=ADF=0 * RT = AB*SQRT( TWO ) END IF IF( SM.LT.ZERO ) THEN RT1 = HALF*( SM-RT ) SGN1 = -1 * * Order of execution important. * To get fully accurate smaller eigenvalue, * next line needs to be executed in higher precision. * RT2 = ( ACMX / RT1 )*ACMN - ( B / RT1 )*B ELSE IF( SM.GT.ZERO ) THEN RT1 = HALF*( SM+RT ) SGN1 = 1 * * Order of execution important. * To get fully accurate smaller eigenvalue, * next line needs to be executed in higher precision. * RT2 = ( ACMX / RT1 )*ACMN - ( B / RT1 )*B ELSE * * Includes case RT1 = RT2 = 0 * RT1 = HALF*RT RT2 = -HALF*RT SGN1 = 1 END IF * * Compute the eigenvector * IF( DF.GE.ZERO ) THEN CS = DF + RT SGN2 = 1 ELSE CS = DF - RT SGN2 = -1 END IF ACS = ABS( CS ) IF( ACS.GT.AB ) THEN CT = -TB / CS SN1 = ONE / SQRT( ONE+CT*CT ) CS1 = CT*SN1 ELSE IF( AB.EQ.ZERO ) THEN CS1 = ONE SN1 = ZERO ELSE TN = -CS / TB CS1 = ONE / SQRT( ONE+TN*TN ) SN1 = TN*CS1 END IF END IF IF( SGN1.EQ.SGN2 ) THEN TN = CS1 CS1 = -SN1 SN1 = TN END IF RETURN * * End of SLAEV2 * END
package com.cricketcraft.chisel.block.variant; import com.cricketcraft.chisel.util.BlockVariant; public class BlockVariants { public static final BlockVariant <API key> = new BlockVariant(0, "<API key>"), ACACIA_PLANKS_SHORT = new BlockVariant(1, "acacia_planks_short"), ACACIA_PLANKS_FANCY = new BlockVariant(2, "acacia_planks_fancy"), ACACIA_PLANKS_PANEL = new BlockVariant(3, "acacia_planks_panel"), <API key> = new BlockVariant(4, "<API key>"), ACACIA_PLANKS_CRATE = new BlockVariant(5, "acacia_planks_crate"), <API key> = new BlockVariant(6, "<API key>"), ACACIA_PLANKS_LONG = new BlockVariant(7, "acacia_planks_long"), <API key> = new BlockVariant(8, "<API key>"), <API key> = new BlockVariant(9, "<API key>"), <API key> = new BlockVariant(10, "<API key>"), <API key> = new BlockVariant(11, "<API key>"), <API key> = new BlockVariant(12, "<API key>"), <API key> = new BlockVariant(13, "<API key>"), <API key> = new BlockVariant(14, "<API key>"), ALUMINUM_CAUTION = new BlockVariant(0, "aluminum_caution"), ALUMINUM_SHIPPING = new BlockVariant(1, "aluminum_shipping"), ALUMINUM_THERMAL = new BlockVariant(2, "aluminum_thermal"), ALUMINUM_125 = new BlockVariant(3, "aluminum_125"), ALUMINUM_BORDERED = new BlockVariant(4, "aluminum_bordered"), ALUMINUM_BOLTED = new BlockVariant(5, "aluminum_bolted"), ANDESITE_PILLAR = new BlockVariant(0, "andesite_pillar"), ANDESITE_BRICKS = new BlockVariant(1, "andesite_bricks"), ANDESITE_ORNATE = new BlockVariant(2, "andesite_ornate"), ANDESITE_PRISMATIC = new BlockVariant(3, "andesite_prismatic"), <API key> = new BlockVariant(4, "<API key>"), ANTIBLOCK_0 = new BlockVariant(0, "antiblock_0"), ANTIBLOCK_1 = new BlockVariant(1, "antiblock_1"), ANTIBLOCK_2 = new BlockVariant(2, "antiblock_2"), ANTIBLOCK_3 = new BlockVariant(3, "antiblock_3"), ANTIBLOCK_4 = new BlockVariant(4, "antiblock_4"), ANTIBLOCK_5 = new BlockVariant(5, "antiblock_5"), ANTIBLOCK_6 = new BlockVariant(6, "antiblock_6"), ANTIBLOCK_7 = new BlockVariant(7, "antiblock_7"), ANTIBLOCK_8 = new BlockVariant(8, "antiblock_8"), ANTIBLOCK_9 = new BlockVariant(9, "antiblock_9"), ANTIBLOCK_10 = new BlockVariant(10, "antiblock_10"), ANTIBLOCK_11 = new BlockVariant(11, "antiblock_11"), ANTIBLOCK_12 = new BlockVariant(12, "antiblock_12"), ANTIBLOCK_13 = new BlockVariant(13, "antiblock_13"), ANTIBLOCK_14 = new BlockVariant(14, "antiblock_14"), ANTIBLOCK_15 = new BlockVariant(15, "antiblock_15"), BIRCH_PLANKS_SMOOTH = new BlockVariant(0, "birch_planks_smooth"), BIRCH_PLANKS_SHORT = new BlockVariant(1, "birch_planks_short"), BIRCH_PLANKS_FANCY = new BlockVariant(2, "birch_planks_fancy"), BIRCH_PLANKS_PANEL = new BlockVariant(3, "birch_planks_panel"), <API key> = new BlockVariant(4, "<API key>"), BIRCH_PLANKS_CRATE = new BlockVariant(5, "birch_planks_crate"), <API key> = new BlockVariant(6, "<API key>"), BIRCH_PLANKS_LONG = new BlockVariant(7, "birch_planks_long"), <API key> = new BlockVariant(8, "<API key>"), <API key> = new BlockVariant(9, "<API key>"), <API key> = new BlockVariant(10, "<API key>"), BIRCH_PLANKS_BLINDS = new BlockVariant(11, "birch_planks_blinds"), <API key> = new BlockVariant(12, "<API key>"), <API key> = new BlockVariant(13, "<API key>"), <API key> = new BlockVariant(14, "<API key>"), BOOKSHELF_RAINBOW = new BlockVariant(1, "bookshelf_rainbow"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), BOOKSHELF_TOMES = new BlockVariant(4, "bookshelf_tomes"), BOOKSHELF_ABANDONED = new BlockVariant(5, "bookshelf_abandoned"), BOOKSHELF_HOARDERS = new BlockVariant(6, "bookshelf_hoarders"), BOOKSHELF_PASTEL = new BlockVariant(7, "bookshelf_pastel"), BOOKSHELF_HISTORIAN = new BlockVariant(8, "bookshelf_historian"), BRICKS_LARGE = new BlockVariant(0, "bricks_large"), BRICKS_MORTARLESS = new BlockVariant(1, "bricks_mortarless"), BRICKS_VARIED = new BlockVariant(2, "bricks_varied"), BRICKS_AGED = new BlockVariant(3, "bricks_aged"), BRICKS_YELLOW = new BlockVariant(4, "bricks_yellow"), BRONZE_CAUTION = new BlockVariant(0, "bronze_caution"), BRONZE_SHIPPING = new BlockVariant(1, "bronze_shipping"), BRONZE_THERMAL = new BlockVariant(2, "bronze_thermal"), BRONZE_125 = new BlockVariant(3, "bronze_125"), BRONZE_BORDERED = new BlockVariant(4, "bronze_bordered"), BRONZE_BOLTED = new BlockVariant(5, "bronze_bolted"), CARPET_0 = new BlockVariant(0, "carpet_0"), CARPET_1 = new BlockVariant(1, "carpet_1"), CARPET_2 = new BlockVariant(2, "carpet_2"), CARPET_3 = new BlockVariant(3, "carpet_3"), CARPET_4 = new BlockVariant(4, "carpet_4"), CARPET_5 = new BlockVariant(5, "carpet_5"), CARPET_6 = new BlockVariant(6, "carpet_6"), CARPET_7 = new BlockVariant(7, "carpet_7"), CARPET_8 = new BlockVariant(8, "carpet_8"), CARPET_9 = new BlockVariant(9, "carpet_9"), CARPET_10 = new BlockVariant(10, "carpet_10"), CARPET_11 = new BlockVariant(11, "carpet_11"), CARPET_12 = new BlockVariant(12, "carpet_12"), CARPET_13 = new BlockVariant(13, "carpet_13"), CARPET_14 = new BlockVariant(14, "carpet_14"), CARPET_15 = new BlockVariant(15, "carpet_15"), CARPET_FLOOR_0 = new BlockVariant(0, "carpet_floor_0"), CARPET_FLOOR_1 = new BlockVariant(1, "carpet_floor_1"), CARPET_FLOOR_2 = new BlockVariant(2, "carpet_floor_2"), CARPET_FLOOR_3 = new BlockVariant(3, "carpet_floor_3"), CARPET_FLOOR_4 = new BlockVariant(4, "carpet_floor_4"), CARPET_FLOOR_5 = new BlockVariant(5, "carpet_floor_5"), CARPET_FLOOR_6 = new BlockVariant(6, "carpet_floor_6"), CARPET_FLOOR_7 = new BlockVariant(7, "carpet_floor_7"), CARPET_FLOOR_8 = new BlockVariant(8, "carpet_floor_8"), CARPET_FLOOR_9 = new BlockVariant(9, "carpet_floor_9"), CARPET_FLOOR_10 = new BlockVariant(10, "carpet_floor_10"), CARPET_FLOOR_11 = new BlockVariant(11, "carpet_floor_11"), CARPET_FLOOR_12 = new BlockVariant(12, "carpet_floor_12"), CARPET_FLOOR_13 = new BlockVariant(13, "carpet_floor_13"), CARPET_FLOOR_14 = new BlockVariant(14, "carpet_floor_14"), CARPET_FLOOR_15 = new BlockVariant(15, "carpet_floor_15"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(4, "<API key>"), <API key> = new BlockVariant(5, "<API key>"), <API key> = new BlockVariant(6, "<API key>"), <API key> = new BlockVariant(7, "<API key>"), <API key> = new BlockVariant(8, "<API key>"), <API key> = new BlockVariant(9, "<API key>"), <API key> = new BlockVariant(10, "<API key>"), COBBLESTONE_DENT = new BlockVariant(11, "cobblestone_dent"), COBBLESTONE_PANEL = new BlockVariant(12, "cobblestone_panel"), <API key> = new BlockVariant(13, "<API key>"), <API key> = new BlockVariant(14, "<API key>"), CONCRETE_RAW = new BlockVariant(0, "concrete_raw"), CONCRETE_BLOCK = new BlockVariant(1, "concrete_block"), CONCRETE_SLAB = new BlockVariant(2, "concrete_slab"), CONCRETE_BLOCKS = new BlockVariant(3, "concrete_blocks"), <API key> = new BlockVariant(4, "<API key>"), <API key> = new BlockVariant(5, "<API key>"), <API key> = new BlockVariant(6, "<API key>"), <API key> = new BlockVariant(7, "<API key>"), CONCRETE_RAW_PARTLY = new BlockVariant(8, "concrete_raw_partly"), <API key> = new BlockVariant(9, "<API key>"), CONCRETE_ASPHALT = new BlockVariant(10, "concrete_asphalt"), COPPER_CAUTION = new BlockVariant(0, "copper_caution"), COPPER_SHIPPING = new BlockVariant(1, "copper_shipping"), COPPER_THERMAL = new BlockVariant(2, "copper_thermal"), COPPER_125 = new BlockVariant(3, "copper_125"), COPPER_BORDERED = new BlockVariant(4, "copper_bordered"), COPPER_BOLTED = new BlockVariant(5, "copper_bolted"), CLOUD_NORMAL = new BlockVariant(0, "cloud_normal"), CLOUD_GRID = new BlockVariant(1, "cloud_grid"), CLOUD_LARGE = new BlockVariant(2, "cloud_large"), CLOUD_SMALL = new BlockVariant(3, "cloud_small"), CLOUD_VERTICAL = new BlockVariant(4, "cloud_vertical"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(4, "<API key>"), <API key> = new BlockVariant(5, "<API key>"), <API key> = new BlockVariant(6, "<API key>"), <API key> = new BlockVariant(7, "<API key>"), <API key> = new BlockVariant(8, "<API key>"), <API key> = new BlockVariant(9, "<API key>"), <API key> = new BlockVariant(10, "<API key>"), <API key> = new BlockVariant(11, "<API key>"), <API key> = new BlockVariant(12, "<API key>"), <API key> = new BlockVariant(13, "<API key>"), <API key> = new BlockVariant(14, "<API key>"), DIAMOND_EMBOSSED = new BlockVariant(0, "diamond_embossed"), DIAMOND_PANEL = new BlockVariant(1, "diamond_panel"), DIAMOND_CELLS = new BlockVariant(2, "diamond_cells"), <API key> = new BlockVariant(3, "<API key>"), DIAMOND_OBSIDIAN = new BlockVariant(4, "diamond_obsidian"), DIAMOND_SIMPLE = new BlockVariant(5, "diamond_simple"), DIAMOND_BISMUTH = new BlockVariant(6, "diamond_bismuth"), DIAMOND_CRUSHED = new BlockVariant(7, "diamond_crushed"), <API key> = new BlockVariant(8, "<API key>"), <API key> = new BlockVariant(9, "<API key>"), DIAMOND_ZELDA = new BlockVariant(10, "diamond_zelda"), DIAMOND_ORNATE = new BlockVariant(11, "diamond_ornate"), DIORITE_POLISHED = new BlockVariant(0, "diorite_polished"), DIORITE_PILLAR = new BlockVariant(1, "diorite_pillar"), DIORITE_BRICKS = new BlockVariant(2, "diorite_bricks"), DIORITE_ORNATE = new BlockVariant(3, "diorite_ornate"), DIORITE_PRISMATIC = new BlockVariant(4, "diorite_prismatic"), DIORITE_TILES_SMALL = new BlockVariant(5, "diorite_tiles_small"), <API key> = new BlockVariant(0, "<API key>"), DIRT_NETHER = new BlockVariant(1, "dirt_nether"), DIRT_BRICKS = new BlockVariant(2, "dirt_bricks"), DIRT_COBBLE = new BlockVariant(3, "dirt_cobble"), <API key> = new BlockVariant(4, "<API key>"), DIRT_REINFORCED = new BlockVariant(5, "dirt_reinforced"), DIRT_HAPPY = new BlockVariant(6, "dirt_happy"), DIRT_BRICKS_LARGE = new BlockVariant(7, "dirt_bricks_large"), <API key> = new BlockVariant(8, "<API key>"), DIRT_HORIZONTAL = new BlockVariant(9, "dirt_horizontal"), DIRT_VERTICAL = new BlockVariant(10, "dirt_vertical"), DIRT_LAYERS = new BlockVariant(11, "dirt_layers"), DIRT_CRUMBLING = new BlockVariant(12, "dirt_crumbling"), DIRT_CHUNKY = new BlockVariant(13, "dirt_chunky"), DIRT_HORIZONTAL2 = new BlockVariant(14, "dirt_horizontal2"), DIRT_PLATE = new BlockVariant(14, "dirt_plate"), EMERALD_PANEL = new BlockVariant(0, "emerald_panel"), <API key> = new BlockVariant(1, "<API key>"), EMERALD_SMOOTH = new BlockVariant(2, "emerald_smooth"), EMERALD_CHUNK = new BlockVariant(3, "emerald_chunk"), <API key> = new BlockVariant(4, "<API key>"), EMERALD_ZELDA = new BlockVariant(5, "emerald_zelda"), EMERALD_CELL = new BlockVariant(6, "emerald_cell"), EMERALD_BISMUTH = new BlockVariant(7, "emerald_bismuth"), <API key> = new BlockVariant(8, "<API key>"), <API key> = new BlockVariant(9, "<API key>"), EMERALD_ORNATE = new BlockVariant(10, "emerald_ornate"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(4, "<API key>"), <API key> = new BlockVariant(5, "<API key>"), <API key> = new BlockVariant(6, "<API key>"), <API key> = new BlockVariant(7, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), FACTORY_RUSTY_PLATE = new BlockVariant(1, "factory_rusty_plate"), FACTORY_RUSTY_VERY = new BlockVariant(2, "factory_rusty_very"), <API key> = new BlockVariant(3, "<API key>"), FACTORY_WIREFRAME = new BlockVariant(4, "factory_wireframe"), <API key> = new BlockVariant(5, "<API key>"), <API key> = new BlockVariant(6, "<API key>"), <API key> = new BlockVariant(7, "<API key>"), <API key> = new BlockVariant(8, "<API key>"), FACTORY_METAL = new BlockVariant(9, "factory_metal"), <API key> = new BlockVariant(10, "<API key>"), FACTORY_GOLD_PURPLE = new BlockVariant(11, "factory_gold_purple"), <API key> = new BlockVariant(12, "<API key>"), FACTORY_VENT_WORN = new BlockVariant(13, "factory_vent_worn"), <API key> = new BlockVariant(14, "<API key>"), FACTORY_COLUMN = new BlockVariant(15, "factory_column"), FACTORY_BLUE = new BlockVariant(16, "factory_blue"), <API key> = new BlockVariant(17, "<API key>"), <API key> = new BlockVariant(18, "<API key>"), <API key> = new BlockVariant(19, "<API key>"), FANTASY_BRICK = new BlockVariant(0, "fantasy_brick"), FANTASY_BRICK_FADED = new BlockVariant(1, "fantasy_brick_faded"), FANTASY_BRICK_WORN = new BlockVariant(2, "fantasy_brick_worn"), <API key> = new BlockVariant(3, "<API key>"), FANTASY_DECORATION = new BlockVariant(4, "fantasy_decoration"), <API key> = new BlockVariant(5, "<API key>"), <API key> = new BlockVariant(6, "<API key>"), FANTASY_PILLAR = new BlockVariant(7, "fantasy_pillar"), <API key> = new BlockVariant(8, "<API key>"), <API key> = new BlockVariant(9, "<API key>"), <API key> = new BlockVariant(10, "<API key>"), <API key> = new BlockVariant(11, "<API key>"), <API key> = new BlockVariant(12, "<API key>"), FANTASY_BLOCK = new BlockVariant(13, "fantasy_block"), <API key> = new BlockVariant(14, "<API key>"), <API key> = new BlockVariant(15, "<API key>"), FUTURA_SCREEN_GRAY = new BlockVariant(0, "futura_screen_gray"), FUTURA_SCREEN_CYAN = new BlockVariant(1, "futura_screen_cyan"), FUTURA_CONTROLLER = new BlockVariant(2, "futura_controller"), <API key> = new BlockVariant(3, "<API key>"), FUTURA_RAINBOW = new BlockVariant(4, "futura_rainbow"), GLASS_BUBBLE = new BlockVariant(0, "glass_bubble"), GLASS_CHINESE = new BlockVariant(1, "glass_chinese"), GLASS_JAPANESE = new BlockVariant(2, "glass_japanese"), GLASS_DUNGEON = new BlockVariant(3, "glass_dungeon"), GLASS_LIGHT = new BlockVariant(4, "glass_light"), GLASS_BORDERLESS = new BlockVariant(5, "glass_borderless"), GLASS_ORNATE = new BlockVariant(6, "glass_ornate"), GLASS_SCREEN = new BlockVariant(7, "glass_screen"), GLASS_SHALE = new BlockVariant(8, "glass_shale"), GLASS_STEEL = new BlockVariant(9, "glass_steel"), GLASS_STONE = new BlockVariant(10, "glass_stone"), GLASS_GRID_THICK = new BlockVariant(11, "glass_grid_thick"), GLASS_GRID_THIN = new BlockVariant(12, "glass_grid_thin"), GLASS_FENCE = new BlockVariant(13, "glass_fence"), GLASS_LEADED = new BlockVariant(14, "glass_leaded"), GLASS_PANE_BUBBLE = new BlockVariant(0, "glass_pane_bubble"), <API key> = new BlockVariant(1, "<API key>"), GLASS_PANE_SCREEN = new BlockVariant(1, "glass_pane_screen"), GLASS_PANE_STREAK = new BlockVariant(1, "glass_pane_streak"), GLASS_PANE_CHINESE = new BlockVariant(1, "glass_pane_chinese"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), GLOWSTONE_COBBLE = new BlockVariant(0, "glowstone_cobble"), GLOWSTONE_CORRODED = new BlockVariant(1, "glowstone_corroded"), GLOWSTONE_BLOCKS = new BlockVariant(2, "glowstone_blocks"), GLOWSTONE_NEON = new BlockVariant(3, "glowstone_neon"), GLOWSTONE_ORNATE = new BlockVariant(4, "glowstone_ornate"), GLOWSTONE_ROCKY = new BlockVariant(5, "glowstone_rocky"), GLOWSTONE_SHALE = new BlockVariant(6, "glowstone_shale"), GLOWSTONE_TILES = new BlockVariant(7, "glowstone_tiles"), GLOWSTONE_FANCY = new BlockVariant(8, "glowstone_fancy"), GLOWSTONE_CRUMBLING = new BlockVariant(9, "glowstone_crumbling"), GLOWSTONE_ORGANIC = new BlockVariant(10, "glowstone_organic"), GLOWSTONE_LAYERS = new BlockVariant(11, "glowstone_layers"), <API key> = new BlockVariant(12, "<API key>"), GLOWSTONE_BISMUTH = new BlockVariant(13, "glowstone_bismuth"), <API key> = new BlockVariant(14, "<API key>"), GOLD_INGOTS_LARGE = new BlockVariant(0, "gold_ingots_large"), GOLD_INGOTS_SMALL = new BlockVariant(1, "gold_ingots_small"), GOLD_BRICKS = new BlockVariant(2, "gold_bricks"), GOLD_CART = new BlockVariant(3, "gold_cart"), GOLD_COIN_HEADS = new BlockVariant(4, "gold_coin_heads"), GOLD_COIN_TAILS = new BlockVariant(5, "gold_coin_tails"), GOLD_CRATE_DARK = new BlockVariant(6, "gold_crate_dark"), GOLD_CRATE_LIGHT = new BlockVariant(7, "gold_crate_light"), GOLD_PLATES = new BlockVariant(8, "gold_plates"), GOLD_RIVETS = new BlockVariant(9, "gold_rivets"), GOLD_STAR_DECOR = new BlockVariant(10, "gold_star_decor"), <API key> = new BlockVariant(11, "<API key>"), GOLD_STAR_OBSIDIAN = new BlockVariant(12, "gold_star_obsidian"), GOLD_SIMPLE = new BlockVariant(13, "gold_simple"), GOLD_CAUTION = new BlockVariant(0, "gold_caution"), GOLD_SHIPPING = new BlockVariant(1, "gold_shipping"), GOLD_THERMAL = new BlockVariant(2, "gold_thermal"), GOLD_125 = new BlockVariant(3, "gold_125"), GOLD_BORDERED = new BlockVariant(4, "gold_bordered"), GOLD_BOLTED = new BlockVariant(5, "gold_bolted"), GRANITE_POLISHED = new BlockVariant(0, "granite_polished"), GRANITE_PILLAR = new BlockVariant(1, "granite_pillar"), GRANITE_BRICKS = new BlockVariant(2, "granite_bricks"), GRANITE_ORNATE = new BlockVariant(3, "granite_ornate"), GRANITE_PRISMATIC = new BlockVariant(4, "granite_prismatic"), GRANITE_TILES_SMALL = new BlockVariant(5, "granite_tiles_small"), GRIMSTONE_RAW = new BlockVariant(0, "grimstone_raw"), GRIMSTONE_SMOOTH = new BlockVariant(1, "grimstone_smooth"), GRIMSTONE_SYMBOL = new BlockVariant(2, "grimstone_symbol"), GRIMSTONE_CHISELED = new BlockVariant(3, "grimstone_chiseled"), GRIMSTONE_BLOCKS = new BlockVariant(4, "grimstone_blocks"), <API key> = new BlockVariant(5, "<API key>"), GRIMSTONE_BRICKS = new BlockVariant(6, "grimstone_bricks"), <API key> = new BlockVariant(7, "<API key>"), GRIMSTONE_PLATFORM = new BlockVariant(8, "grimstone_platform"), <API key> = new BlockVariant(9, "<API key>"), <API key> = new BlockVariant(10, "<API key>"), GRIMSTONE_TILES = new BlockVariant(11, "grimstone_tiles"), <API key> = new BlockVariant(12, "<API key>"), GRIMSTONE_PLATE = new BlockVariant(13, "grimstone_plate"), GRIMSTONE_FLAKY = new BlockVariant(14, "grimstone_flaky"), HEX_PLATING_0 = new BlockVariant(0, "hex_plating_0"), HEX_PLATING_1 = new BlockVariant(1, "hex_plating_1"), HEX_PLATING_2 = new BlockVariant(2, "hex_plating_2"), HEX_PLATING_3 = new BlockVariant(3, "hex_plating_3"), HEX_PLATING_4 = new BlockVariant(4, "hex_plating_4"), HEX_PLATING_5 = new BlockVariant(5, "hex_plating_5"), HEX_PLATING_6 = new BlockVariant(6, "hex_plating_6"), HEX_PLATING_7 = new BlockVariant(7, "hex_plating_7"), HEX_PLATING_8 = new BlockVariant(8, "hex_plating_8"), HEX_PLATING_9 = new BlockVariant(9, "hex_plating_9"), HEX_PLATING_10 = new BlockVariant(10, "hex_plating_10"), HEX_PLATING_11 = new BlockVariant(11, "hex_plating_11"), HEX_PLATING_12 = new BlockVariant(12, "hex_plating_12"), HEX_PLATING_13 = new BlockVariant(13, "hex_plating_13"), HEX_PLATING_14 = new BlockVariant(14, "hex_plating_14"), HEX_PLATING_15 = new BlockVariant(15, "hex_plating_15"), HOLYSTONE_RAW = new BlockVariant(0, "holystone_raw"), HOLYSTONE_SMOOTH = new BlockVariant(1, "holystone_smooth"), HOLYSTONE_SYMBOL = new BlockVariant(2, "holystone_symbol"), HOLYSTONE_CHISELED = new BlockVariant(3, "holystone_chiseled"), HOLYSTONE_BLOCKS = new BlockVariant(4, "holystone_blocks"), <API key> = new BlockVariant(5, "<API key>"), HOLYSTONE_BRICKS = new BlockVariant(6, "holystone_bricks"), <API key> = new BlockVariant(7, "<API key>"), HOLYSTONE_PLATFORM = new BlockVariant(8, "grimstone_platform"), <API key> = new BlockVariant(9, "<API key>"), <API key> = new BlockVariant(10, "<API key>"), HOLYSTONE_TILES = new BlockVariant(11, "grimstone_tiles"), <API key> = new BlockVariant(12, "<API key>"), HOLYSTONE_PLATE = new BlockVariant(13, "grimstone_plate"), ICE_ROUGH = new BlockVariant(0, "ice_rough"), ICE_COBBLE = new BlockVariant(1, "ice_cobble"), ICE_ROUGH_LARGE = new BlockVariant(2, "ice_rough_large"), ICE_BRICKS_LARGE = new BlockVariant(3, "ice_bricks_large"), ICE_BRICKS_SMALL = new BlockVariant(4, "ice_bricks_small"), ICE_GLASS_WALL = new BlockVariant(5, "ice_glass_wall"), ICE_TILES_LARGE = new BlockVariant(6, "ice_tiles_large"), ICE_TILES_FANCY = new BlockVariant(7, "ice_tiles_fancy"), ICE_TILES_SUNKEN = new BlockVariant(8, "ice_tiles_sunken"), <API key> = new BlockVariant(9, "<API key>"), ICE_PANEL = new BlockVariant(10, "ice_panel"), ICE_DOUBLE_SLAB = new BlockVariant(11, "ice_double_slab"), ICE_ZELDA = new BlockVariant(12, "ice_zelda"), ICE_BISMUTH = new BlockVariant(13, "ice_bismuth"), ICE_POISON = new BlockVariant(14, "ice_poison"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), ICE_PILLAR_CARVED = new BlockVariant(4, "ice_pillar_carved"), <API key> = new BlockVariant(5, "<API key>"), <API key> = new BlockVariant(6, "<API key>"), IRON_INGOTS_LARGE = new BlockVariant(0, "iron_ingots_large"), IRON_INGOTS_SMALL = new BlockVariant(1, "iron_ingots_small"), IRON_GEARS = new BlockVariant(2, "iron_gears"), IRON_BRICKS = new BlockVariant(3, "iron_bricks"), IRON_PLATES = new BlockVariant(4, "iron_plates"), IRON_COIN_HEADS = new BlockVariant(5, "iron_coin_heads"), IRON_COIN_TAILS = new BlockVariant(6, "iron_coin_tails"), IRON_CRATE_DARK = new BlockVariant(7, "iron_crate_dark"), IRON_CRATE_LIGHT = new BlockVariant(8, "iron_crate_light"), IRON_MOON_DECOR = new BlockVariant(9, "iron_moon_decor"), <API key> = new BlockVariant(10, "<API key>"), IRON_MOON_OBSIDIAN = new BlockVariant(11, "iron_moon_obsidian"), IRON_VENTS = new BlockVariant(12, "iron_vents"), IRON_SIMPLE = new BlockVariant(13, "iron_simple"), IRON_CAUTION = new BlockVariant(14, "iron_caution"), IRON_SHIPPING = new BlockVariant(15, "iron_shipping"), IRON_THERMAL = new BlockVariant(16, "iron_thermal"), IRON_125 = new BlockVariant(17, "iron_125"), IRON_BORDERED = new BlockVariant(18, "iron_bordered"), IRON_BOLTED = new BlockVariant(19, "iron_bolted"), IRON_BARS_NO_FRAME = new BlockVariant(0, "iron_bars_no_frame"), IRON_BARS_MENACING = new BlockVariant(1, "iron_bars_menacing"), IRON_BARS_CAGE = new BlockVariant(2, "iron_bars_cage"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(4, "<API key>"), IRON_BARS_GRID_THIN = new BlockVariant(5, "iron_bars_grid_thin"), IRON_BARS_ORNATE = new BlockVariant(6, "iron_bars_ornate"), IRON_BARS_VERTICAL = new BlockVariant(7, "iron_bars_vertical"), IRON_BARS_SPIKES = new BlockVariant(8, "iron_bars_spikes"), <API key> = new BlockVariant(0, "<API key>"), JUNGLE_PLANKS_SHORT = new BlockVariant(1, "jungle_planks_short"), JUNGLE_PLANKS_FANCY = new BlockVariant(2, "jungle_planks_fancy"), JUNGLE_PLANKS_PANEL = new BlockVariant(3, "jungle_planks_panel"), <API key> = new BlockVariant(4, "<API key>"), JUNGLE_PLANKS_CRATE = new BlockVariant(5, "jungle_planks_crate"), <API key> = new BlockVariant(6, "<API key>"), JUNGLE_PLANKS_LONG = new BlockVariant(7, "jungle_planks_long"), <API key> = new BlockVariant(8, "<API key>"), <API key> = new BlockVariant(9, "<API key>"), <API key> = new BlockVariant(10, "<API key>"), <API key> = new BlockVariant(11, "<API key>"), <API key> = new BlockVariant(12, "<API key>"), <API key> = new BlockVariant(13, "<API key>"), <API key> = new BlockVariant(14, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), LABORATORY_WALL = new BlockVariant(2, "laboratory_wall"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(4, "<API key>"), <API key> = new BlockVariant(5, "<API key>"), <API key> = new BlockVariant(6, "<API key>"), LABORATORY_FLOOR = new BlockVariant(7, "laboratory_floor"), <API key> = new BlockVariant(8, "<API key>"), <API key> = new BlockVariant(9, "<API key>"), <API key> = new BlockVariant(10, "<API key>"), <API key> = new BlockVariant(11, "<API key>"), <API key> = new BlockVariant(12, "<API key>"), <API key> = new BlockVariant(13, "<API key>"), <API key> = new BlockVariant(14, "<API key>"), <API key> = new BlockVariant(15, "<API key>"), LAPIS_CHUNKY = new BlockVariant(0, "lapis_chunky"), LAPIS_DARK = new BlockVariant(1, "lapis_dark"), LAPIS_ZELDA = new BlockVariant(2, "lapis_zelda"), LAPIS_ORNATE = new BlockVariant(3, "lapis_ornate"), LAPIS_TILE = new BlockVariant(4, "lapis_tile"), LAPIS_PANEL = new BlockVariant(5, "lapis_panel"), LAPIS_SMOOTH = new BlockVariant(6, "lapis_smooth"), LAPIS_ORNATE_LAYER = new BlockVariant(7, "lapis_ornate_layer"), LARGE_HEX_PLATING_0 = new BlockVariant(0, "large_hex_plating_0"), LARGE_HEX_PLATING_1 = new BlockVariant(1, "large_hex_plating_1"), LARGE_HEX_PLATING_2 = new BlockVariant(2, "large_hex_plating_2"), LARGE_HEX_PLATING_3 = new BlockVariant(3, "large_hex_plating_3"), LARGE_HEX_PLATING_4 = new BlockVariant(4, "large_hex_plating_4"), LARGE_HEX_PLATING_5 = new BlockVariant(5, "large_hex_plating_5"), LARGE_HEX_PLATING_6 = new BlockVariant(6, "large_hex_plating_6"), LARGE_HEX_PLATING_7 = new BlockVariant(7, "large_hex_plating_7"), LARGE_HEX_PLATING_8 = new BlockVariant(8, "large_hex_plating_8"), LARGE_HEX_PLATING_9 = new BlockVariant(9, "large_hex_plating_9"), <API key> = new BlockVariant(10, "<API key>"), <API key> = new BlockVariant(11, "<API key>"), <API key> = new BlockVariant(12, "<API key>"), <API key> = new BlockVariant(13, "<API key>"), <API key> = new BlockVariant(14, "<API key>"), <API key> = new BlockVariant(15, "<API key>"), LAVASTONE_RAW = new BlockVariant(0, "lavastone_raw"), LAVASTONE_BLACK = new BlockVariant(1, "lavastone_black"), LAVASTONE_TILES = new BlockVariant(2, "lavastone_tiles"), LAVASTONE_BRICKS = new BlockVariant(3, "lavastone_bricks"), <API key> = new BlockVariant(4, "<API key>"), LAVASTONE_PANEL = new BlockVariant(5, "lavastone_panel"), <API key> = new BlockVariant(6, "<API key>"), LAVASTONE_DARK = new BlockVariant(7, "lavastone_dark"), LEAD_CAUTION = new BlockVariant(0, "lead_caution"), LEAD_SHIPPING = new BlockVariant(1, "lead_shipping"), LEAD_THERMAL = new BlockVariant(2, "lead_thermal"), LEAD_125 = new BlockVariant(3, "lead_125"), LEAD_BORDERED = new BlockVariant(4, "lead_bordered"), LEAD_BOLTED = new BlockVariant(5, "lead_bolted"), LEAVES_DEAD = new BlockVariant(0, "leaves_dead"), LEAVES_FANCY = new BlockVariant(1, "leaves_fancy"), LEAVES_PINK = new BlockVariant(2, "leaves_pink"), LEAVES_RED = new BlockVariant(3, "leaves_red"), LEAVES_WHITE = new BlockVariant(4, "leaves_white"), <API key> = new BlockVariant(5, "<API key>"), <API key> = new BlockVariant(6, "<API key>"), LIMESTONE_RAW = new BlockVariant(0, "limestone_raw"), LIMESTONE_TILES = new BlockVariant(1, "limestone_tiles"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(4, "<API key>"), <API key> = new BlockVariant(5, "<API key>"), LIMESTONE_BRICKS = new BlockVariant(6, "limestone_bricks"), LIMESTONE_SMOOTH = new BlockVariant(7, "limestone_smooth"), <API key> = new BlockVariant(8, "<API key>"), <API key> = new BlockVariant(9, "<API key>"), <API key> = new BlockVariant(10, "<API key>"), <API key> = new BlockVariant(11, "<API key>"), <API key> = new BlockVariant(12, "<API key>"), LIMESTONE_PANEL = new BlockVariant(13, "limestone_panel"), LIMESTONE_DENT = new BlockVariant(14, "limestone_dent"), LITPUMPKIN_0 = new BlockVariant(0, "litpumpkin_0"), LITPUMPKIN_1 = new BlockVariant(1, "litpumpkin_1"), LITPUMPKIN_2 = new BlockVariant(2, "litpumpkin_2"), LITPUMPKIN_3 = new BlockVariant(3, "litpumpkin_3"), LITPUMPKIN_4 = new BlockVariant(4, "litpumpkin_4"), LITPUMPKIN_5 = new BlockVariant(5, "litpumpkin_5"), LITPUMPKIN_6 = new BlockVariant(6, "litpumpkin_6"), LITPUMPKIN_7 = new BlockVariant(7, "litpumpkin_7"), LITPUMPKIN_8 = new BlockVariant(8, "litpumpkin_8"), LITPUMPKIN_9 = new BlockVariant(9, "litpumpkin_9"), LITPUMPKIN_10 = new BlockVariant(10, "litpumpkin_10"), LITPUMPKIN_11 = new BlockVariant(11, "litpumpkin_11"), LITPUMPKIN_12 = new BlockVariant(12, "litpumpkin_12"), LITPUMPKIN_13 = new BlockVariant(13, "litpumpkin_13"), LITPUMPKIN_14 = new BlockVariant(14, "litpumpkin_14"), LITPUMPKIN_15 = new BlockVariant(15, "litpumpkin_15"), LITPUMPKIN_16 = new BlockVariant(16, "litpumpkin_16"), MARBLE_RAW = new BlockVariant(0, "marble_raw"), MARBLE_BRICK = new BlockVariant(1, "marble_brick"), <API key> = new BlockVariant(2, "<API key>"), MARBLE_PANEL_ORNATE = new BlockVariant(3, "marble_panel_ornate"), MARBLE_PANEL = new BlockVariant(4, "marble_panel"), MARBLE_BLOCK = new BlockVariant(5, "marble_block"), MARBLE_CREEPER_DARK = new BlockVariant(6, "marble_creeper_dark"), <API key> = new BlockVariant(7, "<API key>"), MARBLE_CARVED = new BlockVariant(8, "marble_carved"), <API key> = new BlockVariant(9, "<API key>"), MARBLE_DENT = new BlockVariant(10, "marble_dent"), MARBLE_DENT_LARGE = new BlockVariant(11, "marble_dent_large"), MARBLE_TILES = new BlockVariant(12, "marble_tiles"), <API key> = new BlockVariant(13, "<API key>"), MARBLE_TILES_FANCY = new BlockVariant(14, "marble_tiles_fancy"), MARBLE_BLOCKS = new BlockVariant(15, "marble_blocks"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(4, "<API key>"), <API key> = new BlockVariant(5, "<API key>"), <API key> = new BlockVariant(6, "<API key>"), <API key> = new BlockVariant(7, "<API key>"), <API key> = new BlockVariant(8, "<API key>"), <API key> = new BlockVariant(9, "<API key>"), <API key> = new BlockVariant(10, "<API key>"), <API key> = new BlockVariant(11, "<API key>"), <API key> = new BlockVariant(12, "<API key>"), <API key> = new BlockVariant(13, "<API key>"), <API key> = new BlockVariant(14, "<API key>"), MOSSY_TEMPLE_COBBLE = new BlockVariant(0, "mossy_temple_cobble"), MOSSY_TEMPLE_ORNATE = new BlockVariant(1, "mossy_temple_ornate"), MOSSY_TEMPLE_PLATE = new BlockVariant(2, "mossy_temple_plate"), <API key> = new BlockVariant(3, "<API key>"), MOSSY_TEMPLE_BRICKS = new BlockVariant(4, "mossy_temple_bricks"), <API key> = new BlockVariant(5, "<API key>"), <API key> = new BlockVariant(6, "<API key>"), <API key> = new BlockVariant(7, "<API key>"), MOSSY_TEMPLE_COLUMN = new BlockVariant(8, "mossy_temple_column"), MOSSY_TEMPLE_STAND = new BlockVariant(9, "mossy_temple_stand"), <API key> = new BlockVariant(10, "<API key>"), <API key> = new BlockVariant(11, "<API key>"), MOSSY_TEMPLE_TILES = new BlockVariant(12, "mossy_temple_tiles"), <API key> = new BlockVariant(13, "<API key>"), <API key> = new BlockVariant(14, "<API key>"), <API key> = new BlockVariant(15, "<API key>"), NETHER_BRICK_BLUE = new BlockVariant(0, "nether_brick_blue"), <API key> = new BlockVariant(1, "<API key>"), NETHER_BRICK_GUTS = new BlockVariant(2, "nether_brick_guts"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(4, "<API key>"), <API key> = new BlockVariant(5, "<API key>"), NETHER_BRICK_BROWN = new BlockVariant(6, "nether_brick_brown"), <API key> = new BlockVariant(7, "<API key>"), NETHER_BRICK_STONE = new BlockVariant(8, "nether_brick_stone"), NETHER_BRICK_MEAT = new BlockVariant(9, "nether_brick_meat"), <API key> = new BlockVariant(10, "<API key>"), <API key> = new BlockVariant(11, "<API key>"), <API key> = new BlockVariant(12, "<API key>"), NETHER_BRICK_RED = new BlockVariant(13, "nether_brick_red"), <API key> = new BlockVariant(14, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), NETHERRACK_BLOOD = new BlockVariant(1, "netherrack_blood"), <API key> = new BlockVariant(2, "<API key>"), NETHERRACK_BLUE = new BlockVariant(3, "netherrack_blue"), <API key> = new BlockVariant(4, "<API key>"), NETHERRACK_CLASSIC = new BlockVariant(5, "netherrack_classic"), <API key> = new BlockVariant(6, "<API key>"), NETHERRACK_GUTS = new BlockVariant(7, "netherrack_guts"), <API key> = new BlockVariant(8, "<API key>"), NETHERRACK_MEAT = new BlockVariant(9, "netherrack_meat"), NETHERRACK_MEAT_RED = new BlockVariant(10, "netherrack_meat_red"), <API key> = new BlockVariant(11, "<API key>"), NETHERRACK_RED = new BlockVariant(12, "netherrack_red"), NETHERRACK_LAVA = new BlockVariant(13, "netherrack_lava"), OAK_PLANKS_SMOOTH = new BlockVariant(0, "oak_planks_smooth"), OAK_PLANKS_SHORT = new BlockVariant(1, "oak_planks_short"), OAK_PLANKS_FANCY = new BlockVariant(2, "oak_planks_fancy"), OAK_PLANKS_PANEL = new BlockVariant(3, "oak_planks_panel"), <API key> = new BlockVariant(4, "<API key>"), OAK_PLANKS_CRATE = new BlockVariant(5, "oak_planks_crate"), <API key> = new BlockVariant(6, "<API key>"), OAK_PLANKS_LONG = new BlockVariant(7, "oak_planks_long"), OAK_PLANKS_VERTICAL = new BlockVariant(8, "oak_planks_vertical"), <API key> = new BlockVariant(9, "<API key>"), OAK_PLANKS_PARQUET = new BlockVariant(10, "oak_planks_parquet"), OAK_PLANKS_BLINDS = new BlockVariant(11, "oak_planks_blinds"), OAK_PLANKS_SCAFFOLD = new BlockVariant(12, "oak_planks_scaffold"), OAK_PLANKS_DISARRAY = new BlockVariant(13, "oak_planks_disarray"), <API key> = new BlockVariant(14, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), OBSIDIAN_PILLAR = new BlockVariant(1, "obsidian_pillar"), OBSIDIAN_CHISELED = new BlockVariant(2, "obsidian_chiseled"), <API key> = new BlockVariant(3, "<API key>"), OBSIDIAN_PANEL = new BlockVariant(4, "obsidian_panel"), <API key> = new BlockVariant(5, "<API key>"), <API key> = new BlockVariant(6, "<API key>"), OBSIDIAN_CRYSTAL = new BlockVariant(7, "obsidian_crystal"), OBSIDIAN_PANEL_MAP = new BlockVariant(8, "obsidian_panel_map"), <API key> = new BlockVariant(9, "<API key>"), <API key> = new BlockVariant(10, "<API key>"), OBSIDIAN_BLOCKS = new BlockVariant(11, "obsidian_blocks"), OBSIDIAN_TILES = new BlockVariant(12, "obsidian_tiles"), OBSIDIAN_GREEK = new BlockVariant(13, "obsidian_greek"), OBSIDIAN_CRATE = new BlockVariant(14, "obsidian_crate"), PACKED_ICE_ROUGH = new BlockVariant(0, "packed_ice_rough"), PACKED_ICE_COBBLE = new BlockVariant(1, "packed_ice_cobble"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(4, "<API key>"), <API key> = new BlockVariant(5, "<API key>"), <API key> = new BlockVariant(6, "<API key>"), <API key> = new BlockVariant(7, "<API key>"), <API key> = new BlockVariant(8, "<API key>"), <API key> = new BlockVariant(9, "<API key>"), PACKED_ICE_PANEL = new BlockVariant(10, "packed_ice_panel"), <API key> = new BlockVariant(11, "<API key>"), PACKED_ICE_ZELDA = new BlockVariant(12, "packed_ice_zelda"), PACKED_ICE_BISMUTH = new BlockVariant(13, "packed_ice_bismuth"), PACKED_ICE_POISON = new BlockVariant(14, "packed_ice_poison"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(4, "<API key>"), <API key> = new BlockVariant(5, "<API key>"), <API key> = new BlockVariant(6, "<API key>"), PAPERWALL_BOXED = new BlockVariant(0, "paperwall_boxed"), <API key> = new BlockVariant(1, "<API key>"), PAPERWALL_CROSSED = new BlockVariant(2, "paperwall_crossed"), PAPERWALL_SIX = new BlockVariant(3, "paperwall_six"), <API key> = new BlockVariant(4, "<API key>"), <API key> = new BlockVariant(5, "<API key>"), PAPERWALL_FLORAL = new BlockVariant(6, "paperwall_floral"), PAPERWALL_PLAIN = new BlockVariant(7, "paperwall_plain"), PAPERWALL_DOOR = new BlockVariant(8, "paperwall_door"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), PAPERWALL_BLOCK_SIX = new BlockVariant(3, "paperwall_block_six"), <API key> = new BlockVariant(4, "<API key>"), <API key> = new BlockVariant(5, "<API key>"), <API key> = new BlockVariant(6, "<API key>"), <API key> = new BlockVariant(7, "<API key>"), <API key> = new BlockVariant(8, "<API key>"), PUMPKIN_0 = new BlockVariant(0, "pumpkin_0"), PUMPKIN_1 = new BlockVariant(1, "pumpkin_1"), PUMPKIN_2 = new BlockVariant(2, "pumpkin_2"), PUMPKIN_3 = new BlockVariant(3, "pumpkin_3"), PUMPKIN_4 = new BlockVariant(4, "pumpkin_4"), PUMPKIN_5 = new BlockVariant(5, "pumpkin_5"), PUMPKIN_6 = new BlockVariant(6, "pumpkin_6"), PUMPKIN_7 = new BlockVariant(7, "pumpkin_7"), PUMPKIN_8 = new BlockVariant(8, "pumpkin_8"), PUMPKIN_9 = new BlockVariant(9, "pumpkin_9"), PUMPKIN_10 = new BlockVariant(10, "pumpkin_10"), PUMPKIN_11 = new BlockVariant(11, "pumpkin_11"), PUMPKIN_12 = new BlockVariant(12, "pumpkin_12"), PUMPKIN_13 = new BlockVariant(13, "pumpkin_13"), PUMPKIN_14 = new BlockVariant(14, "pumpkin_14"), PUMPKIN_15 = new BlockVariant(15, "pumpkin_15"), PUMPKIN_16 = new BlockVariant(16, "pumpkin_16"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(4, "<API key>"), <API key> = new BlockVariant(5, "<API key>"), <API key> = new BlockVariant(6, "<API key>"), <API key> = new BlockVariant(7, "<API key>"), <API key> = new BlockVariant(8, "<API key>"), <API key> = new BlockVariant(9, "<API key>"), <API key> = new BlockVariant(10, "<API key>"), <API key> = new BlockVariant(11, "<API key>"), <API key> = new BlockVariant(12, "<API key>"), <API key> = new BlockVariant(13, "<API key>"), <API key> = new BlockVariant(14, "<API key>"), <API key> = new BlockVariant(15, "<API key>"), REDSTONE_SMOOTH = new BlockVariant(0, "redstone_smooth"), REDSTONE_LARGE = new BlockVariant(1, "redstone_large"), REDSTONE_SMALL = new BlockVariant(2, "redstone_small"), REDSTONE_BRICKS = new BlockVariant(3, "redstone_bricks"), <API key> = new BlockVariant(4, "<API key>"), <API key> = new BlockVariant(5, "<API key>"), REDSTONE_CHISELED = new BlockVariant(6, "redstone_chiseled"), REDSTONE_GREEK = new BlockVariant(7, "redstone_greek"), <API key> = new BlockVariant(8, "<API key>"), REDSTONE_PILLAR = new BlockVariant(9, "redstone_pillar"), REDSTONE_TILES = new BlockVariant(10, "redstone_tiles"), REDSTONE_CIRCUIT = new BlockVariant(11, "redstone_circuit"), <API key> = new BlockVariant(12, "<API key>"), REDSTONE_SKULLS = new BlockVariant(13, "redstone_skulls"), REDSTONE_ZELDA = new BlockVariant(14, "redstone_zelda"), ROAD_LINES_WHITE = new BlockVariant(0, "road_lines_white"), ROAD_LINES_YELLOW = new BlockVariant(1, "road_lines_yellow"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), RUNIC_VOIDSTONE_0 = new BlockVariant(0, "runic_voidstone_0"), RUNIC_VOIDSTONE_1 = new BlockVariant(1, "runic_voidstone_1"), RUNIC_VOIDSTONE_2 = new BlockVariant(2, "runic_voidstone_2"), RUNIC_VOIDSTONE_3 = new BlockVariant(3, "runic_voidstone_3"), RUNIC_VOIDSTONE_4 = new BlockVariant(4, "runic_voidstone_4"), RUNIC_VOIDSTONE_5 = new BlockVariant(5, "runic_voidstone_5"), RUNIC_VOIDSTONE_6 = new BlockVariant(6, "runic_voidstone_6"), RUNIC_VOIDSTONE_7 = new BlockVariant(7, "runic_voidstone_7"), RUNIC_VOIDSTONE_8 = new BlockVariant(8, "runic_voidstone_8"), RUNIC_VOIDSTONE_9 = new BlockVariant(9, "runic_voidstone_9"), RUNIC_VOIDSTONE_10 = new BlockVariant(10, "runic_voidstone_10"), RUNIC_VOIDSTONE_11 = new BlockVariant(11, "runic_voidstone_11"), RUNIC_VOIDSTONE_12 = new BlockVariant(12, "runic_voidstone_12"), RUNIC_VOIDSTONE_13 = new BlockVariant(13, "runic_voidstone_13"), RUNIC_VOIDSTONE_14 = new BlockVariant(14, "runic_voidstone_14"), RUNIC_VOIDSTONE_15 = new BlockVariant(15, "runic_voidstone_15"), SANDSTONE_FADED = new BlockVariant(0, "sandstone_faded"), SANDSTONE_PILLAR = new BlockVariant(1, "sandstone_pillar"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(4, "<API key>"), <API key> = new BlockVariant(5, "<API key>"), <API key> = new BlockVariant(6, "<API key>"), <API key> = new BlockVariant(7, "<API key>"), <API key> = new BlockVariant(8, "<API key>"), SANDSTONE_BLOCK = new BlockVariant(9, "sandstone_block"), <API key> = new BlockVariant(10, "<API key>"), SANDSTONE_BLOCKS = new BlockVariant(11, "sandstone_blocks"), SANDSTONE_MOSAIC = new BlockVariant(12, "sandstone_mosaic"), SANDSTONE_STACKED = new BlockVariant(13, "sandstone_stacked"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(4, "<API key>"), <API key> = new BlockVariant(5, "<API key>"), <API key> = new BlockVariant(6, "<API key>"), <API key> = new BlockVariant(7, "<API key>"), <API key> = new BlockVariant(8, "<API key>"), <API key> = new BlockVariant(9, "<API key>"), <API key> = new BlockVariant(10, "<API key>"), <API key> = new BlockVariant(11, "<API key>"), <API key> = new BlockVariant(12, "<API key>"), <API key> = new BlockVariant(13, "<API key>"), <API key> = new BlockVariant(14, "<API key>"), <API key> = new BlockVariant(15, "<API key>"), SILVER_CAUTION = new BlockVariant(0, "silver_caution"), SILVER_SHIPPING = new BlockVariant(1, "silver_shipping", true), SILVER_THERMAL = new BlockVariant(2, "silver_thermal"), SILVER_125 = new BlockVariant(3, "silver_125"), SILVER_BORDERED = new BlockVariant(4, "silver_bordered", true), SILVER_BOLTED = new BlockVariant(5, "silver_bolted"), SNAKESTONE_SAND_0 = new BlockVariant(0, "snakestone_sand_0"), SNAKESTONE_SAND_1 = new BlockVariant(1, "snakestone_sand_1"), SNAKESTONE_STONE_0 = new BlockVariant(0, "snakestone_stone_0"), SNAKESTONE_STONE_1 = new BlockVariant(1, "snakestone_stone_1"), <API key> = new BlockVariant(0, "<API key>"), SPRUCE_PLANKS_SHORT = new BlockVariant(1, "spruce_planks_short"), SPRUCE_PLANKS_FANCY = new BlockVariant(2, "spruce_planks_fancy"), SPRUCE_PLANKS_PANEL = new BlockVariant(3, "spruce_planks_panel"), <API key> = new BlockVariant(4, "<API key>"), SPRUCE_PLANKS_CRATE = new BlockVariant(5, "spruce_planks_crate"), <API key> = new BlockVariant(6, "<API key>"), SPRUCE_PLANKS_LONG = new BlockVariant(7, "spruce_planks_long"), <API key> = new BlockVariant(8, "<API key>"), <API key> = new BlockVariant(9, "<API key>"), <API key> = new BlockVariant(10, "<API key>"), <API key> = new BlockVariant(11, "<API key>"), <API key> = new BlockVariant(12, "<API key>"), <API key> = new BlockVariant(13, "<API key>"), <API key> = new BlockVariant(14, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), STEEL_CAUTION = new BlockVariant(0, "steel_caution"), STEEL_SHIPPING = new BlockVariant(1, "steel_shipping"), STEEL_THERMAL = new BlockVariant(2, "steel_thermal"), STEEL_125 = new BlockVariant(3, "steel_125"), STEEL_BORDERED = new BlockVariant(4, "steel_bordered"), STEEL_BOLTED = new BlockVariant(5, "steel_bolted"), <API key> = new BlockVariant(0, "<API key>"), STONE_BRICKS_FELSIC = new BlockVariant(1, "stone_bricks_felsic"), STONE_BRICKS_MAFIC = new BlockVariant(2, "stone_bricks_mafic"), STONE_BRICKS_SMALL = new BlockVariant(3, "stone_bricks_small"), STONE_BRICKS_WIDE = new BlockVariant(4, "stone_bricks_wide"), <API key> = new BlockVariant(5, "<API key>"), <API key> = new BlockVariant(6, "<API key>"), <API key> = new BlockVariant(7, "<API key>"), STONE_BRICKS_FANCY = new BlockVariant(8, "stone_bricks_fancy"), STONE_BRICKS_ORNATE = new BlockVariant(9, "stone_bricks_ornate"), <API key> = new BlockVariant(10, "<API key>"), STONE_BRICKS_PANEL = new BlockVariant(11, "stone_bricks_panel"), <API key> = new BlockVariant(12, "<API key>"), <API key> = new BlockVariant(13, "<API key>"), STONE_BRICKS_POISON = new BlockVariant(14, "stone_bricks_poison"), TECHNICAL_SCAFFOLD = new BlockVariant(0, "technical_scaffold"), <API key> = new BlockVariant(1, "<API key>"), TECHNICAL_125 = new BlockVariant(2, "technical_125"), <API key> = new BlockVariant(3, "<API key>"), TECHNICAL_FAN_FAST = new BlockVariant(4, "technical_fan_fast"), <API key> = new BlockVariant(5, "<API key>"), TECHNICAL_FAN_OFF = new BlockVariant(6, "technical_fan_off"), TECHNICAL_VENTS = new BlockVariant(7, "technical_vents"), <API key> = new BlockVariant(8, "<API key>"), <API key> = new BlockVariant(9, "<API key>"), TECHNICAL_GEARS = new BlockVariant(10, "technical_gears"), TECHNICAL_CABLES = new BlockVariant(11, "technical_cables"), <API key> = new BlockVariant(12, "<API key>"), TECHNICAL_GRATE = new BlockVariant(13, "technical_grate"), <API key> = new BlockVariant(14, "<API key>"), <API key> = new BlockVariant(15, "<API key>"), TEMPLE_COBBLE = new BlockVariant(0, "temple_cobble"), TEMPLE_ORNATE = new BlockVariant(1, "temple_ornate"), TEMPLE_PLATE = new BlockVariant(2, "temple_plate"), <API key> = new BlockVariant(3, "<API key>"), TEMPLE_BRICKS = new BlockVariant(4, "temple_bricks"), TEMPLE_BRICKS_LARGE = new BlockVariant(5, "temple_bricks_large"), TEMPLE_BRICKS_WORN = new BlockVariant(6, "temple_bricks_worn"), <API key> = new BlockVariant(7, "<API key>"), TEMPLE_COLUMN = new BlockVariant(8, "temple_column"), TEMPLE_STAND = new BlockVariant(9, "temple_stand"), TEMPLE_STAND_MOSAIC = new BlockVariant(10, "temple_stand_mosaic"), <API key> = new BlockVariant(11, "<API key>"), TEMPLE_TILES = new BlockVariant(12, "temple_tiles"), TEMPLE_TILES_SMALL = new BlockVariant(13, "temple_tiles_small"), TEMPLE_TILES_LIGHT = new BlockVariant(14, "temple_tiles_light"), <API key> = new BlockVariant(15, "<API key>"), TIN_CAUTION = new BlockVariant(0, "tin_caution"), TIN_SHIPPING = new BlockVariant(1, "tin_shipping"), TIN_THERMAL = new BlockVariant(2, "tin_thermal"), TIN_125 = new BlockVariant(3, "tin_125"), TIN_BORDERED = new BlockVariant(4, "tin_bordered"), TIN_BOLTED = new BlockVariant(5, "tin_bolted"), TORCH_0 = new BlockVariant(0, "torch_0"), TORCH_1 = new BlockVariant(1, "torch_1"), TORCH_2 = new BlockVariant(2, "torch_2"), TORCH_3 = new BlockVariant(3, "torch_3"), TORCH_4 = new BlockVariant(4, "torch_4"), TORCH_5 = new BlockVariant(5, "torch_5"), TORCH_6 = new BlockVariant(6, "torch_6"), TORCH_7 = new BlockVariant(7, "torch_7"), TORCH_8 = new BlockVariant(8, "torch_8"), TORCH_9 = new BlockVariant(9, "torch_9"), <API key> = new BlockVariant(0, "<API key>"), <API key> = new BlockVariant(1, "<API key>"), <API key> = new BlockVariant(2, "<API key>"), <API key> = new BlockVariant(3, "<API key>"), TYRIAN_NORMAL = new BlockVariant(0, "tyrian_normal"), TYRIAN_BLEAK = new BlockVariant(1, "tyrian_bleak"), TYRIAN_PURPLE = new BlockVariant(2, "tyrian_purple"), TYRIAN_PURPLE_FADED = new BlockVariant(3, "tyrian_purple_faded"), TYRIAN_RUSTED = new BlockVariant(4, "tyrian_rusted"), TYRIAN_ELABORATE = new BlockVariant(5, "tyrian_elaborate"), TYRIAN_SEAMS = new BlockVariant(6, "tyrian_seams"), TYRIAN_PLATFORM = new BlockVariant(7, "tyrian_platform"), TYRIAN_TILES = new BlockVariant(8, "tyrian_tiles"), TYRIAN_DIAGONAL = new BlockVariant(9, "tyrian_diagonal"), TYRIAN_DENT = new BlockVariant(10, "tyrian_dent"), TYRIAN_BLUE = new BlockVariant(11, "tyrian_blue"), TYRIAN_BLACK = new BlockVariant(12, "tyrian_black"), TYRIAN_BLACK_TILES = new BlockVariant(13, "tyrian_black_tiles"), TYRIAN_OPENING = new BlockVariant(14, "tyrian_opening"), TYRIAN_SHINY = new BlockVariant(15, "tyrian_shiny"), URANIUM_CAUTION = new BlockVariant(0, "uranium_caution"), URANIUM_SHIPPING = new BlockVariant(1, "uranium_shipping"), URANIUM_THERMAL = new BlockVariant(2, "uranium_thermal"), URANIUM_125 = new BlockVariant(3, "uranium_125"), URANIUM_BORDERED = new BlockVariant(4, "uranium_bordered"), URANIUM_BOLTED = new BlockVariant(5, "uranium_bolted"), VALENTINES_BRICKS = new BlockVariant(0, "valentines_bricks"), <API key> = new BlockVariant(1, "<API key>"), VALENTINES_EMPTY = new BlockVariant(2, "valentines_empty"), VALENTINES_HEART = new BlockVariant(3, "valentines_heart"), <API key> = new BlockVariant(4, "<API key>"), VALENTINES_BLOCK = new BlockVariant(5, "valentines_block"), VALENTINES_COBBLE = new BlockVariant(6, "valentines_cobble"), VALENTINES_BUMPY = new BlockVariant(7, "valentines_bumpy"), VALENTINES_FIRE = new BlockVariant(8, "valentines_fire"), VALENTINES_TILE = new BlockVariant(9, "valentines_tile"), VOIDSTONE_RAW = new BlockVariant(0, "voidstone_raw"), VOIDSTONE_TILES = new BlockVariant(1, "voidstone_tiles"), VOIDSTONE_SMOOTH = new BlockVariant(2, "voidstone_smooth"), VOIDSTONE_SKULL = new BlockVariant(3, "voidstone_skull"), VOIDSTONE_RUNIC = new BlockVariant(4, "voidstone_runic"), VOIDSTONE_METAL = new BlockVariant(5, "voidstone_metal"), VOIDSTONE_EYE = new BlockVariant(6, "voidstone_eye"), VOIDSTONE_BEVEL = new BlockVariant(7, "voidstone_bevel"), WARNING_RADIATION = new BlockVariant(0, "warning_radiation"), WARNING_BIOHAZARD = new BlockVariant(1, "warning_biohazard"), WARNING_FIRE = new BlockVariant(2, "warning_fire"), WARNING_EXPLOSION = new BlockVariant(3, "warning_explosion"), WARNING_DEATH = new BlockVariant(4, "warning_death"), <API key> = new BlockVariant(5, "<API key>"), WARNING_FALLING = new BlockVariant(6, "warning_falling"), WARNING_VOLTAGE = new BlockVariant(7, "warning_voltage"), WARNING_GENERIC = new BlockVariant(8, "warning_generic"), WARNING_CHEM = new BlockVariant(9, "warning_chem"), <API key> = new BlockVariant(10, "<API key>"), WARNING_LOUD = new BlockVariant(11, "warning_loud"), WARNING_NO_ENTRY = new BlockVariant(12, "warning_no_entry"), WARNING_CRYOGENIC = new BlockVariant(13, "warning_cryogenic"), WARNING_OXYGEN = new BlockVariant(14, "warning_oxygen"), WATERSTONE_BRICKS = new BlockVariant(0, "waterstone_bricks"), WATERSTONE_BLACK = new BlockVariant(1, "waterstone_black"), WATERSTONE_TILES = new BlockVariant(2, "waterstone_tiles"), WATERSTONE_CHAOTIC = new BlockVariant(3, "waterstone_chaotic"), WATERSTONE_CREEPER = new BlockVariant(4, "waterstone_creeper"), WATERSTONE_PANEL = new BlockVariant(5, "waterstone_panel"), WATERSTONE_ORNATE = new BlockVariant(6, "waterstone_ornate"), WOOLEN_CLAY_0 = new BlockVariant(0, "woolen_clay_0"), WOOLEN_CLAY_1 = new BlockVariant(1, "woolen_clay_1"), WOOLEN_CLAY_2 = new BlockVariant(2, "woolen_clay_2"), WOOLEN_CLAY_3 = new BlockVariant(3, "woolen_clay_3"), WOOLEN_CLAY_4 = new BlockVariant(4, "woolen_clay_4"), WOOLEN_CLAY_5 = new BlockVariant(5, "woolen_clay_5"), WOOLEN_CLAY_6 = new BlockVariant(6, "woolen_clay_6"), WOOLEN_CLAY_7 = new BlockVariant(7, "woolen_clay_7"), WOOLEN_CLAY_8 = new BlockVariant(8, "woolen_clay_8"), WOOLEN_CLAY_9 = new BlockVariant(9, "woolen_clay_9"), WOOLEN_CLAY_10 = new BlockVariant(10, "woolen_clay_10"), WOOLEN_CLAY_11 = new BlockVariant(11, "woolen_clay_11"), WOOLEN_CLAY_12 = new BlockVariant(12, "woolen_clay_12"), WOOLEN_CLAY_13 = new BlockVariant(13, "woolen_clay_13"), WOOLEN_CLAY_14 = new BlockVariant(14, "woolen_clay_14"), WOOLEN_CLAY_15 = new BlockVariant(15, "woolen_clay_15"); }
#include "kerncompat.h" #include "ctree.h" #include "free-space-cache.h" #include "transaction.h" #include "disk-io.h" #include "extent_io.h" #include "crc32c.h" #include "bitops.h" #include "internal.h" #include "utils.h" /* * Kernel always uses PAGE_CACHE_SIZE for sectorsize, but we don't have * anything like that in userspace and have to get the value from the * filesystem */ #define BITS_PER_BITMAP(sectorsize) ((sectorsize) * 8) #define <API key> SZ_32K static int link_free_space(struct <API key> *ctl, struct btrfs_free_space *info); static void merge_space_tree(struct <API key> *ctl); struct io_ctl { void *cur, *orig; void *buffer; struct btrfs_root *root; unsigned long size; u64 total_size; int index; int num_pages; unsigned check_crcs:1; }; static int io_ctl_init(struct io_ctl *io_ctl, u64 size, u64 ino, struct btrfs_root *root) { memset(io_ctl, 0, sizeof(struct io_ctl)); io_ctl->num_pages = (size + root->fs_info->sectorsize - 1) / root->fs_info->sectorsize; io_ctl->buffer = kzalloc(size, GFP_NOFS); if (!io_ctl->buffer) return -ENOMEM; io_ctl->total_size = size; io_ctl->root = root; if (ino != <API key>) io_ctl->check_crcs = 1; return 0; } static void io_ctl_free(struct io_ctl *io_ctl) { kfree(io_ctl->buffer); } static void io_ctl_unmap_page(struct io_ctl *io_ctl) { if (io_ctl->cur) { io_ctl->cur = NULL; io_ctl->orig = NULL; } } static void io_ctl_map_page(struct io_ctl *io_ctl, int clear) { BUG_ON(io_ctl->index >= io_ctl->num_pages); io_ctl->cur = io_ctl->buffer + (io_ctl->index++ * io_ctl->root->fs_info->sectorsize); io_ctl->orig = io_ctl->cur; io_ctl->size = io_ctl->root->fs_info->sectorsize; if (clear) memset(io_ctl->cur, 0, io_ctl->root->fs_info->sectorsize); } static void io_ctl_drop_pages(struct io_ctl *io_ctl) { io_ctl_unmap_page(io_ctl); } static int <API key>(struct io_ctl *io_ctl, struct btrfs_root *root, struct btrfs_path *path, u64 ino) { struct extent_buffer *leaf; struct <API key> *fi; struct btrfs_key key; u64 bytenr, len; u64 total_read = 0; int ret = 0; key.objectid = ino; key.type = <API key>; key.offset = 0; ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); if (ret) { fprintf(stderr, "Couldn't find file extent item for free space inode" " %Lu\n", ino); btrfs_release_path(path); return -EINVAL; } while (total_read < io_ctl->total_size) { if (path->slots[0] >= <API key>(path->nodes[0])) { ret = btrfs_next_leaf(root, path); if (ret) { ret = -EINVAL; break; } } leaf = path->nodes[0]; <API key>(leaf, &key, path->slots[0]); if (key.objectid != ino) { ret = -EINVAL; break; } if (key.type != <API key>) { ret = -EINVAL; break; } fi = btrfs_item_ptr(path->nodes[0], path->slots[0], struct <API key>); if (<API key>(path->nodes[0], fi) != <API key>) { fprintf(stderr, "Not the file extent type we wanted\n"); ret = -EINVAL; break; } bytenr = <API key>(leaf, fi) + <API key>(leaf, fi); len = <API key>(leaf, fi); ret = read_data_from_disk(root->fs_info, io_ctl->buffer + key.offset, bytenr, len, 0); if (ret) break; total_read += len; path->slots[0]++; } btrfs_release_path(path); return ret; } static int <API key>(struct io_ctl *io_ctl, u64 generation) { __le64 *gen; /* * Skip the crc area. If we don't check crcs then we just have a 64bit * chunk at the front of the first page. */ if (io_ctl->check_crcs) { io_ctl->cur += sizeof(u32) * io_ctl->num_pages; io_ctl->size -= sizeof(u64) + (sizeof(u32) * io_ctl->num_pages); } else { io_ctl->cur += sizeof(u64); io_ctl->size -= sizeof(u64) * 2; } gen = io_ctl->cur; if (le64_to_cpu(*gen) != generation) { printk("btrfs: space cache generation " "(%Lu) does not match inode (%Lu)\n", *gen, generation); io_ctl_unmap_page(io_ctl); return -EIO; } io_ctl->cur += sizeof(u64); return 0; } static int io_ctl_check_crc(struct io_ctl *io_ctl, int index) { u32 *tmp, val; u32 crc = ~(u32)0; unsigned offset = 0; if (!io_ctl->check_crcs) { io_ctl_map_page(io_ctl, 0); return 0; } if (index == 0) offset = sizeof(u32) * io_ctl->num_pages; tmp = io_ctl->buffer; tmp += index; val = *tmp; io_ctl_map_page(io_ctl, 0); crc = crc32c(crc, io_ctl->orig + offset, io_ctl->root->fs_info->sectorsize - offset); btrfs_csum_final(crc, (u8 *)&crc); if (val != crc) { printk("btrfs: csum mismatch on free space cache\n"); io_ctl_unmap_page(io_ctl); return -EIO; } return 0; } static int io_ctl_read_entry(struct io_ctl *io_ctl, struct btrfs_free_space *entry, u8 *type) { struct <API key> *e; int ret; if (!io_ctl->cur) { ret = io_ctl_check_crc(io_ctl, io_ctl->index); if (ret) return ret; } e = io_ctl->cur; entry->offset = le64_to_cpu(e->offset); entry->bytes = le64_to_cpu(e->bytes); *type = e->type; io_ctl->cur += sizeof(struct <API key>); io_ctl->size -= sizeof(struct <API key>); if (io_ctl->size >= sizeof(struct <API key>)) return 0; io_ctl_unmap_page(io_ctl); return 0; } static int io_ctl_read_bitmap(struct io_ctl *io_ctl, struct btrfs_free_space *entry) { int ret; ret = io_ctl_check_crc(io_ctl, io_ctl->index); if (ret) return ret; memcpy(entry->bitmap, io_ctl->cur, io_ctl->root->fs_info->sectorsize); io_ctl_unmap_page(io_ctl); return 0; } static int <API key>(struct btrfs_root *root, struct <API key> *ctl, struct btrfs_path *path, u64 offset) { struct <API key> *header; struct btrfs_inode_item *inode_item; struct extent_buffer *leaf; struct io_ctl io_ctl; struct btrfs_key key; struct btrfs_key inode_location; struct btrfs_disk_key disk_key; struct btrfs_free_space *e, *n; struct list_head bitmaps; u64 num_entries; u64 num_bitmaps; u64 generation; u64 inode_size; u8 type; int ret = 0; INIT_LIST_HEAD(&bitmaps); key.objectid = <API key>; key.offset = offset; key.type = 0; ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); if (ret < 0) { return 0; } else if (ret > 0) { btrfs_release_path(path); return 0; } leaf = path->nodes[0]; header = btrfs_item_ptr(leaf, path->slots[0], struct <API key>); num_entries = <API key>(leaf, header); num_bitmaps = <API key>(leaf, header); generation = <API key>(leaf, header); <API key>(leaf, header, &disk_key); <API key>(&inode_location, &disk_key); btrfs_release_path(path); ret = btrfs_search_slot(NULL, root, &inode_location, path, 0, 0); if (ret) { fprintf(stderr, "Couldn't find free space inode %d\n", ret); return 0; } leaf = path->nodes[0]; inode_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_inode_item); inode_size = btrfs_inode_size(leaf, inode_item); if (!inode_size || !<API key>(leaf, inode_item)) { btrfs_release_path(path); return 0; } if (<API key>(leaf, inode_item) != generation) { fprintf(stderr, "free space inode generation (%llu) did not match " "free space cache generation (%llu)\n", (unsigned long long)<API key>(leaf, inode_item), (unsigned long long)generation); btrfs_release_path(path); return 0; } btrfs_release_path(path); if (!num_entries) return 0; ret = io_ctl_init(&io_ctl, inode_size, inode_location.objectid, root); if (ret) return ret; ret = <API key>(&io_ctl, root, path, inode_location.objectid); if (ret) goto out; ret = io_ctl_check_crc(&io_ctl, 0); if (ret) goto free_cache; ret = <API key>(&io_ctl, generation); if (ret) goto free_cache; while (num_entries) { e = calloc(1, sizeof(*e)); if (!e) goto free_cache; ret = io_ctl_read_entry(&io_ctl, e, &type); if (ret) { free(e); goto free_cache; } if (!e->bytes) { free(e); goto free_cache; } if (type == <API key>) { ret = link_free_space(ctl, e); if (ret) { fprintf(stderr, "Duplicate entries in free space cache\n"); free(e); goto free_cache; } } else { BUG_ON(!num_bitmaps); num_bitmaps e->bitmap = kzalloc(ctl->sectorsize, GFP_NOFS); if (!e->bitmap) { free(e); goto free_cache; } ret = link_free_space(ctl, e); ctl->total_bitmaps++; if (ret) { fprintf(stderr, "Duplicate entries in free space cache\n"); free(e->bitmap); free(e); goto free_cache; } list_add_tail(&e->list, &bitmaps); } num_entries } io_ctl_unmap_page(&io_ctl); /* * We add the bitmaps at the end of the entries in order that * the bitmap entries are added to the cache. */ <API key>(e, n, &bitmaps, list) { list_del_init(&e->list); ret = io_ctl_read_bitmap(&io_ctl, e); if (ret) goto free_cache; } io_ctl_drop_pages(&io_ctl); merge_space_tree(ctl); ret = 1; out: io_ctl_free(&io_ctl); return ret; free_cache: io_ctl_drop_pages(&io_ctl); <API key>(ctl); goto out; } int <API key>(struct btrfs_fs_info *fs_info, struct <API key> *block_group) { struct <API key> *ctl = block_group->free_space_ctl; struct btrfs_path *path; u64 used = <API key>(&block_group->item); int ret = 0; int matched; path = btrfs_alloc_path(); if (!path) return 0; ret = <API key>(fs_info->tree_root, ctl, path, block_group->key.objectid); btrfs_free_path(path); matched = (ctl->free_space == (block_group->key.offset - used - block_group->bytes_super)); if (ret == 1 && !matched) { <API key>(ctl); fprintf(stderr, "block group %llu has wrong amount of free space\n", block_group->key.objectid); ret = -1; } if (ret < 0) { ret = 0; fprintf(stderr, "failed to load free space cache for block group %llu\n", block_group->key.objectid); } return ret; } static inline unsigned long offset_to_bit(u64 bitmap_start, u32 unit, u64 offset) { BUG_ON(offset < bitmap_start); offset -= bitmap_start; return (unsigned long)(offset / unit); } static inline unsigned long bytes_to_bits(u64 bytes, u32 unit) { return (unsigned long)(bytes / unit); } static int tree_insert_offset(struct rb_root *root, u64 offset, struct rb_node *node, int bitmap) { struct rb_node **p = &root->rb_node; struct rb_node *parent = NULL; struct btrfs_free_space *info; while (*p) { parent = *p; info = rb_entry(parent, struct btrfs_free_space, offset_index); if (offset < info->offset) { p = &(*p)->rb_left; } else if (offset > info->offset) { p = &(*p)->rb_right; } else { /* * we could have a bitmap entry and an extent entry * share the same offset. If this is the case, we want * the extent entry to always be found first if we do a * linear search through the tree, since we want to have * the quickest allocation time, and allocating from an * extent is faster than allocating from a bitmap. So * if we're inserting a bitmap and we find an entry at * this offset, we want to go right, or after this entry * logically. If we are inserting an extent and we've * found a bitmap, we want to go left, or before * logically. */ if (bitmap) { if (info->bitmap) return -EEXIST; p = &(*p)->rb_right; } else { if (!info->bitmap) return -EEXIST; p = &(*p)->rb_left; } } } rb_link_node(node, parent, p); rb_insert_color(node, root); return 0; } /* * searches the tree for the given offset. * * fuzzy - If this is set, then we are trying to make an allocation, and we just * want a section that has at least bytes size and comes at or after the given * offset. */ static struct btrfs_free_space * tree_search_offset(struct <API key> *ctl, u64 offset, int bitmap_only, int fuzzy) { struct rb_node *n = ctl->free_space_offset.rb_node; struct btrfs_free_space *entry, *prev = NULL; u32 sectorsize = ctl->sectorsize; /* find entry that is closest to the 'offset' */ while (1) { if (!n) { entry = NULL; break; } entry = rb_entry(n, struct btrfs_free_space, offset_index); prev = entry; if (offset < entry->offset) n = n->rb_left; else if (offset > entry->offset) n = n->rb_right; else break; } if (bitmap_only) { if (!entry) return NULL; if (entry->bitmap) return entry; /* * bitmap entry and extent entry may share same offset, * in that case, bitmap entry comes after extent entry. */ n = rb_next(n); if (!n) return NULL; entry = rb_entry(n, struct btrfs_free_space, offset_index); if (entry->offset != offset) return NULL; WARN_ON(!entry->bitmap); return entry; } else if (entry) { if (entry->bitmap) { /* * if previous extent entry covers the offset, * we should return it instead of the bitmap entry */ n = rb_prev(&entry->offset_index); if (n) { prev = rb_entry(n, struct btrfs_free_space, offset_index); if (!prev->bitmap && prev->offset + prev->bytes > offset) entry = prev; } } return entry; } if (!prev) return NULL; /* find last entry before the 'offset' */ entry = prev; if (entry->offset > offset) { n = rb_prev(&entry->offset_index); if (n) { entry = rb_entry(n, struct btrfs_free_space, offset_index); BUG_ON(entry->offset > offset); } else { if (fuzzy) return entry; else return NULL; } } if (entry->bitmap) { n = rb_prev(&entry->offset_index); if (n) { prev = rb_entry(n, struct btrfs_free_space, offset_index); if (!prev->bitmap && prev->offset + prev->bytes > offset) return prev; } if (entry->offset + BITS_PER_BITMAP(sectorsize) * ctl->unit > offset) return entry; } else if (entry->offset + entry->bytes > offset) return entry; if (!fuzzy) return NULL; while (1) { if (entry->bitmap) { if (entry->offset + BITS_PER_BITMAP(sectorsize) * ctl->unit > offset) break; } else { if (entry->offset + entry->bytes > offset) break; } n = rb_next(&entry->offset_index); if (!n) return NULL; entry = rb_entry(n, struct btrfs_free_space, offset_index); } return entry; } void unlink_free_space(struct <API key> *ctl, struct btrfs_free_space *info) { rb_erase(&info->offset_index, &ctl->free_space_offset); ctl->free_extents ctl->free_space -= info->bytes; } static int link_free_space(struct <API key> *ctl, struct btrfs_free_space *info) { int ret = 0; BUG_ON(!info->bitmap && !info->bytes); ret = tree_insert_offset(&ctl->free_space_offset, info->offset, &info->offset_index, (info->bitmap != NULL)); if (ret) return ret; ctl->free_space += info->bytes; ctl->free_extents++; return ret; } static int search_bitmap(struct <API key> *ctl, struct btrfs_free_space *bitmap_info, u64 *offset, u64 *bytes) { unsigned long found_bits = 0; unsigned long bits, i; unsigned long next_zero; u32 sectorsize = ctl->sectorsize; i = offset_to_bit(bitmap_info->offset, ctl->unit, max_t(u64, *offset, bitmap_info->offset)); bits = bytes_to_bits(*bytes, ctl->unit); <API key>(i, bitmap_info->bitmap, BITS_PER_BITMAP(sectorsize)) { next_zero = find_next_zero_bit(bitmap_info->bitmap, BITS_PER_BITMAP(sectorsize), i); if ((next_zero - i) >= bits) { found_bits = next_zero - i; break; } i = next_zero; } if (found_bits) { *offset = (u64)(i * ctl->unit) + bitmap_info->offset; *bytes = (u64)(found_bits) * ctl->unit; return 0; } return -1; } struct btrfs_free_space * <API key>(struct <API key> *ctl, u64 offset, u64 bytes) { return tree_search_offset(ctl, offset, 0, 0); } static void <API key>(struct <API key> *ctl, struct btrfs_free_space *info) { struct btrfs_free_space *left_info; struct btrfs_free_space *right_info; u64 offset = info->offset; u64 bytes = info->bytes; /* * first we want to see if there is free space adjacent to the range we * are adding, if there is remove that struct and add a new one to * cover the entire range */ right_info = tree_search_offset(ctl, offset + bytes, 0, 0); if (right_info && rb_prev(&right_info->offset_index)) left_info = rb_entry(rb_prev(&right_info->offset_index), struct btrfs_free_space, offset_index); else left_info = tree_search_offset(ctl, offset - 1, 0, 0); if (right_info && !right_info->bitmap) { unlink_free_space(ctl, right_info); info->bytes += right_info->bytes; free(right_info); } if (left_info && !left_info->bitmap && left_info->offset + left_info->bytes == offset) { unlink_free_space(ctl, left_info); info->offset = left_info->offset; info->bytes += left_info->bytes; free(left_info); } } void <API key>(struct <API key> *block_group, u64 bytes) { struct <API key> *ctl = block_group->free_space_ctl; struct btrfs_free_space *info; struct rb_node *n; int count = 0; for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) { info = rb_entry(n, struct btrfs_free_space, offset_index); if (info->bytes >= bytes && !block_group->ro) count++; printk("entry offset %llu, bytes %llu, bitmap %s\n", (unsigned long long)info->offset, (unsigned long long)info->bytes, (info->bitmap) ? "yes" : "no"); } printk("%d blocks of free space at or bigger than bytes is \n", count); } int <API key>(struct <API key> *block_group, int sectorsize) { struct <API key> *ctl; ctl = calloc(1, sizeof(*ctl)); if (!ctl) return -ENOMEM; ctl->sectorsize = sectorsize; ctl->unit = sectorsize; ctl->start = block_group->key.objectid; ctl->private = block_group; block_group->free_space_ctl = ctl; return 0; } void <API key>(struct <API key> *ctl) { struct btrfs_free_space *info; struct rb_node *node; while ((node = rb_last(&ctl->free_space_offset)) != NULL) { info = rb_entry(node, struct btrfs_free_space, offset_index); unlink_free_space(ctl, info); free(info->bitmap); free(info); } } void <API key>(struct <API key> *block_group) { <API key>(block_group->free_space_ctl); } int <API key>(struct <API key> *ctl, u64 offset, u64 bytes) { struct btrfs_free_space *info; int ret = 0; info = calloc(1, sizeof(*info)); if (!info) return -ENOMEM; info->offset = offset; info->bytes = bytes; <API key>(ctl, info); ret = link_free_space(ctl, info); if (ret) { printk(KERN_CRIT "btrfs: unable to add free space :%d\n", ret); BUG_ON(ret == -EEXIST); } return ret; } /* * Merges all the free space cache and kills the bitmap entries since we just * want to use the free space cache to verify it's correct, no reason to keep * the bitmaps around to confuse things. */ static void merge_space_tree(struct <API key> *ctl) { struct btrfs_free_space *e, *prev = NULL; struct rb_node *n; int ret; u32 sectorsize = ctl->sectorsize; again: prev = NULL; for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) { e = rb_entry(n, struct btrfs_free_space, offset_index); if (e->bitmap) { u64 offset = e->offset, bytes = ctl->unit; u64 end; end = e->offset + (u64)(BITS_PER_BITMAP(sectorsize) * ctl->unit); unlink_free_space(ctl, e); while (!(search_bitmap(ctl, e, &offset, &bytes))) { ret = <API key>(ctl, offset, bytes); BUG_ON(ret); offset += bytes; if (offset >= end) break; bytes = ctl->unit; } free(e->bitmap); free(e); goto again; } if (!prev) goto next; if (prev->offset + prev->bytes == e->offset) { unlink_free_space(ctl, prev); unlink_free_space(ctl, e); prev->bytes += e->bytes; free(e); link_free_space(ctl, prev); goto again; } next: prev = e; } } int <API key>(struct btrfs_fs_info *fs_info, struct <API key> *bg) { struct btrfs_trans_handle *trans; struct btrfs_root *tree_root = fs_info->tree_root; struct btrfs_path path; struct btrfs_key key; struct btrfs_disk_key location; struct <API key> *sc_header; struct extent_buffer *node; u64 ino; int slot; int ret; trans = <API key>(tree_root, 1); if (IS_ERR(trans)) return PTR_ERR(trans); btrfs_init_path(&path); key.objectid = <API key>; key.type = 0; key.offset = bg->key.objectid; ret = btrfs_search_slot(trans, tree_root, &key, &path, -1, 1); if (ret > 0) { ret = 0; goto out; } if (ret < 0) goto out; node = path.nodes[0]; slot = path.slots[0]; sc_header = btrfs_item_ptr(node, slot, struct <API key>); <API key>(node, sc_header, &location); ino = location.objectid; /* Delete the free space header, as we have the ino to continue */ ret = btrfs_del_item(trans, tree_root, &path); if (ret < 0) { error("failed to remove free space header for block group %llu: %d", bg->key.objectid, ret); goto out; } btrfs_release_path(&path); /* Iterate from the end of the free space cache inode */ key.objectid = ino; key.type = <API key>; key.offset = (u64)-1; ret = btrfs_search_slot(trans, tree_root, &key, &path, -1, 1); if (ret < 0) { error("failed to locate free space cache extent for block group %llu: %d", bg->key.objectid, ret); goto out; } while (1) { struct <API key> *fi; u64 disk_bytenr; u64 disk_num_bytes; ret = btrfs_previous_item(tree_root, &path, ino, <API key>); if (ret > 0) { ret = 0; break; } if (ret < 0) { error( "failed to locate free space cache extent for block group %llu: %d", bg->key.objectid, ret); goto out; } node = path.nodes[0]; slot = path.slots[0]; <API key>(node, &key, slot); fi = btrfs_item_ptr(node, slot, struct <API key>); disk_bytenr = <API key>(node, fi); disk_num_bytes = <API key>(node, fi); ret = btrfs_free_extent(trans, tree_root, disk_bytenr, disk_num_bytes, 0, tree_root->objectid, ino, key.offset); if (ret < 0) { error("failed to remove backref for disk bytenr %llu: %d", disk_bytenr, ret); goto out; } ret = btrfs_del_item(trans, tree_root, &path); if (ret < 0) { error( "failed to remove free space extent data for ino %llu offset %llu: %d", ino, key.offset, ret); goto out; } } btrfs_release_path(&path); /* Now delete free space cache inode item */ key.objectid = ino; key.type = <API key>; key.offset = 0; ret = btrfs_search_slot(trans, tree_root, &key, &path, -1, 1); if (ret > 0) warning("free space inode %llu not found, ignore", ino); if (ret < 0) { error( "failed to locate free space cache inode %llu for block group %llu: %d", ino, bg->key.objectid, ret); goto out; } ret = btrfs_del_item(trans, tree_root, &path); if (ret < 0) { error( "failed to delete free space cache inode %llu for block group %llu: %d", ino, bg->key.objectid, ret); } out: btrfs_release_path(&path); if (!ret) <API key>(trans, tree_root); return ret; }
# CannyFS CannyFS is a shim file system. That is, it mirrors an existing file system. This is implemented using FUSE, and the source code is a heavily modified fork of the https: What makes CannyFS different is that almost any write operation is completed asynchronously, while the code itself reports back to the caller that the task completed. This means that the calling process can proceed doing useful work. This is especially important if your I/O subsystem has high latency (due to lots of I/O or being hosted somewhere else within a network), and/or if your process makes a very high number of I/O requests, with a lot of flushing or writing to different files. Examples of this can be tasks that walk over complete directory trees, touching or writing to every file within them. Preprint paper (not currently submitted anywhere) with some benchmarks: https://arxiv.org/abs/1612.06830 ## Intended usage mode 1. Mount a directory with CannyFS, in non-demon mode to easily see error messages written to stderr. 2. Do your work. 3. Kill the CannyFS process. 4. Check that the CannyFS process gracefully reports no errors. ## Compiling CannyFS The packages tbb, boost, and fuse are needed, beyond what's typically available in any Linux distro. In e.g. Ubuntu 16.04, this can be enough to get you going: bash sudo apt-get install libtbb-dev libfuse-dev libboost-dev <API key> libboost-system-dev Then compile using at the very least a g++ compiler from the 5.x tree, 6.x highly recommended (C++ 14 support is needed). bash g++ cannyfs.cpp -std=c++14 -O3 -lfuse -ltbb -lpthread -lboost_filesystem -lboost_system -D_FILE_OFFSET_BITS=64 -o cannyfs ## Example script The following script will create a mount that mirrors your local dir, with settings that are suitable for a Linux system (where default pipe buffers are typically 65536 bytes in length). The zip file `archive.zip` contains loads of small files and thus takes quite long to extract, especially if you are doing this over an NFS or CIFS mount. By mounting it in CannyFS, unzip can enqueue I/O operations to several target files, rather than performing a blocking wait for completion for each file. CannyFS will need to be in your path, if it's found locally, adjust the command and kill jobspec to `./cannyfs`: bash #!/usr/bin/bash mkdir mountpoint cannyfs -f -o big_writes -o max_write=65536 -omodules=subdir,subdir=$HOME mountpoint & # Linux-specific way of checking for mountpoint, arbitrary sleep generally works fine as well until mountpoint -q $CANNY_PATH; do sleep 1; done cd mountpoint unzip $HOME/archive.zip kill %cannyfs rmdir mountpoint You can also use the handy `cannywrapper.sh` script, assuming `cannyfs` is in your path. That way, you can wrap a single shell command in a CannyFS jail, where any file system I/O is tunneled through CannyFS. This is less than ideal since some operations to special file systems are not compatible, but it is fine for common I/O workhorse tools such as `rsync'.
-- File: checkbox.lua -- copyright 2015 members of the psycle project http://psycle.sourceforge.net -- This source is free software ; you can redistribute it and/or modify it under -- Foundation ; either version 2, or (at your option) any later version. local point = require("psycle.ui.point") local dimension = require("psycle.ui.dimension") local rect = require("psycle.ui.rect") local boxspace = require("psycle.ui.boxspace") local group = require("psycle.ui.group") local item = require("psycle.ui.item") local text = require("psycle.ui.text") local ornamentfactory = require("psycle.ui.ornamentfactory"):new() local checkbox = group:new() local settings = { colors = { default = { bg = 0x3E3E3E, text = 0xB0C8B1, checker = 0xCACACA }, mousepress = { bg = 0x3E3E3E }, mousemove = { bg = 0x3E3E3E } } } function checkbox:new(parent) local c = group:new(parent) setmetatable(c, self) self.__index = self c:init() return c end function checkbox:init() self:setautosize(true, true) self.check_ = false self.checkgroup = text:new(self) :setautosize(false, false) :setposition(rect:new(point:new(0, 0), dimension:new(10, 10))) :addornament(ornamentfactory:createfill(settings.colors.default.bg)) :setalign(item.ALLEFT) :setmargin(boxspace:new(0, 4, 0, 0)) self.text = text:new(self):settext("A Checkbox"):setalign(item.ALLEFT):setautosize(true, true) local that = self function self.checkgroup:onmousedown() that.check_ = not that.check_ if that.check_ then that.checkgroup:settext("x") else that.checkgroup:settext("") end that:onclick(that.check_) end end function checkbox:setcolor(color) self.text:setcolor(color) self.checkgroup:setcolor(color) end function checkbox:settext(text) self.text:settext(text) return self end function checkbox:text() return self.text:text() end function checkbox:check() return self.check_; end function checkbox:setcheck(checked) self.check_ = checked end checkbox.published = { settext = checkbox.settext } function checkbox:onclick(ischecked) end return checkbox
package us.mn.state.dot.tms.client.dms; import java.util.TreeSet; import javax.swing.AbstractListModel; import javax.swing.ComboBoxModel; import us.mn.state.dot.tms.DMSHelper; import us.mn.state.dot.tms.SignText; import us.mn.state.dot.tms.utils.MultiString; /** * Model for a sign text line combo box. * * @author Douglas Lau * @author Michael Darter */ public class <API key> extends AbstractListModel<SignText> implements ComboBoxModel<SignText> { /** Rank for on-the-fly created sign messages */ static private final short ON_THE_FLY_RANK = 99; /** Blank client-side sign text object */ static private final SignText BLANK_SIGN_TEXT = new ClientSignText(""); /** Set of sorted SignText items */ private final TreeSet<SignText> items = new TreeSet<SignText>(new SignTextComparator()); /** Sign text line number */ private final short line; /** Create a new sign text combo box model. * @param ln Sign text line number. */ protected <API key>(short ln) { line = ln; items.add(BLANK_SIGN_TEXT); } /** Get the element at the specified index */ @Override public SignText getElementAt(int index) { int i = 0; for (SignText t: items) { if (i == index) return t; i++; } return null; } /** Get the number of elements in the model */ @Override public int getSize() { return items.size(); } /** Selected SignText item */ private SignText selected; /** Get the selected item */ @Override public Object getSelectedItem() { SignText st = selected; // filter lines that should be ignored if (st != null && st instanceof ClientSignText) { if (DMSHelper.ignoreLineFilter(st.getMulti())) return BLANK_SIGN_TEXT; } return st; } /** * Set the selected item. This method is called by the combobox when: * -the focus leaves the combobox with a String arg when editable. * -a combobox item is clicked on via the mouse. * -a combobox item is moved to via the cursor keys. */ @Override public void setSelectedItem(Object s) { if (s instanceof SignText) selected = (SignText)s; else if (s instanceof String) selected = getSignText((String)s); else selected = null; // this results in a call to the editor's setSelectedItem method fireContentsChanged(this, -1, -1); } /** Get or create a sign text for the given string */ private SignText getSignText(String s) { String m = new MultiString(s.trim()).normalize(); if (m.length() == 0) return BLANK_SIGN_TEXT; SignText st = lookupMessage(m); if (st != null) return st; else return new ClientSignText(m, line, ON_THE_FLY_RANK); } /** Lookup a sign text. * @return Existing SignText, or null if not found. */ private SignText lookupMessage(String t) { for (SignText st: items) { if (t.equals(st.getMulti())) return st; } return null; } /** Find the index of an item */ private int find(SignText t) { int i = 0; for (SignText st: items) { if (st.equals(t)) return i; i++; } return -1; } /** Add a SignText to the model */ public void add(SignText t) { if (items.add(t)) { int i = find(t); if (i >= 0) fireIntervalAdded(this, i, i); } } /** Remove a sign text from the model */ public void remove(SignText t) { int i = find(t); if (i >= 0) { items.remove(t); if (t.equals(selected)) selected = null; fireIntervalRemoved(this, i, i); } } /** Get the edited sign text (if any) */ public ClientSignText getEditedSignText() { SignText st = selected; if (st instanceof ClientSignText && st != BLANK_SIGN_TEXT) return (ClientSignText)st; else return null; } }
/*this file evaluate the objective function values, the constraint violations and overall constraint violation of the newly formed inds in newpop Note: 1. The maximum number of objective and properties that can be used in this file are defined in the moga.h file 2. All constraints need to be constructed in the form of ConstraintFunction>=0*/ #include "moga.h" extern int no_gener, /*number of generations*/ no_obj, /*no. of objective functions*/ no_cons, /*no. of constraints*/ no_pro, /*no. of property*/ no_option[maxchrom1], /*list of no. of options for each integer decision variable*/ no_intevar, /*no. of integer decision variables = size of chromosome1*/ no_realvar, /*no. of real decision variables = size of chromosome2*/ no_mut1, /*no. of mutations happened to chrom1*/ no_mut2, /*no. of mutations happened to chrom2*/ no_cross, /*no. of crossovers happened*/ no_cross_real, /*no. of real variables crossed*/ ans; extern double seed, /*random seed*/ pc, /*crossover probability for both integer and real chromosomes*/ pm, /*mutation probability for both interger and real chromosomes*/ di, /*distribution index for SBX*/ dim, /*distribution index for polynomial mutation*/ xoption[maxchrom1][maxno_option], //lookout table of 1st property of no_intevar yoption[maxchrom1][maxno_option], //lookout table of 2nd property of no_intevar zoption[maxchrom1][maxno_option], //lookout table of t3rd property of no_intevar uoption[maxchrom1][maxno_option], voption[maxchrom1][maxno_option], reallim[maxchrom2][2]; /*the lower and upper limts for real avriables*/ extern int popsize; /*population size*/ /*function prototype*/ double sum(double *, int); double min(double *, int); double max(double *, int); void errors(int value); void evaluatepop(population *pop_ptr, int gen) { int i,j; int k; double error; double *x_ptr, /*pointer to xchrom1*/ *y_ptr, //pointer to ychrom1 *z_ptr, //pointer to zchrom1 *u_ptr, *v_ptr, x[maxchrom1], //array of xchrom1 values of one ind y[maxchrom1], //array of ychrom1 values of one ind z[maxchrom1], //array of zchrom1 values of one ind u[maxchrom1], v[maxchrom1], r[maxchrom2], //array of chrom2 values of one ind *chrom2_ptr, /*pointer to the array of real-coded variables*/ f[maxobj], /*array of fitness values for each individual*/ cstr[maxcons], /*list of constraint functions*/ pro[maxpro]; /*list of network properties*/ pop_ptr->ind_ptr->fit[k]=f[k]; /*assign fitness to fitness array fit[no_obj] of ith indi*/ for (k=0;k<no_cons;k++) { /*calculate the overall constraints of ith individual*/ if(cstr[k]<0.0) /*test if the constraint k is violated*/ error-=cstr[k]; /*if it is violated then add it to error*/ pop_ptr->ind_ptr->overallcons=error; /*assign the overall constarints to the individual*/
#ifndef PROCESSOR_LINE_HPP #define PROCESSOR_LINE_HPP #include "geometry-processor.hpp" struct processor_line : public geometry_processor { processor_line(int srid); virtual ~processor_line(); geometry_builder::pg_geom_t process_way(const nodelist_t &nodes); geometry_builder::pg_geoms_t process_relation(const multinodelist_t &nodes); private: geometry_builder builder; }; #endif /* PROCESSOR_LINE_HPP */
<?php // ** MySQL settings - You can get this info from your web host ** // /** The name of the database for WordPress */ define('DB_NAME', 'web-app-dmd'); /** MySQL database username */ define('DB_USER', 'root'); /** MySQL database password */ define('DB_PASSWORD', 'root'); /** MySQL hostname */ define('DB_HOST', 'localhost'); /** Database Charset to use in creating database tables. */ define('DB_CHARSET', 'utf8'); /** The Database Collate type. Don't change this if in doubt. */ define('DB_COLLATE', ''); define('AUTH_KEY', 'put your unique phrase here'); define('SECURE_AUTH_KEY', 'put your unique phrase here'); define('LOGGED_IN_KEY', 'put your unique phrase here'); define('NONCE_KEY', 'put your unique phrase here'); define('AUTH_SALT', 'put your unique phrase here'); define('SECURE_AUTH_SALT', 'put your unique phrase here'); define('LOGGED_IN_SALT', 'put your unique phrase here'); define('NONCE_SALT', 'put your unique phrase here'); /** * WordPress Database Table prefix. * * You can have multiple installations in one database if you give each a unique * prefix. Only numbers, letters, and underscores please! */ $table_prefix = 'wp_'; /** * For developers: WordPress debugging mode. * * Change this to true to enable the display of notices during development. * It is strongly recommended that plugin and theme developers use WP_DEBUG * in their development environments. */ define('WP_DEBUG', false); /* That's all, stop editing! Happy blogging. */ /** Absolute path to the WordPress directory. */ if ( !defined('ABSPATH') ) define('ABSPATH', dirname(__FILE__) . '/'); /** Sets up WordPress vars and included files. */ require_once(ABSPATH . 'wp-settings.php');
using System; using System.IO; namespace TL866 { public class HexWriter { private readonly StreamWriter fstream; public HexWriter(StreamWriter stream) { if (stream != null) fstream = stream; else throw new Exception(); } public void WriteHex(byte[] buffer) { int bl = 0; fstream.WriteLine(GetLine(2, 0, 4, new byte[] {0, 0})); for (int i = 0; i < buffer.Length; i += 16) { bl += 16; fstream.WriteLine(GetLine(buffer.Length - (i + 16) == 0 ? 8 : 16, i, 0, buffer)); if (bl % 0x10000 == 0 && buffer.Length - (i + 16) != 0) fstream.WriteLine(GetLine(2, 0, 4, new byte[] {0, 1})); } fstream.WriteLine(GetLine(8, 0x1FFF8, 0, buffer)); fstream.WriteLine(GetLine(0, 0, 1, null)); fstream.Close(); } private string GetLine(int lenght, int address, byte recordtype, byte[] buffer) { string s = string.Format(":{0:X2}{1:X4}{2:X2}", lenght & 0xff, address & 0xffff, recordtype & 0xff); byte cs = (byte) lenght; cs += (byte) (((address & 0xffff) >> 8) & 0xff); cs += (byte) (address & 0xff); cs += (byte) (recordtype & 0xff); if (buffer != null) for (int k = 0; k < lenght; k++) { s += buffer[address + k].ToString("X2"); cs += buffer[address + k]; } cs = (byte) (~cs + 1); s += cs.ToString("X2"); return s; } } }
#!/bin/bash set -e # Global variables: # ${GV_LOG}: Prefix this variable in echo to log echoed string. SCRIPT_NAME="$(basename "$(test -L "$0" && readlink "$0" || echo "$0")")" echo "${GV_LOG}>>>>>>>>> Running ${SCRIPT_NAME} ..." # Explicitly install dependent packages apt-get -y install xdg-utils apt-get -y install libsdl2-2.0-0 apt-get -y install <API key>.0-cil apt-get -y install <API key>.0-cil apt-get -y install <API key>.0-cil apt-get -y install <API key>.0-cil apt-get -y install libmono-i18n4.0-all apt-get -y install zenity # Install openra. OPENRA_DEB=$(ls -1 openra_release.*_all.deb | sort -r | head -n1) dpkg -i "${OPENRA_DEB}" # Log echo "${GV_LOG} * Install openra."
package com.sleepycat.je.dbi; /** * Internal class used to distinguish which variety of getXXX() that * Cursor.retrieveNext should use. */ public class GetMode { private String name; private boolean forward; private GetMode(String name, boolean forward) { this.name = name; this.forward = forward; } public static final GetMode NEXT = new GetMode("NEXT", true); public static final GetMode PREV = new GetMode("PREV", false); public static final GetMode NEXT_DUP = new GetMode("NEXT_DUP", true); public static final GetMode PREV_DUP = new GetMode("PREV_DUP", false); public static final GetMode NEXT_NODUP = new GetMode("NEXT_NODUP", true); public static final GetMode PREV_NODUP = new GetMode("PREV_NODUP", false); public final boolean isForward() { return forward; } public String toString() { return name; } }
<?php // Homepage Widget Areas <API key>(array( 'name'=>'Sample Widget', 'id'=>'sample-widget', 'description' => 'This is to show how to create a widget', 'before_title'=>'<h4>', 'after_title'=>'</h4>' )); ?>
# Makefile for the Linux kernel device drivers. # 15 Sep 2000, Christoph Hellwig <hch@infradead.org> # Rewritten to use lists instead of if-statements. obj-y += gpio/ obj-$(CONFIG_PCI) += pci/ obj-$(CONFIG_PARISC) += parisc/ obj-$(CONFIG_RAPIDIO) += rapidio/ obj-y += video/ obj-y += idle/ obj-$(CONFIG_ACPI) += acpi/ obj-$(CONFIG_SFI) += sfi/ # PnP must come after ACPI since it will eventually need to check if acpi # was used and do nothing if so obj-$(CONFIG_PNP) += pnp/ obj-$(CONFIG_ARM_AMBA) += amba/ # Many drivers will want to use DMA so this has to be made available # really early. obj-$(CONFIG_DMA_ENGINE) += dma/ obj-$(CONFIG_VIRTIO) += virtio/ obj-$(CONFIG_XEN) += xen/ # regulators early, since some subsystems rely on them to initialize obj-$(CONFIG_REGULATOR) += regulator/ # tty/ comes before char/ so that the VT console is the boot-time # default. obj-y += tty/ obj-y += char/ # gpu/ comes after char for AGP vs DRM startup obj-y += gpu/ obj-$(CONFIG_CONNECTOR) += connector/ # i810fb and intelfb depend on char/agp/ obj-$(CONFIG_FB_I810) += video/i810/ obj-$(CONFIG_FB_INTEL) += video/intelfb/ obj-$(CONFIG_PARPORT) += parport/ obj-y += base/ block/ misc/ mfd/ nfc/ obj-$(CONFIG_NUBUS) += nubus/ obj-y += macintosh/ obj-$(CONFIG_IDE) += ide/ obj-$(CONFIG_SCSI) += scsi/ obj-$(CONFIG_ATA) += ata/ obj-$(CONFIG_TARGET_CORE) += target/ obj-$(CONFIG_MTD) += mtd/ obj-$(CONFIG_SPI) += spi/ obj-y += net/ obj-$(CONFIG_ATM) += atm/ obj-$(CONFIG_FUSION) += message/ obj-y += firewire/ obj-$(CONFIG_UIO) += uio/ obj-y += cdrom/ obj-y += auxdisplay/ obj-$(CONFIG_PCCARD) += pcmcia/ obj-$(CONFIG_DIO) += dio/ obj-$(CONFIG_SBUS) += sbus/ obj-$(CONFIG_ZORRO) += zorro/ obj-$(CONFIG_MAC) += macintosh/ obj-$(CONFIG_ATA_OVER_ETH) += block/aoe/ obj-$(CONFIG_PARIDE) += block/paride/ obj-$(CONFIG_TC) += tc/ obj-$(CONFIG_UWB) += uwb/ obj-$(<API key>) += usb/ obj-$(CONFIG_USB) += usb/ obj-$(CONFIG_PCI) += usb/ obj-$(CONFIG_USB_GADGET) += usb/ obj-$(CONFIG_SERIO) += input/serio/ obj-$(CONFIG_GAMEPORT) += input/gameport/ obj-$(CONFIG_INPUT) += input/ obj-$(CONFIG_I2O) += message/ obj-$(CONFIG_RTC_LIB) += rtc/ obj-y += i2c/ media/ obj-$(CONFIG_PPS) += pps/ obj-$(<API key>) += ptp/ obj-$(CONFIG_W1) += w1/ obj-$(CONFIG_POWER_SUPPLY) += power/ obj-$(CONFIG_HWMON) += hwmon/ obj-$(CONFIG_THERMAL) += thermal/ obj-$(CONFIG_WATCHDOG) += watchdog/ obj-$(CONFIG_PHONE) += telephony/ obj-$(CONFIG_MD) += md/ obj-$(CONFIG_BT) += bluetooth/ obj-$(<API key>) += accessibility/ obj-$(CONFIG_ISDN) += isdn/ obj-$(CONFIG_EDAC) += edac/ obj-$(CONFIG_MCA) += mca/ obj-$(CONFIG_EISA) += eisa/ obj-y += lguest/ obj-$(CONFIG_CPU_FREQ) += cpufreq/ obj-$(CONFIG_CPU_IDLE) += cpuidle/ obj-$(CONFIG_MMC) += mmc/ obj-$(CONFIG_MEMSTICK) += memstick/ obj-y += leds/ obj-$(CONFIG_INFINIBAND) += infiniband/ obj-$(CONFIG_SGI_SN) += sn/ obj-y += firmware/ obj-$(CONFIG_CRYPTO) += crypto/ obj-$(CONFIG_SUPERH) += sh/ obj-$(<API key>) += sh/ ifndef <API key> obj-y += clocksource/ endif obj-$(CONFIG_DCA) += dca/ obj-$(CONFIG_HID) += hid/ obj-$(CONFIG_PPC_PS3) += ps3/ obj-$(CONFIG_OF) += of/ obj-$(CONFIG_SSB) += ssb/ obj-$(CONFIG_BCMA) += bcma/ obj-$(CONFIG_VHOST_NET) += vhost/ obj-$(CONFIG_VLYNQ) += vlynq/ obj-$(CONFIG_STAGING) += staging/ obj-y += platform/ obj-y += ieee802154/ #common clk code obj-y += clk/ obj-$(CONFIG_HWSPINLOCK) += hwspinlock/ obj-$(CONFIG_NFC) += nfc/ obj-$(<API key>) += iommu/ # Virtualization drivers obj-$(CONFIG_VIRT_DRIVERS) += virt/
<!DOCTYPE HTML PUBLIC "- <!--NewPage <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_26) on Mon Sep 12 02:48:58 CST 2011 --> <TITLE> Servo </TITLE> <META NAME="date" CONTENT="2011-09-12"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Servo"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <A NAME="navbar_top"></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../nanovm/ctbot/drivers/Mouse.html" title="class in nanovm.ctbot.drivers"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../nanovm/ctbot/drivers/ShutterSensor.html" title="class in nanovm.ctbot.drivers"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?nanovm/ctbot/drivers/Servo.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="Servo.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <! if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>'); } </SCRIPT> <NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <HR> <H2> <FONT SIZE="-1"> nanovm.ctbot.drivers</FONT> <BR> Class Servo</H2> <PRE> java.lang.Object <IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>nanovm.ctbot.drivers.Servo</B> </PRE> <HR> <DL> <DT><PRE>public class <B>Servo</B><DT>extends java.lang.Object</DL> </PRE> <P> <HR> <P> <A NAME="field_summary"></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Field Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;int</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../nanovm/ctbot/drivers/Servo.html#MAXIMUM">MAXIMUM</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;int</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../nanovm/ctbot/drivers/Servo.html#MINIMUM">MINIMUM</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <A NAME="constructor_summary"></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Constructor Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../nanovm/ctbot/drivers/Servo.html#Servo()">Servo</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <A NAME="method_summary"></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Method Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;int</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../nanovm/ctbot/drivers/Servo.html#get1()">get1</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;int</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../nanovm/ctbot/drivers/Servo.html#get2()">get2</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../nanovm/ctbot/drivers/Servo.html#set1(int)">set1</A></B>(int&nbsp;val)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../nanovm/ctbot/drivers/Servo.html#set2(int)">set2</A></B>(int&nbsp;val)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp;<A NAME="<API key>.lang.Object"></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="<API key>"> <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD> </TR> </TABLE> &nbsp; <P> <A NAME="field_detail"></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Field Detail</B></FONT></TH> </TR> </TABLE> <A NAME="MAXIMUM"></A><H3> MAXIMUM</H3> <PRE> public static final int <B>MAXIMUM</B></PRE> <DL> <DL> <DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#nanovm.ctbot.drivers.Servo.MAXIMUM">Constant Field Values</A></DL> </DL> <HR> <A NAME="MINIMUM"></A><H3> MINIMUM</H3> <PRE> public static final int <B>MINIMUM</B></PRE> <DL> <DL> <DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#nanovm.ctbot.drivers.Servo.MINIMUM">Constant Field Values</A></DL> </DL> <A NAME="constructor_detail"></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Constructor Detail</B></FONT></TH> </TR> </TABLE> <A NAME="Servo()"></A><H3> Servo</H3> <PRE> public <B>Servo</B>()</PRE> <DL> </DL> <A NAME="method_detail"></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Method Detail</B></FONT></TH> </TR> </TABLE> <A NAME="set1(int)"></A><H3> set1</H3> <PRE> public static void <B>set1</B>(int&nbsp;val)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="set2(int)"></A><H3> set2</H3> <PRE> public static void <B>set2</B>(int&nbsp;val)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="get1()"></A><H3> get1</H3> <PRE> public static int <B>get1</B>()</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="get2()"></A><H3> get2</H3> <PRE> public static int <B>get2</B>()</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="navbar_bottom"></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="<API key>"></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../nanovm/ctbot/drivers/Mouse.html" title="class in nanovm.ctbot.drivers"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../nanovm/ctbot/drivers/ShutterSensor.html" title="class in nanovm.ctbot.drivers"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?nanovm/ctbot/drivers/Servo.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="Servo.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <! if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>'); } </SCRIPT> <NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <HR> </BODY> </HTML>
#include <linux/module.h> #include <linux/param.h> #include <linux/jiffies.h> #include <linux/workqueue.h> #include <linux/delay.h> #include <linux/platform_device.h> #include <linux/power_supply.h> #include <linux/idr.h> #include <linux/i2c.h> #include <linux/slab.h> #include <asm/unaligned.h> #include <mach/gpio.h> #include <linux/proc_fs.h> #include <asm/uaccess.h> #include <mach/board.h> #include <linux/irq.h> #include <linux/interrupt.h> #include <linux/uaccess.h> #include <linux/fcntl.h> #include <linux/fs.h> #include <linux/ctype.h> #include <linux/vmalloc.h> #define DRIVER_VERSION "2.1.0" #define BQ27x00_REG_TEMP 0x06 #define BQ27x00_REG_VOLT 0x08 #define BQ27x00_REG_AI 0x14 #define BQ27x00_REG_FLAGS 0x0A #define BQ27x00_REG_TTE 0x16 #define BQ27x00_REG_TTF 0x18 #define BQ27x00_REG_TTECP 0x26 #define BQ27000_REG_RSOC 0x0B /* Relative State-of-Charge */ #define BQ27500_REG_SOC 0x2c #define BQ27500_FLAG_DSC BIT(0) #define BQ27000_FLAG_CHGS BIT(8) #define BQ27500_FLAG_FC BIT(9) #define BQ27500_FLAG_OTD BIT(14) #define BQ27500_FLAG_OTC BIT(15) #define BQ27500_FLAG_BATDET BIT(3) /*define for firmware update*/ #define <API key> 128 #define <API key> 400 #define <API key> 0x00 #define <API key> 0x0F00 #define <API key> 0x0B #define <API key> 0x55 #define <API key> (400*1024) /*define for power detect*/ #define <API key> 2 #define BATTERY_LOW_VOLTAGE 3500000 #define <API key> 97 #define <API key> 0 #define <API key> 650 /*globle variable*/ struct i2c_client* <API key> = NULL; static struct i2c_driver <API key>; enum bq27510_reg { REG_FLAGS = 0, REG_SOC, REG_AI, REG_VOLT, REG_TEMP, }; static int bq27510_reg_value[5] = {0}; #if 0 #define DBG(x...) printk(KERN_INFO x) #else #define DBG(x...) do { } while (0) #endif /* If the system has several batteries we need a different name for each * of them... */ struct bq27510_device_info { struct device *dev; struct power_supply bat; struct power_supply ac; struct power_supply usb; struct delayed_work work; struct i2c_client *client; int bat_full; int bat_status; int bat_capacity; int bat_health; int bat_present; int bat_voltage; int bat_current; int bat_tempreture; unsigned int isInit; unsigned int interval; unsigned int dc_check_pin; unsigned int usb_check_pin; unsigned int bat_low_pin; //unsigned int chg_ok_pin; int wake_irq; struct delayed_work wakeup_work; struct wake_lock bat_low_lock; unsigned int bat_num; }; /*globle variable*/ static struct bq27510_device_info *bq27510_di; extern int get_bq24155_status(void); int <API key> = 0; static ssize_t battery_proc_write(struct file *file,const char __user *buffer, size_t count, loff_t *ppos) { char c; int rc; printk("USER:\n"); printk("echo x >/proc/driver/power\n"); printk("x=1,means just print log ||x=2,means log and data ||x= other,means close log\n"); rc = get_user(c,buffer); if(rc) return rc; if(c == '1') <API key> = 1; else if(c == '2') <API key> = 2; else if(c == '3') <API key> = 3; else <API key> = 0; printk("%s,count(%d),<API key>(%d)\n",__FUNCTION__,(int)count,<API key>); return count; } static const struct file_operations battery_proc_fops = { .owner = THIS_MODULE, .write = battery_proc_write, }; /* * Common code for BQ27510 devices read */ #define BQ27510_SPEED 300 * 1000 static DEFINE_MUTEX(battery_mutex); static int bq27510_read(struct i2c_client *client, u8 reg, u8 buf[], unsigned len) { int ret; mutex_lock(&battery_mutex); ret = <API key>(client, reg, buf, len, BQ27510_SPEED); mutex_unlock(&battery_mutex); return ret; } static int bq27510_write(struct i2c_client *client, u8 reg, u8 const buf[], unsigned len) { int ret; mutex_lock(&battery_mutex); ret = <API key>(client, reg, buf, (int)len, BQ27510_SPEED); mutex_unlock(&battery_mutex); return ret; } /* * firmware update codes */ static int <API key>(struct i2c_client *client, u8 reg, u8 *pSrcBuf, u8 *pDstBuf, u16 len) { int i2c_ret; i2c_ret = bq27510_read(client, reg, pSrcBuf, len); if(i2c_ret < 0) { printk(KERN_ERR "[%s,%d] bq27510_read failed\n",__FUNCTION__,__LINE__); return i2c_ret; } i2c_ret = strncmp(pDstBuf, pSrcBuf, len); return i2c_ret; } static int bq27510_atoi(const char *s) { int k = 0; k = 0; while (*s != '\0' && *s >= '0' && *s <= '9') { k = 10 * k + (*s - '0'); s++; } return k; } static unsigned long bq27510_strtoul(const char *cp, unsigned int base) { unsigned long result = 0,value; while (isxdigit(*cp) && (value = isdigit(*cp) ? *cp-'0' : (islower(*cp) ? toupper(*cp) : *cp)-'A'+10) < base) { result = result*base + value; cp++; } return result; } static int <API key>(struct i2c_client *client, const unsigned char *pgm_data, unsigned int filelen) { unsigned int i = 0, j = 0, ulDelay = 0, ulReadNum = 0; unsigned int ulCounter = 0, ulLineLen = 0; unsigned char temp = 0; unsigned char *p_cur; unsigned char pBuf[<API key>] = { 0 }; unsigned char p_src[<API key>] = { 0 }; unsigned char p_dst[<API key>] = { 0 }; unsigned char ucTmpBuf[16] = { 0 }; <API key>: if(ulCounter > 10) { return -1; } p_cur = (unsigned char *)pgm_data; while(1) { if((p_cur - pgm_data) >= filelen) { printk("Download success\n"); break; } while (*p_cur == '\r' || *p_cur == '\n') { p_cur++; } i = 0; ulLineLen = 0; memset(p_src, 0x00, sizeof(p_src)); memset(p_dst, 0x00, sizeof(p_dst)); memset(pBuf, 0x00, sizeof(pBuf)); while(i < <API key>) { temp = *p_cur++; i++; if(('\r' == temp) || ('\n' == temp)) { break; } if(' ' != temp) { pBuf[ulLineLen++] = temp; } } p_src[0] = pBuf[0]; p_src[1] = pBuf[1]; if(('W' == p_src[0]) || ('C' == p_src[0])) { for(i=2,j=0; i<ulLineLen; i+=2,j++) { memset(ucTmpBuf, 0x00, sizeof(ucTmpBuf)); memcpy(ucTmpBuf, pBuf+i, 2); p_src[2+j] = bq27510_strtoul(ucTmpBuf, 16); } temp = (ulLineLen -2)/2; ulLineLen = temp + 2; } else if('X' == p_src[0]) { memset(ucTmpBuf, 0x00, sizeof(ucTmpBuf)); memcpy(ucTmpBuf, pBuf+2, ulLineLen-2); ulDelay = bq27510_atoi(ucTmpBuf); } else if('R' == p_src[0]) { memset(ucTmpBuf, 0x00, sizeof(ucTmpBuf)); memcpy(ucTmpBuf, pBuf+2, 2); p_src[2] = bq27510_strtoul(ucTmpBuf, 16); memset(ucTmpBuf, 0x00, sizeof(ucTmpBuf)); memcpy(ucTmpBuf, pBuf+4, 2); p_src[3] = bq27510_strtoul(ucTmpBuf, 16); memset(ucTmpBuf, 0x00, sizeof(ucTmpBuf)); memcpy(ucTmpBuf, pBuf+6, ulLineLen-6); ulReadNum = bq27510_atoi(ucTmpBuf); } if(':' == p_src[1]) { switch(p_src[0]) { case 'W' : #if 0 printk("W: "); for(i=0; i<ulLineLen-4; i++) { printk("%x ", p_src[4+i]); } printk(KERN_ERR "\n"); #endif if(bq27510_write(client, p_src[3], &p_src[4], ulLineLen-4) < 0) { printk(KERN_ERR "[%s,%d] bq27510_write failed len=%d\n",__FUNCTION__,__LINE__,ulLineLen-4); } break; case 'R' : if(bq27510_read(client, p_src[3], p_dst, ulReadNum) < 0) { printk(KERN_ERR "[%s,%d] <API key> failed\n",__FUNCTION__,__LINE__); } break; case 'C' : if(<API key>(client, p_src[3], p_dst, &p_src[4], ulLineLen-4)) { ulCounter++; printk(KERN_ERR "[%s,%d] <API key> failed\n",__FUNCTION__,__LINE__); goto <API key>; } break; case 'X' : mdelay(ulDelay); break; default: return 0; } } } return 0; } static int <API key>(struct i2c_client *client, const unsigned char *pgm_data, unsigned int len) { int iRet; unsigned char ucTmpBuf[2] = { 0 }; ucTmpBuf[0] = <API key> & 0x00ff; ucTmpBuf[1] = (<API key>>>8) & 0x00ff; /*Enter Rom Mode */ iRet = bq27510_write(client, <API key>, &ucTmpBuf[0], 2); if(0 > iRet) { printk(KERN_ERR "[%s,%d] bq27510_write failed\n",__FUNCTION__,__LINE__); } mdelay(10); /*change i2c addr*/ <API key>->addr = <API key>; /*program bqfs*/ iRet = <API key>(client, pgm_data, len); if(0 != iRet) { printk(KERN_ERR "[%s,%d] <API key> failed\n",__FUNCTION__,__LINE__); } /*change i2c addr*/ <API key>->addr = <API key>; return iRet; } static int <API key>(struct i2c_client *client, const char *pFilePath) { char *buf; struct file *filp; struct inode *inode = NULL; mm_segment_t oldfs; unsigned int length; int ret = 0; /* open file */ oldfs = get_fs(); set_fs(KERNEL_DS); filp = filp_open(pFilePath, O_RDONLY, S_IRUSR); if (IS_ERR(filp)) { printk(KERN_ERR "[%s,%d] filp_open failed\n",__FUNCTION__,__LINE__); set_fs(oldfs); return -1; } if (!filp->f_op) { printk(KERN_ERR "[%s,%d] File Operation Method Error\n",__FUNCTION__,__LINE__); filp_close(filp, NULL); set_fs(oldfs); return -1; } inode = filp->f_path.dentry->d_inode; if (!inode) { printk(KERN_ERR "[%s,%d] Get inode from filp failed\n",__FUNCTION__,__LINE__); filp_close(filp, NULL); set_fs(oldfs); return -1; } /* file's size */ length = i_size_read(inode->i_mapping->host); printk("bq27510 firmware image size is %d \n",length); if (!( length > 0 && length < <API key>)) { printk(KERN_ERR "[%s,%d] Get file size error\n",__FUNCTION__,__LINE__); filp_close(filp, NULL); set_fs(oldfs); return -1; } /* allocation buff size */ buf = vmalloc(length+(length%2)); /* buf size if even */ if (!buf) { printk(KERN_ERR "[%s,%d] Alloctation memory failed\n",__FUNCTION__,__LINE__); filp_close(filp, NULL); set_fs(oldfs); return -1; } /* read data */ if (filp->f_op->read(filp, buf, length, &filp->f_pos) != length) { printk(KERN_ERR "[%s,%d] File read error\n",__FUNCTION__,__LINE__); filp_close(filp, NULL); filp_close(filp, NULL); set_fs(oldfs); vfree(buf); return -1; } ret = <API key>(client, (const char*)buf, length); if(0 == ret) ret = 1; filp_close(filp, NULL); set_fs(oldfs); vfree(buf); return ret; } static u8 get_child_version(void) { u8 data[32]; data[0] = 0x39; if(bq27510_write(<API key>, 0x3e, data, 1) < 0) return -1; mdelay(2); data[0] = 0x00; if(bq27510_write(<API key>, 0x3f, data, 1) < 0) return -1; mdelay(2); data[0] = 0x00; if(bq27510_write(<API key>, 0x61, data, 1) < 0) return -1; mdelay(2); bq27510_read(<API key>, 0x60, data, 1); mdelay(2); bq27510_read(<API key>, 0x40, data, 32); return data[0]; } static ssize_t bq27510_attr_store(struct device_driver *driver,const char *buf, size_t count) { int iRet = 0; unsigned char path_image[255]; if(NULL == buf || count >255 || count == 0 || strnchr(buf, count, 0x20)) return -1; memcpy (path_image, buf, count); /* replace '\n' with '\0' */ if((path_image[count-1]) == '\n') path_image[count-1] = '\0'; else path_image[count] = '\0'; /*enter firmware bqfs download*/ <API key> = 1; iRet = <API key>(<API key>, path_image); msleep(3000); pr_err("Update firemware finish, then update battery status..."); <API key> = 0; return iRet; } static ssize_t bq27510_attr_show(struct device_driver *driver, char *buf) { u8 ver; if(NULL == buf) { return -1; } ver = get_child_version(); if(ver < 0) { return sprintf(buf, "%s", "Coulometer Damaged or Firmware Error"); } else { return sprintf(buf, "%x", ver); } } static DRIVER_ATTR(state, 0664, bq27510_attr_show, bq27510_attr_store); int <API key>(void) { if (gpio_get_value(bq27510_di->dc_check_pin) && gpio_get_value(bq27510_di->usb_check_pin)) return 0; /*discharging*/ else return 1; /*charging*/ } /* * Return the battery temperature in tenths of degree Celsius * Or < 0 if something fails. */ static int <API key>(struct bq27510_device_info *di) { int ret; int temp = 0; u8 buf[2]; #if defined (<API key>) return 258; #endif if(<API key> == 1) return 125/*258*/; ret = bq27510_read(di->client,BQ27x00_REG_TEMP,buf,2); if (ret<0) { dev_err(di->dev, "error reading temperature\n"); return ret; } temp = get_unaligned_le16(buf); bq27510_reg_value[REG_TEMP] = temp; temp = temp - 2731; DBG("Enter:%s %d--temp = %d\n",__FUNCTION__,__LINE__,temp); return temp; } /* * Return the battery Voltage in milivolts * Or < 0 if something fails. */ static int <API key>(struct bq27510_device_info *di) { int ret; u8 buf[2]; int volt = 0; #if defined (<API key>) return 4000000; #endif if(<API key> == 1) return 4000000; ret = bq27510_read(di->client,BQ27x00_REG_VOLT,buf,2); if (ret<0) { dev_err(di->dev, "error reading voltage\n"); return ret; } volt = get_unaligned_le16(buf); bq27510_reg_value[REG_VOLT] = volt; //bp27510 can only measure one li-lion bat if(di->bat_num == 2){ volt = volt * 1000 * 2; }else{ volt = volt * 1000; } DBG("Enter:%s %d--volt = %d\n",__FUNCTION__,__LINE__,volt); return volt; } /* * Return the battery average current * Note that current can be negative signed as well * Or 0 if something fails. */ static int <API key>(struct bq27510_device_info *di) { int ret; int curr = 0; u8 buf[2]; #if defined (<API key>) return 22000; #endif if(<API key> == 1) return 11000/*22000*/; ret = bq27510_read(di->client,BQ27x00_REG_AI,buf,2); if (ret<0) { dev_err(di->dev, "error reading current\n"); return 0; } curr = get_unaligned_le16(buf); bq27510_reg_value[REG_AI] = curr; DBG("curr = %x \n",curr); if(curr>0x8000){ curr = 0xFFFF^(curr-1); } curr = curr * 1000; DBG("Enter:%s %d--curr = %d\n",__FUNCTION__,__LINE__,curr); return curr; } /* * Return the battery Relative State-of-Charge * Or < 0 if something fails. */ static int <API key>(struct bq27510_device_info *di) { int ret; int rsoc = 0; u8 buf[2]; #if defined (<API key>) return 100; #endif if(<API key> == 1) return 50/*100*/; ret = bq27510_read(di->client,BQ27500_REG_SOC,buf,2); if (ret<0) { dev_err(di->dev, "error reading relative State-of-Charge\n"); return ret; } rsoc = get_unaligned_le16(buf); bq27510_reg_value[REG_SOC] = rsoc; DBG("Enter:%s %d--rsoc = %d\n",__FUNCTION__,__LINE__,rsoc); return rsoc; } static int <API key>(struct bq27510_device_info *di) { u8 buf[2]; int flags = 0; int status; int ret; #if defined (<API key>) return <API key>; #endif if(<API key> == 1) { return <API key>; } ret = bq27510_read(di->client,BQ27x00_REG_FLAGS, buf, 2); if (ret < 0) { dev_err(di->dev, "error reading flags\n"); return <API key>; } flags = get_unaligned_le16(buf); bq27510_reg_value[REG_FLAGS] = flags; DBG("Enter:%s %d--status = %x\n",__FUNCTION__,__LINE__,flags); if (flags & BQ27500_FLAG_FC) status = <API key>; else if (flags & BQ27500_FLAG_DSC) status = <API key>; else status = <API key>; if (((status==<API key>)||(status==<API key>)) && (!<API key>())) status = <API key>; else if ((status==<API key>) && (<API key>())) status = <API key>; return status; } static int <API key>(struct bq27510_device_info *di) { u8 buf[2]; int flags = 0; int status; int ret; #if defined (<API key>) return <API key>; #endif if(<API key> == 1) { return <API key>; } ret = bq27510_read(di->client,BQ27x00_REG_FLAGS, buf, 2); if (ret < 0) { dev_err(di->dev, "error reading flags\n"); return ret; } flags = get_unaligned_le16(buf); DBG("Enter:%s %d--status = %x\n",__FUNCTION__,__LINE__,flags); if ((flags & BQ27500_FLAG_OTD)||(flags & BQ27500_FLAG_OTC)) status = <API key>; else status = <API key>; return status; } /* * Read a time register. * Return < 0 if something fails. */ static int <API key>(struct bq27510_device_info *di, int reg, union <API key> *val) { u8 buf[2]; int tval = 0; int ret; if(<API key> == 1) { val->intval = 60; return 0; } ret = bq27510_read(di->client,reg,buf,2); if (ret<0) { dev_err(di->dev, "error reading register %02x\n", reg); return ret; } tval = get_unaligned_le16(buf); DBG("Enter:%s %d--tval=%d\n",__FUNCTION__,__LINE__,tval); if (tval == 65535) return -ENODATA; val->intval = tval * 60; DBG("Enter:%s %d val->intval = %d\n",__FUNCTION__,__LINE__,val->intval); return 0; } int <API key>(void) { u8 buf[2]; int flags = 0; int ret; if(<API key> == 1) { return 1; } ret = bq27510_read(bq27510_di->client,BQ27x00_REG_FLAGS, buf, 2); if (ret < 0) { dev_err(bq27510_di->dev, "error reading flags\n"); return ret; } flags = get_unaligned_le16(buf); DBG("Enter:%s %d--status = %x\n",__FUNCTION__,__LINE__,flags); if (flags & BQ27500_FLAG_BATDET) { //printk("bq27510 think battery present\n"); return 1; } else { //printk("bq27510 think no battery present\n"); return 0; } } #define <API key>(x) container_of((x), \ struct bq27510_device_info, bat); static int <API key>(struct power_supply *psy, enum <API key> psp, union <API key> *val) { int ret = 0; struct bq27510_device_info *di = <API key>(psy); DBG("Enter:%s %d psp= %d\n",__FUNCTION__,__LINE__,psp); switch (psp) { case <API key>: val->intval = di->bat_status; break; case <API key>: val->intval = di->bat_voltage; break; case <API key>: val->intval = di->bat_present; break; case <API key>: val->intval = di->bat_current; break; case <API key>: //if (di->bat_voltage <= BATTERY_LOW_VOLTAGE) { // printk(KERN_INFO "battery now voltage is %d, power off voltage is %d\n", di->bat_voltage, BATTERY_LOW_VOLTAGE); // val->intval = 0; //else { val->intval = di->bat_capacity; break; case <API key>: val->intval = di->bat_tempreture; break; case <API key>: val->intval = <API key>; break; case <API key>: val->intval = di->bat_health; break; default: return -EINVAL; } return ret; } static enum <API key> <API key>[] = { <API key>, <API key>, <API key>, <API key>, <API key>, <API key>, <API key>, <API key>, }; static int bq_ac_get_property(struct power_supply *psy, enum <API key> psp, union <API key> *val) { int ret = 0; DBG("%s:%d psp = %d\n",__FUNCTION__,__LINE__,psp); switch (psp) { case <API key>: if (psy->type == <API key>) { if ((get_bq24155_status() == <API key> )&& (<API key>()==1)) val->intval = 1; /*charging*/ else val->intval = 0; /*discharging*/ } DBG("%s:%d val->intval = %d\n",__FUNCTION__,__LINE__,val->intval); break; default: ret = -EINVAL; break; } return ret; } static enum <API key> bq_ac_props[] = { <API key>, }; static int bq_usb_get_property(struct power_supply *psy, enum <API key> psp, union <API key> *val) { int ret = 0; DBG("%s:%d psp = %d\n",__FUNCTION__,__LINE__,psp); switch (psp) { case <API key>: if (psy->type == <API key>) { if ((get_bq24155_status() == <API key> ) && (<API key>()==1)) val->intval = 1; /*charging*/ else val->intval = 0; /*discharging*/ } DBG("%s:%d val->intval = %d\n",__FUNCTION__,__LINE__,val->intval); break; default: ret = -EINVAL; break; } return ret; } static enum <API key> bq_usb_props[] = { <API key>, }; static void <API key>(struct bq27510_device_info *di) { di->bat.type = <API key>; di->bat.properties = <API key>; di->bat.num_properties = ARRAY_SIZE(<API key>); di->bat.get_property = <API key>; di->ac.name = "ac"; di->ac.type = <API key>; di->ac.properties = bq_ac_props; di->ac.num_properties = ARRAY_SIZE(bq_ac_props); di->ac.get_property = bq_ac_get_property; di->usb.name = "usb"; di->usb.type = <API key>; di->usb.properties = bq_usb_props; di->usb.num_properties = ARRAY_SIZE(bq_usb_props); di->usb.get_property = bq_usb_get_property; } static void <API key>(struct bq27510_device_info *di) { <API key>(&di->bat); <API key>(&di->ac); <API key>(&di->usb); } static void <API key>(struct bq27510_device_info *di) { di->bat_status = <API key>(di); di->bat_voltage = <API key>(di); di->bat_present = <API key>(); di->bat_current = <API key>(di); di->bat_capacity = <API key>(di); di->bat_tempreture = <API key>(di); di->bat_health = <API key>(di); } static void <API key>(struct bq27510_device_info *di) { static char *status_text[] = { "Unknown", "Charging", "Discharging", "Not charging", "Full" }; printk("bq27510 regs:\n"); printk("FLAG SOC AI VOLT TEMP\n"); printk("%d %d %d %d %d\n", bq27510_reg_value[REG_FLAGS], bq27510_reg_value[REG_SOC], bq27510_reg_value[REG_AI], bq27510_reg_value[REG_VOLT], bq27510_reg_value[REG_TEMP]); printk("\n"); printk("POWER_SUPPLY_NAME=bq27510-battery\n"); printk("POWER_SUPPLY_STATUS=%s\n", status_text[di->bat_status]); printk("<API key>=%d\n", di->bat_present); printk("<API key>=%d\n", di->bat_voltage); printk("<API key>=%d\n", di->bat_current); printk("<API key>=%d\n", di->bat_capacity); printk("POWER_SUPPLY_TEMP=%d\n", di->bat_tempreture); printk("\n"); } #ifdef <API key> uint8_t otg_is_host_mode(void); extern int <API key>(void); extern int bq24161_device_init(int te_enable, int chg_enable, int otg_lock); extern void bq24161_print_reg(void); extern int mhl_vbus_power_on(void); static void <API key>(struct bq27510_device_info *di) { if (<API key>() && (di->bat_present == 1)) { //tempreture out of safe range, do not charge if ((di->bat_tempreture < <API key>) || (di->bat_tempreture > <API key>)) { printk(KERN_INFO "battery tempreture is out of safe range\n"); di->bat_full = 0; bq24161_device_init(1, 0, 0);//disable charging return ; } bq24161_device_init(1, 1, 0); if (di->bat_status==<API key>) { di->bat_full = 1; printk(KERN_INFO "**********charger ok*********\n"); } else if ((di->bat_full==1) && (di->bat_capacity<=<API key>)) { bq24161_device_init(1, 0, 0); msleep(1000); bq24161_device_init(1, 1, 0); di->bat_full = 0; printk(KERN_INFO "**********recharger*********\n"); } } else if (otg_is_host_mode() || mhl_vbus_power_on()) { bq24161_device_init(1, 0, 1); } else { di->bat_full = 0; <API key>(); } } #endif static void <API key>(struct work_struct *work) { struct bq27510_device_info *di = container_of(work, struct bq27510_device_info, work.work); <API key>(di); <API key>(di); // <API key>(di); #ifdef <API key> <API key>(di); // bq24161_print_reg(); #endif /* reschedule for the next time */ <API key>(&di->work, di->interval); } void <API key>(int sec) { if (bq27510_di && bq27510_di->isInit) { <API key>(&bq27510_di->work); <API key>(&bq27510_di->work, sec * HZ); } } static irqreturn_t bq27510_bat_wakeup(int irq, void *dev_id) { struct bq27510_device_info *di = (struct bq27510_device_info *)dev_id; printk("!!! bq27510 bat_low irq low vol !!!\n\n\n"); wake_lock_timeout(&di->bat_low_lock, 10 * HZ); <API key>(&di->wakeup_work, HZ / 10); return IRQ_HANDLED; } static void <API key>(struct work_struct *work) { <API key>(&bq27510_di->work); <API key>(&bq27510_di->work, 0); <API key>(); } static int <API key>(struct i2c_client *client, pm_message_t mesg) { <API key>(&bq27510_di->work); return 0; } static int <API key>(struct i2c_client *client) { <API key>(&bq27510_di->work, 0); return 0; } static int <API key>(void) { int ret = 0; unsigned char data = 0x0f; bq27510_di->client->addr = <API key>; ret = bq27510_write(bq27510_di->client, 0x00, &data, 1); bq27510_di->client->addr = <API key>; if (ret == 1) return 1; else return 0; } static void <API key>(struct bq27510_device_info *di) { int retval = 0; int timeout = 0; int iTestRomMod = 0; int charger_status; #ifndef <API key> #ifdef <API key> //bq24161_device_init(1, 1, 0); //<API key>(); charger_status = get_bq24155_status(); #endif while (1) { //battery present ? retval = <API key>(); if (retval == 1) { printk("bq27510 think battery present\n"); } else if (retval == 0) { printk("bq27510 think no battery present\n"); break; } else if (retval < 0 && iTestRomMod == 0) {// maybe in rom mode, you need updata firmware to exit rom mode iTestRomMod = 1; if (<API key>()) { printk(KERN_INFO "bq27510 is in rom mode, you need to update firmware to exit rom mode\n"); break; } } //voltage detect retval = <API key>(di); printk("battery now voltage = %d!!!!!!!!\n", retval); if (retval < 0) { if (!<API key>()) {//discharging printk("!!!!!!!!!!battery low!!!!!!!!!!power off!!!!!!!\n"); system_state = SYSTEM_POWER_OFF; pm_power_off(); } else {//try to precharging #if 0 #ifdef <API key> printk(KERN_INFO "!!!!!!!battery precharging!!!!!!!\n"); bq24161_device_init(0, 1, 0); bq24161_print_reg(); #endif #endif } } else if ((retval <= BATTERY_LOW_VOLTAGE) && (timeout == 0)) { if (!<API key>()) {//discharging printk("!!!!!!!!!!battery voltage lower to %d, !!!!!!!!!!power off!!!!!!!\n", BATTERY_LOW_VOLTAGE); system_state = SYSTEM_POWER_OFF; pm_power_off(); } else { break; } } else if (timeout > 0){ system_state = SYSTEM_POWER_OFF; pm_power_off(); } else { break; } timeout++; if (timeout > 4) { printk(KERN_INFO "!!!!!!precharging battery timeout!!!!!!\n"); #ifdef <API key> <API key>(); #endif break; } msleep(30*1000); } #endif return ; } static int <API key>(struct i2c_client *client, const struct i2c_device_id *id) { struct bq27510_device_info *di; int retval = 0; struct <API key> *pdata; pdata = client->dev.platform_data; di = kzalloc(sizeof(*di), GFP_KERNEL); if (!di) { dev_err(&client->dev, "failed to allocate device info data\n"); return -ENOMEM; } i2c_set_clientdata(client, di); di->dev = &client->dev; di->bat.name = "bq27510-battery"; di->client = client; /* 30 seconds between monotor runs interval */ di->interval = msecs_to_jiffies(30 * 1000); di->bat_num = pdata->bat_num; di->dc_check_pin = pdata->dc_check_pin; di->bat_low_pin = pdata->bat_low_pin; //di->chg_ok_pin = pdata->chgok_pin; di->usb_check_pin = pdata->usb_check_pin; //if (pdata->init_dc_check_pin) // pdata->init_dc_check_pin( ); if (pdata->io_init) pdata->io_init( ); bq27510_di = di; di->bat_full = 0; <API key>(di); <API key>(di); <API key>(di); retval = <API key>(&client->dev, &di->bat); if (retval) { dev_err(&client->dev, "failed to register battery\n"); goto batt_failed; } retval = <API key>(&client->dev, &di->ac); if (retval) { dev_err(&client->dev, "failed to register ac\n"); goto batt_failed_1; } retval = <API key>(&client->dev, &di->usb); if (retval) { dev_err(&client->dev, "failed to register usb\n"); goto batt_failed_0; } <API key> = client; retval = driver_create_file(&(<API key>.driver), &driver_attr_state); if (0 != retval) { printk("failed to create sysfs entry(state): %d\n", retval); goto batt_failed_2; } INIT_DELAYED_WORK(&di->work, <API key>); <API key>(&di->work, msecs_to_jiffies(5*1000)); // battery low irq di->wake_irq = gpio_to_irq(pdata->bat_low_pin); retval = request_irq(di->wake_irq, bq27510_bat_wakeup, <API key>, "bq27510_battery", di); if (retval) { printk("bq27510: failed to request bat det irq\n"); goto batt_failed_3; } wake_lock_init(&di->bat_low_lock, WAKE_LOCK_SUSPEND, "bat_low"); INIT_DELAYED_WORK(&di->wakeup_work, <API key>); enable_irq_wake(di->wake_irq); di->isInit = 1; dev_info(&client->dev, "support ver. %s enabled\n", DRIVER_VERSION); return 0; batt_failed_3: driver_remove_file(&(<API key>.driver), &driver_attr_state); batt_failed_2: <API key>(&di->ac); batt_failed_1: <API key>(&di->bat); batt_failed_0: <API key>(&di->usb); batt_failed: kfree(di); return retval; } static int <API key>(struct i2c_client *client) { struct bq27510_device_info *di = i2c_get_clientdata(client); wake_lock_destroy(&di->bat_low_lock); free_irq(di->wake_irq, di); driver_remove_file(&(<API key>.driver), &driver_attr_state); <API key>(&di->ac); <API key>(&di->bat); <API key>(&di->usb); kfree(di->bat.name); kfree(di); return 0; } static const struct i2c_device_id bq27510_id[] = { { "bq27510", 0 }, }; static struct i2c_driver <API key> = { .driver = { .name = "bq27510", }, .probe = <API key>, .remove = <API key>, .suspend = <API key>, .resume = <API key>, .id_table = bq27510_id, }; static int __init <API key>(void) { int ret; struct proc_dir_entry * battery_proc_entry; ret = i2c_add_driver(&<API key>); if (ret) printk(KERN_ERR "Unable to register BQ27510 driver\n"); battery_proc_entry = proc_create("driver/power",0777,NULL,&battery_proc_fops); return ret; } module_init(<API key>); //fs_initcall_sync(<API key>); static void __exit <API key>(void) { i2c_del_driver(&<API key>); } module_exit(<API key>); MODULE_AUTHOR("Rockchip"); MODULE_DESCRIPTION("BQ27510 battery monitor driver"); MODULE_LICENSE("GPL");
define( ['aloha', 'aloha/jquery', 'aloha/<API key>'], function(Aloha, jQuery, <API key>) { var GENTICS = window.GENTICS; /** * Register the generic content handler */ var <API key> = <API key>.createHandler({ /** * Handle the pasting. Remove all unwanted stuff. * @param content */ handleContent: function( content ) { if ( typeof content === 'string' ){ content = jQuery( '<div>' + content + '</div>' ); } else if ( content instanceof jQuery ) { content = jQuery( '<div>' ).append(content); } // If we find an aloha-block inside the pasted content, // we do not modify the pasted stuff, as it most probably // comes from Aloha and not from other sources, and does // not need to be cleaned up. if (content.find('.aloha-block').length > 0) { return; } // clean lists this.cleanLists(content); // transform tables this.transformTables(content); // remove comments this.removeComments(content); // unwrap font and span tags this.unwrapTags(content); // remove styles this.removeStyles(content); // remove namespaced elements this.<API key>(content); // transform formattings this.<API key>(content); // transform links //this.transformLinks(content); return content.html(); }, /** * Clean lists: The only allowed children of ol or ul elements are li's. Everything else will be removed * @param content */ cleanLists: function(content) { content.find('ul,ol').each(function() { var $list = jQuery(this); $list.contents(':not(li,ul,ol)').each(function() { jQuery(this).remove(); }); // for all li's, trim the text contents $list.children('li').each(function() { var $li = jQuery(this); $li.contents().each(function() { if (this.nodeType === 3) { this.data = jQuery.trim(this.data); } }); }); }); }, /** * Transform tables which were pasted * @param content */ transformTables: function(content) { // remove border, cellspacing, cellpadding from all tables // @todo what about width, height? content.find('table').each(function() { jQuery(this).removeAttr('border').removeAttr('cellspacing').removeAttr('cellpadding'); }); // remove unwanted attributes and cleanup single empty p-tags content.find('td').each(function() { // remove width, height and valign from all table cells jQuery(this).removeAttr('width').removeAttr('height').removeAttr('valign'); if ( this.innerHTML.replace(/[\s\xA0]+/g,'') === '<p><br></p>' ) { this.innerHTML = '&nbsp;'; } if ( jQuery(this).find('p').length == 1) { jQuery(this).find('p').contents().unwrap(); } }); // remove unwanted attributes from tr also? (tested with paste from open/libre office) // @todo or do this all via sanitize.js content.find('tr').each(function() { // remove width, height and valign from all table cells jQuery(this).removeAttr('width').removeAttr('height').removeAttr('valign'); }); // completely colgroup tags // @TODO should we remove colgroup? use sanitize for that? content.find('colgroup').remove(); }, /** * Transform formattings * @param content */ <API key>: function( content ) { // find all formattings we will transform content.find('strong,em,s,u').each(function() { if (this.nodeName.toLowerCase() == 'strong') { // transform strong to b Aloha.Markup.transformDomObject(jQuery(this), 'b'); } else if (this.nodeName.toLowerCase() == 'em') { // transform em to i Aloha.Markup.transformDomObject(jQuery(this), 'i'); } else if (this.nodeName.toLowerCase() == 's') { // transform s to del Aloha.Markup.transformDomObject(jQuery(this), 'del'); } else if (this.nodeName.toLowerCase() == 'u') { // transform u? jQuery(this).contents().unwrap(); } }); }, /** * Transform links * @param content */ transformLinks: function( content ) { // find all links and remove the links without href (will be destination anchors from word table of contents) // aloha is not supporting anchors at the moment -- maybe rewrite anchors in headings to "invisible" // in the test document there are anchors for whole paragraphs --> the whole P appear as link content.find('a').each(function() { if ( typeof jQuery(this).attr('href') === 'undefined' ) { jQuery(this).contents().unwrap(); } }); }, /** * Remove all comments * @param content */ removeComments: function( content ) { var that = this; // ok, remove all comments content.contents().each(function() { if (this.nodeType == 8) { jQuery(this).remove(); } else { // do recursion that.removeComments(jQuery(this)); } }); }, /** * Remove some unwanted tags from content pasted * @param content */ unwrapTags: function( content ) { var that = this; content.children('span,font,div').filter(function() { return this.contentEditable != 'false'; }).each(function() { if (this.nodeName == 'DIV') { // safari and chrome cleanup for plain text paste with working linebreaks if (this.innerHTML == '<br>') { jQuery(this).contents().unwrap(); } else { jQuery( Aloha.Markup.transformDomObject(jQuery(this), 'p').append('<br>') ).contents().unwrap(); } } else { jQuery(this).contents().unwrap(); } that.unwrapTags(jQuery(this)); }); }, /** * Remove styles * @param content */ removeStyles: function( content ) { var that = this; // completely remove style tags content.children('style').filter(function() { return this.contentEditable != 'false'; }).remove(); // remove style attributes and classes content.children().filter(function() { return this.contentEditable != 'false'; }).each(function() { jQuery(this).removeAttr('style').removeClass(); that.removeStyles(jQuery(this)); }); }, /** * Remove all elements which are in different namespaces * @param content */ <API key>: function( content ) { // get all elements content.find('*').each(function() { // try to determine the namespace prefix ('prefix' works for W3C // compliant browsers, 'scopeName' for IE) var nsPrefix = this.prefix ? this.prefix : (this.scopeName ? this.scopeName : undefined); // when the prefix is set (and different from 'HTML'), we remove the // element if ((nsPrefix && nsPrefix != 'HTML') || this.nodeName.indexOf(':') >= 0 ) { var $this = jQuery(this), $contents = $this.contents(); if ($contents.length) { // the element has contents, so unwrap the contents $contents.unwrap(); } else { // the element is empty, so remove it $this.remove(); } } }); } }); return <API key>; });
<?php /* core/themes/stable/templates/block/<API key>.html.twig */ class <API key> extends Twig_Template { public function __construct(Twig_Environment $env) { parent::__construct($env); $this->parent = false; $this->blocks = array( 'content' => array($this, 'block_content'), ); } protected function doDisplay(array $context, array $blocks = array()) { $tags = array("set" => 34, "if" => 37, "block" => 45); $filters = array("clean_id" => 34, "without" => 35); $functions = array(); try { $this->env->getExtension('sandbox')->checkSecurity( array('set', 'if', 'block'), array('clean_id', 'without'), array() ); } catch (<API key> $e) { $e->setTemplateFile($this->getTemplateName()); if ($e instanceof <API key> && isset($tags[$e->getTagName()])) { $e->setTemplateLine($tags[$e->getTagName()]); } elseif ($e instanceof <API key> && isset($filters[$e->getFilterName()])) { $e->setTemplateLine($filters[$e->getFilterName()]); } elseif ($e instanceof <API key> && isset($functions[$e->getFunctionName()])) { $e->setTemplateLine($functions[$e->getFunctionName()]); } throw $e; } // line 34 $context["heading_id"] = ($this->getAttribute((isset($context["attributes"]) ? $context["attributes"] : null), "id", array()) . \Drupal\Component\Utility\Html::getId("-menu")); // line 35 echo "<nav role=\"navigation\" aria-labelledby=\""; echo $this->env->getExtension('sandbox')-><API key>($this->env->getExtension('drupal_core')->escapeFilter($this->env, (isset($context["heading_id"]) ? $context["heading_id"] : null), "html", null, true)); echo "\""; echo $this->env->getExtension('sandbox')-><API key>($this->env->getExtension('drupal_core')->escapeFilter($this->env, twig_without((isset($context["attributes"]) ? $context["attributes"] : null), "role", "aria-labelledby"), "html", null, true)); echo "> "; // line 37 echo " "; if ( !$this->getAttribute((isset($context["configuration"]) ? $context["configuration"] : null), "label_display", array())) { // line 38 echo " "; $context["title_attributes"] = $this->getAttribute((isset($context["title_attributes"]) ? $context["title_attributes"] : null), "addClass", array(0 => "visually-hidden"), "method"); // line 39 echo " "; } // line 40 echo " "; echo $this->env->getExtension('sandbox')-><API key>($this->env->getExtension('drupal_core')->escapeFilter($this->env, (isset($context["title_prefix"]) ? $context["title_prefix"] : null), "html", null, true)); echo " <h2"; // line 41 echo $this->env->getExtension('sandbox')-><API key>($this->env->getExtension('drupal_core')->escapeFilter($this->env, $this->getAttribute((isset($context["title_attributes"]) ? $context["title_attributes"] : null), "setAttribute", array(0 => "id", 1 => (isset($context["heading_id"]) ? $context["heading_id"] : null)), "method"), "html", null, true)); echo ">"; echo $this->env->getExtension('sandbox')-><API key>($this->env->getExtension('drupal_core')->escapeFilter($this->env, $this->getAttribute((isset($context["configuration"]) ? $context["configuration"] : null), "label", array()), "html", null, true)); echo "</h2> "; // line 42 echo $this->env->getExtension('sandbox')-><API key>($this->env->getExtension('drupal_core')->escapeFilter($this->env, (isset($context["title_suffix"]) ? $context["title_suffix"] : null), "html", null, true)); echo " "; // line 45 echo " "; $this->displayBlock('content', $context, $blocks); // line 48 echo "</nav> "; } // line 45 public function block_content($context, array $blocks = array()) { // line 46 echo " "; echo $this->env->getExtension('sandbox')-><API key>($this->env->getExtension('drupal_core')->escapeFilter($this->env, (isset($context["content"]) ? $context["content"] : null), "html", null, true)); echo " "; } public function getTemplateName() { return "core/themes/stable/templates/block/<API key>.html.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 89 => 46, 86 => 45, 81 => 48, 78 => 45, 73 => 42, 67 => 41, 62 => 40, 59 => 39, 56 => 38, 53 => 37, 46 => 35, 44 => 34,); } public function getSource() { return "{ {% set heading_id = attributes.id ~ '-menu'|clean_id %} <nav role=\"navigation\" aria-labelledby=\"{{ heading_id }}\"{{ attributes|without('role', 'aria-labelledby') }}> {# Label. If not displayed, we still provide it for screen readers. #} {% if not configuration.label_display %} {% set title_attributes = title_attributes.addClass('visually-hidden') %} {% endif %} {{ title_prefix }} <h2{{ title_attributes.setAttribute('id', heading_id) }}>{{ configuration.label }}</h2> {{ title_suffix }} {# Menu. #} {% block content %} {{ content }} {% endblock %} </nav> "; } }
#ifndef web_module_h #define web_module_h #include <assert.h> #include <khtml_part.h> #include <kiconloader.h> #include <klocale.h> #include <konqsidebarplugin.h> #include <kmenu.h> #include <QtCore/QObject> // A wrapper for KHTMLPart to make it behave the way we want it to. class KHTMLSideBar : public KHTMLPart { Q_OBJECT public: KHTMLSideBar(); virtual ~KHTMLSideBar() {} Q_SIGNALS: void submitFormRequest(const char *, const QString &, const QByteArray &, const QString &, const QString &, const QString &); void openUrlRequest(const QString &url, const KParts::OpenUrlArguments &args = KParts::OpenUrlArguments(), const KParts::BrowserArguments &browserArgs = KParts::BrowserArguments()); void openUrlNewWindow(const QString &url, const KParts::OpenUrlArguments &args = KParts::OpenUrlArguments(), const KParts::BrowserArguments &browserArgs = KParts::BrowserArguments(), const KParts::WindowArgs &windowArgs = KParts::WindowArgs()); void reload(); void setAutoReload(); protected: virtual bool urlSelected(const QString &url, int button, int state, const QString &_target, const KParts::OpenUrlArguments &args = KParts::OpenUrlArguments(), const KParts::BrowserArguments &browserArgs = KParts::BrowserArguments()); protected Q_SLOTS: void loadPage() { emit openUrlRequest(completeURL(_lastUrl).url()); } void loadNewWindow() { emit openUrlNewWindow(completeURL(_lastUrl).url()); } void showMenu(const QString &url, const QPoint &pos) { if (url.isEmpty()) { _menu->popup(pos); } else { _lastUrl = url; _linkMenu->popup(pos); } } void formProxy(const char *action, const QString &url, const QByteArray &formData, const QString &target, const QString &contentType, const QString &boundary) { QString t = target.toLower(); QString u; if (QString(action).toLower() != "post") { // GET QUrl kurl = completeURL(url); kurl.setQuery(formData.data()); u = kurl.url(); } else { u = completeURL(url).url(); } // Some sites seem to use empty targets to send to the // main frame. if (t == "_content") { emit submitFormRequest(action, u, formData, target, contentType, boundary); } else if (t.isEmpty() || t == "_self") { setFormNotification(KHTMLPart::NoNotification); submitFormProxy(action, u, formData, target, contentType, boundary); setFormNotification(KHTMLPart::Only); } } private: KMenu *_menu, *_linkMenu; QString _lastUrl; }; class <API key> : public KonqSidebarModule { Q_OBJECT public: <API key>(QWidget *parent, const KConfigGroup &configGroup); virtual ~<API key>(); virtual QWidget *getWidget(); Q_SIGNALS: // TODO move to base class void submitFormRequest(const char *, const QString &, const QByteArray &, const QString &, const QString &, const QString &); protected: virtual void handleURL(const QUrl &url); private Q_SLOTS: void urlClicked(const QString &url, const KParts::OpenUrlArguments &args, const KParts::BrowserArguments &browserArgs); void formClicked(const QUrl &url, const KParts::OpenUrlArguments &args, const KParts::BrowserArguments &browserArgs); void urlNewWindow(const QString &url, const KParts::OpenUrlArguments &args, const KParts::BrowserArguments &browserArgs, const KParts::WindowArgs &windowArgs = KParts::WindowArgs()); void pageLoaded(); void loadFavicon(); void setTitle(const QString &); void setAutoReload(); void reload(); private: KHTMLSideBar *_htmlPart; QUrl _url; int reloadTimeout; }; #endif
<!DOCTYPE HTML PUBLIC "- <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_55) on Sun Feb 15 12:26:37 PST 2015 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>Uses of Class org.apache.solr.cloud.MockZkStateReader (Solr 5.0.0 API)</title> <meta name="date" content="2015-02-15"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><! if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.solr.cloud.MockZkStateReader (Solr 5.0.0 API)"; } </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <div class="topNav"><a name="navbar_top"> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../org/apache/solr/cloud/MockZkStateReader.html" title="class in org.apache.solr.cloud">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/solr/cloud/class-use/MockZkStateReader.html" target="_top">Frames</a></li> <li><a href="MockZkStateReader.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="<API key>"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><! allClassesLink = document.getElementById("<API key>"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } </script> </div> <a name="skip-navbar_top"> </a></div> <div class="header"> <h2 title="Uses of Class org.apache.solr.cloud.MockZkStateReader" class="title">Uses of Class<br>org.apache.solr.cloud.MockZkStateReader</h2> </div> <div class="classUseContainer">No usage of org.apache.solr.cloud.MockZkStateReader</div> <div class="bottomNav"><a name="navbar_bottom"> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="<API key>"> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../org/apache/solr/cloud/MockZkStateReader.html" title="class in org.apache.solr.cloud">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/solr/cloud/class-use/MockZkStateReader.html" target="_top">Frames</a></li> <li><a href="MockZkStateReader.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="<API key>"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><! allClassesLink = document.getElementById("<API key>"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } </script> </div> <a name="skip-navbar_bottom"> </a></div> <p class="legalCopy"><small> <i>Copyright &copy; 2000-2015 Apache Software Foundation. All Rights Reserved.</i> <script src='../../../../../prettify.js' type='text/javascript'></script> <script type='text/javascript'> (function(){ var oldonload = window.onload; if (typeof oldonload != 'function') { window.onload = prettyPrint; } else { window.onload = function() { oldonload(); prettyPrint(); } } })(); </script> </small></p> </body> </html>
import java.io.File; /** * Setup static variables to represent properties in test environment. */ public class TestParams { /** variables that hold value property values */ public static String testSrc = null; public static String testClasses = null; /** name of default security policy */ public static String defaultPolicy = null; /** name of default security policy for RMID */ public static String defaultRmidPolicy = null; /** name of default security policy for activation groups */ public static String defaultGroupPolicy = null; /** name of default security manager */ public static String <API key> = "java.rmi.RMISecurityManager"; /* Initalize commonly used strings */ static { try { testSrc = TestLibrary. getProperty("test.src", "."); testClasses = TestLibrary. getProperty("test.classes", "."); // if policy file already set use it defaultPolicy = TestLibrary. getProperty("java.security.policy", defaultPolicy); if (defaultPolicy == null) { defaultPolicy = testSrc + File.separatorChar + "security.policy"; } // if manager prop set use it <API key> = TestLibrary. getProperty("java.security.manager", <API key>); defaultRmidPolicy = testSrc + File.separatorChar + "rmid.security.policy"; defaultGroupPolicy = testSrc + File.separatorChar + "group.security.policy"; } catch (SecurityException se) { TestLibrary.bomb("Security exception received" + " during test initialization:", se); } } }
#define DRIVER_VERSION "v0.7.2" #define DRIVER_AUTHOR "Matthias Urlichs <smurf@smurf.noris.de>" #define DRIVER_DESC "USB Driver for GSM modems" #include <linux/kernel.h> #include <linux/jiffies.h> #include <linux/errno.h> #include <linux/tty.h> #include <linux/tty_flip.h> #include <linux/slab.h> #include <linux/module.h> #include <linux/bitops.h> #include <linux/usb.h> #include <linux/usb/serial.h> /* Function prototypes */ static int option_probe(struct usb_serial *serial, const struct usb_device_id *id); static int option_open(struct tty_struct *tty, struct usb_serial_port *port); static void option_close(struct usb_serial_port *port); static void option_dtr_rts(struct usb_serial_port *port, int on); static int option_startup(struct usb_serial *serial); static void option_disconnect(struct usb_serial *serial); static void option_release(struct usb_serial *serial); static int option_write_room(struct tty_struct *tty); static void <API key>(struct urb *urb); static int option_write(struct tty_struct *tty, struct usb_serial_port *port, const unsigned char *buf, int count); static int <API key>(struct tty_struct *tty); static void option_set_termios(struct tty_struct *tty, struct usb_serial_port *port, struct ktermios *old); static int option_tiocmget(struct tty_struct *tty, struct file *file); static int option_tiocmset(struct tty_struct *tty, struct file *file, unsigned int set, unsigned int clear); static int option_send_setup(struct usb_serial_port *port); #ifdef CONFIG_PM static int option_suspend(struct usb_serial *serial, pm_message_t message); static int option_resume(struct usb_serial *serial); #endif /* Vendor and product IDs */ #define OPTION_VENDOR_ID 0x0AF0 #define OPTION_PRODUCT_COLT 0x5000 #define <API key> 0x6000 #define <API key> 0x6100 #define <API key> 0x6200 #define <API key> 0x6300 #define <API key> 0x6050 #define <API key> 0x6150 #define <API key> 0x6250 #define <API key> 0x6350 #define <API key> 0x6500 #define <API key> 0x6501 #define <API key> 0x6600 #define <API key> 0x6601 #define <API key> 0x6701 #define <API key> 0x6721 #define <API key> 0x6741 #define <API key> 0x6761 #define <API key> 0x6800 #define <API key> 0x6901 #define <API key> 0x7001 #define <API key> 0x7021 #define <API key> 0x7041 #define <API key> 0x7061 #define <API key> 0x7100 #define <API key> 0x7201 #define HUAWEI_VENDOR_ID 0x12D1 #define HUAWEI_PRODUCT_E600 0x1001 #define HUAWEI_PRODUCT_E220 0x1003 #define <API key> 0x1004 #define <API key> 0x1401 #define <API key> 0x1402 #define <API key> 0x1403 #define <API key> 0x1404 #define <API key> 0x1405 #define <API key> 0x1406 #define <API key> 0x1407 #define <API key> 0x1408 #define <API key> 0x1409 #define <API key> 0x140A #define <API key> 0x140B #define <API key> 0x140C #define <API key> 0x140D #define <API key> 0x140E #define <API key> 0x140F #define <API key> 0x1410 #define <API key> 0x1411 #define <API key> 0x1412 #define <API key> 0x1413 #define <API key> 0x1414 #define <API key> 0x1415 #define <API key> 0x1416 #define <API key> 0x1417 #define <API key> 0x1418 #define <API key> 0x1419 #define <API key> 0x141A #define <API key> 0x141B #define <API key> 0x141C #define <API key> 0x141D #define <API key> 0x141E #define <API key> 0x141F #define <API key> 0x1420 #define <API key> 0x1421 #define <API key> 0x1422 #define <API key> 0x1423 #define <API key> 0x1424 #define <API key> 0x1425 #define <API key> 0x1426 #define <API key> 0x1427 #define <API key> 0x1428 #define <API key> 0x1429 #define <API key> 0x142A #define <API key> 0x142B #define <API key> 0x142C #define <API key> 0x142D #define <API key> 0x142E #define <API key> 0x142F #define <API key> 0x1430 #define <API key> 0x1431 #define <API key> 0x1432 #define <API key> 0x1433 #define <API key> 0x1434 #define <API key> 0x1435 #define <API key> 0x1436 #define <API key> 0x1437 #define <API key> 0x1438 #define <API key> 0x1439 #define <API key> 0x143A #define <API key> 0x143B #define <API key> 0x143C #define <API key> 0x143D #define <API key> 0x143E #define <API key> 0x143F #define <API key> 0x1464 #define <API key> 0x1465 #define <API key> 0x14AC #define <API key> 0x1803 #define QUANTA_VENDOR_ID 0x0408 #define QUANTA_PRODUCT_Q101 0xEA02 #define QUANTA_PRODUCT_Q111 0xEA03 #define QUANTA_PRODUCT_GLX 0xEA04 #define QUANTA_PRODUCT_GKE 0xEA05 #define QUANTA_PRODUCT_GLE 0xEA06 #define <API key> 0x1410 /* YISO PRODUCTS */ #define YISO_VENDOR_ID 0x0EAB #define YISO_PRODUCT_U893 0xC893 /* MERLIN EVDO PRODUCTS */ #define <API key> 0x1100 #define <API key> 0x1110 #define <API key> 0x1120 #define <API key> 0x1130 /* MERLIN HSDPA/HSPA PRODUCTS */ #define <API key> 0x1400 #define <API key> 0x1410 #define <API key> 0x1420 #define <API key> 0x1430 #define <API key> 0x1450 /* EXPEDITE PRODUCTS */ #define <API key> 0x2100 #define <API key> 0x2110 #define <API key> 0x2120 #define <API key> 0x2130 #define <API key> 0x2400 #define <API key> 0x2410 #define <API key> 0x2420 /* OVATION PRODUCTS */ #define <API key> 0x4100 #define <API key> 0x4400 #define <API key> 0x5010 #define <API key> 0x5100 #define <API key> 0x6000 #define <API key> 0x6002 /* FUTURE NOVATEL PRODUCTS */ #define <API key> 0X6001 #define <API key> 0X7000 #define <API key> 0X7001 #define <API key> 0X8000 #define <API key> 0X8001 #define <API key> 0X9000 #define <API key> 0X9001 #define <API key> 0XA001 /* AMOI PRODUCTS */ #define AMOI_VENDOR_ID 0x1614 #define AMOI_PRODUCT_H01 0x0800 #define AMOI_PRODUCT_H01A 0x7002 #define AMOI_PRODUCT_H02 0x0802 #define <API key> 0x0407 #define DELL_VENDOR_ID 0x413C /* Dell modems */ #define <API key> 0x8114 #define <API key> 0x8115 #define <API key> 0x8116 #define <API key> 0x8117 #define <API key> 0x8118 #define <API key> 0x8128 #define <API key> 0x8129 #define <API key> 0x8133 #define <API key> 0x8134 #define <API key> 0x8135 #define <API key> 0x8136 #define <API key> 0x8137 #define <API key> 0x8138 #define <API key> 0x8180 #define <API key> 0x8181 #define <API key> 0x8182 #define KYOCERA_VENDOR_ID 0x0c88 #define <API key> 0x17da #define <API key> 0x180a #define ANYDATA_VENDOR_ID 0x16d5 #define <API key> 0x6202 #define <API key> 0x6501 #define <API key> 0x6502 #define AXESSTEL_VENDOR_ID 0x1726 #define <API key> 0x1000 #define BANDRICH_VENDOR_ID 0x1A8D #define <API key> 0x1002 #define <API key> 0x1003 #define <API key> 0x1004 #define <API key> 0x1005 #define <API key> 0x1006 #define <API key> 0x1007 #define <API key> 0x1008 #define <API key> 0x1009 #define <API key> 0x100a #define <API key> 0x100b #define <API key> 0x100c #define <API key> 0x100d #define <API key> 0x100e #define <API key> 0x100f #define <API key> 0x1010 #define <API key> 0x1011 #define <API key> 0x1012 #define AMOI_VENDOR_ID 0x1614 #define AMOI_PRODUCT_9508 0x0800 #define QUALCOMM_VENDOR_ID 0x05C6 #define CMOTECH_VENDOR_ID 0x16d8 #define <API key> 0x6008 #define <API key> 0x6280 #define TELIT_VENDOR_ID 0x1bc7 #define <API key> 0x1003 #define <API key> 0x1004 /* ZTE PRODUCTS */ #define ZTE_VENDOR_ID 0x19d2 #define ZTE_PRODUCT_MF622 0x0001 #define ZTE_PRODUCT_MF628 0x0015 #define ZTE_PRODUCT_MF626 0x0031 #define <API key> 0xfffe #define ZTE_PRODUCT_AC8710 0xfff1 #define ZTE_PRODUCT_AC2726 0xfff5 #define ZTE_PRODUCT_AC8710T 0xffff /* ZTE PRODUCTS -- alternate vendor ID */ #define ZTE_VENDOR_ID2 0x1d6b #define ZTE_PRODUCT_MF_330 0x0002 #define BENQ_VENDOR_ID 0x04a5 #define BENQ_PRODUCT_H10 0x4068 #define DLINK_VENDOR_ID 0x1186 #define <API key> 0x3e04 #define <API key> 0xce16 #define <API key> 0xce1e #define QISDA_VENDOR_ID 0x1da5 #define <API key> 0x4512 #define <API key> 0x4523 #define <API key> 0x4515 #define <API key> 0x4518 #define <API key> 0x4519 /* TLAYTECH PRODUCTS */ #define TLAYTECH_VENDOR_ID 0x20B9 #define <API key> 0x1682 /* TOSHIBA PRODUCTS */ #define TOSHIBA_VENDOR_ID 0x0930 #define <API key> 0x1302 #define <API key> 0x0d45 #define ALINK_VENDOR_ID 0x1e0e #define ALINK_PRODUCT_3GU 0x9200 /* ALCATEL PRODUCTS */ #define ALCATEL_VENDOR_ID 0x1bbb #define <API key> 0x0000 #define PIRELLI_VENDOR_ID 0x1266 #define <API key> 0x1002 #define <API key> 0x1003 #define <API key> 0x1004 #define <API key> 0x1005 #define <API key> 0x1006 #define <API key> 0x1007 #define <API key> 0x1008 #define <API key> 0x1009 #define <API key> 0x100a #define <API key> 0x100b #define <API key> 0x100c #define <API key> 0x100d #define <API key> 0x100e #define <API key> 0x100f #define <API key> 0x1011 #define <API key> 0x1012 /* Airplus products */ #define AIRPLUS_VENDOR_ID 0x1011 #define <API key> 0x3198 /* Longcheer/Longsung vendor ID; makes whitelabel devices that * many other vendors like 4G Systems, Alcatel, ChinaBird, * Mobidata, etc sell under their own brand names. */ #define LONGCHEER_VENDOR_ID 0x1c9e /* 4G Systems products */ /* This is the 4G XS Stick W14 a.k.a. Mobilcom Debitel Surf-Stick * * It seems to contain a Qualcomm QSC6240/6290 chipset */ #define <API key> 0x9603 /* Haier products */ #define HAIER_VENDOR_ID 0x201e #define HAIER_PRODUCT_CE100 0x2009 /* Cinterion (formerly Siemens) products */ #define SIEMENS_VENDOR_ID 0x0681 #define CINTERION_VENDOR_ID 0x1e2d #define <API key> 0x0047 #define <API key> 0x0040 #define <API key> 0x004C #define <API key> 0x004A /* same for HC28J */ #define <API key> 0x0051 #define <API key> 0x0052 #define <API key> 0x0053 /* Olivetti products */ #define OLIVETTI_VENDOR_ID 0x0b3c #define <API key> 0xc000 /* Celot products */ #define CELOT_VENDOR_ID 0x211f #define <API key> 0x6801 /* ONDA Communication vendor id */ #define ONDA_VENDOR_ID 0x1ee8 /* ONDA MT825UP HSDPA 14.2 modem */ #define ONDA_MT825UP 0x000b /* Samsung products */ #define SAMSUNG_VENDOR_ID 0x04e8 #define <API key> 0x6889 /* some devices interfaces need special handling due to a number of reasons */ enum <API key> { <API key> = 0, <API key> = 1, <API key> = 2 }; struct <API key> { const u32 infolen; /* number of interface numbers on blacklist */ const u8 *ifaceinfo; /* pointer to the array holding the numbers */ enum <API key> reason; }; static const u8 <API key>[] = { 0, 1 }; static const struct <API key> <API key> = { .infolen = ARRAY_SIZE(<API key>), .ifaceinfo = <API key>, .reason = <API key> }; static const struct usb_device_id option_ids[] = { { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COLT) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(OPTION_VENDOR_ID, <API key>) }, { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_Q101) }, { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_Q111) }, { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_GLX) }, { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_GKE) }, { USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_GLE) }, { <API key>(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E600, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(HUAWEI_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_9508) }, { USB_DEVICE(<API key>, <API key>) }, /* Novatel Merlin V640/XV620 */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel Merlin V620/S620 */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel Merlin EX720/V740/X720 */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel Merlin V720/S720/PC720 */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel U730/U740 (VF version) */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel U740 */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel U870 */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel Merlin XU870 HSDPA/3G */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel X950D */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel EV620/ES620 CDMA/EV-DO */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel ES620/ES720/U720/USB720 */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel E725/E726 */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel Merlin ES620 SM Bus */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel EU730 and Vodafone EU740 */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel non-Vodafone EU740 */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel EU850D/EU860D/EU870D */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel MC930D/MC950D */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel MC727/U727/USB727 */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel MC727/U727/USB727 refresh */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel MC727/U727/USB727 */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel MC760/U760/USB760 */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel Ovation MC760 */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel HSPA product */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel EVDO Embedded product */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel HSPA Embedded product */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel EVDO product */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel HSPA product */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel EVDO Embedded product */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel HSPA Embedded product */ { USB_DEVICE(<API key>, <API key>) }, /* Novatel Global product */ { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H01) }, { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H01A) }, { USB_DEVICE(AMOI_VENDOR_ID, AMOI_PRODUCT_H02) }, { USB_DEVICE(AMOI_VENDOR_ID, <API key>) }, { USB_DEVICE(DELL_VENDOR_ID, <API key>) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite EV620 CDMA/EV-DO */ { USB_DEVICE(DELL_VENDOR_ID, <API key>) }, /* Dell Wireless 5500 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */ { USB_DEVICE(DELL_VENDOR_ID, <API key>) }, /* Dell Wireless 5505 Mobile Broadband HSDPA Mini-Card == Novatel Expedite EU740 HSDPA/3G */ { USB_DEVICE(DELL_VENDOR_ID, <API key>) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO ExpressCard == Novatel Merlin XV620 CDMA/EV-DO */ { USB_DEVICE(DELL_VENDOR_ID, <API key>) }, /* Dell Wireless 5510 Mobile Broadband HSDPA ExpressCard == Novatel Merlin XU870 HSDPA/3G */ { USB_DEVICE(DELL_VENDOR_ID, <API key>) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite E720 CDMA/EV-DO */ { USB_DEVICE(DELL_VENDOR_ID, <API key>) }, /* Dell Wireless 5700 Mobile Broadband CDMA/EVDO Mini-Card == Novatel Expedite ET620 CDMA/EV-DO */ { USB_DEVICE(DELL_VENDOR_ID, <API key>) }, /* Dell Wireless 5720 == Novatel EV620 CDMA/EV-DO */ { USB_DEVICE(DELL_VENDOR_ID, <API key>) }, /* Dell Wireless 5720 == Novatel EV620 CDMA/EV-DO */ { USB_DEVICE(DELL_VENDOR_ID, <API key>) }, /* Dell Wireless 5720 == Novatel EV620 CDMA/EV-DO */ { USB_DEVICE(DELL_VENDOR_ID, <API key>) }, /* Dell Wireless HSDPA 5520 == Novatel Expedite EU860D */ { USB_DEVICE(DELL_VENDOR_ID, <API key>) }, /* Dell Wireless HSDPA 5520 */ { USB_DEVICE(DELL_VENDOR_ID, <API key>) }, /* Dell Wireless 5520 Voda I Mobile Broadband (3G HSDPA) Minicard */ { USB_DEVICE(DELL_VENDOR_ID, <API key>) }, /* Dell Wireless 5730 Mobile Broadband EVDO/HSPA Mini-Card */ { USB_DEVICE(DELL_VENDOR_ID, <API key>) }, /* Dell Wireless 5730 Mobile Broadband EVDO/HSPA Mini-Card */ { USB_DEVICE(DELL_VENDOR_ID, <API key>) }, /* Dell Wireless 5730 Mobile Broadband EVDO/HSPA Mini-Card */ { USB_DEVICE(ANYDATA_VENDOR_ID, <API key>) }, /* ADU-E100, ADU-310 */ { USB_DEVICE(ANYDATA_VENDOR_ID, <API key>) }, { USB_DEVICE(ANYDATA_VENDOR_ID, <API key>) }, { USB_DEVICE(AXESSTEL_VENDOR_ID, <API key>) }, { USB_DEVICE(YISO_VENDOR_ID, YISO_PRODUCT_U893) }, { USB_DEVICE(BANDRICH_VENDOR_ID, <API key>) }, { USB_DEVICE(BANDRICH_VENDOR_ID, <API key>) }, { USB_DEVICE(BANDRICH_VENDOR_ID, <API key>) }, { USB_DEVICE(BANDRICH_VENDOR_ID, <API key>) }, { USB_DEVICE(BANDRICH_VENDOR_ID, <API key>) }, { USB_DEVICE(BANDRICH_VENDOR_ID, <API key>) }, { USB_DEVICE(BANDRICH_VENDOR_ID, <API key>) }, { USB_DEVICE(BANDRICH_VENDOR_ID, <API key>) }, { USB_DEVICE(BANDRICH_VENDOR_ID, <API key>) }, { USB_DEVICE(BANDRICH_VENDOR_ID, <API key>) }, { USB_DEVICE(BANDRICH_VENDOR_ID, <API key>) }, { USB_DEVICE(BANDRICH_VENDOR_ID, <API key>) }, { USB_DEVICE(BANDRICH_VENDOR_ID, <API key>) }, { USB_DEVICE(BANDRICH_VENDOR_ID, <API key>) }, { USB_DEVICE(BANDRICH_VENDOR_ID, <API key>) }, { USB_DEVICE(BANDRICH_VENDOR_ID, <API key>) }, { USB_DEVICE(BANDRICH_VENDOR_ID, <API key>) }, { USB_DEVICE(KYOCERA_VENDOR_ID, <API key>) }, { USB_DEVICE(KYOCERA_VENDOR_ID, <API key>) }, { USB_DEVICE(QUALCOMM_VENDOR_ID, 0x6000)}, /* ZTE AC8700 */ { USB_DEVICE(QUALCOMM_VENDOR_ID, 0x6613)}, /* Onda H600/ZTE MF330 */ { USB_DEVICE(CMOTECH_VENDOR_ID, <API key>) }, /* BP3-USB & BP3-EXT HSDPA */ { USB_DEVICE(CMOTECH_VENDOR_ID, <API key>) }, { USB_DEVICE(TELIT_VENDOR_ID, <API key>) }, { USB_DEVICE(TELIT_VENDOR_ID, <API key>) }, { <API key>(ZTE_VENDOR_ID, ZTE_PRODUCT_MF622, 0xff, 0xff, 0xff) }, /* ZTE WCDMA products */ { <API key>(ZTE_VENDOR_ID, 0x0002, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0003, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0004, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0005, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0006, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0007, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0008, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0009, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x000a, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x000b, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x000c, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x000d, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x000e, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x000f, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0010, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0011, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0012, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0013, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0014, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, ZTE_PRODUCT_MF628, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0016, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0017, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0018, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0019, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0020, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0021, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0022, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0023, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0024, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0025, 0xff, 0xff, 0xff) }, /* { <API key>(ZTE_VENDOR_ID, 0x0026, 0xff, 0xff, 0xff) }, */ { <API key>(ZTE_VENDOR_ID, 0x0028, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0029, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0030, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, ZTE_PRODUCT_MF626, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0032, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0033, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0034, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0037, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0038, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0039, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0040, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0042, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0043, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0044, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0048, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0049, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0050, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0051, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0052, 0xff, 0xff, 0xff) }, /* { <API key>(ZTE_VENDOR_ID, 0x0053, 0xff, 0xff, 0xff) }, */ { <API key>(ZTE_VENDOR_ID, 0x0054, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0055, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0056, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0057, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0058, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0059, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0061, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0062, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0063, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0064, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0065, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0066, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0067, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0069, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0070, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0076, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0077, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0078, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0079, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0082, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0083, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0086, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0087, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0104, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0105, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0106, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0108, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0113, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0117, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0118, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0121, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0122, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0123, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0124, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0125, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0126, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0128, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0142, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0143, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0144, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0145, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0146, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0147, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0148, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0149, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0150, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0151, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0152, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0153, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0154, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0155, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0156, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0157, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0158, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0159, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0160, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0161, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0162, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1008, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1010, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1012, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1057, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1058, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1059, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1060, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1061, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1062, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1063, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1064, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1065, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1066, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1067, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1068, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1069, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1070, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1071, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1072, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1073, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1074, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1075, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1076, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1077, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1078, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1079, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1080, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1081, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1082, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1083, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1084, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1085, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1086, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1087, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1088, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1089, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1090, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1091, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1092, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1093, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1094, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1095, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1096, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1097, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1098, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1099, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1100, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1101, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1102, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1103, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1104, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1105, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1106, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1107, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1108, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1109, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1110, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1111, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1112, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1113, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1114, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1115, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1116, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1117, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1118, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1119, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1120, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1121, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1122, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1123, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1124, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1125, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1126, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1127, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1128, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1129, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1130, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1131, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1132, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1133, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1134, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1135, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1136, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1137, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1138, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1139, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1140, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1141, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1142, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1143, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1144, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1145, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1146, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1147, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1148, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1149, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1150, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1151, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1152, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1153, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1154, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1155, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1156, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1157, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1158, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1159, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1160, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1161, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1162, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1163, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1164, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1165, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1166, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1167, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1168, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1169, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1170, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1244, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1245, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1246, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1247, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1248, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1249, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1250, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1251, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1252, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1253, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1254, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1255, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1256, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1257, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1258, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1259, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1260, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1261, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1262, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1263, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1264, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1265, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1266, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1267, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1268, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1269, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1270, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1271, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1272, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1273, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1274, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1275, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1276, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1277, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1278, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1279, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1280, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1281, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1282, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1283, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1284, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1285, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1286, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1287, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1288, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1289, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1290, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1291, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1292, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1293, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1294, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1295, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1296, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1297, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1298, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1299, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x1300, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0014, 0xff, 0xff, 0xff) }, /* ZTE CDMA products */ { <API key>(ZTE_VENDOR_ID, 0x0027, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0059, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0060, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0070, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0073, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0130, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x0141, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x2002, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, 0x2003, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, <API key>, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, ZTE_PRODUCT_AC8710, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, ZTE_PRODUCT_AC2726, 0xff, 0xff, 0xff) }, { <API key>(ZTE_VENDOR_ID, ZTE_PRODUCT_AC8710T, 0xff, 0xff, 0xff) }, { USB_DEVICE(ZTE_VENDOR_ID2, ZTE_PRODUCT_MF_330) }, { USB_DEVICE(BENQ_VENDOR_ID, BENQ_PRODUCT_H10) }, { USB_DEVICE(DLINK_VENDOR_ID, <API key>) }, { USB_DEVICE(ALINK_VENDOR_ID, <API key>) }, /* Yes, ALINK_VENDOR_ID */ { USB_DEVICE(ALINK_VENDOR_ID, <API key>) }, { USB_DEVICE(QISDA_VENDOR_ID, <API key>) }, { USB_DEVICE(QISDA_VENDOR_ID, <API key>) }, { USB_DEVICE(QISDA_VENDOR_ID, <API key>) }, { USB_DEVICE(QISDA_VENDOR_ID, <API key>) }, { USB_DEVICE(QISDA_VENDOR_ID, <API key>) }, { USB_DEVICE(TOSHIBA_VENDOR_ID, <API key>) }, { USB_DEVICE(TOSHIBA_VENDOR_ID, <API key> ) }, /* Toshiba 3G HSDPA == Novatel Expedite EU870D MiniCard */ { USB_DEVICE(ALINK_VENDOR_ID, 0x9000) }, { <API key>(ALINK_VENDOR_ID, ALINK_PRODUCT_3GU, 0xff, 0xff, 0xff) }, { USB_DEVICE(ALCATEL_VENDOR_ID, <API key>) }, { USB_DEVICE(AIRPLUS_VENDOR_ID, <API key>) }, { USB_DEVICE(TLAYTECH_VENDOR_ID, <API key>) }, { USB_DEVICE(LONGCHEER_VENDOR_ID, <API key>), .driver_info = (kernel_ulong_t)&<API key> }, { USB_DEVICE(HAIER_VENDOR_ID, HAIER_PRODUCT_CE100) }, /* Pirelli */ { USB_DEVICE(PIRELLI_VENDOR_ID, <API key>)}, { USB_DEVICE(PIRELLI_VENDOR_ID, <API key>)}, { USB_DEVICE(PIRELLI_VENDOR_ID, <API key>)}, { USB_DEVICE(PIRELLI_VENDOR_ID, <API key>)}, { USB_DEVICE(PIRELLI_VENDOR_ID, <API key>)}, { USB_DEVICE(PIRELLI_VENDOR_ID, <API key>)}, { USB_DEVICE(PIRELLI_VENDOR_ID, <API key>)}, { USB_DEVICE(PIRELLI_VENDOR_ID, <API key>)}, { USB_DEVICE(PIRELLI_VENDOR_ID, <API key>)}, { USB_DEVICE(PIRELLI_VENDOR_ID, <API key>) }, { USB_DEVICE(PIRELLI_VENDOR_ID, <API key>) }, { USB_DEVICE(PIRELLI_VENDOR_ID, <API key>) }, { USB_DEVICE(PIRELLI_VENDOR_ID, <API key>) }, { USB_DEVICE(PIRELLI_VENDOR_ID, <API key>) }, { USB_DEVICE(PIRELLI_VENDOR_ID, <API key>)}, { USB_DEVICE(PIRELLI_VENDOR_ID, <API key>)}, /* Cinterion */ { USB_DEVICE(CINTERION_VENDOR_ID, <API key>) }, { USB_DEVICE(CINTERION_VENDOR_ID, <API key>) }, { USB_DEVICE(CINTERION_VENDOR_ID, <API key>) }, { USB_DEVICE(CINTERION_VENDOR_ID, <API key>) }, { USB_DEVICE(CINTERION_VENDOR_ID, <API key>) }, { USB_DEVICE(SIEMENS_VENDOR_ID, <API key>) }, { USB_DEVICE(SIEMENS_VENDOR_ID, <API key>) }, { USB_DEVICE(SIEMENS_VENDOR_ID, <API key>) }, /* HC28 enumerates with Siemens or Cinterion VID depending on FW revision */ { USB_DEVICE(SIEMENS_VENDOR_ID, <API key>) }, { USB_DEVICE(OLIVETTI_VENDOR_ID, <API key>) }, { USB_DEVICE(CELOT_VENDOR_ID, <API key>) }, /* CT-650 CDMA 450 1xEVDO modem */ { USB_DEVICE(ONDA_VENDOR_ID, ONDA_MT825UP) }, /* ONDA MT825UP modem */ { <API key>(SAMSUNG_VENDOR_ID, <API key>, USB_CLASS_CDC_DATA, 0x00, 0x00) }, /* Samsung GT-B3730/GT-B3710 LTE USB modem.*/ { } /* Terminating entry */ }; MODULE_DEVICE_TABLE(usb, option_ids); static struct usb_driver option_driver = { .name = "option", .probe = usb_serial_probe, .disconnect = <API key>, #ifdef CONFIG_PM .suspend = usb_serial_suspend, .resume = usb_serial_resume, .<API key> = 1, #endif .id_table = option_ids, .no_dynamic_id = 1, }; /* The card has three separate interfaces, which the serial driver * recognizes separately, thus num_port=1. */ static struct usb_serial_driver option_1port_device = { .driver = { .owner = THIS_MODULE, .name = "option1", }, .description = "GSM modem (1-port)", .usb_driver = &option_driver, .id_table = option_ids, .num_ports = 1, .probe = option_probe, .open = option_open, .close = option_close, .dtr_rts = option_dtr_rts, .write = option_write, .write_room = option_write_room, .chars_in_buffer = <API key>, .set_termios = option_set_termios, .tiocmget = option_tiocmget, .tiocmset = option_tiocmset, .attach = option_startup, .disconnect = option_disconnect, .release = option_release, .read_int_callback = <API key>, #ifdef CONFIG_PM .suspend = option_suspend, .resume = option_resume, #endif }; static int debug; /* per port private data */ #define N_IN_URB 4 #define N_OUT_URB 4 #define IN_BUFLEN 4096 #define OUT_BUFLEN 4096 struct option_intf_private { spinlock_t susp_lock; unsigned int suspended:1; int in_flight; struct <API key> *blacklist_info; }; struct option_port_private { /* Input endpoints and buffer for this port */ struct urb *in_urbs[N_IN_URB]; u8 *in_buffer[N_IN_URB]; /* Output endpoints and buffer for this port */ struct urb *out_urbs[N_OUT_URB]; u8 *out_buffer[N_OUT_URB]; unsigned long out_busy; /* Bit vector of URBs in use */ int opened; struct usb_anchor delayed; /* Settings for the port */ int rts_state; /* Handshaking pins (outputs) */ int dtr_state; int cts_state; /* Handshaking pins (inputs) */ int dsr_state; int dcd_state; int ri_state; unsigned long tx_start_time[N_OUT_URB]; }; /* Functions used by new usb-serial code. */ static int __init option_init(void) { int retval; retval = usb_serial_register(&option_1port_device); if (retval) goto <API key>; retval = usb_register(&option_driver); if (retval) goto <API key>; printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":" DRIVER_DESC "\n"); return 0; <API key>: <API key>(&option_1port_device); <API key>: return retval; } static void __exit option_exit(void) { usb_deregister(&option_driver); <API key>(&option_1port_device); } module_init(option_init); module_exit(option_exit); static int option_probe(struct usb_serial *serial, const struct usb_device_id *id) { struct option_intf_private *data; /* D-Link DWM 652 still exposes CD-Rom emulation interface in modem mode */ if (serial->dev->descriptor.idVendor == DLINK_VENDOR_ID && serial->dev->descriptor.idProduct == <API key> && serial->interface->cur_altsetting->desc.bInterfaceClass == 0x8) return -ENODEV; /* Bandrich modem and AT command interface is 0xff */ if ((serial->dev->descriptor.idVendor == BANDRICH_VENDOR_ID || serial->dev->descriptor.idVendor == PIRELLI_VENDOR_ID) && serial->interface->cur_altsetting->desc.bInterfaceClass != 0xff) return -ENODEV; /* Don't bind network interfaces on Huawei K3765 & K4505 */ if (serial->dev->descriptor.idVendor == HUAWEI_VENDOR_ID && (serial->dev->descriptor.idProduct == <API key> || serial->dev->descriptor.idProduct == <API key>) && serial->interface->cur_altsetting->desc.bInterfaceNumber == 1) return -ENODEV; data = serial->private = kzalloc(sizeof(struct option_intf_private), GFP_KERNEL); if (!data) return -ENOMEM; spin_lock_init(&data->susp_lock); data->blacklist_info = (struct <API key>*) id->driver_info; return 0; } static enum <API key> is_blacklisted(const u8 ifnum, const struct <API key> *blacklist) { const u8 *info; int i; if (blacklist) { info = blacklist->ifaceinfo; for (i = 0; i < blacklist->infolen; i++) { if (info[i] == ifnum) return blacklist->reason; } } return <API key>; } static void option_set_termios(struct tty_struct *tty, struct usb_serial_port *port, struct ktermios *old_termios) { dbg("%s", __func__); /* Doesn't support option setting */ tty_termios_copy_hw(tty->termios, old_termios); option_send_setup(port); } static int option_tiocmget(struct tty_struct *tty, struct file *file) { struct usb_serial_port *port = tty->driver_data; unsigned int value; struct option_port_private *portdata; portdata = <API key>(port); value = ((portdata->rts_state) ? TIOCM_RTS : 0) | ((portdata->dtr_state) ? TIOCM_DTR : 0) | ((portdata->cts_state) ? TIOCM_CTS : 0) | ((portdata->dsr_state) ? TIOCM_DSR : 0) | ((portdata->dcd_state) ? TIOCM_CAR : 0) | ((portdata->ri_state) ? TIOCM_RNG : 0); return value; } static int option_tiocmset(struct tty_struct *tty, struct file *file, unsigned int set, unsigned int clear) { struct usb_serial_port *port = tty->driver_data; struct option_port_private *portdata; portdata = <API key>(port); /* FIXME: what locks portdata fields ? */ if (set & TIOCM_RTS) portdata->rts_state = 1; if (set & TIOCM_DTR) portdata->dtr_state = 1; if (clear & TIOCM_RTS) portdata->rts_state = 0; if (clear & TIOCM_DTR) portdata->dtr_state = 0; return option_send_setup(port); } /* Write */ static int option_write(struct tty_struct *tty, struct usb_serial_port *port, const unsigned char *buf, int count) { struct option_port_private *portdata; struct option_intf_private *intfdata; int i; int left, todo; struct urb *this_urb = NULL; /* spurious */ int err; unsigned long flags; portdata = <API key>(port); intfdata = port->serial->private; dbg("%s: write (%d chars)", __func__, count); i = 0; left = count; for (i = 0; left > 0 && i < N_OUT_URB; i++) { todo = left; if (todo > OUT_BUFLEN) todo = OUT_BUFLEN; this_urb = portdata->out_urbs[i]; if (test_and_set_bit(i, &portdata->out_busy)) { if (time_before(jiffies, portdata->tx_start_time[i] + 10 * HZ)) continue; usb_unlink_urb(this_urb); continue; } dbg("%s: endpoint %d buf %d", __func__, usb_pipeendpoint(this_urb->pipe), i); err = <API key>(port->serial->interface); if (err < 0) break; /* send the data */ memcpy(this_urb->transfer_buffer, buf, todo); this_urb-><API key> = todo; spin_lock_irqsave(&intfdata->susp_lock, flags); if (intfdata->suspended) { usb_anchor_urb(this_urb, &portdata->delayed); <API key>(&intfdata->susp_lock, flags); } else { intfdata->in_flight++; <API key>(&intfdata->susp_lock, flags); err = usb_submit_urb(this_urb, GFP_ATOMIC); if (err) { dbg("usb_submit_urb %p (write bulk) failed " "(%d)", this_urb, err); clear_bit(i, &portdata->out_busy); spin_lock_irqsave(&intfdata->susp_lock, flags); intfdata->in_flight <API key>(&intfdata->susp_lock, flags); continue; } } portdata->tx_start_time[i] = jiffies; buf += todo; left -= todo; } count -= left; dbg("%s: wrote (did %d)", __func__, count); return count; } static void <API key>(struct urb *urb) { int err; int endpoint; struct usb_serial_port *port; struct tty_struct *tty; unsigned char *data = urb->transfer_buffer; int status = urb->status; dbg("%s: %p", __func__, urb); endpoint = usb_pipeendpoint(urb->pipe); port = urb->context; if (status) { dbg("%s: nonzero status: %d on endpoint %02x.", __func__, status, endpoint); } else { tty = tty_port_tty_get(&port->port); if (urb->actual_length) { <API key>(tty, data, urb->actual_length); <API key>(tty); } else dbg("%s: empty read urb received", __func__); tty_kref_put(tty); /* Resubmit urb so we continue receiving */ if (status != -ESHUTDOWN) { err = usb_submit_urb(urb, GFP_ATOMIC); if (err && err != -EPERM) printk(KERN_ERR "%s: resubmit read urb failed. " "(%d)", __func__, err); else usb_mark_last_busy(port->serial->dev); } } return; } static void <API key>(struct urb *urb) { struct usb_serial_port *port; struct option_port_private *portdata; struct option_intf_private *intfdata; int i; dbg("%s", __func__); port = urb->context; intfdata = port->serial->private; <API key>(port); <API key>(port->serial->interface); portdata = <API key>(port); spin_lock(&intfdata->susp_lock); intfdata->in_flight spin_unlock(&intfdata->susp_lock); for (i = 0; i < N_OUT_URB; ++i) { if (portdata->out_urbs[i] == urb) { <API key>(); clear_bit(i, &portdata->out_busy); break; } } } static void <API key>(struct urb *urb) { int err; int status = urb->status; struct usb_serial_port *port = urb->context; struct option_port_private *portdata = <API key>(port); dbg("%s", __func__); dbg("%s: urb %p port %p has data %p", __func__, urb, port, portdata); if (status == 0) { struct usb_ctrlrequest *req_pkt = (struct usb_ctrlrequest *)urb->transfer_buffer; if (!req_pkt) { dbg("%s: NULL req_pkt", __func__); return; } if ((req_pkt->bRequestType == 0xA1) && (req_pkt->bRequest == 0x20)) { int old_dcd_state; unsigned char signals = *((unsigned char *) urb->transfer_buffer + sizeof(struct usb_ctrlrequest)); dbg("%s: signal x%x", __func__, signals); old_dcd_state = portdata->dcd_state; portdata->cts_state = 1; portdata->dcd_state = ((signals & 0x01) ? 1 : 0); portdata->dsr_state = ((signals & 0x02) ? 1 : 0); portdata->ri_state = ((signals & 0x08) ? 1 : 0); if (old_dcd_state && !portdata->dcd_state) { struct tty_struct *tty = tty_port_tty_get(&port->port); if (tty && !C_CLOCAL(tty)) tty_hangup(tty); tty_kref_put(tty); } } else { dbg("%s: type %x req %x", __func__, req_pkt->bRequestType, req_pkt->bRequest); } } else err("%s: error %d", __func__, status); /* Resubmit urb so we continue receiving IRQ data */ if (status != -ESHUTDOWN && status != -ENOENT) { err = usb_submit_urb(urb, GFP_ATOMIC); if (err) dbg("%s: resubmit intr urb failed. (%d)", __func__, err); } } static int option_write_room(struct tty_struct *tty) { struct usb_serial_port *port = tty->driver_data; struct option_port_private *portdata; int i; int data_len = 0; struct urb *this_urb; portdata = <API key>(port); for (i = 0; i < N_OUT_URB; i++) { this_urb = portdata->out_urbs[i]; if (this_urb && !test_bit(i, &portdata->out_busy)) data_len += OUT_BUFLEN; } dbg("%s: %d", __func__, data_len); return data_len; } static int <API key>(struct tty_struct *tty) { struct usb_serial_port *port = tty->driver_data; struct option_port_private *portdata; int i; int data_len = 0; struct urb *this_urb; portdata = <API key>(port); for (i = 0; i < N_OUT_URB; i++) { this_urb = portdata->out_urbs[i]; /* FIXME: This locking is insufficient as this_urb may go unused during the test */ if (this_urb && test_bit(i, &portdata->out_busy)) data_len += this_urb-><API key>; } dbg("%s: %d", __func__, data_len); return data_len; } static int option_open(struct tty_struct *tty, struct usb_serial_port *port) { struct option_port_private *portdata; struct option_intf_private *intfdata; struct usb_serial *serial = port->serial; int i, err; struct urb *urb; portdata = <API key>(port); intfdata = serial->private; dbg("%s", __func__); /* Start reading from the IN endpoint */ for (i = 0; i < N_IN_URB; i++) { urb = portdata->in_urbs[i]; if (!urb) continue; err = usb_submit_urb(urb, GFP_KERNEL); if (err) { dbg("%s: submit urb %d failed (%d) %d", __func__, i, err, urb-><API key>); } } option_send_setup(port); serial->interface->needs_remote_wakeup = 1; spin_lock_irq(&intfdata->susp_lock); portdata->opened = 1; spin_unlock_irq(&intfdata->susp_lock); <API key>(serial->interface); return 0; } static void option_dtr_rts(struct usb_serial_port *port, int on) { struct usb_serial *serial = port->serial; struct option_port_private *portdata; dbg("%s", __func__); portdata = <API key>(port); mutex_lock(&serial->disc_mutex); portdata->rts_state = on; portdata->dtr_state = on; if (serial->dev) option_send_setup(port); mutex_unlock(&serial->disc_mutex); } static void option_close(struct usb_serial_port *port) { int i; struct usb_serial *serial = port->serial; struct option_port_private *portdata; struct option_intf_private *intfdata = port->serial->private; dbg("%s", __func__); portdata = <API key>(port); if (serial->dev) { /* Stop reading/writing urbs */ spin_lock_irq(&intfdata->susp_lock); portdata->opened = 0; spin_unlock_irq(&intfdata->susp_lock); for (i = 0; i < N_IN_URB; i++) usb_kill_urb(portdata->in_urbs[i]); for (i = 0; i < N_OUT_URB; i++) usb_kill_urb(portdata->out_urbs[i]); <API key>(serial->interface); serial->interface->needs_remote_wakeup = 0; } } /* Helper functions used by option_setup_urbs */ static struct urb *option_setup_urb(struct usb_serial *serial, int endpoint, int dir, void *ctx, char *buf, int len, void (*callback)(struct urb *)) { struct urb *urb; if (endpoint == -1) return NULL; /* endpoint not needed */ urb = usb_alloc_urb(0, GFP_KERNEL); /* No ISO */ if (urb == NULL) { dbg("%s: alloc for endpoint %d failed.", __func__, endpoint); return NULL; } /* Fill URB using supplied data. */ usb_fill_bulk_urb(urb, serial->dev, usb_sndbulkpipe(serial->dev, endpoint) | dir, buf, len, callback, ctx); return urb; } /* Setup urbs */ static void option_setup_urbs(struct usb_serial *serial) { int i, j; struct usb_serial_port *port; struct option_port_private *portdata; dbg("%s", __func__); for (i = 0; i < serial->num_ports; i++) { port = serial->port[i]; portdata = <API key>(port); /* Do indat endpoints first */ for (j = 0; j < N_IN_URB; ++j) { portdata->in_urbs[j] = option_setup_urb(serial, port-><API key>, USB_DIR_IN, port, portdata->in_buffer[j], IN_BUFLEN, <API key>); } /* outdat endpoints */ for (j = 0; j < N_OUT_URB; ++j) { portdata->out_urbs[j] = option_setup_urb(serial, port-><API key>, USB_DIR_OUT, port, portdata->out_buffer[j], OUT_BUFLEN, <API key>); } } } /** send RTS/DTR state to the port. * * This is exactly the same as <API key> from the PSTN * CDC. */ static int option_send_setup(struct usb_serial_port *port) { struct usb_serial *serial = port->serial; struct option_intf_private *intfdata = (struct option_intf_private *) serial->private; struct option_port_private *portdata; int ifNum = serial->interface->cur_altsetting->desc.bInterfaceNumber; int val = 0; dbg("%s", __func__); if (is_blacklisted(ifNum, intfdata->blacklist_info) == <API key>) { dbg("No send_setup on blacklisted interface #%d\n", ifNum); return -EIO; } portdata = <API key>(port); if (portdata->dtr_state) val |= 0x01; if (portdata->rts_state) val |= 0x02; return usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0), 0x22, 0x21, val, ifNum, NULL, 0, <API key>); } static int option_startup(struct usb_serial *serial) { int i, j, err; struct usb_serial_port *port; struct option_port_private *portdata; u8 *buffer; dbg("%s", __func__); /* Now setup per port private data */ for (i = 0; i < serial->num_ports; i++) { port = serial->port[i]; portdata = kzalloc(sizeof(*portdata), GFP_KERNEL); if (!portdata) { dbg("%s: kmalloc for option_port_private (%d) failed!.", __func__, i); return 1; } init_usb_anchor(&portdata->delayed); for (j = 0; j < N_IN_URB; j++) { buffer = (u8 *)__get_free_page(GFP_KERNEL); if (!buffer) goto bail_out_error; portdata->in_buffer[j] = buffer; } for (j = 0; j < N_OUT_URB; j++) { buffer = kmalloc(OUT_BUFLEN, GFP_KERNEL); if (!buffer) goto bail_out_error2; portdata->out_buffer[j] = buffer; } <API key>(port, portdata); if (!port->interrupt_in_urb) continue; err = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL); if (err) dbg("%s: submit irq_in urb failed %d", __func__, err); } option_setup_urbs(serial); return 0; bail_out_error2: for (j = 0; j < N_OUT_URB; j++) kfree(portdata->out_buffer[j]); bail_out_error: for (j = 0; j < N_IN_URB; j++) if (portdata->in_buffer[j]) free_page((unsigned long)portdata->in_buffer[j]); kfree(portdata); return 1; } static void <API key>(struct usb_serial *serial) { int i, j; struct usb_serial_port *port; struct option_port_private *portdata; /* Stop reading/writing urbs */ for (i = 0; i < serial->num_ports; ++i) { port = serial->port[i]; portdata = <API key>(port); for (j = 0; j < N_IN_URB; j++) usb_kill_urb(portdata->in_urbs[j]); for (j = 0; j < N_OUT_URB; j++) usb_kill_urb(portdata->out_urbs[j]); } } static void option_disconnect(struct usb_serial *serial) { dbg("%s", __func__); <API key>(serial); } static void option_release(struct usb_serial *serial) { int i, j; struct usb_serial_port *port; struct option_port_private *portdata; dbg("%s", __func__); /* Now free them */ for (i = 0; i < serial->num_ports; ++i) { port = serial->port[i]; portdata = <API key>(port); for (j = 0; j < N_IN_URB; j++) { if (portdata->in_urbs[j]) { usb_free_urb(portdata->in_urbs[j]); free_page((unsigned long) portdata->in_buffer[j]); portdata->in_urbs[j] = NULL; } } for (j = 0; j < N_OUT_URB; j++) { if (portdata->out_urbs[j]) { usb_free_urb(portdata->out_urbs[j]); kfree(portdata->out_buffer[j]); portdata->out_urbs[j] = NULL; } } } /* Now free per port private data */ for (i = 0; i < serial->num_ports; i++) { port = serial->port[i]; kfree(<API key>(port)); } } #ifdef CONFIG_PM static int option_suspend(struct usb_serial *serial, pm_message_t message) { struct option_intf_private *intfdata = serial->private; int b; dbg("%s entered", __func__); if (message.event & PM_EVENT_AUTO) { spin_lock_irq(&intfdata->susp_lock); b = intfdata->in_flight; spin_unlock_irq(&intfdata->susp_lock); if (b) return -EBUSY; } spin_lock_irq(&intfdata->susp_lock); intfdata->suspended = 1; spin_unlock_irq(&intfdata->susp_lock); <API key>(serial); return 0; } static void play_delayed(struct usb_serial_port *port) { struct option_intf_private *data; struct option_port_private *portdata; struct urb *urb; int err; portdata = <API key>(port); data = port->serial->private; while ((urb = usb_get_from_anchor(&portdata->delayed))) { err = usb_submit_urb(urb, GFP_ATOMIC); if (!err) data->in_flight++; } } static int option_resume(struct usb_serial *serial) { int i, j; struct usb_serial_port *port; struct option_intf_private *intfdata = serial->private; struct option_port_private *portdata; struct urb *urb; int err = 0; dbg("%s entered", __func__); /* get the interrupt URBs resubmitted unconditionally */ for (i = 0; i < serial->num_ports; i++) { port = serial->port[i]; if (!port->interrupt_in_urb) { dbg("%s: No interrupt URB for port %d", __func__, i); continue; } err = usb_submit_urb(port->interrupt_in_urb, GFP_NOIO); dbg("Submitted interrupt URB for port %d (result %d)", i, err); if (err < 0) { err("%s: Error %d for interrupt URB of port%d", __func__, err, i); goto err_out; } } for (i = 0; i < serial->num_ports; i++) { /* walk all ports */ port = serial->port[i]; portdata = <API key>(port); /* skip closed ports */ spin_lock_irq(&intfdata->susp_lock); if (!portdata->opened) { spin_unlock_irq(&intfdata->susp_lock); continue; } for (j = 0; j < N_IN_URB; j++) { urb = portdata->in_urbs[j]; err = usb_submit_urb(urb, GFP_ATOMIC); if (err < 0) { err("%s: Error %d for bulk URB %d", __func__, err, i); spin_unlock_irq(&intfdata->susp_lock); goto err_out; } } play_delayed(port); spin_unlock_irq(&intfdata->susp_lock); } spin_lock_irq(&intfdata->susp_lock); intfdata->suspended = 0; spin_unlock_irq(&intfdata->susp_lock); err_out: return err; } #endif MODULE_AUTHOR(DRIVER_AUTHOR); MODULE_DESCRIPTION(DRIVER_DESC); MODULE_VERSION(DRIVER_VERSION); MODULE_LICENSE("GPL"); module_param(debug, bool, S_IRUGO | S_IWUSR); MODULE_PARM_DESC(debug, "Debug messages");
#ifndef _AGP_BACKEND_PRIV_H #define _AGP_BACKEND_PRIV_H 1 #include <asm/agp.h> #define PFX "agpgart: " #ifdef AGP_DEBUG #define DBG(x,y...) printk (KERN_DEBUG PFX "%s: " x "\n", __func__ , #else #define DBG(x,y...) do { } while (0) #endif extern struct agp_bridge_data *agp_bridge; enum aper_size_type { U8_APER_SIZE, U16_APER_SIZE, U32_APER_SIZE, LVL2_APER_SIZE, FIXED_APER_SIZE }; struct gatt_mask { unsigned long mask; u32 type; }; #define <API key> 1 #define <API key> 2 struct aper_size_info_8 { int size; int num_entries; int page_order; u8 size_value; }; struct aper_size_info_16 { int size; int num_entries; int page_order; u16 size_value; }; struct aper_size_info_32 { int size; int num_entries; int page_order; u32 size_value; }; struct aper_size_info_lvl2 { int size; int num_entries; u32 size_value; }; struct <API key> { int size; int num_entries; int page_order; }; struct agp_bridge_driver { struct module *owner; const void *aperture_sizes; int num_aperture_sizes; enum aper_size_type size_type; bool cant_use_aperture; bool needs_scratch_page; const struct gatt_mask *masks; int (*fetch_size)(void); int (*configure)(void); void (*agp_enable)(struct agp_bridge_data *, u32); void (*cleanup)(void); void (*tlb_flush)(struct agp_memory *); unsigned long (*mask_memory)(struct agp_bridge_data *, dma_addr_t, int); void (*cache_flush)(void); int (*create_gatt_table)(struct agp_bridge_data *); int (*free_gatt_table)(struct agp_bridge_data *); int (*insert_memory)(struct agp_memory *, off_t, int); int (*remove_memory)(struct agp_memory *, off_t, int); struct agp_memory *(*alloc_by_type) (size_t, int); void (*free_by_type)(struct agp_memory *); struct page *(*agp_alloc_page)(struct agp_bridge_data *); int (*agp_alloc_pages)(struct agp_bridge_data *, struct agp_memory *, size_t); void (*agp_destroy_page)(struct page *, int flags); void (*agp_destroy_pages)(struct agp_memory *); int (*<API key>) (struct agp_bridge_data *, int); void (*chipset_flush)(struct agp_bridge_data *); int (*agp_map_page)(struct page *page, dma_addr_t *ret); void (*agp_unmap_page)(struct page *page, dma_addr_t dma); int (*agp_map_memory)(struct agp_memory *mem); void (*agp_unmap_memory)(struct agp_memory *mem); }; struct agp_bridge_data { const struct agp_version *version; const struct agp_bridge_driver *driver; const struct <API key> *vm_ops; void *previous_size; void *current_size; void *dev_private_data; struct pci_dev *dev; u32 __iomem *gatt_table; u32 *gatt_table_real; unsigned long scratch_page; struct page *scratch_page_page; dma_addr_t scratch_page_dma; unsigned long gart_bus_addr; unsigned long gatt_bus_addr; u32 mode; enum chipset_type type; unsigned long *key_list; atomic_t current_memory_agp; atomic_t agp_in_use; int max_memory_agp; int aperture_size_idx; int capndx; int flags; char major_version; char minor_version; struct list_head list; u32 apbase_config; struct list_head mapped_list; spinlock_t mapped_lock; }; #define KB(x) ((x) * 1024) #define MB(x) (KB (KB (x))) #define GB(x) (MB (KB (x))) #define A_SIZE_8(x) ((struct aper_size_info_8 *) x) #define A_SIZE_16(x) ((struct aper_size_info_16 *) x) #define A_SIZE_32(x) ((struct aper_size_info_32 *) x) #define A_SIZE_LVL2(x) ((struct aper_size_info_lvl2 *) x) #define A_SIZE_FIX(x) ((struct <API key> *) x) #define A_IDX8(bridge) (A_SIZE_8((bridge)->driver->aperture_sizes) + i) #define A_IDX16(bridge) (A_SIZE_16((bridge)->driver->aperture_sizes) + i) #define A_IDX32(bridge) (A_SIZE_32((bridge)->driver->aperture_sizes) + i) #define MAXKEY (4096 * 32) #define PGE_EMPTY(b, p) (!(p) || (p) == (unsigned long) (b)->scratch_page) #define INTEL_APSIZE 0xb4 #define INTEL_ATTBASE 0xb8 #define INTEL_AGPCTRL 0xb0 #define INTEL_NBXCFG 0x50 #define INTEL_ERRSTS 0x91 #define I830_GMCH_CTRL 0x52 #define I830_GMCH_ENABLED 0x4 #define I830_GMCH_MEM_MASK 0x1 #define I830_GMCH_MEM_64M 0x1 #define I830_GMCH_MEM_128M 0 #define I830_GMCH_GMS_MASK 0x70 #define <API key> 0x00 #define I830_GMCH_GMS_LOCAL 0x10 #define <API key> 0x20 #define <API key> 0x30 #define <API key> 0x40 #define <API key> 0x03010 #define I830_RDRAM_ND(x) (((x) & 0x20) >> 5) #define I830_RDRAM_DDT(x) (((x) & 0x18) >> 3) #define INTEL_I830_ERRSTS 0x92 #define I855_GMCH_GMS_MASK 0xF0 #define <API key> 0x0 #define <API key> (0x1 << 4) #define <API key> (0x2 << 4) #define <API key> (0x3 << 4) #define <API key> (0x4 << 4) #define <API key> (0x5 << 4) #define I85X_CAPID 0x44 #define I85X_VARIANT_MASK 0x7 #define I85X_VARIANT_SHIFT 5 #define I855_GME 0x0 #define I855_GM 0x4 #define I852_GME 0x2 #define I852_GM 0x5 #define INTEL_I845_AGPM 0x51 #define INTEL_I845_ERRSTS 0xc8 #define INTEL_I860_MCHCFG 0x50 #define INTEL_I860_ERRSTS 0xc8 #define I810_GMADDR 0x10 #define I810_MMADDR 0x14 #define I810_PTE_BASE 0x10000 #define <API key> 0x00000000 #define I810_PTE_LOCAL 0x00000002 #define I810_PTE_VALID 0x00000001 #define <API key> 0x00000006 #define I810_SMRAM_MISCC 0x70 #define <API key> 0x00010000 #define <API key> 0x00010000 #define I810_GMS 0x000000c0 #define I810_GMS_DISABLE 0x00000000 #define I810_PGETBL_CTL 0x2020 #define I810_PGETBL_ENABLED 0x00000001 #define <API key> 0x0000000e #define <API key> (0 << 1) #define <API key> (1 << 1) #define <API key> (2 << 1) #define <API key> (3 << 1) #define <API key> (4 << 1) #define <API key> (5 << 1) #define <API key> (3 << 8) #define G33_PGETBL_SIZE_1M (1 << 8) #define G33_PGETBL_SIZE_2M (2 << 8) #define I810_DRAM_CTL 0x3000 #define I810_DRAM_ROW_0 0x00000001 #define <API key> 0x00000001 struct agp_device_ids { unsigned short device_id; enum chipset_type chipset; const char *chipset_name; int (*chipset_setup) (struct pci_dev *pdev); }; struct agp_bridge_data *agp_alloc_bridge(void); void agp_put_bridge(struct agp_bridge_data *bridge); int agp_add_bridge(struct agp_bridge_data *bridge); void agp_remove_bridge(struct agp_bridge_data *bridge); int <API key>(void); void <API key>(void); void agp_generic_enable(struct agp_bridge_data *bridge, u32 mode); int <API key>(struct agp_bridge_data *bridge); int <API key>(struct agp_bridge_data *bridge); struct agp_memory *agp_create_memory(int scratch_pages); int <API key>(struct agp_memory *mem, off_t pg_start, int type); int <API key>(struct agp_memory *mem, off_t pg_start, int type); struct agp_memory *<API key>(size_t page_count, int type); void <API key>(struct agp_memory *curr); struct page *<API key>(struct agp_bridge_data *bridge); int <API key>(struct agp_bridge_data *agp_bridge, struct agp_memory *memory, size_t page_count); void <API key>(struct page *page, int flags); void <API key>(struct agp_memory *memory); void agp_free_key(int key); int agp_num_entries(void); u32 <API key>(struct agp_bridge_data *bridge, u32 mode, u32 command); void agp_device_command(u32 command, bool agp_v3); int agp_3_5_enable(struct agp_bridge_data *bridge); void global_cache_flush(void); void get_agp_version(struct agp_bridge_data *bridge); unsigned long <API key>(struct agp_bridge_data *bridge, dma_addr_t phys, int type); int <API key>(struct agp_bridge_data *bridge, int type); struct agp_bridge_data *<API key>(struct pci_dev *pdev); struct agp_memory *<API key>(size_t page_count, int type); void <API key>(size_t size, struct agp_memory *mem); void agp_free_page_array(struct agp_memory *mem); int <API key>(void); void <API key>(struct agp_memory *mem); int <API key>(void); void <API key>(void); #define <API key> 11 extern const struct aper_size_info_16 agp3_generic_sizes[]; extern int agp_off; extern int <API key>; long compat_agp_ioctl(struct file *file, unsigned int cmd, unsigned long arg); #define AGP_APBASE 0x10 #define AGPSTAT 0x4 #define AGPCMD 0x8 #define AGPNISTAT 0xc #define AGPCTRL 0x10 #define AGPAPSIZE 0x14 #define AGPNEPG 0x16 #define AGPGARTLO 0x18 #define AGPGARTHI 0x1c #define AGPNICMD 0x20 #define <API key> (20) #define <API key> (16) #define AGPSTAT_RQ_DEPTH (0xff000000) #define <API key> 24 #define AGPSTAT_CAL_MASK (1<<12|1<<11|1<<10) #define AGPSTAT_ARQSZ (1<<15|1<<14|1<<13) #define AGPSTAT_ARQSZ_SHIFT 13 #define AGPSTAT_SBA (1<<9) #define AGPSTAT_AGP_ENABLE (1<<8) #define AGPSTAT_FW (1<<4) #define AGPSTAT_MODE_3_0 (1<<3) #define AGPSTAT2_1X (1<<0) #define AGPSTAT2_2X (1<<1) #define AGPSTAT2_4X (1<<2) #define AGPSTAT3_RSVD (1<<2) #define AGPSTAT3_8X (1<<1) #define AGPSTAT3_4X (1) #define AGPCTRL_APERENB (1<<8) #define AGPCTRL_GTLBEN (1<<7) #define AGP2_RESERVED_MASK 0x00fffcc8 #define AGP3_RESERVED_MASK 0x00ff00c4 #define <API key> 1<<0 #define AGP_ERRATA_SBA 1<<1 #define AGP_ERRATA_1X 1<<2 #endif
# modify, copy, or redistribute it subject to the terms and conditions of # This program is distributed in the hope that it will be useful, but WITHOUT # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General # Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. Any Red Hat trademarks that are incorporated in the # source code or documentation are not subject to the GNU General Public # Red Hat, Inc. """ Module providing the LangLocaleHandler class that could be used as a mixin for screens handling languages or locales configuration. """ import gi gi.require_version("Gtk", "3.0") gi.require_version("Pango", "1.0") gi.require_version("GdkPixbuf", "2.0") from gi.repository import Gtk, Pango, GdkPixbuf from pyanaconda import localization from pyanaconda.core.util import strip_accents from pyanaconda.ui.gui.utils import <API key>, timed_action, <API key> class LangLocaleHandler(object): """ Class that could be used as a mixin for screens handling languages or locales configuration. """ def __init__(self, payload): # the class inheriting from this class is responsible for populating # these items with actual objects self._languageStore = None self.<API key> = None self._languageEntry = None self._langSelection = None self.<API key> = None self._langSelectedColumn = None self._langView = None self._localeView = None self._localeStore = None self._localeSelection = None self._right_arrow = None self._left_arrow = None self.payload = payload def initialize(self): # Load arrows from resources. Unfortunately, Gtk.Image.new_from_resource does not # work for some reason, so we should use GdkPixbuf.Pixbuf.new_from_resource instead. resource_path = "/org/fedoraproject/anaconda/widgets/" self._right_arrow = GdkPixbuf.Pixbuf.new_from_resource(resource_path + "right-arrow-icon.png") self._left_arrow = GdkPixbuf.Pixbuf.new_from_resource(resource_path + "left-arrow-icon.png") # Render an arrow for the chosen language. <API key>(self._langSelectedColumn, self.<API key>, "pixbuf", self.<API key>) # fill the list with available translations langs = localization.<API key>() langs = self._filter_languages(langs) for lang in langs: self._add_language(self._languageStore, localization.get_native_name(lang), localization.get_english_name(lang), lang) # make filtering work self.<API key>.set_visible_func(self._matches_entry, None) def _matches_entry(self, model, itr, *args): # Nothing in the text entry? Display everything. entry = self._languageEntry.get_text().strip() if not entry: return True # Need to strip out the pango markup before attempting to match. # Otherwise, starting to type "span" for "spanish" will match everything # due to the enclosing span tag. # (success, attrs, native, accel) native = Pango.parse_markup(model[itr][0], -1, "_")[2] english = model[itr][1] # Otherwise, filter the list showing only what is matched by the # text entry. Either the English or native names can match. lowered = entry.lower() translit = strip_accents(native).lower() if lowered in native.lower() or lowered in english.lower() or lowered in translit: return True else: return False def <API key>(self, column, renderer, model, itr, user_data=None): (lang_store, sel_itr) = self._langSelection.get_selected() if Gtk.<API key>() == Gtk.TextDirection.LTR: _arrow = self._right_arrow else: _arrow = self._left_arrow if sel_itr and lang_store[sel_itr][2] == model[itr][2]: return _arrow else: return None def _filter_languages(self, langs): """Override this method with a valid implementation""" return list(filter(self.payload.<API key>, langs)) def _add_language(self, store, native, english, lang): """Override this method with a valid implementation""" raise NotImplementedError() def _filter_locales(self, lang, locales): """Override this method with a valid implementation""" return list(filter(lambda l: self.payload.is_locale_supported(lang, l), locales)) def _add_locale(self, store, native, locale): """Override this method with a valid implementation""" raise NotImplementedError() def _select_locale(self, locale): """ Try to select the given locale in the language and locale treeviews. This method tries to find the best match for the given locale. :return: a pair of selected iterators (language and locale) :rtype: a pair of GtkTreeIter or None objects """ # get lang and select it language = localization.get_language_id(locale) if not language: # invalid locale, cannot select return (None, None) lang_itr = <API key>(self._langView, language, col=2) # find matches and use the one with the highest rank locales = localization.<API key>(locale) locale_itr = <API key>(self._localeView, locales[0], col=1) return (lang_itr, locale_itr) def <API key>(self, lang): """Refresh the localeStore with locales for the given language.""" self._localeStore.clear() locales = localization.<API key>(lang) locales = self._filter_locales(lang, locales) for locale in locales: self._add_locale(self._localeStore, localization.get_native_name(locale), locale) # select the first locale (with the highest rank) <API key>(self._localeView, locales[0], col=1) def <API key>(self, selection): (store, selected) = selection.get_selected_rows() if selected: lang = store[selected[0]][2] self.<API key>(lang) else: self._localeStore.clear() def <API key>(self, entry, icon_pos, event): if icon_pos == Gtk.EntryIconPosition.SECONDARY: entry.set_text("") @timed_action() def on_entry_changed(self, *args): self.<API key>.refilter()
jQuery(document).ready(function ($) { /* Float Labels */ $('input.floatlabel').floatlabel({ labelStartTop: '10px', labelEndTop: '0', transitionDuration: 0.1 }); /* Document Focus */ $(document).ready(function() { $('form:first *:input[type!=hidden]:first').focus(); }); /** * * @TODO update to return for any form * * @returns {boolean} */ function validate() { if (!checktextbox(document.Myform.employee,"Please enter your First and Last name!")) return false; if (!checkdate(document.Myform.date_submitted)) return false; if(!check_paytype()) return false; if(!checktextbox(document.Myform.requesting,"Please enter Time Off requested!")) return false; if (!checkdate(document.Myform.datefrom)) return false; if (!checkdate(document.Myform.dateto)) return false; if(!checktextbox(document.Myform.reason,"Please enter Comment!")) return false; if(!checktextbox(document.Myform.email,"Please enter Your E-mail address!")) return false; if(document.Myform.supervisor.value == "none"){ alert("Please select your Supervisor"); document.Myform.supervisor.focus(); return false; } } function checktextbox(textbox,message){ if (textbox.value == ""){ alert(message); textbox.focus(); return false; } else return true; } function checkdate(date){ var valid_date = 0; if (date.value.length !=8) valid_date = -1; if (date.value.charAt(2) != "/" || date.value.charAt(5) != "/") valid_date = -1; if (valid_date == -1){ alert("Please enter date in this format 09/15/00"); date.focus(); return false; } else return true; } function check_paytype(){ var paytype = -1 for (i=0; i<document.Myform.pay_type.length; i++){ if (document.Myform.pay_type[i].checked) paytype = i; } if (paytype == -1){ alert("You must select paid, unpaid or sick"); return false; } else return true; } function check_dayhour(){ var dayhour = -1 for (c=0; c<document.Myform.days_or_hours.length; c++){ if (document.Myform.days_or_hours[c].checked) dayhour = c; } if (dayhour == -1){ alert("You must enter number of hours!"); return false; } else return true; } });
#ifndef UPDATESERVICE_H #define UPDATESERVICE_H #include <dialogs/updatedialog.h> #include <qnetworkreply.h> class MainWindow; #ifdef Q_OS_LINUX #define PLATFORM "linux" #endif #ifdef Q_OS_MAC #define PLATFORM "macosx" #endif #ifdef Q_OS_WIN32 #define PLATFORM "windows" #endif #ifndef PLATFORM #define PLATFORM "other" #endif class UpdateService : public QObject { Q_OBJECT public: enum UpdateMode { AppStart = 1, Manual, Periodic }; Q_ENUMS(UpdateMode) explicit UpdateService(QObject *parent = 0); void checkForUpdates(MainWindow *mainWindow, UpdateMode updateMode = AppStart); private: MainWindow *mainWindow; UpdateMode updateMode; UpdateDialog *_updateDialog; QString <API key>; private slots: void onResult(QNetworkReply *reply); }; #endif // UPDATESERVICE_H
#include "include/ccontainerincludes.h" CContainerIncludes :: CContainerIncludes(void) { } CContainerIncludes :: ~CContainerIncludes(void) { } CContainerIncludes& CContainerIncludes :: operator +=(const char *pInclude) { if (this->IncludeExists(pInclude) == 0) m_Includes.push_back(pInclude); return(*this); } int CContainerIncludes :: IncludeExists(const char *pInclude) { int iMax; iMax = m_Includes.end() - m_Includes.begin(); for (int i = 0; i < iMax; i++) { if (m_Includes[i] == pInclude) return 1; } return 0; } void CContainerIncludes :: GenerateCode(void) { int iMax; iMax = m_Includes.end() - m_Includes.begin(); CurrentOutput << "\t/*\n\t * Automatically detected headers\n\t */\n"; for (int i = 0; i < iMax; i++) { str2lower(m_Includes[i]); CurrentOutput << "\t#include \"" << m_Includes[i].c_str() << "\"\n"; } }
// mem.h #ifndef LIB_MEM_H_ #define LIB_MEM_H_ #include <string.h> #include "./list.h" #include "./io.h" /* CONFIG OPTIONS */ #define <API key> (1024ul) #define MIN_ALLOC_BYTES (32ul) #define MAX_HISTORY_LENGTH (1000ul) #define BYTES_TO_WORDS(bytes) (bytes / WORD_SIZE_BYTES) #define WORDS_TO_BYTES(words) (words * WORD_SIZE_BYTES) #define MAX_POOL_SIZE_BYTES (1024ul * <API key>) #define WORD_SIZE_BYTES (sizeof(void *)) #define MAX_POOL_SIZE_WORDS BYTES_TO_WORDS(MAX_POOL_SIZE_BYTES) #define MIN_ALLOC_WORDS BYTES_TO_WORDS(MIN_ALLOC_BYTES) /* TYPES */ /* Policies */ typedef enum { FIRST_FIT, BEST_FIT, BUDDY_SYSTEM } policy_t; /* Requests */ typedef enum { ALLOC, FREE, NONE } req_t; /* Type aliases to keep track of units */ typedef size_t bytes_t; typedef size_t words_t; /* Results of a memory management request */ typedef struct req_status_s { int req_id; req_t req_type; bytes_t req_size; bool req_granted; void * req_addr; words_t total_free; words_t max_free; size_t blocks_free; size_t blocks_alloc; } req_status_t; /* Data for block list nodes */ #define NOBODY (0) typedef struct mem_block_s { int id; bool is_free; void * addr; words_t size; list_t * prev; list_t * curr; list_t * next; } mem_block_t; /* Return value of reading a request from file */ typedef struct request_s { int id; req_t type; bytes_t size; int ref; } request_t; /* GLOBALS */ extern list_t * memory_block_list; // elements have type mem_block_t* extern void * memory_pool[]; extern req_status_t req_history[]; // for printing output extern list_t * history_list; // have list functions for output ready extern policy_t policy; extern bytes_t pool_size; extern bytes_t nb; void print_usage(char * name); void print_mem_config(); request_t * load_request(FILE * file); mem_block_t * allocate_memory(request_t * request); mem_block_t * free_memory(request_t * request); words_t total_free(); words_t max_free(); size_t blocks_free(); size_t blocks_alloc(); void print_output(int from, int to); void md_full(); void check_links(); int total_granted(); void print_failed(); /* void fix_links(); */ /* int64_t rel_addr(void * a); */ /* mem_block_t * block_from_list(list_t * list); */ /* list_t * size_history(); */ /* void print_sizes(list_t * sh); */ /* void process_request(request_t request); */ /* void md_free(); */ /* void md_alloc(); */ #endif // LIB_MEM_H_
/* Fauna Images and Colors Stylesheet If you only need to change colors you only need to edit this file. */ body { background-color: #F5F5EF; color: #565654; } .box, #searchbox { background-color: #fff; } color: #A5A5A3; } #header { background: #CBF400 url(images/masthead.jpg); } .commentbox { /* Vertical drop shadow near comment box */ background: url(images/<API key>.gif) no-repeat right top; } body { background: #F5F5EF url(images/bg.gif) no-repeat center top; } a:link, a:active { text-decoration: underline; color: #17A; } a:visited { text-decoration: underline; color: #035; } a:hover, a:focus { text-decoration: underline; color: #6BD; } #sidebar a:link, #sidebar a:active { text-decoration: none; color: #79A; } #sidebar a:visited { text-decoration: none; color: #578} #sidebar a:hover { text-decoration: underline; color: #79A} .secondary a:link, .secondary a:active { text-decoration: none; color: #79A; } .secondary a:visited { text-decoration: none; color: #578} .secondary a:hover { text-decoration: underline; color: #79A} .comment-header em a:link, .comment-header em a:active, .comment-header em a:visited { text-decoration: none; color: #39C; } .comment-header em a:hover { text-decoration: none; color: #146; } h2 a:link, h2 a:active, h2 a:visited { color: #035; } h2 a:hover, h2 a:focus { color: #39C; } .entry-date, .entry-meta { color: #989D3C !important; } .entry-date a, .entry-meta a { color: #989D3C !important; border-bottom: 1px dotted #989D3C; text-decoration: none; } .entry-date a:hover, .entry-meta a:hover { color: #D3D764 !important; border-bottom: 1px dotted #D3D764; text-decoration: none; } .entry p a img { border-bottom: 1px solid #17A; } .entry p a img:hover { border-bottom: 1px solid #6BD; } #menu a:link, #menu a:visited { color: #A5A5A3; } #menu a:active, #menu a:hover { color: #000; } body#index li#current-index a, body#index #current-index a:visited, .current_page_item a, .current_page_item a:visited { color: #000 !important; } acronym, abbr { border-bottom: 1px dashed #C63; } strike, del { color: #CACAC8; } code, pre, kbd { color: #000; } ins { color: #989D3C; } label:hover { color: #000; } fieldset { border: 1px solid #F4F8FB; background-color: #F4F8FB; } legend { background-color: #fff; } .notice, .comment-header small { /* Moderation Message */ color: #000; border-top: 1px solid #FFF200; border-bottom: 1px solid #FFF200; background-color: #FFFFF4; } blockquote, pre { border-left: 1px solid #D9D9D9; } .form-allowed-tags { border-top: 1px solid #D6E1ED; border-bottom: 1px solid #D6E1ED; background-color: #F8FAFC; } .comment-even, .comment-preview { background-color: #F8FAFC; } .comment-odd { background-color: #F8FAFC; /* Change this colour to add "Flip flopping" backgrounds */ } .comment-author { /* Author background color */ background-color: #EEF4F9; } #trackbacklist li a { background-color: #FBFCFD; } #trackbacklist li small { color: #565654; } #trackbacklist li a:hover { background-color:#F4F8FB; color: #035; } #trackbacklist li a:active { background-color:#FBFCFD; color: #035; } #respond input[type="text"], .inputfield, .searchbox { color: #777773; } #respond input[type="text"]:focus, .inputfield:focus, .searchbox:focus { color: #424240; background-color:#FFFFF4; } h1 a:link, h1 a:visited { color: #686865; border-bottom: 1px solid #F5F5EF; } h1 a:hover, h1 a:active { color: #A6A6A4; border-bottom: 1px dotted #A6A6A4; } #wp-calendar caption { color: #989D3C; } #wp-calendar a { color: #39C; background-color: #F8FAFC; } #wp-calendar a:hover { color: #035 !important; background-color: #EEF4F9 !important; } #wp-calendar td.pad:hover { /* Doesn't work in IE */ background-color: #F8FAFC; } #recent-activity small a:link, #recent-activity small a:visited, .secondary small a:link, .secondary small a:visited { color: #ACC; }
<?php define('<API key>', 'The database was successfully updated'); define('<API key>', 'Module\'s options'); define('_AM_ISEARCH_GOTOMOD', 'Go to the module'); define('<API key>', 'Module\'s admin'); define('_AM_ISEARCH_STATS', 'Search statistics (%d words recorded)'); define('_AM_ISEARCH_ID', 'ID'); define('_AM_ISEARCH_KEYWORD', 'Searched word'); define('<API key>', 'Searched words by day'); define('_AM_ISEARCH_USER', 'User'); define('_AM_ISEARCH_DATE', 'Date'); define('<API key>', 'Most searched words'); define('_AM_ISEARCH_HITS', 'Calls'); define('<API key>', 'Biggest users of the search'); define('<API key>', 'Daily statistics'); define('_AM_ISEARCH_USE', 'Calls'); define('_AM_ISEARCH_PRUNE', 'Prune'); define('<API key>', 'Prune keywords before : '); define('<API key>', 'or only remove this word : '); define('<API key>', 'If you don\'t enter a word the script will prune by date'); define('<API key>', 'Do you confirm the deletion of %u elements?'); define('<API key>', 'Nothing to delete'); define('_AM_ISEARCH_EXPORT', 'Export'); define('<API key>', 'Export searches made between '); define('<API key>', ' and '); define('<API key>', 'Date\'s format (in PHP format)'); define('<API key>', 'Fields delimiter'); define('<API key>', 'Error, impossible to create the export file %s'); define('<API key>', 'Your export file is available.<br><a href="%s">Click here to download it</a>.<br>Don\'t forget to <a href="%s">remove it</a> once you have finished.'); define('<API key>', 'The file was deleted'); define('<API key>', 'Error, impossible to remove the file'); define('<API key>', 'Nothing to export!'); define('_AM_ISEARCH_DELETE', 'Delete'); define('<API key>', 'Blacklist'); define('_AM_ISEARCH_ACTION', 'Action'); define('<API key>', 'Are you sure?'); define('<API key>', 'The words in this list will not be recorded during the search'); define('<API key>', 'Add'); define('<API key>', 'Enter words to add in the list<br>(one word per line)'); define('_AM_ISEARCH_IP', 'IP'); define('<API key>', 'Filter by'); // Install/Uninstall/Update define('<API key>', 'This module requires PHP version %s+ (%s installed)'); define('<API key>', 'This module requires XOOPS version %s+ (%s installed)'); define('<API key>', 'Could not delete %s directory'); define('<API key>', 'Could not delete %s');
<?php if ( !defined( 'MEDIAWIKI' ) ) { die( 'Not an entry point.' ); } return [ /** * Special modules who have their own classes */ 'startup' => [ 'class' => '<API key>' ], // Scripts managed by the local wiki (stored in the MediaWiki namespace) 'site' => [ 'class' => '<API key>' ], 'site.styles' => [ 'class' => '<API key>' ], 'noscript' => [ 'class' => '<API key>', 'styles' => [ 'MediaWiki:Noscript.css' ], 'group' => 'noscript', ], 'filepage' => [ 'position' => 'top', 'class' => '<API key>', 'styles' => [ 'MediaWiki:Filepage.css' ], ], 'user.groups' => [ // Merged into 'user' since MediaWiki 1.28 - kept for back-compat 'dependencies' => 'user', 'targets' => [ 'desktop', 'mobile' ], ], // Scripts managed by the current user (stored in their user space) 'user' => [ 'class' => '<API key>' ], 'user.styles' => [ 'class' => '<API key>' ], // Scripts generated based on the current user's preferences 'user.cssprefs' => [ 'class' => '<API key>' ], // Populate mediawiki.user placeholders with information about the current user 'user.defaults' => [ 'class' => '<API key>' ], 'user.options' => [ 'class' => '<API key>' ], 'user.tokens' => [ 'class' => '<API key>' ], // Scripts for the dynamic language specific data, like grammar forms. 'mediawiki.language.data' => [ 'class' => '<API key>' ], /* MediaWiki base skinning modules */ /** * Common skin styles, grouped into three graded levels. * * Level 1 "elements": * The base level that only contains the most basic of common skin styles. * Only styles for single elements are included, no styling for complex structures like the * TOC is present. This level is for skins that want to implement the entire style of even * content area structures like the TOC themselves. * * Level 2 "content": * The most commonly used level for skins implemented from scratch. This level includes all * the single element styles from "elements" as well as styles for complex structures such * as the TOC that are output in the content area by MediaWiki rather than the skin. * Essentially this is the common level that lets skins leave the style of the content area * as it is normally styled, while leaving the rest of the skin up to the skin * implementation. * * Level 3 "interface": * The highest level, this stylesheet contains extra common styles for classes like * .firstHeading, #contentSub, et cetera which are not outputted by MediaWiki but are common * to skins like MonoBook, Vector, etc... Essentially this level is for styles that are * common to MonoBook clones. And since practically every skin that currently exists within * core is a MonoBook clone, all our core skins currently use this level. * * These modules are typically loaded by addModuleStyles(), which has absolutely no concept of * dependency management. As a result they contain duplicate stylesheet references instead of * setting 'dependencies' to the lower level the module is based on. For this reason avoid * including more than one of them into your skin as this will result in duplicate CSS. */ 'mediawiki.skinning.elements' => [ 'position' => 'top', 'styles' => [ 'resources/src/mediawiki.skinning/elements.css' => [ 'media' => 'screen' ], ], ], 'mediawiki.skinning.content' => [ 'position' => 'top', 'styles' => [ 'resources/src/mediawiki.skinning/elements.css' => [ 'media' => 'screen' ], 'resources/src/mediawiki.skinning/content.css' => [ 'media' => 'screen' ], ], ], // Used in the web installer. Test it after modifying this definition! 'mediawiki.skinning.interface' => [ 'position' => 'top', 'class' => '<API key>', 'styles' => [ 'resources/src/mediawiki.skinning/elements.css' => [ 'media' => 'screen' ], 'resources/src/mediawiki.skinning/content.css' => [ 'media' => 'screen' ], 'resources/src/mediawiki.skinning/interface.css' => [ 'media' => 'screen' ], ], ], 'mediawiki.skinning.content.parsoid' => [ 'position' => 'top', // Style Parsoid HTML+RDFa output consistent with wikitext from PHP parser // with the interface.css styles; skinStyles should be used if your // skin over-rides common content styling. 'skinStyles' => [ 'default' => 'resources/src/mediawiki.skinning/content.parsoid.less', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.skinning.content.externallinks' => [ 'position' => 'bottom', 'styles' => [ 'resources/src/mediawiki.skinning/content.externallinks.css' => [ 'media' => 'screen' ], ], ], /* jQuery */ 'jquery' => [ 'scripts' => [ 'resources/lib/jquery/jquery.js', ], 'raw' => true, 'targets' => [ 'desktop', 'mobile' ], ], /* jQuery Plugins */ 'jquery.accessKeyLabel' => [ 'scripts' => 'resources/src/jquery/jquery.accessKeyLabel.js', 'dependencies' => [ 'jquery.client', 'mediawiki.RegExp', ], 'messages' => [ 'brackets', 'word-separator' ], 'targets' => [ 'mobile', 'desktop' ], ], 'jquery.appear' => [ 'scripts' => 'resources/lib/jquery/jquery.appear.js', ], 'jquery.arrowSteps' => [ 'scripts' => 'resources/src/jquery/jquery.arrowSteps.js', 'styles' => 'resources/src/jquery/jquery.arrowSteps.css', 'targets' => [ 'desktop', 'mobile' ], ], 'jquery.async' => [ 'scripts' => 'resources/lib/jquery/jquery.async.js', ], 'jquery.autoEllipsis' => [ 'scripts' => 'resources/src/jquery/jquery.autoEllipsis.js', 'dependencies' => 'jquery.highlightText', 'targets' => [ 'desktop', 'mobile' ], ], 'jquery.badge' => [ 'scripts' => 'resources/src/jquery/jquery.badge.js', 'styles' => 'resources/src/jquery/jquery.badge.css', 'dependencies' => 'mediawiki.language', ], 'jquery.byteLength' => [ 'scripts' => 'resources/src/jquery/jquery.byteLength.js', 'targets' => [ 'desktop', 'mobile' ], ], 'jquery.byteLimit' => [ 'scripts' => 'resources/src/jquery/jquery.byteLimit.js', 'dependencies' => 'jquery.byteLength', 'targets' => [ 'desktop', 'mobile' ], ], 'jquery.checkboxShiftClick' => [ 'scripts' => 'resources/src/jquery/jquery.checkboxShiftClick.js', 'targets' => [ 'desktop', 'mobile' ], ], 'jquery.chosen' => [ 'scripts' => 'resources/lib/jquery.chosen/chosen.jquery.js', 'styles' => 'resources/lib/jquery.chosen/chosen.css', ], 'jquery.client' => [ 'scripts' => 'resources/lib/jquery.client/jquery.client.js', 'targets' => [ 'desktop', 'mobile' ], ], 'jquery.color' => [ 'scripts' => 'resources/src/jquery/jquery.color.js', 'dependencies' => 'jquery.colorUtil', ], 'jquery.colorUtil' => [ 'scripts' => 'resources/src/jquery/jquery.colorUtil.js', ], 'jquery.confirmable' => [ 'scripts' => [ 'resources/src/jquery/jquery.confirmable.js', 'resources/src/jquery/jquery.confirmable.mediawiki.js', ], 'messages' => [ 'confirmable-confirm', 'confirmable-yes', 'confirmable-no', 'word-separator', ], 'styles' => 'resources/src/jquery/jquery.confirmable.css', 'dependencies' => 'mediawiki.jqueryMsg', ], 'jquery.cookie' => [ 'scripts' => 'resources/lib/jquery/jquery.cookie.js', 'targets' => [ 'desktop', 'mobile' ], ], 'jquery.expandableField' => [ 'scripts' => 'resources/src/jquery/jquery.expandableField.js', ], 'jquery.farbtastic' => [ 'scripts' => 'resources/src/jquery/jquery.farbtastic.js', 'styles' => 'resources/src/jquery/jquery.farbtastic.css', 'dependencies' => 'jquery.colorUtil', ], 'jquery.footHovzer' => [ 'scripts' => 'resources/src/jquery/jquery.footHovzer.js', 'styles' => 'resources/src/jquery/jquery.footHovzer.css', ], 'jquery.form' => [ 'scripts' => 'resources/lib/jquery/jquery.form.js', ], 'jquery.fullscreen' => [ 'scripts' => 'resources/lib/jquery/jquery.fullscreen.js', ], 'jquery.getAttrs' => [ 'scripts' => 'resources/src/jquery/jquery.getAttrs.js', 'targets' => [ 'desktop', 'mobile' ], ], 'jquery.hidpi' => [ 'scripts' => 'resources/src/jquery/jquery.hidpi.js', 'targets' => [ 'desktop', 'mobile' ], ], 'jquery.highlightText' => [ 'scripts' => 'resources/src/jquery/jquery.highlightText.js', 'dependencies' => [ 'mediawiki.RegExp', 'dom-level2-shim', ], 'targets' => [ 'desktop', 'mobile' ], ], 'jquery.hoverIntent' => [ 'scripts' => 'resources/lib/jquery/jquery.hoverIntent.js', ], 'jquery.i18n' => [ 'scripts' => [ 'resources/lib/jquery.i18n/src/jquery.i18n.js', 'resources/lib/jquery.i18n/src/jquery.i18n.messagestore.js', 'resources/lib/jquery.i18n/src/jquery.i18n.parser.js', 'resources/lib/jquery.i18n/src/jquery.i18n.emitter.js', 'resources/lib/jquery.i18n/src/jquery.i18n.emitter.bidi.js', 'resources/lib/jquery.i18n/src/jquery.i18n.language.js', 'resources/lib/jquery.i18n/src/jquery.i18n.fallbacks.js', ], 'dependencies' => 'mediawiki.libs.pluralruleparser', 'languageScripts' => [ 'bs' => 'resources/lib/jquery.i18n/src/languages/bs.js', 'dsb' => 'resources/lib/jquery.i18n/src/languages/dsb.js', 'fi' => 'resources/lib/jquery.i18n/src/languages/fi.js', 'ga' => 'resources/lib/jquery.i18n/src/languages/ga.js', 'he' => 'resources/lib/jquery.i18n/src/languages/he.js', 'hsb' => 'resources/lib/jquery.i18n/src/languages/hsb.js', 'hu' => 'resources/lib/jquery.i18n/src/languages/hu.js', 'hy' => 'resources/lib/jquery.i18n/src/languages/hy.js', 'la' => 'resources/lib/jquery.i18n/src/languages/la.js', 'ml' => 'resources/lib/jquery.i18n/src/languages/ml.js', 'os' => 'resources/lib/jquery.i18n/src/languages/os.js', 'ru' => 'resources/lib/jquery.i18n/src/languages/ru.js', 'sl' => 'resources/lib/jquery.i18n/src/languages/sl.js', 'uk' => 'resources/lib/jquery.i18n/src/languages/uk.js', ], 'targets' => [ 'desktop', 'mobile' ], ], 'jquery.localize' => [ 'scripts' => 'resources/src/jquery/jquery.localize.js', ], 'jquery.makeCollapsible' => [ 'scripts' => 'resources/src/jquery/jquery.makeCollapsible.js', 'styles' => 'resources/src/jquery/jquery.makeCollapsible.css', 'messages' => [ 'collapsible-expand', '<API key>' ], 'targets' => [ 'desktop', 'mobile' ], ], 'jquery.mockjax' => [ 'scripts' => 'resources/lib/jquery/jquery.mockjax.js', ], 'jquery.mw-jump' => [ 'scripts' => 'resources/src/jquery/jquery.mw-jump.js', 'targets' => [ 'desktop', 'mobile' ], ], 'jquery.mwExtension' => [ 'scripts' => 'resources/src/jquery/jquery.mwExtension.js', 'targets' => [ 'desktop', 'mobile' ], ], 'jquery.placeholder' => [ 'scripts' => 'resources/src/jquery/jquery.placeholder.js', 'targets' => [ 'desktop', 'mobile' ], ], 'jquery.qunit' => [ 'scripts' => 'resources/lib/qunitjs/qunit.js', 'styles' => 'resources/lib/qunitjs/qunit.css', 'position' => 'top', 'targets' => [ 'desktop', 'mobile' ], ], 'jquery.qunit.completenessTest' => [ 'scripts' => 'resources/src/jquery/jquery.qunit.completenessTest.js', 'dependencies' => 'jquery.qunit', 'targets' => [ 'desktop', 'mobile' ], ], 'jquery.spinner' => [ 'scripts' => 'resources/src/jquery/jquery.spinner.js', 'styles' => 'resources/src/jquery/jquery.spinner.css', 'targets' => [ 'desktop', 'mobile' ], ], 'jquery.jStorage' => [ 'scripts' => 'resources/lib/jquery/jquery.jStorage.js', 'dependencies' => 'json', ], 'jquery.suggestions' => [ 'scripts' => 'resources/src/jquery/jquery.suggestions.js', 'styles' => 'resources/src/jquery/jquery.suggestions.css', 'dependencies' => 'jquery.highlightText', ], 'jquery.tabIndex' => [ 'scripts' => 'resources/src/jquery/jquery.tabIndex.js', ], 'jquery.tablesorter' => [ 'scripts' => 'resources/src/jquery/jquery.tablesorter.js', 'styles' => 'resources/src/jquery/jquery.tablesorter.less', 'messages' => [ 'sort-descending', 'sort-ascending' ], 'dependencies' => [ 'dom-level2-shim', 'mediawiki.RegExp', 'mediawiki.language.months', ], ], 'jquery.textSelection' => [ 'scripts' => 'resources/src/jquery/jquery.textSelection.js', 'dependencies' => 'jquery.client', 'targets' => [ 'mobile', 'desktop' ], ], 'jquery.throttle-debounce' => [ 'scripts' => 'resources/lib/jquery/jquery.<API key>.js', 'targets' => [ 'desktop', 'mobile' ], ], 'jquery.xmldom' => [ 'scripts' => 'resources/lib/jquery/jquery.xmldom.js', ], /* jQuery Tipsy */ 'jquery.tipsy' => [ 'scripts' => 'resources/src/jquery.tipsy/jquery.tipsy.js', 'styles' => 'resources/src/jquery.tipsy/jquery.tipsy.css', ], /* jQuery UI */ 'jquery.ui.core' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.core.js', 'dependencies' => [ 'jquery.ui.core.styles', ], 'group' => 'jquery.ui', ], 'jquery.ui.core.styles' => [ 'position' => 'top', 'skinStyles' => [ 'default' => [ 'resources/lib/jquery.ui/themes/smoothness/jquery.ui.core.css', 'resources/lib/jquery.ui/themes/smoothness/jquery.ui.theme.css', ], ], 'group' => 'jquery.ui', ], 'jquery.ui.accordion' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.accordion.js', 'dependencies' => [ 'jquery.ui.core', 'jquery.ui.widget', ], 'skinStyles' => [ 'default' => 'resources/lib/jquery.ui/themes/smoothness/jquery.ui.accordion.css', ], 'group' => 'jquery.ui', ], 'jquery.ui.autocomplete' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.autocomplete.js', 'dependencies' => [ 'jquery.ui.core', 'jquery.ui.widget', 'jquery.ui.position', 'jquery.ui.menu', ], 'skinStyles' => [ 'default' => 'resources/lib/jquery.ui/themes/smoothness/jquery.ui.autocomplete.css', ], 'group' => 'jquery.ui', ], 'jquery.ui.button' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.button.js', 'dependencies' => [ 'jquery.ui.core', 'jquery.ui.widget', ], 'skinStyles' => [ 'default' => 'resources/lib/jquery.ui/themes/smoothness/jquery.ui.button.css', ], 'group' => 'jquery.ui', ], 'jquery.ui.datepicker' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.datepicker.js', 'dependencies' => 'jquery.ui.core', 'skinStyles' => [ 'default' => 'resources/lib/jquery.ui/themes/smoothness/jquery.ui.datepicker.css', ], 'languageScripts' => [ 'af' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-af.js', 'ar' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-ar.js', 'ar-dz' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-ar-DZ.js', 'az' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-az.js', 'bg' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-bg.js', 'bs' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-bs.js', 'ca' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-ca.js', 'cs' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-cs.js', 'da' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-da.js', 'de-at' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-de-AT.js', 'de-ch' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-de-CH.js', 'de' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-de.js', 'el' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-el.js', 'en-au' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-en-AU.js', 'en-gb' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-en-GB.js', 'en-nz' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-en-NZ.js', 'eo' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-eo.js', 'es' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-es.js', 'et' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-et.js', 'eu' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-eu.js', 'fa' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-fa.js', 'fi' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-fi.js', 'fo' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-fo.js', 'fr' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-fr.js', 'fr-ch' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-fr-CH.js', 'gl' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-gl.js', 'he' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-he.js', 'hi' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-hi.js', 'hr' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-hr.js', 'hu' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-hu.js', 'hy' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-hy.js', 'id' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-id.js', 'is' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-is.js', 'it' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-it.js', 'ja' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-ja.js', 'ka' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-ka.js', 'kk' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-kk.js', 'km' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-km.js', 'ko' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-ko.js', 'lb' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-lb.js', 'lt' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-lt.js', 'lv' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-lv.js', 'mk' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-mk.js', 'ml' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-ml.js', 'ms' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-ms.js', 'nl' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-nl.js', 'nl-be' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-nl-BE.js', 'no' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-no.js', 'pl' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-pl.js', 'pt' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-pt.js', 'pt-br' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-pt-BR.js', 'rm' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-rm.js', 'ro' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-ro.js', 'ru' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-ru.js', 'sk' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-sk.js', 'sl' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-sl.js', 'sq' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-sq.js', 'sr-ec' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-sr.js', 'sr-el' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-sr-SR.js', 'sv' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-sv.js', 'ta' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-ta.js', 'th' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-th.js', 'tj' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-tj.js', 'tr' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-tr.js', 'uk' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-uk.js', 'vi' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-vi.js', 'zh-cn' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-zh-CN.js', 'zh-hk' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-zh-HK.js', 'zh-tw' => 'resources/lib/jquery.ui/i18n/jquery.ui.datepicker-zh-TW.js', ], 'group' => 'jquery.ui', ], 'jquery.ui.dialog' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.dialog.js', 'dependencies' => [ 'jquery.ui.core', 'jquery.ui.widget', 'jquery.ui.button', 'jquery.ui.draggable', 'jquery.ui.mouse', 'jquery.ui.position', 'jquery.ui.resizable', ], 'skinStyles' => [ 'default' => 'resources/lib/jquery.ui/themes/smoothness/jquery.ui.dialog.css', ], 'group' => 'jquery.ui', ], 'jquery.ui.draggable' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.draggable.js', 'dependencies' => [ 'jquery.ui.core', 'jquery.ui.mouse', 'jquery.ui.widget', ], 'group' => 'jquery.ui', ], 'jquery.ui.droppable' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.droppable.js', 'dependencies' => [ 'jquery.ui.core', 'jquery.ui.mouse', 'jquery.ui.widget', 'jquery.ui.draggable', ], 'group' => 'jquery.ui', ], 'jquery.ui.menu' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.menu.js', 'dependencies' => [ 'jquery.ui.core', 'jquery.ui.widget', 'jquery.ui.position', ], 'skinStyles' => [ 'default' => 'resources/lib/jquery.ui/themes/smoothness/jquery.ui.menu.css', ], 'group' => 'jquery.ui', ], 'jquery.ui.mouse' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.mouse.js', 'dependencies' => 'jquery.ui.widget', 'group' => 'jquery.ui', ], 'jquery.ui.position' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.position.js', 'group' => 'jquery.ui', ], 'jquery.ui.progressbar' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.progressbar.js', 'dependencies' => [ 'jquery.ui.core', 'jquery.ui.widget', ], 'skinStyles' => [ 'default' => 'resources/lib/jquery.ui/themes/smoothness/jquery.ui.progressbar.css', ], 'group' => 'jquery.ui', ], 'jquery.ui.resizable' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.resizable.js', 'dependencies' => [ 'jquery.ui.core', 'jquery.ui.widget', 'jquery.ui.mouse', ], 'skinStyles' => [ 'default' => 'resources/lib/jquery.ui/themes/smoothness/jquery.ui.resizable.css', ], 'group' => 'jquery.ui', ], 'jquery.ui.selectable' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.selectable.js', 'dependencies' => [ 'jquery.ui.core', 'jquery.ui.widget', 'jquery.ui.mouse', ], 'skinStyles' => [ 'default' => 'resources/lib/jquery.ui/themes/smoothness/jquery.ui.selectable.css', ], 'group' => 'jquery.ui', ], 'jquery.ui.slider' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.slider.js', 'dependencies' => [ 'jquery.ui.core', 'jquery.ui.widget', 'jquery.ui.mouse', ], 'skinStyles' => [ 'default' => 'resources/lib/jquery.ui/themes/smoothness/jquery.ui.slider.css', ], 'group' => 'jquery.ui', ], 'jquery.ui.sortable' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.sortable.js', 'dependencies' => [ 'jquery.ui.core', 'jquery.ui.mouse', 'jquery.ui.widget', ], 'group' => 'jquery.ui', ], 'jquery.ui.spinner' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.spinner.js', 'dependencies' => [ 'jquery.ui.core', 'jquery.ui.widget', 'jquery.ui.button', ], 'skinStyles' => [ 'default' => 'resources/lib/jquery.ui/themes/smoothness/jquery.ui.spinner.css', ], 'group' => 'jquery.ui', ], 'jquery.ui.tabs' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.tabs.js', 'dependencies' => [ 'jquery.ui.core', 'jquery.ui.widget', ], 'skinStyles' => [ 'default' => 'resources/lib/jquery.ui/themes/smoothness/jquery.ui.tabs.css', ], 'group' => 'jquery.ui', ], 'jquery.ui.tooltip' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.tooltip.js', 'dependencies' => [ 'jquery.ui.core', 'jquery.ui.widget', 'jquery.ui.position', ], 'skinStyles' => [ 'default' => 'resources/lib/jquery.ui/themes/smoothness/jquery.ui.tooltip.css', ], 'group' => 'jquery.ui', ], 'jquery.ui.widget' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.widget.js', 'group' => 'jquery.ui', ], // Effects 'jquery.effects.core' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.effect.js', 'group' => 'jquery.ui', ], 'jquery.effects.blind' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.effect-blind.js', 'dependencies' => 'jquery.effects.core', 'group' => 'jquery.ui', ], 'jquery.effects.bounce' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.effect-bounce.js', 'dependencies' => 'jquery.effects.core', 'group' => 'jquery.ui', ], 'jquery.effects.clip' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.effect-clip.js', 'dependencies' => 'jquery.effects.core', 'group' => 'jquery.ui', ], 'jquery.effects.drop' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.effect-drop.js', 'dependencies' => 'jquery.effects.core', 'group' => 'jquery.ui', ], 'jquery.effects.explode' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.effect-explode.js', 'dependencies' => 'jquery.effects.core', 'group' => 'jquery.ui', ], 'jquery.effects.fade' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.effect-fade.js', 'dependencies' => 'jquery.effects.core', 'group' => 'jquery.ui', ], 'jquery.effects.fold' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.effect-fold.js', 'dependencies' => 'jquery.effects.core', 'group' => 'jquery.ui', ], 'jquery.effects.highlight' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.effect-highlight.js', 'dependencies' => 'jquery.effects.core', 'group' => 'jquery.ui', ], 'jquery.effects.pulsate' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.effect-pulsate.js', 'dependencies' => 'jquery.effects.core', 'group' => 'jquery.ui', ], 'jquery.effects.scale' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.effect-scale.js', 'dependencies' => 'jquery.effects.core', 'group' => 'jquery.ui', ], 'jquery.effects.shake' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.effect-shake.js', 'dependencies' => 'jquery.effects.core', 'group' => 'jquery.ui', ], 'jquery.effects.slide' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.effect-slide.js', 'dependencies' => 'jquery.effects.core', 'group' => 'jquery.ui', ], 'jquery.effects.transfer' => [ 'scripts' => 'resources/lib/jquery.ui/jquery.ui.effect-transfer.js', 'dependencies' => 'jquery.effects.core', 'group' => 'jquery.ui', ], /* json2 */ 'json' => [ 'scripts' => 'resources/lib/json2/json2.js', 'targets' => [ 'desktop', 'mobile' ], 'skipFunction' => 'resources/src/json-skip.js', ], /* Moment.js */ 'moment' => [ 'scripts' => [ 'resources/lib/moment/moment.js', 'resources/src/moment-global.js', ], 'languageScripts' => [ 'af' => 'resources/lib/moment/locale/af.js', 'ar' => 'resources/lib/moment/locale/ar.js', 'ar-ma' => 'resources/lib/moment/locale/ar-ma.js', 'ar-sa' => 'resources/lib/moment/locale/ar-sa.js', 'az' => 'resources/lib/moment/locale/az.js', 'be' => 'resources/lib/moment/locale/be.js', 'bg' => 'resources/lib/moment/locale/bg.js', 'bn' => 'resources/lib/moment/locale/bn.js', 'bo' => 'resources/lib/moment/locale/bo.js', 'br' => 'resources/lib/moment/locale/br.js', 'bs' => 'resources/lib/moment/locale/bs.js', 'ca' => 'resources/lib/moment/locale/ca.js', 'cs' => 'resources/lib/moment/locale/cs.js', 'cv' => 'resources/lib/moment/locale/cv.js', 'cy' => 'resources/lib/moment/locale/cy.js', 'da' => 'resources/lib/moment/locale/da.js', 'de' => 'resources/lib/moment/locale/de.js', 'de-at' => 'resources/lib/moment/locale/de-at.js', 'el' => 'resources/lib/moment/locale/el.js', 'en' => 'resources/src/moment-dmy.js', 'en-au' => 'resources/lib/moment/locale/en-au.js', 'en-ca' => 'resources/lib/moment/locale/en-ca.js', 'en-gb' => 'resources/lib/moment/locale/en-gb.js', 'eo' => 'resources/lib/moment/locale/eo.js', 'es' => 'resources/lib/moment/locale/es.js', 'et' => 'resources/lib/moment/locale/et.js', 'eu' => 'resources/lib/moment/locale/eu.js', 'fa' => 'resources/lib/moment/locale/fa.js', 'fi' => 'resources/lib/moment/locale/fi.js', 'fo' => 'resources/lib/moment/locale/fo.js', 'fr-ca' => 'resources/lib/moment/locale/fr-ca.js', 'fr' => 'resources/lib/moment/locale/fr.js', 'gl' => 'resources/lib/moment/locale/gl.js', 'he' => 'resources/lib/moment/locale/he.js', 'hi' => 'resources/lib/moment/locale/hi.js', 'hr' => 'resources/lib/moment/locale/hr.js', 'hu' => 'resources/lib/moment/locale/hu.js', 'hy-am' => 'resources/lib/moment/locale/hy-am.js', 'id' => 'resources/lib/moment/locale/id.js', 'is' => 'resources/lib/moment/locale/is.js', 'it' => 'resources/lib/moment/locale/it.js', 'ja' => 'resources/lib/moment/locale/ja.js', 'ka' => 'resources/lib/moment/locale/ka.js', 'ko' => 'resources/lib/moment/locale/ko.js', 'lt' => 'resources/lib/moment/locale/lt.js', 'lv' => 'resources/lib/moment/locale/lv.js', 'mk' => 'resources/lib/moment/locale/mk.js', 'ml' => 'resources/lib/moment/locale/ml.js', 'mr' => 'resources/lib/moment/locale/mr.js', 'ms-my' => 'resources/lib/moment/locale/ms-my.js', 'my' => 'resources/lib/moment/locale/my.js', 'nb' => 'resources/lib/moment/locale/nb.js', 'ne' => 'resources/lib/moment/locale/ne.js', 'nl' => 'resources/lib/moment/locale/nl.js', 'nn' => 'resources/lib/moment/locale/nn.js', 'pl' => 'resources/lib/moment/locale/pl.js', 'pt-br' => 'resources/lib/moment/locale/pt-br.js', 'pt' => 'resources/lib/moment/locale/pt.js', 'ro' => 'resources/lib/moment/locale/ro.js', 'ru' => 'resources/lib/moment/locale/ru.js', 'sk' => 'resources/lib/moment/locale/sk.js', 'sl' => 'resources/lib/moment/locale/sl.js', 'sq' => 'resources/lib/moment/locale/sq.js', 'sr-ec' => 'resources/lib/moment/locale/sr-cyrl.js', 'sr-el' => 'resources/lib/moment/locale/sr.js', 'sv' => 'resources/lib/moment/locale/sv.js', 'ta' => 'resources/lib/moment/locale/ta.js', 'th' => 'resources/lib/moment/locale/th.js', 'tl-ph' => 'resources/lib/moment/locale/tl-ph.js', 'tr' => 'resources/lib/moment/locale/tr.js', 'tzm' => 'resources/lib/moment/locale/tzm.js', 'tzm-latn' => 'resources/lib/moment/locale/tzm-latn.js', 'uk' => 'resources/lib/moment/locale/uk.js', 'uz' => 'resources/lib/moment/locale/uz.js', 'vi' => 'resources/lib/moment/locale/vi.js', 'zh-cn' => 'resources/lib/moment/locale/zh-cn.js', 'zh-tw' => 'resources/lib/moment/locale/zh-tw.js', 'zh-hans' => 'resources/lib/moment/locale/zh-cn.js', 'zh-hant' => 'resources/lib/moment/locale/zh-tw.js', ], // HACK: skinScripts come after languageScripts, and we need locale overrides to come // after locale definitions 'skinScripts' => [ 'default' => [ 'resources/src/<API key>.js', ], ], 'dependencies' => [ 'mediawiki.language', ], 'targets' => [ 'desktop', 'mobile' ], ], /* MediaWiki */ 'mediawiki' => [ 'class' => '<API key>', // Keep in sync with maintenance/jsduck/eg-iframe.html 'scripts' => [ 'resources/src/mediawiki/mediawiki.js', 'resources/src/mediawiki/mediawiki.requestIdleCallback.js', 'resources/src/mediawiki/mediawiki.errorLogger.js', ], 'debugScripts' => 'resources/src/mediawiki/mediawiki.log.js', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.apihelp' => [ 'styles' => 'resources/src/mediawiki/mediawiki.apihelp.css', 'targets' => [ 'desktop' ], 'position' => 'top', ], 'mediawiki.template' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.template.js', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.template.mustache' => [ 'scripts' => [ 'resources/lib/mustache/mustache.js', 'resources/src/mediawiki/mediawiki.template.mustache.js', ], 'targets' => [ 'desktop', 'mobile' ], 'dependencies' => 'mediawiki.template', ], 'mediawiki.template.regexp' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.template.regexp.js', 'targets' => [ 'desktop', 'mobile' ], 'dependencies' => 'mediawiki.template', ], 'mediawiki.apipretty' => [ 'styles' => 'resources/src/mediawiki/mediawiki.apipretty.css', 'targets' => [ 'desktop', 'mobile' ], 'position' => 'top', ], 'mediawiki.api' => [ 'scripts' => 'resources/src/mediawiki/api.js', 'dependencies' => [ 'mediawiki.util', 'user.tokens', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.api.category' => [ 'scripts' => 'resources/src/mediawiki/api/category.js', 'dependencies' => [ 'mediawiki.api', 'mediawiki.Title', ], ], 'mediawiki.api.edit' => [ 'scripts' => 'resources/src/mediawiki/api/edit.js', 'dependencies' => [ 'mediawiki.api', 'mediawiki.Title', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.api.login' => [ 'scripts' => 'resources/src/mediawiki/api/login.js', 'dependencies' => 'mediawiki.api', ], 'mediawiki.api.options' => [ 'scripts' => 'resources/src/mediawiki/api/options.js', 'dependencies' => 'mediawiki.api', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.api.parse' => [ 'scripts' => 'resources/src/mediawiki/api/parse.js', 'dependencies' => 'mediawiki.api', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.api.upload' => [ 'scripts' => 'resources/src/mediawiki/api/upload.js', 'dependencies' => [ 'dom-level2-shim', 'mediawiki.api', 'mediawiki.api.edit', 'json', ], ], 'mediawiki.api.user' => [ 'scripts' => 'resources/src/mediawiki/api/user.js', 'dependencies' => [ 'mediawiki.api', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.api.watch' => [ 'scripts' => 'resources/src/mediawiki/api/watch.js', 'dependencies' => [ 'mediawiki.api', ], ], 'mediawiki.api.messages' => [ 'scripts' => 'resources/src/mediawiki/api/messages.js', 'dependencies' => [ 'mediawiki.api', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.api.rollback' => [ 'scripts' => 'resources/src/mediawiki/api/rollback.js', 'dependencies' => [ 'mediawiki.api', ], ], 'mediawiki.content.json' => [ 'position' => 'top', 'styles' => 'resources/src/mediawiki/mediawiki.content.json.less', ], 'mediawiki.confirmCloseWindow' => [ 'scripts' => [ 'resources/src/mediawiki/mediawiki.confirmCloseWindow.js', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.debug' => [ 'scripts' => [ 'resources/src/mediawiki/mediawiki.debug.js', ], 'styles' => [ 'resources/src/mediawiki/mediawiki.debug.less', ], 'dependencies' => [ 'jquery.footHovzer', 'jquery.tipsy', ], 'position' => 'bottom', ], 'mediawiki.debug.init' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.debug.init.js', 'dependencies' => 'mediawiki.debug', // Uses a custom mw.config variable that is set in debughtml, // must be loaded on the bottom 'position' => 'bottom', ], 'mediawiki.feedback' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.feedback.js', 'styles' => 'resources/src/mediawiki/mediawiki.feedback.css', 'dependencies' => [ 'mediawiki.messagePoster', 'mediawiki.Title', 'oojs-ui-core', 'oojs-ui-windows', ], 'messages' => [ 'feedback-adding', 'feedback-back', 'feedback-bugcheck', '<API key>', '<API key>', 'feedback-bugnew', 'feedback-bugornote', 'feedback-cancel', 'feedback-close', '<API key>', '<API key>', 'feedback-error1', 'feedback-error2', 'feedback-error3', 'feedback-error4', 'feedback-message', 'feedback-subject', 'feedback-submit', 'feedback-terms', 'feedback-termsofuse', 'feedback-thanks', '<API key>', 'feedback-useragent' ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.feedlink' => [ 'position' => 'top', 'styles' => 'resources/src/mediawiki/mediawiki.feedlink.css', ], 'mediawiki.filewarning' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.filewarning.js', 'styles' => 'resources/src/mediawiki/mediawiki.filewarning.less', 'dependencies' => [ 'oojs-ui-core', ], ], 'mediawiki.ForeignApi' => [ 'targets' => [ 'desktop', 'mobile' ], 'class' => '<API key>', // Additional dependencies generated dynamically 'dependencies' => 'mediawiki.ForeignApi.core', ], 'mediawiki.ForeignApi.core' => [ 'scripts' => 'resources/src/mediawiki/ForeignApi.js', 'dependencies' => [ 'mediawiki.api', 'oojs', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.helplink' => [ 'position' => 'top', 'styles' => [ 'resources/src/mediawiki/mediawiki.helplink.less', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.hidpi' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.hidpi.js', 'dependencies' => 'jquery.hidpi', 'skipFunction' => 'resources/src/mediawiki.hidpi-skip.js', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.hlist' => [ 'styles' => 'resources/src/mediawiki/mediawiki.hlist.css', ], 'mediawiki.htmlform' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.htmlform.js', 'dependencies' => [ 'mediawiki.RegExp', 'jquery.byteLimit', ], 'messages' => [ '<API key>', // @todo Load this message in content language 'colon-separator', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.htmlform.styles' => [ 'styles' => 'resources/src/mediawiki/mediawiki.htmlform.css', 'position' => 'top', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.htmlform.ooui.styles' => [ 'styles' => 'resources/src/mediawiki/mediawiki.htmlform.ooui.css', 'position' => 'top', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.icon' => [ 'styles' => 'resources/src/mediawiki/mediawiki.icon.less', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.inspect' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.inspect.js', 'dependencies' => [ 'jquery.byteLength', 'mediawiki.RegExp', 'json', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.messagePoster' => [ 'scripts' => [ 'resources/src/mediawiki.messagePoster/mediawiki.messagePoster.factory.js', 'resources/src/mediawiki.messagePoster/mediawiki.messagePoster.MessagePoster.js', ], 'dependencies' => [ 'oojs', 'mediawiki.api', 'mediawiki.ForeignApi', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.messagePoster.wikitext' => [ 'scripts' => [ 'resources/src/mediawiki.messagePoster/mediawiki.messagePoster.<API key>.js', ], 'dependencies' => [ 'mediawiki.api.edit', 'mediawiki.messagePoster', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.notification' => [ 'styles' => [ 'resources/src/mediawiki/mediawiki.notification.common.css', 'resources/src/mediawiki/mediawiki.notification.hideForPrint.css' => [ 'media' => 'print' ], ], 'skinStyles' => [ 'default' => 'resources/src/mediawiki/mediawiki.notification.css', ], 'scripts' => 'resources/src/mediawiki/mediawiki.notification.js', 'dependencies' => 'mediawiki.page.startup', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.notify' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.notify.js', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.notification.convertmessagebox' => [ 'dependencies' => [ 'mediawiki.notification', ], 'scripts' => 'resources/src/mediawiki/mediawiki.notification.convertmessagebox.js', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.notification.convertmessagebox.styles' => [ 'position' => 'top', 'styles' => [ 'resources/src/mediawiki/mediawiki.notification.convertmessagebox.styles.less', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.RegExp' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.RegExp.js', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.pager.tablePager' => [ 'styles' => 'resources/src/mediawiki/mediawiki.pager.tablePager.less', 'position' => 'top', ], 'mediawiki.searchSuggest' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.searchSuggest.js', 'styles' => 'resources/src/mediawiki/mediawiki.searchSuggest.css', 'messages' => [ '<API key>', '<API key>', ], 'dependencies' => [ 'jquery.client', 'jquery.placeholder', 'jquery.suggestions', 'jquery.getAttrs', 'mediawiki.api', ], ], 'mediawiki.sectionAnchor' => [ 'position' => 'top', // Back-compat to hide it on cached pages (T18691; Ie9e334e973; 2015-03-17) 'styles' => 'resources/src/mediawiki/mediawiki.sectionAnchor.css', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.storage' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.storage.js', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.Title' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.Title.js', 'dependencies' => [ 'jquery.byteLength', 'mediawiki.util', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.Upload' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.Upload.js', 'dependencies' => [ 'dom-level2-shim', 'mediawiki.api.upload', ], ], 'mediawiki.ForeignUpload' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.ForeignUpload.js', 'dependencies' => [ 'mediawiki.ForeignApi', 'mediawiki.Upload', 'oojs', ], 'messages' => [ 'uploaddisabledtext', '<API key>', '<API key>', ] ], 'mediawiki.<API key>.config' => [ 'class' => '<API key>', ], 'mediawiki.<API key>' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.<API key>.js', 'dependencies' => [ 'mediawiki.ForeignUpload', 'mediawiki.<API key>.config', ], 'messages' => [ '<API key>', ], ], 'mediawiki.Upload.Dialog' => [ 'scripts' => [ 'resources/src/mediawiki/mediawiki.Upload.Dialog.js', ], 'dependencies' => [ 'mediawiki.Upload.BookletLayout', ], 'messages' => [ 'upload-dialog-title', '<API key>', '<API key>', '<API key>', '<API key>', ], ], 'mediawiki.Upload.BookletLayout' => [ 'scripts' => [ 'resources/src/mediawiki/mediawiki.Upload.BookletLayout.js', ], 'styles' => [ 'resources/src/mediawiki/mediawiki.Upload.BookletLayout.css', ], 'dependencies' => [ 'oojs-ui-core', 'oojs-ui-windows', 'oojs-ui.styles.icons-content', 'oojs-ui.styles.<API key>', 'moment', 'mediawiki.Title', 'mediawiki.user', 'mediawiki.Upload', 'mediawiki.jqueryMsg', 'mediawiki.widgets.StashedFileWidget' ], 'messages' => [ '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', 'api-error-blocked', '<API key>', 'api-error-badtoken', '<API key>', 'api-error-duplicate', '<API key>', '<API key>', 'api-error-emptypage', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', 'api-error-http', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', 'api-error-nomodule', '<API key>', 'api-error-overwrite', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', 'api-error-timeout', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', 'fileexists', 'filepageexists', 'filename-bad-prefix', 'filename-thumb-name', 'badfilename', 'protectedpagetext', ], ], 'mediawiki.<API key>.BookletLayout' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.<API key>.BookletLayout.js', 'styles' => 'resources/src/mediawiki/mediawiki.<API key>.BookletLayout.less', 'dependencies' => [ 'mediawiki.<API key>', 'mediawiki.Upload.BookletLayout', 'mediawiki.widgets.CategorySelector', 'mediawiki.widgets.DateInputWidget', 'mediawiki.jqueryMsg', 'mediawiki.api.messages', 'moment', 'mediawiki.libs.jpegmeta', ], 'messages' => [ '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', ], ], 'mediawiki.toc' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.toc.js', 'styles' => [ 'resources/src/mediawiki/mediawiki.toc.css' => [ 'media' => 'screen' ], 'resources/src/mediawiki/mediawiki.toc.print.css' => [ 'media' => 'print' ], ], 'dependencies' => 'mediawiki.cookie', 'messages' => [ 'showtoc', 'hidetoc' ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.Uri' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.Uri.js', 'templates' => [ 'strict.regexp' => 'resources/src/mediawiki/mediawiki.Uri.strict.regexp', 'loose.regexp' => 'resources/src/mediawiki/mediawiki.Uri.loose.regexp', ], 'dependencies' => 'mediawiki.util', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.user' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.user.js', 'dependencies' => [ 'mediawiki.cookie', 'mediawiki.api', 'mediawiki.api.user', 'user.options', 'user.tokens', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.userSuggest' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.userSuggest.js', 'dependencies' => [ 'jquery.suggestions', 'mediawiki.api' ] ], 'mediawiki.util' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.util.js', 'dependencies' => [ 'jquery.accessKeyLabel', 'mediawiki.RegExp', 'mediawiki.notify', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.viewport' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.viewport.js', 'position' => 'top', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.checkboxtoggle' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.checkboxtoggle.js', ], 'mediawiki.checkboxtoggle.styles' => [ 'styles' => 'resources/src/mediawiki/mediawiki.checkboxtoggle.css', ], 'mediawiki.cookie' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.cookie.js', 'dependencies' => 'jquery.cookie', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.toolbar' => [ 'class' => '<API key>', 'scripts' => 'resources/src/mediawiki.toolbar/toolbar.js', 'styles' => 'resources/src/mediawiki.toolbar/toolbar.less', 'dependencies' => 'jquery.textSelection', 'position' => 'top', ], 'mediawiki.experiments' => [ 'scripts' => 'resources/src/mediawiki/mediawiki.experiments.js', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.raggett' => [ 'styles' => 'resources/src/mediawiki/mediawiki.raggett.css', 'targets' => [ 'desktop', 'mobile' ], ], /* MediaWiki Action */ 'mediawiki.action.edit' => [ 'scripts' => [ 'resources/src/mediawiki.action/mediawiki.action.edit.js', 'resources/src/mediawiki.action/mediawiki.action.edit.stash.js', ], 'styles' => 'resources/src/mediawiki.action/mediawiki.action.edit.css', 'dependencies' => [ 'mediawiki.action.edit.styles', 'jquery.textSelection', 'jquery.byteLimit', 'mediawiki.api', ], 'position' => 'top', ], 'mediawiki.action.edit.styles' => [ 'position' => 'top', 'styles' => 'resources/src/mediawiki.action/mediawiki.action.edit.styles.css', ], 'mediawiki.action.edit.collapsibleFooter' => [ 'scripts' => 'resources/src/mediawiki.action/mediawiki.action.edit.collapsibleFooter.js', 'styles' => 'resources/src/mediawiki.action/mediawiki.action.edit.collapsibleFooter.css', 'dependencies' => [ 'jquery.makeCollapsible', 'mediawiki.cookie', 'mediawiki.icon', ], ], 'mediawiki.action.edit.preview' => [ 'scripts' => 'resources/src/mediawiki.action/mediawiki.action.edit.preview.js', 'dependencies' => [ 'jquery.form', 'jquery.spinner', 'jquery.textSelection', 'mediawiki.api', 'mediawiki.action.history.diff', 'mediawiki.util', 'mediawiki.jqueryMsg', ], 'messages' => [ // Keep the uses message keys in sync with EditPage#setHeaders 'creating', 'editconflict', 'editing', 'editingcomment', 'editingsection', 'pagetitle', 'otherlanguages', 'summary-preview', 'subject-preview', 'parentheses', 'previewerrortext', ], ], 'mediawiki.action.history' => [ 'scripts' => 'resources/src/mediawiki.action/mediawiki.action.history.js', 'styles' => 'resources/src/mediawiki.action/mediawiki.action.history.css', ], 'mediawiki.action.history.styles' => [ 'position' => 'top', 'styles' => 'resources/src/mediawiki.action/mediawiki.action.history.styles.css', ], 'mediawiki.action.history.diff' => [ 'position' => 'top', 'styles' => [ 'resources/src/mediawiki.action/mediawiki.action.history.diff.css', 'resources/src/mediawiki.action/mediawiki.action.history.diff.print.css' => [ 'media' => 'print' ], ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.action.view.dblClickEdit' => [ 'scripts' => 'resources/src/mediawiki.action/mediawiki.action.view.dblClickEdit.js', 'dependencies' => [ 'mediawiki.util', 'mediawiki.page.startup', 'user.options', ], ], 'mediawiki.action.view.metadata' => [ 'styles' => 'resources/src/mediawiki.action/mediawiki.action.view.metadata.css', 'scripts' => 'resources/src/mediawiki.action/mediawiki.action.view.metadata.js', 'messages' => [ 'metadata-expand', 'metadata-collapse', ], ], 'mediawiki.action.view.categoryPage.styles' => [ 'position' => 'top', 'styles' => 'resources/src/mediawiki.action/mediawiki.action.view.categoryPage.less', 'targets' => [ 'desktop', 'mobile' ] ], 'mediawiki.action.view.postEdit' => [ 'templates' => [ 'postEdit.html' => 'resources/src/mediawiki.action/templates/postEdit.html', ], 'scripts' => 'resources/src/mediawiki.action/mediawiki.action.view.postEdit.js', 'styles' => 'resources/src/mediawiki.action/mediawiki.action.view.postEdit.css', 'dependencies' => [ 'mediawiki.cookie', 'mediawiki.jqueryMsg' ], 'messages' => [ '<API key>', '<API key>', '<API key>', ], ], 'mediawiki.action.view.redirect' => [ 'scripts' => 'resources/src/mediawiki.action/mediawiki.action.view.redirect.js', 'dependencies' => 'jquery.client', 'position' => 'top', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.action.view.redirectPage' => [ 'position' => 'top', 'targets' => [ 'desktop', 'mobile' ], 'styles' => 'resources/src/mediawiki.action/mediawiki.action.view.redirectPage.css', ], 'mediawiki.action.view.rightClickEdit' => [ 'scripts' => 'resources/src/mediawiki.action/mediawiki.action.view.rightClickEdit.js', ], 'mediawiki.action.edit.editWarning' => [ 'scripts' => 'resources/src/mediawiki.action/mediawiki.action.edit.editWarning.js', 'dependencies' => [ 'jquery.textSelection', 'mediawiki.jqueryMsg', 'mediawiki.confirmCloseWindow', 'user.options', ], 'messages' => [ 'editwarning-warning', // editwarning-warning uses {{int:prefs-editing}} 'prefs-editing' ], ], 'mediawiki.action.view.filepage' => [ 'styles' => [ 'resources/src/mediawiki.action/mediawiki.action.view.filepage.print.css' => [ 'media' => 'print' ], 'resources/src/mediawiki.action/mediawiki.action.view.filepage.css', ], 'position' => 'top', ], /* MediaWiki Language */ 'mediawiki.language' => [ 'scripts' => [ 'resources/src/mediawiki.language/mediawiki.language.js', 'resources/src/mediawiki.language/mediawiki.language.numbers.js', 'resources/src/mediawiki.language/mediawiki.language.fallback.js', ], 'languageScripts' => [ 'bs' => 'resources/src/mediawiki.language/languages/bs.js', 'dsb' => 'resources/src/mediawiki.language/languages/dsb.js', 'fi' => 'resources/src/mediawiki.language/languages/fi.js', 'ga' => 'resources/src/mediawiki.language/languages/ga.js', 'he' => 'resources/src/mediawiki.language/languages/he.js', 'hsb' => 'resources/src/mediawiki.language/languages/hsb.js', 'hu' => 'resources/src/mediawiki.language/languages/hu.js', 'hy' => 'resources/src/mediawiki.language/languages/hy.js', 'la' => 'resources/src/mediawiki.language/languages/la.js', 'os' => 'resources/src/mediawiki.language/languages/os.js', 'ru' => 'resources/src/mediawiki.language/languages/ru.js', 'sl' => 'resources/src/mediawiki.language/languages/sl.js', 'uk' => 'resources/src/mediawiki.language/languages/uk.js', ], 'dependencies' => [ 'mediawiki.language.data', 'mediawiki.cldr', ], 'targets' => [ 'desktop', 'mobile' ], 'messages' => [ 'and', 'comma-separator', 'word-separator' ], ], 'mediawiki.cldr' => [ 'scripts' => 'resources/src/mediawiki.language/mediawiki.cldr.js', 'dependencies' => [ 'mediawiki.libs.pluralruleparser', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.libs.pluralruleparser' => [ 'scripts' => 'resources/src/mediawiki.libs/<API key>.js', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.language.init' => [ 'scripts' => 'resources/src/mediawiki.language/mediawiki.language.init.js', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.jqueryMsg' => [ // Add data for mediawiki.jqueryMsg, such as allowed tags 'class' => '<API key>', 'scripts' => 'resources/src/mediawiki/mediawiki.jqueryMsg.js', 'dependencies' => [ 'mediawiki.util', 'mediawiki.language', 'user.options', 'dom-level2-shim', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.language.months' => [ 'scripts' => 'resources/src/mediawiki.language/mediawiki.language.months.js', 'dependencies' => 'mediawiki.language', 'messages' => array_merge( Language::$mMonthMsgs, Language::$mMonthGenMsgs, Language::$mMonthAbbrevMsgs ) ], 'mediawiki.language.names' => [ 'class' => '<API key>' ], 'mediawiki.language.specialCharacters' => [ 'class' => '<API key>' ], /* MediaWiki Libs */ 'mediawiki.libs.jpegmeta' => [ 'scripts' => 'resources/src/mediawiki.libs/mediawiki.libs.jpegmeta.js', 'targets' => [ 'desktop', 'mobile' ], ], /* MediaWiki Page */ 'mediawiki.page.gallery' => [ 'scripts' => 'resources/src/mediawiki/page/gallery.js', 'dependencies' => [ 'mediawiki.page.gallery.styles', 'jquery.throttle-debounce', ] ], 'mediawiki.page.gallery.styles' => [ 'styles' => [ 'resources/src/mediawiki/page/gallery-print.css' => [ 'media' => 'print' ], 'resources/src/mediawiki/page/gallery.css', ], 'position' => 'top', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.page.gallery.slideshow' => [ 'scripts' => 'resources/src/mediawiki/page/gallery-slideshow.js', 'position' => 'top', 'dependencies' => [ 'mediawiki.api', 'mediawiki.Title', 'oojs', 'oojs-ui-core', 'oojs-ui-widgets', 'oojs-ui.styles.icons-media' ] ], 'mediawiki.page.ready' => [ 'scripts' => 'resources/src/mediawiki/page/ready.js', 'dependencies' => [ 'jquery.accessKeyLabel', 'jquery.checkboxShiftClick', 'jquery.makeCollapsible', 'jquery.placeholder', 'jquery.mw-jump', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.page.startup' => [ 'scripts' => 'resources/src/mediawiki/page/startup.js', 'dependencies' => 'mediawiki.util', 'position' => 'top', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.page.patrol' => [ 'position' => 'top', 'styles' => [ 'resources/src/mediawiki/page/mediawiki.page.patrol.css', 'resources/src/mediawiki/page/mediawiki.page.patrol.print.css' => [ 'media' => 'print' ], ] ], 'mediawiki.page.patrol.ajax' => [ 'scripts' => 'resources/src/mediawiki/page/patrol.ajax.js', 'dependencies' => [ 'mediawiki.page.startup', 'mediawiki.api', 'mediawiki.util', 'mediawiki.Title', 'mediawiki.notify', 'jquery.spinner', 'user.tokens' ], 'messages' => [ '<API key>', '<API key>', '<API key>' ], ], 'mediawiki.page.watch.ajax' => [ 'scripts' => 'resources/src/mediawiki/page/watch.js', 'dependencies' => [ 'mediawiki.page.startup', 'mediawiki.api.watch', 'mediawiki.notify', 'mediawiki.util', 'jquery.accessKeyLabel', 'mediawiki.RegExp', ], 'messages' => [ 'watch', 'unwatch', 'watching', 'unwatching', 'tooltip-ca-watch', 'tooltip-ca-unwatch', 'watcherrortext', ], ], 'mediawiki.page.rollback' => [ 'scripts' => 'resources/src/mediawiki/page/rollback.js', 'dependencies' => [ 'mediawiki.api.rollback', 'mediawiki.notify', 'jquery.spinner', ], 'messages' => [ 'rollbackfailed', 'actioncomplete', ], ], 'mediawiki.page.image.pagination' => [ 'scripts' => 'resources/src/mediawiki/page/image-pagination.js', 'dependencies' => [ 'mediawiki.util', 'jquery.spinner', ], ], /* MediaWiki Special pages */ 'mediawiki.special' => [ 'position' => 'top', 'styles' => 'resources/src/mediawiki.special/mediawiki.special.css', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.special.apisandbox.styles' => [ 'styles' => 'resources/src/mediawiki.special/mediawiki.special.apisandbox.top.css', ], 'mediawiki.special.apisandbox' => [ 'styles' => 'resources/src/mediawiki.special/mediawiki.special.apisandbox.css', 'scripts' => 'resources/src/mediawiki.special/mediawiki.special.apisandbox.js', 'dependencies' => [ 'mediawiki.api', 'mediawiki.jqueryMsg', 'oojs-ui', 'mediawiki.widgets.datetime', ], 'messages' => [ 'apisandbox-intro', 'apisandbox-submit', 'apisandbox-reset', '<API key>', '<API key>', '<API key>', '<API key>', 'apisandbox-retry', 'apisandbox-loading', '<API key>', '<API key>', 'apisandbox-helpurls', 'apisandbox-examples', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', 'apisandbox-results', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', '<API key>', 'blanknamespace', ], ], 'mediawiki.special.block' => [ 'scripts' => 'resources/src/mediawiki.special/mediawiki.special.block.js', 'styles' => 'resources/src/mediawiki.special/mediawiki.special.block.css', 'dependencies' => 'mediawiki.util', ], 'mediawiki.special.changeslist' => [ 'position' => 'top', 'styles' => 'resources/src/mediawiki.special/mediawiki.special.changeslist.css', ], 'mediawiki.special.changeslist.legend' => [ 'position' => 'top', 'styles' => 'resources/src/mediawiki.special/mediawiki.special.changeslist.legend.css', ], 'mediawiki.special.changeslist.legend.js' => [ 'scripts' => 'resources/src/mediawiki.special/mediawiki.special.changeslist.legend.js', 'dependencies' => [ 'jquery.makeCollapsible', 'mediawiki.cookie', ], ], 'mediawiki.special.changeslist.enhanced' => [ 'position' => 'top', 'styles' => 'resources/src/mediawiki.special/mediawiki.special.changeslist.enhanced.css', ], 'mediawiki.special.changeslist.visitedstatus' => [ 'position' => 'top', 'scripts' => 'resources/src/mediawiki.special/mediawiki.special.changeslist.visitedstatus.js', ], 'mediawiki.special.comparepages.styles' => [ 'position' => 'top', 'styles' => 'resources/src/mediawiki.special/mediawiki.special.comparepages.styles.less', ], 'mediawiki.special.edittags' => [ 'scripts' => 'resources/src/mediawiki.special/mediawiki.special.edittags.js', 'dependencies' => [ 'jquery.chosen', ], 'messages' => [ '<API key>', '<API key>', ], ], 'mediawiki.special.edittags.styles' => [ 'styles' => 'resources/src/mediawiki.special/mediawiki.special.edittags.css', 'position' => 'top', ], 'mediawiki.special.import' => [ 'scripts' => 'resources/src/mediawiki.special/mediawiki.special.import.js', ], 'mediawiki.special.movePage' => [ 'scripts' => 'resources/src/mediawiki.special/mediawiki.special.movePage.js', 'dependencies' => [ 'jquery.byteLimit', 'mediawiki.widgets', ], ], 'mediawiki.special.movePage.styles' => [ 'styles' => 'resources/src/mediawiki.special/mediawiki.special.movePage.css', 'position' => 'top', ], 'mediawiki.special.pageLanguage' => [ 'scripts' => 'resources/src/mediawiki.special/mediawiki.special.pageLanguage.js', 'dependencies' => [ 'oojs-ui-core', ], ], 'mediawiki.special.pagesWithProp' => [ 'position' => 'top', 'styles' => 'resources/src/mediawiki.special/mediawiki.special.pagesWithProp.css', ], 'mediawiki.special.preferences' => [ 'scripts' => 'resources/src/mediawiki.special/mediawiki.special.preferences.js', 'position' => 'top', 'messages' => [ '<API key>', '<API key>', 'saveprefs', 'savedprefs', ], 'dependencies' => [ 'mediawiki.language', 'mediawiki.confirmCloseWindow', 'mediawiki.notification.convertmessagebox', ], ], 'mediawiki.special.userrights' => [ 'scripts' => 'resources/src/mediawiki.special/mediawiki.special.userrights.js', 'dependencies' => [ 'mediawiki.notification.convertmessagebox', ], ], 'mediawiki.special.preferences.styles' => [ 'styles' => 'resources/src/mediawiki.special/mediawiki.special.preferences.styles.css', 'position' => 'top', ], 'mediawiki.special.recentchanges' => [ 'scripts' => 'resources/src/mediawiki.special/mediawiki.special.recentchanges.js', 'position' => 'top', ], 'mediawiki.special.search' => [ 'position' => 'top', 'scripts' => 'resources/src/mediawiki.special/mediawiki.special.search.js', 'styles' => 'resources/src/mediawiki.special/mediawiki.special.search.css', 'dependencies' => 'mediawiki.widgets.SearchInputWidget', 'messages' => [ '<API key>', '<API key>', '<API key>', ], ], 'mediawiki.special.search.styles' => [ 'styles' => 'resources/src/mediawiki.special/mediawiki.special.search.styles.css', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.special.undelete' => [ 'scripts' => 'resources/src/mediawiki.special/mediawiki.special.undelete.js', ], 'mediawiki.special.upload' => [ 'templates' => [ 'thumbnail.html' => 'resources/src/mediawiki.special/templates/thumbnail.html', ], 'scripts' => 'resources/src/mediawiki.special/mediawiki.special.upload.js', 'messages' => [ 'widthheight', 'size-bytes', 'size-kilobytes', 'size-megabytes', 'size-gigabytes', 'largefileserver', 'editwarning-warning', // editwarning-warning uses {{int:prefs-editing}} 'prefs-editing', ], 'dependencies' => [ 'mediawiki.special.upload.styles', 'jquery.spinner', 'mediawiki.jqueryMsg', 'mediawiki.api', 'mediawiki.libs.jpegmeta', 'mediawiki.Title', 'mediawiki.util', 'mediawiki.confirmCloseWindow', 'user.options', ], ], 'mediawiki.special.upload.styles' => [ 'styles' => 'resources/src/mediawiki.special/mediawiki.special.upload.styles.css', ], 'mediawiki.special.userlogin.common.styles' => [ 'styles' => [ 'resources/src/mediawiki.special/mediawiki.special.userlogin.common.css', ], 'position' => 'top', ], 'mediawiki.special.userlogin.signup.styles' => [ 'position' => 'top', 'styles' => [ 'resources/src/mediawiki.special/mediawiki.special.userlogin.signup.css', ], ], 'mediawiki.special.userlogin.login.styles' => [ 'position' => 'top', 'styles' => [ 'resources/src/mediawiki.special/mediawiki.special.userlogin.login.css', ], ], 'mediawiki.special.userlogin.signup.js' => [ 'scripts' => 'resources/src/mediawiki.special/mediawiki.special.userlogin.signup.js', 'messages' => [ 'createacct-error', '<API key>', 'noname', 'userexists', ], 'dependencies' => [ 'mediawiki.api', 'mediawiki.jqueryMsg', 'jquery.throttle-debounce', ], ], 'mediawiki.special.unwatchedPages' => [ 'scripts' => 'resources/src/mediawiki.special/mediawiki.special.unwatchedPages.js', 'styles' => 'resources/src/mediawiki.special/mediawiki.special.unwatchedPages.css', 'messages' => [ '<API key>', '<API key>', 'unwatch', 'unwatching', 'watch', 'watcherrortext', 'watching', ], 'dependencies' => [ 'mediawiki.api', 'mediawiki.api.watch', 'mediawiki.notify', 'mediawiki.Title', 'mediawiki.util', ], ], 'mediawiki.special.watchlist' => [ 'scripts' => 'resources/src/mediawiki.special/mediawiki.special.watchlist.js', ], 'mediawiki.special.version' => [ 'styles' => 'resources/src/mediawiki.special/mediawiki.special.version.css', ], /* MediaWiki Installer */ // Used in the web installer. Test it after modifying this definition! 'mediawiki.legacy.config' => [ // These files are not actually loaded via ResourceLoader, so dependencies etc. won't work. 'scripts' => 'mw-config/config.js', 'styles' => 'mw-config/config.css', ], /* MediaWiki Legacy */ 'mediawiki.legacy.commonPrint' => [ 'position' => 'top', 'styles' => [ 'resources/src/mediawiki.legacy/commonPrint.css' => [ 'media' => 'print' ] ], ], 'mediawiki.legacy.protect' => [ 'scripts' => 'resources/src/mediawiki.legacy/protect.js', 'dependencies' => 'jquery.byteLimit', 'messages' => [ '<API key>' ] ], // Used in the web installer. Test it after modifying this definition! 'mediawiki.legacy.shared' => [ 'position' => 'top', 'styles' => [ 'resources/src/mediawiki.legacy/shared.css' => [ 'media' => 'screen' ] ], ], 'mediawiki.legacy.oldshared' => [ 'position' => 'top', 'styles' => [ 'resources/src/mediawiki.legacy/oldshared.css' => [ 'media' => 'screen' ] ], ], 'mediawiki.legacy.wikibits' => [ 'scripts' => 'resources/src/mediawiki.legacy/wikibits.js', 'dependencies' => 'mediawiki.util', 'position' => 'top', 'targets' => [ 'desktop', 'mobile' ], ], /* MediaWiki UI */ 'mediawiki.ui' => [ 'position' => 'top', 'skinStyles' => [ 'default' => [ 'resources/src/mediawiki.ui/default.less', ], ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.ui.checkbox' => [ 'position' => 'top', 'skinStyles' => [ 'default' => [ 'resources/src/mediawiki.ui/components/checkbox.less', ], ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.ui.radio' => [ 'position' => 'top', 'skinStyles' => [ 'default' => [ 'resources/src/mediawiki.ui/components/radio.less', ], ], 'targets' => [ 'desktop', 'mobile' ], ], // Lightweight module for anchor styles 'mediawiki.ui.anchor' => [ 'position' => 'top', 'skinStyles' => [ 'default' => [ 'resources/src/mediawiki.ui/components/anchors.less', ], ], 'targets' => [ 'desktop', 'mobile' ], ], // Lightweight module for button styles 'mediawiki.ui.button' => [ 'position' => 'top', 'skinStyles' => [ 'default' => [ 'resources/src/mediawiki.ui/components/buttons.less', ], ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.ui.input' => [ 'position' => 'top', 'skinStyles' => [ 'default' => [ 'resources/src/mediawiki.ui/components/inputs.less', ], ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.ui.icon' => [ 'position' => 'top', 'skinStyles' => [ 'default' => [ 'resources/src/mediawiki.ui/components/icons.less', ], ], 'targets' => [ 'desktop', 'mobile' ], ], // Lightweight module for text styles 'mediawiki.ui.text' => [ 'position' => 'top', 'skinStyles' => [ 'default' => [ 'resources/src/mediawiki.ui/components/text.less', ], ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.widgets' => [ 'scripts' => [ 'resources/src/mediawiki.widgets/mw.widgets.<API key>.js', 'resources/src/mediawiki.widgets/mw.widgets.<API key>.js', 'resources/src/mediawiki.widgets/mw.widgets.TitleWidget.js', 'resources/src/mediawiki.widgets/mw.widgets.TitleInputWidget.js', 'resources/src/mediawiki.widgets/mw.widgets.TitleSearchWidget.js', 'resources/src/mediawiki.widgets/mw.widgets.<API key>.js', 'resources/src/mediawiki.widgets/mw.widgets.TitleOptionWidget.js', ], 'skinStyles' => [ 'default' => [ 'resources/src/mediawiki.widgets/mw.widgets.TitleWidget.less', ], ], 'dependencies' => [ 'oojs-ui-widgets', 'mediawiki.widgets.styles', // TitleInputWidget 'mediawiki.Title', 'mediawiki.api', 'jquery.byteLimit', // TitleOptionWidget 'jquery.autoEllipsis', ], 'messages' => [ // <API key> 'blanknamespace', 'namespacesall', // TitleInputWidget '<API key>', '<API key>', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.widgets.styles' => [ 'skinStyles' => [ 'default' => [ 'resources/src/mediawiki.widgets/mw.widgets.<API key>.base.css', 'resources/src/mediawiki.widgets/mw.widgets.<API key>.base.css', ], ], 'position' => 'top', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.widgets.DateInputWidget' => [ 'scripts' => [ 'resources/src/mediawiki.widgets/mw.widgets.CalendarWidget.js', 'resources/src/mediawiki.widgets/mw.widgets.DateInputWidget.js', ], 'skinStyles' => [ 'default' => [ 'resources/src/mediawiki.widgets/mw.widgets.CalendarWidget.less', 'resources/src/mediawiki.widgets/mw.widgets.DateInputWidget.less', ], ], 'messages' => [ '<API key>', '<API key>', '<API key>', ], 'dependencies' => [ 'oojs-ui-widgets', 'moment', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.widgets.datetime' => [ 'scripts' => [ 'resources/src/mediawiki.widgets.datetime/mediawiki.widgets.datetime.js', 'resources/src/mediawiki.widgets.datetime/CalendarWidget.js', 'resources/src/mediawiki.widgets.datetime/DateTimeFormatter.js', 'resources/src/mediawiki.widgets.datetime/DateTimeInputWidget.js', 'resources/src/mediawiki.widgets.datetime/<API key>.js', ], 'skinStyles' => [ 'default' => [ 'resources/src/mediawiki.widgets.datetime/CalendarWidget.less', 'resources/src/mediawiki.widgets.datetime/DateTimeInputWidget.less', ], ], 'messages' => [ 'timezone-utc', 'timezone-local', 'january', 'february', 'march', 'april', 'may_long', 'june', 'july', 'august', 'september', 'october', 'november', 'december', 'jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug', 'sep', 'oct', 'nov', 'dec', 'sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday', 'sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'period-am', 'period-pm', ], 'dependencies' => [ 'oojs-ui-core', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.widgets.CategorySelector' => [ 'scripts' => [ 'resources/src/mediawiki.widgets/mw.widgets.<API key>.js', 'resources/src/mediawiki.widgets/mw.widgets.CategorySelector.js', ], 'dependencies' => [ 'oojs-ui-widgets', 'mediawiki.api', 'mediawiki.ForeignApi', 'mediawiki.Title', ], 'messages' => [ 'red-link-title', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.widgets.UserInputWidget' => [ 'scripts' => [ 'resources/src/mediawiki.widgets/mw.widgets.UserInputWidget.js', ], 'dependencies' => [ 'oojs-ui-widgets', ], 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.widgets.SearchInputWidget' => [ 'scripts' => [ 'resources/src/mediawiki.widgets/mw.widgets.SearchInputWidget.js', ], 'dependencies' => [ 'mediawiki.searchSuggest', // FIXME: Needs TitleInputWidget only 'mediawiki.widgets', ], ], 'mediawiki.widgets.SearchInputWidget.styles' => [ 'skinStyles' => [ 'default' => [ 'resources/src/mediawiki.widgets/mw.widgets.SearchInputWidget.css', ], ], 'position' => 'top', 'targets' => [ 'desktop', 'mobile' ], ], 'mediawiki.widgets.StashedFileWidget' => [ 'scripts' => [ 'resources/src/mediawiki.widgets/mw.widgets.StashedFileWidget.js', ], 'skinStyles' => [ 'default' => [ 'resources/src/mediawiki.widgets/mw.widgets.StashedFileWidget.less', ], ], 'dependencies' => [ 'oojs-ui-core', ], ], /* es5-shim */ 'es5-shim' => [ 'scripts' => [ 'resources/lib/es5-shim/es5-shim.js', 'resources/src/<API key>.js', ], 'targets' => [ 'desktop', 'mobile' ], 'skipFunction' => 'resources/src/es5-skip.js', ], /* dom-level2-shim */ // IE 8 'dom-level2-shim' => [ 'scripts' => 'resources/src/polyfill-nodeTypes.js', 'targets' => [ 'desktop', 'mobile' ], 'skipFunction' => 'resources/src/dom-level2-skip.js', ], /* OOjs */ 'oojs' => [ 'scripts' => [ 'resources/lib/oojs/oojs.jquery.js', 'resources/src/oojs-global.js', ], 'targets' => [ 'desktop', 'mobile' ], 'dependencies' => [ 'es5-shim', 'json', ], ], 'mediawiki.router' => [ 'scripts' => [ 'resources/src/mediawiki.router/index.js', ], 'targets' => [ 'desktop', 'mobile' ], 'dependencies' => [ 'oojs-router', ], ], 'oojs-router' => [ 'scripts' => [ 'resources/lib/oojs-router/oojs-router.js', ], 'targets' => [ 'desktop', 'mobile' ], 'dependencies' => [ 'oojs', ], ], /* OOjs UI */ // @see ResourcesOOUI.php ];
(function(c){var b=c.querySelector('textarea[name="message"]'),e=document.querySelectorAll("b.postauthor"),a=e.length;clickHandler=function(d){b.value+="[b]"+d.target.innerHTML+"[/b], ";b.focus()};if(b){while(a--){e[a].style.cursor="pointer";e[a].onclick=clickHandler}}})(document);
package org.iatoki.judgels.jerahmeel.models.daos; import org.iatoki.judgels.play.models.daos.Dao; import org.iatoki.judgels.jerahmeel.models.entities.<API key>; import java.util.List; public interface <API key> extends Dao<Long, <API key>> { boolean <API key>(String sessionJid, String dependencyJid); List<<API key>> findBySessionJid(String sessionJid); }
using UnityEngine; using System.Collections; public class State : MonoBehaviour { <summary> Game states. </summary> public enum States { <summary>Initial state.</summary> Null, <summary>Scene loading.</summary> LoadScene, <summary>Level specific initialization.</summary> InitializeLevel, StartLevel, Play, EndLevel, StartCutscene, Cutscene, EndCutscene } // Non-Serialized Fields // static bool printDebug = true; static States currentState; // Properties // public static bool PrintDebug { set { printDebug = value; } } public static States Current { get { return currentState; } } // Delegates // public delegate void StateDelegate(States previousState, States newState); public static event StateDelegate OnStateChanged; // Public Functions // public static void Set(States newState, string debugMessage = null) { States oldState = currentState; currentState = newState; if (printDebug) { Debug.Log("Changed state from " + oldState + " to " + newState + (debugMessage == null ? "" : " -> " + debugMessage)); } if (OnStateChanged != null) OnStateChanged(oldState, newState); } }
<?php /* Layout metadata */ $layout = wp_parse_args( $post->layout, array( 'show_title' => true )); ?><article <?php post_class( 'content-area' ); ?> itemscope itemtype="http://schema.org/Product"> <header class="content-header"> <div class="<API key> clearfix"><?php the_title( '<h1 class="entry-title content-title" itemprop="name">', '</h1>' ); $prev_post_link = <API key>( '<li class="content-nav-link">%link</li>', '<span class="<API key>">' . '<i class="fa fa-chevron-left"></i>' . '<span class="<API key>">' . esc_html__( 'Previous', 'helium' ) . '</span>' . '</span>' ); $next_post_link = get_next_post_link( '<li class="content-nav-link">%link</li>', '<span class="<API key>">' . '<span class="<API key>">' . esc_html__( 'Next', 'helium' ) . '</span>' . '<i class="fa fa-chevron-right"></i>' . '</span>' ); ?><nav class="content-nav" role="navigation" itemscope itemtype="http://schema.org/<API key>"> <ul class="plain-list"><?php if( $prev_post_link ): echo $prev_post_link; else: echo '<li class="content-nav-link disabled">'; echo '<span>'; echo '<span class="<API key>">'; echo '<i class="fa fa-chevron-left"></i>'; echo '<span class="<API key>">' . esc_html__( 'Previous', 'helium' ) . '</span>'; echo '</span>'; echo '</span>'; echo '</li>'; endif; $archive_page = Youxi()->option->get( 'edd_archive_page' ); if( 'default' == $archive_page ) { $archive_page = <API key>( 'downloads' ); } else { $archive_page = get_post( $archive_page ); if( $archive_page && 'page' == $archive_page->post_type && 'edd-store.php' == $archive_page->_wp_page_template ) { $archive_page = get_permalink( $archive_page ); } else { $archive_page = <API key>( 'downloads' ); } } if( $archive_page ) { echo '<li class="content-nav-link">'; echo '<a href="' . esc_url( $archive_page ) . '">'; echo '<span class="<API key>">'; echo '<i class="fa fa-th"></i>'; echo '</span>'; echo '</a>'; echo '</li>'; } if( $next_post_link ): echo $next_post_link; else: echo '<li class="content-nav-link disabled">'; echo '<span>'; echo '<span class="<API key>">'; echo '<span class="<API key>">' . esc_html__( 'Next', 'helium' ) . '</span>'; echo '<i class="fa fa-chevron-right"></i>'; echo '</span>'; echo '</span>'; echo '</li>'; endif; ?></ul> </nav> </div> </header> <div class="content-wrap"> <div class="content-box clearfix"> <?php if( has_post_thumbnail() ): ?><div class="featured-content"> <figure class="<API key>"> <?php the_post_thumbnail( 'full', array( 'itemprop' => 'image' ) ); ?> </figure> </div> <?php endif; ?> <div class="content-wrap-inner"> <div class="container"> <div class="row"> <div class="col-lg-9 entry-content"> <?php if( (bool) $layout['show_title'] ): the_title( '<h2 class="no-margin-top">', '</h2>' ); endif; ?> <div class="entry-content" itemprop="description"> <?php the_content(); ?> </div> </div> <div class="col-lg-3 entry-sidebar"> <ul class="entry-details plain-list"> <li> <span class="entry-detail-value <API key>"> <?php if( ! <API key>( get_the_ID() ) ): echo '<span class="edd-download-price" itemprop="price">'; edd_price( get_the_ID() ); echo '</span>'; endif; echo <API key>( array( 'price' => false ) ); ?> </span> </li> <?php if( Youxi()->option->get( 'edd_show_categories' ) ): ?><li> <h5 class="entry-detail-label"><?php esc_html_e( 'Categories', 'helium' ) ?></h5> <span class="entry-detail-value"><?php echo get_the_term_list( get_the_ID(), 'download_category', '', ', ' ) ?></span> </li> <?php endif; if( Youxi()->option->get( 'edd_show_tags' ) ): ?><li> <h5 class="entry-detail-label"><?php esc_html_e( 'Tags', 'helium' ) ?></h5> <span class="entry-detail-value"><?php echo get_the_term_list( get_the_ID(), 'download_tag', '', ', ' ) ?></span> </li> <?php endif; if( Youxi()->option->get( '<API key>' ) ): $sharing_buttons = Youxi()->option->get( '<API key>' ); $sharing_buttons = array_filter( array_map( 'trim', explode( ',', $sharing_buttons ) ) ); if( ! empty( $sharing_buttons ) ): ?><li> <h5 class="entry-detail-label"><?php esc_html_e( 'Share This', 'helium' ) ?></h5> <span class="entry-detail-value"> <div class="addthis_toolbox <API key> addthis_20x20_style" addthis:url="<?php the_permalink() ?>" addthis:title="<?php the_title_attribute() ?>"> <?php array_walk( $sharing_buttons, '<API key>' ); ?> </div> </span> </li> <?php endif; endif; ?> </ul> </div> </div> </div> </div> </div> <?php if( Youxi()->option->get( '<API key>' ) ): Youxi()->templates->get( 'related', null, get_post_type() ); endif; ?> </div> </article>
#include "sk3wldbg.h" struct sk3wldbg_sparc : public sk3wldbg { sk3wldbg_sparc(); bool save_ret_addr(uint64_t retaddr); }; struct sk3wldbg_sparc64 : public sk3wldbg { sk3wldbg_sparc64(); bool save_ret_addr(uint64_t retaddr); };
import java.io.File; import java.io.FileWriter; import java.io.PrintWriter; import java.util.ArrayList; import javax.swing.JOptionPane; /** * * @author Administrator */ public class newHytech { String destination; File file; private StateGraphAutomate autoGS = new StateGraphAutomate(); private ArrayList<Integer> vClock; int svClock; String paras=""; String vars=""; String invs=""; String <API key>=""; String StretatCourant=""; boolean anticipation=true; /** * * @param destination * @param auto * @param file */ public newHytech(String destination, StateGraphAutomate auto, File file) { this.destination = destination; this.autoGS = auto; this.file=file; vClock=new ArrayList<Integer>(); } public ArrayList<State> searchTargetStates(State etat) { ArrayList<State> targetStates = new ArrayList<State>(); ArrayList<TransState> transitions= new ArrayList<TransState>(); for (int i = 0; i < autoGS.vTranStates.size(); i++) { if (autoGS.vTranStates.get(i).getNumInitialState()==etat.getNum()) { transitions.add(autoGS.vTranStates.get(i)); } } if(transitions!=null) { for (int i = 0; i < transitions.size(); i++) { State aAjouter; for (int j = 0; j < autoGS.vStates.size(); j++) { if (autoGS.vStates.get(j).getNum()==transitions.get(i).getNumFinalState()) { targetStates.add(autoGS.vStates.get(j)); } } } } return targetStates; } /** * Cette methode sert a chercher les vitesse d'horloge pour chaque etat * @param etat : etat de depart */ public void searchClock (State etat) { // On reinitialise vClock vClock.removeAll(vClock); ArrayList<State> targetState1 = searchTargetStates(etat); ArrayList<State> targetState2 = new ArrayList<State>(targetState1); for (int i = 0; i < targetState1.size(); i++) { ArrayList<State> targetStateTemp = searchTargetStates(targetState1.get(i)); // post(post() for (int j = 0; j < targetStateTemp.size(); j++) { if (targetState2.contains(targetStateTemp.get(j))==false) { targetState2.add(targetStateTemp.get(j)); } } } for(int j=0;j<autoGS.vGeneNames.size();j++){ int value=0; if (targetState1!=null) { for (int i = 0; i < targetState1.size(); i++) { int ciblePotentielle=Integer.parseInt(targetState1.get(i).getEtiquette().substring(2*j, 2*j+1)); if (ciblePotentielle!=Integer.parseInt(etat.getEtiquette().substring(2*j, 2*j+1))) { int difference=<API key>.parseInt(etat.getEtiquette().substring(2*j, 2*j+1)); value=difference; } } } svClock=vClock.size(); if (value==0) { if (targetState2!=null) { for (int i = 0; i < targetState2.size(); i++) { int potentialTarget=Integer.parseInt(targetState2.get(i).getEtiquette().substring(2*j, 2*j+1)); if (potentialTarget!=Integer.parseInt(etat.getEtiquette().substring(2*j, 2*j+1))) { int difference=<API key>.parseInt(etat.getEtiquette().substring(2*j, 2*j+1)); value=difference; } } } } vClock.add(value); } } public void traitementHytechGe() { try { PrintWriter newFile = new PrintWriter(new FileWriter(destination)); // on donne le nom du newFile en en-tete String nomFichier = file.getName(); if (nomFichier.subSequence(nomFichier.length()-3, nomFichier.length()).equals(".hy")) { nomFichier=nomFichier.substring(0, nomFichier.length()-3); } newFile.println("-- Fichier " + nomFichier); newFile.println(""); newFile.println(""); newFile.println("var"); //noms des horloges for(int j=0;j<autoGS.vGeneNames.size();j++){ newFile.print("h" + autoGS.vGeneNames.get(j)); vars=vars + "h" + autoGS.vGeneNames.get(j); if (j!=autoGS.vGeneNames.size()-1) { newFile.print(","); vars=vars + ","; } } newFile.println(" :analog;"); newFile.println("k,n: discrete;"); newFile.println("automaton auto"); newFile.println("synclabs: ;"); newFile.println("initially True;"); for(int j=0;j<autoGS.vGeneNames.size();j++){ newFile.println(" } newFile.println(""); //By Dr Jamil paras=""; for(int i=0; i<autoGS.vStates.size() ; i++) { invs=""; searchClock(autoGS.vStates.get(i)); for (int y = 0; y < vClock.size(); y++) { if (vClock.get(y)!=0) { if (vClock.get(y)==1) { invs=invs + "h" +autoGS.vGeneNames.get(y)+" <= " +" dp"+autoGS.vGeneNames.get(y)+ autoGS.vStates.get(i).getEtiquette().replace(",", "") + " & "; } if (vClock.get(y)==-1) { invs=invs + "h" +autoGS.vGeneNames.get(y)+" >= " + " dn"+autoGS.vGeneNames.get(y)+ autoGS.vStates.get(i).getEtiquette().replace(",", "") + " & "; } } } if (invs.length()!=0) { invs=invs.substring(0, invs.length()-2); } if (invs.length()==0) { invs =" True "; } newFile.println("-- pour la configuration "+autoGS.vStates.get(i).getEtiquette()); newFile.print("loc loc_"+autoGS.vStates.get(i).getEtiquette().replace(",", "")+": while " + invs + " wait {"); //Calcul des vtesses d'horloge searchClock(autoGS.vStates.get(i)); for (int j = 0; j < vClock.size(); j++) { newFile.print("dh"+autoGS.vGeneNames.get(j)+"="+vClock.get(j)); if (j!=vClock.size()-1) { newFile.print(","); } } newFile.println("}"); invs=""; for (int j = 0; j < vClock.size(); j++) { if (vClock.get(j)!=0) { String etatCourant=autoGS.vStates.get(i).getEtiquette().replace(",", ""); String newEtat=etatCourant.substring(0, j)+(Integer.parseInt(etatCourant.substring(j, j+1))+vClock.get(j))+etatCourant.subSequence(j+1, etatCourant.length()); ///////////////////////////// by Dr jamil Ahmad // blocks the transitions due to anticipation // new /* for (int k = 0; k < autoGS.vTranStates.size(); k++) { if (autoGS.vTranStates.get(k).getNumInitialState() == autoGS.vStates.get(i).getNum()){ for (int l=0; l < autoGS.vStates.size(); l++){ if (autoGS.vTranStates.get(j).getNumFinalState() == autoGS.vStates.get(l).getNum()){ StretatCourant=autoGS.vStates.get(l).getEtiquette().replace(",", ""); if (StretatCourant == newEtat){ anticipation=false; } } } } } if (!anticipation){ if (vClock.get(j)==1) { newFile.println("when " +"h" +autoGS.vGeneNames.get(j)+"=dp"+autoGS.vGeneNames.get(j)+ autoGS.vStates.get(i).getEtiquette().replace(",", "") + " do {"+ "h" + autoGS.vGeneNames.get(j)+"'=0, k'=k+1}"+" goto loc_"+newEtat + ";"); paras=paras+"dp"+autoGS.vGeneNames.get(j)+ autoGS.vStates.get(i).getEtiquette().replace(",", "") + ","; } if (vClock.get(j)==-1) { newFile.println("when " +"h" +autoGS.vGeneNames.get(j)+"=dn"+autoGS.vGeneNames.get(j)+ autoGS.vStates.get(i).getEtiquette().replace(",", "") + " do {"+ "h" + autoGS.vGeneNames.get(j)+"'=0, k'=k+1}"+" goto loc_"+newEtat + ";"); paras=paras+"dn"+autoGS.vGeneNames.get(j)+ autoGS.vStates.get(i).getEtiquette().replace(",", "") + ","; } JOptionPane.showMessageDialog(null,paras); } } // end new */ // Old if (vClock.get(j)==1) { newFile.println("when " +"h" +autoGS.vGeneNames.get(j)+"=dp"+autoGS.vGeneNames.get(j)+ autoGS.vStates.get(i).getEtiquette().replace(",", "") + " do {"+ "h" + autoGS.vGeneNames.get(j)+"'=0, k'=k+1}"+" goto loc_"+newEtat + ";"); paras=paras+"dp"+autoGS.vGeneNames.get(j)+ autoGS.vStates.get(i).getEtiquette().replace(",", "") + ","; } if (vClock.get(j)==-1) { newFile.println("when " +"h" +autoGS.vGeneNames.get(j)+"=dn"+autoGS.vGeneNames.get(j)+ autoGS.vStates.get(i).getEtiquette().replace(",", "") + " do {"+ "h" + autoGS.vGeneNames.get(j)+"'=0, k'=k+1}"+" goto loc_"+newEtat + ";"); paras=paras+"dn"+autoGS.vGeneNames.get(j)+ autoGS.vStates.get(i).getEtiquette().replace(",", "") + ","; } // end Old } } newFile.println(""); } newFile.println("end"); paras=paras.substring(0, paras.length()-1); newFile.println("-- move parameters to var section in the model"); newFile.println( paras+": parameter;"); newFile.println("--Remove the comment symbol from the following codes for finding constraints of paths"); newFile.println("var"); newFile.println("--init_reg, acces : region;"); newFile.println("--init_reg := loc[auto] = conf_ & ;"); newFile.println("--acces := reach forward from init_reg endreach;"); newFile.println("acces:=hull(acces);"); newFile.println("--prints \" Etats accessibles \"; "); newFile.println("print hide " + vars + " in acces endhide;"); newFile.println("-- remove the comment symbol from the following codes for finding invariance kernel"); newFile.println("r_ini:= loc[auto] = loc_ ;"); newFile.println("r_new:=hide k,n in hull (post(r_ini & k=n) & ~k=n) endhide;"); newFile.println("r_old:=r_ini & ~r_ini;"); newFile.println("while not empty(r_new) and empty(r_new & r_ini) do"); newFile.println("r_old:=r_new;"); newFile.println("r_new:=hide k,n in hull(post(r_new & k=n) & ~k=n) endhide;"); newFile.println("endwhile;"); newFile.println("-- To verify that the initial zone is accessible from itself"); newFile.println("if not empty (r_new & r_ini) then"); newFile.println("---- if accessible"); newFile.println("--r_acc:=hide k,n in hull(post(r_new & k=n) &~k=n) endhide; "); newFile.println("-- r_old:=r_ini & ~r_ini; --empty region initialization"); newFile.println("--while not empty(r_acc) and not r_new<=r_old do "); newFile.println("--r_old:=r_new; "); newFile.println("--while not empty(r_acc) and empty(r_acc & r_ini) do "); newFile.println("--r_acc:= hide k,n in hull(post(r_acc & k=n) &~k=n) endhide; "); newFile.println("--endwhile; "); newFile.println("--r_acc:=hull(r_acc & r_ini); "); newFile.println("--r_new:=hull(r_acc & r_new); "); newFile.println("--r_acc:=hide k,n in hull(post(r_new & k=n) & ~k=n) endhide; "); newFile.println("--endwhile; "); newFile.println("--if not empty(r_new) then "); newFile.println("--prints \"============================================================\" ;"); newFile.println("--prints" + "Constrained region of the Invariance Kernel in the zone:" + "; "); newFile.println("----print hide h in r_new endhide; "); newFile.println("--prints \"============================================================\"; "); newFile.println("--prints \" Delay constraintes: \";"); newFile.println("--print hide" + vars + "in r_new endhide; "); newFile.println("--prints \"============================================================\"; "); newFile.println("--else "); newFile.println("--prints \"Invariance kernel does not exist from the initial region \"; "); newFile.println("--endif; "); newFile.println("--else "); newFile.println("--prints \" The initial region is not accessible from itself hence \" ; "); newFile.println("--prints \" there is no initial condition that leads to an invariance kernel.\"; "); newFile.println("--endif; "); newFile.close(); } catch (Exception e) { e.printStackTrace(); } } }
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>numpy.ma.getmask &mdash; NumPy v1.10 Manual</title> <link rel="stylesheet" type="text/css" href="../../static_/css/spc-bootstrap.css"> <link rel="stylesheet" type="text/css" href="../../static_/css/spc-extend.css"> <link rel="stylesheet" href="../../static_/scipy.css" type="text/css" > <link rel="stylesheet" href="../../static_/pygments.css" type="text/css" > <script type="text/javascript"> var <API key> = { URL_ROOT: '../../', VERSION: '1.10.1', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: false }; </script> <script type="text/javascript" src="../../static_/jquery.js"></script> <script type="text/javascript" src="../../static_/underscore.js"></script> <script type="text/javascript" src="../../static_/doctools.js"></script> <script type="text/javascript" src="../../static_/js/copybutton.js"></script> <link rel="author" title="About these documents" href="../../about.html" > <link rel="top" title="NumPy v1.10 Manual" href="../../index.html" > <link rel="up" title="Masked array operations" href="../routines.ma.html" > <link rel="next" title="numpy.ma.getmaskarray" href="numpy.ma.getmaskarray.html" > <link rel="prev" title="numpy.ma.make_mask_descr" href="numpy.ma.make_mask_descr.html" > </head> <body> <div class="container"> <div class="header"> </div> </div> <div class="container"> <div class="main"> <div class="row-fluid"> <div class="span12"> <div class="spc-navbar"> <ul class="nav nav-pills pull-left"> <li class="active"><a href="../../index.html">NumPy v1.10 Manual</a></li> <li class="active"><a href="../index.html" >NumPy Reference</a></li> <li class="active"><a href="../routines.html" >Routines</a></li> <li class="active"><a href="../routines.ma.html" accesskey="U">Masked array operations</a></li> </ul> <ul class="nav nav-pills pull-right"> <li class="active"> <a href="../../genindex.html" title="General Index" accesskey="I">index</a> </li> <li class="active"> <a href="numpy.ma.getmaskarray.html" title="numpy.ma.getmaskarray" accesskey="N">next</a> </li> <li class="active"> <a href="numpy.ma.make_mask_descr.html" title="numpy.ma.make_mask_descr" accesskey="P">previous</a> </li> </ul> </div> </div> </div> <div class="row-fluid"> <div class="spc-rightsidebar span3"> <div class="<API key>"> <h4>Previous topic</h4> <p class="topless"><a href="numpy.ma.make_mask_descr.html" title="previous chapter">numpy.ma.make_mask_descr</a></p> <h4>Next topic</h4> <p class="topless"><a href="numpy.ma.getmaskarray.html" title="next chapter">numpy.ma.getmaskarray</a></p> </div> </div> <div class="span9"> <div class="bodywrapper"> <div class="body" id="spc-section-body"> <div class="section" id="numpy-ma-getmask"> <h1>numpy.ma.getmask<a class="headerlink" href=" <dl class="function"> <dt id="numpy.ma.getmask"> <tt class="descclassname">numpy.ma.</tt><tt class="descname">getmask</tt><big>(</big><em>a</em><big>)</big><a class="reference external" href="http://github.com/numpy/numpy/blob/v1.10.1/numpy/ma/core.py <dd><p>Return the mask of a masked array, or nomask.</p> <p>Return the mask of <em class="xref py py-obj">a</em> as an ndarray if <em class="xref py py-obj">a</em> is a <a class="reference internal" href="../maskedarray.baseclass.html#numpy.ma.MaskedArray" title="numpy.ma.MaskedArray"><tt class="xref py py-obj docutils literal"><span class="pre">MaskedArray</span></tt></a> and the mask is not <a class="reference internal" href="../maskedarray.baseclass.html#numpy.ma.nomask" title="numpy.ma.nomask"><tt class="xref py py-obj docutils literal"><span class="pre">nomask</span></tt></a>, else return <a class="reference internal" href="../maskedarray.baseclass.html#numpy.ma.nomask" title="numpy.ma.nomask"><tt class="xref py py-obj docutils literal"><span class="pre">nomask</span></tt></a>. To guarantee a full array of booleans of the same shape as a, use <a class="reference internal" href="numpy.ma.getmaskarray.html#numpy.ma.getmaskarray" title="numpy.ma.getmaskarray"><tt class="xref py py-obj docutils literal"><span class="pre">getmaskarray</span></tt></a>.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><p class="first"><strong>a</strong> : array_like</p> <blockquote class="last"> <div><p>Input <a class="reference internal" href="../maskedarray.baseclass.html#numpy.ma.MaskedArray" title="numpy.ma.MaskedArray"><tt class="xref py py-obj docutils literal"><span class="pre">MaskedArray</span></tt></a> for which the mask is required.</p> </div></blockquote> </td> </tr> </tbody> </table> <div class="admonition seealso"> <p class="first admonition-title">See also</p> <dl class="last docutils"> <dt><a class="reference internal" href="numpy.ma.getdata.html#numpy.ma.getdata" title="numpy.ma.getdata"><tt class="xref py py-obj docutils literal"><span class="pre">getdata</span></tt></a></dt> <dd>Return the data of a masked array as an ndarray.</dd> <dt><a class="reference internal" href="numpy.ma.getmaskarray.html#numpy.ma.getmaskarray" title="numpy.ma.getmaskarray"><tt class="xref py py-obj docutils literal"><span class="pre">getmaskarray</span></tt></a></dt> <dd>Return the mask of a masked array, or full array of False.</dd> </dl> </div> <p class="rubric">Examples</p> <div class="highlight-python"><div class="highlight"><pre><span class="gp">&gt;&gt;&gt; </span><span class="kn">import</span> <span class="nn">numpy.ma</span> <span class="kn">as</span> <span class="nn">ma</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">a</span> <span class="o">=</span> <span class="n">ma</span><span class="o">.</span><span class="n">masked_equal</span><span class="p">([[</span><span class="mi">1</span><span class="p">,</span><span class="mi">2</span><span class="p">],[</span><span class="mi">3</span><span class="p">,</span><span class="mi">4</span><span class="p">]],</span> <span class="mi">2</span><span class="p">)</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">a</span> <span class="go">masked_array(data =</span> <span class="go"> [[1 --]</span> <span class="go"> [3 4]],</span> <span class="go"> mask =</span> <span class="go"> [[False True]</span> <span class="go"> [False False]],</span> <span class="go"> fill_value=999999)</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">ma</span><span class="o">.</span><span class="n">getmask</span><span class="p">(</span><span class="n">a</span><span class="p">)</span> <span class="go">array([[False, True],</span> <span class="go"> [False, False]], dtype=bool)</span> </pre></div> </div> <p>Equivalently use the <a class="reference internal" href="../maskedarray.baseclass.html#numpy.ma.MaskedArray" title="numpy.ma.MaskedArray"><tt class="xref py py-obj docutils literal"><span class="pre">MaskedArray</span></tt></a> <em class="xref py py-obj">mask</em> attribute.</p> <div class="highlight-python"><div class="highlight"><pre><span class="gp">&gt;&gt;&gt; </span><span class="n">a</span><span class="o">.</span><span class="n">mask</span> <span class="go">array([[False, True],</span> <span class="go"> [False, False]], dtype=bool)</span> </pre></div> </div> <p>Result when mask == <a class="reference internal" href="../maskedarray.baseclass.html#numpy.ma.nomask" title="numpy.ma.nomask"><tt class="xref py py-obj docutils literal"><span class="pre">nomask</span></tt></a></p> <div class="highlight-python"><div class="highlight"><pre><span class="gp">&gt;&gt;&gt; </span><span class="n">b</span> <span class="o">=</span> <span class="n">ma</span><span class="o">.</span><span class="n">masked_array</span><span class="p">([[</span><span class="mi">1</span><span class="p">,</span><span class="mi">2</span><span class="p">],[</span><span class="mi">3</span><span class="p">,</span><span class="mi">4</span><span class="p">]])</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">b</span> <span class="go">masked_array(data =</span> <span class="go"> [[1 2]</span> <span class="go"> [3 4]],</span> <span class="go"> mask =</span> <span class="go"> False,</span> <span class="go"> fill_value=999999)</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">ma</span><span class="o">.</span><span class="n">nomask</span> <span class="go">False</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">ma</span><span class="o">.</span><span class="n">getmask</span><span class="p">(</span><span class="n">b</span><span class="p">)</span> <span class="o">==</span> <span class="n">ma</span><span class="o">.</span><span class="n">nomask</span> <span class="go">True</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">b</span><span class="o">.</span><span class="n">mask</span> <span class="o">==</span> <span class="n">ma</span><span class="o">.</span><span class="n">nomask</span> <span class="go">True</span> </pre></div> </div> </dd></dl> </div> </div> </div> </div> </div> </div> </div> <div class="container <API key>"> <div class="spc-navbar"> </div> </div> <div class="container"> <div class="footer"> <div class="row-fluid"> <ul class="inline pull-left"> <li> &copy; Copyright 2008-2009, The Scipy community. </li> <li> Last updated on Oct 18, 2015. </li> <li> Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.2.1. </li> </ul> </div> </div> </div> </body> </html>
package ch.arkeine.smartgm.model.database.dal; import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import java.util.List; import ch.arkeine.smartgm.model.dao.object.Dice; import ch.arkeine.smartgm.model.dao.<API key>.<API key>; import ch.arkeine.smartgm.model.database.contracts.DiceTableContract; /** * Data layer access object. Can store a dice object in the database. * (Provide all CRUD operations) */ public class DicePersistence extends <API key><Dice> implements <API key> { // CONSTRUCTOR public DicePersistence(Context context) { super(context); } // OVERRIDE @Override public String getTableName() { return DiceTableContract.TABLE_NAME; } @Override public String getColumnId() { return DiceTableContract.COLUMN_ID; } @Override public Dice createObject(Cursor cursor) { return new Dice(cursor.getLong(0), cursor.getLong(1), cursor.getInt(2)); } @Override public ContentValues createContentValue(Dice obj) { ContentValues values = new ContentValues(); values.put(DiceTableContract.COLUMN_NBFACE, obj.getNbFaces()); values.put(DiceTableContract.COLUMN_UNIVERSE, obj.getUniverseId()); return values; } @Override public String getColumnOrderBy() { return DiceTableContract.COLUMN_NBFACE; } @Override public List<Dice> listDice(long universeId) { final String <API key> = DiceTableContract.COLUMN_UNIVERSE + " =?"; Cursor cursor = db.query(getTableName(), null, <API key>, new String[]{String.valueOf(universeId)}, null, null, getColumnOrderBy()); List<Dice> list = <API key>(cursor); cursor.close(); return list; } }
/* Title: attjobs - Default Stylesheet Authors: Bobby Email: bobby.kc@tmp.com Company: TMP Worldwide Advertising and Communications, LLC */ @media screen, projection { *html #primarynav { margin-left:8px !important; } *html #btn-slide { display:none; } *html #carousel_ul li h3 { display:none; } .cbx-select { *z-index:-1; /* works for IE7 and below */ } }
/** * SECTION:gstglcontext * @short_description: OpenGL context abstraction * @title: GstGLContext * @see_also: #GstGLDisplay, #GstGLWindow * * #GstGLContext wraps an OpenGL context object in a uniform API. As a result * of the limitation on OpenGL context, this object is not thread safe unless * specified and must only be activated in a single thread. */ #if HAVE_CONFIG_H # include "config.h" #endif #if defined(ANDROID) || defined(__ANDROID__) /* Avoid a linker error with _isoc99_sscanf() when building a shared library * for android */ #define _GNU_SOURCE #endif #ifndef GL_NUM_EXTENSIONS #define GL_NUM_EXTENSIONS 0x0000821d #endif #include <gmodule.h> #include "gl.h" #include "gstglcontext.h" #if <API key> #include "x11/gstglcontext_glx.h" #endif #if <API key> #include "egl/gstglcontext_egl.h" #endif #if <API key> #include "cocoa/gstglcontext_cocoa.h" #endif #if <API key> #include "win32/gstglcontext_wgl.h" #endif #if <API key> #include "eagl/gstglcontext_eagl.h" #endif <API key> (gst_performance); static GModule *module_self; #if GST_GL_HAVE_OPENGL static GOnce module_opengl_gonce = G_ONCE_INIT; static GModule *module_opengl; static gpointer load_opengl_module (gpointer user_data) { #ifdef <API key> module_opengl = g_module_open (<API key>, G_MODULE_BIND_LAZY); #else /* On Linux the .so is only in -dev packages, try with a real soname * Proper compilers will optimize away the strcmp */ if (strcmp (G_MODULE_SUFFIX, "so") == 0) module_opengl = g_module_open ("libGL.so.1", G_MODULE_BIND_LAZY); /* This automatically handles the suffix and even .la files */ if (!module_opengl) module_opengl = g_module_open ("libGL", G_MODULE_BIND_LAZY); #endif return NULL; } #endif #if GST_GL_HAVE_GLES2 static GOnce module_gles2_gonce = G_ONCE_INIT; static GModule *module_gles2; static gpointer load_gles2_module (gpointer user_data) { #ifdef <API key> module_gles2 = g_module_open (<API key>, G_MODULE_BIND_LAZY); #else /* On Linux the .so is only in -dev packages, try with a real soname * Proper compilers will optimize away the strcmp */ if (strcmp (G_MODULE_SUFFIX, "so") == 0) module_gles2 = g_module_open ("libGLESv2.so.2", G_MODULE_BIND_LAZY); /* This automatically handles the suffix and even .la files */ if (!module_gles2) module_gles2 = g_module_open ("libGLESv2", G_MODULE_BIND_LAZY); #endif return NULL; } #endif #if GST_GL_HAVE_GLES3 #error "Add module loading support for GLES3" #endif #define GST_CAT_DEFAULT <API key> GST_DEBUG_CATEGORY (GST_CAT_DEFAULT); #define <API key> parent_class <API key> (GstGLContext, gst_gl_context, GST_TYPE_OBJECT); #define <API key>(o) \ (<API key>((o), GST_GL_TYPE_CONTEXT, GstGLContextPrivate)) static gpointer <API key> (GstGLContext * context); static void <API key> (GObject * object); struct <API key> { GstGLDisplay *display; GThread *gl_thread; GThread *active_thread; /* conditions */ GMutex render_lock; GCond create_cond; GCond destroy_cond; gboolean created; gboolean alive; GWeakRef other_context_ref; GError **error; gint gl_major; gint gl_minor; gchar *gl_exts; }; typedef struct { GstGLContext parent; guintptr handle; GstGLPlatform platform; GstGLAPI available_apis; } GstGLWrappedContext; typedef struct { GstGLContextClass parent; } <API key>; #define <API key> (<API key>()) GType <API key> (void); G_DEFINE_TYPE (GstGLWrappedContext, <API key>, GST_GL_TYPE_CONTEXT); #define <API key>(o) (<API key>((o), <API key>, GstGLWrappedContext)) #define <API key>(k) (G_TYPE_CHECK_CLASS((k), GST_GL_TYPE_CONTEXT, GstGLContextClass)) #define <API key>(o) (<API key>((o), <API key>)) #define <API key>(k) (<API key>((k), <API key>)) #define <API key>(o) (<API key>((o), <API key>, <API key>)) GQuark <API key> (void) { return <API key> ("<API key>"); } static void _ensure_window (GstGLContext * context) { GstGLWindow *window; if (context->window) return; window = gst_gl_window_new (context->priv->display); <API key> (context, window); gst_object_unref (window); } static void gst_gl_context_init (GstGLContext * context) { context->priv = <API key> (context); context->window = NULL; context->gl_vtable = g_slice_alloc0 (sizeof (GstGLFuncs)); g_mutex_init (&context->priv->render_lock); g_cond_init (&context->priv->create_cond); g_cond_init (&context->priv->destroy_cond); context->priv->created = FALSE; g_weak_ref_init (&context->priv->other_context_ref, NULL); } static void <API key> (GstGLContextClass * klass) { <API key> (klass, sizeof (GstGLContextPrivate)); module_self = g_module_open (NULL, G_MODULE_BIND_LAZY); klass->get_proc_address = GST_DEBUG_FUNCPTR (<API key>); G_OBJECT_CLASS (klass)->finalize = <API key>; } static void _init_debug (void) { static volatile gsize _init = 0; if (g_once_init_enter (&_init)) { <API key> (<API key>, "glcontext", 0, "glcontext element"); <API key> (gst_performance, "GST_PERFORMANCE"); g_once_init_leave (&_init, 1); } } /** * gst_gl_context_new: * @display: a #GstGLDisplay * * Create a new #GstGLContext with the specified @display * * Returns: a new #GstGLContext */ GstGLContext * gst_gl_context_new (GstGLDisplay * display) { GstGLContext *context = NULL; const gchar *user_choice; _init_debug (); user_choice = g_getenv ("GST_GL_PLATFORM"); GST_INFO ("creating a context, user choice:%s", user_choice); #if <API key> if (!context && (!user_choice || g_strstr_len (user_choice, 3, "glx"))) context = GST_GL_CONTEXT (<API key> ()); #endif #if <API key> if (!context && (!user_choice || g_strstr_len (user_choice, 7, "egl"))) context = GST_GL_CONTEXT (<API key> ()); #endif #if <API key> if (!context && (!user_choice || g_strstr_len (user_choice, 5, "cgl"))) context = GST_GL_CONTEXT (<API key> ()); #endif #if <API key> if (!context && (!user_choice || g_strstr_len (user_choice, 3, "wgl"))) { context = GST_GL_CONTEXT (<API key> ()); } #endif #if <API key> if (!context && (!user_choice || g_strstr_len (user_choice, 5, "eagl"))) context = GST_GL_CONTEXT (<API key> ()); #endif if (!context) { /* subclass returned a NULL context */ GST_WARNING ("Could not create context. user specified %s", user_choice ? user_choice : "(null)"); return NULL; } context->priv->display = gst_object_ref (display); return context; } /** * <API key>: * @display: a #GstGLDisplay * @handle: the OpenGL context to wrap * @context_type: a #GstGLPlatform specifying the type of context in @handle * @available_apis: a #GstGLAPI containing the available OpenGL apis in @handle * * Wraps an existing OpenGL context into a #GstGLContext. * * Returns: a #GstGLContext wrapping @handle */ GstGLContext * <API key> (GstGLDisplay * display, guintptr handle, GstGLPlatform context_type, GstGLAPI available_apis) { GstGLContext *context; GstGLWrappedContext *context_wrap = NULL; _init_debug (); context_wrap = g_object_new (<API key>, NULL); if (!context_wrap) { /* subclass returned a NULL context */ GST_ERROR ("Could not wrap existing context"); return NULL; } context = (GstGLContext *) context_wrap; context->priv->display = gst_object_ref (display); context_wrap->handle = handle; context_wrap->platform = context_type; context_wrap->available_apis = available_apis; return context; } static void <API key> (GObject * object) { GstGLContext *context = GST_GL_CONTEXT (object); if (context->window) { <API key> (context->window, NULL, NULL, NULL); <API key> (context->window, NULL, NULL, NULL); if (context->priv->alive) { g_mutex_lock (&context->priv->render_lock); GST_INFO ("send quit gl window loop"); gst_gl_window_quit (context->window); while (context->priv->alive) { g_cond_wait (&context->priv->destroy_cond, &context->priv->render_lock); } g_mutex_unlock (&context->priv->render_lock); } <API key> (context->window, NULL, NULL, NULL); if (context->priv->gl_thread) { gpointer ret = g_thread_join (context->priv->gl_thread); GST_INFO ("gl thread joined"); if (ret != NULL) GST_ERROR ("gl thread returned a non-null pointer"); context->priv->gl_thread = NULL; } gst_object_unref (context->window); } gst_object_unref (context->priv->display); if (context->gl_vtable) { g_slice_free (GstGLFuncs, context->gl_vtable); context->gl_vtable = NULL; } g_mutex_clear (&context->priv->render_lock); g_cond_clear (&context->priv->destroy_cond); g_cond_clear (&context->priv->create_cond); g_free (context->priv->gl_exts); g_weak_ref_clear (&context->priv->other_context_ref); G_OBJECT_CLASS (<API key>)->finalize (object); } /** * <API key>: * @context: a #GstGLContext * @activate: %TRUE to activate, %FALSE to deactivate * * (De)activate the OpenGL context represented by this @context. * * In OpenGL terms, calls eglMakeCurrent or similar with this context and the * currently set window. See <API key>() for details. * * Returns: Whether the activation succeeded */ gboolean <API key> (GstGLContext * context, gboolean activate) { GstGLContextClass *context_class; gboolean result; <API key> (GST_GL_IS_CONTEXT (context), FALSE); context_class = <API key> (context); <API key> (context_class->activate != NULL, FALSE); GST_OBJECT_LOCK (context); result = context_class->activate (context, activate); context->priv->active_thread = result && activate ? context->priv->gl_thread : NULL; GST_OBJECT_UNLOCK (context); return result; } /** * <API key>: * @context: a #GstGLContext * * Returns: (transfer full): The #GThread, @context is current in or NULL * * Since: 1.6 */ GThread * <API key> (GstGLContext * context) { GThread *ret; GST_OBJECT_LOCK (context); ret = context->priv->active_thread; if (ret) g_thread_ref (ret); GST_OBJECT_UNLOCK (context); return ret; } /** * <API key>: * @context: a #GstGLContext * * Get the currently enabled OpenGL api. * * The currently available API may be limited by the #GstGLDisplay in use and/or * the #GstGLWindow chosen. * * Returns: the currently available OpenGL api */ GstGLAPI <API key> (GstGLContext * context) { GstGLContextClass *context_class; <API key> (GST_GL_IS_CONTEXT (context), GST_GL_API_NONE); context_class = <API key> (context); <API key> (context_class->get_gl_api != NULL, GST_GL_API_NONE); return context_class->get_gl_api (context); } /** * <API key>: * @context: a #GstGLContext * @name: an opengl function name * * Get a function pointer to a specified opengl function, @name. If the the * specific function does not exist, NULL is returned instead. * * Platform specfic functions (names starting 'egl', 'glX', 'wgl', etc) can also * be retreived using this method. * * Returns: a function pointer or NULL */ gpointer <API key> (GstGLContext * context, const gchar * name) { gpointer ret; GstGLContextClass *context_class; <API key> (GST_GL_IS_CONTEXT (context), NULL); <API key> (!<API key> (context), NULL); context_class = <API key> (context); <API key> (context_class->get_proc_address != NULL, NULL); ret = context_class->get_proc_address (context, name); return ret; } gpointer <API key> (GstGLContext * context, const gchar * name) { gpointer ret = NULL; GstGLAPI gl_api = <API key> (context); /* First try to load symbol from the selected GL API for this context */ #if GST_GL_HAVE_GLES2 if (!ret && (gl_api & GST_GL_API_GLES2)) { g_once (&module_gles2_gonce, load_gles2_module, NULL); if (module_gles2) g_module_symbol (module_gles2, name, &ret); } #endif #if GST_GL_HAVE_OPENGL if (!ret && (gl_api & (GST_GL_API_OPENGL | GST_GL_API_OPENGL3))) { g_once (&module_opengl_gonce, load_opengl_module, NULL); if (module_opengl) g_module_symbol (module_opengl, name, &ret); } #endif /* Otherwise fall back to the current module */ if (!ret) g_module_symbol (module_self, name, &ret); return ret; } /** * <API key>: * @context: a #GstGLContext * @window: (transfer full): a #GstGLWindow * * Set's the current window on @context to @window. The window can only be * changed before <API key>() has been called and the @window is not * already running. * * Returns: Whether the window was successfully updated */ gboolean <API key> (GstGLContext * context, GstGLWindow * window) { <API key> (!<API key> (context), FALSE); /* we can't change the window while we are running */ if (context->priv->alive) return FALSE; if (window) { if (<API key> (window)) return FALSE; g_weak_ref_set (&window->context_ref, context); } if (context->window) gst_object_unref (context->window); context->window = window ? gst_object_ref (window) : NULL; return TRUE; } /** * <API key>: * @context: a #GstGLContext * * Returns: the currently set window */ GstGLWindow * <API key> (GstGLContext * context) { <API key> (GST_GL_IS_CONTEXT (context), NULL); if (<API key> (context)) return NULL; _ensure_window (context); return gst_object_ref (context->window); } static gboolean <API key> (GstGLContext * context, GstGLContext * other_context, GstGLContext ** root) { GstGLContext *next = gst_object_ref (context); GstGLContext *prev = NULL; /* given a context tree where --> means "has other gl context": * * a-->b-->c-->d * / / * e / * / * f-->g * * return TRUE if @other_context is a descendant of @context * * e.g. [a, b], [f, d], [e, c] are all descendants * but [b, a], [d, f], [e, f] are not descendants. Provide the root node (d) * so that we can check if two chains end up at the end with the same * GstGLContext */ while (next != NULL) { if (next == other_context) { gst_object_unref (next); if (root) *root = NULL; return TRUE; } prev = next; next = g_weak_ref_get (&next->priv->other_context_ref); gst_object_unref (prev); } if (root != NULL) *root = prev; return FALSE; } /** * <API key>: * @context: a #GstGLContext * @other_context: another #GstGLContext * * Returns: whether @context and @other_context are able to share OpenGL * resources. * * Since: 1.6 */ gboolean <API key> (GstGLContext * context, GstGLContext * other_context) { GstGLContext *root1, *root2; <API key> (GST_GL_IS_CONTEXT (context), FALSE); <API key> (GST_GL_IS_CONTEXT (other_context), FALSE); /* check if the contexts are descendants or the root nodes are the same */ return context == other_context || <API key> (context, other_context, &root1) || <API key> (other_context, context, &root2) || ((root1 != NULL || root2 != NULL) && root1 == root2); } /** * <API key>: * @context: a #GstGLContext: * @other_context: (allow-none): a #GstGLContext to share OpenGL objects with * @error: (allow-none): a #GError * * Creates an OpenGL context in the current thread with the specified * @other_context as a context to share shareable OpenGL objects with. See the * OpenGL specification for what is shared between contexts. * * If an error occurs, and @error is not %NULL, then error will contain details * of the error and %FALSE will be returned. * * Should only be called once. * * Returns: whether the context could successfully be created */ gboolean <API key> (GstGLContext * context, GstGLContext * other_context, GError ** error) { gboolean alive = FALSE; <API key> (GST_GL_IS_CONTEXT (context), FALSE); <API key> (!<API key> (context), FALSE); _ensure_window (context); g_mutex_lock (&context->priv->render_lock); if (!context->priv->created) { g_weak_ref_set (&context->priv->other_context_ref, other_context); context->priv->error = error; context->priv->gl_thread = g_thread_new ("gstglcontext", (GThreadFunc) <API key>, context); g_cond_wait (&context->priv->create_cond, &context->priv->render_lock); context->priv->created = TRUE; GST_INFO ("gl thread created"); } alive = context->priv->alive; g_mutex_unlock (&context->priv->render_lock); return alive; } #ifndef GL_DEBUG_TYPE_ERROR #define GL_DEBUG_TYPE_ERROR 0x824C #endif #ifndef <API key> #define <API key> 0x824D #endif #ifndef <API key> #define <API key> 0x824E #endif #ifndef <API key> #define <API key> 0x824F #endif #ifndef <API key> #define <API key> 0x8250 #endif #ifndef <API key> #define <API key> 0x8268 #endif #ifndef GL_DEBUG_TYPE_OTHER #define GL_DEBUG_TYPE_OTHER 0x8251 #endif #ifndef <API key> #define <API key> 0x9146 #endif #ifndef <API key> #define <API key> 0x9147 #endif #ifndef <API key> #define <API key> 0x9148 #endif #ifndef <API key> #define <API key> 0x826B #endif #ifndef GL_DEBUG_SOURCE_API #define GL_DEBUG_SOURCE_API 0x8246 #endif #ifndef <API key> #define <API key> 0x8247 #endif #ifndef <API key> #define <API key> 0x8248 #endif #ifndef <API key> #define <API key> 0x8249 #endif #ifndef <API key> #define <API key> 0x824A #endif #ifndef <API key> #define <API key> 0x824B #endif #if !defined(<API key>) static inline const gchar * <API key> (GLenum severity) { switch (severity) { case <API key>: return "high"; case <API key>: return "medium"; case <API key>: return "low"; case <API key>: return "notification"; default: return "invalid"; } } static inline const gchar * <API key> (GLenum source) { switch (source) { case GL_DEBUG_SOURCE_API: return "API"; case <API key>: return "winsys"; case <API key>: return "shader compiler"; case <API key>: return "third party"; case <API key>: return "application"; case <API key>: return "other"; default: return "invalid"; } } static inline const gchar * <API key> (GLenum type) { switch (type) { case GL_DEBUG_TYPE_ERROR: return "error"; case <API key>: return "deprecated"; case <API key>: return "undefined"; case <API key>: return "portability"; case <API key>: return "performance"; case <API key>: return "debug marker"; case GL_DEBUG_TYPE_OTHER: return "other"; default: return "invalid"; } } static void GSTGLAPI <API key> (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const gchar * message, gpointer user_data) { GstGLContext *context = user_data; const gchar *severity_str = <API key> (severity); const gchar *source_str = <API key> (source); const gchar *type_str = <API key> (type); switch (type) { case GL_DEBUG_TYPE_ERROR: case <API key>: GST_ERROR_OBJECT (context, "%s: GL %s from %s id:%u, %s", severity_str, type_str, source_str, id, message); break; case <API key>: case <API key>: GST_FIXME_OBJECT (context, "%s: GL %s from %s id:%u, %s", severity_str, type_str, source_str, id, message); break; case <API key>: <API key> (gst_performance, context, "%s: GL %s from %s id:%u," " %s", severity_str, type_str, source_str, id, message); break; default: GST_DEBUG_OBJECT (context, "%s: GL %s from %s id:%u, %s", severity_str, type_str, source_str, id, message); break; } } #endif static gboolean <API key> (GstGLContext * context, GstGLAPI gl_api, gint * gl_major, gint * gl_minor, GError ** error) { const GstGLFuncs *gl; guint maj = 0, min = 0; GLenum gl_err = GL_NO_ERROR; const gchar *opengl_version = NULL; gl = context->gl_vtable; GST_INFO ("GL_VERSION: %s", GST_STR_NULL ((const gchar *) gl->GetString (GL_VERSION))); GST_INFO ("<API key>: %s", GST_STR_NULL ((const gchar *) gl->GetString (<API key>))); GST_INFO ("GL_VENDOR: %s", GST_STR_NULL ((const gchar *) gl->GetString (GL_VENDOR))); GST_INFO ("GL_RENDERER: %s", GST_STR_NULL ((const gchar *) gl->GetString (GL_RENDERER))); gl_err = gl->GetError (); if (gl_err != GL_NO_ERROR) { g_set_error (error, <API key>, <API key>, "glGetString error: 0x%x", gl_err); return FALSE; } opengl_version = (const gchar *) gl->GetString (GL_VERSION); if (opengl_version && gl_api & GST_GL_API_GLES2) /* gles starts with "OpenGL ES " */ opengl_version = &opengl_version[10]; if (opengl_version) sscanf (opengl_version, "%d.%d", &maj, &min); /* OpenGL > 1.2.0 */ if (gl_api & GST_GL_API_OPENGL || gl_api & GST_GL_API_OPENGL3) { if ((maj < 1) || (maj < 2 && maj >= 1 && min < 2)) { g_set_error (error, <API key>, <API key>, "OpenGL >= 1.2.0 required, found %u.%u", maj, min); return FALSE; } } if (gl_major) *gl_major = maj; if (gl_minor) *gl_minor = min; return TRUE; } static GstGLAPI _compiled_api (void) { GstGLAPI ret = GST_GL_API_NONE; #if GST_GL_HAVE_OPENGL ret |= GST_GL_API_OPENGL | GST_GL_API_OPENGL3; #endif #if GST_GL_HAVE_GLES2 ret |= GST_GL_API_GLES2; #endif return ret; } static void <API key> (GstGLContext * context) { g_mutex_unlock (&context->priv->render_lock); } static GString * <API key> (GstGLContext * context) { const GstGLFuncs *gl = context->gl_vtable; GString *ext_g_str = g_string_sized_new (1024); const gchar *ext_const_c_str = NULL; int i, n; gl->GetIntegerv (GL_NUM_EXTENSIONS, &n); for (i = 0; i < n; i++) { ext_const_c_str = (const gchar *) gl->GetStringi (GL_EXTENSIONS, i); if (ext_const_c_str) <API key> (ext_g_str, "%s ", ext_const_c_str); } return ext_g_str; } //gboolean //<API key> (GstGLContext * context, GstGLContext * other_context, GError ** error) static gpointer <API key> (GstGLContext * context) { GstGLContextClass *context_class; GstGLWindowClass *window_class; GstGLFuncs *gl; gboolean ret = FALSE; GstGLAPI compiled_api, user_api, gl_api; gchar *api_string; gchar *compiled_api_s; gchar *user_api_string; const gchar *user_choice; GError **error; GstGLContext *other_context; GString *ext_g_str = NULL; const gchar *ext_const_c_str = NULL; g_mutex_lock (&context->priv->render_lock); error = context->priv->error; other_context = g_weak_ref_get (&context->priv->other_context_ref); context_class = <API key> (context); window_class = <API key> (context->window); if (window_class->open) { if (!window_class->open (context->window, error)) { g_assert (error == NULL || *error != NULL); goto failure; } } gl = context->gl_vtable; compiled_api = _compiled_api (); user_choice = g_getenv ("GST_GL_API"); user_api = <API key> (user_choice); user_api_string = <API key> (user_api); compiled_api_s = <API key> (compiled_api); if ((user_api & compiled_api) == GST_GL_API_NONE) { g_set_error (error, <API key>, <API key>, "Cannot create context with the user requested api (%s). " "We have support for (%s)", user_api_string, compiled_api_s); g_free (user_api_string); g_free (compiled_api_s); goto failure; } if (context_class->choose_format && !context_class->choose_format (context, error)) { g_assert (error == NULL || *error != NULL); g_free (compiled_api_s); g_free (user_api_string); goto failure; } GST_INFO ("Attempting to create opengl context. user chosen api(s) (%s), " "compiled api support (%s)", user_api_string, compiled_api_s); if (!context_class->create_context (context, compiled_api & user_api, other_context, error)) { g_assert (error == NULL || *error != NULL); g_free (compiled_api_s); g_free (user_api_string); goto failure; } GST_INFO ("created context"); if (!context_class->activate (context, TRUE)) { g_set_error (error, <API key>, <API key>, "Failed to activate the GL Context"); g_free (compiled_api_s); g_free (user_api_string); goto failure; } gl_api = <API key> (context); g_assert (gl_api != GST_GL_API_NONE && gl_api != GST_GL_API_ANY); api_string = <API key> (gl_api); GST_INFO ("available GL APIs: %s", api_string); if (((compiled_api & gl_api) & user_api) == GST_GL_API_NONE) { g_set_error (error, <API key>, <API key>, "failed to create context, context " "could not provide correct api. user (%s), compiled (%s), context (%s)", user_api_string, compiled_api_s, api_string); g_free (api_string); g_free (compiled_api_s); g_free (user_api_string); goto failure; } g_free (api_string); g_free (compiled_api_s); g_free (user_api_string); gl->GetError = <API key> (context, "glGetError"); gl->GetString = <API key> (context, "glGetString"); gl->GetStringi = <API key> (context, "glGetStringi"); gl->GetIntegerv = <API key> (context, "glGetIntegerv"); if (!gl->GetError || !gl->GetString) { g_set_error (error, <API key>, <API key>, "could not GetProcAddress core opengl functions"); goto failure; } /* gl api specific code */ ret = <API key> (context, gl_api, &context->priv->gl_major, &context->priv->gl_minor, error); if (!ret) { g_assert (error == NULL || *error != NULL); goto failure; } /* GL core contexts and GLES3 */ if (gl->GetIntegerv && gl->GetStringi && context->priv->gl_major >= 3) ext_g_str = <API key> (context); if (ext_g_str && ext_g_str->len) { GST_DEBUG_OBJECT (context, "GL_EXTENSIONS: %s", ext_g_str->str); <API key> (context, context->priv->gl_major, context->priv->gl_minor, ext_g_str->str); context->priv->gl_exts = g_string_free (ext_g_str, FALSE); } else { ext_const_c_str = (const gchar *) gl->GetString (GL_EXTENSIONS); if (!ext_const_c_str) ext_const_c_str = ""; GST_DEBUG_OBJECT (context, "GL_EXTENSIONS: %s", ext_const_c_str); <API key> (context, context->priv->gl_major, context->priv->gl_minor, ext_const_c_str); context->priv->gl_exts = g_strdup (ext_const_c_str); } context->priv->alive = TRUE; if (gl-><API key>) { #if !defined(<API key>) GST_INFO ("Enabling GL context debugging"); /* enable them all */ gl->DebugMessageControl (GL_DONT_CARE, GL_DONT_CARE, GL_DONT_CARE, 0, 0, GL_TRUE); gl-><API key> (<API key>, context); #endif } if (other_context) gst_object_unref (other_context); g_cond_signal (&context->priv->create_cond); // g_mutex_unlock (&context->priv->render_lock); <API key> (context->window, (GstGLWindowCB) <API key>, context, NULL); gst_gl_window_run (context->window); GST_INFO ("loop exited\n"); g_mutex_lock (&context->priv->render_lock); context->priv->alive = FALSE; context_class->activate (context, FALSE); context_class->destroy_context (context); /* User supplied callback */ if (context->window->close) context->window->close (context->window->close_data); /* window specific shutdown */ if (window_class->close) { window_class->close (context->window); } g_cond_signal (&context->priv->destroy_cond); g_mutex_unlock (&context->priv->render_lock); return NULL; failure: { if (other_context) gst_object_unref (other_context); g_cond_signal (&context->priv->create_cond); g_mutex_unlock (&context->priv->render_lock); return NULL; } } /** * <API key>: * @context: a #GstGLContext: * * Destroys an OpenGL context. * * Should only be called after <API key>() has been successfully * called for this context. */ void <API key> (GstGLContext * context) { GstGLContextClass *context_class; g_return_if_fail (GST_GL_IS_CONTEXT (context)); context_class = <API key> (context); g_return_if_fail (context_class->destroy_context != NULL); context_class->destroy_context (context); } /** * <API key>: * @context: a #GstGLContext: * * Gets the backing OpenGL context used by @context. * * Returns: The platform specific backing OpenGL context */ guintptr <API key> (GstGLContext * context) { GstGLContextClass *context_class; guintptr result; <API key> (GST_GL_IS_CONTEXT (context), 0); context_class = <API key> (context); <API key> (context_class->get_gl_context != NULL, 0); result = context_class->get_gl_context (context); return result; } /** * <API key>: * @context: a #GstGLContext: * * Gets the OpenGL platform that used by @context. * * Returns: The platform specific backing OpenGL context */ GstGLPlatform <API key> (GstGLContext * context) { GstGLContextClass *context_class; <API key> (GST_GL_IS_CONTEXT (context), 0); context_class = <API key> (context); <API key> (context_class->get_gl_platform != NULL, 0); return context_class->get_gl_platform (context); } /** * <API key>: * @context: a #GstGLContext: * * Returns: the #GstGLDisplay associated with this @context */ GstGLDisplay * <API key> (GstGLContext * context) { <API key> (GST_GL_IS_CONTEXT (context), NULL); return gst_object_ref (context->priv->display); } typedef struct { GstGLContext *context; <API key> func; gpointer data; } RunGenericData; static void <API key> (RunGenericData * data) { GST_TRACE ("running function:%p data:%p", data->func, data->data); data->func (data->context, data->data); } /** * <API key>: * @context: a #GstGLContext * @func: a #<API key> * @data: (closure): user data to call @func with * * Execute @func in the OpenGL thread of @context with @data * * MT-safe */ void <API key> (GstGLContext * context, <API key> func, gpointer data) { GstGLWindow *window; RunGenericData rdata; g_return_if_fail (GST_GL_IS_CONTEXT (context)); g_return_if_fail (func != NULL); g_return_if_fail (!<API key> (context)); rdata.context = context; rdata.data = data; rdata.func = func; window = <API key> (context); <API key> (window, GST_GL_WINDOW_CB (<API key>), &rdata); gst_object_unref (window); } /** * <API key>: * @context: a #GstGLContext * @maj: (out): resulting major version * @min: (out): resulting minor version * * Returns the OpenGL version implemented by @context. See * <API key>() for retreiving the OpenGL api implemented by * @context. */ void <API key> (GstGLContext * context, gint * maj, gint * min) { g_return_if_fail (GST_GL_IS_CONTEXT (context)); g_return_if_fail (maj == NULL && min == NULL); if (maj) *maj = context->priv->gl_major; if (min) *min = context->priv->gl_minor; } /** * <API key>: * @context: a #GstGLContext * @api: api type required * @maj: major version required * @min: minor version required * * Returns: whether OpenGL context implements the required api and specified * version. */ gboolean <API key> (GstGLContext * context, GstGLAPI api, gint maj, gint min) { <API key> (GST_GL_IS_CONTEXT (context), FALSE); if (maj > context->priv->gl_major) return FALSE; if ((<API key> (context) & api) == GST_GL_API_NONE) return FALSE; if (maj < context->priv->gl_major) return TRUE; if (min > context->priv->gl_minor) return FALSE; return TRUE; } /** * <API key>: * @context: a #GstGLContext * @feature: a platform specific feature * * Some features require that the context be created before it is possible to * determine their existence and so will fail if that is not the case. * * Returns: Whether @feature is supported by @context */ gboolean <API key> (GstGLContext * context, const gchar * feature) { GstGLContextClass *context_class; <API key> (GST_GL_IS_CONTEXT (context), FALSE); <API key> (feature != NULL, FALSE); context_class = <API key> (context); if (g_strstr_len (feature, 3, "GL_")) return <API key> (feature, context->priv->gl_exts); if (!context_class->check_feature) return FALSE; return context_class->check_feature (context, feature); } static GstGLAPI <API key> (GstGLContext * context) { GstGLWrappedContext *context_wrap = <API key> (context); return context_wrap->available_apis; } static guintptr <API key> (GstGLContext * context) { GstGLWrappedContext *context_wrap = <API key> (context); return context_wrap->handle; } static GstGLPlatform <API key> (GstGLContext * context) { GstGLWrappedContext *context_wrap = <API key> (context); return context_wrap->platform; } static gboolean <API key> (GstGLContext * context, gboolean activate) { <API key> (); return FALSE; } static void <API key> (<API key> * klass) { GstGLContextClass *context_class = (GstGLContextClass *) klass; context_class->get_gl_context = GST_DEBUG_FUNCPTR (<API key>); context_class->get_gl_api = GST_DEBUG_FUNCPTR (<API key>); context_class->get_gl_platform = GST_DEBUG_FUNCPTR (<API key>); context_class->activate = GST_DEBUG_FUNCPTR (<API key>); } static void <API key> (GstGLWrappedContext * context) { }
#include <config.h> #include <unistd.h> #include "<API key>.h" #include "<API key>.h" #include "virarch.h" #include "virbitmap.h" int virHostValidateQEMU(void) { virBitmapPtr flags; int ret = 0; bool hasHwVirt = false; virHostMsgCheck("QEMU", "%s", _("for hardware virtualization")); if (!(flags = <API key>())) return -1; switch (virArchFromHost()) { case VIR_ARCH_I686: case VIR_ARCH_X86_64: if (virBitmapIsBitSet(flags, <API key>) || virBitmapIsBitSet(flags, <API key>)) hasHwVirt = true; break; case VIR_ARCH_S390: case VIR_ARCH_S390X: if (virBitmapIsBitSet(flags, <API key>)) hasHwVirt = true; break; default: hasHwVirt = false; } if (hasHwVirt) { virHostMsgPass(); if (<API key>("QEMU", "/dev/kvm", <API key>, _("Check that the 'kvm-intel' or 'kvm-amd' modules are " "loaded & the BIOS has enabled virtualization")) < 0) ret = -1; else if (<API key>("QEMU", "/dev/kvm", <API key>, _("Check /dev/kvm is world writable or you are in " "a group that is allowed to access it")) < 0) ret = -1; } else { virHostMsgFail(<API key>, _("Only emulated CPUs are available, performance will be significantly limited")); } virBitmapFree(flags); if (<API key>("QEMU", "/dev/vhost-net", <API key>, _("Load the 'vhost_net' module to improve performance " "of virtio networking")) < 0) ret = -1; if (<API key>("QEMU", "/dev/net/tun", <API key>, _("Load the 'tun' module to enable networking for QEMU guests")) < 0) ret = -1; if (<API key>("QEMU", "memory", <API key>, "MEMCG") < 0) ret = -1; if (<API key>("QEMU", "cpu", <API key>, "CGROUP_CPU") < 0) ret = -1; if (<API key>("QEMU", "cpuacct", <API key>, "CGROUP_CPUACCT") < 0) ret = -1; if (<API key>("QEMU", "cpuset", <API key>, "CPUSETS") < 0) ret = -1; if (<API key>("QEMU", "devices", <API key>, "CGROUP_DEVICES") < 0) ret = -1; if (<API key>("QEMU", "blkio", <API key>, "BLK_CGROUP") < 0) ret = -1; if (<API key>("QEMU", <API key>) < 0) ret = -1; return ret; }
#include "./sc_defines.h" bool <API key>(Player *player, Creature *_Creature) { { player->ADD_GOSSIP_ITEM( 1, "I'd like to browse your goods.", GOSSIP_SENDER_MAIN, GOSSIP_ACTION_TRADE); } return true; } bool <API key>(Player *player, Creature *_Creature, uint32 sender, uint32 action ) { // This function is not tested and will not work if(action == GOSSIP_ACTION_TRADE && player->GET_HONORRANK() > 1) { player->SEND_VENDORLIST( _Creature->GetGUID() ); } else player->ADD_GOSSIP_ITEM( 0, "You need to be Grunt to browse my goods", GOSSIP_SENDER_MAIN, GOSSIP_ACTION_TRADE); return true; } bool <API key>( Player *player, Creature *_Creature, uint32 sender, uint32 action, char* sCode ) { return false; } uint32 <API key>(Player *player, Creature *_Creature ) { return _Creature->QUEST_DIALOG_STATUS(player, DIALOG_STATUS_CHAT); } void AddSC_grunt_horde() { Script *newscript; newscript = new Script; newscript->Name="grunt_horde"; newscript->pGossipHello = &<API key>; newscript->pGossipSelect = &<API key>; newscript-><API key> = &<API key>; newscript->pNPCDialogStatus = &<API key>; m_scripts[nrscripts++] = newscript; }
from webplot import p p.use_doc('webplot example') import numpy as np import datetime import time x = np.arange(100) / 6.0 y = np.sin(x) z = np.cos(x) data_source = p.make_source(idx=range(100), x=x, y=y, z=z) p.plot(x, y, 'orange') p.figure() p.plot('x', 'y', color='blue', data_source=data_source, title='sincos') p.plot('x', 'z', color='green') p.figure() p.plot('x', 'y', data_source=data_source) p.figure() p.plot('x', 'z', data_source=data_source) p.figure() p.table(data_source, ['x', 'y', 'z']) p.scatter('x', 'y', data_source=data_source) p.figure() p.scatter('x', 'z', data_source=data_source) p.figure() p.hold(False) p.scatter('x', 'y', 'orange', data_source=data_source) p.scatter('x', 'z', 'red', data_source=data_source) p.plot('x', 'z', 'yellow', data_source=data_source) p.plot('x', 'y', 'black', data_source=data_source) print "click on the plots tab to see results"
using System; using System.Collections.Generic; using System.Text; using System.Collections; namespace KaniReg.NtUser { class RealPlayer6 : ClassBase { private const string TAG = "MostRecentClips"; public RealPlayer6(RegistryKey rootKey, short timeZoneBias, bool outputUtc, Reporter reporter, Logger logger) : base(rootKey, timeZoneBias, outputUtc, reporter, logger) { } protected override void Initialize() { PrintKeyInBase = true; KeyPath = @"Software\RealNetworks\RealPlayer\6.0\Preferences"; Description = "RealPlayer6"; } public override bool Process() { Reporter.Write(KeyPath); Reporter.Write("LastWrite Time " + Library.TransrateTimestamp(Key.Timestamp, TimeZoneBias, OutputUtc)); SortedDictionary<ushort, Container> dictionary = new SortedDictionary<ushort, Container>(); RegistryKey[] subkeys = Key.GetListOfSubkeys(); if (null != subkeys && 0 < subkeys.Length) { foreach (RegistryKey subkey in subkeys) { if (subkey.Name.StartsWith(TAG)) { dictionary.Add(Convert.ToUInt16(subkey.Name.Replace(TAG, string.Empty)), new Container(subkey.Name, subkey.GetValue("(Default)").GetDataAsString())); //timestamp //$rpkeys{$num}{lastwrite} = $s->get_timestamp(); } } foreach (KeyValuePair<ushort, Container> pair in dictionary) { Reporter.Write("\t" + pair.Value.Name + " -> " + pair.Value.Data); } } else { Reporter.Write(KeyPath + " "); } return true; } } }
package sampco.interactivestory.ui; import android.content.Intent; import android.graphics.drawable.Drawable; import android.media.Image; import android.support.v7.app.ActionBarActivity; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.widget.Button; import android.widget.ImageView; import android.widget.TextView; import sampco.interactivestory.R; import sampco.interactivestory.model.Page; import sampco.interactivestory.model.Story; public class StoryActivity extends ActionBarActivity { private Story mStory = new Story(); private ImageView mImageView; private TextView mTextView; private Button mChoice1; private Button mChoice2; private String mName; private Page mCurrentPage; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_story); Intent intetn = getIntent(); mName = intetn.getStringExtra(getString(R.string.key_name)); if (mName == null){ mName = "Buddy"; } mImageView = (ImageView) findViewById(R.id.storyImageView); mTextView = (TextView) findViewById(R.id.storyTextView); mChoice1 = (Button) findViewById(R.id.choiceButton1); mChoice2 = (Button) findViewById(R.id.choiceButton2); loadPage(0); } private void loadPage(int choice){ mCurrentPage = mStory.getPage(choice); Drawable drawable = getResources().getDrawable(mCurrentPage.getImageId()); mImageView.setImageDrawable(drawable); String pageText = mCurrentPage.getText(); //adds name only if place holder is found placeholder = %1$s pageText = String.format(pageText, mName); mTextView.setText(pageText); if (mCurrentPage.isFinal()){ mChoice1.setVisibility(View.INVISIBLE); mChoice2.setText("PLAY AGAIN"); mChoice2.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { finish(); } }); } else { mChoice1.setText(mCurrentPage.getChoice1().getText()); mChoice2.setText(mCurrentPage.getChoice2().getText()); mChoice1.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { int nextPage = mCurrentPage.getChoice1().getNextPage(); loadPage(nextPage); } }); mChoice2.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { int nextPage = mCurrentPage.getChoice2().getNextPage(); loadPage(nextPage); } }); } } }
#ifndef NCMPCPP_CHARSET_H #define NCMPCPP_CHARSET_H #include <locale> #include <string> namespace Charset { std::locale internalLocale(); std::string toUtf8From(const std::string &s, const char *charset); std::string fromUtf8To(const std::string &s, const char *charset); std::string utf8ToLocale(const std::string &s); std::string utf8ToLocale(std::string &&s); std::string localeToUtf8(const std::string &s); std::string localeToUtf8(std::string &&s); } #endif // NCMPCPP_CHARSET_H
<?php ?> <article class="feed-item <API key> masonry-item <API key> <?php print $classes; ?>" role="article"> <div<?php print $content_attributes; ?>> <?php // We hide the comments and links now so that we can render them later. hide($content['comments']); hide($content['links']); // For the moment the Facebook post's direct URL is shared $share_fb_url = 'https: // The shared summary text is the original one in the node object $shared_text = urlencode($node->body['und'][0]['safe_value']); print render($content); ?> <div class="feed-item-type">Facebook</div> <div class="<API key>"> <span class="social-icons-toggle"><?php print t('Share'); ?></span> <div class="social-icons"> <a href="<?php print $share_fb_url; ?>" class="social-icon social-icon--invert <API key>" target="_blank"><span><?php print t('Share on Facebook'); ?></span></a> <a href="https://twitter.com/home?status=<?php print $shared_text; ?>%20%7C%20<?php print $share_fb_url; ?>" class="social-icon social-icon--invert <API key>" target="_blank"><span><?php print t('Share on Twitter'); ?></span></a> <a href="https: </div> </div> </div> </article>
static const __u8 root_hub_hub_des[] = { 0x09, /* __u8 bLength; */ 0x29, /* __u8 bDescriptorType; Hub-descriptor */ 0x02, /* __u8 bNbrPorts; */ 0x0a, /* __u16 wHubCharacteristics; */ 0x00, /* (per-port OC, no power switching) */ 0x01, /* __u8 bPwrOn2pwrGood; 2ms */ 0x00, /* __u8 bHubContrCurrent; 0 mA */ 0x00, 0xff }; #define UHCI_RH_MAXCHILD 7 /* must write as zeroes */ #define WZ_BITS (USBPORTSC_RES2 | USBPORTSC_RES3 | USBPORTSC_RES4) /* status change bits: nonzero writes will clear */ #define RWC_BITS (USBPORTSC_OCC | USBPORTSC_PEC | USBPORTSC_CSC) /* suspend/resume bits: port suspended or port resuming */ #define SUSPEND_BITS (USBPORTSC_SUSP | USBPORTSC_RD) /* A port that either is connected or has a changed-bit set will prevent * us from AUTO_STOPPING. */ static int any_ports_active(struct uhci_hcd *uhci) { int port; for (port = 0; port < uhci->rh_numports; ++port) { if ((uhci_readw(uhci, USBPORTSC1 + port * 2) & (USBPORTSC_CCS | RWC_BITS)) || test_bit(port, &uhci->port_c_suspend)) return 1; } return 0; } static inline int get_hub_status_data(struct uhci_hcd *uhci, char *buf) { int port; int mask = RWC_BITS; /* Some boards (both VIA and Intel apparently) report bogus * overcurrent indications, causing massive log spam unless * we completely ignore them. This doesn't seem to be a problem * with the chipset so much as with the way it is connected on * the motherboard; if the overcurrent input is left to float * then it may constantly register false positives. */ if (ignore_oc) mask &= ~USBPORTSC_OCC; *buf = 0; for (port = 0; port < uhci->rh_numports; ++port) { if ((uhci_readw(uhci, USBPORTSC1 + port * 2) & mask) || test_bit(port, &uhci->port_c_suspend)) *buf |= (1 << (port + 1)); } return !!*buf; } #define OK(x) len = (x); break #define CLR_RH_PORTSTAT(x) \ status = uhci_readw(uhci, port_addr); \ status &= ~(RWC_BITS|WZ_BITS); \ status &= ~(x); \ status |= RWC_BITS & (x); \ uhci_writew(uhci, status, port_addr) #define SET_RH_PORTSTAT(x) \ status = uhci_readw(uhci, port_addr); \ status |= (x); \ status &= ~(RWC_BITS|WZ_BITS); \ uhci_writew(uhci, status, port_addr) /* UHCI controllers don't automatically stop resume signalling after 20 msec, * so we have to poll and check timeouts in order to take care of it. */ static void uhci_finish_suspend(struct uhci_hcd *uhci, int port, unsigned long port_addr) { int status; int i; if (uhci_readw(uhci, port_addr) & SUSPEND_BITS) { CLR_RH_PORTSTAT(SUSPEND_BITS); if (test_bit(port, &uhci->resuming_ports)) set_bit(port, &uhci->port_c_suspend); /* The controller won't actually turn off the RD bit until * it has had a chance to send a low-speed EOP sequence, * which is supposed to take 3 bit times (= 2 microseconds). * Experiments show that some controllers take longer, so * we'll poll for completion. */ for (i = 0; i < 10; ++i) { if (!(uhci_readw(uhci, port_addr) & SUSPEND_BITS)) break; udelay(1); } } clear_bit(port, &uhci->resuming_ports); } /* Wait for the UHCI controller in HP's iLO2 server management chip. * It can take up to 250 us to finish a reset and set the CSC bit. */ static void wait_for_HP(struct uhci_hcd *uhci, unsigned long port_addr) { int i; for (i = 10; i < 250; i += 10) { if (uhci_readw(uhci, port_addr) & USBPORTSC_CSC) return; udelay(10); } /* Log a warning? */ } static void uhci_check_ports(struct uhci_hcd *uhci) { unsigned int port; unsigned long port_addr; int status; for (port = 0; port < uhci->rh_numports; ++port) { port_addr = USBPORTSC1 + 2 * port; status = uhci_readw(uhci, port_addr); if (unlikely(status & USBPORTSC_PR)) { if (time_after_eq(jiffies, uhci->ports_timeout)) { CLR_RH_PORTSTAT(USBPORTSC_PR); udelay(10); /* HP's server management chip requires * a longer delay. */ if (uhci->wait_for_hp) wait_for_HP(uhci, port_addr); /* If the port was enabled before, turning * reset on caused a port enable change. * Turning reset off causes a port connect * status change. Clear these changes. */ CLR_RH_PORTSTAT(USBPORTSC_CSC | USBPORTSC_PEC); SET_RH_PORTSTAT(USBPORTSC_PE); } } if (unlikely(status & USBPORTSC_RD)) { if (!test_bit(port, &uhci->resuming_ports)) { /* Port received a wakeup request */ set_bit(port, &uhci->resuming_ports); uhci->ports_timeout = jiffies + msecs_to_jiffies(25); /* Make sure we see the port again * after the resuming period is over. */ mod_timer(&uhci_to_hcd(uhci)->rh_timer, uhci->ports_timeout); } else if (time_after_eq(jiffies, uhci->ports_timeout)) { uhci_finish_suspend(uhci, port, port_addr); } } } } static int <API key>(struct usb_hcd *hcd, char *buf) { struct uhci_hcd *uhci = hcd_to_uhci(hcd); unsigned long flags; int status = 0; spin_lock_irqsave(&uhci->lock, flags); uhci_scan_schedule(uhci); if (!HCD_HW_ACCESSIBLE(hcd) || uhci->dead) goto done; uhci_check_ports(uhci); status = get_hub_status_data(uhci, buf); switch (uhci->rh_state) { case UHCI_RH_SUSPENDED: /* if port change, ask to be resumed */ if (status || uhci->resuming_ports) { status = 1; <API key>(hcd); } break; case <API key>: /* if port change, auto start */ if (status) wakeup_rh(uhci); break; case UHCI_RH_RUNNING: /* are any devices attached? */ if (!any_ports_active(uhci)) { uhci->rh_state = <API key>; uhci->auto_stop_time = jiffies + HZ; } break; case <API key>: /* auto-stop if nothing connected for 1 second */ if (any_ports_active(uhci)) uhci->rh_state = UHCI_RH_RUNNING; else if (time_after_eq(jiffies, uhci->auto_stop_time)) suspend_rh(uhci, <API key>); break; default: break; } done: <API key>(&uhci->lock, flags); return status; } /* size of returned buffer is part of USB spec */ static int uhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue, u16 wIndex, char *buf, u16 wLength) { struct uhci_hcd *uhci = hcd_to_uhci(hcd); int status, lstatus, retval = 0, len = 0; unsigned int port = wIndex - 1; unsigned long port_addr = USBPORTSC1 + 2 * port; u16 wPortChange, wPortStatus; unsigned long flags; if (!HCD_HW_ACCESSIBLE(hcd) || uhci->dead) return -ETIMEDOUT; spin_lock_irqsave(&uhci->lock, flags); switch (typeReq) { case GetHubStatus: *(__le32 *)buf = cpu_to_le32(0); OK(4); /* hub power */ case GetPortStatus: if (port >= uhci->rh_numports) goto err; uhci_check_ports(uhci); status = uhci_readw(uhci, port_addr); /* Intel controllers report the OverCurrent bit active on. * VIA controllers report it active off, so we'll adjust the * bit value. (It's not standardized in the UHCI spec.) */ if (uhci->oc_low) status ^= USBPORTSC_OC; /* UHCI doesn't support C_RESET (always false) */ wPortChange = lstatus = 0; if (status & USBPORTSC_CSC) wPortChange |= <API key>; if (status & USBPORTSC_PEC) wPortChange |= <API key>; if ((status & USBPORTSC_OCC) && !ignore_oc) wPortChange |= <API key>; if (test_bit(port, &uhci->port_c_suspend)) { wPortChange |= <API key>; lstatus |= 1; } if (test_bit(port, &uhci->resuming_ports)) lstatus |= 4; /* UHCI has no power switching (always on) */ wPortStatus = USB_PORT_STAT_POWER; if (status & USBPORTSC_CCS) wPortStatus |= <API key>; if (status & USBPORTSC_PE) { wPortStatus |= <API key>; if (status & SUSPEND_BITS) wPortStatus |= <API key>; } if (status & USBPORTSC_OC) wPortStatus |= <API key>; if (status & USBPORTSC_PR) wPortStatus |= USB_PORT_STAT_RESET; if (status & USBPORTSC_LSDA) wPortStatus |= <API key>; if (wPortChange) dev_dbg(uhci_dev(uhci), "port %d portsc %04x,%02x\n", wIndex, status, lstatus); *(__le16 *)buf = cpu_to_le16(wPortStatus); *(__le16 *)(buf + 2) = cpu_to_le16(wPortChange); OK(4); case SetHubFeature: /* We don't implement these */ case ClearHubFeature: switch (wValue) { case C_HUB_OVER_CURRENT: case C_HUB_LOCAL_POWER: OK(0); default: goto err; } break; case SetPortFeature: if (port >= uhci->rh_numports) goto err; switch (wValue) { case <API key>: SET_RH_PORTSTAT(USBPORTSC_SUSP); OK(0); case USB_PORT_FEAT_RESET: SET_RH_PORTSTAT(USBPORTSC_PR); /* Reset terminates Resume signalling */ uhci_finish_suspend(uhci, port, port_addr); /* USB v2.0 7.1.7.5 */ uhci->ports_timeout = jiffies + msecs_to_jiffies(50); OK(0); case USB_PORT_FEAT_POWER: /* UHCI has no power switching */ OK(0); default: goto err; } break; case ClearPortFeature: if (port >= uhci->rh_numports) goto err; switch (wValue) { case <API key>: CLR_RH_PORTSTAT(USBPORTSC_PE); /* Disable terminates Resume signalling */ uhci_finish_suspend(uhci, port, port_addr); OK(0); case <API key>: CLR_RH_PORTSTAT(USBPORTSC_PEC); OK(0); case <API key>: if (!(uhci_readw(uhci, port_addr) & USBPORTSC_SUSP)) { /* Make certain the port isn't suspended */ uhci_finish_suspend(uhci, port, port_addr); } else if (!test_and_set_bit(port, &uhci->resuming_ports)) { SET_RH_PORTSTAT(USBPORTSC_RD); /* The controller won't allow RD to be set * if the port is disabled. When this happens * just skip the Resume signalling. */ if (!(uhci_readw(uhci, port_addr) & USBPORTSC_RD)) uhci_finish_suspend(uhci, port, port_addr); else /* USB v2.0 7.1.7.7 */ uhci->ports_timeout = jiffies + msecs_to_jiffies(20); } OK(0); case <API key>: clear_bit(port, &uhci->port_c_suspend); OK(0); case USB_PORT_FEAT_POWER: /* UHCI has no power switching */ goto err; case <API key>: CLR_RH_PORTSTAT(USBPORTSC_CSC); OK(0); case <API key>: CLR_RH_PORTSTAT(USBPORTSC_OCC); OK(0); case <API key>: /* this driver won't report these */ OK(0); default: goto err; } break; case GetHubDescriptor: len = min_t(unsigned int, sizeof(root_hub_hub_des), wLength); memcpy(buf, root_hub_hub_des, len); if (len > 2) buf[2] = uhci->rh_numports; OK(len); default: err: retval = -EPIPE; } <API key>(&uhci->lock, flags); return retval; }
package org.wordpress.android.widgets; import android.content.Context; import android.content.res.ColorStateList; import android.content.res.Resources; import android.content.res.TypedArray; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.ColorFilter; import android.graphics.Paint; import android.graphics.Path; import android.graphics.Rect; import android.graphics.Typeface; import android.graphics.drawable.Drawable; import android.text.Layout; import android.text.StaticLayout; import android.text.TextPaint; import android.util.TypedValue; /** * A Drawable object that draws text. * A TextDrawable accepts most of the same parameters that can be applied to * {@link android.widget.TextView} for displaying and formatting text. * * Optionally, a {@link Path} may be supplied on which to draw the text. * * A TextDrawable has an intrinsic size equal to that required to draw all * the text it has been supplied, when possible. In cases where a {@link Path} * has been supplied, the caller must explicitly call * {@link #setBounds(android.graphics.Rect) setBounds()} to provide the Drawable * size based on the Path constraints. */ public class TextDrawable extends Drawable { /* Platform XML constants for typeface */ private static final int SANS = 1; private static final int SERIF = 2; private static final int MONOSPACE = 3; /* Resources for scaling values to the given device */ private Resources mResources; /* Paint to hold most drawing primitives for the text */ private TextPaint mTextPaint; /* Layout is used to measure and draw the text */ private StaticLayout mTextLayout; /* Alignment of the text inside its bounds */ private Layout.Alignment mTextAlignment = Layout.Alignment.ALIGN_NORMAL; /* Optional path on which to draw the text */ private Path mTextPath; /* Stateful text color list */ private ColorStateList mTextColors; /* Container for the bounds to be reported to widgets */ private Rect mTextBounds; /* Text string to draw */ private CharSequence mText = ""; /* Attribute lists to pull default values from the current theme */ private static final int[] THEME_ATTRIBUTES = { android.R.attr.textAppearance }; private static final int[] <API key> = { android.R.attr.textSize, android.R.attr.typeface, android.R.attr.textStyle, android.R.attr.textColor }; public TextDrawable(Context context) { super(); // Used to load and scale resource items mResources = context.getResources(); // Definition of this drawables size mTextBounds = new Rect(); // Paint to use for the text mTextPaint = new TextPaint(Paint.ANTI_ALIAS_FLAG); mTextPaint.density = mResources.getDisplayMetrics().density; mTextPaint.setDither(true); int textSize = 15; ColorStateList textColor = null; int styleIndex = -1; int typefaceIndex = -1; // Set default parameters from the current theme TypedArray a = context.getTheme().<API key>(THEME_ATTRIBUTES); int appearanceId = a.getResourceId(0, -1); a.recycle(); TypedArray ap = null; if (appearanceId != -1) { ap = context.<API key>(appearanceId, <API key>); } if (ap != null) { for (int i = 0; i < ap.getIndexCount(); i++) { int attr = ap.getIndex(i); switch (attr) { case 0: // Text Size textSize = a.<API key>(attr, textSize); break; case 1: // Typeface typefaceIndex = a.getInt(attr, typefaceIndex); break; case 2: // Text Style styleIndex = a.getInt(attr, styleIndex); break; case 3: // Text Color textColor = a.getColorStateList(attr); break; default: break; } } ap.recycle(); } setTextColor(textColor != null ? textColor : ColorStateList.valueOf(0xFF000000)); setRawTextSize(textSize); Typeface tf = null; switch (typefaceIndex) { case SANS: tf = Typeface.SANS_SERIF; break; case SERIF: tf = Typeface.SERIF; break; case MONOSPACE: tf = Typeface.MONOSPACE; break; } setTypeface(tf, styleIndex); } public void setText(int text) { this.setText(String.valueOf(text)); } /** * Set the text that will be displayed * @param text Text to display */ public void setText(CharSequence text) { if (text == null) { text = ""; } mText = text; measureContent(); } /** * Return the text currently being displayed */ public CharSequence getText() { return mText; } /** * Return the current text size, in pixels */ public float getTextSize() { return mTextPaint.getTextSize(); } /** * Set the text size. The value will be interpreted in "sp" units * @param size Text size value, in sp */ public void setTextSize(float size) { setTextSize(TypedValue.COMPLEX_UNIT_SP, size); } /** * Set the text size, using the supplied complex units * @param unit Units for the text size, such as dp or sp * @param size Text size value */ public void setTextSize(int unit, float size) { float dimension = TypedValue.applyDimension(unit, size, mResources.getDisplayMetrics()); setRawTextSize(dimension); } /* * Set the text size, in raw pixels */ private void setRawTextSize(float size) { if (size != mTextPaint.getTextSize()) { mTextPaint.setTextSize(size); measureContent(); } } /** * Return the horizontal stretch factor of the text */ public float getTextScaleX() { return mTextPaint.getTextScaleX(); } /** * Set the horizontal stretch factor of the text * @param size Text scale factor */ public void setTextScaleX(float size) { if (size != mTextPaint.getTextScaleX()) { mTextPaint.setTextScaleX(size); measureContent(); } } /** * Return the current text alignment setting */ public Layout.Alignment getTextAlign() { return mTextAlignment; } /** * Set the text alignment. The alignment itself is based on the text layout direction. * For LTR text NORMAL is left aligned and OPPOSITE is right aligned. * For RTL text, those alignments are reversed. * @param align Text alignment value. Should be set to one of: * * {@link Layout.Alignment#ALIGN_NORMAL}, * {@link Layout.Alignment#ALIGN_NORMAL}, * {@link Layout.Alignment#ALIGN_OPPOSITE}. */ public void setTextAlign(Layout.Alignment align) { if (mTextAlignment != align) { mTextAlignment = align; measureContent(); } } /** * Sets the typeface and style in which the text should be displayed. * Note that not all Typeface families actually have bold and italic * variants, so you may need to use * {@link #setTypeface(Typeface, int)} to get the appearance * that you actually want. */ public void setTypeface(Typeface tf) { if (mTextPaint.getTypeface() != tf) { mTextPaint.setTypeface(tf); measureContent(); } } /** * Sets the typeface and style in which the text should be displayed, * and turns on the fake bold and italic bits in the Paint if the * Typeface that you provided does not have all the bits in the * style that you specified. * */ public void setTypeface(Typeface tf, int style) { if (style > 0) { if (tf == null) { tf = Typeface.defaultFromStyle(style); } else { tf = Typeface.create(tf, style); } setTypeface(tf); // now compute what (if any) algorithmic styling is needed int typefaceStyle = tf != null ? tf.getStyle() : 0; int need = style & ~typefaceStyle; mTextPaint.setFakeBoldText((need & Typeface.BOLD) != 0); mTextPaint.setTextSkewX((need & Typeface.ITALIC) != 0 ? -0.25f : 0); } else { mTextPaint.setFakeBoldText(false); mTextPaint.setTextSkewX(0); setTypeface(tf); } } /** * Return the current typeface and style that the Paint * using for display. */ public Typeface getTypeface() { return mTextPaint.getTypeface(); } /** * Set a single text color for all states * @param color Color value such as {@link Color#WHITE} or {@link Color#argb(int, int, int, int)} */ public void setTextColor(int color) { setTextColor(ColorStateList.valueOf(color)); } /** * Set the text color as a state list * @param colorStateList ColorStateList of text colors, such as inflated from an R.color resource */ public void setTextColor(ColorStateList colorStateList) { mTextColors = colorStateList; updateTextColors(getState()); } /** * Optional Path object on which to draw the text. If this is set, * TextDrawable cannot properly measure the bounds this drawable will need. * You must call {@link #setBounds(int, int, int, int) setBounds()} before * applying this TextDrawable to any View. * * Calling this method with <code>null</code> will remove any Path currently attached. */ public void setTextPath(Path path) { if (mTextPath != path) { mTextPath = path; measureContent(); } } /** * Internal method to take measurements of the current contents and apply * the correct bounds when possible. */ private void measureContent() { // If drawing to a path, we cannot measure intrinsic bounds // We must resly on setBounds being called externally if (mTextPath != null) { // Clear any previous measurement mTextLayout = null; mTextBounds.setEmpty(); } else { // Measure text bounds double desired = Math.ceil(Layout.getDesiredWidth(mText, mTextPaint)); mTextLayout = new StaticLayout(mText, mTextPaint, (int) desired, mTextAlignment, 1.0f, 0.0f, false); mTextBounds.set(0, 0, mTextLayout.getWidth(), mTextLayout.getHeight()); } // We may need to be redrawn invalidateSelf(); } /** * Internal method to apply the correct text color based on the drawable's state */ private boolean updateTextColors(int[] stateSet) { int newColor = mTextColors.getColorForState(stateSet, Color.WHITE); if (mTextPaint.getColor() != newColor) { mTextPaint.setColor(newColor); return true; } return false; } @Override protected void onBoundsChange(Rect bounds) { // Update the internal bounds in response to any external requests mTextBounds.set(bounds); } @Override public boolean isStateful() { /* * The drawable's ability to represent state is based on * the text color list set */ return mTextColors.isStateful(); } @Override protected boolean onStateChange(int[] state) { // Upon state changes, grab the correct text color return updateTextColors(state); } @Override public int getIntrinsicHeight() { // Return the vertical bounds measured, or -1 if none if (mTextBounds.isEmpty()) { return -1; } else { return (mTextBounds.bottom - mTextBounds.top); } } @Override public int getIntrinsicWidth() { // Return the horizontal bounds measured, or -1 if none if (mTextBounds.isEmpty()) { return -1; } else { return (mTextBounds.right - mTextBounds.left); } } @Override public void draw(Canvas canvas) { final Rect bounds = getBounds(); final int count = canvas.save(); canvas.translate(bounds.left, bounds.top); if (mTextPath == null) { // Allow the layout to draw the text mTextLayout.draw(canvas); } else { // Draw directly on the canvas using the supplied path canvas.drawTextOnPath(mText.toString(), mTextPath, 0, 0, mTextPaint); } canvas.restoreToCount(count); } @Override public void setAlpha(int alpha) { if (mTextPaint.getAlpha() != alpha) { mTextPaint.setAlpha(alpha); } } @Override public int getOpacity() { return mTextPaint.getAlpha(); } @Override public void setColorFilter(ColorFilter cf) { if (mTextPaint.getColorFilter() != cf) { mTextPaint.setColorFilter(cf); } } }
require_dependency 'discourse_hub' require_dependency 'user_name_suggester' require_dependency '<API key>' require_dependency 'rate_limiter' class UsersController < <API key> skip_before_filter :<API key>, only: [:avatar] skip_before_filter :check_xhr, only: [:show, :password_reset, :update, :account_created, :activate_account, :<API key>, :authorize_email, :<API key>, :avatar, :my_redirect] before_filter :ensure_logged_in, only: [:username, :update, :change_email, :<API key>, :upload_user_image, :pick_avatar, :destroy_user_image, :destroy, :check_emails] before_filter :<API key>, only: [:create] # we need to allow account creation with bad CSRF tokens, if people are caching, the CSRF token on the # page is going to be empty, this means that server will see an invalid CSRF and blow the session # once that happens you can't log in with social skip_before_filter :<API key>, only: [:create] skip_before_filter :<API key>, only: [:check_username, :create, :get_honeypot_value, :account_created, :activate_account, :<API key>, :<API key>, :authorize_email, :password_reset] def show @user = <API key> user_serializer = UserSerializer.new(@user, scope: guardian, root: 'user') respond_to do |format| format.html do @restrict_fields = guardian.<API key>?(@user) store_preloaded("user_#{@user.username}", MultiJson.dump(user_serializer)) end format.json do render_json_dump(user_serializer) end end end def card_badge end def update_card_badge user = <API key> guardian.ensure_can_edit!(user) user_badge = UserBadge.find_by(id: params[:user_badge_id].to_i) if user_badge && user_badge.user == user && user_badge.badge.image.present? user.user_profile.update_column(:card_image_badge_id, user_badge.badge.id) else user.user_profile.update_column(:card_image_badge_id, nil) end render nothing: true end def <API key> redirect_to <API key>(current_user.username_lower) end def update user = <API key> guardian.ensure_can_edit!(user) if params[:user_fields].present? params[:custom_fields] ||= {} UserField.where(editable: true).each do |f| val = params[:user_fields][f.id.to_s] val = nil if val === "false" return render_json_error(I18n.t("login.missing_user_field")) if val.blank? && f.required? params[:custom_fields]["user_field_#{f.id}"] = val end end json_result(user, serializer: UserSerializer, additional_errors: [:user_profile]) do |u| updater = UserUpdater.new(current_user, user) updater.update(params) end end def username params.require(:new_username) user = <API key> guardian.<API key>!(user) # TODO proper error surfacing (result is a Model#save call) result = user.change_username(params[:new_username], current_user) raise Discourse::InvalidParameters.new(:new_username) unless result render json: { id: user.id, username: user.username } end def check_emails user = <API key>(include_inactive: true) guardian.<API key>!(user) StaffActionLogger.new(current_user).log_check_email(user, context: params[:context]) render json: { email: user.email, associated_accounts: user.associated_accounts } rescue Discourse::InvalidAccess render json: failed_json, status: 403 end def badge_title params.require(:user_badge_id) user = <API key> guardian.ensure_can_edit!(user) user_badge = UserBadge.find_by(id: params[:user_badge_id]) if user_badge && user_badge.user == user && user_badge.badge.allow_title? user.title = user_badge.badge.name user.user_profile.badge_granted_title = true user.save! user.user_profile.save! else user.title = '' user.save! end render nothing: true end def preferences render nothing: true end def my_redirect if current_user.present? && params[:path] =~ /^[a-z\-\/]+$/ redirect_to "/users/#{current_user.username}/#{params[:path]}" return end raise Discourse::NotFound.new end def invited inviter = <API key> offset = params[:offset].to_i || 0 invites = if guardian.<API key>?(inviter) Invite.<API key>(inviter, offset) else Invite.<API key>(inviter, offset) end invites = invites.filter_by(params[:filter]) render_json_dump invites: serialize_data(invites.to_a, InviteSerializer), <API key>: guardian.<API key>?(inviter) end def is_local_username params.require(:username) u = params[:username].downcase r = User.exec_sql('select 1 from users where username_lower = ?', u).values render json: {valid: r.length == 1} end def <API key> render(json: { available: true }) end def <API key>(target_user, username) target_user and username.downcase == target_user.username.downcase end # Used for checking availability of a username and will return suggestions # if the username is not available. def check_username if !params[:username].present? params.require(:username) if !params[:email].present? return render(json: success_json) end username = params[:username] target_user = <API key> # The special case where someone is changing the case of their own username return <API key> if <API key>(target_user, username) checker = <API key>.new email = params[:email] || target_user.try(:email) render json: checker.check_username(username, email) end def <API key> params[:for_user_id] ? User.find(params[:for_user_id]) : current_user end def create params.permit(:user_fields) unless SiteSetting.<API key> return fail_with("login.<API key>") end if params[:password] && params[:password].length > User.max_password_length return fail_with("login.password_too_long") end user = User.new(user_params) # Handle custom fields user_fields = UserField.all if user_fields.present? if params[:user_fields].blank? && UserField.where(required: true).exists? return fail_with("login.missing_user_field") else fields = user.custom_fields user_fields.each do |f| field_val = params[:user_fields][f.id.to_s] if field_val.blank? return fail_with("login.missing_user_field") if f.required? else fields["user_field_#{f.id}"] = field_val end end user.custom_fields = fields end end authentication = UserAuthenticator.new(user, session) if !authentication.has_authenticator? && !SiteSetting.enable_local_logins return render nothing: true, status: 500 end authentication.start activation = UserActivator.new(user, request, session, cookies) activation.start # just assign a password if we have an authenticator and no password # this is the case for Twitter user.password = SecureRandom.hex if user.password.blank? && authentication.has_authenticator? if user.save authentication.finish activation.finish # save user email in session, to show on account-created page session["<API key>"] = activation.message render json: { success: true, active: user.active?, message: activation.message, user_id: user.id } else render json: { success: false, message: I18n.t( 'login.errors', errors: user.errors.full_messages.join("\n") ), errors: user.errors.to_hash, values: user.attributes.slice('name', 'username', 'email') } end rescue ActiveRecord::StatementInvalid render json: { success: false, message: I18n.t("login.<API key>") } rescue RestClient::Forbidden render json: { errors: [I18n.t("discourse_hub.<API key>")] } end def get_honeypot_value render json: {value: honeypot_value, challenge: challenge_value} end def password_reset expires_now() if EmailToken.valid_token_format?(params[:token]) @user = EmailToken.confirm(params[:token]) if @user session["password-#{params[:token]}"] = @user.id else user_id = session["password-#{params[:token]}"] @user = User.find(user_id) if user_id end else @invalid_token = true end if !@user flash[:error] = I18n.t('password_reset.no_token') elsif request.put? @invalid_password = params[:password].blank? || params[:password].length > User.max_password_length if @invalid_password @user.errors.add(:password, :invalid) else @user.password = params[:password] @user.password_required! if @user.save Invite.<API key>(@user.email) # invite link can't be used to log in anymore <API key> end end end render layout: 'no_ember' end def <API key> message = if Guardian.new(@user).can_access_forum? # Log in the user log_on_user(@user) 'password_reset.success' else @requires_approval = true 'password_reset.success_unapproved' end flash[:success] = I18n.t(message) end def change_email params.require(:email) user = <API key> guardian.<API key>!(user) lower_email = Email.downcase(params[:email]).strip RateLimiter.new(user, "change-email-hr-#{request.remote_ip}", 6, 1.hour).performed! RateLimiter.new(user, "change-email-min-#{request.remote_ip}", 3, 1.minute).performed! # Raise an error if the email is already in use if User.find_by_email(lower_email) raise Discourse::InvalidParameters.new(:email) end email_token = user.email_tokens.create(email: lower_email) Jobs.enqueue( :user_email, to_address: lower_email, type: :authorize_email, user_id: user.id, email_token: email_token.token ) render nothing: true rescue RateLimiter::LimitExceeded render_json_error(I18n.t("rate_limiter.slow_down")) end def authorize_email expires_now() if @user = EmailToken.confirm(params[:token]) log_on_user(@user) else flash[:error] = I18n.t('change_email.error') end render layout: 'no_ember' end def account_created @message = session['<API key>'] expires_now render layout: 'no_ember' end def activate_account expires_now render layout: 'no_ember' end def <API key> raise Discourse::InvalidAccess.new if <API key>?(params) if @user = EmailToken.confirm(params[:token]) # Log in the user unless they need to be approved if Guardian.new(@user).can_access_forum? @user.<API key>('welcome_user') if @user.<API key> log_on_user(@user) else @needs_approval = true end else flash[:error] = I18n.t('activation.already_done') end render layout: 'no_ember' end def <API key> RateLimiter.new(nil, "activate-hr-#{request.remote_ip}", 30, 1.hour).performed! RateLimiter.new(nil, "activate-min-#{request.remote_ip}", 6, 1.minute).performed! @user = User.<API key>(params[:username].to_s) raise Discourse::NotFound unless @user @email_token = @user.email_tokens.unconfirmed.active.first <API key> if @user render nothing: true end def <API key> @email_token ||= @user.email_tokens.create(email: @user.email) Jobs.enqueue(:user_email, type: :signup, user_id: @user.id, email_token: @email_token.token) end def search_users term = params[:term].to_s.strip topic_id = params[:topic_id] topic_id = topic_id.to_i if topic_id results = UserSearch.new(term, topic_id: topic_id, searching_user: current_user).search user_fields = [:username, :<API key>, :uploaded_avatar_id] user_fields << :name if SiteSetting.enable_names? to_render = { users: results.as_json(only: user_fields, methods: :avatar_template) } if params[:include_groups] == "true" to_render[:groups] = Group.search_group(term, current_user).map {|m| {:name=>m.name, :usernames=> m.usernames.split(",")} } end render json: to_render end def upload_user_image params.require(:image_type) user = <API key> guardian.ensure_can_edit!(user) file = params[:file] || params[:files].first begin image = <API key>(file) rescue Discourse::InvalidParameters return render status: 422, text: I18n.t("upload.images.unknown_image_type") end upload = Upload.create_for(user.id, image.file, image.filename, image.filesize) if upload.errors.empty? case params[:image_type] when "avatar" upload_avatar_for(user, upload) when "profile_background" <API key>(user.user_profile, upload) when "card_background" <API key>(user.user_profile, upload) end else render status: 422, text: upload.errors.full_messages end end def pick_avatar user = <API key> guardian.ensure_can_edit!(user) upload_id = params[:upload_id] user.uploaded_avatar_id = upload_id # ensure we associate the custom avatar properly if upload_id && !user.user_avatar.contains_upload?(upload_id) user.user_avatar.custom_upload_id = upload_id end user.save! render json: success_json end def destroy_user_image user = <API key> guardian.ensure_can_edit!(user) image_type = params.require(:image_type) if image_type == 'profile_background' user.user_profile.<API key> elsif image_type == 'card_background' user.user_profile.<API key> else raise Discourse::InvalidParameters.new(:image_type) end render nothing: true end def destroy @user = <API key> guardian.<API key>!(@user) UserDestroyer.new(current_user).destroy(@user, { delete_posts: true, context: params[:context] }) render json: success_json end def read_faq if(user = current_user) user.user_stat.read_faq = 1.second.ago user.user_stat.save end render json: success_json end def staff_info @user = <API key> guardian.<API key>!(@user) result = {} %W{<API key> <API key> <API key> <API key> number_of_warnings}.each do |info| result[info] = @user.send(info) end render json: result end private def honeypot_value Digest::SHA1::hexdigest("#{Discourse.current_hostname}:#{Discourse::Application.config.secret_token}")[0,15] end def challenge_value challenge = $redis.get('SECRET_CHALLENGE') unless challenge && challenge.length == 16*2 challenge = SecureRandom.hex(16) $redis.set('SECRET_CHALLENGE',challenge) end challenge end def <API key>(file) source = if file.is_a?(String) is_api? ? :url : (raise Discourse::InvalidParameters) else :image end AvatarUploadService.new(file, source) end def upload_avatar_for(user, upload) render json: { upload_id: upload.id, url: upload.url, width: upload.width, height: upload.height } end def <API key>(user_profile, upload) user_profile.<API key>(upload) render json: { url: upload.url, width: upload.width, height: upload.height } end def <API key>(user_profile, upload) user_profile.<API key>(upload) render json: { url: upload.url, width: upload.width, height: upload.height } end def <API key> if suspicious?(params) render( json: { success: true, active: false, message: I18n.t("login.activate_email", email: params[:email]) } ) end end def suspicious?(params) return false if current_user && is_api? && current_user.admin? <API key>?(params) || SiteSetting.invite_only? end def <API key>?(params) return false if is_api? params[:<API key>] != honeypot_value || params[:challenge] != challenge_value.try(:reverse) end def user_params params.permit( :name, :email, :password, :username, :active ).merge(ip_address: request.ip, <API key>: request.ip) end def fail_with(key) render json: { success: false, message: I18n.t(key) } end end
<html lang="en"> <head> <title>M68K-Syntax - Using as</title> <meta http-equiv="Content-Type" content="text/html"> <meta name="description" content="Using as"> <meta name="generator" content="makeinfo 4.13"> <link title="Top" rel="start" href="index.html#Top"> <link rel="up" href="M68K_002dDependent.html#M68K_002dDependent" title="M68K-Dependent"> <link rel="prev" href="M68K_002dOpts.html#M68K_002dOpts" title="M68K-Opts"> <link rel="next" href="<API key>.html#<API key>" title="M68K-Moto-Syntax"> <link href="http: <! This file documents the GNU Assembler "as". Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is included in the section entitled ``GNU Free Documentation License''. <meta http-equiv="Content-Style-Type" content="text/css"> <style type="text/css"><! pre.display { font-family:inherit } pre.format { font-family:inherit } pre.smalldisplay { font-family:inherit; font-size:smaller } pre.smallformat { font-family:inherit; font-size:smaller } pre.smallexample { font-size:smaller } pre.smalllisp { font-size:smaller } span.sc { font-variant:small-caps } span.roman { font-family:serif; font-weight:normal; } span.sansserif { font-family:sans-serif; font-weight:normal; } --></style> <link rel="stylesheet" type="text/css" href="../cs.css"> </head> <body> <div class="node"> <a name="M68K-Syntax"></a> <a name="M68K_002dSyntax"></a> <p> Next:&nbsp;<a rel="next" accesskey="n" href="<API key>.html#<API key>">M68K-Moto-Syntax</a>, Previous:&nbsp;<a rel="previous" accesskey="p" href="M68K_002dOpts.html#M68K_002dOpts">M68K-Opts</a>, Up:&nbsp;<a rel="up" accesskey="u" href="M68K_002dDependent.html#M68K_002dDependent">M68K-Dependent</a> <hr> </div> <h4 class="subsection">9.23.2 Syntax</h4> <p><a name="<API key>"></a>This syntax for the Motorola 680x0 was developed at <span class="sc">mit</span>. <p><a name="<API key>"></a><a name="<API key>"></a><a name="<API key>"></a><a name="<API key>"></a>The 680x0 version of <code>as</code> uses instructions names and syntax compatible with the Sun assembler. Intervening periods are ignored; for example, &lsquo;<samp><span class="samp">movl</span></samp>&rsquo; is equivalent to &lsquo;<samp><span class="samp">mov.l</span></samp>&rsquo;. <p>In the following table <var>apc</var> stands for any of the address registers (&lsquo;<samp><span class="samp">%a0</span></samp>&rsquo; through &lsquo;<samp><span class="samp">%a7</span></samp>&rsquo;), the program counter (&lsquo;<samp><span class="samp">%pc</span></samp>&rsquo;), the zero-address relative to the program counter (&lsquo;<samp><span class="samp">%zpc</span></samp>&rsquo;), a suppressed address register (&lsquo;<samp><span class="samp">%za0</span></samp>&rsquo; through &lsquo;<samp><span class="samp">%za7</span></samp>&rsquo;), or it may be omitted entirely. The use of <var>size</var> means one of &lsquo;<samp><span class="samp">w</span></samp>&rsquo; or &lsquo;<samp><span class="samp">l</span></samp>&rsquo;, and it may be omitted, along with the leading colon, unless a scale is also specified. The use of <var>scale</var> means one of &lsquo;<samp><span class="samp">1</span></samp>&rsquo;, &lsquo;<samp><span class="samp">2</span></samp>&rsquo;, &lsquo;<samp><span class="samp">4</span></samp>&rsquo;, or &lsquo;<samp><span class="samp">8</span></samp>&rsquo;, and it may always be omitted along with the leading colon. <p><a name="<API key>"></a><a name="<API key>"></a>The following addressing modes are understood: <dl> <dt><dfn>Immediate</dfn><dd>&lsquo;<samp><span class="samp">#</span><var>number</var></samp>&rsquo; <br><dt><dfn>Data Register</dfn><dd>&lsquo;<samp><span class="samp">%d0</span></samp>&rsquo; through &lsquo;<samp><span class="samp">%d7</span></samp>&rsquo; <br><dt><dfn>Address Register</dfn><dd>&lsquo;<samp><span class="samp">%a0</span></samp>&rsquo; through &lsquo;<samp><span class="samp">%a7</span></samp>&rsquo;<br> &lsquo;<samp><span class="samp">%a7</span></samp>&rsquo; is also known as &lsquo;<samp><span class="samp">%sp</span></samp>&rsquo;, i.e., the Stack Pointer. <code>%a6</code> is also known as &lsquo;<samp><span class="samp">%fp</span></samp>&rsquo;, the Frame Pointer. <br><dt><dfn>Address Register Indirect</dfn><dd>&lsquo;<samp><span class="samp">%a0@</span></samp>&rsquo; through &lsquo;<samp><span class="samp">%a7@</span></samp>&rsquo; <br><dt><dfn>Address Register Postincrement</dfn><dd>&lsquo;<samp><span class="samp">%a0@+</span></samp>&rsquo; through &lsquo;<samp><span class="samp">%a7@+</span></samp>&rsquo; <br><dt><dfn>Address Register Predecrement</dfn><dd>&lsquo;<samp><span class="samp">%a0@-</span></samp>&rsquo; through &lsquo;<samp><span class="samp">%a7@-</span></samp>&rsquo; <br><dt><dfn>Indirect Plus Offset</dfn><dd>&lsquo;<samp><var>apc</var><span class="samp">@(</span><var>number</var><span class="samp">)</span></samp>&rsquo; <br><dt><dfn>Index</dfn><dd>&lsquo;<samp><var>apc</var><span class="samp">@(</span><var>number</var><span class="samp">,</span><var>register</var><span class="samp">:</span><var>size</var><span class="samp">:</span><var>scale</var><span class="samp">)</span></samp>&rsquo; <p>The <var>number</var> may be omitted. <br><dt><dfn>Postindex</dfn><dd>&lsquo;<samp><var>apc</var><span class="samp">@(</span><var>number</var><span class="samp">)@(</span><var>onumber</var><span class="samp">,</span><var>register</var><span class="samp">:</span><var>size</var><span class="samp">:</span><var>scale</var><span class="samp">)</span></samp>&rsquo; <p>The <var>onumber</var> or the <var>register</var>, but not both, may be omitted. <br><dt><dfn>Preindex</dfn><dd>&lsquo;<samp><var>apc</var><span class="samp">@(</span><var>number</var><span class="samp">,</span><var>register</var><span class="samp">:</span><var>size</var><span class="samp">:</span><var>scale</var><span class="samp">)@(</span><var>onumber</var><span class="samp">)</span></samp>&rsquo; <p>The <var>number</var> may be omitted. Omitting the <var>register</var> produces the Postindex addressing mode. <br><dt><dfn>Absolute</dfn><dd>&lsquo;<samp><var>symbol</var></samp>&rsquo;, or &lsquo;<samp><var>digits</var></samp>&rsquo;, optionally followed by &lsquo;<samp><span class="samp">:b</span></samp>&rsquo;, &lsquo;<samp><span class="samp">:w</span></samp>&rsquo;, or &lsquo;<samp><span class="samp">:l</span></samp>&rsquo;. </dl> </body></html>
#include <linux/slab.h> #include <linux/types.h> #include <linux/scatterlist.h> #include <linux/mmc/host.h> #include <linux/mmc/card.h> #include <linux/mmc/mmc.h> #include <linux/mmc/sd.h> #include "core.h" #include "sd_ops.h" int mmc_app_cmd(struct mmc_host *host, struct mmc_card *card) { int err; struct mmc_command cmd = {0}; BUG_ON(!host); BUG_ON(card && (card->host != host)); cmd.opcode = MMC_APP_CMD; if (card) { cmd.arg = card->rca << 16; cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC; } else { cmd.arg = 0; cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_BCR; } err = mmc_wait_for_cmd(host, &cmd, 0); if (err) return err; /* Check that card supported application commands */ if (!mmc_host_is_spi(host) && !(cmd.resp[0] & R1_APP_CMD)) return -EOPNOTSUPP; return 0; } EXPORT_SYMBOL_GPL(mmc_app_cmd); /** * <API key> - start an application command and wait for completion * @host: MMC host to start command * @card: Card to send MMC_APP_CMD to * @cmd: MMC command to start * @retries: maximum number of retries * * Sends a MMC_APP_CMD, checks the card response, sends the command * in the parameter and waits for it to complete. Return any error * that occurred while the command was executing. Do not attempt to * parse the response. */ int <API key>(struct mmc_host *host, struct mmc_card *card, struct mmc_command *cmd, int retries) { struct mmc_request mrq = {0}; int i, err; BUG_ON(!cmd); BUG_ON(retries < 0); err = -EIO; /* * We have to resend MMC_APP_CMD for each attempt so * we cannot use the retries field in mmc_command. */ for (i = 0;i <= retries;i++) { err = mmc_app_cmd(host, card); if (err) { /* no point in retrying; no APP commands allowed */ if (mmc_host_is_spi(host)) { if (cmd->resp[0] & <API key>) break; } continue; } memset(&mrq, 0, sizeof(struct mmc_request)); memset(cmd->resp, 0, sizeof(cmd->resp)); cmd->retries = 0; mrq.cmd = cmd; cmd->data = NULL; mmc_wait_for_req(host, &mrq); err = cmd->error; if (!cmd->error) break; if (mmc_host_is_spi(host)) { if (cmd->resp[0] & <API key>) break; } } return err; } EXPORT_SYMBOL(<API key>); int <API key>(struct mmc_card *card, int width) { int err; struct mmc_command cmd = {0}; BUG_ON(!card); BUG_ON(!card->host); cmd.opcode = <API key>; cmd.flags = MMC_RSP_R1 | MMC_CMD_AC; switch (width) { case MMC_BUS_WIDTH_1: cmd.arg = SD_BUS_WIDTH_1; break; case MMC_BUS_WIDTH_4: cmd.arg = SD_BUS_WIDTH_4; break; default: return -EINVAL; } err = <API key>(card->host, card, &cmd, MMC_CMD_RETRIES); if (err) return err; return 0; } int <API key>(struct mmc_host *host, u32 ocr, u32 *rocr) { struct mmc_command cmd = {0}; int i, err = 0; BUG_ON(!host); cmd.opcode = SD_APP_OP_COND; if (mmc_host_is_spi(host)) cmd.arg = ocr & (1 << 30); /* SPI only defines one bit */ else cmd.arg = ocr; cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R3 | MMC_CMD_BCR; for (i = 100; i; i err = <API key>(host, NULL, &cmd, MMC_CMD_RETRIES); if (err) break; /* if we're just probing, do a single pass */ if (ocr == 0) break; /* otherwise wait until reset completes */ if (mmc_host_is_spi(host)) { if (!(cmd.resp[0] & R1_SPI_IDLE)) break; } else { if (cmd.resp[0] & MMC_CARD_BUSY) break; } err = -ETIMEDOUT; mmc_delay(10); } if (rocr && !mmc_host_is_spi(host)) *rocr = cmd.resp[0]; if (err) printk("%s: %s, err=%d\n", mmc_hostname(host), __func__, err); return err; } int mmc_send_if_cond(struct mmc_host *host, u32 ocr) { struct mmc_command cmd = {0}; int err; static const u8 test_pattern = 0xAA; u8 result_pattern; /* * To support SD 2.0 cards, we must always invoke SD_SEND_IF_COND * before SD_APP_OP_COND. This command will harmlessly fail for * SD 1.0 cards. */ cmd.opcode = SD_SEND_IF_COND; cmd.arg = ((ocr & 0xFF8000) != 0) << 8 | test_pattern; cmd.flags = MMC_RSP_SPI_R7 | MMC_RSP_R7 | MMC_CMD_BCR; err = mmc_wait_for_cmd(host, &cmd, 0); if (err) return err; if (mmc_host_is_spi(host)) result_pattern = cmd.resp[1] & 0xFF; else result_pattern = cmd.resp[0] & 0xFF; if (result_pattern != test_pattern) return -EIO; return 0; } int <API key>(struct mmc_host *host, unsigned int *rca) { int err; struct mmc_command cmd = {0}; BUG_ON(!host); BUG_ON(!rca); cmd.opcode = <API key>; cmd.arg = 0; cmd.flags = MMC_RSP_R6 | MMC_CMD_BCR; err = mmc_wait_for_cmd(host, &cmd, MMC_CMD_RETRIES); if (err) return err; *rca = cmd.resp[0] >> 16; return 0; } int mmc_app_send_scr(struct mmc_card *card, u32 *scr) { int err; struct mmc_request mrq = {0}; struct mmc_command cmd = {0}; struct mmc_data data = {0}; struct scatterlist sg; void *data_buf; BUG_ON(!card); BUG_ON(!card->host); BUG_ON(!scr); /* NOTE: caller guarantees scr is heap-allocated */ err = mmc_app_cmd(card->host, card); if (err) return err; /* dma onto stack is unsafe/nonportable, but callers to this * routine normally provide temporary on-stack buffers ... */ data_buf = kmalloc(sizeof(card->raw_scr), GFP_KERNEL); if (data_buf == NULL) return -ENOMEM; mrq.cmd = &cmd; mrq.data = &data; cmd.opcode = SD_APP_SEND_SCR; cmd.arg = 0; cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC; data.blksz = 8; data.blocks = 1; data.flags = MMC_DATA_READ; data.sg = &sg; data.sg_len = 1; sg_init_one(&sg, data_buf, 8); <API key>(&data, card); mmc_wait_for_req(card->host, &mrq); memcpy(scr, data_buf, sizeof(card->raw_scr)); kfree(data_buf); if (cmd.error) return cmd.error; if (data.error) return data.error; scr[0] = be32_to_cpu(scr[0]); scr[1] = be32_to_cpu(scr[1]); return 0; } int mmc_sd_switch(struct mmc_card *card, int mode, int group, u8 value, u8 *resp) { struct mmc_request mrq = {0}; struct mmc_command cmd = {0}; struct mmc_data data = {0}; struct scatterlist sg; BUG_ON(!card); BUG_ON(!card->host); /* NOTE: caller guarantees resp is heap-allocated */ mode = !!mode; value &= 0xF; mrq.cmd = &cmd; mrq.data = &data; cmd.opcode = SD_SWITCH; cmd.arg = mode << 31 | 0x00FFFFFF; cmd.arg &= ~(0xF << (group * 4)); cmd.arg |= value << (group * 4); cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC; data.blksz = 64; data.blocks = 1; data.flags = MMC_DATA_READ; data.sg = &sg; data.sg_len = 1; sg_init_one(&sg, resp, 64); <API key>(&data, card); mmc_wait_for_req(card->host, &mrq); if (cmd.error) return cmd.error; if (data.error) return data.error; return 0; } int mmc_app_sd_status(struct mmc_card *card, void *ssr) { int err; struct mmc_request mrq = {0}; struct mmc_command cmd = {0}; struct mmc_data data = {0}; struct scatterlist sg; BUG_ON(!card); BUG_ON(!card->host); BUG_ON(!ssr); /* NOTE: caller guarantees ssr is heap-allocated */ err = mmc_app_cmd(card->host, card); if (err) return err; mrq.cmd = &cmd; mrq.data = &data; cmd.opcode = SD_APP_SD_STATUS; cmd.arg = 0; cmd.flags = MMC_RSP_SPI_R2 | MMC_RSP_R1 | MMC_CMD_ADTC; data.blksz = 64; data.blocks = 1; data.flags = MMC_DATA_READ; data.sg = &sg; data.sg_len = 1; sg_init_one(&sg, ssr, 64); <API key>(&data, card); mmc_wait_for_req(card->host, &mrq); if (cmd.error) return cmd.error; if (data.error) return data.error; return 0; } int <API key>(struct mmc_host *host, unsigned int <API key>) { int err = 0; struct mmc_command cmd = { .opcode = <API key>, .arg = (<API key> << 28), .flags = MMC_RSP_R1B | MMC_CMD_AC | MMC_RSP_BUSY, }; BUG_ON(!host); BUG_ON(<API key> > 3); err = mmc_wait_for_cmd(host, &cmd, MMC_CMD_RETRIES); if (err) return err; /* * If the host does not wait while the card signals busy, then we will * will have to wait the max busy indication timeout. */ if (!(host->caps & <API key>)) mmc_delay(1000); return err; }
<?php defined('_JEXEC') or die; /** * Helper for mod_feed * * @package Joomla.Site * @subpackage mod_feed * @since 1.5 */ class ModFeedHelper { public static function getFeed($params) { // module params $rssurl = $params->get('rssurl', ''); // get RSS parsed object try { $feed = new JFeedFactory; $rssDoc = $feed->getFeed($rssurl); } catch (<API key> $e) { return JText::_('<API key>'); } catch (RunTimeException $e) { return JText::_('<API key>'); } if (empty($rssDoc)) { return JText::_('<API key>'); } if ($rssDoc) { return $rssDoc; } } }
package org.drftpd.sections.conf; import java.io.<API key>; import java.util.Collection; import java.util.Collections; import java.util.Properties; import org.drftpd.PropertyHelper; import org.drftpd.remotefile.FileUtils; import org.drftpd.remotefile.<API key>; import org.drftpd.sections.SectionInterface; /** * @author mog * @version $Id$ */ public class PlainSection implements SectionInterface { private String _dir; private SectionManager _mgr; private String _name; public PlainSection(SectionManager mgr, int i, Properties p) { this(mgr, PropertyHelper.getProperty(p, i + ".name"), PropertyHelper.getProperty(p, i + ".path")); } public PlainSection(SectionManager mgr, String name, String path) { _mgr = mgr; _name = name; _dir = path; if (!_dir.endsWith("/")) { _dir += "/"; } //getFile(); } public <API key> getFile() { try { return _mgr.<API key>().getGlobalContext().getRoot() .lookupFile(_dir); } catch (<API key> e) { return _mgr.<API key>().getGlobalContext().getRoot() .createDirectories(_dir); } } public Collection getFiles() { return Collections.singletonList(getFile()); } public <API key> <API key>( <API key> dir) { try { return FileUtils.<API key>(getFile(), dir); } catch (<API key> e) { return dir; } } public String getName() { return _name; } public String getPath() { return _dir; } public <API key> getBaseFile() { return getFile(); } public String getBasePath() { return getPath(); } }
/** @file SEXP_downcast.cpp * * Error reporting for SEXP_downcast. */ #include "CXXR/SEXP_downcast.hpp" #include <cstdlib> #include "localization.h" #include "R_ext/Error.h" using namespace std; using namespace CXXR; void CXXR::SEXP_downcast_error(const char* given, const char* wanted) { Rf_error(_("'%s' supplied where '%s' expected."), given, wanted); abort(); // To avoid warning about noreturn function returning }
// Class: WoklibPlugin #include "MenuResource.h" MenuResource::MenuResource(WLSignal *wls) : WoklibPlugin(wls) { EXP_SIGHOOK("Jabber GUI GetJIDMenu", &MenuResource::Menu, 1000); } MenuResource::~MenuResource() { } int MenuResource::Menu(WokXMLTag *xml) { if ( !xml->GetAttr("jid").size() || xml->GetAttr("jid").find("/") != std::string::npos) return true; WokXMLTag resourcetag(NULL, "query"); WokXMLTag &rtag = resourcetag.AddTag("item"); rtag.AddAttr("jid", xml->GetAttr("jid")); rtag.AddAttr("session", xml->GetAttr("session")); wls->SendSignal("Jabber Roster GetResource", &resourcetag); WokXMLTag &ritem = xml->AddTag("item"); ritem.AddAttr("name", "Resources"); ritem.AddAttr("jid", xml->GetAttr("jid")); ritem.AddAttr("session", xml->GetAttr("session")); std::list <WokXMLTag *>::iterator liter; for( liter = rtag.GetTagList("resource").begin() ; liter != rtag.GetTagList("resource").end() ; liter++) { WokXMLTag &resreq = ritem.AddTag("item"); resreq.AddAttr("jid", xml->GetAttr("jid") + "/" + (*liter)->GetAttr("name")); resreq.AddAttr("session", xml->GetAttr("session")); resreq.AddAttr("name", (*liter)->GetAttr("name") + " (" + (*liter)->GetAttr("priority") + ")" ); WokXMLTag &datatag = resreq.AddTag("data"); datatag.AddAttr("jid", xml->GetAttr("jid") + "/" + (*liter)->GetAttr("name")); datatag.AddAttr("session", xml->GetAttr("session")); wls->SendSignal("Jabber GUI GetJIDMenu", &resreq); } return true; }
<?php namespace eZ\Publish\Core\MVC\Legacy\Templating; use Assetic\Factory\Loader\<API key>; use Assetic\Factory\Resource\ResourceInterface; /** * This class does nothing. * It just avoids Assetic to bark because eztpl doesn't have a formula loader. */ class LegacyFormulaLoader implements <API key> { /** * Loads formulae from a resource. * * Formulae should be loaded the same regardless of the current debug * mode. Debug considerations should happen downstream. * * @param ResourceInterface $resource A resource * * @return array An array of formulae */ public function load( ResourceInterface $resource ) { return array(); } }