#ifndef __LINUX_NL80211_H
#define __LINUX_NL80211_H
/*
 * 802.11 netlink interface public header
 *
 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
 * Copyright 2008 Michael Wu <flamingice@sourmilk.net>
 * Copyright 2008 Luis Carlos Cobo <luisca@cozybit.com>
 * Copyright 2008 Michael Buesch <m@bues.ch>
 * Copyright 2008, 2009 Luis R. Rodriguez <lrodriguez@atheros.com>
 * Copyright 2008 Jouni Malinen <jouni.malinen@atheros.com>
 * Copyright 2008 Colin McCabe <colin@cozybit.com>
 * Copyright 2015-2017	Intel Deutschland GmbH
 * Copyright (C) 2018-2022 Intel Corporation
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 *
 */

/*
 * This header file defines the userspace API to the wireless stack. Please
 * be careful not to break things - i.e. don't move anything around or so
 * unless you can demonstrate that it breaks neither API nor ABI.
 *
 * Additions to the API should be accompanied by actual implementations in
 * an upstream driver, so that example implementations exist in case there
 * are ever concerns about the precise semantics of the API or changes are
 * needed, and to ensure that code for dead (no longer implemented) API
 * can actually be identified and removed.
 * Nonetheless, semantics should also be documented carefully in this file.
 */

#include <linux/types.h>

#define NL80211_GENL_NAME "nl80211"

#define NL80211_MULTICAST_GROUP_CONFIG		"config"
#define NL80211_MULTICAST_GROUP_SCAN		"scan"
#define NL80211_MULTICAST_GROUP_REG		"regulatory"
#define NL80211_MULTICAST_GROUP_MLME		"mlme"
#define NL80211_MULTICAST_GROUP_VENDOR		"vendor"
#define NL80211_MULTICAST_GROUP_NAN		"nan"
#define NL80211_MULTICAST_GROUP_TESTMODE	"testmode"

#define NL80211_EDMG_BW_CONFIG_MIN	4
#define NL80211_EDMG_BW_CONFIG_MAX	15
#define NL80211_EDMG_CHANNELS_MIN	1
#define NL80211_EDMG_CHANNELS_MAX	0x3c /* 0b00111100 */

/**
 * DOC: Station handling
 *
 * Stations are added per interface, but a special case exists with VLAN
 * interfaces. When a station is bound to an AP interface, it may be moved
 * into a VLAN identified by a VLAN interface index (%NL80211_ATTR_STA_VLAN).
 * The station is still assumed to belong to the AP interface it was added
 * to.
 *
 * Station handling varies per interface type and depending on the driver's
 * capabilities.
 *
 * For drivers supporting TDLS with external setup (WIPHY_FLAG_SUPPORTS_TDLS
 * and WIPHY_FLAG_TDLS_EXTERNAL_SETUP), the station lifetime is as follows:
 *  - a setup station entry is added, not yet authorized, without any rate
 *    or capability information, this just exists to avoid race conditions
 *  - when the TDLS setup is done, a single NL80211_CMD_SET_STATION is valid
 *    to add rate and capability information to the station and at the same
 *    time mark it authorized.
 *  - %NL80211_TDLS_ENABLE_LINK is then used
 *  - after this, the only valid operation is to remove it by tearing down
 *    the TDLS link (%NL80211_TDLS_DISABLE_LINK)
 *
 * TODO: need more info for other interface types
 */

/**
 * DOC: Frame transmission/registration support
 *
 * Frame transmission and registration support exists to allow userspace
 * management entities such as wpa_supplicant react to management frames
 * that are not being handled by the kernel. This includes, for example,
 * certain classes of action frames that cannot be handled in the kernel
 * for various reasons.
 *
 * Frame registration is done on a per-interface basis and registrations
 * cannot be removed other than by closing the socket. It is possible to
 * specify a registration filter to register, for example, only for a
 * certain type of action frame. In particular with action frames, those
 * that userspace registers for will not be returned as unhandled by the
 * driver, so that the registered application has to take responsibility
 * for doing that.
 *
 * The type of frame that can be registered for is also dependent on the
 * driver and interface type. The frame types are advertised in wiphy
 * attributes so applications know what to expect.
 *
 * NOTE: When an interface changes type while registrations are active,
 *       these registrations are ignored until the interface type is
 *       changed again. This means that changing the interface type can
 *       lead to a situation that couldn't otherwise be produced, but
 *       any such registrations will be dormant in the sense that they
 *       will not be serviced, i.e. they will not receive any frames.
 *
 * Frame transmission allows userspace to send for example the required
 * responses to action frames. It is subject to some sanity checking,
 * but many frames can be transmitted. When a frame was transmitted, its
 * status is indicated to the sending socket.
 *
 * For more technical details, see the corresponding command descriptions
 * below.
 */

/**
 * DOC: Virtual interface / concurrency capabilities
 *
 * Some devices are able to operate with virtual MACs, they can have
 * more than one virtual interface. The capability handling for this
 * is a bit complex though, as there may be a number of restrictions
 * on the types of concurrency that are supported.
 *
 * To start with, each device supports the interface types listed in
 * the %NL80211_ATTR_SUPPORTED_IFTYPES attribute, but by listing the
 * types there no concurrency is implied.
 *
 * Once concurrency is desired, more attributes must be observed:
 * To start with, since some interface types are purely managed in
 * software, like the AP-VLAN type in mac80211 for example, there's
 * an additional list of these, they can be added at any time and
 * are only restricted by some semantic restrictions (e.g. AP-VLAN
 * cannot be added without a corresponding AP interface). This list
 * is exported in the %NL80211_ATTR_SOFTWARE_IFTYPES attribute.
 *
 * Further, the list of supported combinations is exported. This is
 * in the %NL80211_ATTR_INTERFACE_COMBINATIONS attribute. Basically,
 * it exports a list of "groups", and at any point in time the
 * interfaces that are currently active must fall into any one of
 * the advertised groups. Within each group, there are restrictions
 * on the number of interfaces of different types that are supported
 * and also the number of different channels, along with potentially
 * some other restrictions. See &enum nl80211_if_combination_attrs.
 *
 * All together, these attributes define the concurrency of virtual
 * interfaces that a given device supports.
 */

/**
 * DOC: packet coalesce support
 *
 * In most cases, host that receives IPv4 and IPv6 multicast/broadcast
 * packets does not do anything with these packets. Therefore the
 * reception of these unwanted packets causes unnecessary processing
 * and power consumption.
 *
 * Packet coalesce feature helps to reduce number of received interrupts
 * to host by buffering these packets in firmware/hardware for some
 * predefined time. Received interrupt will be generated when one of the
 * following events occur.
 * a) Expiration of hardware timer whose expiration time is set to maximum
 * coalescing delay of matching coalesce rule.
 * b) Coalescing buffer in hardware reaches it's limit.
 * c) Packet doesn't match any of the configured coalesce rules.
 *
 * User needs to configure following parameters for creating a coalesce
 * rule.
 * a) Maximum coalescing delay
 * b) List of packet patterns which needs to be matched
 * c) Condition for coalescence. pattern 'match' or 'no match'
 * Multiple such rules can be created.
 */

/**
 * DOC: WPA/WPA2 EAPOL handshake offload
 *
 * By setting @NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_PSK flag drivers
 * can indicate they support offloading EAPOL handshakes for WPA/WPA2
 * preshared key authentication in station mode. In %NL80211_CMD_CONNECT
 * the preshared key should be specified using %NL80211_ATTR_PMK. Drivers
 * supporting this offload may reject the %NL80211_CMD_CONNECT when no
 * preshared key material is provided, for example when that driver does
 * not support setting the temporal keys through %NL80211_CMD_NEW_KEY.
 *
 * Similarly @NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_1X flag can be
 * set by drivers indicating offload support of the PTK/GTK EAPOL
 * handshakes during 802.1X authentication in station mode. In order to
 * use the offload the %NL80211_CMD_CONNECT should have
 * %NL80211_ATTR_WANT_1X_4WAY_HS attribute flag. Drivers supporting this
 * offload may reject the %NL80211_CMD_CONNECT when the attribute flag is
 * not present.
 *
 * By setting @NL80211_EXT_FEATURE_4WAY_HANDSHAKE_AP_PSK flag drivers
 * can indicate they support offloading EAPOL handshakes for WPA/WPA2
 * preshared key authentication in AP mode. In %NL80211_CMD_START_AP
 * the preshared key should be specified using %NL80211_ATTR_PMK. Drivers
 * supporting this offload may reject the %NL80211_CMD_START_AP when no
 * preshared key material is provided, for example when that driver does
 * not support setting the temporal keys through %NL80211_CMD_NEW_KEY.
 *
 * For 802.1X the PMK or PMK-R0 are set by providing %NL80211_ATTR_PMK
 * using %NL80211_CMD_SET_PMK. For offloaded FT support also
 * %NL80211_ATTR_PMKR0_NAME must be provided.
 */

/**
 * DOC: FILS shared key authentication offload
 *
 * FILS shared key authentication offload can be advertized by drivers by
 * setting @NL80211_EXT_FEATURE_FILS_SK_OFFLOAD flag. The drivers that support
 * FILS shared key authentication offload should be able to construct the
 * authentication and association frames for FILS shared key authentication and
 * eventually do a key derivation as per IEEE 802.11ai. The below additional
 * parameters should be given to driver in %NL80211_CMD_CONNECT and/or in
 * %NL80211_CMD_UPDATE_CONNECT_PARAMS.
 *	%NL80211_ATTR_FILS_ERP_USERNAME - used to construct keyname_nai
 *	%NL80211_ATTR_FILS_ERP_REALM - used to construct keyname_nai
 *	%NL80211_ATTR_FILS_ERP_NEXT_SEQ_NUM - used to construct erp message
 *	%NL80211_ATTR_FILS_ERP_RRK - used to generate the rIK and rMSK
 * rIK should be used to generate an authentication tag on the ERP message and
 * rMSK should be used to derive a PMKSA.
 * rIK, rMSK should be generated and keyname_nai, sequence number should be used
 * as specified in IETF RFC 6696.
 *
 * When FILS shared key authentication is completed, driver needs to provide the
 * below additional parameters to userspace, which can be either after setting
 * up a connection or after roaming.
 *	%NL80211_ATTR_FILS_KEK - used for key renewal
 *	%NL80211_ATTR_FILS_ERP_NEXT_SEQ_NUM - used in further EAP-RP exchanges
 *	%NL80211_ATTR_PMKID - used to identify the PMKSA used/generated
 *	%Nl80211_ATTR_PMK - used to update PMKSA cache in userspace
 * The PMKSA can be maintained in userspace persistently so that it can be used
 * later after reboots or wifi turn off/on also.
 *
 * %NL80211_ATTR_FILS_CACHE_ID is the cache identifier advertized by a FILS
 * capable AP supporting PMK caching. It specifies the scope within which the
 * PMKSAs are cached in an ESS. %NL80211_CMD_SET_PMKSA and
 * %NL80211_CMD_DEL_PMKSA are enhanced to allow support for PMKSA caching based
 * on FILS cache identifier. Additionally %NL80211_ATTR_PMK is used with
 * %NL80211_SET_PMKSA to specify the PMK corresponding to a PMKSA for driver to
 * use in a FILS shared key connection with PMKSA caching.
 */

/**
 * DOC: SAE authentication offload
 *
 * By setting @NL80211_EXT_FEATURE_SAE_OFFLOAD flag drivers can indicate they
 * support offloading SAE authentication for WPA3-Personal networks in station
 * mode. Similarly @NL80211_EXT_FEATURE_SAE_OFFLOAD_AP flag can be set by
 * drivers indicating the offload support in AP mode.
 *
 * The password for SAE should be specified using %NL80211_ATTR_SAE_PASSWORD in
 * %NL80211_CMD_CONNECT and %NL80211_CMD_START_AP for station and AP mode
 * respectively.
 */

/**
 * DOC: VLAN offload support for setting group keys and binding STAs to VLANs
 *
 * By setting @NL80211_EXT_FEATURE_VLAN_OFFLOAD flag drivers can indicate they
 * support offloading VLAN functionality in a manner where the driver exposes a
 * single netdev that uses VLAN tagged frames and separate VLAN-specific netdevs
 * can then be added using RTM_NEWLINK/IFLA_VLAN_ID similarly to the Ethernet
 * case. Frames received from stations that are not assigned to any VLAN are
 * delivered on the main netdev and frames to such stations can be sent through
 * that main netdev.
 *
 * %NL80211_CMD_NEW_KEY (for group keys), %NL80211_CMD_NEW_STATION, and
 * %NL80211_CMD_SET_STATION will optionally specify vlan_id using
 * %NL80211_ATTR_VLAN_ID.
 */

/**
 * DOC: TID configuration
 *
 * TID config support can be checked in the %NL80211_ATTR_TID_CONFIG
 * attribute given in wiphy capabilities.
 *
 * The necessary configuration parameters are mentioned in
 * &enum nl80211_tid_config_attr and it will be passed to the
 * %NL80211_CMD_SET_TID_CONFIG command in %NL80211_ATTR_TID_CONFIG.
 *
 * If the configuration needs to be applied for specific peer then the MAC
 * address of the peer needs to be passed in %NL80211_ATTR_MAC, otherwise the
 * configuration will be applied for all the connected peers in the vif except
 * any peers that have peer specific configuration for the TID by default; if
 * the %NL80211_TID_CONFIG_ATTR_OVERRIDE flag is set, peer specific values
 * will be overwritten.
 *
 * All this configuration is valid only for STA's current connection
 * i.e. the configuration will be reset to default when the STA connects back
 * after disconnection/roaming, and this configuration will be cleared when
 * the interface goes down.
 */

/**
 * DOC: FILS shared key crypto offload
 *
 * This feature is applicable to drivers running in AP mode.
 *
 * FILS shared key crypto offload can be advertised by drivers by setting
 * @NL80211_EXT_FEATURE_FILS_CRYPTO_OFFLOAD flag. The drivers that support
 * FILS shared key crypto offload should be able to encrypt and decrypt
 * association frames for FILS shared key authentication as per IEEE 802.11ai.
 * With this capability, for FILS key derivation, drivers depend on userspace.
 *
 * After FILS key derivation, userspace shares the FILS AAD details with the
 * driver and the driver stores the same to use in decryption of association
 * request and in encryption of association response. The below parameters
 * should be given to the driver in %NL80211_CMD_SET_FILS_AAD.
 *	%NL80211_ATTR_MAC - STA MAC address, used for storing FILS AAD per STA
 *	%NL80211_ATTR_FILS_KEK - Used for encryption or decryption
 *	%NL80211_ATTR_FILS_NONCES - Used for encryption or decryption
 *			(STA Nonce 16 bytes followed by AP Nonce 16 bytes)
 *
 * Once the association is done, the driver cleans the FILS AAD data.
 */

/**
 * DOC: Multi-Link Operation
 *
 * In Multi-Link Operation, a connection between to MLDs utilizes multiple
 * links. To use this in nl80211, various commands and responses now need
 * to or will include the new %NL80211_ATTR_MLO_LINKS attribute.
 * Additionally, various commands that need to operate on a specific link
 * now need to be given the %NL80211_ATTR_MLO_LINK_ID attribute, e.g. to
 * use %NL80211_CMD_START_AP or similar functions.
 */

/**
 * enum nl80211_commands - supported nl80211 commands
 *
 * @NL80211_CMD_UNSPEC: unspecified command to catch errors
 *
 * @NL80211_CMD_GET_WIPHY: request information about a wiphy or dump request
 *	to get a list of all present wiphys.
 * @NL80211_CMD_SET_WIPHY: set wiphy parameters, needs %NL80211_ATTR_WIPHY or
 *	%NL80211_ATTR_IFINDEX; can be used to set %NL80211_ATTR_WIPHY_NAME,
 *	%NL80211_ATTR_WIPHY_TXQ_PARAMS, %NL80211_ATTR_WIPHY_FREQ,
 *	%NL80211_ATTR_WIPHY_FREQ_OFFSET (and the attributes determining the
 *	channel width; this is used for setting monitor mode channel),
 *	%NL80211_ATTR_WIPHY_RETRY_SHORT, %NL80211_ATTR_WIPHY_RETRY_LONG,
 *	%NL80211_ATTR_WIPHY_FRAG_THRESHOLD, and/or
 *	%NL80211_ATTR_WIPHY_RTS_THRESHOLD.  However, for setting the channel,
 *	see %NL80211_CMD_SET_CHANNEL instead, the support here is for backward
 *	compatibility only.
 * @NL80211_CMD_NEW_WIPHY: Newly created wiphy, response to get request
 *	or rename notification. Has attributes %NL80211_ATTR_WIPHY and
 *	%NL80211_ATTR_WIPHY_NAME.
 * @NL80211_CMD_DEL_WIPHY: Wiphy deleted. Has attributes
 *	%NL80211_ATTR_WIPHY and %NL80211_ATTR_WIPHY_NAME.
 *
 * @NL80211_CMD_GET_INTERFACE: Request an interface's configuration;
 *	either a dump request for all interfaces or a specific get with a
 *	single %NL80211_ATTR_IFINDEX is supported.
 * @NL80211_CMD_SET_INTERFACE: Set type of a virtual interface, requires
 *	%NL80211_ATTR_IFINDEX and %NL80211_ATTR_IFTYPE.
 * @NL80211_CMD_NEW_INTERFACE: Newly created virtual interface or response
 *	to %NL80211_CMD_GET_INTERFACE. Has %NL80211_ATTR_IFINDEX,
 *	%NL80211_ATTR_WIPHY and %NL80211_ATTR_IFTYPE attributes. Can also
 *	be sent from userspace to request creation of a new virtual interface,
 *	then requires attributes %NL80211_ATTR_WIPHY, %NL80211_ATTR_IFTYPE and
 *	%NL80211_ATTR_IFNAME.
 * @NL80211_CMD_DEL_INTERFACE: Virtual interface was deleted, has attributes
 *	%NL80211_ATTR_IFINDEX and %NL80211_ATTR_WIPHY. Can also be sent from
 *	userspace to request deletion of a virtual interface, then requires
 *	attribute %NL80211_ATTR_IFINDEX. If multiple BSSID advertisements are
 *	enabled using %NL80211_ATTR_MBSSID_CONFIG, %NL80211_ATTR_MBSSID_ELEMS,
 *	and if this command is used for the transmitting interface, then all
 *	the non-transmitting interfaces are deleted as well.
 *
 * @NL80211_CMD_GET_KEY: Get sequence counter information for a key specified
 *	by %NL80211_ATTR_KEY_IDX and/or %NL80211_ATTR_MAC. %NL80211_ATTR_MAC
 *	represents peer's MLD address for MLO pairwise key. For MLO group key,
 *	the link is identified by %NL80211_ATTR_MLO_LINK_ID.
 * @NL80211_CMD_SET_KEY: Set key attributes %NL80211_ATTR_KEY_DEFAULT,
 *	%NL80211_ATTR_KEY_DEFAULT_MGMT, or %NL80211_ATTR_KEY_THRESHOLD.
 *	For MLO connection, the link to set default key is identified by
 *	%NL80211_ATTR_MLO_LINK_ID.
 * @NL80211_CMD_NEW_KEY: add a key with given %NL80211_ATTR_KEY_DATA,
 *	%NL80211_ATTR_KEY_IDX, %NL80211_ATTR_MAC, %NL80211_ATTR_KEY_CIPHER,
 *	and %NL80211_ATTR_KEY_SEQ attributes. %NL80211_ATTR_MAC represents
 *	peer's MLD address for MLO pairwise key. The link to add MLO
 *	group key is identified by %NL80211_ATTR_MLO_LINK_ID.
 * @NL80211_CMD_DEL_KEY: delete a key identified by %NL80211_ATTR_KEY_IDX
 *	or %NL80211_ATTR_MAC. %NL80211_ATTR_MAC represents peer's MLD address
 *	for MLO pairwise key. The link to delete group key is identified by
 *	%NL80211_ATTR_MLO_LINK_ID.
 *
 * @NL80211_CMD_GET_BEACON: (not used)
 * @NL80211_CMD_SET_BEACON: change the beacon on an access point interface
 *	using the %NL80211_ATTR_BEACON_HEAD and %NL80211_ATTR_BEACON_TAIL
 *	attributes. For drivers that generate the beacon and probe responses
 *	internally, the following attributes must be provided: %NL80211_ATTR_IE,
 *	%NL80211_ATTR_IE_PROBE_RESP and %NL80211_ATTR_IE_ASSOC_RESP.
 * @NL80211_CMD_START_AP: Start AP operation on an AP interface, parameters
 *	are like for %NL80211_CMD_SET_BEACON, and additionally parameters that
 *	do not change are used, these include %NL80211_ATTR_BEACON_INTERVAL,
 *	%NL80211_ATTR_DTIM_PERIOD, %NL80211_ATTR_SSID,
 *	%NL80211_ATTR_HIDDEN_SSID, %NL80211_ATTR_CIPHERS_PAIRWISE,
 *	%NL80211_ATTR_CIPHER_GROUP, %NL80211_ATTR_WPA_VERSIONS,
 *	%NL80211_ATTR_AKM_SUITES, %NL80211_ATTR_PRIVACY,
 *	%NL80211_ATTR_AUTH_TYPE, %NL80211_ATTR_INACTIVITY_TIMEOUT,
 *	%NL80211_ATTR_ACL_POLICY and %NL80211_ATTR_MAC_ADDRS.
 *	The channel to use can be set on the interface or be given using the
 *	%NL80211_ATTR_WIPHY_FREQ and %NL80211_ATTR_WIPHY_FREQ_OFFSET, and the
 *	attributes determining channel width.
 * @NL80211_CMD_NEW_BEACON: old alias for %NL80211_CMD_START_AP
 * @NL80211_CMD_STOP_AP: Stop AP operation on the given interface
 * @NL80211_CMD_DEL_BEACON: old alias for %NL80211_CMD_STOP_AP
 *
 * @NL80211_CMD_GET_STATION: Get station attributes for station identified by
 *	%NL80211_ATTR_MAC on the interface identified by %NL80211_ATTR_IFINDEX.
 * @NL80211_CMD_SET_STATION: Set station attributes for station identified by
 *	%NL80211_ATTR_MAC on the interface identified by %NL80211_ATTR_IFINDEX.
 * @NL80211_CMD_NEW_STATION: Add a station with given attributes to the
 *	interface identified by %NL80211_ATTR_IFINDEX.
 * @NL80211_CMD_DEL_STATION: Remove a station identified by %NL80211_ATTR_MAC
 *	or, if no MAC address given, all stations, on the interface identified
 *	by %NL80211_ATTR_IFINDEX. %NL80211_ATTR_MGMT_SUBTYPE and
 *	%NL80211_ATTR_REASON_CODE can optionally be used to specify which type
 *	of disconnection indication should be sent to the station
 *	(Deauthentication or Disassociation frame and reason code for that
 *	frame).
 *
 * @NL80211_CMD_GET_MPATH: Get mesh path attributes for mesh path to
 * 	destination %NL80211_ATTR_MAC on the interface identified by
 * 	%NL80211_ATTR_IFINDEX.
 * @NL80211_CMD_SET_MPATH:  Set mesh path attributes for mesh path to
 * 	destination %NL80211_ATTR_MAC on the interface identified by
 * 	%NL80211_ATTR_IFINDEX.
 * @NL80211_CMD_NEW_MPATH: Create a new mesh path for the destination given by
 *	%NL80211_ATTR_MAC via %NL80211_ATTR_MPATH_NEXT_HOP.
 * @NL80211_CMD_DEL_MPATH: Delete a mesh path to the destination given by
 *	%NL80211_ATTR_MAC.
 * @NL80211_CMD_NEW_PATH: Add a mesh path with given attributes to the
 *	interface identified by %NL80211_ATTR_IFINDEX.
 * @NL80211_CMD_DEL_PATH: Remove a mesh path identified by %NL80211_ATTR_MAC
 *	or, if no MAC address given, all mesh paths, on the interface identified
 *	by %NL80211_ATTR_IFINDEX.
 * @NL80211_CMD_SET_BSS: Set BSS attributes for BSS identified by
 *	%NL80211_ATTR_IFINDEX.
 *
 * @NL80211_CMD_GET_REG: ask the wireless core to send us its currently set
 *	regulatory domain. If %NL80211_ATTR_WIPHY is specified and the device
 *	has a private regulatory domain, it will be returned. Otherwise, the
 *	global regdomain will be returned.
 *	A device will have a private regulatory domain if it uses the
 *	regulatory_hint() API. Even when a private regdomain is used the channel
 *	information will still be mended according to further hints from
 *	the regulatory core to help with compliance. A dump version of this API
 *	is now available which will returns the global regdomain as well as
 *	all private regdomains of present wiphys (for those that have it).
 *	If a wiphy is self-managed (%NL80211_ATTR_WIPHY_SELF_MANAGED_REG), then
 *	its private regdomain is the only valid one for it. The regulatory
 *	core is not used to help with compliance in this case.
 * @NL80211_CMD_SET_REG: Set current regulatory domain. CRDA sends this command
 *	after being queried by the kernel. CRDA replies by sending a regulatory
 *	domain structure which consists of %NL80211_ATTR_REG_ALPHA set to our
 *	current alpha2 if it found a match. It also provides
 * 	NL80211_ATTR_REG_RULE_FLAGS, and a set of regulatory rules. Each
 * 	regulatory rule is a nested set of attributes  given by
 * 	%NL80211_ATTR_REG_RULE_FREQ_[START|END] and
 * 	%NL80211_ATTR_FREQ_RANGE_MAX_BW with an attached power rule given by
 * 	%NL80211_ATTR_REG_RULE_POWER_MAX_ANT_GAIN and
 * 	%NL80211_ATTR_REG_RULE_POWER_MAX_EIRP.
 * @NL80211_CMD_REQ_SET_REG: ask the wireless core to set the regulatory domain
 * 	to the specified ISO/IEC 3166-1 alpha2 country code. The core will
 * 	store this as a valid request and then query userspace for it.
 *
 * @NL80211_CMD_GET_MESH_CONFIG: Get mesh networking properties for the
 *	interface identified by %NL80211_ATTR_IFINDEX
 *
 * @NL80211_CMD_SET_MESH_CONFIG: Set mesh networking properties for the
 *      interface identified by %NL80211_ATTR_IFINDEX
 *
 * @NL80211_CMD_SET_MGMT_EXTRA_IE: Set extra IEs for management frames. The
 *	interface is identified with %NL80211_ATTR_IFINDEX and the management
 *	frame subtype with %NL80211_ATTR_MGMT_SUBTYPE. The extra IE data to be
 *	added to the end of the specified management frame is specified with
 *	%NL80211_ATTR_IE. If the command succeeds, the requested data will be
 *	added to all specified management frames generated by
 *	kernel/firmware/driver.
 *	Note: This command has been removed and it is only reserved at this
 *	point to avoid re-using existing command number. The functionality this
 *	command was planned for has been provided with cleaner design with the
 *	option to specify additional IEs in NL80211_CMD_TRIGGER_SCAN,
 *	NL80211_CMD_AUTHENTICATE, NL80211_CMD_ASSOCIATE,
 *	NL80211_CMD_DEAUTHENTICATE, and NL80211_CMD_DISASSOCIATE.
 *
 * @NL80211_CMD_GET_SCAN: get scan results
 * @NL80211_CMD_TRIGGER_SCAN: trigger a new scan with the given parameters
 *	%NL80211_ATTR_TX_NO_CCK_RATE is used to decide whether to send the
 *	probe requests at CCK rate or not. %NL80211_ATTR_BSSID can be used to
 *	specify a BSSID to scan for; if not included, the wildcard BSSID will
 *	be used.
 * @NL80211_CMD_NEW_SCAN_RESULTS: scan notification (as a reply to
 *	NL80211_CMD_GET_SCAN and on the "scan" multicast group)
 * @NL80211_CMD_SCAN_ABORTED: scan was aborted, for unspecified reasons,
 *	partial scan results may be available
 *
 * @NL80211_CMD_START_SCHED_SCAN: start a scheduled scan at certain
 *	intervals and certain number of cycles, as specified by
 *	%NL80211_ATTR_SCHED_SCAN_PLANS. If %NL80211_ATTR_SCHED_SCAN_PLANS is
 *	not specified and only %NL80211_ATTR_SCHED_SCAN_INTERVAL is specified,
 *	scheduled scan will run in an infinite loop with the specified interval.
 *	These attributes are mutually exculsive,
 *	i.e. NL80211_ATTR_SCHED_SCAN_INTERVAL must not be passed if
 *	NL80211_ATTR_SCHED_SCAN_PLANS is defined.
 *	If for some reason scheduled scan is aborted by the driver, all scan
 *	plans are canceled (including scan plans that did not start yet).
 *	Like with normal scans, if SSIDs (%NL80211_ATTR_SCAN_SSIDS)
 *	are passed, they are used in the probe requests.  For
 *	broadcast, a broadcast SSID must be passed (ie. an empty
 *	string).  If no SSID is passed, no probe requests are sent and
 *	a passive scan is performed.  %NL80211_ATTR_SCAN_FREQUENCIES,
 *	if passed, define which channels should be scanned; if not
 *	passed, all channels allowed for the current regulatory domain
 *	are used.  Extra IEs can also be passed from the userspace by
 *	using the %NL80211_ATTR_IE attribute.  The first cycle of the
 *	scheduled scan can be delayed by %NL80211_ATTR_SCHED_SCAN_DELAY
 *	is supplied. If the device supports multiple concurrent scheduled
 *	scans, it will allow such when the caller provides the flag attribute
 *	%NL80211_ATTR_SCHED_SCAN_MULTI to indicate user-space support for it.
 * @NL80211_CMD_STOP_SCHED_SCAN: stop a scheduled scan. Returns -ENOENT if
 *	scheduled scan is not running. The caller may assume that as soon
 *	as the call returns, it is safe to start a new scheduled scan again.
 * @NL80211_CMD_SCHED_SCAN_RESULTS: indicates that there are scheduled scan
 *	results available.
 * @NL80211_CMD_SCHED_SCAN_STOPPED: indicates that the scheduled scan has
 *	stopped.  The driver may issue this event at any time during a
 *	scheduled scan.  One reason for stopping the scan is if the hardware
 *	does not support starting an association or a normal scan while running
 *	a scheduled scan.  This event is also sent when the
 *	%NL80211_CMD_STOP_SCHED_SCAN command is received or when the interface
 *	is brought down while a scheduled scan was running.
 *
 * @NL80211_CMD_GET_SURVEY: get survey resuls, e.g. channel occupation
 *      or noise level
 * @NL80211_CMD_NEW_SURVEY_RESULTS: survey data notification (as a reply to
 *	NL80211_CMD_GET_SURVEY and on the "scan" multicast group)
 *
 * @NL80211_CMD_SET_PMKSA: Add a PMKSA cache entry using %NL80211_ATTR_MAC
 *	(for the BSSID), %NL80211_ATTR_PMKID, and optionally %NL80211_ATTR_PMK
 *	(PMK is used for PTKSA derivation in case of FILS shared key offload) or
 *	using %NL80211_ATTR_SSID, %NL80211_ATTR_FILS_CACHE_ID,
 *	%NL80211_ATTR_PMKID, and %NL80211_ATTR_PMK in case of FILS
 *	authentication where %NL80211_ATTR_FILS_CACHE_ID is the identifier
 *	advertized by a FILS capable AP identifying the scope of PMKSA in an
 *	ESS.
 * @NL80211_CMD_DEL_PMKSA: Delete a PMKSA cache entry, using %NL80211_ATTR_MAC
 *	(for the BSSID) and %NL80211_ATTR_PMKID or using %NL80211_ATTR_SSID,
 *	%NL80211_ATTR_FILS_CACHE_ID, and %NL80211_ATTR_PMKID in case of FILS
 *	authentication.
 * @NL80211_CMD_FLUSH_PMKSA: Flush all PMKSA cache entries.
 *
 * @NL80211_CMD_REG_CHANGE: indicates to userspace the regulatory domain
 * 	has been changed and provides details of the request information
 * 	that caused the change such as who initiated the regulatory request
 * 	(%NL80211_ATTR_REG_INITIATOR), the wiphy_idx
 * 	(%NL80211_ATTR_REG_ALPHA2) on which the request was made from if
 * 	the initiator was %NL80211_REGDOM_SET_BY_COUNTRY_IE or
 * 	%NL80211_REGDOM_SET_BY_DRIVER, the type of regulatory domain
 * 	set (%NL80211_ATTR_REG_TYPE), if the type of regulatory domain is
 * 	%NL80211_REG_TYPE_COUNTRY the alpha2 to which we have moved on
 * 	to (%NL80211_ATTR_REG_ALPHA2).
 * @NL80211_CMD_REG_BEACON_HINT: indicates to userspace that an AP beacon
 * 	has been found while world roaming thus enabling active scan or
 * 	any mode of operation that initiates TX (beacons) on a channel
 * 	where we would not have been able to do either before. As an example
 * 	if you are world roaming (regulatory domain set to world or if your
 * 	driver is using a custom world roaming regulatory domain) and while
 * 	doing a passive scan on the 5 GHz band you find an AP there (if not
 * 	on a DFS channel) you will now be able to actively scan for that AP
 * 	or use AP mode on your card on that same channel. Note that this will
 * 	never be used for channels 1-11 on the 2 GHz band as they are always
 * 	enabled world wide. This beacon hint is only sent if your device had
 * 	either disabled active scanning or beaconing on a channel. We send to
 * 	userspace the wiphy on which we removed a restriction from
 * 	(%NL80211_ATTR_WIPHY) and the channel on which this occurred
 * 	before (%NL80211_ATTR_FREQ_BEFORE) and after (%NL80211_ATTR_FREQ_AFTER)
 * 	the beacon hint was processed.
 *
 * @NL80211_CMD_AUTHENTICATE: authentication request and notification.
 *	This command is used both as a command (request to authenticate) and
 *	as an event on the "mlme" multicast group indicating completion of the
 *	authentication process.
 *	When used as a command, %NL80211_ATTR_IFINDEX is used to identify the
 *	interface. %NL80211_ATTR_MAC is used to specify PeerSTAAddress (and
 *	BSSID in case of station mode). %NL80211_ATTR_SSID is used to specify
 *	the SSID (mainly for association, but is included in authentication
 *	request, too, to help BSS selection. %NL80211_ATTR_WIPHY_FREQ +
 *	%NL80211_ATTR_WIPHY_FREQ_OFFSET is used to specify the frequence of the
 *	channel in MHz. %NL80211_ATTR_AUTH_TYPE is used to specify the
 *	authentication type. %NL80211_ATTR_IE is used to define IEs
 *	(VendorSpecificInfo, but also including RSN IE and FT IEs) to be added
 *	to the frame.
 *	When used as an event, this reports reception of an Authentication
 *	frame in station and IBSS modes when the local MLME processed the
 *	frame, i.e., it was for the local STA and was received in correct
 *	state. This is similar to MLME-AUTHENTICATE.confirm primitive in the
 *	MLME SAP interface (kernel providing MLME, userspace SME). The
 *	included %NL80211_ATTR_FRAME attribute contains the management frame
 *	(including both the header and frame body, but not FCS). This event is
 *	also used to indicate if the authentication attempt timed out. In that
 *	case the %NL80211_ATTR_FRAME attribute is replaced with a
 *	%NL80211_ATTR_TIMED_OUT flag (and %NL80211_ATTR_MAC to indicate which
 *	pending authentication timed out).
 * @NL80211_CMD_ASSOCIATE: association request and notification; like
 *	NL80211_CMD_AUTHENTICATE but for Association and Reassociation
 *	(similar to MLME-ASSOCIATE.request, MLME-REASSOCIATE.request,
 *	MLME-ASSOCIATE.confirm or MLME-REASSOCIATE.confirm primitives). The
 *	%NL80211_ATTR_PREV_BSSID attribute is used to specify whether the
 *	request is for the initial association to an ESS (that attribute not
 *	included) or for reassociation within the ESS (that attribute is
 *	included).
 * @NL80211_CMD_DEAUTHENTICATE: deauthentication request and notification; like
 *	NL80211_CMD_AUTHENTICATE but for Deauthentication frames (similar to
 *	MLME-DEAUTHENTICATION.request and MLME-DEAUTHENTICATE.indication
 *	primitives).
 * @NL80211_CMD_DISASSOCIATE: disassociation request and notification; like
 *	NL80211_CMD_AUTHENTICATE but for Disassociation frames (similar to
 *	MLME-DISASSOCIATE.request and MLME-DISASSOCIATE.indication primitives).
 *
 * @NL80211_CMD_MICHAEL_MIC_FAILURE: notification of a locally detected Michael
 *	MIC (part of TKIP) failure; sent on the "mlme" multicast group; the
 *	event includes %NL80211_ATTR_MAC to describe the source MAC address of
 *	the frame with invalid MIC, %NL80211_ATTR_KEY_TYPE to show the key
 *	type, %NL80211_ATTR_KEY_IDX to indicate the key identifier, and
 *	%NL80211_ATTR_KEY_SEQ to indicate the TSC value of the frame; this
 *	event matches with MLME-MICHAELMICFAILURE.indication() primitive
 *
 * @NL80211_CMD_JOIN_IBSS: Join a new IBSS -- given at least an SSID and a
 *	FREQ attribute (for the initial frequency if no peer can be found)
 *	and optionally a MAC (as BSSID) and FREQ_FIXED attribute if those
 *	should be fixed rather than automatically determined. Can only be
 *	executed on a network interface that is UP, and fixed BSSID/FREQ
 *	may be rejected. Another optional parameter is the beacon interval,
 *	given in the %NL80211_ATTR_BEACON_INTERVAL attribute, which if not
 *	given defaults to 100 TU (102.4ms).
 * @NL80211_CMD_LEAVE_IBSS: Leave the IBSS -- no special arguments, the IBSS is
 *	determined by the network interface.
 *
 * @NL80211_CMD_TESTMODE: testmode command, takes a wiphy (or ifindex) attribute
 *	to identify the device, and the TESTDATA blob attribute to pass through
 *	to the driver.
 *
 * @NL80211_CMD_CONNECT: connection request and notification; this command
 *	requests to connect to a specified network but without separating
 *	auth and assoc steps. For this, you need to specify the SSID in a
 *	%NL80211_ATTR_SSID attribute, and can optionally specify the association
 *	IEs in %NL80211_ATTR_IE, %NL80211_ATTR_AUTH_TYPE,
 *	%NL80211_ATTR_USE_MFP, %NL80211_ATTR_MAC, %NL80211_ATTR_WIPHY_FREQ,
 *	%NL80211_ATTR_WIPHY_FREQ_OFFSET, %NL80211_ATTR_CONTROL_PORT,
 *	%NL80211_ATTR_CONTROL_PORT_ETHERTYPE,
 *	%NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT,
 *	%NL80211_ATTR_CONTROL_PORT_OVER_NL80211, %NL80211_ATTR_MAC_HINT, and
 *	%NL80211_ATTR_WIPHY_FREQ_HINT.
 *	If included, %NL80211_ATTR_MAC and %NL80211_ATTR_WIPHY_FREQ are
 *	restrictions on BSS selection, i.e., they effectively prevent roaming
 *	within the ESS. %NL80211_ATTR_MAC_HINT and %NL80211_ATTR_WIPHY_FREQ_HINT
 *	can be included to provide a recommendation of the initial BSS while
 *	allowing the driver to roam to other BSSes within the ESS and also to
 *	ignore this recommendation if the indicated BSS is not ideal. Only one
 *	set of BSSID,frequency parameters is used (i.e., either the enforcing
 *	%NL80211_ATTR_MAC,%NL80211_ATTR_WIPHY_FREQ or the less strict
 *	%NL80211_ATTR_MAC_HINT and %NL80211_ATTR_WIPHY_FREQ_HINT).
 *	Driver shall not modify the IEs specified through %NL80211_ATTR_IE if
 *	%NL80211_ATTR_MAC is included. However, if %NL80211_ATTR_MAC_HINT is
 *	included, these IEs through %NL80211_ATTR_IE are specified by the user
 *	space based on the best possible BSS selected. Thus, if the driver ends
 *	up selecting a different BSS, it can modify these IEs accordingly (e.g.
 *	userspace asks the driver to perform PMKSA caching with BSS1 and the
 *	driver ends up selecting BSS2 with different PMKSA cache entry; RSNIE
 *	has to get updated with the apt PMKID).
 *	%NL80211_ATTR_PREV_BSSID can be used to request a reassociation within
 *	the ESS in case the device is already associated and an association with
 *	a different BSS is desired.
 *	Background scan period can optionally be
 *	specified in %NL80211_ATTR_BG_SCAN_PERIOD,
 *	if not specified default background scan configuration
 *	in driver is used and if period value is 0, bg scan will be disabled.
 *	This attribute is ignored if driver does not support roam scan.
 *	It is also sent as an event, with the BSSID and response IEs when the
 *	connection is established or failed to be established. This can be
 *	determined by the %NL80211_ATTR_STATUS_CODE attribute (0 = success,
 *	non-zero = failure). If %NL80211_ATTR_TIMED_OUT is included in the
 *	event, the connection attempt failed due to not being able to initiate
 *	authentication/association or not receiving a response from the AP.
 *	Non-zero %NL80211_ATTR_STATUS_CODE value is indicated in that case as
 *	well to remain backwards compatible.
 * @NL80211_CMD_ROAM: Notification indicating the card/driver roamed by itself.
 *	When a security association was established on an 802.1X network using
 *	fast transition, this event should be followed by an
 *	%NL80211_CMD_PORT_AUTHORIZED event.
 *	Following a %NL80211_CMD_ROAM event userspace can issue
 *	%NL80211_CMD_GET_SCAN in order to obtain the scan information for the
 *	new BSS the card/driver roamed to.
 * @NL80211_CMD_DISCONNECT: drop a given connection; also used to notify
 *	userspace that a connection was dropped by the AP or due to other
 *	reasons, for this the %NL80211_ATTR_DISCONNECTED_BY_AP and
 *	%NL80211_ATTR_REASON_CODE attributes are used.
 *
 * @NL80211_CMD_SET_WIPHY_NETNS: Set a wiphy's netns. Note that all devices
 *	associated with this wiphy must be down and will follow.
 *
 * @NL80211_CMD_REMAIN_ON_CHANNEL: Request to remain awake on the specified
 *	channel for the specified amount of time. This can be used to do
 *	off-channel operations like transmit a Public Action frame and wait for
 *	a response while being associated to an AP on another channel.
 *	%NL80211_ATTR_IFINDEX is used to specify which interface (and thus
 *	radio) is used. %NL80211_ATTR_WIPHY_FREQ is used to specify the
 *	frequency for the operation.
 *	%NL80211_ATTR_DURATION is used to specify the duration in milliseconds
 *	to remain on the channel. This command is also used as an event to
 *	notify when the requested duration starts (it may take a while for the
 *	driver to schedule this time due to other concurrent needs for the
 *	radio).
 *	When called, this operation returns a cookie (%NL80211_ATTR_COOKIE)
 *	that will be included with any events pertaining to this request;
 *	the cookie is also used to cancel the request.
 * @NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL: This command can be used to cancel a
 *	pending remain-on-channel duration if the desired operation has been
 *	completed prior to expiration of the originally requested duration.
 *	%NL80211_ATTR_WIPHY or %NL80211_ATTR_IFINDEX is used to specify the
 *	radio. The %NL80211_ATTR_COOKIE attribute must be given as well to
 *	uniquely identify the request.
 *	This command is also used as an event to notify when a requested
 *	remain-on-channel duration has expired.
 *
 * @NL80211_CMD_SET_TX_BITRATE_MASK: Set the mask of rates to be used in TX
 *	rate selection. %NL80211_ATTR_IFINDEX is used to specify the interface
 *	and @NL80211_ATTR_TX_RATES the set of allowed rates.
 *
 * @NL80211_CMD_REGISTER_FRAME: Register for receiving certain mgmt frames
 *	(via @NL80211_CMD_FRAME) for processing in userspace. This command
 *	requires an interface index, a frame type attribute (optional for
 *	backward compatibility reasons, if not given assumes action frames)
 *	and a match attribute containing the first few bytes of the frame
 *	that should match, e.g. a single byte for only a category match or
 *	four bytes for vendor frames including the OUI. The registration
 *	cannot be dropped, but is removed automatically when the netlink
 *	socket is closed. Multiple registrations can be made.
 *	The %NL80211_ATTR_RECEIVE_MULTICAST flag attribute can be given if
 *	%NL80211_EXT_FEATURE_MULTICAST_REGISTRATIONS is available, in which
 *	case the registration can also be modified to include/exclude the
 *	flag, rather than requiring unregistration to change it.
 * @NL80211_CMD_REGISTER_ACTION: Alias for @NL80211_CMD_REGISTER_FRAME for
 *	backward compatibility
 * @NL80211_CMD_FRAME: Management frame TX request and RX notification. This
 *	command is used both as a request to transmit a management frame and
 *	as an event indicating reception of a frame that was not processed in
 *	kernel code, but is for us (i.e., which may need to be processed in a
 *	user space application). %NL80211_ATTR_FRAME is used to specify the
 *	frame contents (including header). %NL80211_ATTR_WIPHY_FREQ is used
 *	to indicate on which channel the frame is to be transmitted or was
 *	received. If this channel is not the current channel (remain-on-channel
 *	or the operational channel) the device will switch to the given channel
 *	and transmit the frame, optionally waiting for a response for the time
 *	specified using %NL80211_ATTR_DURATION. When called, this operation
 *	returns a cookie (%NL80211_ATTR_COOKIE) that will be included with the
 *	TX status event pertaining to the TX request.
 *	%NL80211_ATTR_TX_NO_CCK_RATE is used to decide whether to send the
 *	management frames at CCK rate or not in 2GHz band.
 *	%NL80211_ATTR_CSA_C_OFFSETS_TX is an array of offsets to CSA
 *	counters which will be updated to the current value. This attribute
 *	is used during CSA period.
 *	For TX on an MLD, the frequency can be omitted and the link ID be
 *	specified, or if transmitting to a known peer MLD (with MLD addresses
 *	in the frame) both can be omitted and the link will be selected by
 *	lower layers.
 *	For RX notification, %NL80211_ATTR_RX_HW_TIMESTAMP may be included to
 *	indicate the frame RX timestamp and %NL80211_ATTR_TX_HW_TIMESTAMP may
 *	be included to indicate the ack TX timestamp.
 * @NL80211_CMD_FRAME_WAIT_CANCEL: When an off-channel TX was requested, this
 *	command may be used with the corresponding cookie to cancel the wait
 *	time if it is known that it is no longer necessary.  This command is
 *	also sent as an event whenever the driver has completed the off-channel
 *	wait time.
 * @NL80211_CMD_ACTION: Alias for @NL80211_CMD_FRAME for backward compatibility.
 * @NL80211_CMD_FRAME_TX_STATUS: Report TX status of a management frame
 *	transmitted with %NL80211_CMD_FRAME. %NL80211_ATTR_COOKIE identifies
 *	the TX command and %NL80211_ATTR_FRAME includes the contents of the
 *	frame. %NL80211_ATTR_ACK flag is included if the recipient acknowledged
 *	the frame. %NL80211_ATTR_TX_HW_TIMESTAMP may be included to indicate the
 *	tx timestamp and %NL80211_ATTR_RX_HW_TIMESTAMP may be included to
 *	indicate the ack RX timestamp.
 * @NL80211_CMD_ACTION_TX_STATUS: Alias for @NL80211_CMD_FRAME_TX_STATUS for
 *	backward compatibility.
 *
 * @NL80211_CMD_SET_POWER_SAVE: Set powersave, using %NL80211_ATTR_PS_STATE
 * @NL80211_CMD_GET_POWER_SAVE: Get powersave status in %NL80211_ATTR_PS_STATE
 *
 * @NL80211_CMD_SET_CQM: Connection quality monitor configuration. This command
 *	is used to configure connection quality monitoring notification trigger
 *	levels.
 * @NL80211_CMD_NOTIFY_CQM: Connection quality monitor notification. This
 *	command is used as an event to indicate the that a trigger level was
 *	reached.
 * @NL80211_CMD_SET_CHANNEL: Set the channel (using %NL80211_ATTR_WIPHY_FREQ
 *	and the attributes determining channel width) the given interface
 *	(identifed by %NL80211_ATTR_IFINDEX) shall operate on.
 *	In case multiple channels are supported by the device, the mechanism
 *	with which it switches channels is implementation-defined.
 *	When a monitor interface is given, it can only switch channel while
 *	no other interfaces are operating to avoid disturbing the operation
 *	of any other interfaces, and other interfaces will again take
 *	precedence when they are used.
 *
 * @NL80211_CMD_SET_WDS_PEER: Set the MAC address of the peer on a WDS interface
 *	(no longer supported).
 *
 * @NL80211_CMD_SET_MULTICAST_TO_UNICAST: Configure if this AP should perform
 *	multicast to unicast conversion. When enabled, all multicast packets
 *	with ethertype ARP, IPv4 or IPv6 (possibly within an 802.1Q header)
 *	will be sent out to each station once with the destination (multicast)
 *	MAC address replaced by the station's MAC address. Note that this may
 *	break certain expectations of the receiver, e.g. the ability to drop
 *	unicast IP packets encapsulated in multicast L2 frames, or the ability
 *	to not send destination unreachable messages in such cases.
 *	This can only be toggled per BSS. Configure this on an interface of
 *	type %NL80211_IFTYPE_AP. It applies to all its VLAN interfaces
 *	(%NL80211_IFTYPE_AP_VLAN), except for those in 4addr (WDS) mode.
 *	If %NL80211_ATTR_MULTICAST_TO_UNICAST_ENABLED is not present with this
 *	command, the feature is disabled.
 *
 * @NL80211_CMD_JOIN_MESH: Join a mesh. The mesh ID must be given, and initial
 *	mesh config parameters may be given.
 * @NL80211_CMD_LEAVE_MESH: Leave the mesh network -- no special arguments, the
 *	network is determined by the network interface.
 *
 * @NL80211_CMD_UNPROT_DEAUTHENTICATE: Unprotected deauthentication frame
 *	notification. This event is used to indicate that an unprotected
 *	deauthentication frame was dropped when MFP is in use.
 * @NL80211_CMD_UNPROT_DISASSOCIATE: Unprotected disassociation frame
 *	notification. This event is used to indicate that an unprotected
 *	disassociation frame was dropped when MFP is in use.
 *
 * @NL80211_CMD_NEW_PEER_CANDIDATE: Notification on the reception of a
 *      beacon or probe response from a compatible mesh peer.  This is only
 *      sent while no station information (sta_info) exists for the new peer
 *      candidate and when @NL80211_MESH_SETUP_USERSPACE_AUTH,
 *      @NL80211_MESH_SETUP_USERSPACE_AMPE, or
 *      @NL80211_MESH_SETUP_USERSPACE_MPM is set.  On reception of this
 *      notification, userspace may decide to create a new station
 *      (@NL80211_CMD_NEW_STATION).  To stop this notification from
 *      reoccurring, the userspace authentication daemon may want to create the
 *      new station with the AUTHENTICATED flag unset and maybe change it later
 *      depending on the authentication result.
 *
 * @NL80211_CMD_GET_WOWLAN: get Wake-on-Wireless-LAN (WoWLAN) settings.
 * @NL80211_CMD_SET_WOWLAN: set Wake-on-Wireless-LAN (WoWLAN) settings.
 *	Since wireless is more complex than wired ethernet, it supports
 *	various triggers. These triggers can be configured through this
 *	command with the %NL80211_ATTR_WOWLAN_TRIGGERS attribute. For
 *	more background information, see
 *	https://wireless.wiki.kernel.org/en/users/Documentation/WoWLAN.
 *	The @NL80211_CMD_SET_WOWLAN command can also be used as a notification
 *	from the driver reporting the wakeup reason. In this case, the
 *	@NL80211_ATTR_WOWLAN_TRIGGERS attribute will contain the reason
 *	for the wakeup, if it was caused by wireless. If it is not present
 *	in the wakeup notification, the wireless device didn't cause the
 *	wakeup but reports that it was woken up.
 *
 * @NL80211_CMD_SET_REKEY_OFFLOAD: This command is used give the driver
 *	the necessary information for supporting GTK rekey offload. This
 *	feature is typically used during WoWLAN. The configuration data
 *	is contained in %NL80211_ATTR_REKEY_DATA (which is nested and
 *	contains the data in sub-attributes). After rekeying happened,
 *	this command may also be sent by the driver as an MLME event to
 *	inform userspace of the new replay counter.
 *
 * @NL80211_CMD_PMKSA_CANDIDATE: This is used as an event to inform userspace
 *	of PMKSA caching dandidates.
 *
 * @NL80211_CMD_TDLS_OPER: Perform a high-level TDLS command (e.g. link setup).
 *	In addition, this can be used as an event to request userspace to take
 *	actions on TDLS links (set up a new link or tear down an existing one).
 *	In such events, %NL80211_ATTR_TDLS_OPERATION indicates the requested
 *	operation, %NL80211_ATTR_MAC contains the peer MAC address, and
 *	%NL80211_ATTR_REASON_CODE the reason code to be used (only with
 *	%NL80211_TDLS_TEARDOWN).
 * @NL80211_CMD_TDLS_MGMT: Send a TDLS management frame. The
 *	%NL80211_ATTR_TDLS_ACTION attribute determines the type of frame to be
 *	sent. Public Action codes (802.11-2012 8.1.5.1) will be sent as
 *	802.11 management frames, while TDLS action codes (802.11-2012
 *	8.5.13.1) will be encapsulated and sent as data frames. The currently
 *	supported Public Action code is %WLAN_PUB_ACTION_TDLS_DISCOVER_RES
 *	and the currently supported TDLS actions codes are given in
 *	&enum ieee80211_tdls_actioncode.
 *
 * @NL80211_CMD_UNEXPECTED_FRAME: Used by an application controlling an AP
 *	(or GO) interface (i.e. hostapd) to ask for unexpected frames to
 *	implement sending deauth to stations that send unexpected class 3
 *	frames. Also used as the event sent by the kernel when such a frame
 *	is received.
 *	For the event, the %NL80211_ATTR_MAC attribute carries the TA and
 *	other attributes like the interface index are present.
 *	If used as the command it must have an interface index and you can
 *	only unsubscribe from the event by closing the socket. Subscription
 *	is also for %NL80211_CMD_UNEXPECTED_4ADDR_FRAME events.
 *
 * @NL80211_CMD_UNEXPECTED_4ADDR_FRAME: Sent as an event indicating that the
 *	associated station identified by %NL80211_ATTR_MAC sent a 4addr frame
 *	and wasn't already in a 4-addr VLAN. The event will be sent similarly
 *	to the %NL80211_CMD_UNEXPECTED_FRAME event, to the same listener.
 *
 * @NL80211_CMD_PROBE_CLIENT: Probe an associated station on an AP interface
 *	by sending a null data frame to it and reporting when the frame is
 *	acknowleged. This is used to allow timing out inactive clients. Uses
 *	%NL80211_ATTR_IFINDEX and %NL80211_ATTR_MAC. The command returns a
 *	direct reply with an %NL80211_ATTR_COOKIE that is later used to match
 *	up the event with the request. The event includes the same data and
 *	has %NL80211_ATTR_ACK set if the frame was ACKed.
 *
 * @NL80211_CMD_REGISTER_BEACONS: Register this socket to receive beacons from
 *	other BSSes when any interfaces are in AP mode. This helps implement
 *	OLBC handling in hostapd. Beacons are reported in %NL80211_CMD_FRAME
 *	messages. Note that per PHY only one application may register.
 *
 * @NL80211_CMD_SET_NOACK_MAP: sets a bitmap for the individual TIDs whether
 *      No Acknowledgement Policy should be applied.
 *
 * @NL80211_CMD_CH_SWITCH_NOTIFY: An AP or GO may decide to switch channels
 *	independently of the userspace SME, send this event indicating
 *	%NL80211_ATTR_IFINDEX is now on %NL80211_ATTR_WIPHY_FREQ and the
 *	attributes determining channel width.  This indication may also be
 *	sent when a remotely-initiated switch (e.g., when a STA receives a CSA
 *	from the remote AP) is completed;
 *
 * @NL80211_CMD_CH_SWITCH_STARTED_NOTIFY: Notify that a channel switch
 *	has been started on an interface, regardless of the initiator
 *	(ie. whether it was requested from a remote device or
 *	initiated on our own).  It indicates that
 *	%NL80211_ATTR_IFINDEX will be on %NL80211_ATTR_WIPHY_FREQ
 *	after %NL80211_ATTR_CH_SWITCH_COUNT TBTT's.  The userspace may
 *	decide to react to this indication by requesting other
 *	interfaces to change channel as well.
 *
 * @NL80211_CMD_START_P2P_DEVICE: Start the given P2P Device, identified by
 *	its %NL80211_ATTR_WDEV identifier. It must have been created with
 *	%NL80211_CMD_NEW_INTERFACE previously. After it has been started, the
 *	P2P Device can be used for P2P operations, e.g. remain-on-channel and
 *	public action frame TX.
 * @NL80211_CMD_STOP_P2P_DEVICE: Stop the given P2P Device, identified by
 *	its %NL80211_ATTR_WDEV identifier.
 *
 * @NL80211_CMD_CONN_FAILED: connection request to an AP failed; used to
 *	notify userspace that AP has rejected the connection request from a
 *	station, due to particular reason. %NL80211_ATTR_CONN_FAILED_REASON
 *	is used for this.
 *
 * @NL80211_CMD_SET_MCAST_RATE: Change the rate used to send multicast frames
 *	for IBSS or MESH vif.
 *
 * @NL80211_CMD_SET_MAC_ACL: sets ACL for MAC address based access control.
 *	This is to be used with the drivers advertising the support of MAC
 *	address based access control. List of MAC addresses is passed in
 *	%NL80211_ATTR_MAC_ADDRS and ACL policy is passed in
 *	%NL80211_ATTR_ACL_POLICY. Driver will enable ACL with this list, if it
 *	is not already done. The new list will replace any existing list. Driver
 *	will clear its ACL when the list of MAC addresses passed is empty. This
 *	command is used in AP/P2P GO mode. Driver has to make sure to clear its
 *	ACL list during %NL80211_CMD_STOP_AP.
 *
 * @NL80211_CMD_RADAR_DETECT: Start a Channel availability check (CAC). Once
 *	a radar is detected or the channel availability scan (CAC) has finished
 *	or was aborted, or a radar was detected, usermode will be notified with
 *	this event. This command is also used to notify userspace about radars
 *	while operating on this channel.
 *	%NL80211_ATTR_RADAR_EVENT is used to inform about the type of the
 *	event.
 *
 * @NL80211_CMD_GET_PROTOCOL_FEATURES: Get global nl80211 protocol features,
 *	i.e. features for the nl80211 protocol rather than device features.
 *	Returns the features in the %NL80211_ATTR_PROTOCOL_FEATURES bitmap.
 *
 * @NL80211_CMD_UPDATE_FT_IES: Pass down the most up-to-date Fast Transition
 *	Information Element to the WLAN driver
 *
 * @NL80211_CMD_FT_EVENT: Send a Fast transition event from the WLAN driver
 *	to the supplicant. This will carry the target AP's MAC address along
 *	with the relevant Information Elements. This event is used to report
 *	received FT IEs (MDIE, FTIE, RSN IE, TIE, RICIE).
 *
 * @NL80211_CMD_CRIT_PROTOCOL_START: Indicates user-space will start running
 *	a critical protocol that needs more reliability in the connection to
 *	complete.
 *
 * @NL80211_CMD_CRIT_PROTOCOL_STOP: Indicates the connection reliability can
 *	return back to normal.
 *
 * @NL80211_CMD_GET_COALESCE: Get currently supported coalesce rules.
 * @NL80211_CMD_SET_COALESCE: Configure coalesce rules or clear existing rules.
 *
 * @NL80211_CMD_CHANNEL_SWITCH: Perform a channel switch by announcing the
 *	new channel information (Channel Switch Announcement - CSA)
 *	in the beacon for some time (as defined in the
 *	%NL80211_ATTR_CH_SWITCH_COUNT parameter) and then change to the
 *	new channel. Userspace provides the new channel information (using
 *	%NL80211_ATTR_WIPHY_FREQ and the attributes determining channel
 *	width). %NL80211_ATTR_CH_SWITCH_BLOCK_TX may be supplied to inform
 *	other station that transmission must be blocked until the channel
 *	switch is complete.
 *
 * @NL80211_CMD_VENDOR: Vendor-specified command/event. The command is specified
 *	by the %NL80211_ATTR_VENDOR_ID attribute and a sub-command in
 *	%NL80211_ATTR_VENDOR_SUBCMD. Parameter(s) can be transported in
 *	%NL80211_ATTR_VENDOR_DATA.
 *	For feature advertisement, the %NL80211_ATTR_VENDOR_DATA attribute is
 *	used in the wiphy data as a nested attribute containing descriptions
 *	(&struct nl80211_vendor_cmd_info) of the supported vendor commands.
 *	This may also be sent as an event with the same attributes.
 *
 * @NL80211_CMD_SET_QOS_MAP: Set Interworking QoS mapping for IP DSCP values.
 *	The QoS mapping information is included in %NL80211_ATTR_QOS_MAP. If
 *	that attribute is not included, QoS mapping is disabled. Since this
 *	QoS mapping is relevant for IP packets, it is only valid during an
 *	association. This is cleared on disassociation and AP restart.
 *
 * @NL80211_CMD_ADD_TX_TS: Ask the kernel to add a traffic stream for the given
 *	%NL80211_ATTR_TSID and %NL80211_ATTR_MAC with %NL80211_ATTR_USER_PRIO
 *	and %NL80211_ATTR_ADMITTED_TIME parameters.
 *	Note that the action frame handshake with the AP shall be handled by
 *	userspace via the normal management RX/TX framework, this only sets
 *	up the TX TS in the driver/device.
 *	If the admitted time attribute is not added then the request just checks
 *	if a subsequent setup could be successful, the intent is to use this to
 *	avoid setting up a session with the AP when local restrictions would
 *	make that impossible. However, the subsequent "real" setup may still
 *	fail even if the check was successful.
 * @NL80211_CMD_DEL_TX_TS: Remove an existing TS with the %NL80211_ATTR_TSID
 *	and %NL80211_ATTR_MAC parameters. It isn't necessary to call this
 *	before removing a station entry entirely, or before disassociating
 *	or similar, cleanup will happen in the driver/device in this case.
 *
 * @NL80211_CMD_GET_MPP: Get mesh path attributes for mesh proxy path to
 *	destination %NL80211_ATTR_MAC on the interface identified by
 *	%NL80211_ATTR_IFINDEX.
 *
 * @NL80211_CMD_JOIN_OCB: Join the OCB network. The center frequency and
 *	bandwidth of a channel must be given.
 * @NL80211_CMD_LEAVE_OCB: Leave the OCB network -- no special arguments, the
 *	network is determined by the network interface.
 *
 * @NL80211_CMD_TDLS_CHANNEL_SWITCH: Start channel-switching with a TDLS peer,
 *	identified by the %NL80211_ATTR_MAC parameter. A target channel is
 *	provided via %NL80211_ATTR_WIPHY_FREQ and other attributes determining
 *	channel width/type. The target operating class is given via
 *	%NL80211_ATTR_OPER_CLASS.
 *	The driver is responsible for continually initiating channel-switching
 *	operations and returning to the base channel for communication with the
 *	AP.
 * @NL80211_CMD_TDLS_CANCEL_CHANNEL_SWITCH: Stop channel-switching with a TDLS
 *	peer given by %NL80211_ATTR_MAC. Both peers must be on the base channel
 *	when this command completes.
 *
 * @NL80211_CMD_WIPHY_REG_CHANGE: Similar to %NL80211_CMD_REG_CHANGE, but used
 *	as an event to indicate changes for devices with wiphy-specific regdom
 *	management.
 *
 * @NL80211_CMD_ABORT_SCAN: Stop an ongoing scan. Returns -ENOENT if a scan is
 *	not running. The driver indicates the status of the scan through
 *	cfg80211_scan_done().
 *
 * @NL80211_CMD_START_NAN: Start NAN operation, identified by its
 *	%NL80211_ATTR_WDEV interface. This interface must have been
 *	previously created with %NL80211_CMD_NEW_INTERFACE. After it
 *	has been started, the NAN interface will create or join a
 *	cluster. This command must have a valid
 *	%NL80211_ATTR_NAN_MASTER_PREF attribute and optional
 *	%NL80211_ATTR_BANDS attributes.  If %NL80211_ATTR_BANDS is
 *	omitted or set to 0, it means don't-care and the device will
 *	decide what to use.  After this command NAN functions can be
 *	added.
 * @NL80211_CMD_STOP_NAN: Stop the NAN operation, identified by
 *	its %NL80211_ATTR_WDEV interface.
 * @NL80211_CMD_ADD_NAN_FUNCTION: Add a NAN function. The function is defined
 *	with %NL80211_ATTR_NAN_FUNC nested attribute. When called, this
 *	operation returns the strictly positive and unique instance id
 *	(%NL80211_ATTR_NAN_FUNC_INST_ID) and a cookie (%NL80211_ATTR_COOKIE)
 *	of the function upon success.
 *	Since instance ID's can be re-used, this cookie is the right
 *	way to identify the function. This will avoid races when a termination
 *	event is handled by the user space after it has already added a new
 *	function that got the same instance id from the kernel as the one
 *	which just terminated.
 *	This cookie may be used in NAN events even before the command
 *	returns, so userspace shouldn't process NAN events until it processes
 *	the response to this command.
 *	Look at %NL80211_ATTR_SOCKET_OWNER as well.
 * @NL80211_CMD_DEL_NAN_FUNCTION: Delete a NAN function by cookie.
 *	This command is also used as a notification sent when a NAN function is
 *	terminated. This will contain a %NL80211_ATTR_NAN_FUNC_INST_ID
 *	and %NL80211_ATTR_COOKIE attributes.
 * @NL80211_CMD_CHANGE_NAN_CONFIG: Change current NAN
 *	configuration. NAN must be operational (%NL80211_CMD_START_NAN
 *	was executed).  It must contain at least one of the following
 *	attributes: %NL80211_ATTR_NAN_MASTER_PREF,
 *	%NL80211_ATTR_BANDS.  If %NL80211_ATTR_BANDS is omitted, the
 *	current configuration is not changed.  If it is present but
 *	set to zero, the configuration is changed to don't-care
 *	(i.e. the device can decide what to do).
 * @NL80211_CMD_NAN_FUNC_MATCH: Notification sent when a match is reported.
 *	This will contain a %NL80211_ATTR_NAN_MATCH nested attribute and
 *	%NL80211_ATTR_COOKIE.
 *
 * @NL80211_CMD_UPDATE_CONNECT_PARAMS: Update one or more connect parameters
 *	for subsequent roaming cases if the driver or firmware uses internal
 *	BSS selection. This command can be issued only while connected and it
 *	does not result in a change for the current association. Currently,
 *	only the %NL80211_ATTR_IE data is used and updated with this command.
 *
 * @NL80211_CMD_SET_PMK: For offloaded 4-Way handshake, set the PMK or PMK-R0
 *	for the given authenticator address (specified with %NL80211_ATTR_MAC).
 *	When %NL80211_ATTR_PMKR0_NAME is set, %NL80211_ATTR_PMK specifies the
 *	PMK-R0, otherwise it specifies the PMK.
 * @NL80211_CMD_DEL_PMK: For offloaded 4-Way handshake, delete the previously
 *	configured PMK for the authenticator address identified by
 *	%NL80211_ATTR_MAC.
 * @NL80211_CMD_PORT_AUTHORIZED: An event that indicates an 802.1X FT roam was
 *	completed successfully. Drivers that support 4 way handshake offload
 *	should send this event after indicating 802.1X FT assocation with
 *	%NL80211_CMD_ROAM. If the 4 way handshake failed %NL80211_CMD_DISCONNECT
 *	should be indicated instead.
 * @NL80211_CMD_CONTROL_PORT_FRAME: Control Port (e.g. PAE) frame TX request
 *	and RX notification.  This command is used both as a request to transmit
 *	a control port frame and as a notification that a control port frame
 *	has been received. %NL80211_ATTR_FRAME is used to specify the
 *	frame contents.  The frame is the raw EAPoL data, without ethernet or
 *	802.11 headers.
 *	For an MLD transmitter, the %NL80211_ATTR_MLO_LINK_ID may be given and
 *	its effect will depend on the destination: If the destination is known
 *	to be an MLD, this will be used as a hint to select the link to transmit
 *	the frame on. If the destination is not an MLD, this will select both
 *	the link to transmit on and the source address will be set to the link
 *	address of that link.
 *	When used as an event indication %NL80211_ATTR_CONTROL_PORT_ETHERTYPE,
 *	%NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT and %NL80211_ATTR_MAC are added
 *	indicating the protocol type of the received frame; whether the frame
 *	was received unencrypted and the MAC address of the peer respectively.
 *
 * @NL80211_CMD_RELOAD_REGDB: Request that the regdb firmware file is reloaded.
 *
 * @NL80211_CMD_EXTERNAL_AUTH: This interface is exclusively defined for host
 *	drivers that do not define separate commands for authentication and
 *	association, but rely on user space for the authentication to happen.
 *	This interface acts both as the event request (driver to user space)
 *	to trigger the authentication and command response (userspace to
 *	driver) to indicate the authentication status.
 *
 *	User space uses the %NL80211_CMD_CONNECT command to the host driver to
 *	trigger a connection. The host driver selects a BSS and further uses
 *	this interface to offload only the authentication part to the user
 *	space. Authentication frames are passed between the driver and user
 *	space through the %NL80211_CMD_FRAME interface. Host driver proceeds
 *	further with the association after getting successful authentication
 *	status. User space indicates the authentication status through
 *	%NL80211_ATTR_STATUS_CODE attribute in %NL80211_CMD_EXTERNAL_AUTH
 *	command interface.
 *
 *	Host driver reports this status on an authentication failure to the
 *	user space through the connect result as the user space would have
 *	initiated the connection through the connect request.
 *
 * @NL80211_CMD_STA_OPMODE_CHANGED: An event that notify station's
 *	ht opmode or vht opmode changes using any of %NL80211_ATTR_SMPS_MODE,
 *	%NL80211_ATTR_CHANNEL_WIDTH,%NL80211_ATTR_NSS attributes with its
 *	address(specified in %NL80211_ATTR_MAC).
 *
 * @NL80211_CMD_GET_FTM_RESPONDER_STATS: Retrieve FTM responder statistics, in
 *	the %NL80211_ATTR_FTM_RESPONDER_STATS attribute.
 *
 * @NL80211_CMD_PEER_MEASUREMENT_START: start a (set of) peer measurement(s)
 *	with the given parameters, which are encapsulated in the nested
 *	%NL80211_ATTR_PEER_MEASUREMENTS attribute. Optionally, MAC address
 *	randomization may be enabled and configured by specifying the
 *	%NL80211_ATTR_MAC and %NL80211_ATTR_MAC_MASK attributes.
 *	If a timeout is requested, use the %NL80211_ATTR_TIMEOUT attribute.
 *	A u64 cookie for further %NL80211_ATTR_COOKIE use is returned in
 *	the netlink extended ack message.
 *
 *	To cancel a measurement, close the socket that requested it.
 *
 *	Measurement results are reported to the socket that requested the
 *	measurement using @NL80211_CMD_PEER_MEASUREMENT_RESULT when they
 *	become available, so applications must ensure a large enough socket
 *	buffer size.
 *
 *	Depending on driver support it may or may not be possible to start
 *	multiple concurrent measurements.
 * @NL80211_CMD_PEER_MEASUREMENT_RESULT: This command number is used for the
 *	result notification from the driver to the requesting socket.
 * @NL80211_CMD_PEER_MEASUREMENT_COMPLETE: Notification only, indicating that
 *	the measurement completed, using the measurement cookie
 *	(%NL80211_ATTR_COOKIE).
 *
 * @NL80211_CMD_NOTIFY_RADAR: Notify the kernel that a radar signal was
 *	detected and reported by a neighboring device on the channel
 *	indicated by %NL80211_ATTR_WIPHY_FREQ and other attributes
 *	determining the width and type.
 *
 * @NL80211_CMD_UPDATE_OWE_INFO: This interface allows the host driver to
 *	offload OWE processing to user space. This intends to support
 *	OWE AKM by the host drivers that implement SME but rely
 *	on the user space for the cryptographic/DH IE processing in AP mode.
 *
 * @NL80211_CMD_PROBE_MESH_LINK: The requirement for mesh link metric
 *	refreshing, is that from one mesh point we be able to send some data
 *	frames to other mesh points which are not currently selected as a
 *	primary traffic path, but which are only 1 hop away. The absence of
 *	the primary path to the chosen node makes it necessary to apply some
 *	form of marking on a chosen packet stream so that the packets can be
 *	properly steered to the selected node for testing, and not by the
 *	regular mesh path lookup. Further, the packets must be of type data
 *	so that the rate control (often embedded in firmware) is used for
 *	rate selection.
 *
 *	Here attribute %NL80211_ATTR_MAC is used to specify connected mesh
 *	peer MAC address and %NL80211_ATTR_FRAME is used to specify the frame
 *	content. The frame is ethernet data.
 *
 * @NL80211_CMD_SET_TID_CONFIG: Data frame TID specific configuration
 *	is passed using %NL80211_ATTR_TID_CONFIG attribute.
 *
 * @NL80211_CMD_UNPROT_BEACON: Unprotected or incorrectly protected Beacon
 *	frame. This event is used to indicate that a received Beacon frame was
 *	dropped because it did not include a valid MME MIC while beacon
 *	protection was enabled (BIGTK configured in station mode).
 *
 * @NL80211_CMD_CONTROL_PORT_FRAME_TX_STATUS: Report TX status of a control
 *	port frame transmitted with %NL80211_CMD_CONTROL_PORT_FRAME.
 *	%NL80211_ATTR_COOKIE identifies the TX command and %NL80211_ATTR_FRAME
 *	includes the contents of the frame. %NL80211_ATTR_ACK flag is included
 *	if the recipient acknowledged the frame.
 *
 * @NL80211_CMD_SET_SAR_SPECS: SAR power limitation configuration is
 *	passed using %NL80211_ATTR_SAR_SPEC. %NL80211_ATTR_WIPHY is used to
 *	specify the wiphy index to be applied to.
 *
 * @NL80211_CMD_OBSS_COLOR_COLLISION: This notification is sent out whenever
 *	mac80211/drv detects a bss color collision.
 *
 * @NL80211_CMD_COLOR_CHANGE_REQUEST: This command is used to indicate that
 *	userspace wants to change the BSS color.
 *
 * @NL80211_CMD_COLOR_CHANGE_STARTED: Notify userland, that a color change has
 *	started
 *
 * @NL80211_CMD_COLOR_CHANGE_ABORTED: Notify userland, that the color change has
 *	been aborted
 *
 * @NL80211_CMD_COLOR_CHANGE_COMPLETED: Notify userland that the color change
 *	has completed
 *
 * @NL80211_CMD_SET_FILS_AAD: Set FILS AAD data to the driver using -
 *	&NL80211_ATTR_MAC - for STA MAC address
 *	&NL80211_ATTR_FILS_KEK - for KEK
 *	&NL80211_ATTR_FILS_NONCES - for FILS Nonces
 *		(STA Nonce 16 bytes followed by AP Nonce 16 bytes)
 *
 * @NL80211_CMD_ASSOC_COMEBACK: notification about an association
 *      temporal rejection with comeback. The event includes %NL80211_ATTR_MAC
 *      to describe the BSSID address of the AP and %NL80211_ATTR_TIMEOUT to
 *      specify the timeout value.
 *
 * @NL80211_CMD_ADD_LINK: Add a new link to an interface. The
 *	%NL80211_ATTR_MLO_LINK_ID attribute is used for the new link.
 * @NL80211_CMD_REMOVE_LINK: Remove a link from an interface. This may come
 *	without %NL80211_ATTR_MLO_LINK_ID as an easy way to remove all links
 *	in preparation for e.g. roaming to a regular (non-MLO) AP.
 *
 * @NL80211_CMD_ADD_LINK_STA: Add a link to an MLD station
 * @NL80211_CMD_MODIFY_LINK_STA: Modify a link of an MLD station
 * @NL80211_CMD_REMOVE_LINK_STA: Remove a link of an MLD station
 *
 * @NL80211_CMD_MAX: highest used command number
 * @__NL80211_CMD_AFTER_LAST: internal use
 */
enum nl80211_commands {
/* don't change the order or add anything between, this is ABI! */
	NL80211_CMD_UNSPEC,

	NL80211_CMD_GET_WIPHY,		/* can dump */
	NL80211_CMD_SET_WIPHY,
	NL80211_CMD_NEW_WIPHY,
	NL80211_CMD_DEL_WIPHY,

	NL80211_CMD_GET_INTERFACE,	/* can dump */
	NL80211_CMD_SET_INTERFACE,
	NL80211_CMD_NEW_INTERFACE,
	NL80211_CMD_DEL_INTERFACE,

	NL80211_CMD_GET_KEY,
	NL80211_CMD_SET_KEY,
	NL80211_CMD_NEW_KEY,
	NL80211_CMD_DEL_KEY,

	NL80211_CMD_GET_BEACON,
	NL80211_CMD_SET_BEACON,
	NL80211_CMD_START_AP,
	NL80211_CMD_NEW_BEACON = NL80211_CMD_START_AP,
	NL80211_CMD_STOP_AP,
	NL80211_CMD_DEL_BEACON = NL80211_CMD_STOP_AP,

	NL80211_CMD_GET_STATION,
	NL80211_CMD_SET_STATION,
	NL80211_CMD_NEW_STATION,
	NL80211_CMD_DEL_STATION,

	NL80211_CMD_GET_MPATH,
	NL80211_CMD_SET_MPATH,
	NL80211_CMD_NEW_MPATH,
	NL80211_CMD_DEL_MPATH,

	NL80211_CMD_SET_BSS,

	NL80211_CMD_SET_REG,
	NL80211_CMD_REQ_SET_REG,

	NL80211_CMD_GET_MESH_CONFIG,
	NL80211_CMD_SET_MESH_CONFIG,

	NL80211_CMD_SET_MGMT_EXTRA_IE /* reserved; not used */,

	NL80211_CMD_GET_REG,

	NL80211_CMD_GET_SCAN,
	NL80211_CMD_TRIGGER_SCAN,
	NL80211_CMD_NEW_SCAN_RESULTS,
	NL80211_CMD_SCAN_ABORTED,

	NL80211_CMD_REG_CHANGE,

	NL80211_CMD_AUTHENTICATE,
	NL80211_CMD_ASSOCIATE,
	NL80211_CMD_DEAUTHENTICATE,
	NL80211_CMD_DISASSOCIATE,

	NL80211_CMD_MICHAEL_MIC_FAILURE,

	NL80211_CMD_REG_BEACON_HINT,

	NL80211_CMD_JOIN_IBSS,
	NL80211_CMD_LEAVE_IBSS,

	NL80211_CMD_TESTMODE,

	NL80211_CMD_CONNECT,
	NL80211_CMD_ROAM,
	NL80211_CMD_DISCONNECT,

	NL80211_CMD_SET_WIPHY_NETNS,

	NL80211_CMD_GET_SURVEY,
	NL80211_CMD_NEW_SURVEY_RESULTS,

	NL80211_CMD_SET_PMKSA,
	NL80211_CMD_DEL_PMKSA,
	NL80211_CMD_FLUSH_PMKSA,

	NL80211_CMD_REMAIN_ON_CHANNEL,
	NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL,

	NL80211_CMD_SET_TX_BITRATE_MASK,

	NL80211_CMD_REGISTER_FRAME,
	NL80211_CMD_REGISTER_ACTION = NL80211_CMD_REGISTER_FRAME,
	NL80211_CMD_FRAME,
	NL80211_CMD_ACTION = NL80211_CMD_FRAME,
	NL80211_CMD_FRAME_TX_STATUS,
	NL80211_CMD_ACTION_TX_STATUS = NL80211_CMD_FRAME_TX_STATUS,

	NL80211_CMD_SET_POWER_SAVE,
	NL80211_CMD_GET_POWER_SAVE,

	NL80211_CMD_SET_CQM,
	NL80211_CMD_NOTIFY_CQM,

	NL80211_CMD_SET_CHANNEL,
	NL80211_CMD_SET_WDS_PEER,

	NL80211_CMD_FRAME_WAIT_CANCEL,

	NL80211_CMD_JOIN_MESH,
	NL80211_CMD_LEAVE_MESH,

	NL80211_CMD_UNPROT_DEAUTHENTICATE,
	NL80211_CMD_UNPROT_DISASSOCIATE,

	NL80211_CMD_NEW_PEER_CANDIDATE,

	NL80211_CMD_GET_WOWLAN,
	NL80211_CMD_SET_WOWLAN,

	NL80211_CMD_START_SCHED_SCAN,
	NL80211_CMD_STOP_SCHED_SCAN,
	NL80211_CMD_SCHED_SCAN_RESULTS,
	NL80211_CMD_SCHED_SCAN_STOPPED,

	NL80211_CMD_SET_REKEY_OFFLOAD,

	NL80211_CMD_PMKSA_CANDIDATE,

	NL80211_CMD_TDLS_OPER,
	NL80211_CMD_TDLS_MGMT,

	NL80211_CMD_UNEXPECTED_FRAME,

	NL80211_CMD_PROBE_CLIENT,

	NL80211_CMD_REGISTER_BEACONS,

	NL80211_CMD_UNEXPECTED_4ADDR_FRAME,

	NL80211_CMD_SET_NOACK_MAP,

	NL80211_CMD_CH_SWITCH_NOTIFY,

	NL80211_CMD_START_P2P_DEVICE,
	NL80211_CMD_STOP_P2P_DEVICE,

	NL80211_CMD_CONN_FAILED,

	NL80211_CMD_SET_MCAST_RATE,

	NL80211_CMD_SET_MAC_ACL,

	NL80211_CMD_RADAR_DETECT,

	NL80211_CMD_GET_PROTOCOL_FEATURES,

	NL80211_CMD_UPDATE_FT_IES,
	NL80211_CMD_FT_EVENT,

	NL80211_CMD_CRIT_PROTOCOL_START,
	NL80211_CMD_CRIT_PROTOCOL_STOP,

	NL80211_CMD_GET_COALESCE,
	NL80211_CMD_SET_COALESCE,

	NL80211_CMD_CHANNEL_SWITCH,

	NL80211_CMD_VENDOR,

	NL80211_CMD_SET_QOS_MAP,

	NL80211_CMD_ADD_TX_TS,
	NL80211_CMD_DEL_TX_TS,

	NL80211_CMD_GET_MPP,

	NL80211_CMD_JOIN_OCB,
	NL80211_CMD_LEAVE_OCB,

	NL80211_CMD_CH_SWITCH_STARTED_NOTIFY,

	NL80211_CMD_TDLS_CHANNEL_SWITCH,
	NL80211_CMD_TDLS_CANCEL_CHANNEL_SWITCH,

	NL80211_CMD_WIPHY_REG_CHANGE,

	NL80211_CMD_ABORT_SCAN,

	NL80211_CMD_START_NAN,
	NL80211_CMD_STOP_NAN,
	NL80211_CMD_ADD_NAN_FUNCTION,
	NL80211_CMD_DEL_NAN_FUNCTION,
	NL80211_CMD_CHANGE_NAN_CONFIG,
	NL80211_CMD_NAN_MATCH,

	NL80211_CMD_SET_MULTICAST_TO_UNICAST,

	NL80211_CMD_UPDATE_CONNECT_PARAMS,

	NL80211_CMD_SET_PMK,
	NL80211_CMD_DEL_PMK,

	NL80211_CMD_PORT_AUTHORIZED,

	NL80211_CMD_RELOAD_REGDB,

	NL80211_CMD_EXTERNAL_AUTH,

	NL80211_CMD_STA_OPMODE_CHANGED,

	NL80211_CMD_CONTROL_PORT_FRAME,

	NL80211_CMD_GET_FTM_RESPONDER_STATS,

	NL80211_CMD_PEER_MEASUREMENT_START,
	NL80211_CMD_PEER_MEASUREMENT_RESULT,
	NL80211_CMD_PEER_MEASUREMENT_COMPLETE,

	NL80211_CMD_NOTIFY_RADAR,

	NL80211_CMD_UPDATE_OWE_INFO,

	NL80211_CMD_PROBE_MESH_LINK,

	NL80211_CMD_SET_TID_CONFIG,

	NL80211_CMD_UNPROT_BEACON,

	NL80211_CMD_CONTROL_PORT_FRAME_TX_STATUS,

	NL80211_CMD_SET_SAR_SPECS,

	NL80211_CMD_OBSS_COLOR_COLLISION,

	NL80211_CMD_COLOR_CHANGE_REQUEST,

	NL80211_CMD_COLOR_CHANGE_STARTED,
	NL80211_CMD_COLOR_CHANGE_ABORTED,
	NL80211_CMD_COLOR_CHANGE_COMPLETED,

	NL80211_CMD_SET_FILS_AAD,

	NL80211_CMD_ASSOC_COMEBACK,

	NL80211_CMD_ADD_LINK,
	NL80211_CMD_REMOVE_LINK,

	NL80211_CMD_ADD_LINK_STA,
	NL80211_CMD_MODIFY_LINK_STA,
	NL80211_CMD_REMOVE_LINK_STA,

	/* add new commands above here */

	/* used to define NL80211_CMD_MAX below */
	__NL80211_CMD_AFTER_LAST,
	NL80211_CMD_MAX = __NL80211_CMD_AFTER_LAST - 1
};

/*
 * Allow user space programs to use #ifdef on new commands by defining them
 * here
 */
#define NL80211_CMD_SET_BSS NL80211_CMD_SET_BSS
#define NL80211_CMD_SET_MGMT_EXTRA_IE NL80211_CMD_SET_MGMT_EXTRA_IE
#define NL80211_CMD_REG_CHANGE NL80211_CMD_REG_CHANGE
#define NL80211_CMD_AUTHENTICATE NL80211_CMD_AUTHENTICATE
#define NL80211_CMD_ASSOCIATE NL80211_CMD_ASSOCIATE
#define NL80211_CMD_DEAUTHENTICATE NL80211_CMD_DEAUTHENTICATE
#define NL80211_CMD_DISASSOCIATE NL80211_CMD_DISASSOCIATE
#define NL80211_CMD_REG_BEACON_HINT NL80211_CMD_REG_BEACON_HINT

#define NL80211_ATTR_FEATURE_FLAGS NL80211_ATTR_FEATURE_FLAGS

/* source-level API compatibility */
#define NL80211_CMD_GET_MESH_PARAMS NL80211_CMD_GET_MESH_CONFIG
#define NL80211_CMD_SET_MESH_PARAMS NL80211_CMD_SET_MESH_CONFIG
#define NL80211_MESH_SETUP_VENDOR_PATH_SEL_IE NL80211_MESH_SETUP_IE

/**
 * enum nl80211_attrs - nl80211 netlink attributes
 *
 * @NL80211_ATTR_UNSPEC: unspecified attribute to catch errors
 *
 * @NL80211_ATTR_WIPHY: index of wiphy to operate on, cf.
 *	/sys/class/ieee80211/<phyname>/index
 * @NL80211_ATTR_WIPHY_NAME: wiphy name (used for renaming)
 * @NL80211_ATTR_WIPHY_TXQ_PARAMS: a nested array of TX queue parameters
 * @NL80211_ATTR_WIPHY_FREQ: frequency of the selected channel in MHz,
 *	defines the channel together with the (deprecated)
 *	%NL80211_ATTR_WIPHY_CHANNEL_TYPE attribute or the attributes
 *	%NL80211_ATTR_CHANNEL_WIDTH and if needed %NL80211_ATTR_CENTER_FREQ1
 *	and %NL80211_ATTR_CENTER_FREQ2
 * @NL80211_ATTR_CHANNEL_WIDTH: u32 attribute containing one of the values
 *	of &enum nl80211_chan_width, describing the channel width. See the
 *	documentation of the enum for more information.
 * @NL80211_ATTR_CENTER_FREQ1: Center frequency of the first part of the
 *	channel, used for anything but 20 MHz bandwidth. In S1G this is the
 *	operating channel center frequency.
 * @NL80211_ATTR_CENTER_FREQ2: Center frequency of the second part of the
 *	channel, used only for 80+80 MHz bandwidth
 * @NL80211_ATTR_WIPHY_CHANNEL_TYPE: included with NL80211_ATTR_WIPHY_FREQ
 *	if HT20 or HT40 are to be used (i.e., HT disabled if not included):
 *	NL80211_CHAN_NO_HT = HT not allowed (i.e., same as not including
 *		this attribute)
 *	NL80211_CHAN_HT20 = HT20 only
 *	NL80211_CHAN_HT40MINUS = secondary channel is below the primary channel
 *	NL80211_CHAN_HT40PLUS = secondary channel is above the primary channel
 *	This attribute is now deprecated.
 * @NL80211_ATTR_WIPHY_RETRY_SHORT: TX retry limit for frames whose length is
 *	less than or equal to the RTS threshold; allowed range: 1..255;
 *	dot11ShortRetryLimit; u8
 * @NL80211_ATTR_WIPHY_RETRY_LONG: TX retry limit for frames whose length is
 *	greater than the RTS threshold; allowed range: 1..255;
 *	dot11ShortLongLimit; u8
 * @NL80211_ATTR_WIPHY_FRAG_THRESHOLD: fragmentation threshold, i.e., maximum
 *	length in octets for frames; allowed range: 256..8000, disable
 *	fragmentation with (u32)-1; dot11FragmentationThreshold; u32
 * @NL80211_ATTR_WIPHY_RTS_THRESHOLD: RTS threshold (TX frames with length
 *	larger than or equal to this use RTS/CTS handshake); allowed range:
 *	0..65536, disable with (u32)-1; dot11RTSThreshold; u32
 * @NL80211_ATTR_WIPHY_COVERAGE_CLASS: Coverage Class as defined by IEEE 802.11
 *	section 7.3.2.9; dot11CoverageClass; u8
 *
 * @NL80211_ATTR_IFINDEX: network interface index of the device to operate on
 * @NL80211_ATTR_IFNAME: network interface name
 * @NL80211_ATTR_IFTYPE: type of virtual interface, see &enum nl80211_iftype
 *
 * @NL80211_ATTR_WDEV: wireless device identifier, used for pseudo-devices
 *	that don't have a netdev (u64)
 *
 * @NL80211_ATTR_MAC: MAC address (various uses)
 *
 * @NL80211_ATTR_KEY_DATA: (temporal) key data; for TKIP this consists of
 *	16 bytes encryption key followed by 8 bytes each for TX and RX MIC
 *	keys
 * @NL80211_ATTR_KEY_IDX: key ID (u8, 0-3)
 * @NL80211_ATTR_KEY_CIPHER: key cipher suite (u32, as defined by IEEE 802.11
 *	section 7.3.2.25.1, e.g. 0x000FAC04)
 * @NL80211_ATTR_KEY_SEQ: transmit key sequence number (IV/PN) for TKIP and
 *	CCMP keys, each six bytes in little endian
 * @NL80211_ATTR_KEY_DEFAULT: Flag attribute indicating the key is default key
 * @NL80211_ATTR_KEY_DEFAULT_MGMT: Flag attribute indicating the key is the
 *	default management key
 * @NL80211_ATTR_CIPHER_SUITES_PAIRWISE: For crypto settings for connect or
 *	other commands, indicates which pairwise cipher suites are used
 * @NL80211_ATTR_CIPHER_SUITE_GROUP: For crypto settings for connect or
 *	other commands, indicates which group cipher suite is used
 *
 * @NL80211_ATTR_BEACON_INTERVAL: beacon interval in TU
 * @NL80211_ATTR_DTIM_PERIOD: DTIM period for beaconing
 * @NL80211_ATTR_BEACON_HEAD: portion of the beacon before the TIM IE
 * @NL80211_ATTR_BEACON_TAIL: portion of the beacon after the TIM IE
 *
 * @NL80211_ATTR_STA_AID: Association ID for the station (u16)
 * @NL80211_ATTR_STA_FLAGS: flags, nested element with NLA_FLAG attributes of
 *	&enum nl80211_sta_flags (deprecated, use %NL80211_ATTR_STA_FLAGS2)
 * @NL80211_ATTR_STA_LISTEN_INTERVAL: listen interval as defined by
 *	IEEE 802.11 7.3.1.6 (u16).
 * @NL80211_ATTR_STA_SUPPORTED_RATES: supported rates, array of supported
 *	rates as defined by IEEE 802.11 7.3.2.2 but without the length
 *	restriction (at most %NL80211_MAX_SUPP_RATES).
 * @NL80211_ATTR_STA_VLAN: interface index of VLAN interface to move station
 *	to, or the AP interface the station was originally added to.
 * @NL80211_ATTR_STA_INFO: information about a station, part of station info
 *	given for %NL80211_CMD_GET_STATION, nested attribute containing
 *	info as possible, see &enum nl80211_sta_info.
 *
 * @NL80211_ATTR_WIPHY_BANDS: Information about an operating bands,
 *	consisting of a nested array.
 *
 * @NL80211_ATTR_MESH_ID: mesh id (1-32 bytes).
 * @NL80211_ATTR_STA_PLINK_ACTION: action to perform on the mesh peer link
 *	(see &enum nl80211_plink_action).
 * @NL80211_ATTR_MPATH_NEXT_HOP: MAC address of the next hop for a mesh path.
 * @NL80211_ATTR_MPATH_INFO: information about a mesh_path, part of mesh path
 * 	info given for %NL80211_CMD_GET_MPATH, nested attribute described at
 *	&enum nl80211_mpath_info.
 *
 * @NL80211_ATTR_MNTR_FLAGS: flags, nested element with NLA_FLAG attributes of
 *      &enum nl80211_mntr_flags.
 *
 * @NL80211_ATTR_REG_ALPHA2: an ISO-3166-alpha2 country code for which the
 * 	current regulatory domain should be set to or is already set to.
 * 	For example, 'CR', for Costa Rica. This attribute is used by the kernel
 * 	to query the CRDA to retrieve one regulatory domain. This attribute can
 * 	also be used by userspace to query the kernel for the currently set
 * 	regulatory domain. We chose an alpha2 as that is also used by the
 * 	IEEE-802.11 country information element to identify a country.
 * 	Users can also simply ask the wireless core to set regulatory domain
 * 	to a specific alpha2.
 * @NL80211_ATTR_REG_RULES: a nested array of regulatory domain regulatory
 *	rules.
 *
 * @NL80211_ATTR_BSS_CTS_PROT: whether CTS protection is enabled (u8, 0 or 1)
 * @NL80211_ATTR_BSS_SHORT_PREAMBLE: whether short preamble is enabled
 *	(u8, 0 or 1)
 * @NL80211_ATTR_BSS_SHORT_SLOT_TIME: whether short slot time enabled
 *	(u8, 0 or 1)
 * @NL80211_ATTR_BSS_BASIC_RATES: basic rates, array of basic
 *	rates in format defined by IEEE 802.11 7.3.2.2 but without the length
 *	restriction (at most %NL80211_MAX_SUPP_RATES).
 *
 * @NL80211_ATTR_HT_CAPABILITY: HT Capability information element (from
 *	association request when used with NL80211_CMD_NEW_STATION)
 *
 * @NL80211_ATTR_SUPPORTED_IFTYPES: nested attribute containing all
 *	supported interface types, each a flag attribute with the number
 *	of the interface mode.
 *
 * @NL80211_ATTR_MGMT_SUBTYPE: Management frame subtype for
 *	%NL80211_CMD_SET_MGMT_EXTRA_IE.
 *
 * @NL80211_ATTR_IE: Information element(s) data (used, e.g., with
 *	%NL80211_CMD_SET_MGMT_EXTRA_IE).
 *
 * @NL80211_ATTR_MAX_NUM_SCAN_SSIDS: number of SSIDs you can scan with
 *	a single scan request, a wiphy attribute.
 * @NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS: number of SSIDs you can
 *	scan with a single scheduled scan request, a wiphy attribute.
 * @NL80211_ATTR_MAX_SCAN_IE_LEN: maximum length of information elements
 *	that can be added to a scan request
 * @NL80211_ATTR_MAX_SCHED_SCAN_IE_LEN: maximum length of information
 *	elements that can be added to a scheduled scan request
 * @NL80211_ATTR_MAX_MATCH_SETS: maximum number of sets that can be
 *	used with @NL80211_ATTR_SCHED_SCAN_MATCH, a wiphy attribute.
 *
 * @NL80211_ATTR_SCAN_FREQUENCIES: nested attribute with frequencies (in MHz)
 * @NL80211_ATTR_SCAN_SSIDS: nested attribute with SSIDs, leave out for passive
 *	scanning and include a zero-length SSID (wildcard) for wildcard scan
 * @NL80211_ATTR_BSS: scan result BSS
 *
 * @NL80211_ATTR_REG_INITIATOR: indicates who requested the regulatory domain
 * 	currently in effect. This could be any of the %NL80211_REGDOM_SET_BY_*
 * @NL80211_ATTR_REG_TYPE: indicates the type of the regulatory domain currently
 * 	set. This can be one of the nl80211_reg_type (%NL80211_REGDOM_TYPE_*)
 *
 * @NL80211_ATTR_SUPPORTED_COMMANDS: wiphy attribute that specifies
 *	an array of command numbers (i.e. a mapping index to command number)
 *	that the driver for the given wiphy supports.
 *
 * @NL80211_ATTR_FRAME: frame data (binary attribute), including frame header
 *	and body, but not FCS; used, e.g., with NL80211_CMD_AUTHENTICATE and
 *	NL80211_CMD_ASSOCIATE events
 * @NL80211_ATTR_SSID: SSID (binary attribute, 0..32 octets)
 * @NL80211_ATTR_AUTH_TYPE: AuthenticationType, see &enum nl80211_auth_type,
 *	represented as a u32
 * @NL80211_ATTR_REASON_CODE: ReasonCode for %NL80211_CMD_DEAUTHENTICATE and
 *	%NL80211_CMD_DISASSOCIATE, u16
 *
 * @NL80211_ATTR_KEY_TYPE: Key Type, see &enum nl80211_key_type, represented as
 *	a u32
 *
 * @NL80211_ATTR_FREQ_BEFORE: A channel which has suffered a regulatory change
 * 	due to considerations from a beacon hint. This attribute reflects
 * 	the state of the channel _before_ the beacon hint processing. This
 * 	attributes consists of a nested attribute containing
 * 	NL80211_FREQUENCY_ATTR_*
 * @NL80211_ATTR_FREQ_AFTER: A channel which has suffered a regulatory change
 * 	due to considerations from a beacon hint. This attribute reflects
 * 	the state of the channel _after_ the beacon hint processing. This
 * 	attributes consists of a nested attribute containing
 * 	NL80211_FREQUENCY_ATTR_*
 *
 * @NL80211_ATTR_CIPHER_SUITES: a set of u32 values indicating the supported
 *	cipher suites
 *
 * @NL80211_ATTR_FREQ_FIXED: a flag indicating the IBSS should not try to look
 *	for other networks on different channels
 *
 * @NL80211_ATTR_TIMED_OUT: a flag indicating than an operation timed out; this
 *	is used, e.g., with %NL80211_CMD_AUTHENTICATE event
 *
 * @NL80211_ATTR_USE_MFP: Whether management frame protection (IEEE 802.11w) is
 *	used for the association (&enum nl80211_mfp, represented as a u32);
 *	this attribute can be used with %NL80211_CMD_ASSOCIATE and
 *	%NL80211_CMD_CONNECT requests. %NL80211_MFP_OPTIONAL is not allowed for
 *	%NL80211_CMD_ASSOCIATE since user space SME is expected and hence, it
 *	must have decided whether to use management frame protection or not.
 *	Setting %NL80211_MFP_OPTIONAL with a %NL80211_CMD_CONNECT request will
 *	let the driver (or the firmware) decide whether to use MFP or not.
 *
 * @NL80211_ATTR_STA_FLAGS2: Attribute containing a
 *	&struct nl80211_sta_flag_update.
 *
 * @NL80211_ATTR_CONTROL_PORT: A flag indicating whether user space controls
 *	IEEE 802.1X port, i.e., sets/clears %NL80211_STA_FLAG_AUTHORIZED, in
 *	station mode. If the flag is included in %NL80211_CMD_ASSOCIATE
 *	request, the driver will assume that the port is unauthorized until
 *	authorized by user space. Otherwise, port is marked authorized by
 *	default in station mode.
 * @NL80211_ATTR_CONTROL_PORT_ETHERTYPE: A 16-bit value indicating the
 *	ethertype that will be used for key negotiation. It can be
 *	specified with the associate and connect commands. If it is not
 *	specified, the value defaults to 0x888E (PAE, 802.1X). This
 *	attribute is also used as a flag in the wiphy information to
 *	indicate that protocols other than PAE are supported.
 * @NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT: When included along with
 *	%NL80211_ATTR_CONTROL_PORT_ETHERTYPE, indicates that the custom
 *	ethertype frames used for key negotiation must not be encrypted.
 * @NL80211_ATTR_CONTROL_PORT_OVER_NL80211: A flag indicating whether control
 *	port frames (e.g. of type given in %NL80211_ATTR_CONTROL_PORT_ETHERTYPE)
 *	will be sent directly to the network interface or sent via the NL80211
 *	socket.  If this attribute is missing, then legacy behavior of sending
 *	control port frames directly to the network interface is used.  If the
 *	flag is included, then control port frames are sent over NL80211 instead
 *	using %CMD_CONTROL_PORT_FRAME.  If control port routing over NL80211 is
 *	to be used then userspace must also use the %NL80211_ATTR_SOCKET_OWNER
 *	flag. When used with %NL80211_ATTR_CONTROL_PORT_NO_PREAUTH, pre-auth
 *	frames are not forwared over the control port.
 *
 * @NL80211_ATTR_TESTDATA: Testmode data blob, passed through to the driver.
 *	We recommend using nested, driver-specific attributes within this.
 *
 * @NL80211_ATTR_DISCONNECTED_BY_AP: A flag indicating that the DISCONNECT
 *	event was due to the AP disconnecting the station, and not due to
 *	a local disconnect request.
 * @NL80211_ATTR_STATUS_CODE: StatusCode for the %NL80211_CMD_CONNECT
 *	event (u16)
 * @NL80211_ATTR_PRIVACY: Flag attribute, used with connect(), indicating
 *	that protected APs should be used. This is also used with NEW_BEACON to
 *	indicate that the BSS is to use protection.
 *
 * @NL80211_ATTR_CIPHERS_PAIRWISE: Used with CONNECT, ASSOCIATE, and NEW_BEACON
 *	to indicate which unicast key ciphers will be used with the connection
 *	(an array of u32).
 * @NL80211_ATTR_CIPHER_GROUP: Used with CONNECT, ASSOCIATE, and NEW_BEACON to
 *	indicate which group key cipher will be used with the connection (a
 *	u32).
 * @NL80211_ATTR_WPA_VERSIONS: Used with CONNECT, ASSOCIATE, and NEW_BEACON to
 *	indicate which WPA version(s) the AP we want to associate with is using
 *	(a u32 with flags from &enum nl80211_wpa_versions).
 * @NL80211_ATTR_AKM_SUITES: Used with CONNECT, ASSOCIATE, and NEW_BEACON to
 *	indicate which key management algorithm(s) to use (an array of u32).
 *	This attribute is also sent in response to @NL80211_CMD_GET_WIPHY,
 *	indicating the supported AKM suites, intended for specific drivers which
 *	implement SME and have constraints on which AKMs are supported and also
 *	the cases where an AKM support is offloaded to the driver/firmware.
 *	If there is no such notification from the driver, user space should
 *	assume the driver supports all the AKM suites.
 *
 * @NL80211_ATTR_REQ_IE: (Re)association request information elements as
 *	sent out by the card, for ROAM and successful CONNECT events.
 * @NL80211_ATTR_RESP_IE: (Re)association response information elements as
 *	sent by peer, for ROAM and successful CONNECT events.
 *
 * @NL80211_ATTR_PREV_BSSID: previous BSSID, to be used in ASSOCIATE and CONNECT
 *	commands to specify a request to reassociate within an ESS, i.e., to use
 *	Reassociate Request frame (with the value of this attribute in the
 *	Current AP address field) instead of Association Request frame which is
 *	used for the initial association to an ESS.
 *
 * @NL80211_ATTR_KEY: key information in a nested attribute with
 *	%NL80211_KEY_* sub-attributes
 * @NL80211_ATTR_KEYS: array of keys for static WEP keys for connect()
 *	and join_ibss(), key information is in a nested attribute each
 *	with %NL80211_KEY_* sub-attributes
 *
 * @NL80211_ATTR_PID: Process ID of a network namespace.
 *
 * @NL80211_ATTR_GENERATION: Used to indicate consistent snapshots for
 *	dumps. This number increases whenever the object list being
 *	dumped changes, and as such userspace can verify that it has
 *	obtained a complete and consistent snapshot by verifying that
 *	all dump messages contain the same generation number. If it
 *	changed then the list changed and the dump should be repeated
 *	completely from scratch.
 *
 * @NL80211_ATTR_4ADDR: Use 4-address frames on a virtual interface
 *
 * @NL80211_ATTR_SURVEY_INFO: survey information about a channel, part of
 *      the survey response for %NL80211_CMD_GET_SURVEY, nested attribute
 *      containing info as possible, see &enum survey_info.
 *
 * @NL80211_ATTR_PMKID: PMK material for PMKSA caching.
 * @NL80211_ATTR_MAX_NUM_PMKIDS: maximum number of PMKIDs a firmware can
 *	cache, a wiphy attribute.
 *
 * @NL80211_ATTR_DURATION: Duration of an operation in milliseconds, u32.
 * @NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION: Device attribute that
 *	specifies the maximum duration that can be requested with the
 *	remain-on-channel operation, in milliseconds, u32.
 *
 * @NL80211_ATTR_COOKIE: Generic 64-bit cookie to identify objects.
 *
 * @NL80211_ATTR_TX_RATES: Nested set of attributes
 *	(enum nl80211_tx_rate_attributes) describing TX rates per band. The
 *	enum nl80211_band value is used as the index (nla_type() of the nested
 *	data. If a band is not included, it will be configured to allow all
 *	rates based on negotiated supported rates information. This attribute
 *	is used with %NL80211_CMD_SET_TX_BITRATE_MASK and with starting AP,
 *	and joining mesh networks (not IBSS yet). In the later case, it must
 *	specify just a single bitrate, which is to be used for the beacon.
 *	The driver must also specify support for this with the extended
 *	features NL80211_EXT_FEATURE_BEACON_RATE_LEGACY,
 *	NL80211_EXT_FEATURE_BEACON_RATE_HT,
 *	NL80211_EXT_FEATURE_BEACON_RATE_VHT and
 *	NL80211_EXT_FEATURE_BEACON_RATE_HE.
 *
 * @NL80211_ATTR_FRAME_MATCH: A binary attribute which typically must contain
 *	at least one byte, currently used with @NL80211_CMD_REGISTER_FRAME.
 * @NL80211_ATTR_FRAME_TYPE: A u16 indicating the frame type/subtype for the
 *	@NL80211_CMD_REGISTER_FRAME command.
 * @NL80211_ATTR_TX_FRAME_TYPES: wiphy capability attribute, which is a
 *	nested attribute of %NL80211_ATTR_FRAME_TYPE attributes, containing
 *	information about which frame types can be transmitted with
 *	%NL80211_CMD_FRAME.
 * @NL80211_ATTR_RX_FRAME_TYPES: wiphy capability attribute, which is a
 *	nested attribute of %NL80211_ATTR_FRAME_TYPE attributes, containing
 *	information about which frame types can be registered for RX.
 *
 * @NL80211_ATTR_ACK: Flag attribute indicating that the frame was
 *	acknowledged by the recipient.
 *
 * @NL80211_ATTR_PS_STATE: powersave state, using &enum nl80211_ps_state values.
 *
 * @NL80211_ATTR_CQM: connection quality monitor configuration in a
 *	nested attribute with %NL80211_ATTR_CQM_* sub-attributes.
 *
 * @NL80211_ATTR_LOCAL_STATE_CHANGE: Flag attribute to indicate that a command
 *	is requesting a local authentication/association state change without
 *	invoking actual management frame exchange. This can be used with
 *	NL80211_CMD_AUTHENTICATE, NL80211_CMD_DEAUTHENTICATE,
 *	NL80211_CMD_DISASSOCIATE.
 *
 * @NL80211_ATTR_AP_ISOLATE: (AP mode) Do not forward traffic between stations
 *	connected to this BSS.
 *
 * @NL80211_ATTR_WIPHY_TX_POWER_SETTING: Transmit power setting type. See
 *      &enum nl80211_tx_power_setting for possible values.
 * @NL80211_ATTR_WIPHY_TX_POWER_LEVEL: Transmit power level in signed mBm units.
 *      This is used in association with @NL80211_ATTR_WIPHY_TX_POWER_SETTING
 *      for non-automatic settings.
 *
 * @NL80211_ATTR_SUPPORT_IBSS_RSN: The device supports IBSS RSN, which mostly
 *	means support for per-station GTKs.
 *
 * @NL80211_ATTR_WIPHY_ANTENNA_TX: Bitmap of allowed antennas for transmitting.
 *	This can be used to mask out antennas which are not attached or should
 *	not be used for transmitting. If an antenna is not selected in this
 *	bitmap the hardware is not allowed to transmit on this antenna.
 *
 *	Each bit represents one antenna, starting with antenna 1 at the first
 *	bit. Depending on which antennas are selected in the bitmap, 802.11n
 *	drivers can derive which chainmasks to use (if all antennas belonging to
 *	a particular chain are disabled this chain should be disabled) and if
 *	a chain has diversity antennas wether diversity should be used or not.
 *	HT capabilities (STBC, TX Beamforming, Antenna selection) can be
 *	derived from the available chains after applying the antenna mask.
 *	Non-802.11n drivers can derive wether to use diversity or not.
 *	Drivers may reject configurations or RX/TX mask combinations they cannot
 *	support by returning -EINVAL.
 *
 * @NL80211_ATTR_WIPHY_ANTENNA_RX: Bitmap of allowed antennas for receiving.
 *	This can be used to mask out antennas which are not attached or should
 *	not be used for receiving. If an antenna is not selected in this bitmap
 *	the hardware should not be configured to receive on this antenna.
 *	For a more detailed description see @NL80211_ATTR_WIPHY_ANTENNA_TX.
 *
 * @NL80211_ATTR_WIPHY_ANTENNA_AVAIL_TX: Bitmap of antennas which are available
 *	for configuration as TX antennas via the above parameters.
 *
 * @NL80211_ATTR_WIPHY_ANTENNA_AVAIL_RX: Bitmap of antennas which are available
 *	for configuration as RX antennas via the above parameters.
 *
 * @NL80211_ATTR_MCAST_RATE: Multicast tx rate (in 100 kbps) for IBSS
 *
 * @NL80211_ATTR_OFFCHANNEL_TX_OK: For management frame TX, the frame may be
 *	transmitted on another channel when the channel given doesn't match
 *	the current channel. If the current channel doesn't match and this
 *	flag isn't set, the frame will be rejected. This is also used as an
 *	nl80211 capability flag.
 *
 * @NL80211_ATTR_BSS_HT_OPMODE: HT operation mode (u16)
 *
 * @NL80211_ATTR_KEY_DEFAULT_TYPES: A nested attribute containing flags
 *	attributes, specifying what a key should be set as default as.
 *	See &enum nl80211_key_default_types.
 *
 * @NL80211_ATTR_MESH_SETUP: Optional mesh setup parameters.  These cannot be
 *	changed once the mesh is active.
 * @NL80211_ATTR_MESH_CONFIG: Mesh configuration parameters, a nested attribute
 *	containing attributes from &enum nl80211_meshconf_params.
 * @NL80211_ATTR_SUPPORT_MESH_AUTH: Currently, this means the underlying driver
 *	allows auth frames in a mesh to be passed to userspace for processing via
 *	the @NL80211_MESH_SETUP_USERSPACE_AUTH flag.
 * @NL80211_ATTR_STA_PLINK_STATE: The state of a mesh peer link as defined in
 *	&enum nl80211_plink_state. Used when userspace is driving the peer link
 *	management state machine.  @NL80211_MESH_SETUP_USERSPACE_AMPE or
 *	@NL80211_MESH_SETUP_USERSPACE_MPM must be enabled.
 *
 * @NL80211_ATTR_WOWLAN_TRIGGERS_SUPPORTED: indicates, as part of the wiphy
 *	capabilities, the supported WoWLAN triggers
 * @NL80211_ATTR_WOWLAN_TRIGGERS: used by %NL80211_CMD_SET_WOWLAN to
 *	indicate which WoW triggers should be enabled. This is also
 *	used by %NL80211_CMD_GET_WOWLAN to get the currently enabled WoWLAN
 *	triggers.
 *
 * @NL80211_ATTR_SCHED_SCAN_INTERVAL: Interval between scheduled scan
 *	cycles, in msecs.
 *
 * @NL80211_ATTR_SCHED_SCAN_MATCH: Nested attribute with one or more
 *	sets of attributes to match during scheduled scans.  Only BSSs
 *	that match any of the sets will be reported.  These are
 *	pass-thru filter rules.
 *	For a match to succeed, the BSS must match all attributes of a
 *	set.  Since not every hardware supports matching all types of
 *	attributes, there is no guarantee that the reported BSSs are
 *	fully complying with the match sets and userspace needs to be
 *	able to ignore them by itself.
 *	Thus, the implementation is somewhat hardware-dependent, but
 *	this is only an optimization and the userspace application
 *	needs to handle all the non-filtered results anyway.
 *	If the match attributes don't make sense when combined with
 *	the values passed in @NL80211_ATTR_SCAN_SSIDS (eg. if an SSID
 *	is included in the probe request, but the match attributes
 *	will never let it go through), -EINVAL may be returned.
 *	If omitted, no filtering is done.
 *
 * @NL80211_ATTR_INTERFACE_COMBINATIONS: Nested attribute listing the supported
 *	interface combinations. In each nested item, it contains attributes
 *	defined in &enum nl80211_if_combination_attrs.
 * @NL80211_ATTR_SOFTWARE_IFTYPES: Nested attribute (just like
 *	%NL80211_ATTR_SUPPORTED_IFTYPES) containing the interface types that
 *	are managed in software: interfaces of these types aren't subject to
 *	any restrictions in their number or combinations.
 *
 * @NL80211_ATTR_REKEY_DATA: nested attribute containing the information
 *	necessary for GTK rekeying in the device, see &enum nl80211_rekey_data.
 *
 * @NL80211_ATTR_SCAN_SUPP_RATES: rates per to be advertised as supported in scan,
 *	nested array attribute containing an entry for each band, with the entry
 *	being a list of supported rates as defined by IEEE 802.11 7.3.2.2 but
 *	without the length restriction (at most %NL80211_MAX_SUPP_RATES).
 *
 * @NL80211_ATTR_HIDDEN_SSID: indicates whether SSID is to be hidden from Beacon
 *	and Probe Response (when response to wildcard Probe Request); see
 *	&enum nl80211_hidden_ssid, represented as a u32
 *
 * @NL80211_ATTR_IE_PROBE_RESP: Information element(s) for Probe Response frame.
 *	This is used with %NL80211_CMD_NEW_BEACON and %NL80211_CMD_SET_BEACON to
 *	provide extra IEs (e.g., WPS/P2P IE) into Probe Response frames when the
 *	driver (or firmware) replies to Probe Request frames.
 * @NL80211_ATTR_IE_ASSOC_RESP: Information element(s) for (Re)Association
 *	Response frames. This is used with %NL80211_CMD_NEW_BEACON and
 *	%NL80211_CMD_SET_BEACON to provide extra IEs (e.g., WPS/P2P IE) into
 *	(Re)Association Response frames when the driver (or firmware) replies to
 *	(Re)Association Request frames.
 *
 * @NL80211_ATTR_STA_WME: Nested attribute containing the wme configuration
 *	of the station, see &enum nl80211_sta_wme_attr.
 * @NL80211_ATTR_SUPPORT_AP_UAPSD: the device supports uapsd when working
 *	as AP.
 *
 * @NL80211_ATTR_ROAM_SUPPORT: Indicates whether the firmware is capable of
 *	roaming to another AP in the same ESS if the signal lever is low.
 *
 * @NL80211_ATTR_PMKSA_CANDIDATE: Nested attribute containing the PMKSA caching
 *	candidate information, see &enum nl80211_pmksa_candidate_attr.
 *
 * @NL80211_ATTR_TX_NO_CCK_RATE: Indicates whether to use CCK rate or not
 *	for management frames transmission. In order to avoid p2p probe/action
 *	frames are being transmitted at CCK rate in 2GHz band, the user space
 *	applications use this attribute.
 *	This attribute is used with %NL80211_CMD_TRIGGER_SCAN and
 *	%NL80211_CMD_FRAME commands.
 *
 * @NL80211_ATTR_TDLS_ACTION: Low level TDLS action code (e.g. link setup
 *	request, link setup confirm, link teardown, etc.). Values are
 *	described in the TDLS (802.11z) specification.
 * @NL80211_ATTR_TDLS_DIALOG_TOKEN: Non-zero token for uniquely identifying a
 *	TDLS conversation between two devices.
 * @NL80211_ATTR_TDLS_OPERATION: High level TDLS operation; see
 *	&enum nl80211_tdls_operation, represented as a u8.
 * @NL80211_ATTR_TDLS_SUPPORT: A flag indicating the device can operate
 *	as a TDLS peer sta.
 * @NL80211_ATTR_TDLS_EXTERNAL_SETUP: The TDLS discovery/setup and teardown
 *	procedures should be performed by sending TDLS packets via
 *	%NL80211_CMD_TDLS_MGMT. Otherwise %NL80211_CMD_TDLS_OPER should be
 *	used for asking the driver to perform a TDLS operation.
 *
 * @NL80211_ATTR_DEVICE_AP_SME: This u32 attribute may be listed for devices
 *	that have AP support to indicate that they have the AP SME integrated
 *	with support for the features listed in this attribute, see
 *	&enum nl80211_ap_sme_features.
 *
 * @NL80211_ATTR_DONT_WAIT_FOR_ACK: Used with %NL80211_CMD_FRAME, this tells
 *	the driver to not wait for an acknowledgement. Note that due to this,
 *	it will also not give a status callback nor return a cookie. This is
 *	mostly useful for probe responses to save airtime.
 *
 * @NL80211_ATTR_FEATURE_FLAGS: This u32 attribute contains flags from
 *	&enum nl80211_feature_flags and is advertised in wiphy information.
 * @NL80211_ATTR_PROBE_RESP_OFFLOAD: Indicates that the HW responds to probe
 *	requests while operating in AP-mode.
 *	This attribute holds a bitmap of the supported protocols for
 *	offloading (see &enum nl80211_probe_resp_offload_support_attr).
 *
 * @NL80211_ATTR_PROBE_RESP: Probe Response template data. Contains the entire
 *	probe-response frame. The DA field in the 802.11 header is zero-ed out,
 *	to be filled by the FW.
 * @NL80211_ATTR_DISABLE_HT: Force HT capable interfaces to disable
 *      this feature during association. This is a flag attribute.
 *	Currently only supported in mac80211 drivers.
 * @NL80211_ATTR_DISABLE_VHT: Force VHT capable interfaces to disable
 *      this feature during association. This is a flag attribute.
 *	Currently only supported in mac80211 drivers.
 * @NL80211_ATTR_DISABLE_HE: Force HE capable interfaces to disable
 *      this feature during association. This is a flag attribute.
 *	Currently only supported in mac80211 drivers.
 * @NL80211_ATTR_HT_CAPABILITY_MASK: Specify which bits of the
 *      ATTR_HT_CAPABILITY to which attention should be paid.
 *      Currently, only mac80211 NICs support this feature.
 *      The values that may be configured are:
 *       MCS rates, MAX-AMSDU, HT-20-40 and HT_CAP_SGI_40
 *       AMPDU density and AMPDU factor.
 *      All values are treated as suggestions and may be ignored
 *      by the driver as required.  The actual values may be seen in
 *      the station debugfs ht_caps file.
 *
 * @NL80211_ATTR_DFS_REGION: region for regulatory rules which this country
 *    abides to when initiating radiation on DFS channels. A country maps
 *    to one DFS region.
 *
 * @NL80211_ATTR_NOACK_MAP: This u16 bitmap contains the No Ack Policy of
 *      up to 16 TIDs.
 *
 * @NL80211_ATTR_INACTIVITY_TIMEOUT: timeout value in seconds, this can be
 *	used by the drivers which has MLME in firmware and does not have support
 *	to report per station tx/rx activity to free up the station entry from
 *	the list. This needs to be used when the driver advertises the
 *	capability to timeout the stations.
 *
 * @NL80211_ATTR_RX_SIGNAL_DBM: signal strength in dBm (as a 32-bit int);
 *	this attribute is (depending on the driver capabilities) added to
 *	received frames indicated with %NL80211_CMD_FRAME.
 *
 * @NL80211_ATTR_BG_SCAN_PERIOD: Background scan period in seconds
 *      or 0 to disable background scan.
 *
 * @NL80211_ATTR_USER_REG_HINT_TYPE: type of regulatory hint passed from
 *	userspace. If unset it is assumed the hint comes directly from
 *	a user. If set code could specify exactly what type of source
 *	was used to provide the hint. For the different types of
 *	allowed user regulatory hints see nl80211_user_reg_hint_type.
 *
 * @NL80211_ATTR_CONN_FAILED_REASON: The reason for which AP has rejected
 *	the connection request from a station. nl80211_connect_failed_reason
 *	enum has different reasons of connection failure.
 *
 * @NL80211_ATTR_AUTH_DATA: Fields and elements in Authentication frames.
 *	This contains the authentication frame body (non-IE and IE data),
 *	excluding the Authentication algorithm number, i.e., starting at the
 *	Authentication transaction sequence number field. It is used with
 *	authentication algorithms that need special fields to be added into
 *	the frames (SAE and FILS). Currently, only the SAE cases use the
 *	initial two fields (Authentication transaction sequence number and
 *	Status code). However, those fields are included in the attribute data
 *	for all authentication algorithms to keep the attribute definition
 *	consistent.
 *
 * @NL80211_ATTR_VHT_CAPABILITY: VHT Capability information element (from
 *	association request when used with NL80211_CMD_NEW_STATION)
 *
 * @NL80211_ATTR_SCAN_FLAGS: scan request control flags (u32)
 *
 * @NL80211_ATTR_P2P_CTWINDOW: P2P GO Client Traffic Window (u8), used with
 *	the START_AP and SET_BSS commands
 * @NL80211_ATTR_P2P_OPPPS: P2P GO opportunistic PS (u8), used with the
 *	START_AP and SET_BSS commands. This can have the values 0 or 1;
 *	if not given in START_AP 0 is assumed, if not given in SET_BSS
 *	no change is made.
 *
 * @NL80211_ATTR_LOCAL_MESH_POWER_MODE: local mesh STA link-specific power mode
 *	defined in &enum nl80211_mesh_power_mode.
 *
 * @NL80211_ATTR_ACL_POLICY: ACL policy, see &enum nl80211_acl_policy,
 *	carried in a u32 attribute
 *
 * @NL80211_ATTR_MAC_ADDRS: Array of nested MAC addresses, used for
 *	MAC ACL.
 *
 * @NL80211_ATTR_MAC_ACL_MAX: u32 attribute to advertise the maximum
 *	number of MAC addresses that a device can support for MAC
 *	ACL.
 *
 * @NL80211_ATTR_RADAR_EVENT: Type of radar event for notification to userspace,
 *	contains a value of enum nl80211_radar_event (u32).
 *
 * @NL80211_ATTR_EXT_CAPA: 802.11 extended capabilities that the kernel driver
 *	has and handles. The format is the same as the IE contents. See
 *	802.11-2012 8.4.2.29 for more information.
 * @NL80211_ATTR_EXT_CAPA_MASK: Extended capabilities that the kernel driver
 *	has set in the %NL80211_ATTR_EXT_CAPA value, for multibit fields.
 *
 * @NL80211_ATTR_STA_CAPABILITY: Station capabilities (u16) are advertised to
 *	the driver, e.g., to enable TDLS power save (PU-APSD).
 *
 * @NL80211_ATTR_STA_EXT_CAPABILITY: Station extended capabilities are
 *	advertised to the driver, e.g., to enable TDLS off channel operations
 *	and PU-APSD.
 *
 * @NL80211_ATTR_PROTOCOL_FEATURES: global nl80211 feature flags, see
 *	&enum nl80211_protocol_features, the attribute is a u32.
 *
 * @NL80211_ATTR_SPLIT_WIPHY_DUMP: flag attribute, userspace supports
 *	receiving the data for a single wiphy split across multiple
 *	messages, given with wiphy dump message
 *
 * @NL80211_ATTR_MDID: Mobility Domain Identifier
 *
 * @NL80211_ATTR_IE_RIC: Resource Information Container Information
 *	Element
 *
 * @NL80211_ATTR_CRIT_PROT_ID: critical protocol identifier requiring increased
 *	reliability, see &enum nl80211_crit_proto_id (u16).
 * @NL80211_ATTR_MAX_CRIT_PROT_DURATION: duration in milliseconds in which
 *      the connection should have increased reliability (u16).
 *
 * @NL80211_ATTR_PEER_AID: Association ID for the peer TDLS station (u16).
 *	This is similar to @NL80211_ATTR_STA_AID but with a difference of being
 *	allowed to be used with the first @NL80211_CMD_SET_STATION command to
 *	update a TDLS peer STA entry.
 *
 * @NL80211_ATTR_COALESCE_RULE: Coalesce rule information.
 *
 * @NL80211_ATTR_CH_SWITCH_COUNT: u32 attribute specifying the number of TBTT's
 *	until the channel switch event.
 * @NL80211_ATTR_CH_SWITCH_BLOCK_TX: flag attribute specifying that transmission
 *	must be blocked on the current channel (before the channel switch
 *	operation). Also included in the channel switch started event if quiet
 *	was requested by the AP.
 * @NL80211_ATTR_CSA_IES: Nested set of attributes containing the IE information
 *	for the time while performing a channel switch.
 * @NL80211_ATTR_CNTDWN_OFFS_BEACON: An array of offsets (u16) to the channel
 *	switch or color change counters in the beacons tail (%NL80211_ATTR_BEACON_TAIL).
 * @NL80211_ATTR_CNTDWN_OFFS_PRESP: An array of offsets (u16) to the channel
 *	switch or color change counters in the probe response (%NL80211_ATTR_PROBE_RESP).
 *
 * @NL80211_ATTR_RXMGMT_FLAGS: flags for nl80211_send_mgmt(), u32.
 *	As specified in the &enum nl80211_rxmgmt_flags.
 *
 * @NL80211_ATTR_STA_SUPPORTED_CHANNELS: array of supported channels.
 *
 * @NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES: array of supported
 *      operating classes.
 *
 * @NL80211_ATTR_HANDLE_DFS: A flag indicating whether user space
 *	controls DFS operation in IBSS mode. If the flag is included in
 *	%NL80211_CMD_JOIN_IBSS request, the driver will allow use of DFS
 *	channels and reports radar events to userspace. Userspace is required
 *	to react to radar events, e.g. initiate a channel switch or leave the
 *	IBSS network.
 *
 * @NL80211_ATTR_SUPPORT_5_MHZ: A flag indicating that the device supports
 *	5 MHz channel bandwidth.
 * @NL80211_ATTR_SUPPORT_10_MHZ: A flag indicating that the device supports
 *	10 MHz channel bandwidth.
 *
 * @NL80211_ATTR_OPMODE_NOTIF: Operating mode field from Operating Mode
 *	Notification Element based on association request when used with
 *	%NL80211_CMD_NEW_STATION or %NL80211_CMD_SET_STATION (only when
 *	%NL80211_FEATURE_FULL_AP_CLIENT_STATE is supported, or with TDLS);
 *	u8 attribute.
 *
 * @NL80211_ATTR_VENDOR_ID: The vendor ID, either a 24-bit OUI or, if
 *	%NL80211_VENDOR_ID_IS_LINUX is set, a special Linux ID (not used yet)
 * @NL80211_ATTR_VENDOR_SUBCMD: vendor sub-command
 * @NL80211_ATTR_VENDOR_DATA: data for the vendor command, if any; this
 *	attribute is also used for vendor command feature advertisement
 * @NL80211_ATTR_VENDOR_EVENTS: used for event list advertising in the wiphy
 *	info, containing a nested array of possible events
 *
 * @NL80211_ATTR_QOS_MAP: IP DSCP mapping for Interworking QoS mapping. This
 *	data is in the format defined for the payload of the QoS Map Set element
 *	in IEEE Std 802.11-2012, 8.4.2.97.
 *
 * @NL80211_ATTR_MAC_HINT: MAC address recommendation as initial BSS
 * @NL80211_ATTR_WIPHY_FREQ_HINT: frequency of the recommended initial BSS
 *
 * @NL80211_ATTR_MAX_AP_ASSOC_STA: Device attribute that indicates how many
 *	associated stations are supported in AP mode (including P2P GO); u32.
 *	Since drivers may not have a fixed limit on the maximum number (e.g.,
 *	other concurrent operations may affect this), drivers are allowed to
 *	advertise values that cannot always be met. In such cases, an attempt
 *	to add a new station entry with @NL80211_CMD_NEW_STATION may fail.
 *
 * @NL80211_ATTR_CSA_C_OFFSETS_TX: An array of csa counter offsets (u16) which
 *	should be updated when the frame is transmitted.
 * @NL80211_ATTR_MAX_CSA_COUNTERS: U8 attribute used to advertise the maximum
 *	supported number of csa counters.
 *
 * @NL80211_ATTR_TDLS_PEER_CAPABILITY: flags for TDLS peer capabilities, u32.
 *	As specified in the &enum nl80211_tdls_peer_capability.
 *
 * @NL80211_ATTR_SOCKET_OWNER: Flag attribute, if set during interface
 *	creation then the new interface will be owned by the netlink socket
 *	that created it and will be destroyed when the socket is closed.
 *	If set during scheduled scan start then the new scan req will be
 *	owned by the netlink socket that created it and the scheduled scan will
 *	be stopped when the socket is closed.
 *	If set during configuration of regulatory indoor operation then the
 *	regulatory indoor configuration would be owned by the netlink socket
 *	that configured the indoor setting, and the indoor operation would be
 *	cleared when the socket is closed.
 *	If set during NAN interface creation, the interface will be destroyed
 *	if the socket is closed just like any other interface. Moreover, NAN
 *	notifications will be sent in unicast to that socket. Without this
 *	attribute, the notifications will be sent to the %NL80211_MCGRP_NAN
 *	multicast group.
 *	If set during %NL80211_CMD_ASSOCIATE or %NL80211_CMD_CONNECT the
 *	station will deauthenticate when the socket is closed.
 *	If set during %NL80211_CMD_JOIN_IBSS the IBSS will be automatically
 *	torn down when the socket is closed.
 *	If set during %NL80211_CMD_JOIN_MESH the mesh setup will be
 *	automatically torn down when the socket is closed.
 *	If set during %NL80211_CMD_START_AP the AP will be automatically
 *	disabled when the socket is closed.
 *
 * @NL80211_ATTR_TDLS_INITIATOR: flag attribute indicating the current end is
 *	the TDLS link initiator.
 *
 * @NL80211_ATTR_USE_RRM: flag for indicating whether the current connection
 *	shall support Radio Resource Measurements (11k). This attribute can be
 *	used with %NL80211_CMD_ASSOCIATE and %NL80211_CMD_CONNECT requests.
 *	User space applications are expected to use this flag only if the
 *	underlying device supports these minimal RRM features:
 *		%NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES,
 *		%NL80211_FEATURE_QUIET,
 *	Or, if global RRM is supported, see:
 *		%NL80211_EXT_FEATURE_RRM
 *	If this flag is used, driver must add the Power Capabilities IE to the
 *	association request. In addition, it must also set the RRM capability
 *	flag in the association request's Capability Info field.
 *
 * @NL80211_ATTR_WIPHY_DYN_ACK: flag attribute used to enable ACK timeout
 *	estimation algorithm (dynack). In order to activate dynack
 *	%NL80211_FEATURE_ACKTO_ESTIMATION feature flag must be set by lower
 *	drivers to indicate dynack capability. Dynack is automatically disabled
 *	setting valid value for coverage class.
 *
 * @NL80211_ATTR_TSID: a TSID value (u8 attribute)
 * @NL80211_ATTR_USER_PRIO: user priority value (u8 attribute)
 * @NL80211_ATTR_ADMITTED_TIME: admitted time in units of 32 microseconds
 *	(per second) (u16 attribute)
 *
 * @NL80211_ATTR_SMPS_MODE: SMPS mode to use (ap mode). see
 *	&enum nl80211_smps_mode.
 *
 * @NL80211_ATTR_OPER_CLASS: operating class
 *
 * @NL80211_ATTR_MAC_MASK: MAC address mask
 *
 * @NL80211_ATTR_WIPHY_SELF_MANAGED_REG: flag attribute indicating this device
 *	is self-managing its regulatory information and any regulatory domain
 *	obtained from it is coming from the device's wiphy and not the global
 *	cfg80211 regdomain.
 *
 * @NL80211_ATTR_EXT_FEATURES: extended feature flags contained in a byte
 *	array. The feature flags are identified by their bit index (see &enum
 *	nl80211_ext_feature_index). The bit index is ordered starting at the
 *	least-significant bit of the first byte in the array, ie. bit index 0
 *	is located at bit 0 of byte 0. bit index 25 would be located at bit 1
 *	of byte 3 (u8 array).
 *
 * @NL80211_ATTR_SURVEY_RADIO_STATS: Request overall radio statistics to be
 *	returned along with other survey data. If set, @NL80211_CMD_GET_SURVEY
 *	may return a survey entry without a channel indicating global radio
 *	statistics (only some values are valid and make sense.)
 *	For devices that don't return such an entry even then, the information
 *	should be contained in the result as the sum of the respective counters
 *	over all channels.
 *
 * @NL80211_ATTR_SCHED_SCAN_DELAY: delay before the first cycle of a
 *	scheduled scan is started.  Or the delay before a WoWLAN
 *	net-detect scan is started, counting from the moment the
 *	system is suspended.  This value is a u32, in seconds.

 * @NL80211_ATTR_REG_INDOOR: flag attribute, if set indicates that the device
 *      is operating in an indoor environment.
 *
 * @NL80211_ATTR_MAX_NUM_SCHED_SCAN_PLANS: maximum number of scan plans for
 *	scheduled scan supported by the device (u32), a wiphy attribute.
 * @NL80211_ATTR_MAX_SCAN_PLAN_INTERVAL: maximum interval (in seconds) for
 *	a scan plan (u32), a wiphy attribute.
 * @NL80211_ATTR_MAX_SCAN_PLAN_ITERATIONS: maximum number of iterations in
 *	a scan plan (u32), a wiphy attribute.
 * @NL80211_ATTR_SCHED_SCAN_PLANS: a list of scan plans for scheduled scan.
 *	Each scan plan defines the number of scan iterations and the interval
 *	between scans. The last scan plan will always run infinitely,
 *	thus it must not specify the number of iterations, only the interval
 *	between scans. The scan plans are executed sequentially.
 *	Each scan plan is a nested attribute of &enum nl80211_sched_scan_plan.
 * @NL80211_ATTR_PBSS: flag attribute. If set it means operate
 *	in a PBSS. Specified in %NL80211_CMD_CONNECT to request
 *	connecting to a PCP, and in %NL80211_CMD_START_AP to start
 *	a PCP instead of AP. Relevant for DMG networks only.
 * @NL80211_ATTR_BSS_SELECT: nested attribute for driver supporting the
 *	BSS selection feature. When used with %NL80211_CMD_GET_WIPHY it contains
 *	attributes according &enum nl80211_bss_select_attr to indicate what
 *	BSS selection behaviours are supported. When used with %NL80211_CMD_CONNECT
 *	it contains the behaviour-specific attribute containing the parameters for
 *	BSS selection to be done by driver and/or firmware.
 *
 * @NL80211_ATTR_STA_SUPPORT_P2P_PS: whether P2P PS mechanism supported
 *	or not. u8, one of the values of &enum nl80211_sta_p2p_ps_status
 *
 * @NL80211_ATTR_PAD: attribute used for padding for 64-bit alignment
 *
 * @NL80211_ATTR_IFTYPE_EXT_CAPA: Nested attribute of the following attributes:
 *	%NL80211_ATTR_IFTYPE, %NL80211_ATTR_EXT_CAPA,
 *	%NL80211_ATTR_EXT_CAPA_MASK, to specify the extended capabilities and
 *	other interface-type specific capabilities per interface type. For MLO,
 *	%NL80211_ATTR_EML_CAPABILITY and %NL80211_ATTR_MLD_CAPA_AND_OPS are
 *	present.
 *
 * @NL80211_ATTR_MU_MIMO_GROUP_DATA: array of 24 bytes that defines a MU-MIMO
 *	groupID for monitor mode.
 *	The first 8 bytes are a mask that defines the membership in each
 *	group (there are 64 groups, group 0 and 63 are reserved),
 *	each bit represents a group and set to 1 for being a member in
 *	that group and 0 for not being a member.
 *	The remaining 16 bytes define the position in each group: 2 bits for
 *	each group.
 *	(smaller group numbers represented on most significant bits and bigger
 *	group numbers on least significant bits.)
 *	This attribute is used only if all interfaces are in monitor mode.
 *	Set this attribute in order to monitor packets using the given MU-MIMO
 *	groupID data.
 *	to turn off that feature set all the bits of the groupID to zero.
 * @NL80211_ATTR_MU_MIMO_FOLLOW_MAC_ADDR: mac address for the sniffer to follow
 *	when using MU-MIMO air sniffer.
 *	to turn that feature off set an invalid mac address
 *	(e.g. FF:FF:FF:FF:FF:FF)
 *
 * @NL80211_ATTR_SCAN_START_TIME_TSF: The time at which the scan was actually
 *	started (u64). The time is the TSF of the BSS the interface that
 *	requested the scan is connected to (if available, otherwise this
 *	attribute must not be included).
 * @NL80211_ATTR_SCAN_START_TIME_TSF_BSSID: The BSS according to which
 *	%NL80211_ATTR_SCAN_START_TIME_TSF is set.
 * @NL80211_ATTR_MEASUREMENT_DURATION: measurement duration in TUs (u16). If
 *	%NL80211_ATTR_MEASUREMENT_DURATION_MANDATORY is not set, this is the
 *	maximum measurement duration allowed. This attribute is used with
 *	measurement requests. It can also be used with %NL80211_CMD_TRIGGER_SCAN
 *	if the scan is used for beacon report radio measurement.
 * @NL80211_ATTR_MEASUREMENT_DURATION_MANDATORY: flag attribute that indicates
 *	that the duration specified with %NL80211_ATTR_MEASUREMENT_DURATION is
 *	mandatory. If this flag is not set, the duration is the maximum duration
 *	and the actual measurement duration may be shorter.
 *
 * @NL80211_ATTR_MESH_PEER_AID: Association ID for the mesh peer (u16). This is
 *	used to pull the stored data for mesh peer in power save state.
 *
 * @NL80211_ATTR_NAN_MASTER_PREF: the master preference to be used by
 *	%NL80211_CMD_START_NAN and optionally with
 *	%NL80211_CMD_CHANGE_NAN_CONFIG. Its type is u8 and it can't be 0.
 *	Also, values 1 and 255 are reserved for certification purposes and
 *	should not be used during a normal device operation.
 * @NL80211_ATTR_BANDS: operating bands configuration.  This is a u32
 *	bitmask of BIT(NL80211_BAND_*) as described in %enum
 *	nl80211_band.  For instance, for NL80211_BAND_2GHZ, bit 0
 *	would be set.  This attribute is used with
 *	%NL80211_CMD_START_NAN and %NL80211_CMD_CHANGE_NAN_CONFIG, and
 *	it is optional.  If no bands are set, it means don't-care and
 *	the device will decide what to use.
 * @NL80211_ATTR_NAN_FUNC: a function that can be added to NAN. See
 *	&enum nl80211_nan_func_attributes for description of this nested
 *	attribute.
 * @NL80211_ATTR_NAN_MATCH: used to report a match. This is a nested attribute.
 *	See &enum nl80211_nan_match_attributes.
 * @NL80211_ATTR_FILS_KEK: KEK for FILS (Re)Association Request/Response frame
 *	protection.
 * @NL80211_ATTR_FILS_NONCES: Nonces (part of AAD) for FILS (Re)Association
 *	Request/Response frame protection. This attribute contains the 16 octet
 *	STA Nonce followed by 16 octets of AP Nonce.
 *
 * @NL80211_ATTR_MULTICAST_TO_UNICAST_ENABLED: Indicates whether or not multicast
 *	packets should be send out as unicast to all stations (flag attribute).
 *
 * @NL80211_ATTR_BSSID: The BSSID of the AP. Note that %NL80211_ATTR_MAC is also
 *	used in various commands/events for specifying the BSSID.
 *
 * @NL80211_ATTR_SCHED_SCAN_RELATIVE_RSSI: Relative RSSI threshold by which
 *	other BSSs has to be better or slightly worse than the current
 *	connected BSS so that they get reported to user space.
 *	This will give an opportunity to userspace to consider connecting to
 *	other matching BSSs which have better or slightly worse RSSI than
 *	the current connected BSS by using an offloaded operation to avoid
 *	unnecessary wakeups.
 *
 * @NL80211_ATTR_SCHED_SCAN_RSSI_ADJUST: When present the RSSI level for BSSs in
 *	the specified band is to be adjusted before doing
 *	%NL80211_ATTR_SCHED_SCAN_RELATIVE_RSSI based comparison to figure out
 *	better BSSs. The attribute value is a packed structure
 *	value as specified by &struct nl80211_bss_select_rssi_adjust.
 *
 * @NL80211_ATTR_TIMEOUT_REASON: The reason for which an operation timed out.
 *	u32 attribute with an &enum nl80211_timeout_reason value. This is used,
 *	e.g., with %NL80211_CMD_CONNECT event.
 *
 * @NL80211_ATTR_FILS_ERP_USERNAME: EAP Re-authentication Protocol (ERP)
 *	username part of NAI used to refer keys rRK and rIK. This is used with
 *	%NL80211_CMD_CONNECT.
 *
 * @NL80211_ATTR_FILS_ERP_REALM: EAP Re-authentication Protocol (ERP) realm part
 *	of NAI specifying the domain name of the ER server. This is used with
 *	%NL80211_CMD_CONNECT.
 *
 * @NL80211_ATTR_FILS_ERP_NEXT_SEQ_NUM: Unsigned 16-bit ERP next sequence number
 *	to use in ERP messages. This is used in generating the FILS wrapped data
 *	for FILS authentication and is used with %NL80211_CMD_CONNECT.
 *
 * @NL80211_ATTR_FILS_ERP_RRK: ERP re-authentication Root Key (rRK) for the
 *	NAI specified by %NL80211_ATTR_FILS_ERP_USERNAME and
 *	%NL80211_ATTR_FILS_ERP_REALM. This is used for generating rIK and rMSK
 *	from successful FILS authentication and is used with
 *	%NL80211_CMD_CONNECT.
 *
 * @NL80211_ATTR_FILS_CACHE_ID: A 2-octet identifier advertized by a FILS AP
 *	identifying the scope of PMKSAs. This is used with
 *	@NL80211_CMD_SET_PMKSA and @NL80211_CMD_DEL_PMKSA.
 *
 * @NL80211_ATTR_PMK: attribute for passing PMK key material. Used with
 *	%NL80211_CMD_SET_PMKSA for the PMKSA identified by %NL80211_ATTR_PMKID.
 *	For %NL80211_CMD_CONNECT and %NL80211_CMD_START_AP it is used to provide
 *	PSK for offloading 4-way handshake for WPA/WPA2-PSK networks. For 802.1X
 *	authentication it is used with %NL80211_CMD_SET_PMK. For offloaded FT
 *	support this attribute specifies the PMK-R0 if NL80211_ATTR_PMKR0_NAME
 *	is included as well.
 *
 * @NL80211_ATTR_SCHED_SCAN_MULTI: flag attribute which user-space shall use to
 *	indicate that it supports multiple active scheduled scan requests.
 * @NL80211_ATTR_SCHED_SCAN_MAX_REQS: indicates maximum number of scheduled
 *	scan request that may be active for the device (u32).
 *
 * @NL80211_ATTR_WANT_1X_4WAY_HS: flag attribute which user-space can include
 *	in %NL80211_CMD_CONNECT to indicate that for 802.1X authentication it
 *	wants to use the supported offload of the 4-way handshake.
 * @NL80211_ATTR_PMKR0_NAME: PMK-R0 Name for offloaded FT.
 * @NL80211_ATTR_PORT_AUTHORIZED: (reserved)
 *
 * @NL80211_ATTR_EXTERNAL_AUTH_ACTION: Identify the requested external
 *     authentication operation (u32 attribute with an
 *     &enum nl80211_external_auth_action value). This is used with the
 *     %NL80211_CMD_EXTERNAL_AUTH request event.
 * @NL80211_ATTR_EXTERNAL_AUTH_SUPPORT: Flag attribute indicating that the user
 *	space supports external authentication. This attribute shall be used
 *	with %NL80211_CMD_CONNECT and %NL80211_CMD_START_AP request. The driver
 *	may offload authentication processing to user space if this capability
 *	is indicated in the respective requests from the user space. (This flag
 *	attribute deprecated for %NL80211_CMD_START_AP, use
 *	%NL80211_ATTR_AP_SETTINGS_FLAGS)
 *
 * @NL80211_ATTR_NSS: Station's New/updated  RX_NSS value notified using this
 *	u8 attribute. This is used with %NL80211_CMD_STA_OPMODE_CHANGED.
 *
 * @NL80211_ATTR_TXQ_STATS: TXQ statistics (nested attribute, see &enum
 *      nl80211_txq_stats)
 * @NL80211_ATTR_TXQ_LIMIT: Total packet limit for the TXQ queues for this phy.
 *      The smaller of this and the memory limit is enforced.
 * @NL80211_ATTR_TXQ_MEMORY_LIMIT: Total memory limit (in bytes) for the
 *      TXQ queues for this phy. The smaller of this and the packet limit is
 *      enforced.
 * @NL80211_ATTR_TXQ_QUANTUM: TXQ scheduler quantum (bytes). Number of bytes
 *      a flow is assigned on each round of the DRR scheduler.
 * @NL80211_ATTR_HE_CAPABILITY: HE Capability information element (from
 *	association request when used with NL80211_CMD_NEW_STATION). Can be set
 *	only if %NL80211_STA_FLAG_WME is set.
 *
 * @NL80211_ATTR_FTM_RESPONDER: nested attribute which user-space can include
 *	in %NL80211_CMD_START_AP or %NL80211_CMD_SET_BEACON for fine timing
 *	measurement (FTM) responder functionality and containing parameters as
 *	possible, see &enum nl80211_ftm_responder_attr
 *
 * @NL80211_ATTR_FTM_RESPONDER_STATS: Nested attribute with FTM responder
 *	statistics, see &enum nl80211_ftm_responder_stats.
 *
 * @NL80211_ATTR_TIMEOUT: Timeout for the given operation in milliseconds (u32),
 *	if the attribute is not given no timeout is requested. Note that 0 is an
 *	invalid value.
 *
 * @NL80211_ATTR_PEER_MEASUREMENTS: peer measurements request (and result)
 *	data, uses nested attributes specified in
 *	&enum nl80211_peer_measurement_attrs.
 *	This is also used for capability advertisement in the wiphy information,
 *	with the appropriate sub-attributes.
 *
 * @NL80211_ATTR_AIRTIME_WEIGHT: Station's weight when scheduled by the airtime
 *	scheduler.
 *
 * @NL80211_ATTR_STA_TX_POWER_SETTING: Transmit power setting type (u8) for
 *	station associated with the AP. See &enum nl80211_tx_power_setting for
 *	possible values.
 * @NL80211_ATTR_STA_TX_POWER: Transmit power level (s16) in dBm units. This
 *	allows to set Tx power for a station. If this attribute is not included,
 *	the default per-interface tx power setting will be overriding. Driver
 *	should be picking up the lowest tx power, either tx power per-interface
 *	or per-station.
 *
 * @NL80211_ATTR_SAE_PASSWORD: attribute for passing SAE password material. It
 *	is used with %NL80211_CMD_CONNECT to provide password for offloading
 *	SAE authentication for WPA3-Personal networks.
 *
 * @NL80211_ATTR_TWT_RESPONDER: Enable target wait time responder support.
 *
 * @NL80211_ATTR_HE_OBSS_PD: nested attribute for OBSS Packet Detection
 *	functionality.
 *
 * @NL80211_ATTR_WIPHY_EDMG_CHANNELS: bitmap that indicates the 2.16 GHz
 *	channel(s) that are allowed to be used for EDMG transmissions.
 *	Defined by IEEE P802.11ay/D4.0 section 9.4.2.251. (u8 attribute)
 * @NL80211_ATTR_WIPHY_EDMG_BW_CONFIG: Channel BW Configuration subfield encodes
 *	the allowed channel bandwidth configurations. (u8 attribute)
 *	Defined by IEEE P802.11ay/D4.0 section 9.4.2.251, Table 13.
 *
 * @NL80211_ATTR_VLAN_ID: VLAN ID (1..4094) for the station and VLAN group key
 *	(u16).
 *
 * @NL80211_ATTR_HE_BSS_COLOR: nested attribute for BSS Color Settings.
 *
 * @NL80211_ATTR_IFTYPE_AKM_SUITES: nested array attribute, with each entry
 *	using attributes from &enum nl80211_iftype_akm_attributes. This
 *	attribute is sent in a response to %NL80211_CMD_GET_WIPHY indicating
 *	supported AKM suites capability per interface. AKMs advertised in
 *	%NL80211_ATTR_AKM_SUITES are default capabilities if AKM suites not
 *	advertised for a specific interface type.
 *
 * @NL80211_ATTR_TID_CONFIG: TID specific configuration in a
 *	nested attribute with &enum nl80211_tid_config_attr sub-attributes;
 *	on output (in wiphy attributes) it contains only the feature sub-
 *	attributes.
 *
 * @NL80211_ATTR_CONTROL_PORT_NO_PREAUTH: disable preauth frame rx on control
 *	port in order to forward/receive them as ordinary data frames.
 *
 * @NL80211_ATTR_PMK_LIFETIME: Maximum lifetime for PMKSA in seconds (u32,
 *	dot11RSNAConfigPMKReauthThreshold; 0 is not a valid value).
 *	An optional parameter configured through %NL80211_CMD_SET_PMKSA.
 *	Drivers that trigger roaming need to know the lifetime of the
 *	configured PMKSA for triggering the full vs. PMKSA caching based
 *	authentication. This timeout helps authentication methods like SAE,
 *	where PMK gets updated only by going through a full (new SAE)
 *	authentication instead of getting updated during an association for EAP
 *	authentication. No new full authentication within the PMK expiry shall
 *	result in a disassociation at the end of the lifetime.
 *
 * @NL80211_ATTR_PMK_REAUTH_THRESHOLD: Reauthentication threshold time, in
 *	terms of percentage of %NL80211_ATTR_PMK_LIFETIME
 *	(u8, dot11RSNAConfigPMKReauthThreshold, 1..100). This is an optional
 *	parameter configured through %NL80211_CMD_SET_PMKSA. Requests the
 *	driver to trigger a full authentication roam (without PMKSA caching)
 *	after the reauthentication threshold time, but before the PMK lifetime
 *	has expired.
 *
 *	Authentication methods like SAE need to be able to generate a new PMKSA
 *	entry without having to force a disconnection after the PMK timeout. If
 *	no roaming occurs between the reauth threshold and PMK expiration,
 *	disassociation is still forced.
 * @NL80211_ATTR_RECEIVE_MULTICAST: multicast flag for the
 *	%NL80211_CMD_REGISTER_FRAME command, see the description there.
 * @NL80211_ATTR_WIPHY_FREQ_OFFSET: offset of the associated
 *	%NL80211_ATTR_WIPHY_FREQ in positive KHz. Only valid when supplied with
 *	an %NL80211_ATTR_WIPHY_FREQ_OFFSET.
 * @NL80211_ATTR_CENTER_FREQ1_OFFSET: Center frequency offset in KHz for the
 *	first channel segment specified in %NL80211_ATTR_CENTER_FREQ1.
 * @NL80211_ATTR_SCAN_FREQ_KHZ: nested attribute with KHz frequencies
 *
 * @NL80211_ATTR_HE_6GHZ_CAPABILITY: HE 6 GHz Band Capability element (from
 *	association request when used with NL80211_CMD_NEW_STATION).
 *
 * @NL80211_ATTR_FILS_DISCOVERY: Optional parameter to configure FILS
 *	discovery. It is a nested attribute, see
 *	&enum nl80211_fils_discovery_attributes.
 *
 * @NL80211_ATTR_UNSOL_BCAST_PROBE_RESP: Optional parameter to configure
 *	unsolicited broadcast probe response. It is a nested attribute, see
 *	&enum nl80211_unsol_bcast_probe_resp_attributes.
 *
 * @NL80211_ATTR_S1G_CAPABILITY: S1G Capability information element (from
 *	association request when used with NL80211_CMD_NEW_STATION)
 * @NL80211_ATTR_S1G_CAPABILITY_MASK: S1G Capability Information element
 *	override mask. Used with NL80211_ATTR_S1G_CAPABILITY in
 *	NL80211_CMD_ASSOCIATE or NL80211_CMD_CONNECT.
 *
 * @NL80211_ATTR_SAE_PWE: Indicates the mechanism(s) allowed for SAE PWE
 *	derivation in WPA3-Personal networks which are using SAE authentication.
 *	This is a u8 attribute that encapsulates one of the values from
 *	&enum nl80211_sae_pwe_mechanism.
 *
 * @NL80211_ATTR_SAR_SPEC: SAR power limitation specification when
 *	used with %NL80211_CMD_SET_SAR_SPECS. The message contains fields
 *	of %nl80211_sar_attrs which specifies the sar type and related
 *	sar specs. Sar specs contains array of %nl80211_sar_specs_attrs.
 *
 * @NL80211_ATTR_RECONNECT_REQUESTED: flag attribute, used with deauth and
 *	disassoc events to indicate that an immediate reconnect to the AP
 *	is desired.
 *
 * @NL80211_ATTR_OBSS_COLOR_BITMAP: bitmap of the u64 BSS colors for the
 *	%NL80211_CMD_OBSS_COLOR_COLLISION event.
 *
 * @NL80211_ATTR_COLOR_CHANGE_COUNT: u8 attribute specifying the number of TBTT's
 *	until the color switch event.
 * @NL80211_ATTR_COLOR_CHANGE_COLOR: u8 attribute specifying the color that we are
 *	switching to
 * @NL80211_ATTR_COLOR_CHANGE_ELEMS: Nested set of attributes containing the IE
 *	information for the time while performing a color switch.
 *
 * @NL80211_ATTR_MBSSID_CONFIG: Nested attribute for multiple BSSID
 *	advertisements (MBSSID) parameters in AP mode.
 *	Kernel uses this attribute to indicate the driver's support for MBSSID
 *	and enhanced multi-BSSID advertisements (EMA AP) to the userspace.
 *	Userspace should use this attribute to configure per interface MBSSID
 *	parameters.
 *	See &enum nl80211_mbssid_config_attributes for details.
 *
 * @NL80211_ATTR_MBSSID_ELEMS: Nested parameter to pass multiple BSSID elements.
 *	Mandatory parameter for the transmitting interface to enable MBSSID.
 *	Optional for the non-transmitting interfaces.
 *
 * @NL80211_ATTR_RADAR_BACKGROUND: Configure dedicated offchannel chain
 *	available for radar/CAC detection on some hw. This chain can't be used
 *	to transmit or receive frames and it is bounded to a running wdev.
 *	Background radar/CAC detection allows to avoid the CAC downtime
 *	switching on a different channel during CAC detection on the selected
 *	radar channel.
 *
 * @NL80211_ATTR_AP_SETTINGS_FLAGS: u32 attribute contains ap settings flags,
 *	enumerated in &enum nl80211_ap_settings_flags. This attribute shall be
 *	used with %NL80211_CMD_START_AP request.
 *
 * @NL80211_ATTR_EHT_CAPABILITY: EHT Capability information element (from
 *	association request when used with NL80211_CMD_NEW_STATION). Can be set
 *	only if %NL80211_STA_FLAG_WME is set.
 *
 * @NL80211_ATTR_MLO_LINK_ID: A (u8) link ID for use with MLO, to be used with
 *	various commands that need a link ID to operate.
 * @NL80211_ATTR_MLO_LINKS: A nested array of links, each containing some
 *	per-link information and a link ID.
 * @NL80211_ATTR_MLD_ADDR: An MLD address, used with various commands such as
 *	authenticate/associate.
 *
 * @NL80211_ATTR_MLO_SUPPORT: Flag attribute to indicate user space supports MLO
 *	connection. Used with %NL80211_CMD_CONNECT. If this attribute is not
 *	included in NL80211_CMD_CONNECT drivers must not perform MLO connection.
 *
 * @NL80211_ATTR_MAX_NUM_AKM_SUITES: U16 attribute. Indicates maximum number of
 *	AKM suites allowed for %NL80211_CMD_CONNECT, %NL80211_CMD_ASSOCIATE and
 *	%NL80211_CMD_START_AP in %NL80211_CMD_GET_WIPHY response. If this
 *	attribute is not present userspace shall consider maximum number of AKM
 *	suites allowed as %NL80211_MAX_NR_AKM_SUITES which is the legacy maximum
 *	number prior to the introduction of this attribute.
 *
 * @NL80211_ATTR_EML_CAPABILITY: EML Capability information (u16)
 * @NL80211_ATTR_MLD_CAPA_AND_OPS: MLD Capabilities and Operations (u16)
 *
 * @NL80211_ATTR_TX_HW_TIMESTAMP: Hardware timestamp for TX operation in
 *	nanoseconds (u64). This is the device clock timestamp so it will
 *	probably reset when the device is stopped or the firmware is reset.
 *	When used with %NL80211_CMD_FRAME_TX_STATUS, indicates the frame TX
 *	timestamp. When used with %NL80211_CMD_FRAME RX notification, indicates
 *	the ack TX timestamp.
 * @NL80211_ATTR_RX_HW_TIMESTAMP: Hardware timestamp for RX operation in
 *	nanoseconds (u64). This is the device clock timestamp so it will
 *	probably reset when the device is stopped or the firmware is reset.
 *	When used with %NL80211_CMD_FRAME_TX_STATUS, indicates the ack RX
 *	timestamp. When used with %NL80211_CMD_FRAME RX notification, indicates
 *	the incoming frame RX timestamp.
 * @NUM_NL80211_ATTR: total number of nl80211_attrs available
 * @NL80211_ATTR_MAX: highest attribute number currently defined
 * @__NL80211_ATTR_AFTER_LAST: internal use
 */
enum nl80211_attrs {
/* don't change the order or add anything between, this is ABI! */
	NL80211_ATTR_UNSPEC,

	NL80211_ATTR_WIPHY,
	NL80211_ATTR_WIPHY_NAME,

	NL80211_ATTR_IFINDEX,
	NL80211_ATTR_IFNAME,
	NL80211_ATTR_IFTYPE,

	NL80211_ATTR_MAC,

	NL80211_ATTR_KEY_DATA,
	NL80211_ATTR_KEY_IDX,
	NL80211_ATTR_KEY_CIPHER,
	NL80211_ATTR_KEY_SEQ,
	NL80211_ATTR_KEY_DEFAULT,

	NL80211_ATTR_BEACON_INTERVAL,
	NL80211_ATTR_DTIM_PERIOD,
	NL80211_ATTR_BEACON_HEAD,
	NL80211_ATTR_BEACON_TAIL,

	NL80211_ATTR_STA_AID,
	NL80211_ATTR_STA_FLAGS,
	NL80211_ATTR_STA_LISTEN_INTERVAL,
	NL80211_ATTR_STA_SUPPORTED_RATES,
	NL80211_ATTR_STA_VLAN,
	NL80211_ATTR_STA_INFO,

	NL80211_ATTR_WIPHY_BANDS,

	NL80211_ATTR_MNTR_FLAGS,

	NL80211_ATTR_MESH_ID,
	NL80211_ATTR_STA_PLINK_ACTION,
	NL80211_ATTR_MPATH_NEXT_HOP,
	NL80211_ATTR_MPATH_INFO,

	NL80211_ATTR_BSS_CTS_PROT,
	NL80211_ATTR_BSS_SHORT_PREAMBLE,
	NL80211_ATTR_BSS_SHORT_SLOT_TIME,

	NL80211_ATTR_HT_CAPABILITY,

	NL80211_ATTR_SUPPORTED_IFTYPES,

	NL80211_ATTR_REG_ALPHA2,
	NL80211_ATTR_REG_RULES,

	NL80211_ATTR_MESH_CONFIG,

	NL80211_ATTR_BSS_BASIC_RATES,

	NL80211_ATTR_WIPHY_TXQ_PARAMS,
	NL80211_ATTR_WIPHY_FREQ,
	NL80211_ATTR_WIPHY_CHANNEL_TYPE,

	NL80211_ATTR_KEY_DEFAULT_MGMT,

	NL80211_ATTR_MGMT_SUBTYPE,
	NL80211_ATTR_IE,

	NL80211_ATTR_MAX_NUM_SCAN_SSIDS,

	NL80211_ATTR_SCAN_FREQUENCIES,
	NL80211_ATTR_SCAN_SSIDS,
	NL80211_ATTR_GENERATION, /* replaces old SCAN_GENERATION */
	NL80211_ATTR_BSS,

	NL80211_ATTR_REG_INITIATOR,
	NL80211_ATTR_REG_TYPE,

	NL80211_ATTR_SUPPORTED_COMMANDS,

	NL80211_ATTR_FRAME,
	NL80211_ATTR_SSID,
	NL80211_ATTR_AUTH_TYPE,
	NL80211_ATTR_REASON_CODE,

	NL80211_ATTR_KEY_TYPE,

	NL80211_ATTR_MAX_SCAN_IE_LEN,
	NL80211_ATTR_CIPHER_SUITES,

	NL80211_ATTR_FREQ_BEFORE,
	NL80211_ATTR_FREQ_AFTER,

	NL80211_ATTR_FREQ_FIXED,


	NL80211_ATTR_WIPHY_RETRY_SHORT,
	NL80211_ATTR_WIPHY_RETRY_LONG,
	NL80211_ATTR_WIPHY_FRAG_THRESHOLD,
	NL80211_ATTR_WIPHY_RTS_THRESHOLD,

	NL80211_ATTR_TIMED_OUT,

	NL80211_ATTR_USE_MFP,

	NL80211_ATTR_STA_FLAGS2,

	NL80211_ATTR_CONTROL_PORT,

	NL80211_ATTR_TESTDATA,

	NL80211_ATTR_PRIVACY,

	NL80211_ATTR_DISCONNECTED_BY_AP,
	NL80211_ATTR_STATUS_CODE,

	NL80211_ATTR_CIPHER_SUITES_PAIRWISE,
	NL80211_ATTR_CIPHER_SUITE_GROUP,
	NL80211_ATTR_WPA_VERSIONS,
	NL80211_ATTR_AKM_SUITES,

	NL80211_ATTR_REQ_IE,
	NL80211_ATTR_RESP_IE,

	NL80211_ATTR_PREV_BSSID,

	NL80211_ATTR_KEY,
	NL80211_ATTR_KEYS,

	NL80211_ATTR_PID,

	NL80211_ATTR_4ADDR,

	NL80211_ATTR_SURVEY_INFO,

	NL80211_ATTR_PMKID,
	NL80211_ATTR_MAX_NUM_PMKIDS,

	NL80211_ATTR_DURATION,

	NL80211_ATTR_COOKIE,

	NL80211_ATTR_WIPHY_COVERAGE_CLASS,

	NL80211_ATTR_TX_RATES,

	NL80211_ATTR_FRAME_MATCH,

	NL80211_ATTR_ACK,

	NL80211_ATTR_PS_STATE,

	NL80211_ATTR_CQM,

	NL80211_ATTR_LOCAL_STATE_CHANGE,

	NL80211_ATTR_AP_ISOLATE,

	NL80211_ATTR_WIPHY_TX_POWER_SETTING,
	NL80211_ATTR_WIPHY_TX_POWER_LEVEL,

	NL80211_ATTR_TX_FRAME_TYPES,
	NL80211_ATTR_RX_FRAME_TYPES,
	NL80211_ATTR_FRAME_TYPE,

	NL80211_ATTR_CONTROL_PORT_ETHERTYPE,
	NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT,

	NL80211_ATTR_SUPPORT_IBSS_RSN,

	NL80211_ATTR_WIPHY_ANTENNA_TX,
	NL80211_ATTR_WIPHY_ANTENNA_RX,

	NL80211_ATTR_MCAST_RATE,

	NL80211_ATTR_OFFCHANNEL_TX_OK,

	NL80211_ATTR_BSS_HT_OPMODE,

	NL80211_ATTR_KEY_DEFAULT_TYPES,

	NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION,

	NL80211_ATTR_MESH_SETUP,

	NL80211_ATTR_WIPHY_ANTENNA_AVAIL_TX,
	NL80211_ATTR_WIPHY_ANTENNA_AVAIL_RX,

	NL80211_ATTR_SUPPORT_MESH_AUTH,
	NL80211_ATTR_STA_PLINK_STATE,

	NL80211_ATTR_WOWLAN_TRIGGERS,
	NL80211_ATTR_WOWLAN_TRIGGERS_SUPPORTED,

	NL80211_ATTR_SCHED_SCAN_INTERVAL,

	NL80211_ATTR_INTERFACE_COMBINATIONS,
	NL80211_ATTR_SOFTWARE_IFTYPES,

	NL80211_ATTR_REKEY_DATA,

	NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS,
	NL80211_ATTR_MAX_SCHED_SCAN_IE_LEN,

	NL80211_ATTR_SCAN_SUPP_RATES,

	NL80211_ATTR_HIDDEN_SSID,

	NL80211_ATTR_IE_PROBE_RESP,
	NL80211_ATTR_IE_ASSOC_RESP,

	NL80211_ATTR_STA_WME,
	NL80211_ATTR_SUPPORT_AP_UAPSD,

	NL80211_ATTR_ROAM_SUPPORT,

	NL80211_ATTR_SCHED_SCAN_MATCH,
	NL80211_ATTR_MAX_MATCH_SETS,

	NL80211_ATTR_PMKSA_CANDIDATE,

	NL80211_ATTR_TX_NO_CCK_RATE,

	NL80211_ATTR_TDLS_ACTION,
	NL80211_ATTR_TDLS_DIALOG_TOKEN,
	NL80211_ATTR_TDLS_OPERATION,
	NL80211_ATTR_TDLS_SUPPORT,
	NL80211_ATTR_TDLS_EXTERNAL_SETUP,

	NL80211_ATTR_DEVICE_AP_SME,

	NL80211_ATTR_DONT_WAIT_FOR_ACK,

	NL80211_ATTR_FEATURE_FLAGS,

	NL80211_ATTR_PROBE_RESP_OFFLOAD,

	NL80211_ATTR_PROBE_RESP,

	NL80211_ATTR_DFS_REGION,

	NL80211_ATTR_DISABLE_HT,
	NL80211_ATTR_HT_CAPABILITY_MASK,

	NL80211_ATTR_NOACK_MAP,

	NL80211_ATTR_INACTIVITY_TIMEOUT,

	NL80211_ATTR_RX_SIGNAL_DBM,

	NL80211_ATTR_BG_SCAN_PERIOD,

	NL80211_ATTR_WDEV,

	NL80211_ATTR_USER_REG_HINT_TYPE,

	NL80211_ATTR_CONN_FAILED_REASON,

	NL80211_ATTR_AUTH_DATA,

	NL80211_ATTR_VHT_CAPABILITY,

	NL80211_ATTR_SCAN_FLAGS,

	NL80211_ATTR_CHANNEL_WIDTH,
	NL80211_ATTR_CENTER_FREQ1,
	NL80211_ATTR_CENTER_FREQ2,

	NL80211_ATTR_P2P_CTWINDOW,
	NL80211_ATTR_P2P_OPPPS,

	NL80211_ATTR_LOCAL_MESH_POWER_MODE,

	NL80211_ATTR_ACL_POLICY,

	NL80211_ATTR_MAC_ADDRS,

	NL80211_ATTR_MAC_ACL_MAX,

	NL80211_ATTR_RADAR_EVENT,

	NL80211_ATTR_EXT_CAPA,
	NL80211_ATTR_EXT_CAPA_MASK,

	NL80211_ATTR_STA_CAPABILITY,
	NL80211_ATTR_STA_EXT_CAPABILITY,

	NL80211_ATTR_PROTOCOL_FEATURES,
	NL80211_ATTR_SPLIT_WIPHY_DUMP,

	NL80211_ATTR_DISABLE_VHT,
	NL80211_ATTR_VHT_CAPABILITY_MASK,

	NL80211_ATTR_MDID,
	NL80211_ATTR_IE_RIC,

	NL80211_ATTR_CRIT_PROT_ID,
	NL80211_ATTR_MAX_CRIT_PROT_DURATION,

	NL80211_ATTR_PEER_AID,

	NL80211_ATTR_COALESCE_RULE,

	NL80211_ATTR_CH_SWITCH_COUNT,
	NL80211_ATTR_CH_SWITCH_BLOCK_TX,
	NL80211_ATTR_CSA_IES,
	NL80211_ATTR_CNTDWN_OFFS_BEACON,
	NL80211_ATTR_CNTDWN_OFFS_PRESP,

	NL80211_ATTR_RXMGMT_FLAGS,

	NL80211_ATTR_STA_SUPPORTED_CHANNELS,

	NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES,

	NL80211_ATTR_HANDLE_DFS,

	NL80211_ATTR_SUPPORT_5_MHZ,
	NL80211_ATTR_SUPPORT_10_MHZ,

	NL80211_ATTR_OPMODE_NOTIF,

	NL80211_ATTR_VENDOR_ID,
	NL80211_ATTR_VENDOR_SUBCMD,
	NL80211_ATTR_VENDOR_DATA,
	NL80211_ATTR_VENDOR_EVENTS,

	NL80211_ATTR_QOS_MAP,

	NL80211_ATTR_MAC_HINT,
	NL80211_ATTR_WIPHY_FREQ_HINT,

	NL80211_ATTR_MAX_AP_ASSOC_STA,

	NL80211_ATTR_TDLS_PEER_CAPABILITY,

	NL80211_ATTR_SOCKET_OWNER,

	NL80211_ATTR_CSA_C_OFFSETS_TX,
	NL80211_ATTR_MAX_CSA_COUNTERS,

	NL80211_ATTR_TDLS_INITIATOR,

	NL80211_ATTR_USE_RRM,

	NL80211_ATTR_WIPHY_DYN_ACK,

	NL80211_ATTR_TSID,
	NL80211_ATTR_USER_PRIO,
	NL80211_ATTR_ADMITTED_TIME,

	NL80211_ATTR_SMPS_MODE,

	NL80211_ATTR_OPER_CLASS,

	NL80211_ATTR_MAC_MASK,

	NL80211_ATTR_WIPHY_SELF_MANAGED_REG,

	NL80211_ATTR_EXT_FEATURES,

	NL80211_ATTR_SURVEY_RADIO_STATS,

	NL80211_ATTR_NETNS_FD,

	NL80211_ATTR_SCHED_SCAN_DELAY,

	NL80211_ATTR_REG_INDOOR,

	NL80211_ATTR_MAX_NUM_SCHED_SCAN_PLANS,
	NL80211_ATTR_MAX_SCAN_PLAN_INTERVAL,
	NL80211_ATTR_MAX_SCAN_PLAN_ITERATIONS,
	NL80211_ATTR_SCHED_SCAN_PLANS,

	NL80211_ATTR_PBSS,

	NL80211_ATTR_BSS_SELECT,

	NL80211_ATTR_STA_SUPPORT_P2P_PS,

	NL80211_ATTR_PAD,

	NL80211_ATTR_IFTYPE_EXT_CAPA,

	NL80211_ATTR_MU_MIMO_GROUP_DATA,
	NL80211_ATTR_MU_MIMO_FOLLOW_MAC_ADDR,

	NL80211_ATTR_SCAN_START_TIME_TSF,
	NL80211_ATTR_SCAN_START_TIME_TSF_BSSID,
	NL80211_ATTR_MEASUREMENT_DURATION,
	NL80211_ATTR_MEASUREMENT_DURATION_MANDATORY,

	NL80211_ATTR_MESH_PEER_AID,

	NL80211_ATTR_NAN_MASTER_PREF,
	NL80211_ATTR_BANDS,
	NL80211_ATTR_NAN_FUNC,
	NL80211_ATTR_NAN_MATCH,

	NL80211_ATTR_FILS_KEK,
	NL80211_ATTR_FILS_NONCES,

	NL80211_ATTR_MULTICAST_TO_UNICAST_ENABLED,

	NL80211_ATTR_BSSID,

	NL80211_ATTR_SCHED_SCAN_RELATIVE_RSSI,
	NL80211_ATTR_SCHED_SCAN_RSSI_ADJUST,

	NL80211_ATTR_TIMEOUT_REASON,

	NL80211_ATTR_FILS_ERP_USERNAME,
	NL80211_ATTR_FILS_ERP_REALM,
	NL80211_ATTR_FILS_ERP_NEXT_SEQ_NUM,
	NL80211_ATTR_FILS_ERP_RRK,
	NL80211_ATTR_FILS_CACHE_ID,

	NL80211_ATTR_PMK,

	NL80211_ATTR_SCHED_SCAN_MULTI,
	NL80211_ATTR_SCHED_SCAN_MAX_REQS,

	NL80211_ATTR_WANT_1X_4WAY_HS,
	NL80211_ATTR_PMKR0_NAME,
	NL80211_ATTR_PORT_AUTHORIZED,

	NL80211_ATTR_EXTERNAL_AUTH_ACTION,
	NL80211_ATTR_EXTERNAL_AUTH_SUPPORT,

	NL80211_ATTR_NSS,
	NL80211_ATTR_ACK_SIGNAL,

	NL80211_ATTR_CONTROL_PORT_OVER_NL80211,

	NL80211_ATTR_TXQ_STATS,
	NL80211_ATTR_TXQ_LIMIT,
	NL80211_ATTR_TXQ_MEMORY_LIMIT,
	NL80211_ATTR_TXQ_QUANTUM,

	NL80211_ATTR_HE_CAPABILITY,

	NL80211_ATTR_FTM_RESPONDER,

	NL80211_ATTR_FTM_RESPONDER_STATS,

	NL80211_ATTR_TIMEOUT,

	NL80211_ATTR_PEER_MEASUREMENTS,

	NL80211_ATTR_AIRTIME_WEIGHT,
	NL80211_ATTR_STA_TX_POWER_SETTING,
	NL80211_ATTR_STA_TX_POWER,

	NL80211_ATTR_SAE_PASSWORD,

	NL80211_ATTR_TWT_RESPONDER,

	NL80211_ATTR_HE_OBSS_PD,

	NL80211_ATTR_WIPHY_EDMG_CHANNELS,
	NL80211_ATTR_WIPHY_EDMG_BW_CONFIG,

	NL80211_ATTR_VLAN_ID,

	NL80211_ATTR_HE_BSS_COLOR,

	NL80211_ATTR_IFTYPE_AKM_SUITES,

	NL80211_ATTR_TID_CONFIG,

	NL80211_ATTR_CONTROL_PORT_NO_PREAUTH,

	NL80211_ATTR_PMK_LIFETIME,
	NL80211_ATTR_PMK_REAUTH_THRESHOLD,

	NL80211_ATTR_RECEIVE_MULTICAST,
	NL80211_ATTR_WIPHY_FREQ_OFFSET,
	NL80211_ATTR_CENTER_FREQ1_OFFSET,
	NL80211_ATTR_SCAN_FREQ_KHZ,

	NL80211_ATTR_HE_6GHZ_CAPABILITY,

	NL80211_ATTR_FILS_DISCOVERY,

	NL80211_ATTR_UNSOL_BCAST_PROBE_RESP,

	NL80211_ATTR_S1G_CAPABILITY,
	NL80211_ATTR_S1G_CAPABILITY_MASK,

	NL80211_ATTR_SAE_PWE,

	NL80211_ATTR_RECONNECT_REQUESTED,

	NL80211_ATTR_SAR_SPEC,

	NL80211_ATTR_DISABLE_HE,

	NL80211_ATTR_OBSS_COLOR_BITMAP,

	NL80211_ATTR_COLOR_CHANGE_COUNT,
	NL80211_ATTR_COLOR_CHANGE_COLOR,
	NL80211_ATTR_COLOR_CHANGE_ELEMS,

	NL80211_ATTR_MBSSID_CONFIG,
	NL80211_ATTR_MBSSID_ELEMS,

	NL80211_ATTR_RADAR_BACKGROUND,

	NL80211_ATTR_AP_SETTINGS_FLAGS,

	NL80211_ATTR_EHT_CAPABILITY,

	NL80211_ATTR_DISABLE_EHT,

	NL80211_ATTR_MLO_LINKS,
	NL80211_ATTR_MLO_LINK_ID,
	NL80211_ATTR_MLD_ADDR,

	NL80211_ATTR_MLO_SUPPORT,

	NL80211_ATTR_MAX_NUM_AKM_SUITES,

	NL80211_ATTR_EML_CAPABILITY,
	NL80211_ATTR_MLD_CAPA_AND_OPS,

	NL80211_ATTR_TX_HW_TIMESTAMP,
	NL80211_ATTR_RX_HW_TIMESTAMP,

	/* add attributes here, update the policy in nl80211.c */

	__NL80211_ATTR_AFTER_LAST,
	NUM_NL80211_ATTR = __NL80211_ATTR_AFTER_LAST,
	NL80211_ATTR_MAX = __NL80211_ATTR_AFTER_LAST - 1
};

/* source-level API compatibility */
#define NL80211_ATTR_SCAN_GENERATION NL80211_ATTR_GENERATION
#define	NL80211_ATTR_MESH_PARAMS NL80211_ATTR_MESH_CONFIG
#define NL80211_ATTR_IFACE_SOCKET_OWNER NL80211_ATTR_SOCKET_OWNER
#define NL80211_ATTR_SAE_DATA NL80211_ATTR_AUTH_DATA
#define NL80211_ATTR_CSA_C_OFF_BEACON NL80211_ATTR_CNTDWN_OFFS_BEACON
#define NL80211_ATTR_CSA_C_OFF_PRESP NL80211_ATTR_CNTDWN_OFFS_PRESP

/*
 * Allow user space programs to use #ifdef on new attributes by defining them
 * here
 */
#define NL80211_CMD_CONNECT NL80211_CMD_CONNECT
#define NL80211_ATTR_HT_CAPABILITY NL80211_ATTR_HT_CAPABILITY
#define NL80211_ATTR_BSS_BASIC_RATES NL80211_ATTR_BSS_BASIC_RATES
#define NL80211_ATTR_WIPHY_TXQ_PARAMS NL80211_ATTR_WIPHY_TXQ_PARAMS
#define NL80211_ATTR_WIPHY_FREQ NL80211_ATTR_WIPHY_FREQ
#define NL80211_ATTR_WIPHY_CHANNEL_TYPE NL80211_ATTR_WIPHY_CHANNEL_TYPE
#define NL80211_ATTR_MGMT_SUBTYPE NL80211_ATTR_MGMT_SUBTYPE
#define NL80211_ATTR_IE NL80211_ATTR_IE
#define NL80211_ATTR_REG_INITIATOR NL80211_ATTR_REG_INITIATOR
#define NL80211_ATTR_REG_TYPE NL80211_ATTR_REG_TYPE
#define NL80211_ATTR_FRAME NL80211_ATTR_FRAME
#define NL80211_ATTR_SSID NL80211_ATTR_SSID
#define NL80211_ATTR_AUTH_TYPE NL80211_ATTR_AUTH_TYPE
#define NL80211_ATTR_REASON_CODE NL80211_ATTR_REASON_CODE
#define NL80211_ATTR_CIPHER_SUITES_PAIRWISE NL80211_ATTR_CIPHER_SUITES_PAIRWISE
#define NL80211_ATTR_CIPHER_SUITE_GROUP NL80211_ATTR_CIPHER_SUITE_GROUP
#define NL80211_ATTR_WPA_VERSIONS NL80211_ATTR_WPA_VERSIONS
#define NL80211_ATTR_AKM_SUITES NL80211_ATTR_AKM_SUITES
#define NL80211_ATTR_KEY NL80211_ATTR_KEY
#define NL80211_ATTR_KEYS NL80211_ATTR_KEYS
#define NL80211_ATTR_FEATURE_FLAGS NL80211_ATTR_FEATURE_FLAGS

#define NL80211_WIPHY_NAME_MAXLEN		64

#define NL80211_MAX_SUPP_RATES			32
#define NL80211_MAX_SUPP_HT_RATES		77
#define NL80211_MAX_SUPP_REG_RULES		128
#define NL80211_TKIP_DATA_OFFSET_ENCR_KEY	0
#define NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY	16
#define NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY	24
#define NL80211_HT_CAPABILITY_LEN		26
#define NL80211_VHT_CAPABILITY_LEN		12
#define NL80211_HE_MIN_CAPABILITY_LEN           16
#define NL80211_HE_MAX_CAPABILITY_LEN           54
#define NL80211_MAX_NR_CIPHER_SUITES		5

/*
 * NL80211_MAX_NR_AKM_SUITES is obsolete when %NL80211_ATTR_MAX_NUM_AKM_SUITES
 * present in %NL80211_CMD_GET_WIPHY response.
 */
#define NL80211_MAX_NR_AKM_SUITES		2
#define NL80211_EHT_MIN_CAPABILITY_LEN          13
#define NL80211_EHT_MAX_CAPABILITY_LEN          51

#define NL80211_MIN_REMAIN_ON_CHANNEL_TIME	10

/* default RSSI threshold for scan results if none specified. */
#define NL80211_SCAN_RSSI_THOLD_OFF		-300

#define NL80211_CQM_TXE_MAX_INTVL		1800

/**
 * enum nl80211_iftype - (virtual) interface types
 *
 * @NL80211_IFTYPE_UNSPECIFIED: unspecified type, driver decides
 * @NL80211_IFTYPE_ADHOC: independent BSS member
 * @NL80211_IFTYPE_STATION: managed BSS member
 * @NL80211_IFTYPE_AP: access point
 * @NL80211_IFTYPE_AP_VLAN: VLAN interface for access points; VLAN interfaces
 *	are a bit special in that they must always be tied to a pre-existing
 *	AP type interface.
 * @NL80211_IFTYPE_WDS: wireless distribution interface
 * @NL80211_IFTYPE_MONITOR: monitor interface receiving all frames
 * @NL80211_IFTYPE_MESH_POINT: mesh point
 * @NL80211_IFTYPE_P2P_CLIENT: P2P client
 * @NL80211_IFTYPE_P2P_GO: P2P group owner
 * @NL80211_IFTYPE_P2P_DEVICE: P2P device interface type, this is not a netdev
 *	and therefore can't be created in the normal ways, use the
 *	%NL80211_CMD_START_P2P_DEVICE and %NL80211_CMD_STOP_P2P_DEVICE
 *	commands to create and destroy one
 * @NL80211_IFTYPE_OCB: Outside Context of a BSS
 *	This mode corresponds to the MIB variable dot11OCBActivated=true
 * @NL80211_IFTYPE_NAN: NAN device interface type (not a netdev)
 * @NL80211_IFTYPE_MAX: highest interface type number currently defined
 * @NUM_NL80211_IFTYPES: number of defined interface types
 *
 * These values are used with the %NL80211_ATTR_IFTYPE
 * to set the type of an interface.
 *
 */
enum nl80211_iftype {
	NL80211_IFTYPE_UNSPECIFIED,
	NL80211_IFTYPE_ADHOC,
	NL80211_IFTYPE_STATION,
	NL80211_IFTYPE_AP,
	NL80211_IFTYPE_AP_VLAN,
	NL80211_IFTYPE_WDS,
	NL80211_IFTYPE_MONITOR,
	NL80211_IFTYPE_MESH_POINT,
	NL80211_IFTYPE_P2P_CLIENT,
	NL80211_IFTYPE_P2P_GO,
	NL80211_IFTYPE_P2P_DEVICE,
	NL80211_IFTYPE_OCB,
	NL80211_IFTYPE_NAN,

	/* keep last */
	NUM_NL80211_IFTYPES,
	NL80211_IFTYPE_MAX = NUM_NL80211_IFTYPES - 1
};

/**
 * enum nl80211_sta_flags - station flags
 *
 * Station flags. When a station is added to an AP interface, it is
 * assumed to be already associated (and hence authenticated.)
 *
 * @__NL80211_STA_FLAG_INVALID: attribute number 0 is reserved
 * @NL80211_STA_FLAG_AUTHORIZED: station is authorized (802.1X)
 * @NL80211_STA_FLAG_SHORT_PREAMBLE: station is capable of receiving frames
 *	with short barker preamble
 * @NL80211_STA_FLAG_WME: station is WME/QoS capable
 * @NL80211_STA_FLAG_MFP: station uses management frame protection
 * @NL80211_STA_FLAG_AUTHENTICATED: station is authenticated
 * @NL80211_STA_FLAG_TDLS_PEER: station is a TDLS peer -- this flag should
 *	only be used in managed mode (even in the flags mask). Note that the
 *	flag can't be changed, it is only valid while adding a station, and
 *	attempts to change it will silently be ignored (rather than rejected
 *	as errors.)
 * @NL80211_STA_FLAG_ASSOCIATED: station is associated; used with drivers
 *	that support %NL80211_FEATURE_FULL_AP_CLIENT_STATE to transition a
 *	previously added station into associated state
 * @NL80211_STA_FLAG_MAX: highest station flag number currently defined
 * @__NL80211_STA_FLAG_AFTER_LAST: internal use
 */
enum nl80211_sta_flags {
	__NL80211_STA_FLAG_INVALID,
	NL80211_STA_FLAG_AUTHORIZED,
	NL80211_STA_FLAG_SHORT_PREAMBLE,
	NL80211_STA_FLAG_WME,
	NL80211_STA_FLAG_MFP,
	NL80211_STA_FLAG_AUTHENTICATED,
	NL80211_STA_FLAG_TDLS_PEER,
	NL80211_STA_FLAG_ASSOCIATED,

	/* keep last */
	__NL80211_STA_FLAG_AFTER_LAST,
	NL80211_STA_FLAG_MAX = __NL80211_STA_FLAG_AFTER_LAST - 1
};

/**
 * enum nl80211_sta_p2p_ps_status - station support of P2P PS
 *
 * @NL80211_P2P_PS_UNSUPPORTED: station doesn't support P2P PS mechanism
 * @@NL80211_P2P_PS_SUPPORTED: station supports P2P PS mechanism
 * @NUM_NL80211_P2P_PS_STATUS: number of values
 */
enum nl80211_sta_p2p_ps_status {
	NL80211_P2P_PS_UNSUPPORTED = 0,
	NL80211_P2P_PS_SUPPORTED,

	NUM_NL80211_P2P_PS_STATUS,
};

#define NL80211_STA_FLAG_MAX_OLD_API	NL80211_STA_FLAG_TDLS_PEER

/**
 * struct nl80211_sta_flag_update - station flags mask/set
 * @mask: mask of station flags to set
 * @set: which values to set them to
 *
 * Both mask and set contain bits as per &enum nl80211_sta_flags.
 */
struct nl80211_sta_flag_update {
	__u32 mask;
	__u32 set;
} __attribute__((packed));

/**
 * enum nl80211_he_gi - HE guard interval
 * @NL80211_RATE_INFO_HE_GI_0_8: 0.8 usec
 * @NL80211_RATE_INFO_HE_GI_1_6: 1.6 usec
 * @NL80211_RATE_INFO_HE_GI_3_2: 3.2 usec
 */
enum nl80211_he_gi {
	NL80211_RATE_INFO_HE_GI_0_8,
	NL80211_RATE_INFO_HE_GI_1_6,
	NL80211_RATE_INFO_HE_GI_3_2,
};

/**
 * enum nl80211_he_ltf - HE long training field
 * @NL80211_RATE_INFO_HE_1xLTF: 3.2 usec
 * @NL80211_RATE_INFO_HE_2xLTF: 6.4 usec
 * @NL80211_RATE_INFO_HE_4xLTF: 12.8 usec
 */
enum nl80211_he_ltf {
	NL80211_RATE_INFO_HE_1XLTF,
	NL80211_RATE_INFO_HE_2XLTF,
	NL80211_RATE_INFO_HE_4XLTF,
};

/**
 * enum nl80211_he_ru_alloc - HE RU allocation values
 * @NL80211_RATE_INFO_HE_RU_ALLOC_26: 26-tone RU allocation
 * @NL80211_RATE_INFO_HE_RU_ALLOC_52: 52-tone RU allocation
 * @NL80211_RATE_INFO_HE_RU_ALLOC_106: 106-tone RU allocation
 * @NL80211_RATE_INFO_HE_RU_ALLOC_242: 242-tone RU allocation
 * @NL80211_RATE_INFO_HE_RU_ALLOC_484: 484-tone RU allocation
 * @NL80211_RATE_INFO_HE_RU_ALLOC_996: 996-tone RU allocation
 * @NL80211_RATE_INFO_HE_RU_ALLOC_2x996: 2x996-tone RU allocation
 */
enum nl80211_he_ru_alloc {
	NL80211_RATE_INFO_HE_RU_ALLOC_26,
	NL80211_RATE_INFO_HE_RU_ALLOC_52,
	NL80211_RATE_INFO_HE_RU_ALLOC_106,
	NL80211_RATE_INFO_HE_RU_ALLOC_242,
	NL80211_RATE_INFO_HE_RU_ALLOC_484,
	NL80211_RATE_INFO_HE_RU_ALLOC_996,
	NL80211_RATE_INFO_HE_RU_ALLOC_2x996,
};

/**
 * enum nl80211_eht_gi - EHT guard interval
 * @NL80211_RATE_INFO_EHT_GI_0_8: 0.8 usec
 * @NL80211_RATE_INFO_EHT_GI_1_6: 1.6 usec
 * @NL80211_RATE_INFO_EHT_GI_3_2: 3.2 usec
 */
enum nl80211_eht_gi {
	NL80211_RATE_INFO_EHT_GI_0_8,
	NL80211_RATE_INFO_EHT_GI_1_6,
	NL80211_RATE_INFO_EHT_GI_3_2,
};

/**
 * enum nl80211_eht_ru_alloc - EHT RU allocation values
 * @NL80211_RATE_INFO_EHT_RU_ALLOC_26: 26-tone RU allocation
 * @NL80211_RATE_INFO_EHT_RU_ALLOC_52: 52-tone RU allocation
 * @NL80211_RATE_INFO_EHT_RU_ALLOC_52P26: 52+26-tone RU allocation
 * @NL80211_RATE_INFO_EHT_RU_ALLOC_106: 106-tone RU allocation
 * @NL80211_RATE_INFO_EHT_RU_ALLOC_106P26: 106+26 tone RU allocation
 * @NL80211_RATE_INFO_EHT_RU_ALLOC_242: 242-tone RU allocation
 * @NL80211_RATE_INFO_EHT_RU_ALLOC_484: 484-tone RU allocation
 * @NL80211_RATE_INFO_EHT_RU_ALLOC_484P242: 484+242 tone RU allocation
 * @NL80211_RATE_INFO_EHT_RU_ALLOC_996: 996-tone RU allocation
 * @NL80211_RATE_INFO_EHT_RU_ALLOC_996P484: 996+484 tone RU allocation
 * @NL80211_RATE_INFO_EHT_RU_ALLOC_996P484P242: 996+484+242 tone RU allocation
 * @NL80211_RATE_INFO_EHT_RU_ALLOC_2x996: 2x996-tone RU allocation
 * @NL80211_RATE_INFO_EHT_RU_ALLOC_2x996P484: 2x996+484 tone RU allocation
 * @NL80211_RATE_INFO_EHT_RU_ALLOC_3x996: 3x996-tone RU allocation
 * @NL80211_RATE_INFO_EHT_RU_ALLOC_3x996P484: 3x996+484 tone RU allocation
 * @NL80211_RATE_INFO_EHT_RU_ALLOC_4x996: 4x996-tone RU allocation
 */
enum nl80211_eht_ru_alloc {
	NL80211_RATE_INFO_EHT_RU_ALLOC_26,
	NL80211_RATE_INFO_EHT_RU_ALLOC_52,
	NL80211_RATE_INFO_EHT_RU_ALLOC_52P26,
	NL80211_RATE_INFO_EHT_RU_ALLOC_106,
	NL80211_RATE_INFO_EHT_RU_ALLOC_106P26,
	NL80211_RATE_INFO_EHT_RU_ALLOC_242,
	NL80211_RATE_INFO_EHT_RU_ALLOC_484,
	NL80211_RATE_INFO_EHT_RU_ALLOC_484P242,
	NL80211_RATE_INFO_EHT_RU_ALLOC_996,
	NL80211_RATE_INFO_EHT_RU_ALLOC_996P484,
	NL80211_RATE_INFO_EHT_RU_ALLOC_996P484P242,
	NL80211_RATE_INFO_EHT_RU_ALLOC_2x996,
	NL80211_RATE_INFO_EHT_RU_ALLOC_2x996P484,
	NL80211_RATE_INFO_EHT_RU_ALLOC_3x996,
	NL80211_RATE_INFO_EHT_RU_ALLOC_3x996P484,
	NL80211_RATE_INFO_EHT_RU_ALLOC_4x996,
};

/**
 * enum nl80211_rate_info - bitrate information
 *
 * These attribute types are used with %NL80211_STA_INFO_TXRATE
 * when getting information about the bitrate of a station.
 * There are 2 attributes for bitrate, a legacy one that represents
 * a 16-bit value, and new one that represents a 32-bit value.
 * If the rate value fits into 16 bit, both attributes are reported
 * with the same value. If the rate is too high to fit into 16 bits
 * (>6.5535Gbps) only 32-bit attribute is included.
 * User space tools encouraged to use the 32-bit attribute and fall
 * back to the 16-bit one for compatibility with older kernels.
 *
 * @__NL80211_RATE_INFO_INVALID: attribute number 0 is reserved
 * @NL80211_RATE_INFO_BITRATE: total bitrate (u16, 100kbit/s)
 * @NL80211_RATE_INFO_MCS: mcs index for 802.11n (u8)
 * @NL80211_RATE_INFO_40_MHZ_WIDTH: 40 MHz dualchannel bitrate
 * @NL80211_RATE_INFO_SHORT_GI: 400ns guard interval
 * @NL80211_RATE_INFO_BITRATE32: total bitrate (u32, 100kbit/s)
 * @NL80211_RATE_INFO_MAX: highest rate_info number currently defined
 * @NL80211_RATE_INFO_VHT_MCS: MCS index for VHT (u8)
 * @NL80211_RATE_INFO_VHT_NSS: number of streams in VHT (u8)
 * @NL80211_RATE_INFO_80_MHZ_WIDTH: 80 MHz VHT rate
 * @NL80211_RATE_INFO_80P80_MHZ_WIDTH: unused - 80+80 is treated the
 *	same as 160 for purposes of the bitrates
 * @NL80211_RATE_INFO_160_MHZ_WIDTH: 160 MHz VHT rate
 * @NL80211_RATE_INFO_10_MHZ_WIDTH: 10 MHz width - note that this is
 *	a legacy rate and will be reported as the actual bitrate, i.e.
 *	half the base (20 MHz) rate
 * @NL80211_RATE_INFO_5_MHZ_WIDTH: 5 MHz width - note that this is
 *	a legacy rate and will be reported as the actual bitrate, i.e.
 *	a quarter of the base (20 MHz) rate
 * @NL80211_RATE_INFO_HE_MCS: HE MCS index (u8, 0-11)
 * @NL80211_RATE_INFO_HE_NSS: HE NSS value (u8, 1-8)
 * @NL80211_RATE_INFO_HE_GI: HE guard interval identifier
 *	(u8, see &enum nl80211_he_gi)
 * @NL80211_RATE_INFO_HE_DCM: HE DCM value (u8, 0/1)
 * @NL80211_RATE_INFO_RU_ALLOC: HE RU allocation, if not present then
 *	non-OFDMA was used (u8, see &enum nl80211_he_ru_alloc)
 * @NL80211_RATE_INFO_320_MHZ_WIDTH: 320 MHz bitrate
 * @NL80211_RATE_INFO_EHT_MCS: EHT MCS index (u8, 0-15)
 * @NL80211_RATE_INFO_EHT_NSS: EHT NSS value (u8, 1-8)
 * @NL80211_RATE_INFO_EHT_GI: EHT guard interval identifier
 *	(u8, see &enum nl80211_eht_gi)
 * @NL80211_RATE_INFO_EHT_RU_ALLOC: EHT RU allocation, if not present then
 *	non-OFDMA was used (u8, see &enum nl80211_eht_ru_alloc)
 * @__NL80211_RATE_INFO_AFTER_LAST: internal use
 */
enum nl80211_rate_info {
	__NL80211_RATE_INFO_INVALID,
	NL80211_RATE_INFO_BITRATE,
	NL80211_RATE_INFO_MCS,
	NL80211_RATE_INFO_40_MHZ_WIDTH,
	NL80211_RATE_INFO_SHORT_GI,
	NL80211_RATE_INFO_BITRATE32,
	NL80211_RATE_INFO_VHT_MCS,
	NL80211_RATE_INFO_VHT_NSS,
	NL80211_RATE_INFO_80_MHZ_WIDTH,
	NL80211_RATE_INFO_80P80_MHZ_WIDTH,
	NL80211_RATE_INFO_160_MHZ_WIDTH,
	NL80211_RATE_INFO_10_MHZ_WIDTH,
	NL80211_RATE_INFO_5_MHZ_WIDTH,
	NL80211_RATE_INFO_HE_MCS,
	NL80211_RATE_INFO_HE_NSS,
	NL80211_RATE_INFO_HE_GI,
	NL80211_RATE_INFO_HE_DCM,
	NL80211_RATE_INFO_HE_RU_ALLOC,
	NL80211_RATE_INFO_320_MHZ_WIDTH,
	NL80211_RATE_INFO_EHT_MCS,
	NL80211_RATE_INFO_EHT_NSS,
	NL80211_RATE_INFO_EHT_GI,
	NL80211_RATE_INFO_EHT_RU_ALLOC,

	/* keep last */
	__NL80211_RATE_INFO_AFTER_LAST,
	NL80211_RATE_INFO_MAX = __NL80211_RATE_INFO_AFTER_LAST - 1
};

/**
 * enum nl80211_sta_bss_param - BSS information collected by STA
 *
 * These attribute types are used with %NL80211_STA_INFO_BSS_PARAM
 * when getting information about the bitrate of a station.
 *
 * @__NL80211_STA_BSS_PARAM_INVALID: attribute number 0 is reserved
 * @NL80211_STA_BSS_PARAM_CTS_PROT: whether CTS protection is enabled (flag)
 * @NL80211_STA_BSS_PARAM_SHORT_PREAMBLE:  whether short preamble is enabled
 *	(flag)
 * @NL80211_STA_BSS_PARAM_SHORT_SLOT_TIME:  whether short slot time is enabled
 *	(flag)
 * @NL80211_STA_BSS_PARAM_DTIM_PERIOD: DTIM period for beaconing (u8)
 * @NL80211_STA_BSS_PARAM_BEACON_INTERVAL: Beacon interval (u16)
 * @NL80211_STA_BSS_PARAM_MAX: highest sta_bss_param number currently defined
 * @__NL80211_STA_BSS_PARAM_AFTER_LAST: internal use
 */
enum nl80211_sta_bss_param {
	__NL80211_STA_BSS_PARAM_INVALID,
	NL80211_STA_BSS_PARAM_CTS_PROT,
	NL80211_STA_BSS_PARAM_SHORT_PREAMBLE,
	NL80211_STA_BSS_PARAM_SHORT_SLOT_TIME,
	NL80211_STA_BSS_PARAM_DTIM_PERIOD,
	NL80211_STA_BSS_PARAM_BEACON_INTERVAL,

	/* keep last */
	__NL80211_STA_BSS_PARAM_AFTER_LAST,
	NL80211_STA_BSS_PARAM_MAX = __NL80211_STA_BSS_PARAM_AFTER_LAST - 1
};

/**
 * enum nl80211_sta_info - station information
 *
 * These attribute types are used with %NL80211_ATTR_STA_INFO
 * when getting information about a station.
 *
 * @__NL80211_STA_INFO_INVALID: attribute number 0 is reserved
 * @NL80211_STA_INFO_INACTIVE_TIME: time since last activity (u32, msecs)
 * @NL80211_STA_INFO_RX_BYTES: total received bytes (MPDU length)
 *	(u32, from this station)
 * @NL80211_STA_INFO_TX_BYTES: total transmitted bytes (MPDU length)
 *	(u32, to this station)
 * @NL80211_STA_INFO_RX_BYTES64: total received bytes (MPDU length)
 *	(u64, from this station)
 * @NL80211_STA_INFO_TX_BYTES64: total transmitted bytes (MPDU length)
 *	(u64, to this station)
 * @NL80211_STA_INFO_SIGNAL: signal strength of last received PPDU (u8, dBm)
 * @NL80211_STA_INFO_TX_BITRATE: current unicast tx rate, nested attribute
 * 	containing info as possible, see &enum nl80211_rate_info
 * @NL80211_STA_INFO_RX_PACKETS: total received packet (MSDUs and MMPDUs)
 *	(u32, from this station)
 * @NL80211_STA_INFO_TX_PACKETS: total transmitted packets (MSDUs and MMPDUs)
 *	(u32, to this station)
 * @NL80211_STA_INFO_TX_RETRIES: total retries (MPDUs) (u32, to this station)
 * @NL80211_STA_INFO_TX_FAILED: total failed packets (MPDUs)
 *	(u32, to this station)
 * @NL80211_STA_INFO_SIGNAL_AVG: signal strength average (u8, dBm)
 * @NL80211_STA_INFO_LLID: the station's mesh LLID
 * @NL80211_STA_INFO_PLID: the station's mesh PLID
 * @NL80211_STA_INFO_PLINK_STATE: peer link state for the station
 *	(see %enum nl80211_plink_state)
 * @NL80211_STA_INFO_RX_BITRATE: last unicast data frame rx rate, nested
 *	attribute, like NL80211_STA_INFO_TX_BITRATE.
 * @NL80211_STA_INFO_BSS_PARAM: current station's view of BSS, nested attribute
 *     containing info as possible, see &enum nl80211_sta_bss_param
 * @NL80211_STA_INFO_CONNECTED_TIME: time since the station is last connected
 * @NL80211_STA_INFO_STA_FLAGS: Contains a struct nl80211_sta_flag_update.
 * @NL80211_STA_INFO_BEACON_LOSS: count of times beacon loss was detected (u32)
 * @NL80211_STA_INFO_T_OFFSET: timing offset with respect to this STA (s64)
 * @NL80211_STA_INFO_LOCAL_PM: local mesh STA link-specific power mode
 * @NL80211_STA_INFO_PEER_PM: peer mesh STA link-specific power mode
 * @NL80211_STA_INFO_NONPEER_PM: neighbor mesh STA power save mode towards
 *	non-peer STA
 * @NL80211_STA_INFO_CHAIN_SIGNAL: per-chain signal strength of last PPDU
 *	Contains a nested array of signal strength attributes (u8, dBm)
 * @NL80211_STA_INFO_CHAIN_SIGNAL_AVG: per-chain signal strength average
 *	Same format as NL80211_STA_INFO_CHAIN_SIGNAL.
 * @NL80211_STA_EXPECTED_THROUGHPUT: expected throughput considering also the
 *	802.11 header (u32, kbps)
 * @NL80211_STA_INFO_RX_DROP_MISC: RX packets dropped for unspecified reasons
 *	(u64)
 * @NL80211_STA_INFO_BEACON_RX: number of beacons received from this peer (u64)
 * @NL80211_STA_INFO_BEACON_SIGNAL_AVG: signal strength average
 *	for beacons only (u8, dBm)
 * @NL80211_STA_INFO_TID_STATS: per-TID statistics (see &enum nl80211_tid_stats)
 *	This is a nested attribute where each the inner attribute number is the
 *	TID+1 and the special TID 16 (i.e. value 17) is used for non-QoS frames;
 *	each one of those is again nested with &enum nl80211_tid_stats
 *	attributes carrying the actual values.
 * @NL80211_STA_INFO_RX_DURATION: aggregate PPDU duration for all frames
 *	received from the station (u64, usec)
 * @NL80211_STA_INFO_PAD: attribute used for padding for 64-bit alignment
 * @NL80211_STA_INFO_ACK_SIGNAL: signal strength of the last ACK frame(u8, dBm)
 * @NL80211_STA_INFO_ACK_SIGNAL_AVG: avg signal strength of ACK frames (s8, dBm)
 * @NL80211_STA_INFO_RX_MPDUS: total number of received packets (MPDUs)
 *	(u32, from this station)
 * @NL80211_STA_INFO_FCS_ERROR_COUNT: total number of packets (MPDUs) received
 *	with an FCS error (u32, from this station). This count may not include
 *	some packets with an FCS error due to TA corruption. Hence this counter
 *	might not be fully accurate.
 * @NL80211_STA_INFO_CONNECTED_TO_GATE: set to true if STA has a path to a
 *	mesh gate (u8, 0 or 1)
 * @NL80211_STA_INFO_TX_DURATION: aggregate PPDU duration for all frames
 *	sent to the station (u64, usec)
 * @NL80211_STA_INFO_AIRTIME_WEIGHT: current airtime weight for station (u16)
 * @NL80211_STA_INFO_AIRTIME_LINK_METRIC: airtime link metric for mesh station
 * @NL80211_STA_INFO_ASSOC_AT_BOOTTIME: Timestamp (CLOCK_BOOTTIME, nanoseconds)
 *	of STA's association
 * @NL80211_STA_INFO_CONNECTED_TO_AS: set to true if STA has a path to a
 *	authentication server (u8, 0 or 1)
 * @__NL80211_STA_INFO_AFTER_LAST: internal
 * @NL80211_STA_INFO_MAX: highest possible station info attribute
 */
enum nl80211_sta_info {
	__NL80211_STA_INFO_INVALID,
	NL80211_STA_INFO_INACTIVE_TIME,
	NL80211_STA_INFO_RX_BYTES,
	NL80211_STA_INFO_TX_BYTES,
	NL80211_STA_INFO_LLID,
	NL80211_STA_INFO_PLID,
	NL80211_STA_INFO_PLINK_STATE,
	NL80211_STA_INFO_SIGNAL,
	NL80211_STA_INFO_TX_BITRATE,
	NL80211_STA_INFO_RX_PACKETS,
	NL80211_STA_INFO_TX_PACKETS,
	NL80211_STA_INFO_TX_RETRIES,
	NL80211_STA_INFO_TX_FAILED,
	NL80211_STA_INFO_SIGNAL_AVG,
	NL80211_STA_INFO_RX_BITRATE,
	NL80211_STA_INFO_BSS_PARAM,
	NL80211_STA_INFO_CONNECTED_TIME,
	NL80211_STA_INFO_STA_FLAGS,
	NL80211_STA_INFO_BEACON_LOSS,
	NL80211_STA_INFO_T_OFFSET,
	NL80211_STA_INFO_LOCAL_PM,
	NL80211_STA_INFO_PEER_PM,
	NL80211_STA_INFO_NONPEER_PM,
	NL80211_STA_INFO_RX_BYTES64,
	NL80211_STA_INFO_TX_BYTES64,
	NL80211_STA_INFO_CHAIN_SIGNAL,
	NL80211_STA_INFO_CHAIN_SIGNAL_AVG,
	NL80211_STA_INFO_EXPECTED_THROUGHPUT,
	NL80211_STA_INFO_RX_DROP_MISC,
	NL80211_STA_INFO_BEACON_RX,
	NL80211_STA_INFO_BEACON_SIGNAL_AVG,
	NL80211_STA_INFO_TID_STATS,
	NL80211_STA_INFO_RX_DURATION,
	NL80211_STA_INFO_PAD,
	NL80211_STA_INFO_ACK_SIGNAL,
	NL80211_STA_INFO_ACK_SIGNAL_AVG,
	NL80211_STA_INFO_RX_MPDUS,
	NL80211_STA_INFO_FCS_ERROR_COUNT,
	NL80211_STA_INFO_CONNECTED_TO_GATE,
	NL80211_STA_INFO_TX_DURATION,
	NL80211_STA_INFO_AIRTIME_WEIGHT,
	NL80211_STA_INFO_AIRTIME_LINK_METRIC,
	NL80211_STA_INFO_ASSOC_AT_BOOTTIME,
	NL80211_STA_INFO_CONNECTED_TO_AS,

	/* keep last */
	__NL80211_STA_INFO_AFTER_LAST,
	NL80211_STA_INFO_MAX = __NL80211_STA_INFO_AFTER_LAST - 1
};

/* we renamed this - stay compatible */
#define NL80211_STA_INFO_DATA_ACK_SIGNAL_AVG NL80211_STA_INFO_ACK_SIGNAL_AVG


/**
 * enum nl80211_tid_stats - per TID statistics attributes
 * @__NL80211_TID_STATS_INVALID: attribute number 0 is reserved
 * @NL80211_TID_STATS_RX_MSDU: number of MSDUs received (u64)
 * @NL80211_TID_STATS_TX_MSDU: number of MSDUs transmitted (or
 *	attempted to transmit; u64)
 * @NL80211_TID_STATS_TX_MSDU_RETRIES: number of retries for
 *	transmitted MSDUs (not counting the first attempt; u64)
 * @NL80211_TID_STATS_TX_MSDU_FAILED: number of failed transmitted
 *	MSDUs (u64)
 * @NL80211_TID_STATS_PAD: attribute used for padding for 64-bit alignment
 * @NL80211_TID_STATS_TXQ_STATS: TXQ stats (nested attribute)
 * @NUM_NL80211_TID_STATS: number of attributes here
 * @NL80211_TID_STATS_MAX: highest numbered attribute here
 */
enum nl80211_tid_stats {
	__NL80211_TID_STATS_INVALID,
	NL80211_TID_STATS_RX_MSDU,
	NL80211_TID_STATS_TX_MSDU,
	NL80211_TID_STATS_TX_MSDU_RETRIES,
	NL80211_TID_STATS_TX_MSDU_FAILED,
	NL80211_TID_STATS_PAD,
	NL80211_TID_STATS_TXQ_STATS,

	/* keep last */
	NUM_NL80211_TID_STATS,
	NL80211_TID_STATS_MAX = NUM_NL80211_TID_STATS - 1
};

/**
 * enum nl80211_txq_stats - per TXQ statistics attributes
 * @__NL80211_TXQ_STATS_INVALID: attribute number 0 is reserved
 * @NUM_NL80211_TXQ_STATS: number of attributes here
 * @NL80211_TXQ_STATS_BACKLOG_BYTES: number of bytes currently backlogged
 * @NL80211_TXQ_STATS_BACKLOG_PACKETS: number of packets currently
 *      backlogged
 * @NL80211_TXQ_STATS_FLOWS: total number of new flows seen
 * @NL80211_TXQ_STATS_DROPS: total number of packet drops
 * @NL80211_TXQ_STATS_ECN_MARKS: total number of packet ECN marks
 * @NL80211_TXQ_STATS_OVERLIMIT: number of drops due to queue space overflow
 * @NL80211_TXQ_STATS_OVERMEMORY: number of drops due to memory limit overflow
 *      (only for per-phy stats)
 * @NL80211_TXQ_STATS_COLLISIONS: number of hash collisions
 * @NL80211_TXQ_STATS_TX_BYTES: total number of bytes dequeued from TXQ
 * @NL80211_TXQ_STATS_TX_PACKETS: total number of packets dequeued from TXQ
 * @NL80211_TXQ_STATS_MAX_FLOWS: number of flow buckets for PHY
 * @NL80211_TXQ_STATS_MAX: highest numbered attribute here
 */
enum nl80211_txq_stats {
	__NL80211_TXQ_STATS_INVALID,
	NL80211_TXQ_STATS_BACKLOG_BYTES,
	NL80211_TXQ_STATS_BACKLOG_PACKETS,
	NL80211_TXQ_STATS_FLOWS,
	NL80211_TXQ_STATS_DROPS,
	NL80211_TXQ_STATS_ECN_MARKS,
	NL80211_TXQ_STATS_OVERLIMIT,
	NL80211_TXQ_STATS_OVERMEMORY,
	NL80211_TXQ_STATS_COLLISIONS,
	NL80211_TXQ_STATS_TX_BYTES,
	NL80211_TXQ_STATS_TX_PACKETS,
	NL80211_TXQ_STATS_MAX_FLOWS,

	/* keep last */
	NUM_NL80211_TXQ_STATS,
	NL80211_TXQ_STATS_MAX = NUM_NL80211_TXQ_STATS - 1
};

/**
 * enum nl80211_mpath_flags - nl80211 mesh path flags
 *
 * @NL80211_MPATH_FLAG_ACTIVE: the mesh path is active
 * @NL80211_MPATH_FLAG_RESOLVING: the mesh path discovery process is running
 * @NL80211_MPATH_FLAG_SN_VALID: the mesh path contains a valid SN
 * @NL80211_MPATH_FLAG_FIXED: the mesh path has been manually set
 * @NL80211_MPATH_FLAG_RESOLVED: the mesh path discovery process succeeded
 */
enum nl80211_mpath_flags {
	NL80211_MPATH_FLAG_ACTIVE =	1<<0,
	NL80211_MPATH_FLAG_RESOLVING =	1<<1,
	NL80211_MPATH_FLAG_SN_VALID =	1<<2,
	NL80211_MPATH_FLAG_FIXED =	1<<3,
	NL80211_MPATH_FLAG_RESOLVED =	1<<4,
};

/**
 * enum nl80211_mpath_info - mesh path information
 *
 * These attribute types are used with %NL80211_ATTR_MPATH_INFO when getting
 * information about a mesh path.
 *
 * @__NL80211_MPATH_INFO_INVALID: attribute number 0 is reserved
 * @NL80211_MPATH_INFO_FRAME_QLEN: number of queued frames for this destination
 * @NL80211_MPATH_INFO_SN: destination sequence number
 * @NL80211_MPATH_INFO_METRIC: metric (cost) of this mesh path
 * @NL80211_MPATH_INFO_EXPTIME: expiration time for the path, in msec from now
 * @NL80211_MPATH_INFO_FLAGS: mesh path flags, enumerated in
 * 	&enum nl80211_mpath_flags;
 * @NL80211_MPATH_INFO_DISCOVERY_TIMEOUT: total path discovery timeout, in msec
 * @NL80211_MPATH_INFO_DISCOVERY_RETRIES: mesh path discovery retries
 * @NL80211_MPATH_INFO_HOP_COUNT: hop count to destination
 * @NL80211_MPATH_INFO_PATH_CHANGE: total number of path changes to destination
 * @NL80211_MPATH_INFO_MAX: highest mesh path information attribute number
 *	currently defined
 * @__NL80211_MPATH_INFO_AFTER_LAST: internal use
 */
enum nl80211_mpath_info {
	__NL80211_MPATH_INFO_INVALID,
	NL80211_MPATH_INFO_FRAME_QLEN,
	NL80211_MPATH_INFO_SN,
	NL80211_MPATH_INFO_METRIC,
	NL80211_MPATH_INFO_EXPTIME,
	NL80211_MPATH_INFO_FLAGS,
	NL80211_MPATH_INFO_DISCOVERY_TIMEOUT,
	NL80211_MPATH_INFO_DISCOVERY_RETRIES,
	NL80211_MPATH_INFO_HOP_COUNT,
	NL80211_MPATH_INFO_PATH_CHANGE,

	/* keep last */
	__NL80211_MPATH_INFO_AFTER_LAST,
	NL80211_MPATH_INFO_MAX = __NL80211_MPATH_INFO_AFTER_LAST - 1
};

/**
 * enum nl80211_band_iftype_attr - Interface type data attributes
 *
 * @__NL80211_BAND_IFTYPE_ATTR_INVALID: attribute number 0 is reserved
 * @NL80211_BAND_IFTYPE_ATTR_IFTYPES: nested attribute containing a flag attribute
 *     for each interface type that supports the band data
 * @NL80211_BAND_IFTYPE_ATTR_HE_CAP_MAC: HE MAC capabilities as in HE
 *     capabilities IE
 * @NL80211_BAND_IFTYPE_ATTR_HE_CAP_PHY: HE PHY capabilities as in HE
 *     capabilities IE
 * @NL80211_BAND_IFTYPE_ATTR_HE_CAP_MCS_SET: HE supported NSS/MCS as in HE
 *     capabilities IE
 * @NL80211_BAND_IFTYPE_ATTR_HE_CAP_PPE: HE PPE thresholds information as
 *     defined in HE capabilities IE
 * @NL80211_BAND_IFTYPE_ATTR_HE_6GHZ_CAPA: HE 6GHz band capabilities (__le16),
 *	given for all 6 GHz band channels
 * @NL80211_BAND_IFTYPE_ATTR_VENDOR_ELEMS: vendor element capabilities that are
 *	advertised on this band/for this iftype (binary)
 * @NL80211_BAND_IFTYPE_ATTR_EHT_CAP_MAC: EHT MAC capabilities as in EHT
 *	capabilities element
 * @NL80211_BAND_IFTYPE_ATTR_EHT_CAP_PHY: EHT PHY capabilities as in EHT
 *	capabilities element
 * @NL80211_BAND_IFTYPE_ATTR_EHT_CAP_MCS_SET: EHT supported NSS/MCS as in EHT
 *	capabilities element
 * @NL80211_BAND_IFTYPE_ATTR_EHT_CAP_PPE: EHT PPE thresholds information as
 *	defined in EHT capabilities element
 * @__NL80211_BAND_IFTYPE_ATTR_AFTER_LAST: internal use
 * @NL80211_BAND_IFTYPE_ATTR_MAX: highest band attribute currently defined
 */
enum nl80211_band_iftype_attr {
	__NL80211_BAND_IFTYPE_ATTR_INVALID,

	NL80211_BAND_IFTYPE_ATTR_IFTYPES,
	NL80211_BAND_IFTYPE_ATTR_HE_CAP_MAC,
	NL80211_BAND_IFTYPE_ATTR_HE_CAP_PHY,
	NL80211_BAND_IFTYPE_ATTR_HE_CAP_MCS_SET,
	NL80211_BAND_IFTYPE_ATTR_HE_CAP_PPE,
	NL80211_BAND_IFTYPE_ATTR_HE_6GHZ_CAPA,
	NL80211_BAND_IFTYPE_ATTR_VENDOR_ELEMS,
	NL80211_BAND_IFTYPE_ATTR_EHT_CAP_MAC,
	NL80211_BAND_IFTYPE_ATTR_EHT_CAP_PHY,
	NL80211_BAND_IFTYPE_ATTR_EHT_CAP_MCS_SET,
	NL80211_BAND_IFTYPE_ATTR_EHT_CAP_PPE,

	/* keep last */
	__NL80211_BAND_IFTYPE_ATTR_AFTER_LAST,
	NL80211_BAND_IFTYPE_ATTR_MAX = __NL80211_BAND_IFTYPE_ATTR_AFTER_LAST - 1
};

/**
 * enum nl80211_band_attr - band attributes
 * @__NL80211_BAND_ATTR_INVALID: attribute number 0 is reserved
 * @NL80211_BAND_ATTR_FREQS: supported frequencies in this band,
 *	an array of nested frequency attributes
 * @NL80211_BAND_ATTR_RATES: supported bitrates in this band,
 *	an array of nested bitrate attributes
 * @NL80211_BAND_ATTR_HT_MCS_SET: 16-byte attribute containing the MCS set as
 *	defined in 802.11n
 * @NL80211_BAND_ATTR_HT_CAPA: HT capabilities, as in the HT information IE
 * @NL80211_BAND_ATTR_HT_AMPDU_FACTOR: A-MPDU factor, as in 11n
 * @NL80211_BAND_ATTR_HT_AMPDU_DENSITY: A-MPDU density, as in 11n
 * @NL80211_BAND_ATTR_VHT_MCS_SET: 32-byte attribute containing the MCS set as
 *	defined in 802.11ac
 * @NL80211_BAND_ATTR_VHT_CAPA: VHT capabilities, as in the HT information IE
 * @NL80211_BAND_ATTR_IFTYPE_DATA: nested array attribute, with each entry using
 *	attributes from &enum nl80211_band_iftype_attr
 * @NL80211_BAND_ATTR_EDMG_CHANNELS: bitmap that indicates the 2.16 GHz
 *	channel(s) that are allowed to be used for EDMG transmissions.
 *	Defined by IEEE P802.11ay/D4.0 section 9.4.2.251.
 * @NL80211_BAND_ATTR_EDMG_BW_CONFIG: Channel BW Configuration subfield encodes
 *	the allowed channel bandwidth configurations.
 *	Defined by IEEE P802.11ay/D4.0 section 9.4.2.251, Table 13.
 * @NL80211_BAND_ATTR_MAX: highest band attribute currently defined
 * @__NL80211_BAND_ATTR_AFTER_LAST: internal use
 */
enum nl80211_band_attr {
	__NL80211_BAND_ATTR_INVALID,
	NL80211_BAND_ATTR_FREQS,
	NL80211_BAND_ATTR_RATES,

	NL80211_BAND_ATTR_HT_MCS_SET,
	NL80211_BAND_ATTR_HT_CAPA,
	NL80211_BAND_ATTR_HT_AMPDU_FACTOR,
	NL80211_BAND_ATTR_HT_AMPDU_DENSITY,

	NL80211_BAND_ATTR_VHT_MCS_SET,
	NL80211_BAND_ATTR_VHT_CAPA,
	NL80211_BAND_ATTR_IFTYPE_DATA,

	NL80211_BAND_ATTR_EDMG_CHANNELS,
	NL80211_BAND_ATTR_EDMG_BW_CONFIG,

	/* keep last */
	__NL80211_BAND_ATTR_AFTER_LAST,
	NL80211_BAND_ATTR_MAX = __NL80211_BAND_ATTR_AFTER_LAST - 1
};

#define NL80211_BAND_ATTR_HT_CAPA NL80211_BAND_ATTR_HT_CAPA

/**
 * enum nl80211_wmm_rule - regulatory wmm rule
 *
 * @__NL80211_WMMR_INVALID: attribute number 0 is reserved
 * @NL80211_WMMR_CW_MIN: Minimum contention window slot.
 * @NL80211_WMMR_CW_MAX: Maximum contention window slot.
 * @NL80211_WMMR_AIFSN: Arbitration Inter Frame Space.
 * @NL80211_WMMR_TXOP: Maximum allowed tx operation time.
 * @nl80211_WMMR_MAX: highest possible wmm rule.
 * @__NL80211_WMMR_LAST: Internal use.
 */
enum nl80211_wmm_rule {
	__NL80211_WMMR_INVALID,
	NL80211_WMMR_CW_MIN,
	NL80211_WMMR_CW_MAX,
	NL80211_WMMR_AIFSN,
	NL80211_WMMR_TXOP,

	/* keep last */
	__NL80211_WMMR_LAST,
	NL80211_WMMR_MAX = __NL80211_WMMR_LAST - 1
};

/**
 * enum nl80211_frequency_attr - frequency attributes
 * @__NL80211_FREQUENCY_ATTR_INVALID: attribute number 0 is reserved
 * @NL80211_FREQUENCY_ATTR_FREQ: Frequency in MHz
 * @NL80211_FREQUENCY_ATTR_DISABLED: Channel is disabled in current
 *	regulatory domain.
 * @NL80211_FREQUENCY_ATTR_NO_IR: no mechanisms that initiate radiation
 * 	are permitted on this channel, this includes sending probe
 * 	requests, or modes of operation that require beaconing.
 * @NL80211_FREQUENCY_ATTR_RADAR: Radar detection is mandatory
 *	on this channel in current regulatory domain.
 * @NL80211_FREQUENCY_ATTR_MAX_TX_POWER: Maximum transmission power in mBm
 *	(100 * dBm).
 * @NL80211_FREQUENCY_ATTR_DFS_STATE: current state for DFS
 *	(enum nl80211_dfs_state)
 * @NL80211_FREQUENCY_ATTR_DFS_TIME: time in miliseconds for how long
 *	this channel is in this DFS state.
 * @NL80211_FREQUENCY_ATTR_NO_HT40_MINUS: HT40- isn't possible with this
 *	channel as the control channel
 * @NL80211_FREQUENCY_ATTR_NO_HT40_PLUS: HT40+ isn't possible with this
 *	channel as the control channel
 * @NL80211_FREQUENCY_ATTR_NO_80MHZ: any 80 MHz channel using this channel
 *	as the primary or any of the secondary channels isn't possible,
 *	this includes 80+80 channels
 * @NL80211_FREQUENCY_ATTR_NO_160MHZ: any 160 MHz (but not 80+80) channel
 *	using this channel as the primary or any of the secondary channels
 *	isn't possible
 * @NL80211_FREQUENCY_ATTR_DFS_CAC_TIME: DFS CAC time in milliseconds.
 * @NL80211_FREQUENCY_ATTR_INDOOR_ONLY: Only indoor use is permitted on this
 *	channel. A channel that has the INDOOR_ONLY attribute can only be
 *	used when there is a clear assessment that the device is operating in
 *	an indoor surroundings, i.e., it is connected to AC power (and not
 *	through portable DC inverters) or is under the control of a master
 *	that is acting as an AP and is connected to AC power.
 * @NL80211_FREQUENCY_ATTR_IR_CONCURRENT: IR operation is allowed on this
 *	channel if it's connected concurrently to a BSS on the same channel on
 *	the 2 GHz band or to a channel in the same UNII band (on the 5 GHz
 *	band), and IEEE80211_CHAN_RADAR is not set. Instantiating a GO or TDLS
 *	off-channel on a channel that has the IR_CONCURRENT attribute set can be
 *	done when there is a clear assessment that the device is operating under
 *	the guidance of an authorized master, i.e., setting up a GO or TDLS
 *	off-channel while the device is also connected to an AP with DFS and
 *	radar detection on the UNII band (it is up to user-space, i.e.,
 *	wpa_supplicant to perform the required verifications). Using this
 *	attribute for IR is disallowed for master interfaces (IBSS, AP).
 * @NL80211_FREQUENCY_ATTR_NO_20MHZ: 20 MHz operation is not allowed
 *	on this channel in current regulatory domain.
 * @NL80211_FREQUENCY_ATTR_NO_10MHZ: 10 MHz operation is not allowed
 *	on this channel in current regulatory domain.
 * @NL80211_FREQUENCY_ATTR_WMM: this channel has wmm limitations.
 *	This is a nested attribute that contains the wmm limitation per AC.
 *	(see &enum nl80211_wmm_rule)
 * @NL80211_FREQUENCY_ATTR_NO_HE: HE operation is not allowed on this channel
 *	in current regulatory domain.
 * @NL80211_FREQUENCY_ATTR_OFFSET: frequency offset in KHz
 * @NL80211_FREQUENCY_ATTR_1MHZ: 1 MHz operation is allowed
 *	on this channel in current regulatory domain.
 * @NL80211_FREQUENCY_ATTR_2MHZ: 2 MHz operation is allowed
 *	on this channel in current regulatory domain.
 * @NL80211_FREQUENCY_ATTR_4MHZ: 4 MHz operation is allowed
 *	on this channel in current regulatory domain.
 * @NL80211_FREQUENCY_ATTR_8MHZ: 8 MHz operation is allowed
 *	on this channel in current regulatory domain.
 * @NL80211_FREQUENCY_ATTR_16MHZ: 16 MHz operation is allowed
 *	on this channel in current regulatory domain.
 * @NL80211_FREQUENCY_ATTR_NO_320MHZ: any 320 MHz channel using this channel
 *	as the primary or any of the secondary channels isn't possible
 * @NL80211_FREQUENCY_ATTR_NO_EHT: EHT operation is not allowed on this channel
 *	in current regulatory domain.
 * @NL80211_FREQUENCY_ATTR_MAX: highest frequency attribute number
 *	currently defined
 * @__NL80211_FREQUENCY_ATTR_AFTER_LAST: internal use
 *
 * See https://apps.fcc.gov/eas/comments/GetPublishedDocument.html?id=327&tn=528122
 * for more information on the FCC description of the relaxations allowed
 * by NL80211_FREQUENCY_ATTR_INDOOR_ONLY and
 * NL80211_FREQUENCY_ATTR_IR_CONCURRENT.
 */
enum nl80211_frequency_attr {
	__NL80211_FREQUENCY_ATTR_INVALID,
	NL80211_FREQUENCY_ATTR_FREQ,
	NL80211_FREQUENCY_ATTR_DISABLED,
	NL80211_FREQUENCY_ATTR_NO_IR,
	__NL80211_FREQUENCY_ATTR_NO_IBSS,
	NL80211_FREQUENCY_ATTR_RADAR,
	NL80211_FREQUENCY_ATTR_MAX_TX_POWER,
	NL80211_FREQUENCY_ATTR_DFS_STATE,
	NL80211_FREQUENCY_ATTR_DFS_TIME,
	NL80211_FREQUENCY_ATTR_NO_HT40_MINUS,
	NL80211_FREQUENCY_ATTR_NO_HT40_PLUS,
	NL80211_FREQUENCY_ATTR_NO_80MHZ,
	NL80211_FREQUENCY_ATTR_NO_160MHZ,
	NL80211_FREQUENCY_ATTR_DFS_CAC_TIME,
	NL80211_FREQUENCY_ATTR_INDOOR_ONLY,
	NL80211_FREQUENCY_ATTR_IR_CONCURRENT,
	NL80211_FREQUENCY_ATTR_NO_20MHZ,
	NL80211_FREQUENCY_ATTR_NO_10MHZ,
	NL80211_FREQUENCY_ATTR_WMM,
	NL80211_FREQUENCY_ATTR_NO_HE,
	NL80211_FREQUENCY_ATTR_OFFSET,
	NL80211_FREQUENCY_ATTR_1MHZ,
	NL80211_FREQUENCY_ATTR_2MHZ,
	NL80211_FREQUENCY_ATTR_4MHZ,
	NL80211_FREQUENCY_ATTR_8MHZ,
	NL80211_FREQUENCY_ATTR_16MHZ,
	NL80211_FREQUENCY_ATTR_NO_320MHZ,
	NL80211_FREQUENCY_ATTR_NO_EHT,

	/* keep last */
	__NL80211_FREQUENCY_ATTR_AFTER_LAST,
	NL80211_FREQUENCY_ATTR_MAX = __NL80211_FREQUENCY_ATTR_AFTER_LAST - 1
};

#define NL80211_FREQUENCY_ATTR_MAX_TX_POWER NL80211_FREQUENCY_ATTR_MAX_TX_POWER
#define NL80211_FREQUENCY_ATTR_PASSIVE_SCAN	NL80211_FREQUENCY_ATTR_NO_IR
#define NL80211_FREQUENCY_ATTR_NO_IBSS		NL80211_FREQUENCY_ATTR_NO_IR
#define NL80211_FREQUENCY_ATTR_NO_IR		NL80211_FREQUENCY_ATTR_NO_IR
#define NL80211_FREQUENCY_ATTR_GO_CONCURRENT \
					NL80211_FREQUENCY_ATTR_IR_CONCURRENT

/**
 * enum nl80211_bitrate_attr - bitrate attributes
 * @__NL80211_BITRATE_ATTR_INVALID: attribute number 0 is reserved
 * @NL80211_BITRATE_ATTR_RATE: Bitrate in units of 100 kbps
 * @NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE: Short preamble supported
 *	in 2.4 GHz band.
 * @NL80211_BITRATE_ATTR_MAX: highest bitrate attribute number
 *	currently defined
 * @__NL80211_BITRATE_ATTR_AFTER_LAST: internal use
 */
enum nl80211_bitrate_attr {
	__NL80211_BITRATE_ATTR_INVALID,
	NL80211_BITRATE_ATTR_RATE,
	NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE,

	/* keep last */
	__NL80211_BITRATE_ATTR_AFTER_LAST,
	NL80211_BITRATE_ATTR_MAX = __NL80211_BITRATE_ATTR_AFTER_LAST - 1
};

/**
 * enum nl80211_initiator - Indicates the initiator of a reg domain request
 * @NL80211_REGDOM_SET_BY_CORE: Core queried CRDA for a dynamic world
 * 	regulatory domain.
 * @NL80211_REGDOM_SET_BY_USER: User asked the wireless core to set the
 * 	regulatory domain.
 * @NL80211_REGDOM_SET_BY_DRIVER: a wireless drivers has hinted to the
 * 	wireless core it thinks its knows the regulatory domain we should be in.
 * @NL80211_REGDOM_SET_BY_COUNTRY_IE: the wireless core has received an
 * 	802.11 country information element with regulatory information it
 * 	thinks we should consider. cfg80211 only processes the country
 *	code from the IE, and relies on the regulatory domain information
 *	structure passed by userspace (CRDA) from our wireless-regdb.
 *	If a channel is enabled but the country code indicates it should
 *	be disabled we disable the channel and re-enable it upon disassociation.
 */
enum nl80211_reg_initiator {
	NL80211_REGDOM_SET_BY_CORE,
	NL80211_REGDOM_SET_BY_USER,
	NL80211_REGDOM_SET_BY_DRIVER,
	NL80211_REGDOM_SET_BY_COUNTRY_IE,
};

/**
 * enum nl80211_reg_type - specifies the type of regulatory domain
 * @NL80211_REGDOM_TYPE_COUNTRY: the regulatory domain set is one that pertains
 *	to a specific country. When this is set you can count on the
 *	ISO / IEC 3166 alpha2 country code being valid.
 * @NL80211_REGDOM_TYPE_WORLD: the regulatory set domain is the world regulatory
 * 	domain.
 * @NL80211_REGDOM_TYPE_CUSTOM_WORLD: the regulatory domain set is a custom
 * 	driver specific world regulatory domain. These do not apply system-wide
 * 	and are only applicable to the individual devices which have requested
 * 	them to be applied.
 * @NL80211_REGDOM_TYPE_INTERSECTION: the regulatory domain set is the product
 *	of an intersection between two regulatory domains -- the previously
 *	set regulatory domain on the system and the last accepted regulatory
 *	domain request to be processed.
 */
enum nl80211_reg_type {
	NL80211_REGDOM_TYPE_COUNTRY,
	NL80211_REGDOM_TYPE_WORLD,
	NL80211_REGDOM_TYPE_CUSTOM_WORLD,
	NL80211_REGDOM_TYPE_INTERSECTION,
};

/**
 * enum nl80211_reg_rule_attr - regulatory rule attributes
 * @__NL80211_REG_RULE_ATTR_INVALID: attribute number 0 is reserved
 * @NL80211_ATTR_REG_RULE_FLAGS: a set of flags which specify additional
 * 	considerations for a given frequency range. These are the
 * 	&enum nl80211_reg_rule_flags.
 * @NL80211_ATTR_FREQ_RANGE_START: starting frequencry for the regulatory
 * 	rule in KHz. This is not a center of frequency but an actual regulatory
 * 	band edge.
 * @NL80211_ATTR_FREQ_RANGE_END: ending frequency for the regulatory rule
 * 	in KHz. This is not a center a frequency but an actual regulatory
 * 	band edge.
 * @NL80211_ATTR_FREQ_RANGE_MAX_BW: maximum allowed bandwidth for this
 *	frequency range, in KHz.
 * @NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN: the maximum allowed antenna gain
 * 	for a given frequency range. The value is in mBi (100 * dBi).
 * 	If you don't have one then don't send this.
 * @NL80211_ATTR_POWER_RULE_MAX_EIRP: the maximum allowed EIRP for
 * 	a given frequency range. The value is in mBm (100 * dBm).
 * @NL80211_ATTR_DFS_CAC_TIME: DFS CAC time in milliseconds.
 *	If not present or 0 default CAC time will be used.
 * @NL80211_REG_RULE_ATTR_MAX: highest regulatory rule attribute number
 *	currently defined
 * @__NL80211_REG_RULE_ATTR_AFTER_LAST: internal use
 */
enum nl80211_reg_rule_attr {
	__NL80211_REG_RULE_ATTR_INVALID,
	NL80211_ATTR_REG_RULE_FLAGS,

	NL80211_ATTR_FREQ_RANGE_START,
	NL80211_ATTR_FREQ_RANGE_END,
	NL80211_ATTR_FREQ_RANGE_MAX_BW,

	NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN,
	NL80211_ATTR_POWER_RULE_MAX_EIRP,

	NL80211_ATTR_DFS_CAC_TIME,

	/* keep last */
	__NL80211_REG_RULE_ATTR_AFTER_LAST,
	NL80211_REG_RULE_ATTR_MAX = __NL80211_REG_RULE_ATTR_AFTER_LAST - 1
};

/**
 * enum nl80211_sched_scan_match_attr - scheduled scan match attributes
 * @__NL80211_SCHED_SCAN_MATCH_ATTR_INVALID: attribute number 0 is reserved
 * @NL80211_SCHED_SCAN_MATCH_ATTR_SSID: SSID to be used for matching,
 *	only report BSS with matching SSID.
 *	(This cannot be used together with BSSID.)
 * @NL80211_SCHED_SCAN_MATCH_ATTR_RSSI: RSSI threshold (in dBm) for reporting a
 *	BSS in scan results. Filtering is turned off if not specified. Note that
 *	if this attribute is in a match set of its own, then it is treated as
 *	the default value for all matchsets with an SSID, rather than being a
 *	matchset of its own without an RSSI filter. This is due to problems with
 *	how this API was implemented in the past. Also, due to the same problem,
 *	the only way to create a matchset with only an RSSI filter (with this
 *	attribute) is if there's only a single matchset with the RSSI attribute.
 * @NL80211_SCHED_SCAN_MATCH_ATTR_RELATIVE_RSSI: Flag indicating whether
 *	%NL80211_SCHED_SCAN_MATCH_ATTR_RSSI to be used as absolute RSSI or
 *	relative to current bss's RSSI.
 * @NL80211_SCHED_SCAN_MATCH_ATTR_RSSI_ADJUST: When present the RSSI level for
 *	BSS-es in the specified band is to be adjusted before doing
 *	RSSI-based BSS selection. The attribute value is a packed structure
 *	value as specified by &struct nl80211_bss_select_rssi_adjust.
 * @NL80211_SCHED_SCAN_MATCH_ATTR_BSSID: BSSID to be used for matching
 *	(this cannot be used together with SSID).
 * @NL80211_SCHED_SCAN_MATCH_PER_BAND_RSSI: Nested attribute that carries the
 *	band specific minimum rssi thresholds for the bands defined in
 *	enum nl80211_band. The minimum rssi threshold value(s32) specific to a
 *	band shall be encapsulated in attribute with type value equals to one
 *	of the NL80211_BAND_* defined in enum nl80211_band. For example, the
 *	minimum rssi threshold value for 2.4GHZ band shall be encapsulated
 *	within an attribute of type NL80211_BAND_2GHZ. And one or more of such
 *	attributes will be nested within this attribute.
 * @NL80211_SCHED_SCAN_MATCH_ATTR_MAX: highest scheduled scan filter
 *	attribute number currently defined
 * @__NL80211_SCHED_SCAN_MATCH_ATTR_AFTER_LAST: internal use
 */
enum nl80211_sched_scan_match_attr {
	__NL80211_SCHED_SCAN_MATCH_ATTR_INVALID,

	NL80211_SCHED_SCAN_MATCH_ATTR_SSID,
	NL80211_SCHED_SCAN_MATCH_ATTR_RSSI,
	NL80211_SCHED_SCAN_MATCH_ATTR_RELATIVE_RSSI,
	NL80211_SCHED_SCAN_MATCH_ATTR_RSSI_ADJUST,
	NL80211_SCHED_SCAN_MATCH_ATTR_BSSID,
	NL80211_SCHED_SCAN_MATCH_PER_BAND_RSSI,

	/* keep last */
	__NL80211_SCHED_SCAN_MATCH_ATTR_AFTER_LAST,
	NL80211_SCHED_SCAN_MATCH_ATTR_MAX =
		__NL80211_SCHED_SCAN_MATCH_ATTR_AFTER_LAST - 1
};

/* only for backward compatibility */
#define NL80211_ATTR_SCHED_SCAN_MATCH_SSID NL80211_SCHED_SCAN_MATCH_ATTR_SSID

/**
 * enum nl80211_reg_rule_flags - regulatory rule flags
 *
 * @NL80211_RRF_NO_OFDM: OFDM modulation not allowed
 * @NL80211_RRF_NO_CCK: CCK modulation not allowed
 * @NL80211_RRF_NO_INDOOR: indoor operation not allowed
 * @NL80211_RRF_NO_OUTDOOR: outdoor operation not allowed
 * @NL80211_RRF_DFS: DFS support is required to be used
 * @NL80211_RRF_PTP_ONLY: this is only for Point To Point links
 * @NL80211_RRF_PTMP_ONLY: this is only for Point To Multi Point links
 * @NL80211_RRF_NO_IR: no mechanisms that initiate radiation are allowed,
 * 	this includes probe requests or modes of operation that require
 * 	beaconing.
 * @NL80211_RRF_AUTO_BW: maximum available bandwidth should be calculated
 *	base on contiguous rules and wider channels will be allowed to cross
 *	multiple contiguous/overlapping frequency ranges.
 * @NL80211_RRF_IR_CONCURRENT: See %NL80211_FREQUENCY_ATTR_IR_CONCURRENT
 * @NL80211_RRF_NO_HT40MINUS: channels can't be used in HT40- operation
 * @NL80211_RRF_NO_HT40PLUS: channels can't be used in HT40+ operation
 * @NL80211_RRF_NO_80MHZ: 80MHz operation not allowed
 * @NL80211_RRF_NO_160MHZ: 160MHz operation not allowed
 * @NL80211_RRF_NO_HE: HE operation not allowed
 * @NL80211_RRF_NO_320MHZ: 320MHz operation not allowed
 */
enum nl80211_reg_rule_flags {
	NL80211_RRF_NO_OFDM		= 1<<0,
	NL80211_RRF_NO_CCK		= 1<<1,
	NL80211_RRF_NO_INDOOR		= 1<<2,
	NL80211_RRF_NO_OUTDOOR		= 1<<3,
	NL80211_RRF_DFS			= 1<<4,
	NL80211_RRF_PTP_ONLY		= 1<<5,
	NL80211_RRF_PTMP_ONLY		= 1<<6,
	NL80211_RRF_NO_IR		= 1<<7,
	__NL80211_RRF_NO_IBSS		= 1<<8,
	NL80211_RRF_AUTO_BW		= 1<<11,
	NL80211_RRF_IR_CONCURRENT	= 1<<12,
	NL80211_RRF_NO_HT40MINUS	= 1<<13,
	NL80211_RRF_NO_HT40PLUS		= 1<<14,
	NL80211_RRF_NO_80MHZ		= 1<<15,
	NL80211_RRF_NO_160MHZ		= 1<<16,
	NL80211_RRF_NO_HE		= 1<<17,
	NL80211_RRF_NO_320MHZ		= 1<<18,
};

#define NL80211_RRF_PASSIVE_SCAN	NL80211_RRF_NO_IR
#define NL80211_RRF_NO_IBSS		NL80211_RRF_NO_IR
#define NL80211_RRF_NO_IR		NL80211_RRF_NO_IR
#define NL80211_RRF_NO_HT40		(NL80211_RRF_NO_HT40MINUS |\
					 NL80211_RRF_NO_HT40PLUS)
#define NL80211_RRF_GO_CONCURRENT	NL80211_RRF_IR_CONCURRENT

/* For backport compatibility with older userspace */
#define NL80211_RRF_NO_IR_ALL		(NL80211_RRF_NO_IR | __NL80211_RRF_NO_IBSS)

/**
 * enum nl80211_dfs_regions - regulatory DFS regions
 *
 * @NL80211_DFS_UNSET: Country has no DFS master region specified
 * @NL80211_DFS_FCC: Country follows DFS master rules from FCC
 * @NL80211_DFS_ETSI: Country follows DFS master rules from ETSI
 * @NL80211_DFS_JP: Country follows DFS master rules from JP/MKK/Telec
 */
enum nl80211_dfs_regions {
	NL80211_DFS_UNSET	= 0,
	NL80211_DFS_FCC		= 1,
	NL80211_DFS_ETSI	= 2,
	NL80211_DFS_JP		= 3,
};

/**
 * enum nl80211_user_reg_hint_type - type of user regulatory hint
 *
 * @NL80211_USER_REG_HINT_USER: a user sent the hint. This is always
 *	assumed if the attribute is not set.
 * @NL80211_USER_REG_HINT_CELL_BASE: the hint comes from a cellular
 *	base station. Device drivers that have been tested to work
 *	properly to support this type of hint can enable these hints
 *	by setting the NL80211_FEATURE_CELL_BASE_REG_HINTS feature
 *	capability on the struct wiphy. The wireless core will
 *	ignore all cell base station hints until at least one device
 *	present has been registered with the wireless core that
 *	has listed NL80211_FEATURE_CELL_BASE_REG_HINTS as a
 *	supported feature.
 * @NL80211_USER_REG_HINT_INDOOR: a user sent an hint indicating that the
 *	platform is operating in an indoor environment.
 */
enum nl80211_user_reg_hint_type {
	NL80211_USER_REG_HINT_USER	= 0,
	NL80211_USER_REG_HINT_CELL_BASE = 1,
	NL80211_USER_REG_HINT_INDOOR    = 2,
};

/**
 * enum nl80211_survey_info - survey information
 *
 * These attribute types are used with %NL80211_ATTR_SURVEY_INFO
 * when getting information about a survey.
 *
 * @__NL80211_SURVEY_INFO_INVALID: attribute number 0 is reserved
 * @NL80211_SURVEY_INFO_FREQUENCY: center frequency of channel
 * @NL80211_SURVEY_INFO_NOISE: noise level of channel (u8, dBm)
 * @NL80211_SURVEY_INFO_IN_USE: channel is currently being used
 * @NL80211_SURVEY_INFO_TIME: amount of time (in ms) that the radio
 *	was turned on (on channel or globally)
 * @NL80211_SURVEY_INFO_TIME_BUSY: amount of the time the primary
 *	channel was sensed busy (either due to activity or energy detect)
 * @NL80211_SURVEY_INFO_TIME_EXT_BUSY: amount of time the extension
 *	channel was sensed busy
 * @NL80211_SURVEY_INFO_TIME_RX: amount of time the radio spent
 *	receiving data (on channel or globally)
 * @NL80211_SURVEY_INFO_TIME_TX: amount of time the radio spent
 *	transmitting data (on channel or globally)
 * @NL80211_SURVEY_INFO_TIME_SCAN: time the radio spent for scan
 *	(on this channel or globally)
 * @NL80211_SURVEY_INFO_PAD: attribute used for padding for 64-bit alignment
 * @NL80211_SURVEY_INFO_TIME_BSS_RX: amount of time the radio spent
 *	receiving frames destined to the local BSS
 * @NL80211_SURVEY_INFO_MAX: highest survey info attribute number
 *	currently defined
 * @NL80211_SURVEY_INFO_FREQUENCY_OFFSET: center frequency offset in KHz
 * @__NL80211_SURVEY_INFO_AFTER_LAST: internal use
 */
enum nl80211_survey_info {
	__NL80211_SURVEY_INFO_INVALID,
	NL80211_SURVEY_INFO_FREQUENCY,
	NL80211_SURVEY_INFO_NOISE,
	NL80211_SURVEY_INFO_IN_USE,
	NL80211_SURVEY_INFO_TIME,
	NL80211_SURVEY_INFO_TIME_BUSY,
	NL80211_SURVEY_INFO_TIME_EXT_BUSY,
	NL80211_SURVEY_INFO_TIME_RX,
	NL80211_SURVEY_INFO_TIME_TX,
	NL80211_SURVEY_INFO_TIME_SCAN,
	NL80211_SURVEY_INFO_PAD,
	NL80211_SURVEY_INFO_TIME_BSS_RX,
	NL80211_SURVEY_INFO_FREQUENCY_OFFSET,

	/* keep last */
	__NL80211_SURVEY_INFO_AFTER_LAST,
	NL80211_SURVEY_INFO_MAX = __NL80211_SURVEY_INFO_AFTER_LAST - 1
};

/* keep old names for compatibility */
#define NL80211_SURVEY_INFO_CHANNEL_TIME		NL80211_SURVEY_INFO_TIME
#define NL80211_SURVEY_INFO_CHANNEL_TIME_BUSY		NL80211_SURVEY_INFO_TIME_BUSY
#define NL80211_SURVEY_INFO_CHANNEL_TIME_EXT_BUSY	NL80211_SURVEY_INFO_TIME_EXT_BUSY
#define NL80211_SURVEY_INFO_CHANNEL_TIME_RX		NL80211_SURVEY_INFO_TIME_RX
#define NL80211_SURVEY_INFO_CHANNEL_TIME_TX		NL80211_SURVEY_INFO_TIME_TX

/**
 * enum nl80211_mntr_flags - monitor configuration flags
 *
 * Monitor configuration flags.
 *
 * @__NL80211_MNTR_FLAG_INVALID: reserved
 *
 * @NL80211_MNTR_FLAG_FCSFAIL: pass frames with bad FCS
 * @NL80211_MNTR_FLAG_PLCPFAIL: pass frames with bad PLCP
 * @NL80211_MNTR_FLAG_CONTROL: pass control frames
 * @NL80211_MNTR_FLAG_OTHER_BSS: disable BSSID filtering
 * @NL80211_MNTR_FLAG_COOK_FRAMES: report frames after processing.
 *	overrides all other flags.
 * @NL80211_MNTR_FLAG_ACTIVE: use the configured MAC address
 *	and ACK incoming unicast packets.
 *
 * @__NL80211_MNTR_FLAG_AFTER_LAST: internal use
 * @NL80211_MNTR_FLAG_MAX: highest possible monitor flag
 */
enum nl80211_mntr_flags {
	__NL80211_MNTR_FLAG_INVALID,
	NL80211_MNTR_FLAG_FCSFAIL,
	NL80211_MNTR_FLAG_PLCPFAIL,
	NL80211_MNTR_FLAG_CONTROL,
	NL80211_MNTR_FLAG_OTHER_BSS,
	NL80211_MNTR_FLAG_COOK_FRAMES,
	NL80211_MNTR_FLAG_ACTIVE,

	/* keep last */
	__NL80211_MNTR_FLAG_AFTER_LAST,
	NL80211_MNTR_FLAG_MAX = __NL80211_MNTR_FLAG_AFTER_LAST - 1
};

/**
 * enum nl80211_mesh_power_mode - mesh power save modes
 *
 * @NL80211_MESH_POWER_UNKNOWN: The mesh power mode of the mesh STA is
 *	not known or has not been set yet.
 * @NL80211_MESH_POWER_ACTIVE: Active mesh power mode. The mesh STA is
 *	in Awake state all the time.
 * @NL80211_MESH_POWER_LIGHT_SLEEP: Light sleep mode. The mesh STA will
 *	alternate between Active and Doze states, but will wake up for
 *	neighbor's beacons.
 * @NL80211_MESH_POWER_DEEP_SLEEP: Deep sleep mode. The mesh STA will
 *	alternate between Active and Doze states, but may not wake up
 *	for neighbor's beacons.
 *
 * @__NL80211_MESH_POWER_AFTER_LAST - internal use
 * @NL80211_MESH_POWER_MAX - highest possible power save level
 */

enum nl80211_mesh_power_mode {
	NL80211_MESH_POWER_UNKNOWN,
	NL80211_MESH_POWER_ACTIVE,
	NL80211_MESH_POWER_LIGHT_SLEEP,
	NL80211_MESH_POWER_DEEP_SLEEP,

	__NL80211_MESH_POWER_AFTER_LAST,
	NL80211_MESH_POWER_MAX = __NL80211_MESH_POWER_AFTER_LAST - 1
};

/**
 * enum nl80211_meshconf_params - mesh configuration parameters
 *
 * Mesh configuration parameters. These can be changed while the mesh is
 * active.
 *
 * @__NL80211_MESHCONF_INVALID: internal use
 *
 * @NL80211_MESHCONF_RETRY_TIMEOUT: specifies the initial retry timeout in
 *	millisecond units, used by the Peer Link Open message
 *
 * @NL80211_MESHCONF_CONFIRM_TIMEOUT: specifies the initial confirm timeout, in
 *	millisecond units, used by the peer link management to close a peer link
 *
 * @NL80211_MESHCONF_HOLDING_TIMEOUT: specifies the holding timeout, in
 *	millisecond units
 *
 * @NL80211_MESHCONF_MAX_PEER_LINKS: maximum number of peer links allowed
 *	on this mesh interface
 *
 * @NL80211_MESHCONF_MAX_RETRIES: specifies the maximum number of peer link
 *	open retries that can be sent to establish a new peer link instance in a
 *	mesh
 *
 * @NL80211_MESHCONF_TTL: specifies the value of TTL field set at a source mesh
 *	point.
 *
 * @NL80211_MESHCONF_AUTO_OPEN_PLINKS: whether we should automatically open
 *	peer links when we detect compatible mesh peers. Disabled if
 *	@NL80211_MESH_SETUP_USERSPACE_MPM or @NL80211_MESH_SETUP_USERSPACE_AMPE are
 *	set.
 *
 * @NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES: the number of action frames
 *	containing a PREQ that an MP can send to a particular destination (path
 *	target)
 *
 * @NL80211_MESHCONF_PATH_REFRESH_TIME: how frequently to refresh mesh paths
 *	(in milliseconds)
 *
 * @NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT: minimum length of time to wait
 *	until giving up on a path discovery (in milliseconds)
 *
 * @NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT: The time (in TUs) for which mesh
 *	points receiving a PREQ shall consider the forwarding information from
 *	the root to be valid. (TU = time unit)
 *
 * @NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL: The minimum interval of time (in
 *	TUs) during which an MP can send only one action frame containing a PREQ
 *	reference element
 *
 * @NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME: The interval of time (in TUs)
 *	that it takes for an HWMP information element to propagate across the
 *	mesh
 *
 * @NL80211_MESHCONF_HWMP_ROOTMODE: whether root mode is enabled or not
 *
 * @NL80211_MESHCONF_ELEMENT_TTL: specifies the value of TTL field set at a
 *	source mesh point for path selection elements.
 *
 * @NL80211_MESHCONF_HWMP_RANN_INTERVAL:  The interval of time (in TUs) between
 *	root announcements are transmitted.
 *
 * @NL80211_MESHCONF_GATE_ANNOUNCEMENTS: Advertise that this mesh station has
 *	access to a broader network beyond the MBSS.  This is done via Root
 *	Announcement frames.
 *
 * @NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL: The minimum interval of time (in
 *	TUs) during which a mesh STA can send only one Action frame containing a
 *	PERR element.
 *
 * @NL80211_MESHCONF_FORWARDING: set Mesh STA as forwarding or non-forwarding
 *	or forwarding entity (default is TRUE - forwarding entity)
 *
 * @NL80211_MESHCONF_RSSI_THRESHOLD: RSSI threshold in dBm. This specifies the
 *	threshold for average signal strength of candidate station to establish
 *	a peer link.
 *
 * @NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR: maximum number of neighbors
 *	to synchronize to for 11s default synchronization method
 *	(see 11C.12.2.2)
 *
 * @NL80211_MESHCONF_HT_OPMODE: set mesh HT protection mode.
 *
 * @NL80211_MESHCONF_ATTR_MAX: highest possible mesh configuration attribute
 *
 * @NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT: The time (in TUs) for
 *	which mesh STAs receiving a proactive PREQ shall consider the forwarding
 *	information to the root mesh STA to be valid.
 *
 * @NL80211_MESHCONF_HWMP_ROOT_INTERVAL: The interval of time (in TUs) between
 *	proactive PREQs are transmitted.
 *
 * @NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL: The minimum interval of time
 *	(in TUs) during which a mesh STA can send only one Action frame
 *	containing a PREQ element for root path confirmation.
 *
 * @NL80211_MESHCONF_POWER_MODE: Default mesh power mode for new peer links.
 *	type &enum nl80211_mesh_power_mode (u32)
 *
 * @NL80211_MESHCONF_AWAKE_WINDOW: awake window duration (in TUs)
 *
 * @NL80211_MESHCONF_PLINK_TIMEOUT: If no tx activity is seen from a STA we've
 *	established peering with for longer than this time (in seconds), then
 *	remove it from the STA's list of peers. You may set this to 0 to disable
 *	the removal of the STA. Default is 30 minutes.
 *
 * @NL80211_MESHCONF_CONNECTED_TO_GATE: If set to true then this mesh STA
 *	will advertise that it is connected to a gate in the mesh formation
 *	field.  If left unset then the mesh formation field will only
 *	advertise such if there is an active root mesh path.
 *
 * @NL80211_MESHCONF_NOLEARN: Try to avoid multi-hop path discovery (e.g.
 *      PREQ/PREP for HWMP) if the destination is a direct neighbor. Note that
 *      this might not be the optimal decision as a multi-hop route might be
 *      better. So if using this setting you will likely also want to disable
 *      dot11MeshForwarding and use another mesh routing protocol on top.
 *
 * @NL80211_MESHCONF_CONNECTED_TO_AS: If set to true then this mesh STA
 *	will advertise that it is connected to a authentication server
 *	in the mesh formation field.
 *
 * @__NL80211_MESHCONF_ATTR_AFTER_LAST: internal use
 */
enum nl80211_meshconf_params {
	__NL80211_MESHCONF_INVALID,
	NL80211_MESHCONF_RETRY_TIMEOUT,
	NL80211_MESHCONF_CONFIRM_TIMEOUT,
	NL80211_MESHCONF_HOLDING_TIMEOUT,
	NL80211_MESHCONF_MAX_PEER_LINKS,
	NL80211_MESHCONF_MAX_RETRIES,
	NL80211_MESHCONF_TTL,
	NL80211_MESHCONF_AUTO_OPEN_PLINKS,
	NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES,
	NL80211_MESHCONF_PATH_REFRESH_TIME,
	NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT,
	NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT,
	NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL,
	NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
	NL80211_MESHCONF_HWMP_ROOTMODE,
	NL80211_MESHCONF_ELEMENT_TTL,
	NL80211_MESHCONF_HWMP_RANN_INTERVAL,
	NL80211_MESHCONF_GATE_ANNOUNCEMENTS,
	NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL,
	NL80211_MESHCONF_FORWARDING,
	NL80211_MESHCONF_RSSI_THRESHOLD,
	NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR,
	NL80211_MESHCONF_HT_OPMODE,
	NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT,
	NL80211_MESHCONF_HWMP_ROOT_INTERVAL,
	NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL,
	NL80211_MESHCONF_POWER_MODE,
	NL80211_MESHCONF_AWAKE_WINDOW,
	NL80211_MESHCONF_PLINK_TIMEOUT,
	NL80211_MESHCONF_CONNECTED_TO_GATE,
	NL80211_MESHCONF_NOLEARN,
	NL80211_MESHCONF_CONNECTED_TO_AS,

	/* keep last */
	__NL80211_MESHCONF_ATTR_AFTER_LAST,
	NL80211_MESHCONF_ATTR_MAX = __NL80211_MESHCONF_ATTR_AFTER_LAST - 1
};

/**
 * enum nl80211_mesh_setup_params - mesh setup parameters
 *
 * Mesh setup parameters.  These are used to start/join a mesh and cannot be
 * changed while the mesh is active.
 *
 * @__NL80211_MESH_SETUP_INVALID: Internal use
 *
 * @NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL: Enable this option to use a
 *	vendor specific path selection algorithm or disable it to use the
 *	default HWMP.
 *
 * @NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC: Enable this option to use a
 *	vendor specific path metric or disable it to use the default Airtime
 *	metric.
 *
 * @NL80211_MESH_SETUP_IE: Information elements for this mesh, for instance, a
 *	robust security network ie, or a vendor specific information element
 *	that vendors will use to identify the path selection methods and
 *	metrics in use.
 *
 * @NL80211_MESH_SETUP_USERSPACE_AUTH: Enable this option if an authentication
 *	daemon will be authenticating mesh candidates.
 *
 * @NL80211_MESH_SETUP_USERSPACE_AMPE: Enable this option if an authentication
 *	daemon will be securing peer link frames.  AMPE is a secured version of
 *	Mesh Peering Management (MPM) and is implemented with the assistance of
 *	a userspace daemon.  When this flag is set, the kernel will send peer
 *	management frames to a userspace daemon that will implement AMPE
 *	functionality (security capabilities selection, key confirmation, and
 *	key management).  When the flag is unset (default), the kernel can
 *	autonomously complete (unsecured) mesh peering without the need of a
 *	userspace daemon.
 *
 * @NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC: Enable this option to use a
 *	vendor specific synchronization method or disable it to use the default
 *	neighbor offset synchronization
 *
 * @NL80211_MESH_SETUP_USERSPACE_MPM: Enable this option if userspace will
 *	implement an MPM which handles peer allocation and state.
 *
 * @NL80211_MESH_SETUP_AUTH_PROTOCOL: Inform the kernel of the authentication
 *	method (u8, as defined in IEEE 8.4.2.100.6, e.g. 0x1 for SAE).
 *	Default is no authentication method required.
 *
 * @NL80211_MESH_SETUP_ATTR_MAX: highest possible mesh setup attribute number
 *
 * @__NL80211_MESH_SETUP_ATTR_AFTER_LAST: Internal use
 */
enum nl80211_mesh_setup_params {
	__NL80211_MESH_SETUP_INVALID,
	NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL,
	NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC,
	NL80211_MESH_SETUP_IE,
	NL80211_MESH_SETUP_USERSPACE_AUTH,
	NL80211_MESH_SETUP_USERSPACE_AMPE,
	NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC,
	NL80211_MESH_SETUP_USERSPACE_MPM,
	NL80211_MESH_SETUP_AUTH_PROTOCOL,

	/* keep last */
	__NL80211_MESH_SETUP_ATTR_AFTER_LAST,
	NL80211_MESH_SETUP_ATTR_MAX = __NL80211_MESH_SETUP_ATTR_AFTER_LAST - 1
};

/**
 * enum nl80211_txq_attr - TX queue parameter attributes
 * @__NL80211_TXQ_ATTR_INVALID: Attribute number 0 is reserved
 * @NL80211_TXQ_ATTR_AC: AC identifier (NL80211_AC_*)
 * @NL80211_TXQ_ATTR_TXOP: Maximum burst time in units of 32 usecs, 0 meaning
 *	disabled
 * @NL80211_TXQ_ATTR_CWMIN: Minimum contention window [a value of the form
 *	2^n-1 in the range 1..32767]
 * @NL80211_TXQ_ATTR_CWMAX: Maximum contention window [a value of the form
 *	2^n-1 in the range 1..32767]
 * @NL80211_TXQ_ATTR_AIFS: Arbitration interframe space [0..255]
 * @__NL80211_TXQ_ATTR_AFTER_LAST: Internal
 * @NL80211_TXQ_ATTR_MAX: Maximum TXQ attribute number
 */
enum nl80211_txq_attr {
	__NL80211_TXQ_ATTR_INVALID,
	NL80211_TXQ_ATTR_AC,
	NL80211_TXQ_ATTR_TXOP,
	NL80211_TXQ_ATTR_CWMIN,
	NL80211_TXQ_ATTR_CWMAX,
	NL80211_TXQ_ATTR_AIFS,

	/* keep last */
	__NL80211_TXQ_ATTR_AFTER_LAST,
	NL80211_TXQ_ATTR_MAX = __NL80211_TXQ_ATTR_AFTER_LAST - 1
};

enum nl80211_ac {
	NL80211_AC_VO,
	NL80211_AC_VI,
	NL80211_AC_BE,
	NL80211_AC_BK,
	NL80211_NUM_ACS
};

/* backward compat */
#define NL80211_TXQ_ATTR_QUEUE	NL80211_TXQ_ATTR_AC
#define NL80211_TXQ_Q_VO	NL80211_AC_VO
#define NL80211_TXQ_Q_VI	NL80211_AC_VI
#define NL80211_TXQ_Q_BE	NL80211_AC_BE
#define NL80211_TXQ_Q_BK	NL80211_AC_BK

/**
 * enum nl80211_channel_type - channel type
 * @NL80211_CHAN_NO_HT: 20 MHz, non-HT channel
 * @NL80211_CHAN_HT20: 20 MHz HT channel
 * @NL80211_CHAN_HT40MINUS: HT40 channel, secondary channel
 *	below the control channel
 * @NL80211_CHAN_HT40PLUS: HT40 channel, secondary channel
 *	above the control channel
 */
enum nl80211_channel_type {
	NL80211_CHAN_NO_HT,
	NL80211_CHAN_HT20,
	NL80211_CHAN_HT40MINUS,
	NL80211_CHAN_HT40PLUS
};

/**
 * enum nl80211_key_mode - Key mode
 *
 * @NL80211_KEY_RX_TX: (Default)
 *	Key can be used for Rx and Tx immediately
 *
 * The following modes can only be selected for unicast keys and when the
 * driver supports @NL80211_EXT_FEATURE_EXT_KEY_ID:
 *
 * @NL80211_KEY_NO_TX: Only allowed in combination with @NL80211_CMD_NEW_KEY:
 *	Unicast key can only be used for Rx, Tx not allowed, yet
 * @NL80211_KEY_SET_TX: Only allowed in combination with @NL80211_CMD_SET_KEY:
 *	The unicast key identified by idx and mac is cleared for Tx and becomes
 *	the preferred Tx key for the station.
 */
enum nl80211_key_mode {
	NL80211_KEY_RX_TX,
	NL80211_KEY_NO_TX,
	NL80211_KEY_SET_TX
};

/**
 * enum nl80211_chan_width - channel width definitions
 *
 * These values are used with the %NL80211_ATTR_CHANNEL_WIDTH
 * attribute.
 *
 * @NL80211_CHAN_WIDTH_20_NOHT: 20 MHz, non-HT channel
 * @NL80211_CHAN_WIDTH_20: 20 MHz HT channel
 * @NL80211_CHAN_WIDTH_40: 40 MHz channel, the %NL80211_ATTR_CENTER_FREQ1
 *	attribute must be provided as well
 * @NL80211_CHAN_WIDTH_80: 80 MHz channel, the %NL80211_ATTR_CENTER_FREQ1
 *	attribute must be provided as well
 * @NL80211_CHAN_WIDTH_80P80: 80+80 MHz channel, the %NL80211_ATTR_CENTER_FREQ1
 *	and %NL80211_ATTR_CENTER_FREQ2 attributes must be provided as well
 * @NL80211_CHAN_WIDTH_160: 160 MHz channel, the %NL80211_ATTR_CENTER_FREQ1
 *	attribute must be provided as well
 * @NL80211_CHAN_WIDTH_5: 5 MHz OFDM channel
 * @NL80211_CHAN_WIDTH_10: 10 MHz OFDM channel
 * @NL80211_CHAN_WIDTH_1: 1 MHz OFDM channel
 * @NL80211_CHAN_WIDTH_2: 2 MHz OFDM channel
 * @NL80211_CHAN_WIDTH_4: 4 MHz OFDM channel
 * @NL80211_CHAN_WIDTH_8: 8 MHz OFDM channel
 * @NL80211_CHAN_WIDTH_16: 16 MHz OFDM channel
 * @NL80211_CHAN_WIDTH_320: 320 MHz channel, the %NL80211_ATTR_CENTER_FREQ1
 *	attribute must be provided as well
 */
enum nl80211_chan_width {
	NL80211_CHAN_WIDTH_20_NOHT,
	NL80211_CHAN_WIDTH_20,
	NL80211_CHAN_WIDTH_40,
	NL80211_CHAN_WIDTH_80,
	NL80211_CHAN_WIDTH_80P80,
	NL80211_CHAN_WIDTH_160,
	NL80211_CHAN_WIDTH_5,
	NL80211_CHAN_WIDTH_10,
	NL80211_CHAN_WIDTH_1,
	NL80211_CHAN_WIDTH_2,
	NL80211_CHAN_WIDTH_4,
	NL80211_CHAN_WIDTH_8,
	NL80211_CHAN_WIDTH_16,
	NL80211_CHAN_WIDTH_320,
};

/**
 * enum nl80211_bss_scan_width - control channel width for a BSS
 *
 * These values are used with the %NL80211_BSS_CHAN_WIDTH attribute.
 *
 * @NL80211_BSS_CHAN_WIDTH_20: control channel is 20 MHz wide or compatible
 * @NL80211_BSS_CHAN_WIDTH_10: control channel is 10 MHz wide
 * @NL80211_BSS_CHAN_WIDTH_5: control channel is 5 MHz wide
 * @NL80211_BSS_CHAN_WIDTH_1: control channel is 1 MHz wide
 * @NL80211_BSS_CHAN_WIDTH_2: control channel is 2 MHz wide
 */
enum nl80211_bss_scan_width {
	NL80211_BSS_CHAN_WIDTH_20,
	NL80211_BSS_CHAN_WIDTH_10,
	NL80211_BSS_CHAN_WIDTH_5,
	NL80211_BSS_CHAN_WIDTH_1,
	NL80211_BSS_CHAN_WIDTH_2,
};

/**
 * enum nl80211_bss - netlink attributes for a BSS
 *
 * @__NL80211_BSS_INVALID: invalid
 * @NL80211_BSS_BSSID: BSSID of the BSS (6 octets)
 * @NL80211_BSS_FREQUENCY: frequency in MHz (u32)
 * @NL80211_BSS_TSF: TSF of the received probe response/beacon (u64)
 *	(if @NL80211_BSS_PRESP_DATA is present then this is known to be
 *	from a probe response, otherwise it may be from the same beacon
 *	that the NL80211_BSS_BEACON_TSF will be from)
 * @NL80211_BSS_BEACON_INTERVAL: beacon interval of the (I)BSS (u16)
 * @NL80211_BSS_CAPABILITY: capability field (CPU order, u16)
 * @NL80211_BSS_INFORMATION_ELEMENTS: binary attribute containing the
 *	raw information elements from the probe response/beacon (bin);
 *	if the %NL80211_BSS_BEACON_IES attribute is present and the data is
 *	different then the IEs here are from a Probe Response frame; otherwise
 *	they are from a Beacon frame.
 *	However, if the driver does not indicate the source of the IEs, these
 *	IEs may be from either frame subtype.
 *	If present, the @NL80211_BSS_PRESP_DATA attribute indicates that the
 *	data here is known to be from a probe response, without any heuristics.
 * @NL80211_BSS_SIGNAL_MBM: signal strength of probe response/beacon
 *	in mBm (100 * dBm) (s32)
 * @NL80211_BSS_SIGNAL_UNSPEC: signal strength of the probe response/beacon
 *	in unspecified units, scaled to 0..100 (u8)
 * @NL80211_BSS_STATUS: status, if this BSS is "used"
 * @NL80211_BSS_SEEN_MS_AGO: age of this BSS entry in ms
 * @NL80211_BSS_BEACON_IES: binary attribute containing the raw information
 *	elements from a Beacon frame (bin); not present if no Beacon frame has
 *	yet been received
 * @NL80211_BSS_CHAN_WIDTH: channel width of the control channel
 *	(u32, enum nl80211_bss_scan_width)
 * @NL80211_BSS_BEACON_TSF: TSF of the last received beacon (u64)
 *	(not present if no beacon frame has been received yet)
 * @NL80211_BSS_PRESP_DATA: the data in @NL80211_BSS_INFORMATION_ELEMENTS and
 *	@NL80211_BSS_TSF is known to be from a probe response (flag attribute)
 * @NL80211_BSS_LAST_SEEN_BOOTTIME: CLOCK_BOOTTIME timestamp when this entry
 *	was last updated by a received frame. The value is expected to be
 *	accurate to about 10ms. (u64, nanoseconds)
 * @NL80211_BSS_PAD: attribute used for padding for 64-bit alignment
 * @NL80211_BSS_PARENT_TSF: the time at the start of reception of the first
 *	octet of the timestamp field of the last beacon/probe received for
 *	this BSS. The time is the TSF of the BSS specified by
 *	@NL80211_BSS_PARENT_BSSID. (u64).
 * @NL80211_BSS_PARENT_BSSID: the BSS according to which @NL80211_BSS_PARENT_TSF
 *	is set.
 * @NL80211_BSS_CHAIN_SIGNAL: per-chain signal strength of last BSS update.
 *	Contains a nested array of signal strength attributes (u8, dBm),
 *	using the nesting index as the antenna number.
 * @NL80211_BSS_FREQUENCY_OFFSET: frequency offset in KHz
 * @NL80211_BSS_MLO_LINK_ID: MLO link ID of the BSS (u8).
 * @NL80211_BSS_MLD_ADDR: MLD address of this BSS if connected to it.
 * @__NL80211_BSS_AFTER_LAST: internal
 * @NL80211_BSS_MAX: highest BSS attribute
 */
enum nl80211_bss {
	__NL80211_BSS_INVALID,
	NL80211_BSS_BSSID,
	NL80211_BSS_FREQUENCY,
	NL80211_BSS_TSF,
	NL80211_BSS_BEACON_INTERVAL,
	NL80211_BSS_CAPABILITY,
	NL80211_BSS_INFORMATION_ELEMENTS,
	NL80211_BSS_SIGNAL_MBM,
	NL80211_BSS_SIGNAL_UNSPEC,
	NL80211_BSS_STATUS,
	NL80211_BSS_SEEN_MS_AGO,
	NL80211_BSS_BEACON_IES,
	NL80211_BSS_CHAN_WIDTH,
	NL80211_BSS_BEACON_TSF,
	NL80211_BSS_PRESP_DATA,
	NL80211_BSS_LAST_SEEN_BOOTTIME,
	NL80211_BSS_PAD,
	NL80211_BSS_PARENT_TSF,
	NL80211_BSS_PARENT_BSSID,
	NL80211_BSS_CHAIN_SIGNAL,
	NL80211_BSS_FREQUENCY_OFFSET,
	NL80211_BSS_MLO_LINK_ID,
	NL80211_BSS_MLD_ADDR,

	/* keep last */
	__NL80211_BSS_AFTER_LAST,
	NL80211_BSS_MAX = __NL80211_BSS_AFTER_LAST - 1
};

/**
 * enum nl80211_bss_status - BSS "status"
 * @NL80211_BSS_STATUS_AUTHENTICATED: Authenticated with this BSS.
 *	Note that this is no longer used since cfg80211 no longer
 *	keeps track of whether or not authentication was done with
 *	a given BSS.
 * @NL80211_BSS_STATUS_ASSOCIATED: Associated with this BSS.
 * @NL80211_BSS_STATUS_IBSS_JOINED: Joined to this IBSS.
 *
 * The BSS status is a BSS attribute in scan dumps, which
 * indicates the status the interface has wrt. this BSS.
 */
enum nl80211_bss_status {
	NL80211_BSS_STATUS_AUTHENTICATED,
	NL80211_BSS_STATUS_ASSOCIATED,
	NL80211_BSS_STATUS_IBSS_JOINED,
};

/**
 * enum nl80211_auth_type - AuthenticationType
 *
 * @NL80211_AUTHTYPE_OPEN_SYSTEM: Open System authentication
 * @NL80211_AUTHTYPE_SHARED_KEY: Shared Key authentication (WEP only)
 * @NL80211_AUTHTYPE_FT: Fast BSS Transition (IEEE 802.11r)
 * @NL80211_AUTHTYPE_NETWORK_EAP: Network EAP (some Cisco APs and mainly LEAP)
 * @NL80211_AUTHTYPE_SAE: Simultaneous authentication of equals
 * @NL80211_AUTHTYPE_FILS_SK: Fast Initial Link Setup shared key
 * @NL80211_AUTHTYPE_FILS_SK_PFS: Fast Initial Link Setup shared key with PFS
 * @NL80211_AUTHTYPE_FILS_PK: Fast Initial Link Setup public key
 * @__NL80211_AUTHTYPE_NUM: internal
 * @NL80211_AUTHTYPE_MAX: maximum valid auth algorithm
 * @NL80211_AUTHTYPE_AUTOMATIC: determine automatically (if necessary by
 *	trying multiple times); this is invalid in netlink -- leave out
 *	the attribute for this on CONNECT commands.
 */
enum nl80211_auth_type {
	NL80211_AUTHTYPE_OPEN_SYSTEM,
	NL80211_AUTHTYPE_SHARED_KEY,
	NL80211_AUTHTYPE_FT,
	NL80211_AUTHTYPE_NETWORK_EAP,
	NL80211_AUTHTYPE_SAE,
	NL80211_AUTHTYPE_FILS_SK,
	NL80211_AUTHTYPE_FILS_SK_PFS,
	NL80211_AUTHTYPE_FILS_PK,

	/* keep last */
	__NL80211_AUTHTYPE_NUM,
	NL80211_AUTHTYPE_MAX = __NL80211_AUTHTYPE_NUM - 1,
	NL80211_AUTHTYPE_AUTOMATIC
};

/**
 * enum nl80211_key_type - Key Type
 * @NL80211_KEYTYPE_GROUP: Group (broadcast/multicast) key
 * @NL80211_KEYTYPE_PAIRWISE: Pairwise (unicast/individual) key
 * @NL80211_KEYTYPE_PEERKEY: PeerKey (DLS)
 * @NUM_NL80211_KEYTYPES: number of defined key types
 */
enum nl80211_key_type {
	NL80211_KEYTYPE_GROUP,
	NL80211_KEYTYPE_PAIRWISE,
	NL80211_KEYTYPE_PEERKEY,

	NUM_NL80211_KEYTYPES
};

/**
 * enum nl80211_mfp - Management frame protection state
 * @NL80211_MFP_NO: Management frame protection not used
 * @NL80211_MFP_REQUIRED: Management frame protection required
 * @NL80211_MFP_OPTIONAL: Management frame protection is optional
 */
enum nl80211_mfp {
	NL80211_MFP_NO,
	NL80211_MFP_REQUIRED,
	NL80211_MFP_OPTIONAL,
};

enum nl80211_wpa_versions {
	NL80211_WPA_VERSION_1 = 1 << 0,
	NL80211_WPA_VERSION_2 = 1 << 1,
	NL80211_WPA_VERSION_3 = 1 << 2,
};

/**
 * enum nl80211_key_default_types - key default types
 * @__NL80211_KEY_DEFAULT_TYPE_INVALID: invalid
 * @NL80211_KEY_DEFAULT_TYPE_UNICAST: key should be used as default
 *	unicast key
 * @NL80211_KEY_DEFAULT_TYPE_MULTICAST: key should be used as default
 *	multicast key
 * @NUM_NL80211_KEY_DEFAULT_TYPES: number of default types
 */
enum nl80211_key_default_types {
	__NL80211_KEY_DEFAULT_TYPE_INVALID,
	NL80211_KEY_DEFAULT_TYPE_UNICAST,
	NL80211_KEY_DEFAULT_TYPE_MULTICAST,

	NUM_NL80211_KEY_DEFAULT_TYPES
};

/**
 * enum nl80211_key_attributes - key attributes
 * @__NL80211_KEY_INVALID: invalid
 * @NL80211_KEY_DATA: (temporal) key data; for TKIP this consists of
 *	16 bytes encryption key followed by 8 bytes each for TX and RX MIC
 *	keys
 * @NL80211_KEY_IDX: key ID (u8, 0-3)
 * @NL80211_KEY_CIPHER: key cipher suite (u32, as defined by IEEE 802.11
 *	section 7.3.2.25.1, e.g. 0x000FAC04)
 * @NL80211_KEY_SEQ: transmit key sequence number (IV/PN) for TKIP and
 *	CCMP keys, each six bytes in little endian
 * @NL80211_KEY_DEFAULT: flag indicating default key
 * @NL80211_KEY_DEFAULT_MGMT: flag indicating default management key
 * @NL80211_KEY_TYPE: the key type from enum nl80211_key_type, if not
 *	specified the default depends on whether a MAC address was
 *	given with the command using the key or not (u32)
 * @NL80211_KEY_DEFAULT_TYPES: A nested attribute containing flags
 *	attributes, specifying what a key should be set as default as.
 *	See &enum nl80211_key_default_types.
 * @NL80211_KEY_MODE: the mode from enum nl80211_key_mode.
 *	Defaults to @NL80211_KEY_RX_TX.
 * @NL80211_KEY_DEFAULT_BEACON: flag indicating default Beacon frame key
 *
 * @__NL80211_KEY_AFTER_LAST: internal
 * @NL80211_KEY_MAX: highest key attribute
 */
enum nl80211_key_attributes {
	__NL80211_KEY_INVALID,
	NL80211_KEY_DATA,
	NL80211_KEY_IDX,
	NL80211_KEY_CIPHER,
	NL80211_KEY_SEQ,
	NL80211_KEY_DEFAULT,
	NL80211_KEY_DEFAULT_MGMT,
	NL80211_KEY_TYPE,
	NL80211_KEY_DEFAULT_TYPES,
	NL80211_KEY_MODE,
	NL80211_KEY_DEFAULT_BEACON,

	/* keep last */
	__NL80211_KEY_AFTER_LAST,
	NL80211_KEY_MAX = __NL80211_KEY_AFTER_LAST - 1
};

/**
 * enum nl80211_tx_rate_attributes - TX rate set attributes
 * @__NL80211_TXRATE_INVALID: invalid
 * @NL80211_TXRATE_LEGACY: Legacy (non-MCS) rates allowed for TX rate selection
 *	in an array of rates as defined in IEEE 802.11 7.3.2.2 (u8 values with
 *	1 = 500 kbps) but without the IE length restriction (at most
 *	%NL80211_MAX_SUPP_RATES in a single array).
 * @NL80211_TXRATE_HT: HT (MCS) rates allowed for TX rate selection
 *	in an array of MCS numbers.
 * @NL80211_TXRATE_VHT: VHT rates allowed for TX rate selection,
 *	see &struct nl80211_txrate_vht
 * @NL80211_TXRATE_GI: configure GI, see &enum nl80211_txrate_gi
 * @NL80211_TXRATE_HE: HE rates allowed for TX rate selection,
 *	see &struct nl80211_txrate_he
 * @NL80211_TXRATE_HE_GI: configure HE GI, 0.8us, 1.6us and 3.2us.
 * @NL80211_TXRATE_HE_LTF: configure HE LTF, 1XLTF, 2XLTF and 4XLTF.
 * @__NL80211_TXRATE_AFTER_LAST: internal
 * @NL80211_TXRATE_MAX: highest TX rate attribute
 */
enum nl80211_tx_rate_attributes {
	__NL80211_TXRATE_INVALID,
	NL80211_TXRATE_LEGACY,
	NL80211_TXRATE_HT,
	NL80211_TXRATE_VHT,
	NL80211_TXRATE_GI,
	NL80211_TXRATE_HE,
	NL80211_TXRATE_HE_GI,
	NL80211_TXRATE_HE_LTF,

	/* keep last */
	__NL80211_TXRATE_AFTER_LAST,
	NL80211_TXRATE_MAX = __NL80211_TXRATE_AFTER_LAST - 1
};

#define NL80211_TXRATE_MCS NL80211_TXRATE_HT
#define NL80211_VHT_NSS_MAX		8

/**
 * struct nl80211_txrate_vht - VHT MCS/NSS txrate bitmap
 * @mcs: MCS bitmap table for each NSS (array index 0 for 1 stream, etc.)
 */
struct nl80211_txrate_vht {
	__u16 mcs[NL80211_VHT_NSS_MAX];
};

#define NL80211_HE_NSS_MAX		8
/**
 * struct nl80211_txrate_he - HE MCS/NSS txrate bitmap
 * @mcs: MCS bitmap table for each NSS (array index 0 for 1 stream, etc.)
 */
struct nl80211_txrate_he {
	__u16 mcs[NL80211_HE_NSS_MAX];
};

enum nl80211_txrate_gi {
	NL80211_TXRATE_DEFAULT_GI,
	NL80211_TXRATE_FORCE_SGI,
	NL80211_TXRATE_FORCE_LGI,
};

/**
 * enum nl80211_band - Frequency band
 * @NL80211_BAND_2GHZ: 2.4 GHz ISM band
 * @NL80211_BAND_5GHZ: around 5 GHz band (4.9 - 5.7 GHz)
 * @NL80211_BAND_60GHZ: around 60 GHz band (58.32 - 69.12 GHz)
 * @NL80211_BAND_6GHZ: around 6 GHz band (5.9 - 7.2 GHz)
 * @NL80211_BAND_S1GHZ: around 900MHz, supported by S1G PHYs
 * @NL80211_BAND_LC: light communication band (placeholder)
 * @NUM_NL80211_BANDS: number of bands, avoid using this in userspace
 *	since newer kernel versions may support more bands
 */
enum nl80211_band {
	NL80211_BAND_2GHZ,
	NL80211_BAND_5GHZ,
	NL80211_BAND_60GHZ,
	NL80211_BAND_6GHZ,
	NL80211_BAND_S1GHZ,
	NL80211_BAND_LC,

	NUM_NL80211_BANDS,
};

/**
 * enum nl80211_ps_state - powersave state
 * @NL80211_PS_DISABLED: powersave is disabled
 * @NL80211_PS_ENABLED: powersave is enabled
 */
enum nl80211_ps_state {
	NL80211_PS_DISABLED,
	NL80211_PS_ENABLED,
};

/**
 * enum nl80211_attr_cqm - connection quality monitor attributes
 * @__NL80211_ATTR_CQM_INVALID: invalid
 * @NL80211_ATTR_CQM_RSSI_THOLD: RSSI threshold in dBm. This value specifies
 *	the threshold for the RSSI level at which an event will be sent. Zero
 *	to disable.  Alternatively, if %NL80211_EXT_FEATURE_CQM_RSSI_LIST is
 *	set, multiple values can be supplied as a low-to-high sorted array of
 *	threshold values in dBm.  Events will be sent when the RSSI value
 *	crosses any of the thresholds.
 * @NL80211_ATTR_CQM_RSSI_HYST: RSSI hysteresis in dBm. This value specifies
 *	the minimum amount the RSSI level must change after an event before a
 *	new event may be issued (to reduce effects of RSSI oscillation).
 * @NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT: RSSI threshold event
 * @NL80211_ATTR_CQM_PKT_LOSS_EVENT: a u32 value indicating that this many
 *	consecutive packets were not acknowledged by the peer
 * @NL80211_ATTR_CQM_TXE_RATE: TX error rate in %. Minimum % of TX failures
 *	during the given %NL80211_ATTR_CQM_TXE_INTVL before an
 *	%NL80211_CMD_NOTIFY_CQM with reported %NL80211_ATTR_CQM_TXE_RATE and
 *	%NL80211_ATTR_CQM_TXE_PKTS is generated.
 * @NL80211_ATTR_CQM_TXE_PKTS: number of attempted packets in a given
 *	%NL80211_ATTR_CQM_TXE_INTVL before %NL80211_ATTR_CQM_TXE_RATE is
 *	checked.
 * @NL80211_ATTR_CQM_TXE_INTVL: interval in seconds. Specifies the periodic
 *	interval in which %NL80211_ATTR_CQM_TXE_PKTS and
 *	%NL80211_ATTR_CQM_TXE_RATE must be satisfied before generating an
 *	%NL80211_CMD_NOTIFY_CQM. Set to 0 to turn off TX error reporting.
 * @NL80211_ATTR_CQM_BEACON_LOSS_EVENT: flag attribute that's set in a beacon
 *	loss event
 * @NL80211_ATTR_CQM_RSSI_LEVEL: the RSSI value in dBm that triggered the
 *	RSSI threshold event.
 * @__NL80211_ATTR_CQM_AFTER_LAST: internal
 * @NL80211_ATTR_CQM_MAX: highest key attribute
 */
enum nl80211_attr_cqm {
	__NL80211_ATTR_CQM_INVALID,
	NL80211_ATTR_CQM_RSSI_THOLD,
	NL80211_ATTR_CQM_RSSI_HYST,
	NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT,
	NL80211_ATTR_CQM_PKT_LOSS_EVENT,
	NL80211_ATTR_CQM_TXE_RATE,
	NL80211_ATTR_CQM_TXE_PKTS,
	NL80211_ATTR_CQM_TXE_INTVL,
	NL80211_ATTR_CQM_BEACON_LOSS_EVENT,
	NL80211_ATTR_CQM_RSSI_LEVEL,

	/* keep last */
	__NL80211_ATTR_CQM_AFTER_LAST,
	NL80211_ATTR_CQM_MAX = __NL80211_ATTR_CQM_AFTER_LAST - 1
};

/**
 * enum nl80211_cqm_rssi_threshold_event - RSSI threshold event
 * @NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW: The RSSI level is lower than the
 *      configured threshold
 * @NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH: The RSSI is higher than the
 *      configured threshold
 * @NL80211_CQM_RSSI_BEACON_LOSS_EVENT: (reserved, never sent)
 */
enum nl80211_cqm_rssi_threshold_event {
	NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
	NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
	NL80211_CQM_RSSI_BEACON_LOSS_EVENT,
};


/**
 * enum nl80211_tx_power_setting - TX power adjustment
 * @NL80211_TX_POWER_AUTOMATIC: automatically determine transmit power
 * @NL80211_TX_POWER_LIMITED: limit TX power by the mBm parameter
 * @NL80211_TX_POWER_FIXED: fix TX power to the mBm parameter
 */
enum nl80211_tx_power_setting {
	NL80211_TX_POWER_AUTOMATIC,
	NL80211_TX_POWER_LIMITED,
	NL80211_TX_POWER_FIXED,
};

/**
 * enum nl80211_tid_config - TID config state
 * @NL80211_TID_CONFIG_ENABLE: Enable config for the TID
 * @NL80211_TID_CONFIG_DISABLE: Disable config for the TID
 */
enum nl80211_tid_config {
	NL80211_TID_CONFIG_ENABLE,
	NL80211_TID_CONFIG_DISABLE,
};

/* enum nl80211_tx_rate_setting - TX rate configuration type
 * @NL80211_TX_RATE_AUTOMATIC: automatically determine TX rate
 * @NL80211_TX_RATE_LIMITED: limit the TX rate by the TX rate parameter
 * @NL80211_TX_RATE_FIXED: fix TX rate to the TX rate parameter
 */
enum nl80211_tx_rate_setting {
	NL80211_TX_RATE_AUTOMATIC,
	NL80211_TX_RATE_LIMITED,
	NL80211_TX_RATE_FIXED,
};

/* enum nl80211_tid_config_attr - TID specific configuration.
 * @NL80211_TID_CONFIG_ATTR_PAD: pad attribute for 64-bit values
 * @NL80211_TID_CONFIG_ATTR_VIF_SUPP: a bitmap (u64) of attributes supported
 *	for per-vif configuration; doesn't list the ones that are generic
 *	(%NL80211_TID_CONFIG_ATTR_TIDS, %NL80211_TID_CONFIG_ATTR_OVERRIDE).
 * @NL80211_TID_CONFIG_ATTR_PEER_SUPP: same as the previous per-vif one, but
 *	per peer instead.
 * @NL80211_TID_CONFIG_ATTR_OVERRIDE: flag attribue, if set indicates
 *	that the new configuration overrides all previous peer
 *	configurations, otherwise previous peer specific configurations
 *	should be left untouched.
 * @NL80211_TID_CONFIG_ATTR_TIDS: a bitmask value of TIDs (bit 0 to 7)
 *	Its type is u16.
 * @NL80211_TID_CONFIG_ATTR_NOACK: Configure ack policy for the TID.
 *	specified in %NL80211_TID_CONFIG_ATTR_TID. see %enum nl80211_tid_config.
 *	Its type is u8.
 * @NL80211_TID_CONFIG_ATTR_RETRY_SHORT: Number of retries used with data frame
 *	transmission, user-space sets this configuration in
 *	&NL80211_CMD_SET_TID_CONFIG. It is u8 type, min value is 1 and
 *	the max value is advertised by the driver in this attribute on
 *	output in wiphy capabilities.
 * @NL80211_TID_CONFIG_ATTR_RETRY_LONG: Number of retries used with data frame
 *	transmission, user-space sets this configuration in
 *	&NL80211_CMD_SET_TID_CONFIG. Its type is u8, min value is 1 and
 *	the max value is advertised by the driver in this attribute on
 *	output in wiphy capabilities.
 * @NL80211_TID_CONFIG_ATTR_AMPDU_CTRL: Enable/Disable MPDU aggregation
 *	for the TIDs specified in %NL80211_TID_CONFIG_ATTR_TIDS.
 *	Its type is u8, using the values from &nl80211_tid_config.
 * @NL80211_TID_CONFIG_ATTR_RTSCTS_CTRL: Enable/Disable RTS_CTS for the TIDs
 *	specified in %NL80211_TID_CONFIG_ATTR_TIDS. It is u8 type, using
 *	the values from &nl80211_tid_config.
 * @NL80211_TID_CONFIG_ATTR_AMSDU_CTRL: Enable/Disable MSDU aggregation
 *	for the TIDs specified in %NL80211_TID_CONFIG_ATTR_TIDS.
 *	Its type is u8, using the values from &nl80211_tid_config.
 * @NL80211_TID_CONFIG_ATTR_TX_RATE_TYPE: This attribute will be useful
 *	to notfiy the driver that what type of txrate should be used
 *	for the TIDs specified in %NL80211_TID_CONFIG_ATTR_TIDS. using
 *	the values form &nl80211_tx_rate_setting.
 * @NL80211_TID_CONFIG_ATTR_TX_RATE: Data frame TX rate mask should be applied
 *	with the parameters passed through %NL80211_ATTR_TX_RATES.
 *	configuration is applied to the data frame for the tid to that connected
 *	station.
 */
enum nl80211_tid_config_attr {
	__NL80211_TID_CONFIG_ATTR_INVALID,
	NL80211_TID_CONFIG_ATTR_PAD,
	NL80211_TID_CONFIG_ATTR_VIF_SUPP,
	NL80211_TID_CONFIG_ATTR_PEER_SUPP,
	NL80211_TID_CONFIG_ATTR_OVERRIDE,
	NL80211_TID_CONFIG_ATTR_TIDS,
	NL80211_TID_CONFIG_ATTR_NOACK,
	NL80211_TID_CONFIG_ATTR_RETRY_SHORT,
	NL80211_TID_CONFIG_ATTR_RETRY_LONG,
	NL80211_TID_CONFIG_ATTR_AMPDU_CTRL,
	NL80211_TID_CONFIG_ATTR_RTSCTS_CTRL,
	NL80211_TID_CONFIG_ATTR_AMSDU_CTRL,
	NL80211_TID_CONFIG_ATTR_TX_RATE_TYPE,
	NL80211_TID_CONFIG_ATTR_TX_RATE,

	/* keep last */
	__NL80211_TID_CONFIG_ATTR_AFTER_LAST,
	NL80211_TID_CONFIG_ATTR_MAX = __NL80211_TID_CONFIG_ATTR_AFTER_LAST - 1
};

/**
 * enum nl80211_packet_pattern_attr - packet pattern attribute
 * @__NL80211_PKTPAT_INVALID: invalid number for nested attribute
 * @NL80211_PKTPAT_PATTERN: the pattern, values where the mask has
 *	a zero bit are ignored
 * @NL80211_PKTPAT_MASK: pattern mask, must be long enough to have
 *	a bit for each byte in the pattern. The lowest-order bit corresponds
 *	to the first byte of the pattern, but the bytes of the pattern are
 *	in a little-endian-like format, i.e. the 9th byte of the pattern
 *	corresponds to the lowest-order bit in the second byte of the mask.
 *	For example: The match 00:xx:00:00:xx:00:00:00:00:xx:xx:xx (where
 *	xx indicates "don't care") would be represented by a pattern of
 *	twelve zero bytes, and a mask of "0xed,0x01".
 *	Note that the pattern matching is done as though frames were not
 *	802.11 frames but 802.3 frames, i.e. the frame is fully unpacked
 *	first (including SNAP header unpacking) and then matched.
 * @NL80211_PKTPAT_OFFSET: packet offset, pattern is matched after
 *	these fixed number of bytes of received packet
 * @NUM_NL80211_PKTPAT: number of attributes
 * @MAX_NL80211_PKTPAT: max attribute number
 */
enum nl80211_packet_pattern_attr {
	__NL80211_PKTPAT_INVALID,
	NL80211_PKTPAT_MASK,
	NL80211_PKTPAT_PATTERN,
	NL80211_PKTPAT_OFFSET,

	NUM_NL80211_PKTPAT,
	MAX_NL80211_PKTPAT = NUM_NL80211_PKTPAT - 1,
};

/**
 * struct nl80211_pattern_support - packet pattern support information
 * @max_patterns: maximum number of patterns supported
 * @min_pattern_len: minimum length of each pattern
 * @max_pattern_len: maximum length of each pattern
 * @max_pkt_offset: maximum Rx packet offset
 *
 * This struct is carried in %NL80211_WOWLAN_TRIG_PKT_PATTERN when
 * that is part of %NL80211_ATTR_WOWLAN_TRIGGERS_SUPPORTED or in
 * %NL80211_ATTR_COALESCE_RULE_PKT_PATTERN when that is part of
 * %NL80211_ATTR_COALESCE_RULE in the capability information given
 * by the kernel to userspace.
 */
struct nl80211_pattern_support {
	__u32 max_patterns;
	__u32 min_pattern_len;
	__u32 max_pattern_len;
	__u32 max_pkt_offset;
} __attribute__((packed));

/* only for backward compatibility */
#define __NL80211_WOWLAN_PKTPAT_INVALID __NL80211_PKTPAT_INVALID
#define NL80211_WOWLAN_PKTPAT_MASK NL80211_PKTPAT_MASK
#define NL80211_WOWLAN_PKTPAT_PATTERN NL80211_PKTPAT_PATTERN
#define NL80211_WOWLAN_PKTPAT_OFFSET NL80211_PKTPAT_OFFSET
#define NUM_NL80211_WOWLAN_PKTPAT NUM_NL80211_PKTPAT
#define MAX_NL80211_WOWLAN_PKTPAT MAX_NL80211_PKTPAT
#define nl80211_wowlan_pattern_support nl80211_pattern_support

/**
 * enum nl80211_wowlan_triggers - WoWLAN trigger definitions
 * @__NL80211_WOWLAN_TRIG_INVALID: invalid number for nested attributes
 * @NL80211_WOWLAN_TRIG_ANY: wake up on any activity, do not really put
 *	the chip into a special state -- works best with chips that have
 *	support for low-power operation already (flag)
 *	Note that this mode is incompatible with all of the others, if
 *	any others are even supported by the device.
 * @NL80211_WOWLAN_TRIG_DISCONNECT: wake up on disconnect, the way disconnect
 *	is detected is implementation-specific (flag)
 * @NL80211_WOWLAN_TRIG_MAGIC_PKT: wake up on magic packet (6x 0xff, followed
 *	by 16 repetitions of MAC addr, anywhere in payload) (flag)
 * @NL80211_WOWLAN_TRIG_PKT_PATTERN: wake up on the specified packet patterns
 *	which are passed in an array of nested attributes, each nested attribute
 *	defining a with attributes from &struct nl80211_wowlan_trig_pkt_pattern.
 *	Each pattern defines a wakeup packet. Packet offset is associated with
 *	each pattern which is used while matching the pattern. The matching is
 *	done on the MSDU, i.e. as though the packet was an 802.3 packet, so the
 *	pattern matching is done after the packet is converted to the MSDU.
 *
 *	In %NL80211_ATTR_WOWLAN_TRIGGERS_SUPPORTED, it is a binary attribute
 *	carrying a &struct nl80211_pattern_support.
 *
 *	When reporting wakeup. it is a u32 attribute containing the 0-based
 *	index of the pattern that caused the wakeup, in the patterns passed
 *	to the kernel when configuring.
 * @NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED: Not a real trigger, and cannot be
 *	used when setting, used only to indicate that GTK rekeying is supported
 *	by the device (flag)
 * @NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE: wake up on GTK rekey failure (if
 *	done by the device) (flag)
 * @NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST: wake up on EAP Identity Request
 *	packet (flag)
 * @NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE: wake up on 4-way handshake (flag)
 * @NL80211_WOWLAN_TRIG_RFKILL_RELEASE: wake up when rfkill is released
 *	(on devices that have rfkill in the device) (flag)
 * @NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211: For wakeup reporting only, contains
 *	the 802.11 packet that caused the wakeup, e.g. a deauth frame. The frame
 *	may be truncated, the @NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211_LEN
 *	attribute contains the original length.
 * @NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211_LEN: Original length of the 802.11
 *	packet, may be bigger than the @NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211
 *	attribute if the packet was truncated somewhere.
 * @NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023: For wakeup reporting only, contains the
 *	802.11 packet that caused the wakeup, e.g. a magic packet. The frame may
 *	be truncated, the @NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023_LEN attribute
 *	contains the original length.
 * @NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023_LEN: Original length of the 802.3
 *	packet, may be bigger than the @NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023
 *	attribute if the packet was truncated somewhere.
 * @NL80211_WOWLAN_TRIG_TCP_CONNECTION: TCP connection wake, see DOC section
 *	"TCP connection wakeup" for more details. This is a nested attribute
 *	containing the exact information for establishing and keeping alive
 *	the TCP connection.
 * @NL80211_WOWLAN_TRIG_TCP_WAKEUP_MATCH: For wakeup reporting only, the
 *	wakeup packet was received on the TCP connection
 * @NL80211_WOWLAN_TRIG_WAKEUP_TCP_CONNLOST: For wakeup reporting only, the
 *	TCP connection was lost or failed to be established
 * @NL80211_WOWLAN_TRIG_WAKEUP_TCP_NOMORETOKENS: For wakeup reporting only,
 *	the TCP connection ran out of tokens to use for data to send to the
 *	service
 * @NL80211_WOWLAN_TRIG_NET_DETECT: wake up when a configured network
 *	is detected.  This is a nested attribute that contains the
 *	same attributes used with @NL80211_CMD_START_SCHED_SCAN.  It
 *	specifies how the scan is performed (e.g. the interval, the
 *	channels to scan and the initial delay) as well as the scan
 *	results that will trigger a wake (i.e. the matchsets).  This
 *	attribute is also sent in a response to
 *	@NL80211_CMD_GET_WIPHY, indicating the number of match sets
 *	supported by the driver (u32).
 * @NL80211_WOWLAN_TRIG_NET_DETECT_RESULTS: nested attribute
 *	containing an array with information about what triggered the
 *	wake up.  If no elements are present in the array, it means
 *	that the information is not available.  If more than one
 *	element is present, it means that more than one match
 *	occurred.
 *	Each element in the array is a nested attribute that contains
 *	one optional %NL80211_ATTR_SSID attribute and one optional
 *	%NL80211_ATTR_SCAN_FREQUENCIES attribute.  At least one of
 *	these attributes must be present.  If
 *	%NL80211_ATTR_SCAN_FREQUENCIES contains more than one
 *	frequency, it means that the match occurred in more than one
 *	channel.
 * @NUM_NL80211_WOWLAN_TRIG: number of wake on wireless triggers
 * @MAX_NL80211_WOWLAN_TRIG: highest wowlan trigger attribute number
 *
 * These nested attributes are used to configure the wakeup triggers and
 * to report the wakeup reason(s).
 */
enum nl80211_wowlan_triggers {
	__NL80211_WOWLAN_TRIG_INVALID,
	NL80211_WOWLAN_TRIG_ANY,
	NL80211_WOWLAN_TRIG_DISCONNECT,
	NL80211_WOWLAN_TRIG_MAGIC_PKT,
	NL80211_WOWLAN_TRIG_PKT_PATTERN,
	NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED,
	NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE,
	NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST,
	NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE,
	NL80211_WOWLAN_TRIG_RFKILL_RELEASE,
	NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211,
	NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211_LEN,
	NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023,
	NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023_LEN,
	NL80211_WOWLAN_TRIG_TCP_CONNECTION,
	NL80211_WOWLAN_TRIG_WAKEUP_TCP_MATCH,
	NL80211_WOWLAN_TRIG_WAKEUP_TCP_CONNLOST,
	NL80211_WOWLAN_TRIG_WAKEUP_TCP_NOMORETOKENS,
	NL80211_WOWLAN_TRIG_NET_DETECT,
	NL80211_WOWLAN_TRIG_NET_DETECT_RESULTS,

	/* keep last */
	NUM_NL80211_WOWLAN_TRIG,
	MAX_NL80211_WOWLAN_TRIG = NUM_NL80211_WOWLAN_TRIG - 1
};

/**
 * DOC: TCP connection wakeup
 *
 * Some devices can establish a TCP connection in order to be woken up by a
 * packet coming in from outside their network segment, or behind NAT. If
 * configured, the device will establish a TCP connection to the given
 * service, and periodically send data to that service. The first data
 * packet is usually transmitted after SYN/ACK, also ACKing the SYN/ACK.
 * The data packets can optionally include a (little endian) sequence
 * number (in the TCP payload!) that is generated by the device, and, also
 * optionally, a token from a list of tokens. This serves as a keep-alive
 * with the service, and for NATed connections, etc.
 *
 * During this keep-alive period, the server doesn't send any data to the
 * client. When receiving data, it is compared against the wakeup pattern
 * (and mask) and if it matches, the host is woken up. Similarly, if the
 * connection breaks or cannot be established to start with, the host is
 * also woken up.
 *
 * Developer's note: ARP offload is required for this, otherwise TCP
 * response packets might not go through correctly.
 */

/**
 * struct nl80211_wowlan_tcp_data_seq - WoWLAN TCP data sequence
 * @start: starting value
 * @offset: offset of sequence number in packet
 * @len: length of the sequence value to write, 1 through 4
 *
 * Note: don't confuse with the TCP sequence number(s), this is for the
 * keepalive packet payload. The actual value is written into the packet
 * in little endian.
 */
struct nl80211_wowlan_tcp_data_seq {
	__u32 start, offset, len;
};

/**
 * struct nl80211_wowlan_tcp_data_token - WoWLAN TCP data token config
 * @offset: offset of token in packet
 * @len: length of each token
 * @token_stream: stream of data to be used for the tokens, the length must
 *	be a multiple of @len for this to make sense
 */
struct nl80211_wowlan_tcp_data_token {
	__u32 offset, len;
	__u8 token_stream[];
};

/**
 * struct nl80211_wowlan_tcp_data_token_feature - data token features
 * @min_len: minimum token length
 * @max_len: maximum token length
 * @bufsize: total available token buffer size (max size of @token_stream)
 */
struct nl80211_wowlan_tcp_data_token_feature {
	__u32 min_len, max_len, bufsize;
};

/**
 * enum nl80211_wowlan_tcp_attrs - WoWLAN TCP connection parameters
 * @__NL80211_WOWLAN_TCP_INVALID: invalid number for nested attributes
 * @NL80211_WOWLAN_TCP_SRC_IPV4: source IPv4 address (in network byte order)
 * @NL80211_WOWLAN_TCP_DST_IPV4: destination IPv4 address
 *	(in network byte order)
 * @NL80211_WOWLAN_TCP_DST_MAC: destination MAC address, this is given because
 *	route lookup when configured might be invalid by the time we suspend,
 *	and doing a route lookup when suspending is no longer possible as it
 *	might require ARP querying.
 * @NL80211_WOWLAN_TCP_SRC_PORT: source port (u16); optional, if not given a
 *	socket and port will be allocated
 * @NL80211_WOWLAN_TCP_DST_PORT: destination port (u16)
 * @NL80211_WOWLAN_TCP_DATA_PAYLOAD: data packet payload, at least one byte.
 *	For feature advertising, a u32 attribute holding the maximum length
 *	of the data payload.
 * @NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ: data packet sequence configuration
 *	(if desired), a &struct nl80211_wowlan_tcp_data_seq. For feature
 *	advertising it is just a flag
 * @NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN: data packet token configuration,
 *	see &struct nl80211_wowlan_tcp_data_token and for advertising see
 *	&struct nl80211_wowlan_tcp_data_token_feature.
 * @NL80211_WOWLAN_TCP_DATA_INTERVAL: data interval in seconds, maximum
 *	interval in feature advertising (u32)
 * @NL80211_WOWLAN_TCP_WAKE_PAYLOAD: wake packet payload, for advertising a
 *	u32 attribute holding the maximum length
 * @NL80211_WOWLAN_TCP_WAKE_MASK: Wake packet payload mask, not used for
 *	feature advertising. The mask works like @NL80211_PKTPAT_MASK
 *	but on the TCP payload only.
 * @NUM_NL80211_WOWLAN_TCP: number of TCP attributes
 * @MAX_NL80211_WOWLAN_TCP: highest attribute number
 */
enum nl80211_wowlan_tcp_attrs {
	__NL80211_WOWLAN_TCP_INVALID,
	NL80211_WOWLAN_TCP_SRC_IPV4,
	NL80211_WOWLAN_TCP_DST_IPV4,
	NL80211_WOWLAN_TCP_DST_MAC,
	NL80211_WOWLAN_TCP_SRC_PORT,
	NL80211_WOWLAN_TCP_DST_PORT,
	NL80211_WOWLAN_TCP_DATA_PAYLOAD,
	NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ,
	NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN,
	NL80211_WOWLAN_TCP_DATA_INTERVAL,
	NL80211_WOWLAN_TCP_WAKE_PAYLOAD,
	NL80211_WOWLAN_TCP_WAKE_MASK,

	/* keep last */
	NUM_NL80211_WOWLAN_TCP,
	MAX_NL80211_WOWLAN_TCP = NUM_NL80211_WOWLAN_TCP - 1
};

/**
 * struct nl80211_coalesce_rule_support - coalesce rule support information
 * @max_rules: maximum number of rules supported
 * @pat: packet pattern support information
 * @max_delay: maximum supported coalescing delay in msecs
 *
 * This struct is carried in %NL80211_ATTR_COALESCE_RULE in the
 * capability information given by the kernel to userspace.
 */
struct nl80211_coalesce_rule_support {
	__u32 max_rules;
	struct nl80211_pattern_support pat;
	__u32 max_delay;
} __attribute__((packed));

/**
 * enum nl80211_attr_coalesce_rule - coalesce rule attribute
 * @__NL80211_COALESCE_RULE_INVALID: invalid number for nested attribute
 * @NL80211_ATTR_COALESCE_RULE_DELAY: delay in msecs used for packet coalescing
 * @NL80211_ATTR_COALESCE_RULE_CONDITION: condition for packet coalescence,
 *	see &enum nl80211_coalesce_condition.
 * @NL80211_ATTR_COALESCE_RULE_PKT_PATTERN: packet offset, pattern is matched
 *	after these fixed number of bytes of received packet
 * @NUM_NL80211_ATTR_COALESCE_RULE: number of attributes
 * @NL80211_ATTR_COALESCE_RULE_MAX: max attribute number
 */
enum nl80211_attr_coalesce_rule {
	__NL80211_COALESCE_RULE_INVALID,
	NL80211_ATTR_COALESCE_RULE_DELAY,
	NL80211_ATTR_COALESCE_RULE_CONDITION,
	NL80211_ATTR_COALESCE_RULE_PKT_PATTERN,

	/* keep last */
	NUM_NL80211_ATTR_COALESCE_RULE,
	NL80211_ATTR_COALESCE_RULE_MAX = NUM_NL80211_ATTR_COALESCE_RULE - 1
};

/**
 * enum nl80211_coalesce_condition - coalesce rule conditions
 * @NL80211_COALESCE_CONDITION_MATCH: coalaesce Rx packets when patterns
 *	in a rule are matched.
 * @NL80211_COALESCE_CONDITION_NO_MATCH: coalesce Rx packets when patterns
 *	in a rule are not matched.
 */
enum nl80211_coalesce_condition {
	NL80211_COALESCE_CONDITION_MATCH,
	NL80211_COALESCE_CONDITION_NO_MATCH
};

/**
 * enum nl80211_iface_limit_attrs - limit attributes
 * @NL80211_IFACE_LIMIT_UNSPEC: (reserved)
 * @NL80211_IFACE_LIMIT_MAX: maximum number of interfaces that
 *	can be chosen from this set of interface types (u32)
 * @NL80211_IFACE_LIMIT_TYPES: nested attribute containing a
 *	flag attribute for each interface type in this set
 * @NUM_NL80211_IFACE_LIMIT: number of attributes
 * @MAX_NL80211_IFACE_LIMIT: highest attribute number
 */
enum nl80211_iface_limit_attrs {
	NL80211_IFACE_LIMIT_UNSPEC,
	NL80211_IFACE_LIMIT_MAX,
	NL80211_IFACE_LIMIT_TYPES,

	/* keep last */
	NUM_NL80211_IFACE_LIMIT,
	MAX_NL80211_IFACE_LIMIT = NUM_NL80211_IFACE_LIMIT - 1
};

/**
 * enum nl80211_if_combination_attrs -- interface combination attributes
 *
 * @NL80211_IFACE_COMB_UNSPEC: (reserved)
 * @NL80211_IFACE_COMB_LIMITS: Nested attributes containing the limits
 *	for given interface types, see &enum nl80211_iface_limit_attrs.
 * @NL80211_IFACE_COMB_MAXNUM: u32 attribute giving the total number of
 *	interfaces that can be created in this group. This number doesn't
 *	apply to interfaces purely managed in software, which are listed
 *	in a separate attribute %NL80211_ATTR_INTERFACES_SOFTWARE.
 * @NL80211_IFACE_COMB_STA_AP_BI_MATCH: flag attribute specifying that
 *	beacon intervals within this group must be all the same even for
 *	infrastructure and AP/GO combinations, i.e. the GO(s) must adopt
 *	the infrastructure network's beacon interval.
 * @NL80211_IFACE_COMB_NUM_CHANNELS: u32 attribute specifying how many
 *	different channels may be used within this group.
 * @NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS: u32 attribute containing the bitmap
 *	of supported channel widths for radar detection.
 * @NL80211_IFACE_COMB_RADAR_DETECT_REGIONS: u32 attribute containing the bitmap
 *	of supported regulatory regions for radar detection.
 * @NL80211_IFACE_COMB_BI_MIN_GCD: u32 attribute specifying the minimum GCD of
 *	different beacon intervals supported by all the interface combinations
 *	in this group (if not present, all beacon intervals be identical).
 * @NUM_NL80211_IFACE_COMB: number of attributes
 * @MAX_NL80211_IFACE_COMB: highest attribute number
 *
 * Examples:
 *	limits = [ #{STA} <= 1, #{AP} <= 1 ], matching BI, channels = 1, max = 2
 *	=> allows an AP and a STA that must match BIs
 *
 *	numbers = [ #{AP, P2P-GO} <= 8 ], BI min gcd, channels = 1, max = 8,
 *	=> allows 8 of AP/GO that can have BI gcd >= min gcd
 *
 *	numbers = [ #{STA} <= 2 ], channels = 2, max = 2
 *	=> allows two STAs on the same or on different channels
 *
 *	numbers = [ #{STA} <= 1, #{P2P-client,P2P-GO} <= 3 ], max = 4
 *	=> allows a STA plus three P2P interfaces
 *
 * The list of these four possibilities could completely be contained
 * within the %NL80211_ATTR_INTERFACE_COMBINATIONS attribute to indicate
 * that any of these groups must match.
 *
 * "Combinations" of just a single interface will not be listed here,
 * a single interface of any valid interface type is assumed to always
 * be possible by itself. This means that implicitly, for each valid
 * interface type, the following group always exists:
 *	numbers = [ #{<type>} <= 1 ], channels = 1, max = 1
 */
enum nl80211_if_combination_attrs {
	NL80211_IFACE_COMB_UNSPEC,
	NL80211_IFACE_COMB_LIMITS,
	NL80211_IFACE_COMB_MAXNUM,
	NL80211_IFACE_COMB_STA_AP_BI_MATCH,
	NL80211_IFACE_COMB_NUM_CHANNELS,
	NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS,
	NL80211_IFACE_COMB_RADAR_DETECT_REGIONS,
	NL80211_IFACE_COMB_BI_MIN_GCD,

	/* keep last */
	NUM_NL80211_IFACE_COMB,
	MAX_NL80211_IFACE_COMB = NUM_NL80211_IFACE_COMB - 1
};


/**
 * enum nl80211_plink_state - state of a mesh peer link finite state machine
 *
 * @NL80211_PLINK_LISTEN: initial state, considered the implicit
 *	state of non existent mesh peer links
 * @NL80211_PLINK_OPN_SNT: mesh plink open frame has been sent to
 *	this mesh peer
 * @NL80211_PLINK_OPN_RCVD: mesh plink open frame has been received
 *	from this mesh peer
 * @NL80211_PLINK_CNF_RCVD: mesh plink confirm frame has been
 *	received from this mesh peer
 * @NL80211_PLINK_ESTAB: mesh peer link is established
 * @NL80211_PLINK_HOLDING: mesh peer link is being closed or cancelled
 * @NL80211_PLINK_BLOCKED: all frames transmitted from this mesh
 *	plink are discarded, except for authentication frames
 * @NUM_NL80211_PLINK_STATES: number of peer link states
 * @MAX_NL80211_PLINK_STATES: highest numerical value of plink states
 */
enum nl80211_plink_state {
	NL80211_PLINK_LISTEN,
	NL80211_PLINK_OPN_SNT,
	NL80211_PLINK_OPN_RCVD,
	NL80211_PLINK_CNF_RCVD,
	NL80211_PLINK_ESTAB,
	NL80211_PLINK_HOLDING,
	NL80211_PLINK_BLOCKED,

	/* keep last */
	NUM_NL80211_PLINK_STATES,
	MAX_NL80211_PLINK_STATES = NUM_NL80211_PLINK_STATES - 1
};

/**
 * enum nl80211_plink_action - actions to perform in mesh peers
 *
 * @NL80211_PLINK_ACTION_NO_ACTION: perform no action
 * @NL80211_PLINK_ACTION_OPEN: start mesh peer link establishment
 * @NL80211_PLINK_ACTION_BLOCK: block traffic from this mesh peer
 * @NUM_NL80211_PLINK_ACTIONS: number of possible actions
 */
enum plink_actions {
	NL80211_PLINK_ACTION_NO_ACTION,
	NL80211_PLINK_ACTION_OPEN,
	NL80211_PLINK_ACTION_BLOCK,

	NUM_NL80211_PLINK_ACTIONS,
};


#define NL80211_KCK_LEN			16
#define NL80211_KEK_LEN			16
#define NL80211_KCK_EXT_LEN		24
#define NL80211_KEK_EXT_LEN		32
#define NL80211_REPLAY_CTR_LEN		8

/**
 * enum nl80211_rekey_data - attributes for GTK rekey offload
 * @__NL80211_REKEY_DATA_INVALID: invalid number for nested attributes
 * @NL80211_REKEY_DATA_KEK: key encryption key (binary)
 * @NL80211_REKEY_DATA_KCK: key confirmation key (binary)
 * @NL80211_REKEY_DATA_REPLAY_CTR: replay counter (binary)
 * @NL80211_REKEY_DATA_AKM: AKM data (OUI, suite type)
 * @NUM_NL80211_REKEY_DATA: number of rekey attributes (internal)
 * @MAX_NL80211_REKEY_DATA: highest rekey attribute (internal)
 */
enum nl80211_rekey_data {
	__NL80211_REKEY_DATA_INVALID,
	NL80211_REKEY_DATA_KEK,
	NL80211_REKEY_DATA_KCK,
	NL80211_REKEY_DATA_REPLAY_CTR,
	NL80211_REKEY_DATA_AKM,

	/* keep last */
	NUM_NL80211_REKEY_DATA,
	MAX_NL80211_REKEY_DATA = NUM_NL80211_REKEY_DATA - 1
};

/**
 * enum nl80211_hidden_ssid - values for %NL80211_ATTR_HIDDEN_SSID
 * @NL80211_HIDDEN_SSID_NOT_IN_USE: do not hide SSID (i.e., broadcast it in
 *	Beacon frames)
 * @NL80211_HIDDEN_SSID_ZERO_LEN: hide SSID by using zero-length SSID element
 *	in Beacon frames
 * @NL80211_HIDDEN_SSID_ZERO_CONTENTS: hide SSID by using correct length of SSID
 *	element in Beacon frames but zero out each byte in the SSID
 */
enum nl80211_hidden_ssid {
	NL80211_HIDDEN_SSID_NOT_IN_USE,
	NL80211_HIDDEN_SSID_ZERO_LEN,
	NL80211_HIDDEN_SSID_ZERO_CONTENTS
};

/**
 * enum nl80211_sta_wme_attr - station WME attributes
 * @__NL80211_STA_WME_INVALID: invalid number for nested attribute
 * @NL80211_STA_WME_UAPSD_QUEUES: bitmap of uapsd queues. the format
 *	is the same as the AC bitmap in the QoS info field.
 * @NL80211_STA_WME_MAX_SP: max service period. the format is the same
 *	as the MAX_SP field in the QoS info field (but already shifted down).
 * @__NL80211_STA_WME_AFTER_LAST: internal
 * @NL80211_STA_WME_MAX: highest station WME attribute
 */
enum nl80211_sta_wme_attr {
	__NL80211_STA_WME_INVALID,
	NL80211_STA_WME_UAPSD_QUEUES,
	NL80211_STA_WME_MAX_SP,

	/* keep last */
	__NL80211_STA_WME_AFTER_LAST,
	NL80211_STA_WME_MAX = __NL80211_STA_WME_AFTER_LAST - 1
};

/**
 * enum nl80211_pmksa_candidate_attr - attributes for PMKSA caching candidates
 * @__NL80211_PMKSA_CANDIDATE_INVALID: invalid number for nested attributes
 * @NL80211_PMKSA_CANDIDATE_INDEX: candidate index (u32; the smaller, the higher
 *	priority)
 * @NL80211_PMKSA_CANDIDATE_BSSID: candidate BSSID (6 octets)
 * @NL80211_PMKSA_CANDIDATE_PREAUTH: RSN pre-authentication supported (flag)
 * @NUM_NL80211_PMKSA_CANDIDATE: number of PMKSA caching candidate attributes
 *	(internal)
 * @MAX_NL80211_PMKSA_CANDIDATE: highest PMKSA caching candidate attribute
 *	(internal)
 */
enum nl80211_pmksa_candidate_attr {
	__NL80211_PMKSA_CANDIDATE_INVALID,
	NL80211_PMKSA_CANDIDATE_INDEX,
	NL80211_PMKSA_CANDIDATE_BSSID,
	NL80211_PMKSA_CANDIDATE_PREAUTH,

	/* keep last */
	NUM_NL80211_PMKSA_CANDIDATE,
	MAX_NL80211_PMKSA_CANDIDATE = NUM_NL80211_PMKSA_CANDIDATE - 1
};

/**
 * enum nl80211_tdls_operation - values for %NL80211_ATTR_TDLS_OPERATION
 * @NL80211_TDLS_DISCOVERY_REQ: Send a TDLS discovery request
 * @NL80211_TDLS_SETUP: Setup TDLS link
 * @NL80211_TDLS_TEARDOWN: Teardown a TDLS link which is already established
 * @NL80211_TDLS_ENABLE_LINK: Enable TDLS link
 * @NL80211_TDLS_DISABLE_LINK: Disable TDLS link
 */
enum nl80211_tdls_operation {
	NL80211_TDLS_DISCOVERY_REQ,
	NL80211_TDLS_SETUP,
	NL80211_TDLS_TEARDOWN,
	NL80211_TDLS_ENABLE_LINK,
	NL80211_TDLS_DISABLE_LINK,
};

/**
 * enum nl80211_ap_sme_features - device-integrated AP features
 * @NL80211_AP_SME_SA_QUERY_OFFLOAD: SA Query procedures offloaded to driver
 *	when user space indicates support for SA Query procedures offload during
 *	"start ap" with %NL80211_AP_SETTINGS_SA_QUERY_OFFLOAD_SUPPORT.
 */
enum nl80211_ap_sme_features {
	NL80211_AP_SME_SA_QUERY_OFFLOAD		= 1 << 0,
};

/**
 * enum nl80211_feature_flags - device/driver features
 * @NL80211_FEATURE_SK_TX_STATUS: This driver supports reflecting back
 *	TX status to the socket error queue when requested with the
 *	socket option.
 * @NL80211_FEATURE_HT_IBSS: This driver supports IBSS with HT datarates.
 * @NL80211_FEATURE_INACTIVITY_TIMER: This driver takes care of freeing up
 *	the connected inactive stations in AP mode.
 * @NL80211_FEATURE_CELL_BASE_REG_HINTS: This driver has been tested
 *	to work properly to support receiving regulatory hints from
 *	cellular base stations.
 * @NL80211_FEATURE_P2P_DEVICE_NEEDS_CHANNEL: (no longer available, only
 *	here to reserve the value for API/ABI compatibility)
 * @NL80211_FEATURE_SAE: This driver supports simultaneous authentication of
 *	equals (SAE) with user space SME (NL80211_CMD_AUTHENTICATE) in station
 *	mode
 * @NL80211_FEATURE_LOW_PRIORITY_SCAN: This driver supports low priority scan
 * @NL80211_FEATURE_SCAN_FLUSH: Scan flush is supported
 * @NL80211_FEATURE_AP_SCAN: Support scanning using an AP vif
 * @NL80211_FEATURE_VIF_TXPOWER: The driver supports per-vif TX power setting
 * @NL80211_FEATURE_NEED_OBSS_SCAN: The driver expects userspace to perform
 *	OBSS scans and generate 20/40 BSS coex reports. This flag is used only
 *	for drivers implementing the CONNECT API, for AUTH/ASSOC it is implied.
 * @NL80211_FEATURE_P2P_GO_CTWIN: P2P GO implementation supports CT Window
 *	setting
 * @NL80211_FEATURE_P2P_GO_OPPPS: P2P GO implementation supports opportunistic
 *	powersave
 * @NL80211_FEATURE_FULL_AP_CLIENT_STATE: The driver supports full state
 *	transitions for AP clients. Without this flag (and if the driver
 *	doesn't have the AP SME in the device) the driver supports adding
 *	stations only when they're associated and adds them in associated
 *	state (to later be transitioned into authorized), with this flag
 *	they should be added before even sending the authentication reply
 *	and then transitioned into authenticated, associated and authorized
 *	states using station flags.
 *	Note that even for drivers that support this, the default is to add
 *	stations in authenticated/associated state, so to add unauthenticated
 *	stations the authenticated/associated bits have to be set in the mask.
 * @NL80211_FEATURE_ADVERTISE_CHAN_LIMITS: cfg80211 advertises channel limits
 *	(HT40, VHT 80/160 MHz) if this flag is set
 * @NL80211_FEATURE_USERSPACE_MPM: This driver supports a userspace Mesh
 *	Peering Management entity which may be implemented by registering for
 *	beacons or NL80211_CMD_NEW_PEER_CANDIDATE events. The mesh beacon is
 *	still generated by the driver.
 * @NL80211_FEATURE_ACTIVE_MONITOR: This driver supports an active monitor
 *	interface. An active monitor interface behaves like a normal monitor
 *	interface, but gets added to the driver. It ensures that incoming
 *	unicast packets directed at the configured interface address get ACKed.
 * @NL80211_FEATURE_AP_MODE_CHAN_WIDTH_CHANGE: This driver supports dynamic
 *	channel bandwidth change (e.g., HT 20 <-> 40 MHz channel) during the
 *	lifetime of a BSS.
 * @NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES: This device adds a DS Parameter
 *	Set IE to probe requests.
 * @NL80211_FEATURE_WFA_TPC_IE_IN_PROBES: This device adds a WFA TPC Report IE
 *	to probe requests.
 * @NL80211_FEATURE_QUIET: This device, in client mode, supports Quiet Period
 *	requests sent to it by an AP.
 * @NL80211_FEATURE_TX_POWER_INSERTION: This device is capable of inserting the
 *	current tx power value into the TPC Report IE in the spectrum
 *	management TPC Report action frame, and in the Radio Measurement Link
 *	Measurement Report action frame.
 * @NL80211_FEATURE_ACKTO_ESTIMATION: This driver supports dynamic ACK timeout
 *	estimation (dynack). %NL80211_ATTR_WIPHY_DYN_ACK flag attribute is used
 *	to enable dynack.
 * @NL80211_FEATURE_STATIC_SMPS: Device supports static spatial
 *	multiplexing powersave, ie. can turn off all but one chain
 *	even on HT connections that should be using more chains.
 * @NL80211_FEATURE_DYNAMIC_SMPS: Device supports dynamic spatial
 *	multiplexing powersave, ie. can turn off all but one chain
 *	and then wake the rest up as required after, for example,
 *	rts/cts handshake.
 * @NL80211_FEATURE_SUPPORTS_WMM_ADMISSION: the device supports setting up WMM
 *	TSPEC sessions (TID aka TSID 0-7) with the %NL80211_CMD_ADD_TX_TS
 *	command. Standard IEEE 802.11 TSPEC setup is not yet supported, it
 *	needs to be able to handle Block-Ack agreements and other things.
 * @NL80211_FEATURE_MAC_ON_CREATE: Device supports configuring
 *	the vif's MAC address upon creation.
 *	See 'macaddr' field in the vif_params (cfg80211.h).
 * @NL80211_FEATURE_TDLS_CHANNEL_SWITCH: Driver supports channel switching when
 *	operating as a TDLS peer.
 * @NL80211_FEATURE_SCAN_RANDOM_MAC_ADDR: This device/driver supports using a
 *	random MAC address during scan (if the device is unassociated); the
 *	%NL80211_SCAN_FLAG_RANDOM_ADDR flag may be set for scans and the MAC
 *	address mask/value will be used.
 * @NL80211_FEATURE_SCHED_SCAN_RANDOM_MAC_ADDR: This device/driver supports
 *	using a random MAC address for every scan iteration during scheduled
 *	scan (while not associated), the %NL80211_SCAN_FLAG_RANDOM_ADDR may
 *	be set for scheduled scan and the MAC address mask/value will be used.
 * @NL80211_FEATURE_ND_RANDOM_MAC_ADDR: This device/driver supports using a
 *	random MAC address for every scan iteration during "net detect", i.e.
 *	scan in unassociated WoWLAN, the %NL80211_SCAN_FLAG_RANDOM_ADDR may
 *	be set for scheduled scan and the MAC address mask/value will be used.
 */
enum nl80211_feature_flags {
	NL80211_FEATURE_SK_TX_STATUS			= 1 << 0,
	NL80211_FEATURE_HT_IBSS				= 1 << 1,
	NL80211_FEATURE_INACTIVITY_TIMER		= 1 << 2,
	NL80211_FEATURE_CELL_BASE_REG_HINTS		= 1 << 3,
	NL80211_FEATURE_P2P_DEVICE_NEEDS_CHANNEL	= 1 << 4,
	NL80211_FEATURE_SAE				= 1 << 5,
	NL80211_FEATURE_LOW_PRIORITY_SCAN		= 1 << 6,
	NL80211_FEATURE_SCAN_FLUSH			= 1 << 7,
	NL80211_FEATURE_AP_SCAN				= 1 << 8,
	NL80211_FEATURE_VIF_TXPOWER			= 1 << 9,
	NL80211_FEATURE_NEED_OBSS_SCAN			= 1 << 10,
	NL80211_FEATURE_P2P_GO_CTWIN			= 1 << 11,
	NL80211_FEATURE_P2P_GO_OPPPS			= 1 << 12,
	/* bit 13 is reserved */
	NL80211_FEATURE_ADVERTISE_CHAN_LIMITS		= 1 << 14,
	NL80211_FEATURE_FULL_AP_CLIENT_STATE		= 1 << 15,
	NL80211_FEATURE_USERSPACE_MPM			= 1 << 16,
	NL80211_FEATURE_ACTIVE_MONITOR			= 1 << 17,
	NL80211_FEATURE_AP_MODE_CHAN_WIDTH_CHANGE	= 1 << 18,
	NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES	= 1 << 19,
	NL80211_FEATURE_WFA_TPC_IE_IN_PROBES		= 1 << 20,
	NL80211_FEATURE_QUIET				= 1 << 21,
	NL80211_FEATURE_TX_POWER_INSERTION		= 1 << 22,
	NL80211_FEATURE_ACKTO_ESTIMATION		= 1 << 23,
	NL80211_FEATURE_STATIC_SMPS			= 1 << 24,
	NL80211_FEATURE_DYNAMIC_SMPS			= 1 << 25,
	NL80211_FEATURE_SUPPORTS_WMM_ADMISSION		= 1 << 26,
	NL80211_FEATURE_MAC_ON_CREATE			= 1 << 27,
	NL80211_FEATURE_TDLS_CHANNEL_SWITCH		= 1 << 28,
	NL80211_FEATURE_SCAN_RANDOM_MAC_ADDR		= 1 << 29,
	NL80211_FEATURE_SCHED_SCAN_RANDOM_MAC_ADDR	= 1 << 30,
	NL80211_FEATURE_ND_RANDOM_MAC_ADDR		= 1U << 31,
};

/**
 * enum nl80211_ext_feature_index - bit index of extended features.
 * @NL80211_EXT_FEATURE_VHT_IBSS: This driver supports IBSS with VHT datarates.
 * @NL80211_EXT_FEATURE_RRM: This driver supports RRM. When featured, user can
 *	request to use RRM (see %NL80211_ATTR_USE_RRM) with
 *	%NL80211_CMD_ASSOCIATE and %NL80211_CMD_CONNECT requests, which will set
 *	the ASSOC_REQ_USE_RRM flag in the association request even if
 *	NL80211_FEATURE_QUIET is not advertized.
 * @NL80211_EXT_FEATURE_MU_MIMO_AIR_SNIFFER: This device supports MU-MIMO air
 *	sniffer which means that it can be configured to hear packets from
 *	certain groups which can be configured by the
 *	%NL80211_ATTR_MU_MIMO_GROUP_DATA attribute,
 *	or can be configured to follow a station by configuring the
 *	%NL80211_ATTR_MU_MIMO_FOLLOW_MAC_ADDR attribute.
 * @NL80211_EXT_FEATURE_SCAN_START_TIME: This driver includes the actual
 *	time the scan started in scan results event. The time is the TSF of
 *	the BSS that the interface that requested the scan is connected to
 *	(if available).
 * @NL80211_EXT_FEATURE_BSS_PARENT_TSF: Per BSS, this driver reports the
 *	time the last beacon/probe was received. The time is the TSF of the
 *	BSS that the interface that requested the scan is connected to
 *	(if available).
 * @NL80211_EXT_FEATURE_SET_SCAN_DWELL: This driver supports configuration of
 *	channel dwell time.
 * @NL80211_EXT_FEATURE_BEACON_RATE_LEGACY: Driver supports beacon rate
 *	configuration (AP/mesh), supporting a legacy (non HT/VHT) rate.
 * @NL80211_EXT_FEATURE_BEACON_RATE_HT: Driver supports beacon rate
 *	configuration (AP/mesh) with HT rates.
 * @NL80211_EXT_FEATURE_BEACON_RATE_VHT: Driver supports beacon rate
 *	configuration (AP/mesh) with VHT rates.
 * @NL80211_EXT_FEATURE_FILS_STA: This driver supports Fast Initial Link Setup
 *	with user space SME (NL80211_CMD_AUTHENTICATE) in station mode.
 * @NL80211_EXT_FEATURE_MGMT_TX_RANDOM_TA: This driver supports randomized TA
 *	in @NL80211_CMD_FRAME while not associated.
 * @NL80211_EXT_FEATURE_MGMT_TX_RANDOM_TA_CONNECTED: This driver supports
 *	randomized TA in @NL80211_CMD_FRAME while associated.
 * @NL80211_EXT_FEATURE_SCHED_SCAN_RELATIVE_RSSI: The driver supports sched_scan
 *	for reporting BSSs with better RSSI than the current connected BSS
 *	(%NL80211_ATTR_SCHED_SCAN_RELATIVE_RSSI).
 * @NL80211_EXT_FEATURE_CQM_RSSI_LIST: With this driver the
 *	%NL80211_ATTR_CQM_RSSI_THOLD attribute accepts a list of zero or more
 *	RSSI threshold values to monitor rather than exactly one threshold.
 * @NL80211_EXT_FEATURE_FILS_SK_OFFLOAD: Driver SME supports FILS shared key
 *	authentication with %NL80211_CMD_CONNECT.
 * @NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_PSK: Device wants to do 4-way
 *	handshake with PSK in station mode (PSK is passed as part of the connect
 *	and associate commands), doing it in the host might not be supported.
 * @NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_1X: Device wants to do doing 4-way
 *	handshake with 802.1X in station mode (will pass EAP frames to the host
 *	and accept the set_pmk/del_pmk commands), doing it in the host might not
 *	be supported.
 * @NL80211_EXT_FEATURE_FILS_MAX_CHANNEL_TIME: Driver is capable of overriding
 *	the max channel attribute in the FILS request params IE with the
 *	actual dwell time.
 * @NL80211_EXT_FEATURE_ACCEPT_BCAST_PROBE_RESP: Driver accepts broadcast probe
 *	response
 * @NL80211_EXT_FEATURE_OCE_PROBE_REQ_HIGH_TX_RATE: Driver supports sending
 *	the first probe request in each channel at rate of at least 5.5Mbps.
 * @NL80211_EXT_FEATURE_OCE_PROBE_REQ_DEFERRAL_SUPPRESSION: Driver supports
 *	probe request tx deferral and suppression
 * @NL80211_EXT_FEATURE_MFP_OPTIONAL: Driver supports the %NL80211_MFP_OPTIONAL
 *	value in %NL80211_ATTR_USE_MFP.
 * @NL80211_EXT_FEATURE_LOW_SPAN_SCAN: Driver supports low span scan.
 * @NL80211_EXT_FEATURE_LOW_POWER_SCAN: Driver supports low power scan.
 * @NL80211_EXT_FEATURE_HIGH_ACCURACY_SCAN: Driver supports high accuracy scan.
 * @NL80211_EXT_FEATURE_DFS_OFFLOAD: HW/driver will offload DFS actions.
 *	Device or driver will do all DFS-related actions by itself,
 *	informing user-space about CAC progress, radar detection event,
 *	channel change triggered by radar detection event.
 *	No need to start CAC from user-space, no need to react to
 *	"radar detected" event.
 * @NL80211_EXT_FEATURE_CONTROL_PORT_OVER_NL80211: Driver supports sending and
 *	receiving control port frames over nl80211 instead of the netdevice.
 * @NL80211_EXT_FEATURE_ACK_SIGNAL_SUPPORT: This driver/device supports
 *	(average) ACK signal strength reporting.
 * @NL80211_EXT_FEATURE_TXQS: Driver supports FQ-CoDel-enabled intermediate
 *      TXQs.
 * @NL80211_EXT_FEATURE_SCAN_RANDOM_SN: Driver/device supports randomizing the
 *	SN in probe request frames if requested by %NL80211_SCAN_FLAG_RANDOM_SN.
 * @NL80211_EXT_FEATURE_SCAN_MIN_PREQ_CONTENT: Driver/device can omit all data
 *	except for supported rates from the probe request content if requested
 *	by the %NL80211_SCAN_FLAG_MIN_PREQ_CONTENT flag.
 * @NL80211_EXT_FEATURE_ENABLE_FTM_RESPONDER: Driver supports enabling fine
 *	timing measurement responder role.
 *
 * @NL80211_EXT_FEATURE_CAN_REPLACE_PTK0: Driver/device confirm that they are
 *      able to rekey an in-use key correctly. Userspace must not rekey PTK keys
 *      if this flag is not set. Ignoring this can leak clear text packets and/or
 *      freeze the connection.
 * @NL80211_EXT_FEATURE_EXT_KEY_ID: Driver supports "Extended Key ID for
 *      Individually Addressed Frames" from IEEE802.11-2016.
 *
 * @NL80211_EXT_FEATURE_AIRTIME_FAIRNESS: Driver supports getting airtime
 *	fairness for transmitted packets and has enabled airtime fairness
 *	scheduling.
 *
 * @NL80211_EXT_FEATURE_AP_PMKSA_CACHING: Driver/device supports PMKSA caching
 *	(set/del PMKSA operations) in AP mode.
 *
 * @NL80211_EXT_FEATURE_SCHED_SCAN_BAND_SPECIFIC_RSSI_THOLD: Driver supports
 *	filtering of sched scan results using band specific RSSI thresholds.
 *
 * @NL80211_EXT_FEATURE_STA_TX_PWR: This driver supports controlling tx power
 *	to a station.
 *
 * @NL80211_EXT_FEATURE_SAE_OFFLOAD: Device wants to do SAE authentication in
 *	station mode (SAE password is passed as part of the connect command).
 *
 * @NL80211_EXT_FEATURE_VLAN_OFFLOAD: The driver supports a single netdev
 *	with VLAN tagged frames and separate VLAN-specific netdevs added using
 *	vconfig similarly to the Ethernet case.
 *
 * @NL80211_EXT_FEATURE_AQL: The driver supports the Airtime Queue Limit (AQL)
 *	feature, which prevents bufferbloat by using the expected transmission
 *	time to limit the amount of data buffered in the hardware.
 *
 * @NL80211_EXT_FEATURE_BEACON_PROTECTION: The driver supports Beacon protection
 *	and can receive key configuration for BIGTK using key indexes 6 and 7.
 * @NL80211_EXT_FEATURE_BEACON_PROTECTION_CLIENT: The driver supports Beacon
 *	protection as a client only and cannot transmit protected beacons.
 *
 * @NL80211_EXT_FEATURE_CONTROL_PORT_NO_PREAUTH: The driver can disable the
 *	forwarding of preauth frames over the control port. They are then
 *	handled as ordinary data frames.
 *
 * @NL80211_EXT_FEATURE_PROTECTED_TWT: Driver supports protected TWT frames
 *
 * @NL80211_EXT_FEATURE_DEL_IBSS_STA: The driver supports removing stations
 *      in IBSS mode, essentially by dropping their state.
 *
 * @NL80211_EXT_FEATURE_MULTICAST_REGISTRATIONS: management frame registrations
 *	are possible for multicast frames and those will be reported properly.
 *
 * @NL80211_EXT_FEATURE_SCAN_FREQ_KHZ: This driver supports receiving and
 *	reporting scan request with %NL80211_ATTR_SCAN_FREQ_KHZ. In order to
 *	report %NL80211_ATTR_SCAN_FREQ_KHZ, %NL80211_SCAN_FLAG_FREQ_KHZ must be
 *	included in the scan request.
 *
 * @NL80211_EXT_FEATURE_CONTROL_PORT_OVER_NL80211_TX_STATUS: The driver
 *	can report tx status for control port over nl80211 tx operations.
 *
 * @NL80211_EXT_FEATURE_OPERATING_CHANNEL_VALIDATION: Driver supports Operating
 *	Channel Validation (OCV) when using driver's SME for RSNA handshakes.
 *
 * @NL80211_EXT_FEATURE_4WAY_HANDSHAKE_AP_PSK: Device wants to do 4-way
 *	handshake with PSK in AP mode (PSK is passed as part of the start AP
 *	command).
 *
 * @NL80211_EXT_FEATURE_SAE_OFFLOAD_AP: Device wants to do SAE authentication
 *	in AP mode (SAE password is passed as part of the start AP command).
 *
 * @NL80211_EXT_FEATURE_FILS_DISCOVERY: Driver/device supports FILS discovery
 *	frames transmission
 *
 * @NL80211_EXT_FEATURE_UNSOL_BCAST_PROBE_RESP: Driver/device supports
 *	unsolicited broadcast probe response transmission
 *
 * @NL80211_EXT_FEATURE_BEACON_RATE_HE: Driver supports beacon rate
 *	configuration (AP/mesh) with HE rates.
 *
 * @NL80211_EXT_FEATURE_SECURE_LTF: Device supports secure LTF measurement
 *      exchange protocol.
 *
 * @NL80211_EXT_FEATURE_SECURE_RTT: Device supports secure RTT measurement
 *      exchange protocol.
 *
 * @NL80211_EXT_FEATURE_PROT_RANGE_NEGO_AND_MEASURE: Device supports management
 *      frame protection for all management frames exchanged during the
 *      negotiation and range measurement procedure.
 *
 * @NL80211_EXT_FEATURE_BSS_COLOR: The driver supports BSS color collision
 *	detection and change announcemnts.
 *
 * @NL80211_EXT_FEATURE_FILS_CRYPTO_OFFLOAD: Driver running in AP mode supports
 *	FILS encryption and decryption for (Re)Association Request and Response
 *	frames. Userspace has to share FILS AAD details to the driver by using
 *	@NL80211_CMD_SET_FILS_AAD.
 *
 * @NL80211_EXT_FEATURE_RADAR_BACKGROUND: Device supports background radar/CAC
 *	detection.
 *
 * @NL80211_EXT_FEATURE_POWERED_ADDR_CHANGE: Device can perform a MAC address
 *	change without having to bring the underlying network device down
 *	first. For example, in station mode this can be used to vary the
 *	origin MAC address prior to a connection to a new AP for privacy
 *	or other reasons. Note that certain driver specific restrictions
 *	might apply, e.g. no scans in progress, no offchannel operations
 *	in progress, and no active connections.
 *
 * @NUM_NL80211_EXT_FEATURES: number of extended features.
 * @MAX_NL80211_EXT_FEATURES: highest extended feature index.
 */
enum nl80211_ext_feature_index {
	NL80211_EXT_FEATURE_VHT_IBSS,
	NL80211_EXT_FEATURE_RRM,
	NL80211_EXT_FEATURE_MU_MIMO_AIR_SNIFFER,
	NL80211_EXT_FEATURE_SCAN_START_TIME,
	NL80211_EXT_FEATURE_BSS_PARENT_TSF,
	NL80211_EXT_FEATURE_SET_SCAN_DWELL,
	NL80211_EXT_FEATURE_BEACON_RATE_LEGACY,
	NL80211_EXT_FEATURE_BEACON_RATE_HT,
	NL80211_EXT_FEATURE_BEACON_RATE_VHT,
	NL80211_EXT_FEATURE_FILS_STA,
	NL80211_EXT_FEATURE_MGMT_TX_RANDOM_TA,
	NL80211_EXT_FEATURE_MGMT_TX_RANDOM_TA_CONNECTED,
	NL80211_EXT_FEATURE_SCHED_SCAN_RELATIVE_RSSI,
	NL80211_EXT_FEATURE_CQM_RSSI_LIST,
	NL80211_EXT_FEATURE_FILS_SK_OFFLOAD,
	NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_PSK,
	NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_1X,
	NL80211_EXT_FEATURE_FILS_MAX_CHANNEL_TIME,
	NL80211_EXT_FEATURE_ACCEPT_BCAST_PROBE_RESP,
	NL80211_EXT_FEATURE_OCE_PROBE_REQ_HIGH_TX_RATE,
	NL80211_EXT_FEATURE_OCE_PROBE_REQ_DEFERRAL_SUPPRESSION,
	NL80211_EXT_FEATURE_MFP_OPTIONAL,
	NL80211_EXT_FEATURE_LOW_SPAN_SCAN,
	NL80211_EXT_FEATURE_LOW_POWER_SCAN,
	NL80211_EXT_FEATURE_HIGH_ACCURACY_SCAN,
	NL80211_EXT_FEATURE_DFS_OFFLOAD,
	NL80211_EXT_FEATURE_CONTROL_PORT_OVER_NL80211,
	NL80211_EXT_FEATURE_ACK_SIGNAL_SUPPORT,
	/* we renamed this - stay compatible */
	NL80211_EXT_FEATURE_DATA_ACK_SIGNAL_SUPPORT = NL80211_EXT_FEATURE_ACK_SIGNAL_SUPPORT,
	NL80211_EXT_FEATURE_TXQS,
	NL80211_EXT_FEATURE_SCAN_RANDOM_SN,
	NL80211_EXT_FEATURE_SCAN_MIN_PREQ_CONTENT,
	NL80211_EXT_FEATURE_CAN_REPLACE_PTK0,
	NL80211_EXT_FEATURE_ENABLE_FTM_RESPONDER,
	NL80211_EXT_FEATURE_AIRTIME_FAIRNESS,
	NL80211_EXT_FEATURE_AP_PMKSA_CACHING,
	NL80211_EXT_FEATURE_SCHED_SCAN_BAND_SPECIFIC_RSSI_THOLD,
	NL80211_EXT_FEATURE_EXT_KEY_ID,
	NL80211_EXT_FEATURE_STA_TX_PWR,
	NL80211_EXT_FEATURE_SAE_OFFLOAD,
	NL80211_EXT_FEATURE_VLAN_OFFLOAD,
	NL80211_EXT_FEATURE_AQL,
	NL80211_EXT_FEATURE_BEACON_PROTECTION,
	NL80211_EXT_FEATURE_CONTROL_PORT_NO_PREAUTH,
	NL80211_EXT_FEATURE_PROTECTED_TWT,
	NL80211_EXT_FEATURE_DEL_IBSS_STA,
	NL80211_EXT_FEATURE_MULTICAST_REGISTRATIONS,
	NL80211_EXT_FEATURE_BEACON_PROTECTION_CLIENT,
	NL80211_EXT_FEATURE_SCAN_FREQ_KHZ,
	NL80211_EXT_FEATURE_CONTROL_PORT_OVER_NL80211_TX_STATUS,
	NL80211_EXT_FEATURE_OPERATING_CHANNEL_VALIDATION,
	NL80211_EXT_FEATURE_4WAY_HANDSHAKE_AP_PSK,
	NL80211_EXT_FEATURE_SAE_OFFLOAD_AP,
	NL80211_EXT_FEATURE_FILS_DISCOVERY,
	NL80211_EXT_FEATURE_UNSOL_BCAST_PROBE_RESP,
	NL80211_EXT_FEATURE_BEACON_RATE_HE,
	NL80211_EXT_FEATURE_SECURE_LTF,
	NL80211_EXT_FEATURE_SECURE_RTT,
	NL80211_EXT_FEATURE_PROT_RANGE_NEGO_AND_MEASURE,
	NL80211_EXT_FEATURE_BSS_COLOR,
	NL80211_EXT_FEATURE_FILS_CRYPTO_OFFLOAD,
	NL80211_EXT_FEATURE_RADAR_BACKGROUND,
	NL80211_EXT_FEATURE_POWERED_ADDR_CHANGE,

	/* add new features before the definition below */
	NUM_NL80211_EXT_FEATURES,
	MAX_NL80211_EXT_FEATURES = NUM_NL80211_EXT_FEATURES - 1
};

/**
 * enum nl80211_probe_resp_offload_support_attr - optional supported
 *	protocols for probe-response offloading by the driver/FW.
 *	To be used with the %NL80211_ATTR_PROBE_RESP_OFFLOAD attribute.
 *	Each enum value represents a bit in the bitmap of supported
 *	protocols. Typically a subset of probe-requests belonging to a
 *	supported protocol will be excluded from offload and uploaded
 *	to the host.
 *
 * @NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS: Support for WPS ver. 1
 * @NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2: Support for WPS ver. 2
 * @NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P: Support for P2P
 * @NL80211_PROBE_RESP_OFFLOAD_SUPPORT_80211U: Support for 802.11u
 */
enum nl80211_probe_resp_offload_support_attr {
	NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS =	1<<0,
	NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2 =	1<<1,
	NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P =	1<<2,
	NL80211_PROBE_RESP_OFFLOAD_SUPPORT_80211U =	1<<3,
};

/**
 * enum nl80211_connect_failed_reason - connection request failed reasons
 * @NL80211_CONN_FAIL_MAX_CLIENTS: Maximum number of clients that can be
 *	handled by the AP is reached.
 * @NL80211_CONN_FAIL_BLOCKED_CLIENT: Connection request is rejected due to ACL.
 */
enum nl80211_connect_failed_reason {
	NL80211_CONN_FAIL_MAX_CLIENTS,
	NL80211_CONN_FAIL_BLOCKED_CLIENT,
};

/**
 * enum nl80211_timeout_reason - timeout reasons
 *
 * @NL80211_TIMEOUT_UNSPECIFIED: Timeout reason unspecified.
 * @NL80211_TIMEOUT_SCAN: Scan (AP discovery) timed out.
 * @NL80211_TIMEOUT_AUTH: Authentication timed out.
 * @NL80211_TIMEOUT_ASSOC: Association timed out.
 */
enum nl80211_timeout_reason {
	NL80211_TIMEOUT_UNSPECIFIED,
	NL80211_TIMEOUT_SCAN,
	NL80211_TIMEOUT_AUTH,
	NL80211_TIMEOUT_ASSOC,
};

/**
 * enum nl80211_scan_flags -  scan request control flags
 *
 * Scan request control flags are used to control the handling
 * of NL80211_CMD_TRIGGER_SCAN and NL80211_CMD_START_SCHED_SCAN
 * requests.
 *
 * NL80211_SCAN_FLAG_LOW_SPAN, NL80211_SCAN_FLAG_LOW_POWER, and
 * NL80211_SCAN_FLAG_HIGH_ACCURACY flags are exclusive of each other, i.e., only
 * one of them can be used in the request.
 *
 * @NL80211_SCAN_FLAG_LOW_PRIORITY: scan request has low priority
 * @NL80211_SCAN_FLAG_FLUSH: flush cache before scanning
 * @NL80211_SCAN_FLAG_AP: force a scan even if the interface is configured
 *	as AP and the beaconing has already been configured. This attribute is
 *	dangerous because will destroy stations performance as a lot of frames
 *	will be lost while scanning off-channel, therefore it must be used only
 *	when really needed
 * @NL80211_SCAN_FLAG_RANDOM_ADDR: use a random MAC address for this scan (or
 *	for scheduled scan: a different one for every scan iteration). When the
 *	flag is set, depending on device capabilities the @NL80211_ATTR_MAC and
 *	@NL80211_ATTR_MAC_MASK attributes may also be given in which case only
 *	the masked bits will be preserved from the MAC address and the remainder
 *	randomised. If the attributes are not given full randomisation (46 bits,
 *	locally administered 1, multicast 0) is assumed.
 *	This flag must not be requested when the feature isn't supported, check
 *	the nl80211 feature flags for the device.
 * @NL80211_SCAN_FLAG_FILS_MAX_CHANNEL_TIME: fill the dwell time in the FILS
 *	request parameters IE in the probe request
 * @NL80211_SCAN_FLAG_ACCEPT_BCAST_PROBE_RESP: accept broadcast probe responses
 * @NL80211_SCAN_FLAG_OCE_PROBE_REQ_HIGH_TX_RATE: send probe request frames at
 *	rate of at least 5.5M. In case non OCE AP is discovered in the channel,
 *	only the first probe req in the channel will be sent in high rate.
 * @NL80211_SCAN_FLAG_OCE_PROBE_REQ_DEFERRAL_SUPPRESSION: allow probe request
 *	tx deferral (dot11FILSProbeDelay shall be set to 15ms)
 *	and suppression (if it has received a broadcast Probe Response frame,
 *	Beacon frame or FILS Discovery frame from an AP that the STA considers
 *	a suitable candidate for (re-)association - suitable in terms of
 *	SSID and/or RSSI.
 * @NL80211_SCAN_FLAG_LOW_SPAN: Span corresponds to the total time taken to
 *	accomplish the scan. Thus, this flag intends the driver to perform the
 *	scan request with lesser span/duration. It is specific to the driver
 *	implementations on how this is accomplished. Scan accuracy may get
 *	impacted with this flag.
 * @NL80211_SCAN_FLAG_LOW_POWER: This flag intends the scan attempts to consume
 *	optimal possible power. Drivers can resort to their specific means to
 *	optimize the power. Scan accuracy may get impacted with this flag.
 * @NL80211_SCAN_FLAG_HIGH_ACCURACY: Accuracy here intends to the extent of scan
 *	results obtained. Thus HIGH_ACCURACY scan flag aims to get maximum
 *	possible scan results. This flag hints the driver to use the best
 *	possible scan configuration to improve the accuracy in scanning.
 *	Latency and power use may get impacted with this flag.
 * @NL80211_SCAN_FLAG_RANDOM_SN: randomize the sequence number in probe
 *	request frames from this scan to avoid correlation/tracking being
 *	possible.
 * @NL80211_SCAN_FLAG_MIN_PREQ_CONTENT: minimize probe request content to
 *	only have supported rates and no additional capabilities (unless
 *	added by userspace explicitly.)
 * @NL80211_SCAN_FLAG_FREQ_KHZ: report scan results with
 *	%NL80211_ATTR_SCAN_FREQ_KHZ. This also means
 *	%NL80211_ATTR_SCAN_FREQUENCIES will not be included.
 * @NL80211_SCAN_FLAG_COLOCATED_6GHZ: scan for colocated APs reported by
 *	2.4/5 GHz APs
 */
enum nl80211_scan_flags {
	NL80211_SCAN_FLAG_LOW_PRIORITY				= 1<<0,
	NL80211_SCAN_FLAG_FLUSH					= 1<<1,
	NL80211_SCAN_FLAG_AP					= 1<<2,
	NL80211_SCAN_FLAG_RANDOM_ADDR				= 1<<3,
	NL80211_SCAN_FLAG_FILS_MAX_CHANNEL_TIME			= 1<<4,
	NL80211_SCAN_FLAG_ACCEPT_BCAST_PROBE_RESP		= 1<<5,
	NL80211_SCAN_FLAG_OCE_PROBE_REQ_HIGH_TX_RATE		= 1<<6,
	NL80211_SCAN_FLAG_OCE_PROBE_REQ_DEFERRAL_SUPPRESSION	= 1<<7,
	NL80211_SCAN_FLAG_LOW_SPAN				= 1<<8,
	NL80211_SCAN_FLAG_LOW_POWER				= 1<<9,
	NL80211_SCAN_FLAG_HIGH_ACCURACY				= 1<<10,
	NL80211_SCAN_FLAG_RANDOM_SN				= 1<<11,
	NL80211_SCAN_FLAG_MIN_PREQ_CONTENT			= 1<<12,
	NL80211_SCAN_FLAG_FREQ_KHZ				= 1<<13,
	NL80211_SCAN_FLAG_COLOCATED_6GHZ			= 1<<14,
};

/**
 * enum nl80211_acl_policy - access control policy
 *
 * Access control policy is applied on a MAC list set by
 * %NL80211_CMD_START_AP and %NL80211_CMD_SET_MAC_ACL, to
 * be used with %NL80211_ATTR_ACL_POLICY.
 *
 * @NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED: Deny stations which are
 *	listed in ACL, i.e. allow all the stations which are not listed
 *	in ACL to authenticate.
 * @NL80211_ACL_POLICY_DENY_UNLESS_LISTED: Allow the stations which are listed
 *	in ACL, i.e. deny all the stations which are not listed in ACL.
 */
enum nl80211_acl_policy {
	NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED,
	NL80211_ACL_POLICY_DENY_UNLESS_LISTED,
};

/**
 * enum nl80211_smps_mode - SMPS mode
 *
 * Requested SMPS mode (for AP mode)
 *
 * @NL80211_SMPS_OFF: SMPS off (use all antennas).
 * @NL80211_SMPS_STATIC: static SMPS (use a single antenna)
 * @NL80211_SMPS_DYNAMIC: dynamic smps (start with a single antenna and
 *	turn on other antennas after CTS/RTS).
 */
enum nl80211_smps_mode {
	NL80211_SMPS_OFF,
	NL80211_SMPS_STATIC,
	NL80211_SMPS_DYNAMIC,

	__NL80211_SMPS_AFTER_LAST,
	NL80211_SMPS_MAX = __NL80211_SMPS_AFTER_LAST - 1
};

/**
 * enum nl80211_radar_event - type of radar event for DFS operation
 *
 * Type of event to be used with NL80211_ATTR_RADAR_EVENT to inform userspace
 * about detected radars or success of the channel available check (CAC)
 *
 * @NL80211_RADAR_DETECTED: A radar pattern has been detected. The channel is
 *	now unusable.
 * @NL80211_RADAR_CAC_FINISHED: Channel Availability Check has been finished,
 *	the channel is now available.
 * @NL80211_RADAR_CAC_ABORTED: Channel Availability Check has been aborted, no
 *	change to the channel status.
 * @NL80211_RADAR_NOP_FINISHED: The Non-Occupancy Period for this channel is
 *	over, channel becomes usable.
 * @NL80211_RADAR_PRE_CAC_EXPIRED: Channel Availability Check done on this
 *	non-operating channel is expired and no longer valid. New CAC must
 *	be done on this channel before starting the operation. This is not
 *	applicable for ETSI dfs domain where pre-CAC is valid for ever.
 * @NL80211_RADAR_CAC_STARTED: Channel Availability Check has been started,
 *	should be generated by HW if NL80211_EXT_FEATURE_DFS_OFFLOAD is enabled.
 */
enum nl80211_radar_event {
	NL80211_RADAR_DETECTED,
	NL80211_RADAR_CAC_FINISHED,
	NL80211_RADAR_CAC_ABORTED,
	NL80211_RADAR_NOP_FINISHED,
	NL80211_RADAR_PRE_CAC_EXPIRED,
	NL80211_RADAR_CAC_STARTED,
};

/**
 * enum nl80211_dfs_state - DFS states for channels
 *
 * Channel states used by the DFS code.
 *
 * @NL80211_DFS_USABLE: The channel can be used, but channel availability
 *	check (CAC) must be performed before using it for AP or IBSS.
 * @NL80211_DFS_UNAVAILABLE: A radar has been detected on this channel, it
 *	is therefore marked as not available.
 * @NL80211_DFS_AVAILABLE: The channel has been CAC checked and is available.
 */
enum nl80211_dfs_state {
	NL80211_DFS_USABLE,
	NL80211_DFS_UNAVAILABLE,
	NL80211_DFS_AVAILABLE,
};

/**
 * enum nl80211_protocol_features - nl80211 protocol features
 * @NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP: nl80211 supports splitting
 *	wiphy dumps (if requested by the application with the attribute
 *	%NL80211_ATTR_SPLIT_WIPHY_DUMP. Also supported is filtering the
 *	wiphy dump by %NL80211_ATTR_WIPHY, %NL80211_ATTR_IFINDEX or
 *	%NL80211_ATTR_WDEV.
 */
enum nl80211_protocol_features {
	NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP =	1 << 0,
};

/**
 * enum nl80211_crit_proto_id - nl80211 critical protocol identifiers
 *
 * @NL80211_CRIT_PROTO_UNSPEC: protocol unspecified.
 * @NL80211_CRIT_PROTO_DHCP: BOOTP or DHCPv6 protocol.
 * @NL80211_CRIT_PROTO_EAPOL: EAPOL protocol.
 * @NL80211_CRIT_PROTO_APIPA: APIPA protocol.
 * @NUM_NL80211_CRIT_PROTO: must be kept last.
 */
enum nl80211_crit_proto_id {
	NL80211_CRIT_PROTO_UNSPEC,
	NL80211_CRIT_PROTO_DHCP,
	NL80211_CRIT_PROTO_EAPOL,
	NL80211_CRIT_PROTO_APIPA,
	/* add other protocols before this one */
	NUM_NL80211_CRIT_PROTO
};

/* maximum duration for critical protocol measures */
#define NL80211_CRIT_PROTO_MAX_DURATION		5000 /* msec */

/**
 * enum nl80211_rxmgmt_flags - flags for received management frame.
 *
 * Used by cfg80211_rx_mgmt()
 *
 * @NL80211_RXMGMT_FLAG_ANSWERED: frame was answered by device/driver.
 * @NL80211_RXMGMT_FLAG_EXTERNAL_AUTH: Host driver intends to offload
 *	the authentication. Exclusively defined for host drivers that
 *	advertises the SME functionality but would like the userspace
 *	to handle certain authentication algorithms (e.g. SAE).
 */
enum nl80211_rxmgmt_flags {
	NL80211_RXMGMT_FLAG_ANSWERED = 1 << 0,
	NL80211_RXMGMT_FLAG_EXTERNAL_AUTH = 1 << 1,
};

/*
 * If this flag is unset, the lower 24 bits are an OUI, if set
 * a Linux nl80211 vendor ID is used (no such IDs are allocated
 * yet, so that's not valid so far)
 */
#define NL80211_VENDOR_ID_IS_LINUX	0x80000000

/**
 * struct nl80211_vendor_cmd_info - vendor command data
 * @vendor_id: If the %NL80211_VENDOR_ID_IS_LINUX flag is clear, then the
 *	value is a 24-bit OUI; if it is set then a separately allocated ID
 *	may be used, but no such IDs are allocated yet. New IDs should be
 *	added to this file when needed.
 * @subcmd: sub-command ID for the command
 */
struct nl80211_vendor_cmd_info {
	__u32 vendor_id;
	__u32 subcmd;
};

/**
 * enum nl80211_tdls_peer_capability - TDLS peer flags.
 *
 * Used by tdls_mgmt() to determine which conditional elements need
 * to be added to TDLS Setup frames.
 *
 * @NL80211_TDLS_PEER_HT: TDLS peer is HT capable.
 * @NL80211_TDLS_PEER_VHT: TDLS peer is VHT capable.
 * @NL80211_TDLS_PEER_WMM: TDLS peer is WMM capable.
 * @NL80211_TDLS_PEER_HE: TDLS peer is HE capable.
 */
enum nl80211_tdls_peer_capability {
	NL80211_TDLS_PEER_HT = 1<<0,
	NL80211_TDLS_PEER_VHT = 1<<1,
	NL80211_TDLS_PEER_WMM = 1<<2,
	NL80211_TDLS_PEER_HE = 1<<3,
};

/**
 * enum nl80211_sched_scan_plan - scanning plan for scheduled scan
 * @__NL80211_SCHED_SCAN_PLAN_INVALID: attribute number 0 is reserved
 * @NL80211_SCHED_SCAN_PLAN_INTERVAL: interval between scan iterations. In
 *	seconds (u32).
 * @NL80211_SCHED_SCAN_PLAN_ITERATIONS: number of scan iterations in this
 *	scan plan (u32). The last scan plan must not specify this attribute
 *	because it will run infinitely. A value of zero is invalid as it will
 *	make the scan plan meaningless.
 * @NL80211_SCHED_SCAN_PLAN_MAX: highest scheduled scan plan attribute number
 *	currently defined
 * @__NL80211_SCHED_SCAN_PLAN_AFTER_LAST: internal use
 */
enum nl80211_sched_scan_plan {
	__NL80211_SCHED_SCAN_PLAN_INVALID,
	NL80211_SCHED_SCAN_PLAN_INTERVAL,
	NL80211_SCHED_SCAN_PLAN_ITERATIONS,

	/* keep last */
	__NL80211_SCHED_SCAN_PLAN_AFTER_LAST,
	NL80211_SCHED_SCAN_PLAN_MAX =
		__NL80211_SCHED_SCAN_PLAN_AFTER_LAST - 1
};

/**
 * struct nl80211_bss_select_rssi_adjust - RSSI adjustment parameters.
 *
 * @band: band of BSS that must match for RSSI value adjustment. The value
 *	of this field is according to &enum nl80211_band.
 * @delta: value used to adjust the RSSI value of matching BSS in dB.
 */
struct nl80211_bss_select_rssi_adjust {
	__u8 band;
	__s8 delta;
} __attribute__((packed));

/**
 * enum nl80211_bss_select_attr - attributes for bss selection.
 *
 * @__NL80211_BSS_SELECT_ATTR_INVALID: reserved.
 * @NL80211_BSS_SELECT_ATTR_RSSI: Flag indicating only RSSI-based BSS selection
 *	is requested.
 * @NL80211_BSS_SELECT_ATTR_BAND_PREF: attribute indicating BSS
 *	selection should be done such that the specified band is preferred.
 *	When there are multiple BSS-es in the preferred band, the driver
 *	shall use RSSI-based BSS selection as a second step. The value of
 *	this attribute is according to &enum nl80211_band (u32).
 * @NL80211_BSS_SELECT_ATTR_RSSI_ADJUST: When present the RSSI level for
 *	BSS-es in the specified band is to be adjusted before doing
 *	RSSI-based BSS selection. The attribute value is a packed structure
 *	value as specified by &struct nl80211_bss_select_rssi_adjust.
 * @NL80211_BSS_SELECT_ATTR_MAX: highest bss select attribute number.
 * @__NL80211_BSS_SELECT_ATTR_AFTER_LAST: internal use.
 *
 * One and only one of these attributes are found within %NL80211_ATTR_BSS_SELECT
 * for %NL80211_CMD_CONNECT. It specifies the required BSS selection behaviour
 * which the driver shall use.
 */
enum nl80211_bss_select_attr {
	__NL80211_BSS_SELECT_ATTR_INVALID,
	NL80211_BSS_SELECT_ATTR_RSSI,
	NL80211_BSS_SELECT_ATTR_BAND_PREF,
	NL80211_BSS_SELECT_ATTR_RSSI_ADJUST,

	/* keep last */
	__NL80211_BSS_SELECT_ATTR_AFTER_LAST,
	NL80211_BSS_SELECT_ATTR_MAX = __NL80211_BSS_SELECT_ATTR_AFTER_LAST - 1
};

/**
 * enum nl80211_nan_function_type - NAN function type
 *
 * Defines the function type of a NAN function
 *
 * @NL80211_NAN_FUNC_PUBLISH: function is publish
 * @NL80211_NAN_FUNC_SUBSCRIBE: function is subscribe
 * @NL80211_NAN_FUNC_FOLLOW_UP: function is follow-up
 */
enum nl80211_nan_function_type {
	NL80211_NAN_FUNC_PUBLISH,
	NL80211_NAN_FUNC_SUBSCRIBE,
	NL80211_NAN_FUNC_FOLLOW_UP,

	/* keep last */
	__NL80211_NAN_FUNC_TYPE_AFTER_LAST,
	NL80211_NAN_FUNC_MAX_TYPE = __NL80211_NAN_FUNC_TYPE_AFTER_LAST - 1,
};

/**
 * enum nl80211_nan_publish_type - NAN publish tx type
 *
 * Defines how to send publish Service Discovery Frames
 *
 * @NL80211_NAN_SOLICITED_PUBLISH: publish function is solicited
 * @NL80211_NAN_UNSOLICITED_PUBLISH: publish function is unsolicited
 */
enum nl80211_nan_publish_type {
	NL80211_NAN_SOLICITED_PUBLISH = 1 << 0,
	NL80211_NAN_UNSOLICITED_PUBLISH = 1 << 1,
};

/**
 * enum nl80211_nan_func_term_reason - NAN functions termination reason
 *
 * Defines termination reasons of a NAN function
 *
 * @NL80211_NAN_FUNC_TERM_REASON_USER_REQUEST: requested by user
 * @NL80211_NAN_FUNC_TERM_REASON_TTL_EXPIRED: timeout
 * @NL80211_NAN_FUNC_TERM_REASON_ERROR: errored
 */
enum nl80211_nan_func_term_reason {
	NL80211_NAN_FUNC_TERM_REASON_USER_REQUEST,
	NL80211_NAN_FUNC_TERM_REASON_TTL_EXPIRED,
	NL80211_NAN_FUNC_TERM_REASON_ERROR,
};

#define NL80211_NAN_FUNC_SERVICE_ID_LEN 6
#define NL80211_NAN_FUNC_SERVICE_SPEC_INFO_MAX_LEN 0xff
#define NL80211_NAN_FUNC_SRF_MAX_LEN 0xff

/**
 * enum nl80211_nan_func_attributes - NAN function attributes
 * @__NL80211_NAN_FUNC_INVALID: invalid
 * @NL80211_NAN_FUNC_TYPE: &enum nl80211_nan_function_type (u8).
 * @NL80211_NAN_FUNC_SERVICE_ID: 6 bytes of the service ID hash as
 *	specified in NAN spec. This is a binary attribute.
 * @NL80211_NAN_FUNC_PUBLISH_TYPE: relevant if the function's type is
 *	publish. Defines the transmission type for the publish Service Discovery
 *	Frame, see &enum nl80211_nan_publish_type. Its type is u8.
 * @NL80211_NAN_FUNC_PUBLISH_BCAST: relevant if the function is a solicited
 *	publish. Should the solicited publish Service Discovery Frame be sent to
 *	the NAN Broadcast address. This is a flag.
 * @NL80211_NAN_FUNC_SUBSCRIBE_ACTIVE: relevant if the function's type is
 *	subscribe. Is the subscribe active. This is a flag.
 * @NL80211_NAN_FUNC_FOLLOW_UP_ID: relevant if the function's type is follow up.
 *	The instance ID for the follow up Service Discovery Frame. This is u8.
 * @NL80211_NAN_FUNC_FOLLOW_UP_REQ_ID: relevant if the function's type
 *	is follow up. This is a u8.
 *	The requestor instance ID for the follow up Service Discovery Frame.
 * @NL80211_NAN_FUNC_FOLLOW_UP_DEST: the MAC address of the recipient of the
 *	follow up Service Discovery Frame. This is a binary attribute.
 * @NL80211_NAN_FUNC_CLOSE_RANGE: is this function limited for devices in a
 *	close range. The range itself (RSSI) is defined by the device.
 *	This is a flag.
 * @NL80211_NAN_FUNC_TTL: strictly positive number of DWs this function should
 *	stay active. If not present infinite TTL is assumed. This is a u32.
 * @NL80211_NAN_FUNC_SERVICE_INFO: array of bytes describing the service
 *	specific info. This is a binary attribute.
 * @NL80211_NAN_FUNC_SRF: Service Receive Filter. This is a nested attribute.
 *	See &enum nl80211_nan_srf_attributes.
 * @NL80211_NAN_FUNC_RX_MATCH_FILTER: Receive Matching filter. This is a nested
 *	attribute. It is a list of binary values.
 * @NL80211_NAN_FUNC_TX_MATCH_FILTER: Transmit Matching filter. This is a
 *	nested attribute. It is a list of binary values.
 * @NL80211_NAN_FUNC_INSTANCE_ID: The instance ID of the function.
 *	Its type is u8 and it cannot be 0.
 * @NL80211_NAN_FUNC_TERM_REASON: NAN function termination reason.
 *	See &enum nl80211_nan_func_term_reason.
 *
 * @NUM_NL80211_NAN_FUNC_ATTR: internal
 * @NL80211_NAN_FUNC_ATTR_MAX: highest NAN function attribute
 */
enum nl80211_nan_func_attributes {
	__NL80211_NAN_FUNC_INVALID,
	NL80211_NAN_FUNC_TYPE,
	NL80211_NAN_FUNC_SERVICE_ID,
	NL80211_NAN_FUNC_PUBLISH_TYPE,
	NL80211_NAN_FUNC_PUBLISH_BCAST,
	NL80211_NAN_FUNC_SUBSCRIBE_ACTIVE,
	NL80211_NAN_FUNC_FOLLOW_UP_ID,
	NL80211_NAN_FUNC_FOLLOW_UP_REQ_ID,
	NL80211_NAN_FUNC_FOLLOW_UP_DEST,
	NL80211_NAN_FUNC_CLOSE_RANGE,
	NL80211_NAN_FUNC_TTL,
	NL80211_NAN_FUNC_SERVICE_INFO,
	NL80211_NAN_FUNC_SRF,
	NL80211_NAN_FUNC_RX_MATCH_FILTER,
	NL80211_NAN_FUNC_TX_MATCH_FILTER,
	NL80211_NAN_FUNC_INSTANCE_ID,
	NL80211_NAN_FUNC_TERM_REASON,

	/* keep last */
	NUM_NL80211_NAN_FUNC_ATTR,
	NL80211_NAN_FUNC_ATTR_MAX = NUM_NL80211_NAN_FUNC_ATTR - 1
};

/**
 * enum nl80211_nan_srf_attributes - NAN Service Response filter attributes
 * @__NL80211_NAN_SRF_INVALID: invalid
 * @NL80211_NAN_SRF_INCLUDE: present if the include bit of the SRF set.
 *	This is a flag.
 * @NL80211_NAN_SRF_BF: Bloom Filter. Present if and only if
 *	%NL80211_NAN_SRF_MAC_ADDRS isn't present. This attribute is binary.
 * @NL80211_NAN_SRF_BF_IDX: index of the Bloom Filter. Mandatory if
 *	%NL80211_NAN_SRF_BF is present. This is a u8.
 * @NL80211_NAN_SRF_MAC_ADDRS: list of MAC addresses for the SRF. Present if
 *	and only if %NL80211_NAN_SRF_BF isn't present. This is a nested
 *	attribute. Each nested attribute is a MAC address.
 * @NUM_NL80211_NAN_SRF_ATTR: internal
 * @NL80211_NAN_SRF_ATTR_MAX: highest NAN SRF attribute
 */
enum nl80211_nan_srf_attributes {
	__NL80211_NAN_SRF_INVALID,
	NL80211_NAN_SRF_INCLUDE,
	NL80211_NAN_SRF_BF,
	NL80211_NAN_SRF_BF_IDX,
	NL80211_NAN_SRF_MAC_ADDRS,

	/* keep last */
	NUM_NL80211_NAN_SRF_ATTR,
	NL80211_NAN_SRF_ATTR_MAX = NUM_NL80211_NAN_SRF_ATTR - 1,
};

/**
 * enum nl80211_nan_match_attributes - NAN match attributes
 * @__NL80211_NAN_MATCH_INVALID: invalid
 * @NL80211_NAN_MATCH_FUNC_LOCAL: the local function that had the
 *	match. This is a nested attribute.
 *	See &enum nl80211_nan_func_attributes.
 * @NL80211_NAN_MATCH_FUNC_PEER: the peer function
 *	that caused the match. This is a nested attribute.
 *	See &enum nl80211_nan_func_attributes.
 *
 * @NUM_NL80211_NAN_MATCH_ATTR: internal
 * @NL80211_NAN_MATCH_ATTR_MAX: highest NAN match attribute
 */
enum nl80211_nan_match_attributes {
	__NL80211_NAN_MATCH_INVALID,
	NL80211_NAN_MATCH_FUNC_LOCAL,
	NL80211_NAN_MATCH_FUNC_PEER,

	/* keep last */
	NUM_NL80211_NAN_MATCH_ATTR,
	NL80211_NAN_MATCH_ATTR_MAX = NUM_NL80211_NAN_MATCH_ATTR - 1
};

/**
 * nl80211_external_auth_action - Action to perform with external
 *     authentication request. Used by NL80211_ATTR_EXTERNAL_AUTH_ACTION.
 * @NL80211_EXTERNAL_AUTH_START: Start the authentication.
 * @NL80211_EXTERNAL_AUTH_ABORT: Abort the ongoing authentication.
 */
enum nl80211_external_auth_action {
	NL80211_EXTERNAL_AUTH_START,
	NL80211_EXTERNAL_AUTH_ABORT,
};

/**
 * enum nl80211_ftm_responder_attributes - fine timing measurement
 *	responder attributes
 * @__NL80211_FTM_RESP_ATTR_INVALID: Invalid
 * @NL80211_FTM_RESP_ATTR_ENABLED: FTM responder is enabled
 * @NL80211_FTM_RESP_ATTR_LCI: The content of Measurement Report Element
 *	(9.4.2.22 in 802.11-2016) with type 8 - LCI (9.4.2.22.10),
 *	i.e. starting with the measurement token
 * @NL80211_FTM_RESP_ATTR_CIVIC: The content of Measurement Report Element
 *	(9.4.2.22 in 802.11-2016) with type 11 - Civic (Section 9.4.2.22.13),
 *	i.e. starting with the measurement token
 * @__NL80211_FTM_RESP_ATTR_LAST: Internal
 * @NL80211_FTM_RESP_ATTR_MAX: highest FTM responder attribute.
 */
enum nl80211_ftm_responder_attributes {
	__NL80211_FTM_RESP_ATTR_INVALID,

	NL80211_FTM_RESP_ATTR_ENABLED,
	NL80211_FTM_RESP_ATTR_LCI,
	NL80211_FTM_RESP_ATTR_CIVICLOC,

	/* keep last */
	__NL80211_FTM_RESP_ATTR_LAST,
	NL80211_FTM_RESP_ATTR_MAX = __NL80211_FTM_RESP_ATTR_LAST - 1,
};

/*
 * enum nl80211_ftm_responder_stats - FTM responder statistics
 *
 * These attribute types are used with %NL80211_ATTR_FTM_RESPONDER_STATS
 * when getting FTM responder statistics.
 *
 * @__NL80211_FTM_STATS_INVALID: attribute number 0 is reserved
 * @NL80211_FTM_STATS_SUCCESS_NUM: number of FTM sessions in which all frames
 *	were ssfully answered (u32)
 * @NL80211_FTM_STATS_PARTIAL_NUM: number of FTM sessions in which part of the
 *	frames were successfully answered (u32)
 * @NL80211_FTM_STATS_FAILED_NUM: number of failed FTM sessions (u32)
 * @NL80211_FTM_STATS_ASAP_NUM: number of ASAP sessions (u32)
 * @NL80211_FTM_STATS_NON_ASAP_NUM: number of non-ASAP sessions (u32)
 * @NL80211_FTM_STATS_TOTAL_DURATION_MSEC: total sessions durations - gives an
 *	indication of how much time the responder was busy (u64, msec)
 * @NL80211_FTM_STATS_UNKNOWN_TRIGGERS_NUM: number of unknown FTM triggers -
 *	triggers from initiators that didn't finish successfully the negotiation
 *	phase with the responder (u32)
 * @NL80211_FTM_STATS_RESCHEDULE_REQUESTS_NUM: number of FTM reschedule requests
 *	- initiator asks for a new scheduling although it already has scheduled
 *	FTM slot (u32)
 * @NL80211_FTM_STATS_OUT_OF_WINDOW_TRIGGERS_NUM: number of FTM triggers out of
 *	scheduled window (u32)
 * @NL80211_FTM_STATS_PAD: used for padding, ignore
 * @__NL80211_TXQ_ATTR_AFTER_LAST: Internal
 * @NL80211_FTM_STATS_MAX: highest possible FTM responder stats attribute
 */
enum nl80211_ftm_responder_stats {
	__NL80211_FTM_STATS_INVALID,
	NL80211_FTM_STATS_SUCCESS_NUM,
	NL80211_FTM_STATS_PARTIAL_NUM,
	NL80211_FTM_STATS_FAILED_NUM,
	NL80211_FTM_STATS_ASAP_NUM,
	NL80211_FTM_STATS_NON_ASAP_NUM,
	NL80211_FTM_STATS_TOTAL_DURATION_MSEC,
	NL80211_FTM_STATS_UNKNOWN_TRIGGERS_NUM,
	NL80211_FTM_STATS_RESCHEDULE_REQUESTS_NUM,
	NL80211_FTM_STATS_OUT_OF_WINDOW_TRIGGERS_NUM,
	NL80211_FTM_STATS_PAD,

	/* keep last */
	__NL80211_FTM_STATS_AFTER_LAST,
	NL80211_FTM_STATS_MAX = __NL80211_FTM_STATS_AFTER_LAST - 1
};

/**
 * enum nl80211_preamble - frame preamble types
 * @NL80211_PREAMBLE_LEGACY: legacy (HR/DSSS, OFDM, ERP PHY) preamble
 * @NL80211_PREAMBLE_HT: HT preamble
 * @NL80211_PREAMBLE_VHT: VHT preamble
 * @NL80211_PREAMBLE_DMG: DMG preamble
 * @NL80211_PREAMBLE_HE: HE preamble
 */
enum nl80211_preamble {
	NL80211_PREAMBLE_LEGACY,
	NL80211_PREAMBLE_HT,
	NL80211_PREAMBLE_VHT,
	NL80211_PREAMBLE_DMG,
	NL80211_PREAMBLE_HE,
};

/**
 * enum nl80211_peer_measurement_type - peer measurement types
 * @NL80211_PMSR_TYPE_INVALID: invalid/unused, needed as we use
 *	these numbers also for attributes
 *
 * @NL80211_PMSR_TYPE_FTM: flight time measurement
 *
 * @NUM_NL80211_PMSR_TYPES: internal
 * @NL80211_PMSR_TYPE_MAX: highest type number
 */
enum nl80211_peer_measurement_type {
	NL80211_PMSR_TYPE_INVALID,

	NL80211_PMSR_TYPE_FTM,

	NUM_NL80211_PMSR_TYPES,
	NL80211_PMSR_TYPE_MAX = NUM_NL80211_PMSR_TYPES - 1
};

/**
 * enum nl80211_peer_measurement_status - peer measurement status
 * @NL80211_PMSR_STATUS_SUCCESS: measurement completed successfully
 * @NL80211_PMSR_STATUS_REFUSED: measurement was locally refused
 * @NL80211_PMSR_STATUS_TIMEOUT: measurement timed out
 * @NL80211_PMSR_STATUS_FAILURE: measurement failed, a type-dependent
 *	reason may be available in the response data
 */
enum nl80211_peer_measurement_status {
	NL80211_PMSR_STATUS_SUCCESS,
	NL80211_PMSR_STATUS_REFUSED,
	NL80211_PMSR_STATUS_TIMEOUT,
	NL80211_PMSR_STATUS_FAILURE,
};

/**
 * enum nl80211_peer_measurement_req - peer measurement request attributes
 * @__NL80211_PMSR_REQ_ATTR_INVALID: invalid
 *
 * @NL80211_PMSR_REQ_ATTR_DATA: This is a nested attribute with measurement
 *	type-specific request data inside. The attributes used are from the
 *	enums named nl80211_peer_measurement_<type>_req.
 * @NL80211_PMSR_REQ_ATTR_GET_AP_TSF: include AP TSF timestamp, if supported
 *	(flag attribute)
 *
 * @NUM_NL80211_PMSR_REQ_ATTRS: internal
 * @NL80211_PMSR_REQ_ATTR_MAX: highest attribute number
 */
enum nl80211_peer_measurement_req {
	__NL80211_PMSR_REQ_ATTR_INVALID,

	NL80211_PMSR_REQ_ATTR_DATA,
	NL80211_PMSR_REQ_ATTR_GET_AP_TSF,

	/* keep last */
	NUM_NL80211_PMSR_REQ_ATTRS,
	NL80211_PMSR_REQ_ATTR_MAX = NUM_NL80211_PMSR_REQ_ATTRS - 1
};

/**
 * enum nl80211_peer_measurement_resp - peer measurement response attributes
 * @__NL80211_PMSR_RESP_ATTR_INVALID: invalid
 *
 * @NL80211_PMSR_RESP_ATTR_DATA: This is a nested attribute with measurement
 *	type-specific results inside. The attributes used are from the enums
 *	named nl80211_peer_measurement_<type>_resp.
 * @NL80211_PMSR_RESP_ATTR_STATUS: u32 value with the measurement status
 *	(using values from &enum nl80211_peer_measurement_status.)
 * @NL80211_PMSR_RESP_ATTR_HOST_TIME: host time (%CLOCK_BOOTTIME) when the
 *	result was measured; this value is not expected to be accurate to
 *	more than 20ms. (u64, nanoseconds)
 * @NL80211_PMSR_RESP_ATTR_AP_TSF: TSF of the AP that the interface
 *	doing the measurement is connected to when the result was measured.
 *	This shall be accurately reported if supported and requested
 *	(u64, usec)
 * @NL80211_PMSR_RESP_ATTR_FINAL: If results are sent to the host partially
 *	(*e.g. with FTM per-burst data) this flag will be cleared on all but
 *	the last result; if all results are combined it's set on the single
 *	result.
 * @NL80211_PMSR_RESP_ATTR_PAD: padding for 64-bit attributes, ignore
 *
 * @NUM_NL80211_PMSR_RESP_ATTRS: internal
 * @NL80211_PMSR_RESP_ATTR_MAX: highest attribute number
 */
enum nl80211_peer_measurement_resp {
	__NL80211_PMSR_RESP_ATTR_INVALID,

	NL80211_PMSR_RESP_ATTR_DATA,
	NL80211_PMSR_RESP_ATTR_STATUS,
	NL80211_PMSR_RESP_ATTR_HOST_TIME,
	NL80211_PMSR_RESP_ATTR_AP_TSF,
	NL80211_PMSR_RESP_ATTR_FINAL,
	NL80211_PMSR_RESP_ATTR_PAD,

	/* keep last */
	NUM_NL80211_PMSR_RESP_ATTRS,
	NL80211_PMSR_RESP_ATTR_MAX = NUM_NL80211_PMSR_RESP_ATTRS - 1
};

/**
 * enum nl80211_peer_measurement_peer_attrs - peer attributes for measurement
 * @__NL80211_PMSR_PEER_ATTR_INVALID: invalid
 *
 * @NL80211_PMSR_PEER_ATTR_ADDR: peer's MAC address
 * @NL80211_PMSR_PEER_ATTR_CHAN: channel definition, nested, using top-level
 *	attributes like %NL80211_ATTR_WIPHY_FREQ etc.
 * @NL80211_PMSR_PEER_ATTR_REQ: This is a nested attribute indexed by
 *	measurement type, with attributes from the
 *	&enum nl80211_peer_measurement_req inside.
 * @NL80211_PMSR_PEER_ATTR_RESP: This is a nested attribute indexed by
 *	measurement type, with attributes from the
 *	&enum nl80211_peer_measurement_resp inside.
 *
 * @NUM_NL80211_PMSR_PEER_ATTRS: internal
 * @NL80211_PMSR_PEER_ATTR_MAX: highest attribute number
 */
enum nl80211_peer_measurement_peer_attrs {
	__NL80211_PMSR_PEER_ATTR_INVALID,

	NL80211_PMSR_PEER_ATTR_ADDR,
	NL80211_PMSR_PEER_ATTR_CHAN,
	NL80211_PMSR_PEER_ATTR_REQ,
	NL80211_PMSR_PEER_ATTR_RESP,

	/* keep last */
	NUM_NL80211_PMSR_PEER_ATTRS,
	NL80211_PMSR_PEER_ATTR_MAX = NUM_NL80211_PMSR_PEER_ATTRS - 1,
};

/**
 * enum nl80211_peer_measurement_attrs - peer measurement attributes
 * @__NL80211_PMSR_ATTR_INVALID: invalid
 *
 * @NL80211_PMSR_ATTR_MAX_PEERS: u32 attribute used for capability
 *	advertisement only, indicates the maximum number of peers
 *	measurements can be done with in a single request
 * @NL80211_PMSR_ATTR_REPORT_AP_TSF: flag attribute in capability
 *	indicating that the connected AP's TSF can be reported in
 *	measurement results
 * @NL80211_PMSR_ATTR_RANDOMIZE_MAC_ADDR: flag attribute in capability
 *	indicating that MAC address randomization is supported.
 * @NL80211_PMSR_ATTR_TYPE_CAPA: capabilities reported by the device,
 *	this contains a nesting indexed by measurement type, and
 *	type-specific capabilities inside, which are from the enums
 *	named nl80211_peer_measurement_<type>_capa.
 * @NL80211_PMSR_ATTR_PEERS: nested attribute, the nesting index is
 *	meaningless, just a list of peers to measure with, with the
 *	sub-attributes taken from
 *	&enum nl80211_peer_measurement_peer_attrs.
 *
 * @NUM_NL80211_PMSR_ATTR: internal
 * @NL80211_PMSR_ATTR_MAX: highest attribute number
 */
enum nl80211_peer_measurement_attrs {
	__NL80211_PMSR_ATTR_INVALID,

	NL80211_PMSR_ATTR_MAX_PEERS,
	NL80211_PMSR_ATTR_REPORT_AP_TSF,
	NL80211_PMSR_ATTR_RANDOMIZE_MAC_ADDR,
	NL80211_PMSR_ATTR_TYPE_CAPA,
	NL80211_PMSR_ATTR_PEERS,

	/* keep last */
	NUM_NL80211_PMSR_ATTR,
	NL80211_PMSR_ATTR_MAX = NUM_NL80211_PMSR_ATTR - 1
};

/**
 * enum nl80211_peer_measurement_ftm_capa - FTM capabilities
 * @__NL80211_PMSR_FTM_CAPA_ATTR_INVALID: invalid
 *
 * @NL80211_PMSR_FTM_CAPA_ATTR_ASAP: flag attribute indicating ASAP mode
 *	is supported
 * @NL80211_PMSR_FTM_CAPA_ATTR_NON_ASAP: flag attribute indicating non-ASAP
 *	mode is supported
 * @NL80211_PMSR_FTM_CAPA_ATTR_REQ_LCI: flag attribute indicating if LCI
 *	data can be requested during the measurement
 * @NL80211_PMSR_FTM_CAPA_ATTR_REQ_CIVICLOC: flag attribute indicating if civic
 *	location data can be requested during the measurement
 * @NL80211_PMSR_FTM_CAPA_ATTR_PREAMBLES: u32 bitmap attribute of bits
 *	from &enum nl80211_preamble.
 * @NL80211_PMSR_FTM_CAPA_ATTR_BANDWIDTHS: bitmap of values from
 *	&enum nl80211_chan_width indicating the supported channel
 *	bandwidths for FTM. Note that a higher channel bandwidth may be
 *	configured to allow for other measurements types with different
 *	bandwidth requirement in the same measurement.
 * @NL80211_PMSR_FTM_CAPA_ATTR_MAX_BURSTS_EXPONENT: u32 attribute indicating
 *	the maximum bursts exponent that can be used (if not present anything
 *	is valid)
 * @NL80211_PMSR_FTM_CAPA_ATTR_MAX_FTMS_PER_BURST: u32 attribute indicating
 *	the maximum FTMs per burst (if not present anything is valid)
 * @NL80211_PMSR_FTM_CAPA_ATTR_TRIGGER_BASED: flag attribute indicating if
 *	trigger based ranging measurement is supported
 * @NL80211_PMSR_FTM_CAPA_ATTR_NON_TRIGGER_BASED: flag attribute indicating
 *	if non trigger based ranging measurement is supported
 *
 * @NUM_NL80211_PMSR_FTM_CAPA_ATTR: internal
 * @NL80211_PMSR_FTM_CAPA_ATTR_MAX: highest attribute number
 */
enum nl80211_peer_measurement_ftm_capa {
	__NL80211_PMSR_FTM_CAPA_ATTR_INVALID,

	NL80211_PMSR_FTM_CAPA_ATTR_ASAP,
	NL80211_PMSR_FTM_CAPA_ATTR_NON_ASAP,
	NL80211_PMSR_FTM_CAPA_ATTR_REQ_LCI,
	NL80211_PMSR_FTM_CAPA_ATTR_REQ_CIVICLOC,
	NL80211_PMSR_FTM_CAPA_ATTR_PREAMBLES,
	NL80211_PMSR_FTM_CAPA_ATTR_BANDWIDTHS,
	NL80211_PMSR_FTM_CAPA_ATTR_MAX_BURSTS_EXPONENT,
	NL80211_PMSR_FTM_CAPA_ATTR_MAX_FTMS_PER_BURST,
	NL80211_PMSR_FTM_CAPA_ATTR_TRIGGER_BASED,
	NL80211_PMSR_FTM_CAPA_ATTR_NON_TRIGGER_BASED,

	/* keep last */
	NUM_NL80211_PMSR_FTM_CAPA_ATTR,
	NL80211_PMSR_FTM_CAPA_ATTR_MAX = NUM_NL80211_PMSR_FTM_CAPA_ATTR - 1
};

/**
 * enum nl80211_peer_measurement_ftm_req - FTM request attributes
 * @__NL80211_PMSR_FTM_REQ_ATTR_INVALID: invalid
 *
 * @NL80211_PMSR_FTM_REQ_ATTR_ASAP: ASAP mode requested (flag)
 * @NL80211_PMSR_FTM_REQ_ATTR_PREAMBLE: preamble type (see
 *	&enum nl80211_preamble), optional for DMG (u32)
 * @NL80211_PMSR_FTM_REQ_ATTR_NUM_BURSTS_EXP: number of bursts exponent as in
 *	802.11-2016 9.4.2.168 "Fine Timing Measurement Parameters element"
 *	(u8, 0-15, optional with default 15 i.e. "no preference")
 * @NL80211_PMSR_FTM_REQ_ATTR_BURST_PERIOD: interval between bursts in units
 *	of 100ms (u16, optional with default 0)
 * @NL80211_PMSR_FTM_REQ_ATTR_BURST_DURATION: burst duration, as in 802.11-2016
 *	Table 9-257 "Burst Duration field encoding" (u8, 0-15, optional with
 *	default 15 i.e. "no preference")
 * @NL80211_PMSR_FTM_REQ_ATTR_FTMS_PER_BURST: number of successful FTM frames
 *	requested per burst
 *	(u8, 0-31, optional with default 0 i.e. "no preference")
 * @NL80211_PMSR_FTM_REQ_ATTR_NUM_FTMR_RETRIES: number of FTMR frame retries
 *	(u8, default 3)
 * @NL80211_PMSR_FTM_REQ_ATTR_REQUEST_LCI: request LCI data (flag)
 * @NL80211_PMSR_FTM_REQ_ATTR_REQUEST_CIVICLOC: request civic location data
 *	(flag)
 * @NL80211_PMSR_FTM_REQ_ATTR_TRIGGER_BASED: request trigger based ranging
 *	measurement (flag).
 *	This attribute and %NL80211_PMSR_FTM_REQ_ATTR_NON_TRIGGER_BASED are
 *	mutually exclusive.
 *      if neither %NL80211_PMSR_FTM_REQ_ATTR_TRIGGER_BASED nor
 *	%NL80211_PMSR_FTM_REQ_ATTR_NON_TRIGGER_BASED is set, EDCA based
 *	ranging will be used.
 * @NL80211_PMSR_FTM_REQ_ATTR_NON_TRIGGER_BASED: request non trigger based
 *	ranging measurement (flag)
 *	This attribute and %NL80211_PMSR_FTM_REQ_ATTR_TRIGGER_BASED are
 *	mutually exclusive.
 *      if neither %NL80211_PMSR_FTM_REQ_ATTR_TRIGGER_BASED nor
 *	%NL80211_PMSR_FTM_REQ_ATTR_NON_TRIGGER_BASED is set, EDCA based
 *	ranging will be used.
 * @NL80211_PMSR_FTM_REQ_ATTR_LMR_FEEDBACK: negotiate for LMR feedback. Only
 *	valid if either %NL80211_PMSR_FTM_REQ_ATTR_TRIGGER_BASED or
 *	%NL80211_PMSR_FTM_REQ_ATTR_NON_TRIGGER_BASED is set.
 * @NL80211_PMSR_FTM_REQ_ATTR_BSS_COLOR: optional. The BSS color of the
 *	responder. Only valid if %NL80211_PMSR_FTM_REQ_ATTR_NON_TRIGGER_BASED
 *	or %NL80211_PMSR_FTM_REQ_ATTR_TRIGGER_BASED is set.
 *
 * @NUM_NL80211_PMSR_FTM_REQ_ATTR: internal
 * @NL80211_PMSR_FTM_REQ_ATTR_MAX: highest attribute number
 */
enum nl80211_peer_measurement_ftm_req {
	__NL80211_PMSR_FTM_REQ_ATTR_INVALID,

	NL80211_PMSR_FTM_REQ_ATTR_ASAP,
	NL80211_PMSR_FTM_REQ_ATTR_PREAMBLE,
	NL80211_PMSR_FTM_REQ_ATTR_NUM_BURSTS_EXP,
	NL80211_PMSR_FTM_REQ_ATTR_BURST_PERIOD,
	NL80211_PMSR_FTM_REQ_ATTR_BURST_DURATION,
	NL80211_PMSR_FTM_REQ_ATTR_FTMS_PER_BURST,
	NL80211_PMSR_FTM_REQ_ATTR_NUM_FTMR_RETRIES,
	NL80211_PMSR_FTM_REQ_ATTR_REQUEST_LCI,
	NL80211_PMSR_FTM_REQ_ATTR_REQUEST_CIVICLOC,
	NL80211_PMSR_FTM_REQ_ATTR_TRIGGER_BASED,
	NL80211_PMSR_FTM_REQ_ATTR_NON_TRIGGER_BASED,
	NL80211_PMSR_FTM_REQ_ATTR_LMR_FEEDBACK,
	NL80211_PMSR_FTM_REQ_ATTR_BSS_COLOR,

	/* keep last */
	NUM_NL80211_PMSR_FTM_REQ_ATTR,
	NL80211_PMSR_FTM_REQ_ATTR_MAX = NUM_NL80211_PMSR_FTM_REQ_ATTR - 1
};

/**
 * enum nl80211_peer_measurement_ftm_failure_reasons - FTM failure reasons
 * @NL80211_PMSR_FTM_FAILURE_UNSPECIFIED: unspecified failure, not used
 * @NL80211_PMSR_FTM_FAILURE_NO_RESPONSE: no response from the FTM responder
 * @NL80211_PMSR_FTM_FAILURE_REJECTED: FTM responder rejected measurement
 * @NL80211_PMSR_FTM_FAILURE_WRONG_CHANNEL: we already know the peer is
 *	on a different channel, so can't measure (if we didn't know, we'd
 *	try and get no response)
 * @NL80211_PMSR_FTM_FAILURE_PEER_NOT_CAPABLE: peer can't actually do FTM
 * @NL80211_PMSR_FTM_FAILURE_INVALID_TIMESTAMP: invalid T1/T4 timestamps
 *	received
 * @NL80211_PMSR_FTM_FAILURE_PEER_BUSY: peer reports busy, you may retry
 *	later (see %NL80211_PMSR_FTM_RESP_ATTR_BUSY_RETRY_TIME)
 * @NL80211_PMSR_FTM_FAILURE_BAD_CHANGED_PARAMS: parameters were changed
 *	by the peer and are no longer supported
 */
enum nl80211_peer_measurement_ftm_failure_reasons {
	NL80211_PMSR_FTM_FAILURE_UNSPECIFIED,
	NL80211_PMSR_FTM_FAILURE_NO_RESPONSE,
	NL80211_PMSR_FTM_FAILURE_REJECTED,
	NL80211_PMSR_FTM_FAILURE_WRONG_CHANNEL,
	NL80211_PMSR_FTM_FAILURE_PEER_NOT_CAPABLE,
	NL80211_PMSR_FTM_FAILURE_INVALID_TIMESTAMP,
	NL80211_PMSR_FTM_FAILURE_PEER_BUSY,
	NL80211_PMSR_FTM_FAILURE_BAD_CHANGED_PARAMS,
};

/**
 * enum nl80211_peer_measurement_ftm_resp - FTM response attributes
 * @__NL80211_PMSR_FTM_RESP_ATTR_INVALID: invalid
 *
 * @NL80211_PMSR_FTM_RESP_ATTR_FAIL_REASON: FTM-specific failure reason
 *	(u32, optional)
 * @NL80211_PMSR_FTM_RESP_ATTR_BURST_INDEX: optional, if bursts are reported
 *	as separate results then it will be the burst index 0...(N-1) and
 *	the top level will indicate partial results (u32)
 * @NL80211_PMSR_FTM_RESP_ATTR_NUM_FTMR_ATTEMPTS: number of FTM Request frames
 *	transmitted (u32, optional)
 * @NL80211_PMSR_FTM_RESP_ATTR_NUM_FTMR_SUCCESSES: number of FTM Request frames
 *	that were acknowleged (u32, optional)
 * @NL80211_PMSR_FTM_RESP_ATTR_BUSY_RETRY_TIME: retry time received from the
 *	busy peer (u32, seconds)
 * @NL80211_PMSR_FTM_RESP_ATTR_NUM_BURSTS_EXP: actual number of bursts exponent
 *	used by the responder (similar to request, u8)
 * @NL80211_PMSR_FTM_RESP_ATTR_BURST_DURATION: actual burst duration used by
 *	the responder (similar to request, u8)
 * @NL80211_PMSR_FTM_RESP_ATTR_FTMS_PER_BURST: actual FTMs per burst used
 *	by the responder (similar to request, u8)
 * @NL80211_PMSR_FTM_RESP_ATTR_RSSI_AVG: average RSSI across all FTM action
 *	frames (optional, s32, 1/2 dBm)
 * @NL80211_PMSR_FTM_RESP_ATTR_RSSI_SPREAD: RSSI spread across all FTM action
 *	frames (optional, s32, 1/2 dBm)
 * @NL80211_PMSR_FTM_RESP_ATTR_TX_RATE: bitrate we used for the response to the
 *	FTM action frame (optional, nested, using &enum nl80211_rate_info
 *	attributes)
 * @NL80211_PMSR_FTM_RESP_ATTR_RX_RATE: bitrate the responder used for the FTM
 *	action frame (optional, nested, using &enum nl80211_rate_info attrs)
 * @NL80211_PMSR_FTM_RESP_ATTR_RTT_AVG: average RTT (s64, picoseconds, optional
 *	but one of RTT/DIST must be present)
 * @NL80211_PMSR_FTM_RESP_ATTR_RTT_VARIANCE: RTT variance (u64, ps^2, note that
 *	standard deviation is the square root of variance, optional)
 * @NL80211_PMSR_FTM_RESP_ATTR_RTT_SPREAD: RTT spread (u64, picoseconds,
 *	optional)
 * @NL80211_PMSR_FTM_RESP_ATTR_DIST_AVG: average distance (s64, mm, optional
 *	but one of RTT/DIST must be present)
 * @NL80211_PMSR_FTM_RESP_ATTR_DIST_VARIANCE: distance variance (u64, mm^2, note
 *	that standard deviation is the square root of variance, optional)
 * @NL80211_PMSR_FTM_RESP_ATTR_DIST_SPREAD: distance spread (u64, mm, optional)
 * @NL80211_PMSR_FTM_RESP_ATTR_LCI: LCI data from peer (binary, optional);
 *	this is the contents of the Measurement Report Element (802.11-2016
 *	9.4.2.22.1) starting with the Measurement Token, with Measurement
 *	Type 8.
 * @NL80211_PMSR_FTM_RESP_ATTR_CIVICLOC: civic location data from peer
 *	(binary, optional);
 *	this is the contents of the Measurement Report Element (802.11-2016
 *	9.4.2.22.1) starting with the Measurement Token, with Measurement
 *	Type 11.
 * @NL80211_PMSR_FTM_RESP_ATTR_PAD: ignore, for u64/s64 padding only
 *
 * @NUM_NL80211_PMSR_FTM_RESP_ATTR: internal
 * @NL80211_PMSR_FTM_RESP_ATTR_MAX: highest attribute number
 */
enum nl80211_peer_measurement_ftm_resp {
	__NL80211_PMSR_FTM_RESP_ATTR_INVALID,

	NL80211_PMSR_FTM_RESP_ATTR_FAIL_REASON,
	NL80211_PMSR_FTM_RESP_ATTR_BURST_INDEX,
	NL80211_PMSR_FTM_RESP_ATTR_NUM_FTMR_ATTEMPTS,
	NL80211_PMSR_FTM_RESP_ATTR_NUM_FTMR_SUCCESSES,
	NL80211_PMSR_FTM_RESP_ATTR_BUSY_RETRY_TIME,
	NL80211_PMSR_FTM_RESP_ATTR_NUM_BURSTS_EXP,
	NL80211_PMSR_FTM_RESP_ATTR_BURST_DURATION,
	NL80211_PMSR_FTM_RESP_ATTR_FTMS_PER_BURST,
	NL80211_PMSR_FTM_RESP_ATTR_RSSI_AVG,
	NL80211_PMSR_FTM_RESP_ATTR_RSSI_SPREAD,
	NL80211_PMSR_FTM_RESP_ATTR_TX_RATE,
	NL80211_PMSR_FTM_RESP_ATTR_RX_RATE,
	NL80211_PMSR_FTM_RESP_ATTR_RTT_AVG,
	NL80211_PMSR_FTM_RESP_ATTR_RTT_VARIANCE,
	NL80211_PMSR_FTM_RESP_ATTR_RTT_SPREAD,
	NL80211_PMSR_FTM_RESP_ATTR_DIST_AVG,
	NL80211_PMSR_FTM_RESP_ATTR_DIST_VARIANCE,
	NL80211_PMSR_FTM_RESP_ATTR_DIST_SPREAD,
	NL80211_PMSR_FTM_RESP_ATTR_LCI,
	NL80211_PMSR_FTM_RESP_ATTR_CIVICLOC,
	NL80211_PMSR_FTM_RESP_ATTR_PAD,

	/* keep last */
	NUM_NL80211_PMSR_FTM_RESP_ATTR,
	NL80211_PMSR_FTM_RESP_ATTR_MAX = NUM_NL80211_PMSR_FTM_RESP_ATTR - 1
};

/**
 * enum nl80211_obss_pd_attributes - OBSS packet detection attributes
 * @__NL80211_HE_OBSS_PD_ATTR_INVALID: Invalid
 *
 * @NL80211_HE_OBSS_PD_ATTR_MIN_OFFSET: the OBSS PD minimum tx power offset.
 * @NL80211_HE_OBSS_PD_ATTR_MAX_OFFSET: the OBSS PD maximum tx power offset.
 * @NL80211_HE_OBSS_PD_ATTR_NON_SRG_MAX_OFFSET: the non-SRG OBSS PD maximum
 *	tx power offset.
 * @NL80211_HE_OBSS_PD_ATTR_BSS_COLOR_BITMAP: bitmap that indicates the BSS color
 *	values used by members of the SRG.
 * @NL80211_HE_OBSS_PD_ATTR_PARTIAL_BSSID_BITMAP: bitmap that indicates the partial
 *	BSSID values used by members of the SRG.
 * @NL80211_HE_OBSS_PD_ATTR_SR_CTRL: The SR Control field of SRP element.
 *
 * @__NL80211_HE_OBSS_PD_ATTR_LAST: Internal
 * @NL80211_HE_OBSS_PD_ATTR_MAX: highest OBSS PD attribute.
 */
enum nl80211_obss_pd_attributes {
	__NL80211_HE_OBSS_PD_ATTR_INVALID,

	NL80211_HE_OBSS_PD_ATTR_MIN_OFFSET,
	NL80211_HE_OBSS_PD_ATTR_MAX_OFFSET,
	NL80211_HE_OBSS_PD_ATTR_NON_SRG_MAX_OFFSET,
	NL80211_HE_OBSS_PD_ATTR_BSS_COLOR_BITMAP,
	NL80211_HE_OBSS_PD_ATTR_PARTIAL_BSSID_BITMAP,
	NL80211_HE_OBSS_PD_ATTR_SR_CTRL,

	/* keep last */
	__NL80211_HE_OBSS_PD_ATTR_LAST,
	NL80211_HE_OBSS_PD_ATTR_MAX = __NL80211_HE_OBSS_PD_ATTR_LAST - 1,
};

/**
 * enum nl80211_bss_color_attributes - BSS Color attributes
 * @__NL80211_HE_BSS_COLOR_ATTR_INVALID: Invalid
 *
 * @NL80211_HE_BSS_COLOR_ATTR_COLOR: the current BSS Color.
 * @NL80211_HE_BSS_COLOR_ATTR_DISABLED: is BSS coloring disabled.
 * @NL80211_HE_BSS_COLOR_ATTR_PARTIAL: the AID equation to be used..
 *
 * @__NL80211_HE_BSS_COLOR_ATTR_LAST: Internal
 * @NL80211_HE_BSS_COLOR_ATTR_MAX: highest BSS Color attribute.
 */
enum nl80211_bss_color_attributes {
	__NL80211_HE_BSS_COLOR_ATTR_INVALID,

	NL80211_HE_BSS_COLOR_ATTR_COLOR,
	NL80211_HE_BSS_COLOR_ATTR_DISABLED,
	NL80211_HE_BSS_COLOR_ATTR_PARTIAL,

	/* keep last */
	__NL80211_HE_BSS_COLOR_ATTR_LAST,
	NL80211_HE_BSS_COLOR_ATTR_MAX = __NL80211_HE_BSS_COLOR_ATTR_LAST - 1,
};

/**
 * enum nl80211_iftype_akm_attributes - interface type AKM attributes
 * @__NL80211_IFTYPE_AKM_ATTR_INVALID: Invalid
 *
 * @NL80211_IFTYPE_AKM_ATTR_IFTYPES: nested attribute containing a flag
 *	attribute for each interface type that supports AKM suites specified in
 *	%NL80211_IFTYPE_AKM_ATTR_SUITES
 * @NL80211_IFTYPE_AKM_ATTR_SUITES: an array of u32. Used to indicate supported
 *	AKM suites for the specified interface types.
 *
 * @__NL80211_IFTYPE_AKM_ATTR_LAST: Internal
 * @NL80211_IFTYPE_AKM_ATTR_MAX: highest interface type AKM attribute.
 */
enum nl80211_iftype_akm_attributes {
	__NL80211_IFTYPE_AKM_ATTR_INVALID,

	NL80211_IFTYPE_AKM_ATTR_IFTYPES,
	NL80211_IFTYPE_AKM_ATTR_SUITES,

	/* keep last */
	__NL80211_IFTYPE_AKM_ATTR_LAST,
	NL80211_IFTYPE_AKM_ATTR_MAX = __NL80211_IFTYPE_AKM_ATTR_LAST - 1,
};

/**
 * enum nl80211_fils_discovery_attributes - FILS discovery configuration
 * from IEEE Std 802.11ai-2016, Annex C.3 MIB detail.
 *
 * @__NL80211_FILS_DISCOVERY_ATTR_INVALID: Invalid
 *
 * @NL80211_FILS_DISCOVERY_ATTR_INT_MIN: Minimum packet interval (u32, TU).
 *	Allowed range: 0..10000 (TU = Time Unit)
 * @NL80211_FILS_DISCOVERY_ATTR_INT_MAX: Maximum packet interval (u32, TU).
 *	Allowed range: 0..10000 (TU = Time Unit)
 * @NL80211_FILS_DISCOVERY_ATTR_TMPL: Template data for FILS discovery action
 *	frame including the headers.
 *
 * @__NL80211_FILS_DISCOVERY_ATTR_LAST: Internal
 * @NL80211_FILS_DISCOVERY_ATTR_MAX: highest attribute
 */
enum nl80211_fils_discovery_attributes {
	__NL80211_FILS_DISCOVERY_ATTR_INVALID,

	NL80211_FILS_DISCOVERY_ATTR_INT_MIN,
	NL80211_FILS_DISCOVERY_ATTR_INT_MAX,
	NL80211_FILS_DISCOVERY_ATTR_TMPL,

	/* keep last */
	__NL80211_FILS_DISCOVERY_ATTR_LAST,
	NL80211_FILS_DISCOVERY_ATTR_MAX = __NL80211_FILS_DISCOVERY_ATTR_LAST - 1
};

/*
 * FILS discovery template minimum length with action frame headers and
 * mandatory fields.
 */
#define NL80211_FILS_DISCOVERY_TMPL_MIN_LEN 42

/**
 * enum nl80211_unsol_bcast_probe_resp_attributes - Unsolicited broadcast probe
 *	response configuration. Applicable only in 6GHz.
 *
 * @__NL80211_UNSOL_BCAST_PROBE_RESP_ATTR_INVALID: Invalid
 *
 * @NL80211_UNSOL_BCAST_PROBE_RESP_ATTR_INT: Maximum packet interval (u32, TU).
 *	Allowed range: 0..20 (TU = Time Unit). IEEE P802.11ax/D6.0
 *	26.17.2.3.2 (AP behavior for fast passive scanning).
 * @NL80211_UNSOL_BCAST_PROBE_RESP_ATTR_TMPL: Unsolicited broadcast probe response
 *	frame template (binary).
 *
 * @__NL80211_UNSOL_BCAST_PROBE_RESP_ATTR_LAST: Internal
 * @NL80211_UNSOL_BCAST_PROBE_RESP_ATTR_MAX: highest attribute
 */
enum nl80211_unsol_bcast_probe_resp_attributes {
	__NL80211_UNSOL_BCAST_PROBE_RESP_ATTR_INVALID,

	NL80211_UNSOL_BCAST_PROBE_RESP_ATTR_INT,
	NL80211_UNSOL_BCAST_PROBE_RESP_ATTR_TMPL,

	/* keep last */
	__NL80211_UNSOL_BCAST_PROBE_RESP_ATTR_LAST,
	NL80211_UNSOL_BCAST_PROBE_RESP_ATTR_MAX =
		__NL80211_UNSOL_BCAST_PROBE_RESP_ATTR_LAST - 1
};

/**
 * enum nl80211_sae_pwe_mechanism - The mechanism(s) allowed for SAE PWE
 *	derivation. Applicable only when WPA3-Personal SAE authentication is
 *	used.
 *
 * @NL80211_SAE_PWE_UNSPECIFIED: not specified, used internally to indicate that
 *	attribute is not present from userspace.
 * @NL80211_SAE_PWE_HUNT_AND_PECK: hunting-and-pecking loop only
 * @NL80211_SAE_PWE_HASH_TO_ELEMENT: hash-to-element only
 * @NL80211_SAE_PWE_BOTH: both hunting-and-pecking loop and hash-to-element
 *	can be used.
 */
enum nl80211_sae_pwe_mechanism {
	NL80211_SAE_PWE_UNSPECIFIED,
	NL80211_SAE_PWE_HUNT_AND_PECK,
	NL80211_SAE_PWE_HASH_TO_ELEMENT,
	NL80211_SAE_PWE_BOTH,
};

/**
 * enum nl80211_sar_type - type of SAR specs
 *
 * @NL80211_SAR_TYPE_POWER: power limitation specified in 0.25dBm unit
 *
 */
enum nl80211_sar_type {
	NL80211_SAR_TYPE_POWER,

	/* add new type here */

	/* Keep last */
	NUM_NL80211_SAR_TYPE,
};

/**
 * enum nl80211_sar_attrs - Attributes for SAR spec
 *
 * @NL80211_SAR_ATTR_TYPE: the SAR type as defined in &enum nl80211_sar_type.
 *
 * @NL80211_SAR_ATTR_SPECS: Nested array of SAR power
 *	limit specifications. Each specification contains a set
 *	of %nl80211_sar_specs_attrs.
 *
 *	For SET operation, it contains array of %NL80211_SAR_ATTR_SPECS_POWER
 *	and %NL80211_SAR_ATTR_SPECS_RANGE_INDEX.
 *
 *	For sar_capa dump, it contains array of
 *	%NL80211_SAR_ATTR_SPECS_START_FREQ
 *	and %NL80211_SAR_ATTR_SPECS_END_FREQ.
 *
 * @__NL80211_SAR_ATTR_LAST: Internal
 * @NL80211_SAR_ATTR_MAX: highest sar attribute
 *
 * These attributes are used with %NL80211_CMD_SET_SAR_SPEC
 */
enum nl80211_sar_attrs {
	__NL80211_SAR_ATTR_INVALID,

	NL80211_SAR_ATTR_TYPE,
	NL80211_SAR_ATTR_SPECS,

	__NL80211_SAR_ATTR_LAST,
	NL80211_SAR_ATTR_MAX = __NL80211_SAR_ATTR_LAST - 1,
};

/**
 * enum nl80211_sar_specs_attrs - Attributes for SAR power limit specs
 *
 * @NL80211_SAR_ATTR_SPECS_POWER: Required (s32)value to specify the actual
 *	power limit value in units of 0.25 dBm if type is
 *	NL80211_SAR_TYPE_POWER. (i.e., a value of 44 represents 11 dBm).
 *	0 means userspace doesn't have SAR limitation on this associated range.
 *
 * @NL80211_SAR_ATTR_SPECS_RANGE_INDEX: Required (u32) value to specify the
 *	index of exported freq range table and the associated power limitation
 *	is applied to this range.
 *
 *	Userspace isn't required to set all the ranges advertised by WLAN driver,
 *	and userspace can skip some certain ranges. These skipped ranges don't
 *	have SAR limitations, and they are same as setting the
 *	%NL80211_SAR_ATTR_SPECS_POWER to any unreasonable high value because any
 *	value higher than regulatory allowed value just means SAR power
 *	limitation is removed, but it's required to set at least one range.
 *	It's not allowed to set duplicated range in one SET operation.
 *
 *	Every SET operation overwrites previous SET operation.
 *
 * @NL80211_SAR_ATTR_SPECS_START_FREQ: Required (u32) value to specify the start
 *	frequency of this range edge when registering SAR capability to wiphy.
 *	It's not a channel center frequency. The unit is kHz.
 *
 * @NL80211_SAR_ATTR_SPECS_END_FREQ: Required (u32) value to specify the end
 *	frequency of this range edge when registering SAR capability to wiphy.
 *	It's not a channel center frequency. The unit is kHz.
 *
 * @__NL80211_SAR_ATTR_SPECS_LAST: Internal
 * @NL80211_SAR_ATTR_SPECS_MAX: highest sar specs attribute
 */
enum nl80211_sar_specs_attrs {
	__NL80211_SAR_ATTR_SPECS_INVALID,

	NL80211_SAR_ATTR_SPECS_POWER,
	NL80211_SAR_ATTR_SPECS_RANGE_INDEX,
	NL80211_SAR_ATTR_SPECS_START_FREQ,
	NL80211_SAR_ATTR_SPECS_END_FREQ,

	__NL80211_SAR_ATTR_SPECS_LAST,
	NL80211_SAR_ATTR_SPECS_MAX = __NL80211_SAR_ATTR_SPECS_LAST - 1,
};

/**
 * enum nl80211_mbssid_config_attributes - multiple BSSID (MBSSID) and enhanced
 * multi-BSSID advertisements (EMA) in AP mode.
 * Kernel uses some of these attributes to advertise driver's support for
 * MBSSID and EMA.
 * Remaining attributes should be used by the userspace to configure the
 * features.
 *
 * @__NL80211_MBSSID_CONFIG_ATTR_INVALID: Invalid
 *
 * @NL80211_MBSSID_CONFIG_ATTR_MAX_INTERFACES: Used by the kernel to advertise
 *	the maximum number of MBSSID interfaces supported by the driver.
 *	Driver should indicate MBSSID support by setting
 *	wiphy->mbssid_max_interfaces to a value more than or equal to 2.
 *
 * @NL80211_MBSSID_CONFIG_ATTR_MAX_EMA_PROFILE_PERIODICITY: Used by the kernel
 *	to advertise the maximum profile periodicity supported by the driver
 *	if EMA is enabled. Driver should indicate EMA support to the userspace
 *	by setting wiphy->ema_max_profile_periodicity to
 *	a non-zero value.
 *
 * @NL80211_MBSSID_CONFIG_ATTR_INDEX: Mandatory parameter to pass the index of
 *	this BSS (u8) in the multiple BSSID set.
 *	Value must be set to 0 for the transmitting interface and non-zero for
 *	all non-transmitting interfaces. The userspace will be responsible
 *	for using unique indices for the interfaces.
 *	Range: 0 to wiphy->mbssid_max_interfaces-1.
 *
 * @NL80211_MBSSID_CONFIG_ATTR_TX_IFINDEX: Mandatory parameter for
 *	a non-transmitted profile which provides the interface index (u32) of
 *	the transmitted profile. The value must match one of the interface
 *	indices advertised by the kernel. Optional if the interface being set up
 *	is the transmitting one, however, if provided then the value must match
 *	the interface index of the same.
 *
 * @NL80211_MBSSID_CONFIG_ATTR_EMA: Flag used to enable EMA AP feature.
 *	Setting this flag is permitted only if the driver advertises EMA support
 *	by setting wiphy->ema_max_profile_periodicity to non-zero.
 *
 * @__NL80211_MBSSID_CONFIG_ATTR_LAST: Internal
 * @NL80211_MBSSID_CONFIG_ATTR_MAX: highest attribute
 */
enum nl80211_mbssid_config_attributes {
	__NL80211_MBSSID_CONFIG_ATTR_INVALID,

	NL80211_MBSSID_CONFIG_ATTR_MAX_INTERFACES,
	NL80211_MBSSID_CONFIG_ATTR_MAX_EMA_PROFILE_PERIODICITY,
	NL80211_MBSSID_CONFIG_ATTR_INDEX,
	NL80211_MBSSID_CONFIG_ATTR_TX_IFINDEX,
	NL80211_MBSSID_CONFIG_ATTR_EMA,

	/* keep last */
	__NL80211_MBSSID_CONFIG_ATTR_LAST,
	NL80211_MBSSID_CONFIG_ATTR_MAX = __NL80211_MBSSID_CONFIG_ATTR_LAST - 1,
};

/**
 * enum nl80211_ap_settings_flags - AP settings flags
 *
 * @NL80211_AP_SETTINGS_EXTERNAL_AUTH_SUPPORT: AP supports external
 *	authentication.
 * @NL80211_AP_SETTINGS_SA_QUERY_OFFLOAD_SUPPORT: Userspace supports SA Query
 *	procedures offload to driver. If driver advertises
 *	%NL80211_AP_SME_SA_QUERY_OFFLOAD in AP SME features, userspace shall
 *	ignore SA Query procedures and validations when this flag is set by
 *	userspace.
 */
enum nl80211_ap_settings_flags {
	NL80211_AP_SETTINGS_EXTERNAL_AUTH_SUPPORT	= 1 << 0,
	NL80211_AP_SETTINGS_SA_QUERY_OFFLOAD_SUPPORT	= 1 << 1,
};

#endif /* __LINUX_NL80211_H */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   m                  y                  z                  |                  ~                                                                                                                                                                                                                                           ]!                  `!                  a!                  c!                  e!                  g!                  i!                  n!                   "      $                    (            (       ,             "      0            '"      4            )"      8            +"      <            ,"      @            -"      D            i"      H            l"      L            n"      P            p"      T            r"      X            w"      \            "      `            "      d            "      h            "      l            "      p            "      t            "      x            "      |            "                  "                  "                  "                  #                  
#                  #                  #                   #                  '#                  )#                  +#                  ,#                  -#                  i#                  l#                  n#                  p#                  r#                  w#                  #                  #                  #                  #                  #                  #                  #                  #                  #                  #                  #                  #                  #                   #                  #                  #                  $                  $                  $                   $                  "$                   '$      $            0$      (            1$      ,            4$      0            2%      4            7%      8            K%      <            P%      @            Q%      D            T%      H            G&      L            L&      P            `&      T            a&      X            d&      \            '      `            '      d            '      h            '      l            '      p            '      t            (      x            (      |            #)                  0)                  1)                  4)                  *                  *                  (*                  0*                  1*                  4*                  +                  !+                  4+                  @+                  B+                  D+                  I+                  N+                  W+                  [+                  b+                  +                  +                  +                  +                  +                  +                  +                  +                  ,                  ,                  ,                  ,                   ,                  !,                  (,                  ,                  ,                  ,                  ,                  ,                   ,      $            ,      (            ,      ,            ,      0            ,      4            ,      8            ,      <            ,      @            -      D            -      H            -      L            -      P            -      T            -      X            -      \            -      `            -      d            -      h            -      l            -      p            -      t            -      x            -      |            .                  .                  .                  .                  .                  .                  .                  .                  .                  .                  .                  .                  .                  .                  /                  /                  m/                  n/                  o/                  q/                  s/                  u/                  z/                  /                  /                  /                  /                  /                  /                  /                  /                  /                  $0                   %0                  &0                  (0                  *0                  ,0                  .0                  30                  K0                   P0      $            R0      (            W0      ,            Y0      0            [0      4            \0      8            ]0      <            r0      @            s0      D            u0      H            w0      L            y0      P            {0      T            0      X            0      \            0      `            0      d            0      h            0      l            0      p            0      t            0      x            0      |            0                  0                  0                  0                  0                  0                  0                  0                   1                  1                  1                  1                  1                  1                  c1                  d1                  f1                  h1                  j1                  o1                  p1                  r1                  w1                  y1                  {1                  |1                  }1                  1                  1                  1                  1                  1                  1                   1                  1                  1                  2                  2                  2                  2                  !2                   62      $            72      (            82      ,            :2      0            <2      4            >2      8            @2      <            E2      @            P2      D            R2      H            W2      L            Y2      P            [2      T            \2      X            ]2      \            d2      `            y2      d            z2      h            {2      l            }2      p            2      t            2      x            2      |            2                  2                  2                   3                  3                  3                  3                  3                  3                  3                  3                  !3                  #3                  (3                  03                  23                  63                  73                  L3                  M3                  O3                  T3                  3                  3                  3                  3                  3                  3                  3                  3                  3                  3                  3                   3                  4                  4                  4                  
4                  4                  4                   4                   +4      $            04      (            ?4      ,            @4      0            H4      4            P4      8            \4      <            `4      @            h4      D                    H                   L                   P            
       T                   X                   \                   `                   d                    h            %       l            (       p            -       t            0       x            p4      |            w4                  y4                  ~4                  4                  4                  4                  4                  X5                  \5                  ]5                  _5                  a5                  c5                  e5                  j5                  5                  5                  5                  5                  5                  5                  5                  5                  5                  16                  @6                  F6                  V6                  6                  6                  6                  6                  6       	            6      	            6      	            6      	            6      	            6      	            6      	            B7      	            P7       	            W7      $	            Y7      (	            [7      ,	            _7      0	            e7      4	            l7      8	            7      <	            7      @	            7      D	            7      H	            7      L	            7      P	            7      T	            8      X	            8      \	            8      `	            8      d	            !8      h	            #8      l	            (8      p	            8      t	            8      x	            8      |	            8      	            8      	            8      	            8      	            8      	            8      	            +9      	            ,9      	            -9      	            /9      	            19      	            39      	            59      	            :9      	            @9      	            F9      	            9      	            9      	            9      	            9      	            9      	            9      	            9      	            9      	            :      	            :      	            c:      	            d:      	            e:      	            g:      	            i:      	            k:      	            p:       
            :      
            :      
            :      
            :      
            :      
            :      
            :      
            :       
             ;      $
            ;      (
            $;      ,
            2;      0
            ;      4
            ;      8
            ;      <
            ;                                      f                    Y                    >                                                                                                                                                   ~                $                                        %                        =
                %           $                   (          1           0                   4          1           <             )      @          1           H                   L          1           T                   X          1           `                   d          1           l             :      p                                                                           
                    :                                   ,                       g      $             A      (          ,         0                   4                   8          ,         @             !      D             |      H          >  
       P                   T             p      X          ,         `                   d                   h             
       p                   t             z      x          ,                      c                                      
                    	                   T
                   
                                       ?                f  
                                                       f  
                    U                   g                f  
                                       v                f  
                                                       Y  
                                       $                Y  
                    
                                 f  
                   A                  a               Y  
                          $                  (         >  
       0            {      4            4      8         f  
       @                  D            7      H         Y  
       P                  T                  X         >  
       `                  d                  h         Y  
       p            /      t                  x         Y  
                                                    >  
                   e                                 Y  
                                                     Y  
                   !                  !               >  
                   5                  5                 
                   6                  6                  
                   7                  7                  
                   7                  /8               Y  
                    I9                  9               f  
                   /:                  p:                 
       `            &      h            3                  &                  8                  ?                  C                  G                  a      @
            &      H
            3      h
            ?      p
            C      
            f      
            a      
            &      
            3                                          0                  8                  X                  `                                                                                    a                                                                                                  (                              &                  3                                                                                                                                      (                  H                  P            a      p                  x                                                                                                       &      (            3      H            &      P                  p                  x            %                  ,                  a                   &                  3      (            &      0            B      P                  X                  x                                                I                  a                  &                  _                   3      @            03      `            P2                  p1                  0                  P0               	                               (                   0                             	   `                                      @                         0         	          8         >          h            `      p                            	                   Y                                        `      p         	         x         f                                        @	               	                             H                  P                            l                   ;                   .                   3                   j                   h                                         ^                                        e                                       -                                       e                              $          ^          (                   ,          e          0                   4          ^          8             
	      <          e          @             
      D          ^          H             
      L          e          P             u      T          5          X                   \          e          `                   d          5          h             /      l          e          p                   t          D          x                   |          e                       Z                D                       l                e                                       5                                       e                                       5                                       e                                       5                                       e                                       D                                       e                                       -                                       e                       i                D                       {                e                                       D                                       e                                      -                      *               e                      j               5                      |               e                             $         D          (                  ,         e          0                  4         -          8                  <         e          @                  D         D          H                  L         e          P            2       T         W          X            7       \         k          `                   d         D          h                   l         e          p            !      t         -          x            "      |         e                      5               [                      6               e                      7                                     7               e                      7                                     7               e                      a8               D                      o8               e                      9               5                      9               e                      :               [                      :               e                                             04                           (             P4      @          >          H              4      `          Y          h             `4                f                       @4                                        4                                                                                                  `      (                                                     /                   0*                =                        `      0          	   0       8          	   0       @                    `                   h             .      p             0)      x          =                       @
                	                    	                                                              -                   '                =                       
                	                    	                                                 (            ,      0            `&      8         =          @                  P         	   P      X         	   P      `                                                 ,                  P%               =                                      	                  	                                                          @+                  0$               =                                       	                  	                                        
                     
                     
   @                 
   `                  
          (          
          0          
          8          
          @          
          H          
          P          
   @      X          
   `      `          
         h          
         p          
         x          
                   
                    
                    
   @                
   `                
                   
                   
                   
                   
                    
                    
   @                
   `                
                   
                   
                   
                   
                   
                   
   @               
   `                
         (         
         0         
         8         
         @         
          H         
          P         
   @      X         
   `      `         
         h         
         p         
         x         
                  
                   
                                                                      (             k      @                   H                   `                   h                                                                                                                                                                                                                                     (                  @                  H            #      `                  h            A                                    ]                                    w                                                                                                                                      (                  @                  H                  `                  h                                                3                                    C                                    \                                    y                                                              (                  @                  H                  `                  h                                                H                                                                                                            h                                     +                         (            >      @                  H            T      `                  h            o                                                                                                                                                                                                              (                  @                  H                  `                  h            *                                    ?                                    N                                    ^                                    {                                                              (                                                                       1          (          l          `                    x          [                                        ;                                         -                    7                    .                       0       8         D          @                   H         3                      @                5                   d                   j                      P                ^                                        h           .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.text.unlikely .rela.static_call.text .rela__ksymtab __kcrctab .rela.rodata __ksymtab_strings .rela__mcount_loc .rodata.str1.1 .rela.smp_locks .rela.retpoline_sites .rela.return_sites .orc_unwind .rela.orc_unwind_ip .rodata.str1.8 .rela__tracepoints_ptrs .modinfo .rela__param __tracepoints_strings .rodata.cst2 __versions .rela__bug_table .rela__jump_table .rela.data .rela.static_call_sites .rela__bpf_raw_tp_map .rela_ftrace_events .rela.ref.data .rela_ftrace_eval_map .rela.init.data .rela__tracepoints .gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                             @       $                              .                     d       <                              ?                            ;                             :      @                    p5      >                    J                     o<      (                              E      @               @F     `       >                    ^                     <      0                              Y      @               F            >                    u                     <      <                              p      @               0G     h      >   	                                      =                                                          =                                          @               H           >                          2               <A      a                                                  A                                          @               M           >                          2               B      1                                                 J                                          @               `P           >                                         K      `                                    @               U     @      >                                         K                                          @               PW           >                                        L      `                                                 [      @
                                  @               @[     =      >                    "     2               (f                                  6                    h                                    1     @                           >                    I                    $h                                    W                    i      (                              R     @               P     `       >                    _                    8i      [                              u                    i                                                       i                                                         y      x                                   @                          >   $                                     z                                         @                    	      >   &                                     @|                                         @                     	      >   (                                     0                                        @                    @      >   *                                                                                @               P            >   ,                                           0                                   @               p            >   .                                            (                                   @                           >   0                                     H                                        @                          >   2                 '                          8                             "     @               0     `	      >   4                 7                           (                              2     @                    @      >   6                 E                                        @               _                           P                              d     0                                                   m                                                          }                           W)                                                  H                                                          X      h"      ?                    	                                                                                                                 0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  AW̞^A(hXټfZ.fq8 ?uB:'GOb]HrmӪ?	5rcZ䔃,jxqL*;^GzpK3XՊfnGmHVrcԿ'o`9XLab+|Ow4kv8O*-,o\#4[5hMnGt;b㮅k/<MRhtm~38JKɀ         ~Module signature appended~
 07070100020A49000041ED00000000000000000000000269457E4D00000000000000CA0000000200000000000000000000002D00000000usr/lib/modules/6.1.0-35-amd64/kernel/fs/nfs  07070100020A4A000081A4000000000000000000000001681B780000113FC3000000CA0000000200000000000000000000003400000000usr/lib/modules/6.1.0-35-amd64/kernel/fs/nfs/nfs.ko   ELF          >                     ,         @     @ H G          GNU "ߟf9XMf7        Linux                Linux   6.1.0-35-amd64      G    ff.          G             NTOTN`O`NhOh                        N\O\      H   H   H   H   H   H   H  H  H  H  H  H      VxfWx    f.         Ai   HcHigfffH")ЉHHt   tLtG   EщWAtHu  H   HG:  G    H=:  vธ:  كtrHWHtAu1Hi:  H:  HG:  H=I vI HG1G    H=I v1HiI HI HGI H=I t̸I Ź      HHGHI wH9HBHG1ff.         USHGp    H(    HH  H    H   []    f         w11Ҿ   H             AVAUATAUHSHH   L   D-    eH%(   H$   1    IH  N,    1   H|$IŸ   HD$    HǄ$       HLl$HHD$@    H   H$   D$HC HD$H   HD$HEPHD$(H   HD$0HEHD$8H    Dd$XD$T   D$\HEXHD$xHCt	HD$`    HCt	HL$`   HCtHL$`HCt	HL$`   HC@tHL$`HCt	HL$`   H    w)1H$   eH+%(   u[HĐ   []A\A]A^    H    HH= w#H  H     H                 @     UHSHHH       HC(H= wmHM H`  H`  HEHBHEHBHEHBHC(H`  HPxHC(`hCT  @ tHC(HhCTu	1[]    HC(Hh        []    D      SHHOTeH%(   HD$@HHD$    HD$     HD$(    HD$0    HD$8    H   H$HP HT$H   HT$H   2t$T$ H   H   HT$(H@H@(HD$0H@  HD$8w:  0   0 t,H   HfD$    H= wHC8Hǃ      1HT$@eH+%(   u
HH[            H8Ht                 AU1ATUHSHH8D%    eH%(   HD$01HGpfL$.HD$    HD$    HD$    HD$    HD$    HD$&    L(    IH  N$    IhL9   D   H    
   H|$LkI    DA     H   "   L   H    H|$        I      H   H    LD    I      H    IH    HHI   ATHD$PLL$        XZHD$0eH+%(   u"H81[]A\A]    H    H        ff.     @     AUATIU-    SHGpHL(    IH  H,    LH[Huh]A\A]             AUATIU-    SHGpHL(    IH  H,    LH[HuX]A\A]             ATUHSHGp    L     I$H  H    H       Hu H{h[]A\    @     ATUHSHGp    L     I$H  H    H       Hu H{X[]A\    @     SHH0eH%(   HD$(1    K1HT$(eH+%(   u}H0[    1HH$    HD$    HD$    HD$    HD$         
Hu      HH        SHH        1s         AVAUATD%    UHSHGpHL(    IH  N$    IXL9t}Pt[1]A\A]A^        H{ Ls   DH    H{    I    EMHHHC(H    AV        X1[]A\A]A^    H    H    y    SHH   H w    H   H      t4~7H   H8    H       H       H[        ɾ   H             AUATU-    SL   H    I$H  H,    HHŨ   H    u[]A\A]    H       tH   H   HBHL   D%    H     H   H"H       IH  N$      u8H    H   H   H9u)H   H[]A\H  A]    I|$x             Ht    ff.         SP  
  H=        H%  HH@@   H@(H@ @  HCHCHCHCHC H  H  H  H  H  H  Hp  Hp  Hx  H  H  H  H  H  H  ǃ          HC@HtgH      ǃ      Hx  H    HP  HǃX      H`  Hǃh          Hp  H        H[    H    1f    ATUSHH    Hk0    L%    H    HL    tIl$H-    Lc0HC8    HCHSH    [] A\H        ff.     f    AWAVAUATUSHHH/D%    L       IH  LkN$    M$   L    L   H   LH$L    tH$LsHSM.L   Ml$pLsIT$hLH$L    tH$Mt$pLk HSMu eHL[]A\A]A^A_             SHH        HCH{0 H            tHS0HC8HBHH     H    HC0H"HC8[    f.         USGHu
H[]           ŉC11Ҿ   H        yHtH`Hc[]    fD      USHGp    H(    HH  H    H   []    f         AUATUSH/H   L   HD%        IH  N$    IĨ   L    H{    tHSHCHBHH"    HCH   H   H9tEH{    tHSHC HBHH     LHCH"HC     []A\A]    MH{    u[]A\A]         SH    H  HtH    H{0H w    H{(H w    H;HtH`      HP      H{@Ht    H@  HtHtH    [        H    [    @     AU8  
  ATUHH=    S    HP  HËE<   HE0H   H8    !  H   Le(Lk H@   C   H   I      I      HuLL    HE(H}H   Ht      H   H   H      Hǃ   H   H   HE HCE8   E@   EDHmHDH               P	x@H   Hǃ      H[]A\A]    H   H8    H    HҾ       봀=        H    LH                   of         AWIAVAUATUSH(HoH        HH  HHD$     I   IG01H@HD$HD$ H   H$H<$    MwH-    Mg    IH  H,    LmXHEXLHI9u   I   LHI9   AVx   IG0H@I9   uAG8A9   uAG<A9   uI7IF@@8uA4$AF f9K  I   H vL    f   A  p	  M   H  H<$    HD$LH      HH= H(H[]A\A]A^A_       Am  p		  H   HHD$    L    D$MtLH|$    D$Lct$H<$    HtH   HH      I wL      Ic^  L4ft|f
ID$It$I3F(I3v0H	I|$     )  A4$AF ftDf
t>ft
f
v1AF"f9   L    AN$A9L$$At$fftf
t1f9"   L    -   L       L    	H9Ll$ L   LIm`MuXLH    tMe`L   H   Le H<$    HD$LHH  H([]A\A]A^A_    AF8A9D$;LH Lff.         AV   AUATUHSHH   eH%(   H$   1H|$8HT$hSH$    HD$    HD$    HD$    HD$    HH  KHHd$pHD$(H0  HD$0H  HD$HH    HD$P  t$XD$`H@  HD$x    CtL$ H|$     IAH=   HE CETC,M\   I$   } t~ ~EEXC  Cp  iC   H   iC      iC       iC$      AŅ    HHfExHC4H   HC<H   HCDH   HCLH  HCTH  HC\H  Cd  Sh    AŅ   L  Mt7L  L   I     LLL    H  H`     E1퉅h  $  fl  (  fn  C(   H$   eH+%(   i  HĈ   D[]A\A]A^    HE     MtLA$      =  v)¹   H9HGуtc=  @Ɓ @uMMhKA$      =  v)¹   H9HGуtU=  @Ɓ @u?M`HJH         Hs   HH|HJH      tNHs   HH둀=     n   H    LH            E   Q          9F   9F$fD      U   HAWAVAUIATISHH   L3eH%(   H$   1L|$LHI   H   HtH    Z  I   Ll$LLHD$T    H   HD$X    HD$`    HD$h    HD$p          s`Hy  Kh  D$=  v	;C`  D$$=  v	;Ch  H{(    IH=  R  {`          DGdHCdChHH9sShց       dHT$,ClHJHHt*H   uHѸ   H   ^     HT$0CpHс       H9HGи   LJIB     9Gȉ9BǉCtCT tHǃ       Hǃ       HD$8HT$HH{(H   HD$@H   DH   HD$|H          A9AFǉH H	Ћ$   H   $ A9AFǉ   tK\      
  I   H  1HtC_@tCWtLH    1҅OH$   eH+%(     HĐ   [A\A]A^A_]      Hs   H  Hs   HHH=            Ch   d        H9HFи   HJHu!C`HH9S`H  Hs   HC`HH9sS`ׁ   XAd        C`   JC`      +   ƹ   =  v[   H9HFH  v@Ɓ @t2HJHT       Hs   HHKhD   ǹ   =  v\   H9HFH  vA@ǁ @t2HNH       Hs   HHK`|$(D      H  v2   H9HFH     A@ǁ @   Kh|$D      H  v2   H9HFH     A@ǁ @   K`2LL,$HD$        I   LHHH       D$            HNH      tJHs   HH
HNHtq   t%Hs   HH0            ^       9FJ   9F   9F   9Fr     ATIUHS    HtDHLHHL   MtI|$    L    H    []A\    ff.         UHAWIAVAAUIATISH    H  HI$@  Htǀ       H H@  I<$H;I$  H       P	  AD$TH߉CTAD$`C`AD$hChA$      A$      A$      A$      AD$\C\A$      I$   H   I$   H   I$   H   I$  H  I$  H  I$  H  A$    AD$xfCxIG(IW0H   H   ID$(DHpx    AąxcLH    AąxQ   =   v
ǃ      H)Aąx(H    H    H   H[A\A]A^A_]    HIc    H[A\A]A^A_]           h       Yff.     @     AVAUIATUHSLg0    H2  HIEXHtǀ       H H@      IH  IUPIu0HHc)  I$  LHHc  H   H   :  =   v
ǃ      A| u0I$  1LHI$  H@H@H    Hc   IF(H   IF0H           H    H    H   I   HtH}    H    LH    [H]A\A]A^    HL    H    H[]A\A]A^            M   MtI|$    L    =   v
ǃ      AD$@K\ff.         UH    S    H    H=    tRHXHC0HXH=    t<HC;(uH        H w+H;    HHDH[]    H        H           H        H        H    HXH=    u1H    Hã    H        HC0HXH=    tHC;(uH        H        H 9Iff.     f    H?         UHS        HH  H    1Hǃ       HCXHCXHC`HChHChHCpH      HCxHǃ       ǃ           HHHǃ       H   Hǃ       Hǃ       Hǃ       Hǃ       Hǃ       []             ATUHS        HH  H    H    D%        HH  J,    H}x    HSXHCXH9uHChHhH9u[]A\    HChHhH9t[]A\    ff.     @     U-    SH    HH  H,    A   H1H   H        H   HtrE1HA   H    $  H        Ht6H   E1A   H    $  H        Ht	1[]    H   H                 H   H                 1H        f.          H0    ff.          ATLgXUHSHL    HCHHH@0H;0uBH{0Ht5HG(   H  H H   Hx      HHHEHkp[L]A\    ff.     @     W N(9      9   W$N,9rq   9rhH   Hv0H9t]HtDHtNHcW;V|@   9~:L      
9rHI9t9s           1    ff.     @     w8         SH    @    HC H@(H  H@@eH   1[            SH        HC0HtH   u       uHChH@PHH[    f.         HGxHu    t    H            SHG(HH  C
u?   tf% f= @tf= uG\uGTt @ uCHuHt1[    @uH    t[    [    [    f    ATUSLg0HMtHL    t        1 L2        1[]A\               ff.     @     AVAUATIUSHHHeH%(   HD$@1@t]Hx   LoI}0H   H.    HCI9   HD$@eH+%(      HH[]A\A]A^        HCxHt&H    HIHx0.    L    LsxL       1LII1LHL           Ht$L    HCxHtHt$L    y9        H    ff.     @     H    ff.     @     HtHG(H  @\@u        ff.         AVAUIATIUSH    HLp0H    fA<$ u.IF(LLHLH  H H   H@X    uxI0H    AE | u*HCh1LLH  HH   H@H    x5H{hLL    HH    HH    H[]A\A]A^    Hc         HH= w    1        f.             1    ff.     @     Hx  HGx    Hx         SHHG0t!HtH{@@       H
    [    H0    f    Ht\ATL   USHL    H8  Ht.H   t%HkXH    HcpH    H   Hu[L]A\        D      1   u      u1eH%    Bt    HB H?  HH         AUATAUHSHL       @    EtAtBHH[]A\A]    HxLe0L    H9]hu?L    H[]A\A]    HuH]hH[]A\A]    Le0L    H]hx.H]hIE8    }DAEE     HEIE0IE(L    Z        AWAVAUATIUHS    @    HE(H  H@@eH   H=    X   
@     HH   H C@   L   LmLHC    HEI9tYLuLHL    tL+LsIH]H8LHC     H w8I$   1[]A\A]A^A_     tB   H    H[]A\A]A^A_    ff.          AWAVAUATUSH eH%(   HD$1Hl$Hl$HHl$u'HD$eH+%(   y  H []A\A]A^A_    IH        I  I   MHH$    L    HHtbHLL{    L    tHSHC HBHLt$HLL    tM~LLsHk L|$    HHuIH<$    H        HD$H9I     I"    H\$HLc    tHHCHBHL3LLkHD$H9uI H    tI I(HBHI I(        USHn H   Hň   H    H    tHHCHBHH"    HHC    HtH{HH       1[]         AWAVAUATAH    USH0eH%(   HD$(1HD$HD$HD$     H    HH    E  El$E7  HD$    L(H(   H    tI   I   HBHL5    H    HL    tH    IǇ       M   IH<$H       H   H-   H       AIA   HI@  M   HH$    I   I9   M   L    tI$ID$HBHHT$Ht$LHT$    tHT$HD$LbI$ID$Ld$I   I|$    I   HD$I9H    tI   I   HBHI   I   A   Ll$H    I     H"        HD$HL$H9tAH\$HLs    tHHCHBHL#LHkXHD$HL$H9uHD$(eH+%(   uH0L[]A\A]A^A_    E1b    fD      UHSHtt'[]    H~0 tH    H0H[]H~0HtHG(H  @\@t    f    H9v   ATUHSHG(H  @Vt1[]A\    HNpHA@\@tH~0 tuHH;0uH    tEuHE(HH      xHU(HCpH  B\@tH{0 t6HH;0[]A\           HH  H9YHH  H9Dff.         AWAVAUATIUHSHLwL+5    IL/DhIL5    E;~r   HE(HBA;^   ADHLDK4H{ DL$    H}S0Hs(DL$IHOL.       I$A_HE@AFD9tsHIDHE(IFHE0A}DHUbHBHHBA;^^AFt
EvEw        H[]A\A]A^A_    IFHE(AFtHE0AFHEHE8Eh    xAVh_Ev     AWI׺P   AVAUATIUSH  HH=        H
  H HAG E(AG$E,I    HE0C8E8M$   M$L    I$Hu  HHLHSx
   HSHHuH] LHM$HE    LuHE    H*    I$LLH    tM$L}H] L3L    H    I$   H=    HxH    H9rH[]A\A]A^A_    H)Ǹd   H9HGH[]A\A]A^A_LHL}H    M$I$LH$L    tH$M$Lu HUM>H{    tHSHC HBHH     LHCH"HC     HEH        I$sH        H    I$ H    HH    tH-    IǄ$     I$(H+L1,        e    eH%      H+=    HHH=    GHHwG    G  e
    t            @     UHSe    eH%      H+-    HHH-    Et1ۉ؃HH|((    ;]rE    eH%      e
    t[]        []    D      ffD      AWAVAUATIUHSHHL$    ubLHM~I9tKLHAŅu9Mt4   H    u#AF A$    HD[]A\A]A^A_        H   HHD$       A   LMtLH=AŅxt!MvMuAH|$    Mvƾ   H    Etntj|$    H|$    HC(HH      AŅ4H|$E1    \H|$A    H    AF8InHA$L    tIVIF HBHLLHL    #HMfM~ I/AfD      USH   u
H[]        H   H    CHu+    H߾  H     H    H[]    H    @     ATIUHպ  SHvI|$    He    eH%      H+    HHH    H   C   S   HKHHHHI4$Hp At$0@p4At$Hx(p0ID$HCH9rcSAT$u*1HE eH%      e
    t[]A\    K    []A\    C    HCHCf.         S   ˃}>   u5Ht!H9v   HB(H  @V   Ef[    tHtH9v   De    H    se    H    HtH@HAH1H    e
    u    1뜻   ff.         AVAι
   AUEATIUSHHXeH%(   HD$P1HHH        fDt$$   D  HC(HDLHH  H H   H       f   HD$PeH+%(      HX[]A\A]A^    e    H    se    H    HtHxLH    e
    u    e    H    Be    H    HtHxLH    e
        	L    5    ff.     f    AUATIUHS˹
   HXeH%(   HD$P1ILH        @$   f\$D  HE(LLHH  H H   H       f   HD$PeH+%(      HX[]A\A]    e    H    se    H    HtHxLH    e
    u    e    H    Ge    H    HtHxLH    e
        L    7    fD      AWAϹ
   AVAUIATUHSHXeH%(   HD$P1AIELAA   DH        fD|$$   D  HE(LLHH  H H   H@x    f   HD$PeH+%(      HX[]A\A]A^A_    e    H    se    H    HtHxADLH    e
    u    e    H    @e    H    HtHxDLH    e
        L    ,    @     AUATUHSHLo0        D  H    AE f% f=   HE(HS HLH  H H   H       Aą   f[D]A\A]    e    H    se    H    HtHxEHHL    e
    u    e    H    =e    H    HtHxHHL    e
        H0H    L    LH    +L    fD      ATUHSH        D  H{0Lc H  H       HE(LHH  H H   H       H{0Aă     H       DHHfD[]A\    e    H    se    H    HtHxDHH    e
    u    e    H    e    H    HtHxHH    e
        HE(LHH  H H   H       A    H{0HH{ H    H{0    AWA׹
   AVAUIATAUHSHXeH%(   HD$P1IA   LHD  HT$8LH       E  HE(U HH  A\%   f %  ƃ-f @LDLD$8HH   H@h    Åt+upE Hf% f= @_      OLLH    T$8E     f% f= @tPf=    ȃEȉD!  fHD$PeH+%(     HX[]A\A]A^A_    ։ȃDȉȃEe    H    se    H    HtHxADH    e
    u    ke    H    Ye    H    HtHxH    e
    -    #։ȃDȉȃ E        ff.     @         u   tUD      ATUHSeH%    H  HE(H  H@@eH   taAAPu&E f% f= ,  f=    f= @  HE(H  H H   Hxh    HAEuuE1        D[]A\    HE(L  E f% f= @t˾   H    tÀ   LH    AąuE Iuf% Af= @uÀ     H    AągHH        AABHE(L  g؃HE(H   @\AAfD      ATIUHSHGH,  D  HH tze    eH%      HH+    HHH    PH   H@1H9u1I9eH%      e
       ugHe    eH%      HH+    HHH    PL Hh@    P  e
    tQ[]A\    H  H   HWHHBHDH@%H        7ff.         AWAVAUATIUSH        D  HkXH    {\vHC0H       H{xH      HCx   H    HCLs0Lh0        1   txHLeHCx    H{x    f[]A\A]A^A_    e    H    se    H    HtHxHL    e
    u    D  IE(HLH  H H   H   M      Ņ'  [  f9e    H    e    H    HtHxHL    e
    |    re    H    e    H    HtHxHL    e
        e    H    e    H    HtHxHL    e
        H    H{01    HL    @M   L    AFHus    L  I     L    H{0 H{ H        ŃrH    L        AWAVAUATUSHLz0Mh0Ht$H$E  IL        D  M  AE f% f= @      \  H{x`  HkXH    {\  H    H{Hs     IH   H<$H       Af% f=   LE1ne    H    Le    H    HtHxH$ILHt$    e
        
Af% f= o  E1H4$H|$LE1H    HH= ?  HHT$    HT$.  H   ƀp  H    D     Mt<M   L    AEH      L  I     L    HL    H$LH0    MtL    H[]A\A]A^A_    e    H    `e    H    HtHxH$AIHt$L    e
    %    yI|$0 mI|$ aL    TjH    I   HHT$        L@  I     H|$    AE1f% f= ,L    H{x    HCx   H    Af% f=    H4$H|$LHI        HH= wE1L    >HT$HCx    H{xE1    HT$L    E1E1L    hL    D      AWAVAUI͹
   ATIUHSH`eH%(   HD$X1H|$HL    D$I        A     1 D$   fL$    HH  HH+=    ELHLHH=        A   t(   J8L)H  A  H  D  HE(L$LD$HLHH  H H   H       AfE           L    1H    HD$XeH+%(     H`D[]A\A]A^A_    e    H    se    H    HtHxDLH    e
    i    _e    H    e    H    HtHxLH    e
        H0L    ID$01H߹  Hp0    ubH    HC   D  fK4H    HxH     HD    HH)H1HHE1H      *1fTHH3u   H    _m  _H   QHCHHPHE>     D    HX"AA    ff.     f    AWAVAUATUHSHHH0eH%(   HD$(HF(H   Ht@   HSuHH@ H@(H  H H   H      Aąu$HE(HSPH   HE(HSXH   {u u*HD$(eH+%(   G  H0D[]A\A]A^A_    HH[HLpA     HD$UH}$    HD$HD$ HE(T$H|$HD$     %   =   yqAL    HH   D$H9LH|$/       H4Ht$T$>.u  L    LH$    IH   AE    D  IUhHE(H  HH(H9   tL    I9Y    H@0H9   uM}0MtBL    u6Iu+HE(IHH9H8uHM ftfA;P  Iv0fL    L    HT$HL    IH= .Hp IF`LH@`    IA~.e    H    se    H    HtHx1L    e
    `    V    Hu f>    HU(I}h    LH    HAE       HtH LI    HL    frIv0e    H    We    H    HtHx1L    e
    )    L    L    dIRHy    ]HL    Hu(I}0    ÅtfHu(I}0    Iv0e    H    e    H    HNHxA1L    8ff.         UHAWAVMAUIATSH1HH   M&L$ L|$8	   L$   HT$LL$eH%(   H$   HLHD$0    H   HD$(1HLǹ	   H      HD$H,  L$   L$ HT$LL    HD$H+    HD$`   HHH    HD$XeH%    HD$   e    H|$  HH+    HL$ HHH    HJJH    B    J  e
      IFIIIE HT$0HLe  KusLHL  HT$0HL,uHD$(I9D$   Hl$tHD$01  HD$     HA}u q  1M9&t3LT$(    ID$T$(i  D  D  AL$4>  HD$H@b  D  D  HD$H42  H$   eH+%(   ]  He؉[A\A]A^A_]    HD$01HD$ HtH냵FaHH.H|$(6   O@    H'HUHt$ HH$e    eH%      H$H+    H
    HHHD  e
      H9D$    M9&t+L    ID$s  D  D  AL$4  L$$LHLtxHD$H HD$(H3H|$   T$(    T$(H<$HUHt$ H<$OH\$  VH   HHCHHHHDHL$0I$H3(   L    A  I$   ID$HHPLEnpfC[e    eH%      LH+    HHH    H  e
        1    YI$H3   LT$(    T$(A  I$   ID$HHHLEL    LT$(    T$(L`H|$T$(    T$(HHD$    hL`    fD      AWAVAUATUSHHxL1Ht$
  HT$@   HL$ LD$(eH%(   HD$p1HLt$Lx GpH=    $    H>  He    eH%      LH+    H
    HHHD  e
      HE    HE IG(H      H}  HE(IIG(H  HE8   M   D$$  I  IJ<        IHtoE1Mu#  KD IM9  1      HuI^Mu,Hr&I| HG  ffO4u    HsL    Le(AOHH3u̾   H<$    H<$u  uH   tHGHHPHEAMtI$   HtH{    H    L    H}     H    HT$peH+%(   s  HxD[]A\A]A^A_    HIH  L}HyLq HD$0     H   1H|$@L|$XHD$HHD$Ll$`HD$P$fT$mD$hCuH,$LD$lHD$D$o HD$8-=   {u    HE(D$l H  `\Cu L=        IH0Ht$8H|$@HCHHE(H  H H   H       xLLsXH,$AHsP   e    eH4%      HL$H+
    HHH
    I  e
       ClH,$AI\$Mu(Hr"I| HGuoffO4u    HsL    Le(HH3uϾ   H<$    H<$u  uH   tHGHHPHEHxHx(t$0LL$0LLD$(HHAX/    3HG`LH@`    HH     Ay    @     AWAVAUATUHSHHHHeH%(   HD$@1   3
  Lg0H       @    ID$(H$H  H@@eH   H   L    x   
  H=        IHe  H(Lm0HXLH@ Ll$(    H$HA(IF(HA8IFHA0IF0HAIF`AEAFwIQ@H@ H@(H  @t9Gº   9BAFpHA IF@1Ƈqt$ADyADLH$E1D$    AFwD$'Q  IT$(H$t$H  B\tH{ k  D_  AFu IF@HL$MHD$0D$'Ld$AFtHl$eH%    IeL$%    LIE Im01Lp HD$8    H   HLH  HtH냵FaHH.O@       H  HLHH$A}t H$  IEe    A  H+    H    HHDA  e
         IEEMpIu I;E :  IE IEI8IM0L@ D  HIMA   LHT$8gŅ  I}0 u6HD$8I98t(I8IE    HH       D  AEt IEe    A  H+    Me(HHH    HM  IUIE8HRH)xyH9r  Qx  AEw  e
    #    HD$LLH8I}    I}HG  D  D  O4g  IE    IE I9Eu	D$'AEtA}v uA}w HL$Hl$ME1HL$Hl$IE    MAH\$(H$H    IF(H$HHA(IF0HA0IF`HAIFHA8D$'ADAFwAEAFpA@IF@HA     L        @    HD$@eH+%(   -
  HHD[]A\A]A^A_    IVAFuHz Aw|$D  D$'rp@  L;`  P  L;`K  HA1H 9u  L; uIE xDIEuAMe8L`Amh1I}    I}HG  D  D  O4p  IE    ALS  uA}u   DHL$MHl$AAe    H    e    H    HtHxH    e
    q    ge    A  HH+    H
    HHT
A  e
    r  HH$H<$LHH$vPt@D  L;aՉHHDIE(HH3   H<$    H<$~  mH   _HGHHPHELI}    I}HG  D  D  O4  IE    D    IE H       IE8    IE0    IE    D  HV EHR(H  RtA9DGʺ   A9DBEMp    m@kw  A  HAIE0JHH3*   H<$    H<$e    H    e    H    HtHxL    e
              H/* SPDX-License-Identifier: ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) */
/*
 *  Video for Linux Two header file
 *
 *  Copyright (C) 1999-2012 the contributors
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  Alternatively you can redistribute this file under the terms of the
 *  BSD license as stated below:
 *
 *  Redistribution and use in source and binary forms, with or without
 *  modification, are permitted provided that the following conditions
 *  are met:
 *  1. Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 *  2. Redistributions in binary form must reproduce the above copyright
 *     notice, this list of conditions and the following disclaimer in
 *     the documentation and/or other materials provided with the
 *     distribution.
 *  3. The names of its contributors may not be used to endorse or promote
 *     products derived from this software without specific prior written
 *     permission.
 *
 *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
 *  TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 *  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 *  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 *  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 *	Header file for v4l or V4L2 drivers and applications
 * with public API.
 * All kernel-specific stuff were moved to media/v4l2-dev.h, so
 * no #if __KERNEL tests are allowed here
 *
 *	See https://linuxtv.org for more info
 *
 *	Author: Bill Dirks <bill@thedirks.org>
 *		Justin Schoeman
 *              Hans Verkuil <hverkuil@xs4all.nl>
 *		et al.
 */
#ifndef __LINUX_VIDEODEV2_H
#define __LINUX_VIDEODEV2_H

#include <sys/time.h>

#include <linux/ioctl.h>
#include <linux/types.h>
#include <linux/v4l2-common.h>
#include <linux/v4l2-controls.h>

/*
 * Common stuff for both V4L1 and V4L2
 * Moved from videodev.h
 */
#define VIDEO_MAX_FRAME               32
#define VIDEO_MAX_PLANES               8

/*
 *	M I S C E L L A N E O U S
 */

/*  Four-character-code (FOURCC) */
#define v4l2_fourcc(a, b, c, d)\
	((__u32)(a) | ((__u32)(b) << 8) | ((__u32)(c) << 16) | ((__u32)(d) << 24))
#define v4l2_fourcc_be(a, b, c, d)	(v4l2_fourcc(a, b, c, d) | (1U << 31))

/*
 *	E N U M S
 */
enum v4l2_field {
	V4L2_FIELD_ANY           = 0, /* driver can choose from none,
					 top, bottom, interlaced
					 depending on whatever it thinks
					 is approximate ... */
	V4L2_FIELD_NONE          = 1, /* this device has no fields ... */
	V4L2_FIELD_TOP           = 2, /* top field only */
	V4L2_FIELD_BOTTOM        = 3, /* bottom field only */
	V4L2_FIELD_INTERLACED    = 4, /* both fields interlaced */
	V4L2_FIELD_SEQ_TB        = 5, /* both fields sequential into one
					 buffer, top-bottom order */
	V4L2_FIELD_SEQ_BT        = 6, /* same as above + bottom-top order */
	V4L2_FIELD_ALTERNATE     = 7, /* both fields alternating into
					 separate buffers */
	V4L2_FIELD_INTERLACED_TB = 8, /* both fields interlaced, top field
					 first and the top field is
					 transmitted first */
	V4L2_FIELD_INTERLACED_BT = 9, /* both fields interlaced, top field
					 first and the bottom field is
					 transmitted first */
};
#define V4L2_FIELD_HAS_TOP(field)	\
	((field) == V4L2_FIELD_TOP	||\
	 (field) == V4L2_FIELD_INTERLACED ||\
	 (field) == V4L2_FIELD_INTERLACED_TB ||\
	 (field) == V4L2_FIELD_INTERLACED_BT ||\
	 (field) == V4L2_FIELD_SEQ_TB	||\
	 (field) == V4L2_FIELD_SEQ_BT)
#define V4L2_FIELD_HAS_BOTTOM(field)	\
	((field) == V4L2_FIELD_BOTTOM	||\
	 (field) == V4L2_FIELD_INTERLACED ||\
	 (field) == V4L2_FIELD_INTERLACED_TB ||\
	 (field) == V4L2_FIELD_INTERLACED_BT ||\
	 (field) == V4L2_FIELD_SEQ_TB	||\
	 (field) == V4L2_FIELD_SEQ_BT)
#define V4L2_FIELD_HAS_BOTH(field)	\
	((field) == V4L2_FIELD_INTERLACED ||\
	 (field) == V4L2_FIELD_INTERLACED_TB ||\
	 (field) == V4L2_FIELD_INTERLACED_BT ||\
	 (field) == V4L2_FIELD_SEQ_TB ||\
	 (field) == V4L2_FIELD_SEQ_BT)
#define V4L2_FIELD_HAS_T_OR_B(field)	\
	((field) == V4L2_FIELD_BOTTOM ||\
	 (field) == V4L2_FIELD_TOP ||\
	 (field) == V4L2_FIELD_ALTERNATE)
#define V4L2_FIELD_IS_INTERLACED(field) \
	((field) == V4L2_FIELD_INTERLACED ||\
	 (field) == V4L2_FIELD_INTERLACED_TB ||\
	 (field) == V4L2_FIELD_INTERLACED_BT)
#define V4L2_FIELD_IS_SEQUENTIAL(field) \
	((field) == V4L2_FIELD_SEQ_TB ||\
	 (field) == V4L2_FIELD_SEQ_BT)

enum v4l2_buf_type {
	V4L2_BUF_TYPE_VIDEO_CAPTURE        = 1,
	V4L2_BUF_TYPE_VIDEO_OUTPUT         = 2,
	V4L2_BUF_TYPE_VIDEO_OVERLAY        = 3,
	V4L2_BUF_TYPE_VBI_CAPTURE          = 4,
	V4L2_BUF_TYPE_VBI_OUTPUT           = 5,
	V4L2_BUF_TYPE_SLICED_VBI_CAPTURE   = 6,
	V4L2_BUF_TYPE_SLICED_VBI_OUTPUT    = 7,
	V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY = 8,
	V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE = 9,
	V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE  = 10,
	V4L2_BUF_TYPE_SDR_CAPTURE          = 11,
	V4L2_BUF_TYPE_SDR_OUTPUT           = 12,
	V4L2_BUF_TYPE_META_CAPTURE         = 13,
	V4L2_BUF_TYPE_META_OUTPUT	   = 14,
	/* Deprecated, do not use */
	V4L2_BUF_TYPE_PRIVATE              = 0x80,
};

#define V4L2_TYPE_IS_MULTIPLANAR(type)			\
	((type) == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE	\
	 || (type) == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE)

#define V4L2_TYPE_IS_OUTPUT(type)				\
	((type) == V4L2_BUF_TYPE_VIDEO_OUTPUT			\
	 || (type) == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE		\
	 || (type) == V4L2_BUF_TYPE_VIDEO_OVERLAY		\
	 || (type) == V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY	\
	 || (type) == V4L2_BUF_TYPE_VBI_OUTPUT			\
	 || (type) == V4L2_BUF_TYPE_SLICED_VBI_OUTPUT		\
	 || (type) == V4L2_BUF_TYPE_SDR_OUTPUT			\
	 || (type) == V4L2_BUF_TYPE_META_OUTPUT)

#define V4L2_TYPE_IS_CAPTURE(type) (!V4L2_TYPE_IS_OUTPUT(type))

enum v4l2_tuner_type {
	V4L2_TUNER_RADIO	     = 1,
	V4L2_TUNER_ANALOG_TV	     = 2,
	V4L2_TUNER_DIGITAL_TV	     = 3,
	V4L2_TUNER_SDR               = 4,
	V4L2_TUNER_RF                = 5,
};

/* Deprecated, do not use */
#define V4L2_TUNER_ADC  V4L2_TUNER_SDR

enum v4l2_memory {
	V4L2_MEMORY_MMAP             = 1,
	V4L2_MEMORY_USERPTR          = 2,
	V4L2_MEMORY_OVERLAY          = 3,
	V4L2_MEMORY_DMABUF           = 4,
};

/* see also http://vektor.theorem.ca/graphics/ycbcr/ */
enum v4l2_colorspace {
	/*
	 * Default colorspace, i.e. let the driver figure it out.
	 * Can only be used with video capture.
	 */
	V4L2_COLORSPACE_DEFAULT       = 0,

	/* SMPTE 170M: used for broadcast NTSC/PAL SDTV */
	V4L2_COLORSPACE_SMPTE170M     = 1,

	/* Obsolete pre-1998 SMPTE 240M HDTV standard, superseded by Rec 709 */
	V4L2_COLORSPACE_SMPTE240M     = 2,

	/* Rec.709: used for HDTV */
	V4L2_COLORSPACE_REC709        = 3,

	/*
	 * Deprecated, do not use. No driver will ever return this. This was
	 * based on a misunderstanding of the bt878 datasheet.
	 */
	V4L2_COLORSPACE_BT878         = 4,

	/*
	 * NTSC 1953 colorspace. This only makes sense when dealing with
	 * really, really old NTSC recordings. Superseded by SMPTE 170M.
	 */
	V4L2_COLORSPACE_470_SYSTEM_M  = 5,

	/*
	 * EBU Tech 3213 PAL/SECAM colorspace.
	 */
	V4L2_COLORSPACE_470_SYSTEM_BG = 6,

	/*
	 * Effectively shorthand for V4L2_COLORSPACE_SRGB, V4L2_YCBCR_ENC_601
	 * and V4L2_QUANTIZATION_FULL_RANGE. To be used for (Motion-)JPEG.
	 */
	V4L2_COLORSPACE_JPEG          = 7,

	/* For RGB colorspaces such as produces by most webcams. */
	V4L2_COLORSPACE_SRGB          = 8,

	/* opRGB colorspace */
	V4L2_COLORSPACE_OPRGB         = 9,

	/* BT.2020 colorspace, used for UHDTV. */
	V4L2_COLORSPACE_BT2020        = 10,

	/* Raw colorspace: for RAW unprocessed images */
	V4L2_COLORSPACE_RAW           = 11,

	/* DCI-P3 colorspace, used by cinema projectors */
	V4L2_COLORSPACE_DCI_P3        = 12,

};

/*
 * Determine how COLORSPACE_DEFAULT should map to a proper colorspace.
 * This depends on whether this is a SDTV image (use SMPTE 170M), an
 * HDTV image (use Rec. 709), or something else (use sRGB).
 */
#define V4L2_MAP_COLORSPACE_DEFAULT(is_sdtv, is_hdtv) \
	((is_sdtv) ? V4L2_COLORSPACE_SMPTE170M : \
	 ((is_hdtv) ? V4L2_COLORSPACE_REC709 : V4L2_COLORSPACE_SRGB))

enum v4l2_xfer_func {
	/*
	 * Mapping of V4L2_XFER_FUNC_DEFAULT to actual transfer functions
	 * for the various colorspaces:
	 *
	 * V4L2_COLORSPACE_SMPTE170M, V4L2_COLORSPACE_470_SYSTEM_M,
	 * V4L2_COLORSPACE_470_SYSTEM_BG, V4L2_COLORSPACE_REC709 and
	 * V4L2_COLORSPACE_BT2020: V4L2_XFER_FUNC_709
	 *
	 * V4L2_COLORSPACE_SRGB, V4L2_COLORSPACE_JPEG: V4L2_XFER_FUNC_SRGB
	 *
	 * V4L2_COLORSPACE_OPRGB: V4L2_XFER_FUNC_OPRGB
	 *
	 * V4L2_COLORSPACE_SMPTE240M: V4L2_XFER_FUNC_SMPTE240M
	 *
	 * V4L2_COLORSPACE_RAW: V4L2_XFER_FUNC_NONE
	 *
	 * V4L2_COLORSPACE_DCI_P3: V4L2_XFER_FUNC_DCI_P3
	 */
	V4L2_XFER_FUNC_DEFAULT     = 0,
	V4L2_XFER_FUNC_709         = 1,
	V4L2_XFER_FUNC_SRGB        = 2,
	V4L2_XFER_FUNC_OPRGB       = 3,
	V4L2_XFER_FUNC_SMPTE240M   = 4,
	V4L2_XFER_FUNC_NONE        = 5,
	V4L2_XFER_FUNC_DCI_P3      = 6,
	V4L2_XFER_FUNC_SMPTE2084   = 7,
};

/*
 * Determine how XFER_FUNC_DEFAULT should map to a proper transfer function.
 * This depends on the colorspace.
 */
#define V4L2_MAP_XFER_FUNC_DEFAULT(colsp) \
	((colsp) == V4L2_COLORSPACE_OPRGB ? V4L2_XFER_FUNC_OPRGB : \
	 ((colsp) == V4L2_COLORSPACE_SMPTE240M ? V4L2_XFER_FUNC_SMPTE240M : \
	  ((colsp) == V4L2_COLORSPACE_DCI_P3 ? V4L2_XFER_FUNC_DCI_P3 : \
	   ((colsp) == V4L2_COLORSPACE_RAW ? V4L2_XFER_FUNC_NONE : \
	    ((colsp) == V4L2_COLORSPACE_SRGB || (colsp) == V4L2_COLORSPACE_JPEG ? \
	     V4L2_XFER_FUNC_SRGB : V4L2_XFER_FUNC_709)))))

enum v4l2_ycbcr_encoding {
	/*
	 * Mapping of V4L2_YCBCR_ENC_DEFAULT to actual encodings for the
	 * various colorspaces:
	 *
	 * V4L2_COLORSPACE_SMPTE170M, V4L2_COLORSPACE_470_SYSTEM_M,
	 * V4L2_COLORSPACE_470_SYSTEM_BG, V4L2_COLORSPACE_SRGB,
	 * V4L2_COLORSPACE_OPRGB and V4L2_COLORSPACE_JPEG: V4L2_YCBCR_ENC_601
	 *
	 * V4L2_COLORSPACE_REC709 and V4L2_COLORSPACE_DCI_P3: V4L2_YCBCR_ENC_709
	 *
	 * V4L2_COLORSPACE_BT2020: V4L2_YCBCR_ENC_BT2020
	 *
	 * V4L2_COLORSPACE_SMPTE240M: V4L2_YCBCR_ENC_SMPTE240M
	 */
	V4L2_YCBCR_ENC_DEFAULT        = 0,

	/* ITU-R 601 -- SDTV */
	V4L2_YCBCR_ENC_601            = 1,

	/* Rec. 709 -- HDTV */
	V4L2_YCBCR_ENC_709            = 2,

	/* ITU-R 601/EN 61966-2-4 Extended Gamut -- SDTV */
	V4L2_YCBCR_ENC_XV601          = 3,

	/* Rec. 709/EN 61966-2-4 Extended Gamut -- HDTV */
	V4L2_YCBCR_ENC_XV709          = 4,

	/*
	 * sYCC (Y'CbCr encoding of sRGB), identical to ENC_601. It was added
	 * originally due to a misunderstanding of the sYCC standard. It should
	 * not be used, instead use V4L2_YCBCR_ENC_601.
	 */
	V4L2_YCBCR_ENC_SYCC           = 5,

	/* BT.2020 Non-constant Luminance Y'CbCr */
	V4L2_YCBCR_ENC_BT2020         = 6,

	/* BT.2020 Constant Luminance Y'CbcCrc */
	V4L2_YCBCR_ENC_BT2020_CONST_LUM = 7,

	/* SMPTE 240M -- Obsolete HDTV */
	V4L2_YCBCR_ENC_SMPTE240M      = 8,
};

/*
 * enum v4l2_hsv_encoding values should not collide with the ones from
 * enum v4l2_ycbcr_encoding.
 */
enum v4l2_hsv_encoding {

	/* Hue mapped to 0 - 179 */
	V4L2_HSV_ENC_180		= 128,

	/* Hue mapped to 0-255 */
	V4L2_HSV_ENC_256		= 129,
};

/*
 * Determine how YCBCR_ENC_DEFAULT should map to a proper Y'CbCr encoding.
 * This depends on the colorspace.
 */
#define V4L2_MAP_YCBCR_ENC_DEFAULT(colsp) \
	(((colsp) == V4L2_COLORSPACE_REC709 || \
	  (colsp) == V4L2_COLORSPACE_DCI_P3) ? V4L2_YCBCR_ENC_709 : \
	 ((colsp) == V4L2_COLORSPACE_BT2020 ? V4L2_YCBCR_ENC_BT2020 : \
	  ((colsp) == V4L2_COLORSPACE_SMPTE240M ? V4L2_YCBCR_ENC_SMPTE240M : \
	   V4L2_YCBCR_ENC_601)))

enum v4l2_quantization {
	/*
	 * The default for R'G'B' quantization is always full range.
	 * For Y'CbCr the quantization is always limited range, except
	 * for COLORSPACE_JPEG: this is full range.
	 */
	V4L2_QUANTIZATION_DEFAULT     = 0,
	V4L2_QUANTIZATION_FULL_RANGE  = 1,
	V4L2_QUANTIZATION_LIM_RANGE   = 2,
};

/*
 * Determine how QUANTIZATION_DEFAULT should map to a proper quantization.
 * This depends on whether the image is RGB or not, the colorspace.
 * The Y'CbCr encoding is not used anymore, but is still there for backwards
 * compatibility.
 */
#define V4L2_MAP_QUANTIZATION_DEFAULT(is_rgb_or_hsv, colsp, ycbcr_enc) \
	(((is_rgb_or_hsv) || (colsp) == V4L2_COLORSPACE_JPEG) ? \
	 V4L2_QUANTIZATION_FULL_RANGE : V4L2_QUANTIZATION_LIM_RANGE)

/*
 * Deprecated names for opRGB colorspace (IEC 61966-2-5)
 *
 * WARNING: Please don't use these deprecated defines in your code, as
 * there is a chance we have to remove them in the future.
 */
#define V4L2_COLORSPACE_ADOBERGB V4L2_COLORSPACE_OPRGB
#define V4L2_XFER_FUNC_ADOBERGB  V4L2_XFER_FUNC_OPRGB

enum v4l2_priority {
	V4L2_PRIORITY_UNSET       = 0,  /* not initialized */
	V4L2_PRIORITY_BACKGROUND  = 1,
	V4L2_PRIORITY_INTERACTIVE = 2,
	V4L2_PRIORITY_RECORD      = 3,
	V4L2_PRIORITY_DEFAULT     = V4L2_PRIORITY_INTERACTIVE,
};

struct v4l2_rect {
	__s32   left;
	__s32   top;
	__u32   width;
	__u32   height;
};

struct v4l2_fract {
	__u32   numerator;
	__u32   denominator;
};

struct v4l2_area {
	__u32   width;
	__u32   height;
};

/**
  * struct v4l2_capability - Describes V4L2 device caps returned by VIDIOC_QUERYCAP
  *
  * @driver:	   name of the driver module (e.g. "bttv")
  * @card:	   name of the card (e.g. "Hauppauge WinTV")
  * @bus_info:	   name of the bus (e.g. "PCI:" + pci_name(pci_dev) )
  * @version:	   KERNEL_VERSION
  * @capabilities: capabilities of the physical device as a whole
  * @device_caps:  capabilities accessed via this particular device (node)
  * @reserved:	   reserved fields for future extensions
  */
struct v4l2_capability {
	__u8	driver[16];
	__u8	card[32];
	__u8	bus_info[32];
	__u32   version;
	__u32	capabilities;
	__u32	device_caps;
	__u32	reserved[3];
};

/* Values for 'capabilities' field */
#define V4L2_CAP_VIDEO_CAPTURE		0x00000001  /* Is a video capture device */
#define V4L2_CAP_VIDEO_OUTPUT		0x00000002  /* Is a video output device */
#define V4L2_CAP_VIDEO_OVERLAY		0x00000004  /* Can do video overlay */
#define V4L2_CAP_VBI_CAPTURE		0x00000010  /* Is a raw VBI capture device */
#define V4L2_CAP_VBI_OUTPUT		0x00000020  /* Is a raw VBI output device */
#define V4L2_CAP_SLICED_VBI_CAPTURE	0x00000040  /* Is a sliced VBI capture device */
#define V4L2_CAP_SLICED_VBI_OUTPUT	0x00000080  /* Is a sliced VBI output device */
#define V4L2_CAP_RDS_CAPTURE		0x00000100  /* RDS data capture */
#define V4L2_CAP_VIDEO_OUTPUT_OVERLAY	0x00000200  /* Can do video output overlay */
#define V4L2_CAP_HW_FREQ_SEEK		0x00000400  /* Can do hardware frequency seek  */
#define V4L2_CAP_RDS_OUTPUT		0x00000800  /* Is an RDS encoder */

/* Is a video capture device that supports multiplanar formats */
#define V4L2_CAP_VIDEO_CAPTURE_MPLANE	0x00001000
/* Is a video output device that supports multiplanar formats */
#define V4L2_CAP_VIDEO_OUTPUT_MPLANE	0x00002000
/* Is a video mem-to-mem device that supports multiplanar formats */
#define V4L2_CAP_VIDEO_M2M_MPLANE	0x00004000
/* Is a video mem-to-mem device */
#define V4L2_CAP_VIDEO_M2M		0x00008000

#define V4L2_CAP_TUNER			0x00010000  /* has a tuner */
#define V4L2_CAP_AUDIO			0x00020000  /* has audio support */
#define V4L2_CAP_RADIO			0x00040000  /* is a radio device */
#define V4L2_CAP_MODULATOR		0x00080000  /* has a modulator */

#define V4L2_CAP_SDR_CAPTURE		0x00100000  /* Is a SDR capture device */
#define V4L2_CAP_EXT_PIX_FORMAT		0x00200000  /* Supports the extended pixel format */
#define V4L2_CAP_SDR_OUTPUT		0x00400000  /* Is a SDR output device */
#define V4L2_CAP_META_CAPTURE		0x00800000  /* Is a metadata capture device */

#define V4L2_CAP_READWRITE              0x01000000  /* read/write systemcalls */
#define V4L2_CAP_STREAMING              0x04000000  /* streaming I/O ioctls */
#define V4L2_CAP_META_OUTPUT		0x08000000  /* Is a metadata output device */

#define V4L2_CAP_TOUCH                  0x10000000  /* Is a touch device */

#define V4L2_CAP_IO_MC			0x20000000  /* Is input/output controlled by the media controller */

#define V4L2_CAP_DEVICE_CAPS            0x80000000  /* sets device capabilities field */

/*
 *	V I D E O   I M A G E   F O R M A T
 */
struct v4l2_pix_format {
	__u32			width;
	__u32			height;
	__u32			pixelformat;
	__u32			field;		/* enum v4l2_field */
	__u32			bytesperline;	/* for padding, zero if unused */
	__u32			sizeimage;
	__u32			colorspace;	/* enum v4l2_colorspace */
	__u32			priv;		/* private data, depends on pixelformat */
	__u32			flags;		/* format flags (V4L2_PIX_FMT_FLAG_*) */
	union {
		/* enum v4l2_ycbcr_encoding */
		__u32			ycbcr_enc;
		/* enum v4l2_hsv_encoding */
		__u32			hsv_enc;
	};
	__u32			quantization;	/* enum v4l2_quantization */
	__u32			xfer_func;	/* enum v4l2_xfer_func */
};

/*      Pixel format         FOURCC                          depth  Description  */

/* RGB formats (1 or 2 bytes per pixel) */
#define V4L2_PIX_FMT_RGB332  v4l2_fourcc('R', 'G', 'B', '1') /*  8  RGB-3-3-2     */
#define V4L2_PIX_FMT_RGB444  v4l2_fourcc('R', '4', '4', '4') /* 16  xxxxrrrr ggggbbbb */
#define V4L2_PIX_FMT_ARGB444 v4l2_fourcc('A', 'R', '1', '2') /* 16  aaaarrrr ggggbbbb */
#define V4L2_PIX_FMT_XRGB444 v4l2_fourcc('X', 'R', '1', '2') /* 16  xxxxrrrr ggggbbbb */
#define V4L2_PIX_FMT_RGBA444 v4l2_fourcc('R', 'A', '1', '2') /* 16  rrrrgggg bbbbaaaa */
#define V4L2_PIX_FMT_RGBX444 v4l2_fourcc('R', 'X', '1', '2') /* 16  rrrrgggg bbbbxxxx */
#define V4L2_PIX_FMT_ABGR444 v4l2_fourcc('A', 'B', '1', '2') /* 16  aaaabbbb ggggrrrr */
#define V4L2_PIX_FMT_XBGR444 v4l2_fourcc('X', 'B', '1', '2') /* 16  xxxxbbbb ggggrrrr */
#define V4L2_PIX_FMT_BGRA444 v4l2_fourcc('G', 'A', '1', '2') /* 16  bbbbgggg rrrraaaa */
#define V4L2_PIX_FMT_BGRX444 v4l2_fourcc('B', 'X', '1', '2') /* 16  bbbbgggg rrrrxxxx */
#define V4L2_PIX_FMT_RGB555  v4l2_fourcc('R', 'G', 'B', 'O') /* 16  RGB-5-5-5     */
#define V4L2_PIX_FMT_ARGB555 v4l2_fourcc('A', 'R', '1', '5') /* 16  ARGB-1-5-5-5  */
#define V4L2_PIX_FMT_XRGB555 v4l2_fourcc('X', 'R', '1', '5') /* 16  XRGB-1-5-5-5  */
#define V4L2_PIX_FMT_RGBA555 v4l2_fourcc('R', 'A', '1', '5') /* 16  RGBA-5-5-5-1  */
#define V4L2_PIX_FMT_RGBX555 v4l2_fourcc('R', 'X', '1', '5') /* 16  RGBX-5-5-5-1  */
#define V4L2_PIX_FMT_ABGR555 v4l2_fourcc('A', 'B', '1', '5') /* 16  ABGR-1-5-5-5  */
#define V4L2_PIX_FMT_XBGR555 v4l2_fourcc('X', 'B', '1', '5') /* 16  XBGR-1-5-5-5  */
#define V4L2_PIX_FMT_BGRA555 v4l2_fourcc('B', 'A', '1', '5') /* 16  BGRA-5-5-5-1  */
#define V4L2_PIX_FMT_BGRX555 v4l2_fourcc('B', 'X', '1', '5') /* 16  BGRX-5-5-5-1  */
#define V4L2_PIX_FMT_RGB565  v4l2_fourcc('R', 'G', 'B', 'P') /* 16  RGB-5-6-5     */
#define V4L2_PIX_FMT_RGB555X v4l2_fourcc('R', 'G', 'B', 'Q') /* 16  RGB-5-5-5 BE  */
#define V4L2_PIX_FMT_ARGB555X v4l2_fourcc_be('A', 'R', '1', '5') /* 16  ARGB-5-5-5 BE */
#define V4L2_PIX_FMT_XRGB555X v4l2_fourcc_be('X', 'R', '1', '5') /* 16  XRGB-5-5-5 BE */
#define V4L2_PIX_FMT_RGB565X v4l2_fourcc('R', 'G', 'B', 'R') /* 16  RGB-5-6-5 BE  */

/* RGB formats (3 or 4 bytes per pixel) */
#define V4L2_PIX_FMT_BGR666  v4l2_fourcc('B', 'G', 'R', 'H') /* 18  BGR-6-6-6	  */
#define V4L2_PIX_FMT_BGR24   v4l2_fourcc('B', 'G', 'R', '3') /* 24  BGR-8-8-8     */
#define V4L2_PIX_FMT_RGB24   v4l2_fourcc('R', 'G', 'B', '3') /* 24  RGB-8-8-8     */
#define V4L2_PIX_FMT_BGR32   v4l2_fourcc('B', 'G', 'R', '4') /* 32  BGR-8-8-8-8   */
#define V4L2_PIX_FMT_ABGR32  v4l2_fourcc('A', 'R', '2', '4') /* 32  BGRA-8-8-8-8  */
#define V4L2_PIX_FMT_XBGR32  v4l2_fourcc('X', 'R', '2', '4') /* 32  BGRX-8-8-8-8  */
#define V4L2_PIX_FMT_BGRA32  v4l2_fourcc('R', 'A', '2', '4') /* 32  ABGR-8-8-8-8  */
#define V4L2_PIX_FMT_BGRX32  v4l2_fourcc('R', 'X', '2', '4') /* 32  XBGR-8-8-8-8  */
#define V4L2_PIX_FMT_RGB32   v4l2_fourcc('R', 'G', 'B', '4') /* 32  RGB-8-8-8-8   */
#define V4L2_PIX_FMT_RGBA32  v4l2_fourcc('A', 'B', '2', '4') /* 32  RGBA-8-8-8-8  */
#define V4L2_PIX_FMT_RGBX32  v4l2_fourcc('X', 'B', '2', '4') /* 32  RGBX-8-8-8-8  */
#define V4L2_PIX_FMT_ARGB32  v4l2_fourcc('B', 'A', '2', '4') /* 32  ARGB-8-8-8-8  */
#define V4L2_PIX_FMT_XRGB32  v4l2_fourcc('B', 'X', '2', '4') /* 32  XRGB-8-8-8-8  */

/* Grey formats */
#define V4L2_PIX_FMT_GREY    v4l2_fourcc('G', 'R', 'E', 'Y') /*  8  Greyscale     */
#define V4L2_PIX_FMT_Y4      v4l2_fourcc('Y', '0', '4', ' ') /*  4  Greyscale     */
#define V4L2_PIX_FMT_Y6      v4l2_fourcc('Y', '0', '6', ' ') /*  6  Greyscale     */
#define V4L2_PIX_FMT_Y10     v4l2_fourcc('Y', '1', '0', ' ') /* 10  Greyscale     */
#define V4L2_PIX_FMT_Y12     v4l2_fourcc('Y', '1', '2', ' ') /* 12  Greyscale     */
#define V4L2_PIX_FMT_Y14     v4l2_fourcc('Y', '1', '4', ' ') /* 14  Greyscale     */
#define V4L2_PIX_FMT_Y16     v4l2_fourcc('Y', '1', '6', ' ') /* 16  Greyscale     */
#define V4L2_PIX_FMT_Y16_BE  v4l2_fourcc_be('Y', '1', '6', ' ') /* 16  Greyscale BE  */

/* Grey bit-packed formats */
#define V4L2_PIX_FMT_Y10BPACK    v4l2_fourcc('Y', '1', '0', 'B') /* 10  Greyscale bit-packed */
#define V4L2_PIX_FMT_Y10P    v4l2_fourcc('Y', '1', '0', 'P') /* 10  Greyscale, MIPI RAW10 packed */
#define V4L2_PIX_FMT_IPU3_Y10		v4l2_fourcc('i', 'p', '3', 'y') /* IPU3 packed 10-bit greyscale */

/* Palette formats */
#define V4L2_PIX_FMT_PAL8    v4l2_fourcc('P', 'A', 'L', '8') /*  8  8-bit palette */

/* Chrominance formats */
#define V4L2_PIX_FMT_UV8     v4l2_fourcc('U', 'V', '8', ' ') /*  8  UV 4:4 */

/* Luminance+Chrominance formats */
#define V4L2_PIX_FMT_YUYV    v4l2_fourcc('Y', 'U', 'Y', 'V') /* 16  YUV 4:2:2     */
#define V4L2_PIX_FMT_YYUV    v4l2_fourcc('Y', 'Y', 'U', 'V') /* 16  YUV 4:2:2     */
#define V4L2_PIX_FMT_YVYU    v4l2_fourcc('Y', 'V', 'Y', 'U') /* 16 YVU 4:2:2 */
#define V4L2_PIX_FMT_UYVY    v4l2_fourcc('U', 'Y', 'V', 'Y') /* 16  YUV 4:2:2     */
#define V4L2_PIX_FMT_VYUY    v4l2_fourcc('V', 'Y', 'U', 'Y') /* 16  YUV 4:2:2     */
#define V4L2_PIX_FMT_Y41P    v4l2_fourcc('Y', '4', '1', 'P') /* 12  YUV 4:1:1     */
#define V4L2_PIX_FMT_YUV444  v4l2_fourcc('Y', '4', '4', '4') /* 16  xxxxyyyy uuuuvvvv */
#define V4L2_PIX_FMT_YUV555  v4l2_fourcc('Y', 'U', 'V', 'O') /* 16  YUV-5-5-5     */
#define V4L2_PIX_FMT_YUV565  v4l2_fourcc('Y', 'U', 'V', 'P') /* 16  YUV-5-6-5     */
#define V4L2_PIX_FMT_YUV24   v4l2_fourcc('Y', 'U', 'V', '3') /* 24  YUV-8-8-8     */
#define V4L2_PIX_FMT_YUV32   v4l2_fourcc('Y', 'U', 'V', '4') /* 32  YUV-8-8-8-8   */
#define V4L2_PIX_FMT_AYUV32  v4l2_fourcc('A', 'Y', 'U', 'V') /* 32  AYUV-8-8-8-8  */
#define V4L2_PIX_FMT_XYUV32  v4l2_fourcc('X', 'Y', 'U', 'V') /* 32  XYUV-8-8-8-8  */
#define V4L2_PIX_FMT_VUYA32  v4l2_fourcc('V', 'U', 'Y', 'A') /* 32  VUYA-8-8-8-8  */
#define V4L2_PIX_FMT_VUYX32  v4l2_fourcc('V', 'U', 'Y', 'X') /* 32  VUYX-8-8-8-8  */
#define V4L2_PIX_FMT_YUVA32  v4l2_fourcc('Y', 'U', 'V', 'A') /* 32  YUVA-8-8-8-8  */
#define V4L2_PIX_FMT_YUVX32  v4l2_fourcc('Y', 'U', 'V', 'X') /* 32  YUVX-8-8-8-8  */
#define V4L2_PIX_FMT_M420    v4l2_fourcc('M', '4', '2', '0') /* 12  YUV 4:2:0 2 lines y, 1 line uv interleaved */

/* two planes -- one Y, one Cr + Cb interleaved  */
#define V4L2_PIX_FMT_NV12    v4l2_fourcc('N', 'V', '1', '2') /* 12  Y/CbCr 4:2:0  */
#define V4L2_PIX_FMT_NV21    v4l2_fourcc('N', 'V', '2', '1') /* 12  Y/CrCb 4:2:0  */
#define V4L2_PIX_FMT_NV16    v4l2_fourcc('N', 'V', '1', '6') /* 16  Y/CbCr 4:2:2  */
#define V4L2_PIX_FMT_NV61    v4l2_fourcc('N', 'V', '6', '1') /* 16  Y/CrCb 4:2:2  */
#define V4L2_PIX_FMT_NV24    v4l2_fourcc('N', 'V', '2', '4') /* 24  Y/CbCr 4:4:4  */
#define V4L2_PIX_FMT_NV42    v4l2_fourcc('N', 'V', '4', '2') /* 24  Y/CrCb 4:4:4  */
#define V4L2_PIX_FMT_P010    v4l2_fourcc('P', '0', '1', '0') /* 24  Y/CbCr 4:2:0 10-bit per component */

/* two non contiguous planes - one Y, one Cr + Cb interleaved  */
#define V4L2_PIX_FMT_NV12M   v4l2_fourcc('N', 'M', '1', '2') /* 12  Y/CbCr 4:2:0  */
#define V4L2_PIX_FMT_NV21M   v4l2_fourcc('N', 'M', '2', '1') /* 21  Y/CrCb 4:2:0  */
#define V4L2_PIX_FMT_NV16M   v4l2_fourcc('N', 'M', '1', '6') /* 16  Y/CbCr 4:2:2  */
#define V4L2_PIX_FMT_NV61M   v4l2_fourcc('N', 'M', '6', '1') /* 16  Y/CrCb 4:2:2  */

/* three planes - Y Cb, Cr */
#define V4L2_PIX_FMT_YUV410  v4l2_fourcc('Y', 'U', 'V', '9') /*  9  YUV 4:1:0     */
#define V4L2_PIX_FMT_YVU410  v4l2_fourcc('Y', 'V', 'U', '9') /*  9  YVU 4:1:0     */
#define V4L2_PIX_FMT_YUV411P v4l2_fourcc('4', '1', '1', 'P') /* 12  YVU411 planar */
#define V4L2_PIX_FMT_YUV420  v4l2_fourcc('Y', 'U', '1', '2') /* 12  YUV 4:2:0     */
#define V4L2_PIX_FMT_YVU420  v4l2_fourcc('Y', 'V', '1', '2') /* 12  YVU 4:2:0     */
#define V4L2_PIX_FMT_YUV422P v4l2_fourcc('4', '2', '2', 'P') /* 16  YVU422 planar */

/* three non contiguous planes - Y, Cb, Cr */
#define V4L2_PIX_FMT_YUV420M v4l2_fourcc('Y', 'M', '1', '2') /* 12  YUV420 planar */
#define V4L2_PIX_FMT_YVU420M v4l2_fourcc('Y', 'M', '2', '1') /* 12  YVU420 planar */
#define V4L2_PIX_FMT_YUV422M v4l2_fourcc('Y', 'M', '1', '6') /* 16  YUV422 planar */
#define V4L2_PIX_FMT_YVU422M v4l2_fourcc('Y', 'M', '6', '1') /* 16  YVU422 planar */
#define V4L2_PIX_FMT_YUV444M v4l2_fourcc('Y', 'M', '2', '4') /* 24  YUV444 planar */
#define V4L2_PIX_FMT_YVU444M v4l2_fourcc('Y', 'M', '4', '2') /* 24  YVU444 planar */

/* Tiled YUV formats */
#define V4L2_PIX_FMT_NV12_4L4 v4l2_fourcc('V', 'T', '1', '2')   /* 12  Y/CbCr 4:2:0  4x4 tiles */
#define V4L2_PIX_FMT_NV12_16L16 v4l2_fourcc('H', 'M', '1', '2') /* 12  Y/CbCr 4:2:0 16x16 tiles */
#define V4L2_PIX_FMT_NV12_32L32 v4l2_fourcc('S', 'T', '1', '2') /* 12  Y/CbCr 4:2:0 32x32 tiles */
#define V4L2_PIX_FMT_P010_4L4 v4l2_fourcc('T', '0', '1', '0') /* 12  Y/CbCr 4:2:0 10-bit 4x4 macroblocks */

/* Tiled YUV formats, non contiguous planes */
#define V4L2_PIX_FMT_NV12MT  v4l2_fourcc('T', 'M', '1', '2') /* 12  Y/CbCr 4:2:0 64x32 tiles */
#define V4L2_PIX_FMT_NV12MT_16X16 v4l2_fourcc('V', 'M', '1', '2') /* 12  Y/CbCr 4:2:0 16x16 tiles */
#define V4L2_PIX_FMT_NV12M_8L128      v4l2_fourcc('N', 'A', '1', '2') /* Y/CbCr 4:2:0 8x128 tiles */
#define V4L2_PIX_FMT_NV12M_10BE_8L128 v4l2_fourcc_be('N', 'T', '1', '2') /* Y/CbCr 4:2:0 10-bit 8x128 tiles */

/* Bayer formats - see http://www.siliconimaging.com/RGB%20Bayer.htm */
#define V4L2_PIX_FMT_SBGGR8  v4l2_fourcc('B', 'A', '8', '1') /*  8  BGBG.. GRGR.. */
#define V4L2_PIX_FMT_SGBRG8  v4l2_fourcc('G', 'B', 'R', 'G') /*  8  GBGB.. RGRG.. */
#define V4L2_PIX_FMT_SGRBG8  v4l2_fourcc('G', 'R', 'B', 'G') /*  8  GRGR.. BGBG.. */
#define V4L2_PIX_FMT_SRGGB8  v4l2_fourcc('R', 'G', 'G', 'B') /*  8  RGRG.. GBGB.. */
#define V4L2_PIX_FMT_SBGGR10 v4l2_fourcc('B', 'G', '1', '0') /* 10  BGBG.. GRGR.. */
#define V4L2_PIX_FMT_SGBRG10 v4l2_fourcc('G', 'B', '1', '0') /* 10  GBGB.. RGRG.. */
#define V4L2_PIX_FMT_SGRBG10 v4l2_fourcc('B', 'A', '1', '0') /* 10  GRGR.. BGBG.. */
#define V4L2_PIX_FMT_SRGGB10 v4l2_fourcc('R', 'G', '1', '0') /* 10  RGRG.. GBGB.. */
	/* 10bit raw bayer packed, 5 bytes for every 4 pixels */
#define V4L2_PIX_FMT_SBGGR10P v4l2_fourcc('p', 'B', 'A', 'A')
#define V4L2_PIX_FMT_SGBRG10P v4l2_fourcc('p', 'G', 'A', 'A')
#define V4L2_PIX_FMT_SGRBG10P v4l2_fourcc('p', 'g', 'A', 'A')
#define V4L2_PIX_FMT_SRGGB10P v4l2_fourcc('p', 'R', 'A', 'A')
	/* 10bit raw bayer a-law compressed to 8 bits */
#define V4L2_PIX_FMT_SBGGR10ALAW8 v4l2_fourcc('a', 'B', 'A', '8')
#define V4L2_PIX_FMT_SGBRG10ALAW8 v4l2_fourcc('a', 'G', 'A', '8')
#define V4L2_PIX_FMT_SGRBG10ALAW8 v4l2_fourcc('a', 'g', 'A', '8')
#define V4L2_PIX_FMT_SRGGB10ALAW8 v4l2_fourcc('a', 'R', 'A', '8')
	/* 10bit raw bayer DPCM compressed to 8 bits */
#define V4L2_PIX_FMT_SBGGR10DPCM8 v4l2_fourcc('b', 'B', 'A', '8')
#define V4L2_PIX_FMT_SGBRG10DPCM8 v4l2_fourcc('b', 'G', 'A', '8')
#define V4L2_PIX_FMT_SGRBG10DPCM8 v4l2_fourcc('B', 'D', '1', '0')
#define V4L2_PIX_FMT_SRGGB10DPCM8 v4l2_fourcc('b', 'R', 'A', '8')
#define V4L2_PIX_FMT_SBGGR12 v4l2_fourcc('B', 'G', '1', '2') /* 12  BGBG.. GRGR.. */
#define V4L2_PIX_FMT_SGBRG12 v4l2_fourcc('G', 'B', '1', '2') /* 12  GBGB.. RGRG.. */
#define V4L2_PIX_FMT_SGRBG12 v4l2_fourcc('B', 'A', '1', '2') /* 12  GRGR.. BGBG.. */
#define V4L2_PIX_FMT_SRGGB12 v4l2_fourcc('R', 'G', '1', '2') /* 12  RGRG.. GBGB.. */
	/* 12bit raw bayer packed, 6 bytes for every 4 pixels */
#define V4L2_PIX_FMT_SBGGR12P v4l2_fourcc('p', 'B', 'C', 'C')
#define V4L2_PIX_FMT_SGBRG12P v4l2_fourcc('p', 'G', 'C', 'C')
#define V4L2_PIX_FMT_SGRBG12P v4l2_fourcc('p', 'g', 'C', 'C')
#define V4L2_PIX_FMT_SRGGB12P v4l2_fourcc('p', 'R', 'C', 'C')
#define V4L2_PIX_FMT_SBGGR14 v4l2_fourcc('B', 'G', '1', '4') /* 14  BGBG.. GRGR.. */
#define V4L2_PIX_FMT_SGBRG14 v4l2_fourcc('G', 'B', '1', '4') /* 14  GBGB.. RGRG.. */
#define V4L2_PIX_FMT_SGRBG14 v4l2_fourcc('G', 'R', '1', '4') /* 14  GRGR.. BGBG.. */
#define V4L2_PIX_FMT_SRGGB14 v4l2_fourcc('R', 'G', '1', '4') /* 14  RGRG.. GBGB.. */
	/* 14bit raw bayer packed, 7 bytes for every 4 pixels */
#define V4L2_PIX_FMT_SBGGR14P v4l2_fourcc('p', 'B', 'E', 'E')
#define V4L2_PIX_FMT_SGBRG14P v4l2_fourcc('p', 'G', 'E', 'E')
#define V4L2_PIX_FMT_SGRBG14P v4l2_fourcc('p', 'g', 'E', 'E')
#define V4L2_PIX_FMT_SRGGB14P v4l2_fourcc('p', 'R', 'E', 'E')
#define V4L2_PIX_FMT_SBGGR16 v4l2_fourcc('B', 'Y', 'R', '2') /* 16  BGBG.. GRGR.. */
#define V4L2_PIX_FMT_SGBRG16 v4l2_fourcc('G', 'B', '1', '6') /* 16  GBGB.. RGRG.. */
#define V4L2_PIX_FMT_SGRBG16 v4l2_fourcc('G', 'R', '1', '6') /* 16  GRGR.. BGBG.. */
#define V4L2_PIX_FMT_SRGGB16 v4l2_fourcc('R', 'G', '1', '6') /* 16  RGRG.. GBGB.. */

/* HSV formats */
#define V4L2_PIX_FMT_HSV24 v4l2_fourcc('H', 'S', 'V', '3')
#define V4L2_PIX_FMT_HSV32 v4l2_fourcc('H', 'S', 'V', '4')

/* compressed formats */
#define V4L2_PIX_FMT_MJPEG    v4l2_fourcc('M', 'J', 'P', 'G') /* Motion-JPEG   */
#define V4L2_PIX_FMT_JPEG     v4l2_fourcc('J', 'P', 'E', 'G') /* JFIF JPEG     */
#define V4L2_PIX_FMT_DV       v4l2_fourcc('d', 'v', 's', 'd') /* 1394          */
#define V4L2_PIX_FMT_MPEG     v4l2_fourcc('M', 'P', 'E', 'G') /* MPEG-1/2/4 Multiplexed */
#define V4L2_PIX_FMT_H264     v4l2_fourcc('H', '2', '6', '4') /* H264 with start codes */
#define V4L2_PIX_FMT_H264_NO_SC v4l2_fourcc('A', 'V', 'C', '1') /* H264 without start codes */
#define V4L2_PIX_FMT_H264_MVC v4l2_fourcc('M', '2', '6', '4') /* H264 MVC */
#define V4L2_PIX_FMT_H263     v4l2_fourcc('H', '2', '6', '3') /* H263          */
#define V4L2_PIX_FMT_MPEG1    v4l2_fourcc('M', 'P', 'G', '1') /* MPEG-1 ES     */
#define V4L2_PIX_FMT_MPEG2    v4l2_fourcc('M', 'P', 'G', '2') /* MPEG-2 ES     */
#define V4L2_PIX_FMT_MPEG2_SLICE v4l2_fourcc('M', 'G', '2', 'S') /* MPEG-2 parsed slice data */
#define V4L2_PIX_FMT_MPEG4    v4l2_fourcc('M', 'P', 'G', '4') /* MPEG-4 part 2 ES */
#define V4L2_PIX_FMT_XVID     v4l2_fourcc('X', 'V', 'I', 'D') /* Xvid           */
#define V4L2_PIX_FMT_VC1_ANNEX_G v4l2_fourcc('V', 'C', '1', 'G') /* SMPTE 421M Annex G compliant stream */
#define V4L2_PIX_FMT_VC1_ANNEX_L v4l2_fourcc('V', 'C', '1', 'L') /* SMPTE 421M Annex L compliant stream */
#define V4L2_PIX_FMT_VP8      v4l2_fourcc('V', 'P', '8', '0') /* VP8 */
#define V4L2_PIX_FMT_VP8_FRAME v4l2_fourcc('V', 'P', '8', 'F') /* VP8 parsed frame */
#define V4L2_PIX_FMT_VP9      v4l2_fourcc('V', 'P', '9', '0') /* VP9 */
#define V4L2_PIX_FMT_VP9_FRAME v4l2_fourcc('V', 'P', '9', 'F') /* VP9 parsed frame */
#define V4L2_PIX_FMT_HEVC     v4l2_fourcc('H', 'E', 'V', 'C') /* HEVC aka H.265 */
#define V4L2_PIX_FMT_FWHT     v4l2_fourcc('F', 'W', 'H', 'T') /* Fast Walsh Hadamard Transform (vicodec) */
#define V4L2_PIX_FMT_FWHT_STATELESS     v4l2_fourcc('S', 'F', 'W', 'H') /* Stateless FWHT (vicodec) */
#define V4L2_PIX_FMT_H264_SLICE v4l2_fourcc('S', '2', '6', '4') /* H264 parsed slices */
#define V4L2_PIX_FMT_HEVC_SLICE v4l2_fourcc('S', '2', '6', '5') /* HEVC parsed slices */

/*  Vendor-specific formats   */
#define V4L2_PIX_FMT_CPIA1    v4l2_fourcc('C', 'P', 'I', 'A') /* cpia1 YUV */
#define V4L2_PIX_FMT_WNVA     v4l2_fourcc('W', 'N', 'V', 'A') /* Winnov hw compress */
#define V4L2_PIX_FMT_SN9C10X  v4l2_fourcc('S', '9', '1', '0') /* SN9C10x compression */
#define V4L2_PIX_FMT_SN9C20X_I420 v4l2_fourcc('S', '9', '2', '0') /* SN9C20x YUV 4:2:0 */
#define V4L2_PIX_FMT_PWC1     v4l2_fourcc('P', 'W', 'C', '1') /* pwc older webcam */
#define V4L2_PIX_FMT_PWC2     v4l2_fourcc('P', 'W', 'C', '2') /* pwc newer webcam */
#define V4L2_PIX_FMT_ET61X251 v4l2_fourcc('E', '6', '2', '5') /* ET61X251 compression */
#define V4L2_PIX_FMT_SPCA501  v4l2_fourcc('S', '5', '0', '1') /* YUYV per line */
#define V4L2_PIX_FMT_SPCA505  v4l2_fourcc('S', '5', '0', '5') /* YYUV per line */
#define V4L2_PIX_FMT_SPCA508  v4l2_fourcc('S', '5', '0', '8') /* YUVY per line */
#define V4L2_PIX_FMT_SPCA561  v4l2_fourcc('S', '5', '6', '1') /* compressed GBRG bayer */
#define V4L2_PIX_FMT_PAC207   v4l2_fourcc('P', '2', '0', '7') /* compressed BGGR bayer */
#define V4L2_PIX_FMT_MR97310A v4l2_fourcc('M', '3', '1', '0') /* compressed BGGR bayer */
#define V4L2_PIX_FMT_JL2005BCD v4l2_fourcc('J', 'L', '2', '0') /* compressed RGGB bayer */
#define V4L2_PIX_FMT_SN9C2028 v4l2_fourcc('S', 'O', 'N', 'X') /* compressed GBRG bayer */
#define V4L2_PIX_FMT_SQ905C   v4l2_fourcc('9', '0', '5', 'C') /* compressed RGGB bayer */
#define V4L2_PIX_FMT_PJPG     v4l2_fourcc('P', 'J', 'P', 'G') /* Pixart 73xx JPEG */
#define V4L2_PIX_FMT_OV511    v4l2_fourcc('O', '5', '1', '1') /* ov511 JPEG */
#define V4L2_PIX_FMT_OV518    v4l2_fourcc('O', '5', '1', '8') /* ov518 JPEG */
#define V4L2_PIX_FMT_STV0680  v4l2_fourcc('S', '6', '8', '0') /* stv0680 bayer */
#define V4L2_PIX_FMT_TM6000   v4l2_fourcc('T', 'M', '6', '0') /* tm5600/tm60x0 */
#define V4L2_PIX_FMT_CIT_YYVYUY v4l2_fourcc('C', 'I', 'T', 'V') /* one line of Y then 1 line of VYUY */
#define V4L2_PIX_FMT_KONICA420  v4l2_fourcc('K', 'O', 'N', 'I') /* YUV420 planar in blocks of 256 pixels */
#define V4L2_PIX_FMT_JPGL	v4l2_fourcc('J', 'P', 'G', 'L') /* JPEG-Lite */
#define V4L2_PIX_FMT_SE401      v4l2_fourcc('S', '4', '0', '1') /* se401 janggu compressed rgb */
#define V4L2_PIX_FMT_S5C_UYVY_JPG v4l2_fourcc('S', '5', 'C', 'I') /* S5C73M3 interleaved UYVY/JPEG */
#define V4L2_PIX_FMT_Y8I      v4l2_fourcc('Y', '8', 'I', ' ') /* Greyscale 8-bit L/R interleaved */
#define V4L2_PIX_FMT_Y12I     v4l2_fourcc('Y', '1', '2', 'I') /* Greyscale 12-bit L/R interleaved */
#define V4L2_PIX_FMT_Z16      v4l2_fourcc('Z', '1', '6', ' ') /* Depth data 16-bit */
#define V4L2_PIX_FMT_MT21C    v4l2_fourcc('M', 'T', '2', '1') /* Mediatek compressed block mode  */
#define V4L2_PIX_FMT_MM21     v4l2_fourcc('M', 'M', '2', '1') /* Mediatek 8-bit block mode, two non-contiguous planes */
#define V4L2_PIX_FMT_INZI     v4l2_fourcc('I', 'N', 'Z', 'I') /* Intel Planar Greyscale 10-bit and Depth 16-bit */
#define V4L2_PIX_FMT_CNF4     v4l2_fourcc('C', 'N', 'F', '4') /* Intel 4-bit packed depth confidence information */
#define V4L2_PIX_FMT_HI240    v4l2_fourcc('H', 'I', '2', '4') /* BTTV 8-bit dithered RGB */
#define V4L2_PIX_FMT_QC08C    v4l2_fourcc('Q', '0', '8', 'C') /* Qualcomm 8-bit compressed */
#define V4L2_PIX_FMT_QC10C    v4l2_fourcc('Q', '1', '0', 'C') /* Qualcomm 10-bit compressed */

/* 10bit raw packed, 32 bytes for every 25 pixels, last LSB 6 bits unused */
#define V4L2_PIX_FMT_IPU3_SBGGR10	v4l2_fourcc('i', 'p', '3', 'b') /* IPU3 packed 10-bit BGGR bayer */
#define V4L2_PIX_FMT_IPU3_SGBRG10	v4l2_fourcc('i', 'p', '3', 'g') /* IPU3 packed 10-bit GBRG bayer */
#define V4L2_PIX_FMT_IPU3_SGRBG10	v4l2_fourcc('i', 'p', '3', 'G') /* IPU3 packed 10-bit GRBG bayer */
#define V4L2_PIX_FMT_IPU3_SRGGB10	v4l2_fourcc('i', 'p', '3', 'r') /* IPU3 packed 10-bit RGGB bayer */

/* SDR formats - used only for Software Defined Radio devices */
#define V4L2_SDR_FMT_CU8          v4l2_fourcc('C', 'U', '0', '8') /* IQ u8 */
#define V4L2_SDR_FMT_CU16LE       v4l2_fourcc('C', 'U', '1', '6') /* IQ u16le */
#define V4L2_SDR_FMT_CS8          v4l2_fourcc('C', 'S', '0', '8') /* complex s8 */
#define V4L2_SDR_FMT_CS14LE       v4l2_fourcc('C', 'S', '1', '4') /* complex s14le */
#define V4L2_SDR_FMT_RU12LE       v4l2_fourcc('R', 'U', '1', '2') /* real u12le */
#define V4L2_SDR_FMT_PCU16BE	  v4l2_fourcc('P', 'C', '1', '6') /* planar complex u16be */
#define V4L2_SDR_FMT_PCU18BE	  v4l2_fourcc('P', 'C', '1', '8') /* planar complex u18be */
#define V4L2_SDR_FMT_PCU20BE	  v4l2_fourcc('P', 'C', '2', '0') /* planar complex u20be */

/* Touch formats - used for Touch devices */
#define V4L2_TCH_FMT_DELTA_TD16	v4l2_fourcc('T', 'D', '1', '6') /* 16-bit signed deltas */
#define V4L2_TCH_FMT_DELTA_TD08	v4l2_fourcc('T', 'D', '0', '8') /* 8-bit signed deltas */
#define V4L2_TCH_FMT_TU16	v4l2_fourcc('T', 'U', '1', '6') /* 16-bit unsigned touch data */
#define V4L2_TCH_FMT_TU08	v4l2_fourcc('T', 'U', '0', '8') /* 8-bit unsigned touch data */

/* Meta-data formats */
#define V4L2_META_FMT_VSP1_HGO    v4l2_fourcc('V', 'S', 'P', 'H') /* R-Car VSP1 1-D Histogram */
#define V4L2_META_FMT_VSP1_HGT    v4l2_fourcc('V', 'S', 'P', 'T') /* R-Car VSP1 2-D Histogram */
#define V4L2_META_FMT_UVC         v4l2_fourcc('U', 'V', 'C', 'H') /* UVC Payload Header metadata */
#define V4L2_META_FMT_D4XX        v4l2_fourcc('D', '4', 'X', 'X') /* D4XX Payload Header metadata */
#define V4L2_META_FMT_VIVID	  v4l2_fourcc('V', 'I', 'V', 'D') /* Vivid Metadata */

/* Vendor specific - used for RK_ISP1 camera sub-system */
#define V4L2_META_FMT_RK_ISP1_PARAMS	v4l2_fourcc('R', 'K', '1', 'P') /* Rockchip ISP1 3A Parameters */
#define V4L2_META_FMT_RK_ISP1_STAT_3A	v4l2_fourcc('R', 'K', '1', 'S') /* Rockchip ISP1 3A Statistics */

/* priv field value to indicates that subsequent fields are valid. */
#define V4L2_PIX_FMT_PRIV_MAGIC		0xfeedcafe

/* Flags */
#define V4L2_PIX_FMT_FLAG_PREMUL_ALPHA	0x00000001
#define V4L2_PIX_FMT_FLAG_SET_CSC	0x00000002

/*
 *	F O R M A T   E N U M E R A T I O N
 */
struct v4l2_fmtdesc {
	__u32		    index;             /* Format number      */
	__u32		    type;              /* enum v4l2_buf_type */
	__u32               flags;
	__u8		    description[32];   /* Description string */
	__u32		    pixelformat;       /* Format fourcc      */
	__u32		    mbus_code;		/* Media bus code    */
	__u32		    reserved[3];
};

#define V4L2_FMT_FLAG_COMPRESSED		0x0001
#define V4L2_FMT_FLAG_EMULATED			0x0002
#define V4L2_FMT_FLAG_CONTINUOUS_BYTESTREAM	0x0004
#define V4L2_FMT_FLAG_DYN_RESOLUTION		0x0008
#define V4L2_FMT_FLAG_ENC_CAP_FRAME_INTERVAL	0x0010
#define V4L2_FMT_FLAG_CSC_COLORSPACE		0x0020
#define V4L2_FMT_FLAG_CSC_XFER_FUNC		0x0040
#define V4L2_FMT_FLAG_CSC_YCBCR_ENC		0x0080
#define V4L2_FMT_FLAG_CSC_HSV_ENC		V4L2_FMT_FLAG_CSC_YCBCR_ENC
#define V4L2_FMT_FLAG_CSC_QUANTIZATION		0x0100

	/* Frame Size and frame rate enumeration */
/*
 *	F R A M E   S I Z E   E N U M E R A T I O N
 */
enum v4l2_frmsizetypes {
	V4L2_FRMSIZE_TYPE_DISCRETE	= 1,
	V4L2_FRMSIZE_TYPE_CONTINUOUS	= 2,
	V4L2_FRMSIZE_TYPE_STEPWISE	= 3,
};

struct v4l2_frmsize_discrete {
	__u32			width;		/* Frame width [pixel] */
	__u32			height;		/* Frame height [pixel] */
};

struct v4l2_frmsize_stepwise {
	__u32			min_width;	/* Minimum frame width [pixel] */
	__u32			max_width;	/* Maximum frame width [pixel] */
	__u32			step_width;	/* Frame width step size [pixel] */
	__u32			min_height;	/* Minimum frame height [pixel] */
	__u32			max_height;	/* Maximum frame height [pixel] */
	__u32			step_height;	/* Frame height step size [pixel] */
};

struct v4l2_frmsizeenum {
	__u32			index;		/* Frame size number */
	__u32			pixel_format;	/* Pixel format */
	__u32			type;		/* Frame size type the device supports. */

	union {					/* Frame size */
		struct v4l2_frmsize_discrete	discrete;
		struct v4l2_frmsize_stepwise	stepwise;
	};

	__u32   reserved[2];			/* Reserved space for future use */
};

/*
 *	F R A M E   R A T E   E N U M E R A T I O N
 */
enum v4l2_frmivaltypes {
	V4L2_FRMIVAL_TYPE_DISCRETE	= 1,
	V4L2_FRMIVAL_TYPE_CONTINUOUS	= 2,
	V4L2_FRMIVAL_TYPE_STEPWISE	= 3,
};

struct v4l2_frmival_stepwise {
	struct v4l2_fract	min;		/* Minimum frame interval [s] */
	struct v4l2_fract	max;		/* Maximum frame interval [s] */
	struct v4l2_fract	step;		/* Frame interval step size [s] */
};

struct v4l2_frmivalenum {
	__u32			index;		/* Frame format index */
	__u32			pixel_format;	/* Pixel format */
	__u32			width;		/* Frame width */
	__u32			height;		/* Frame height */
	__u32			type;		/* Frame interval type the device supports. */

	union {					/* Frame interval */
		struct v4l2_fract		discrete;
		struct v4l2_frmival_stepwise	stepwise;
	};

	__u32	reserved[2];			/* Reserved space for future use */
};

/*
 *	T I M E C O D E
 */
struct v4l2_timecode {
	__u32	type;
	__u32	flags;
	__u8	frames;
	__u8	seconds;
	__u8	minutes;
	__u8	hours;
	__u8	userbits[4];
};

/*  Type  */
#define V4L2_TC_TYPE_24FPS		1
#define V4L2_TC_TYPE_25FPS		2
#define V4L2_TC_TYPE_30FPS		3
#define V4L2_TC_TYPE_50FPS		4
#define V4L2_TC_TYPE_60FPS		5

/*  Flags  */
#define V4L2_TC_FLAG_DROPFRAME		0x0001 /* "drop-frame" mode */
#define V4L2_TC_FLAG_COLORFRAME		0x0002
#define V4L2_TC_USERBITS_field		0x000C
#define V4L2_TC_USERBITS_USERDEFINED	0x0000
#define V4L2_TC_USERBITS_8BITCHARS	0x0008
/* The above is based on SMPTE timecodes */

struct v4l2_jpegcompression {
	int quality;

	int  APPn;              /* Number of APP segment to be written,
				 * must be 0..15 */
	int  APP_len;           /* Length of data in JPEG APPn segment */
	char APP_data[60];      /* Data in the JPEG APPn segment. */

	int  COM_len;           /* Length of data in JPEG COM segment */
	char COM_data[60];      /* Data in JPEG COM segment */

	__u32 jpeg_markers;     /* Which markers should go into the JPEG
				 * output. Unless you exactly know what
				 * you do, leave them untouched.
				 * Including less markers will make the
				 * resulting code smaller, but there will
				 * be fewer applications which can read it.
				 * The presence of the APP and COM marker
				 * is influenced by APP_len and COM_len
				 * ONLY, not by this property! */

#define V4L2_JPEG_MARKER_DHT (1<<3)    /* Define Huffman Tables */
#define V4L2_JPEG_MARKER_DQT (1<<4)    /* Define Quantization Tables */
#define V4L2_JPEG_MARKER_DRI (1<<5)    /* Define Restart Interval */
#define V4L2_JPEG_MARKER_COM (1<<6)    /* Comment segment */
#define V4L2_JPEG_MARKER_APP (1<<7)    /* App segment, driver will
					* always use APP0 */
};

/*
 *	M E M O R Y - M A P P I N G   B U F F E R S
 */


struct v4l2_requestbuffers {
	__u32			count;
	__u32			type;		/* enum v4l2_buf_type */
	__u32			memory;		/* enum v4l2_memory */
	__u32			capabilities;
	__u8			flags;
	__u8			reserved[3];
};

#define V4L2_MEMORY_FLAG_NON_COHERENT			(1 << 0)

/* capabilities for struct v4l2_requestbuffers and v4l2_create_buffers */
#define V4L2_BUF_CAP_SUPPORTS_MMAP			(1 << 0)
#define V4L2_BUF_CAP_SUPPORTS_USERPTR			(1 << 1)
#define V4L2_BUF_CAP_SUPPORTS_DMABUF			(1 << 2)
#define V4L2_BUF_CAP_SUPPORTS_REQUESTS			(1 << 3)
#define V4L2_BUF_CAP_SUPPORTS_ORPHANED_BUFS		(1 << 4)
#define V4L2_BUF_CAP_SUPPORTS_M2M_HOLD_CAPTURE_BUF	(1 << 5)
#define V4L2_BUF_CAP_SUPPORTS_MMAP_CACHE_HINTS		(1 << 6)

/**
 * struct v4l2_plane - plane info for multi-planar buffers
 * @bytesused:		number of bytes occupied by data in the plane (payload)
 * @length:		size of this plane (NOT the payload) in bytes
 * @mem_offset:		when memory in the associated struct v4l2_buffer is
 *			V4L2_MEMORY_MMAP, equals the offset from the start of
 *			the device memory for this plane (or is a "cookie" that
 *			should be passed to mmap() called on the video node)
 * @userptr:		when memory is V4L2_MEMORY_USERPTR, a userspace pointer
 *			pointing to this plane
 * @fd:			when memory is V4L2_MEMORY_DMABUF, a userspace file
 *			descriptor associated with this plane
 * @m:			union of @mem_offset, @userptr and @fd
 * @data_offset:	offset in the plane to the start of data; usually 0,
 *			unless there is a header in front of the data
 * @reserved:		drivers and applications must zero this array
 *
 * Multi-planar buffers consist of one or more planes, e.g. an YCbCr buffer
 * with two planes can have one plane for Y, and another for interleaved CbCr
 * components. Each plane can reside in a separate memory buffer, or even in
 * a completely separate memory node (e.g. in embedded devices).
 */
struct v4l2_plane {
	__u32			bytesused;
	__u32			length;
	union {
		__u32		mem_offset;
		unsigned long	userptr;
		__s32		fd;
	} m;
	__u32			data_offset;
	__u32			reserved[11];
};

/**
 * struct v4l2_buffer - video buffer info
 * @index:	id number of the buffer
 * @type:	enum v4l2_buf_type; buffer type (type == *_MPLANE for
 *		multiplanar buffers);
 * @bytesused:	number of bytes occupied by data in the buffer (payload);
 *		unused (set to 0) for multiplanar buffers
 * @flags:	buffer informational flags
 * @field:	enum v4l2_field; field order of the image in the buffer
 * @timestamp:	frame timestamp
 * @timecode:	frame timecode
 * @sequence:	sequence count of this frame
 * @memory:	enum v4l2_memory; the method, in which the actual video data is
 *		passed
 * @offset:	for non-multiplanar buffers with memory == V4L2_MEMORY_MMAP;
 *		offset from the start of the device memory for this plane,
 *		(or a "cookie" that should be passed to mmap() as offset)
 * @userptr:	for non-multiplanar buffers with memory == V4L2_MEMORY_USERPTR;
 *		a userspace pointer pointing to this buffer
 * @fd:		for non-multiplanar buffers with memory == V4L2_MEMORY_DMABUF;
 *		a userspace file descriptor associated with this buffer
 * @planes:	for multiplanar buffers; userspace pointer to the array of plane
 *		info structs for this buffer
 * @m:		union of @offset, @userptr, @planes and @fd
 * @length:	size in bytes of the buffer (NOT its payload) for single-plane
 *		buffers (when type != *_MPLANE); number of elements in the
 *		planes array for multi-plane buffers
 * @reserved2:	drivers and applications must zero this field
 * @request_fd: fd of the request that this buffer should use
 * @reserved:	for backwards compatibility with applications that do not know
 *		about @request_fd
 *
 * Contains data exchanged by application and driver using one of the Streaming
 * I/O methods.
 */
struct v4l2_buffer {
	__u32			index;
	__u32			type;
	__u32			bytesused;
	__u32			flags;
	__u32			field;
	struct timeval		timestamp;
	struct v4l2_timecode	timecode;
	__u32			sequence;

	/* memory location */
	__u32			memory;
	union {
		__u32           offset;
		unsigned long   userptr;
		struct v4l2_plane *planes;
		__s32		fd;
	} m;
	__u32			length;
	__u32			reserved2;
	union {
		__s32		request_fd;
		__u32		reserved;
	};
};

/**
 * v4l2_timeval_to_ns - Convert timeval to nanoseconds
 * @tv:		pointer to the timeval variable to be converted
 *
 * Returns the scalar nanosecond representation of the timeval
 * parameter.
 */
static __inline__ __u64 v4l2_timeval_to_ns(const struct timeval *tv)
{
	return (__u64)tv->tv_sec * 1000000000ULL + tv->tv_usec * 1000;
}

/*  Flags for 'flags' field */
/* Buffer is mapped (flag) */
#define V4L2_BUF_FLAG_MAPPED			0x00000001
/* Buffer is queued for processing */
#define V4L2_BUF_FLAG_QUEUED			0x00000002
/* Buffer is ready */
#define V4L2_BUF_FLAG_DONE			0x00000004
/* Image is a keyframe (I-frame) */
#define V4L2_BUF_FLAG_KEYFRAME			0x00000008
/* Image is a P-frame */
#define V4L2_BUF_FLAG_PFRAME			0x00000010
/* Image is a B-frame */
#define V4L2_BUF_FLAG_BFRAME			0x00000020
/* Buffer is ready, but the data contained within is corrupted. */
#define V4L2_BUF_FLAG_ERROR			0x00000040
/* Buffer is added to an unqueued request */
#define V4L2_BUF_FLAG_IN_REQUEST		0x00000080
/* timecode field is valid */
#define V4L2_BUF_FLAG_TIMECODE			0x00000100
/* Don't return the capture buffer until OUTPUT timestamp changes */
#define V4L2_BUF_FLAG_M2M_HOLD_CAPTURE_BUF	0x00000200
/* Buffer is prepared for queuing */
#define V4L2_BUF_FLAG_PREPARED			0x00000400
/* Cache handling flags */
#define V4L2_BUF_FLAG_NO_CACHE_INVALIDATE	0x00000800
#define V4L2_BUF_FLAG_NO_CACHE_CLEAN		0x00001000
/* Timestamp type */
#define V4L2_BUF_FLAG_TIMESTAMP_MASK		0x0000e000
#define V4L2_BUF_FLAG_TIMESTAMP_UNKNOWN		0x00000000
#define V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC	0x00002000
#define V4L2_BUF_FLAG_TIMESTAMP_COPY		0x00004000
/* Timestamp sources. */
#define V4L2_BUF_FLAG_TSTAMP_SRC_MASK		0x00070000
#define V4L2_BUF_FLAG_TSTAMP_SRC_EOF		0x00000000
#define V4L2_BUF_FLAG_TSTAMP_SRC_SOE		0x00010000
/* mem2mem encoder/decoder */
#define V4L2_BUF_FLAG_LAST			0x00100000
/* request_fd is valid */
#define V4L2_BUF_FLAG_REQUEST_FD		0x00800000

/**
 * struct v4l2_exportbuffer - export of video buffer as DMABUF file descriptor
 *
 * @index:	id number of the buffer
 * @type:	enum v4l2_buf_type; buffer type (type == *_MPLANE for
 *		multiplanar buffers);
 * @plane:	index of the plane to be exported, 0 for single plane queues
 * @flags:	flags for newly created file, currently only O_CLOEXEC is
 *		supported, refer to manual of open syscall for more details
 * @fd:		file descriptor associated with DMABUF (set by driver)
 * @reserved:	drivers and applications must zero this array
 *
 * Contains data used for exporting a video buffer as DMABUF file descriptor.
 * The buffer is identified by a 'cookie' returned by VIDIOC_QUERYBUF
 * (identical to the cookie used to mmap() the buffer to userspace). All
 * reserved fields must be set to zero. The field reserved0 is expected to
 * become a structure 'type' allowing an alternative layout of the structure
 * content. Therefore this field should not be used for any other extensions.
 */
struct v4l2_exportbuffer {
	__u32		type; /* enum v4l2_buf_type */
	__u32		index;
	__u32		plane;
	__u32		flags;
	__s32		fd;
	__u32		reserved[11];
};

/*
 *	O V E R L A Y   P R E V I E W
 */
struct v4l2_framebuffer {
	__u32			capability;
	__u32			flags;
/* FIXME: in theory we should pass something like PCI device + memory
 * region + offset instead of some physical address */
	void                    *base;
	struct {
		__u32		width;
		__u32		height;
		__u32		pixelformat;
		__u32		field;		/* enum v4l2_field */
		__u32		bytesperline;	/* for padding, zero if unused */
		__u32		sizeimage;
		__u32		colorspace;	/* enum v4l2_colorspace */
		__u32		priv;		/* reserved field, set to 0 */
	} fmt;
};
/*  Flags for the 'capability' field. Read only */
#define V4L2_FBUF_CAP_EXTERNOVERLAY	0x0001
#define V4L2_FBUF_CAP_CHROMAKEY		0x0002
#define V4L2_FBUF_CAP_LIST_CLIPPING     0x0004
#define V4L2_FBUF_CAP_BITMAP_CLIPPING	0x0008
#define V4L2_FBUF_CAP_LOCAL_ALPHA	0x0010
#define V4L2_FBUF_CAP_GLOBAL_ALPHA	0x0020
#define V4L2_FBUF_CAP_LOCAL_INV_ALPHA	0x0040
#define V4L2_FBUF_CAP_SRC_CHROMAKEY	0x0080
/*  Flags for the 'flags' field. */
#define V4L2_FBUF_FLAG_PRIMARY		0x0001
#define V4L2_FBUF_FLAG_OVERLAY		0x0002
#define V4L2_FBUF_FLAG_CHROMAKEY	0x0004
#define V4L2_FBUF_FLAG_LOCAL_ALPHA	0x0008
#define V4L2_FBUF_FLAG_GLOBAL_ALPHA	0x0010
#define V4L2_FBUF_FLAG_LOCAL_INV_ALPHA	0x0020
#define V4L2_FBUF_FLAG_SRC_CHROMAKEY	0x0040

struct v4l2_clip {
	struct v4l2_rect        c;
	struct v4l2_clip	*next;
};

struct v4l2_window {
	struct v4l2_rect        w;
	__u32			field;	 /* enum v4l2_field */
	__u32			chromakey;
	struct v4l2_clip	*clips;
	__u32			clipcount;
	void			*bitmap;
	__u8                    global_alpha;
};

/*
 *	C A P T U R E   P A R A M E T E R S
 */
struct v4l2_captureparm {
	__u32		   capability;	  /*  Supported modes */
	__u32		   capturemode;	  /*  Current mode */
	struct v4l2_fract  timeperframe;  /*  Time per frame in seconds */
	__u32		   extendedmode;  /*  Driver-specific extensions */
	__u32              readbuffers;   /*  # of buffers for read */
	__u32		   reserved[4];
};

/*  Flags for 'capability' and 'capturemode' fields */
#define V4L2_MODE_HIGHQUALITY	0x0001	/*  High quality imaging mode */
#define V4L2_CAP_TIMEPERFRAME	0x1000	/*  timeperframe field is supported */

struct v4l2_outputparm {
	__u32		   capability;	 /*  Supported modes */
	__u32		   outputmode;	 /*  Current mode */
	struct v4l2_fract  timeperframe; /*  Time per frame in seconds */
	__u32		   extendedmode; /*  Driver-specific extensions */
	__u32              writebuffers; /*  # of buffers for write */
	__u32		   reserved[4];
};

/*
 *	I N P U T   I M A G E   C R O P P I N G
 */
struct v4l2_cropcap {
	__u32			type;	/* enum v4l2_buf_type */
	struct v4l2_rect        bounds;
	struct v4l2_rect        defrect;
	struct v4l2_fract       pixelaspect;
};

struct v4l2_crop {
	__u32			type;	/* enum v4l2_buf_type */
	struct v4l2_rect        c;
};

/**
 * struct v4l2_selection - selection info
 * @type:	buffer type (do not use *_MPLANE types)
 * @target:	Selection target, used to choose one of possible rectangles;
 *		defined in v4l2-common.h; V4L2_SEL_TGT_* .
 * @flags:	constraints flags, defined in v4l2-common.h; V4L2_SEL_FLAG_*.
 * @r:		coordinates of selection window
 * @reserved:	for future use, rounds structure size to 64 bytes, set to zero
 *
 * Hardware may use multiple helper windows to process a video stream.
 * The structure is used to exchange this selection areas between
 * an application and a driver.
 */
struct v4l2_selection {
	__u32			type;
	__u32			target;
	__u32                   flags;
	struct v4l2_rect        r;
	__u32                   reserved[9];
};


/*
 *      A N A L O G   V I D E O   S T A N D A R D
 */

typedef __u64 v4l2_std_id;

/*
 * Attention: Keep the V4L2_STD_* bit definitions in sync with
 * include/dt-bindings/display/sdtv-standards.h SDTV_STD_* bit definitions.
 */
/* one bit for each */
#define V4L2_STD_PAL_B          ((v4l2_std_id)0x00000001)
#define V4L2_STD_PAL_B1         ((v4l2_std_id)0x00000002)
#define V4L2_STD_PAL_G          ((v4l2_std_id)0x00000004)
#define V4L2_STD_PAL_H          ((v4l2_std_id)0x00000008)
#define V4L2_STD_PAL_I          ((v4l2_std_id)0x00000010)
#define V4L2_STD_PAL_D          ((v4l2_std_id)0x00000020)
#define V4L2_STD_PAL_D1         ((v4l2_std_id)0x00000040)
#define V4L2_STD_PAL_K          ((v4l2_std_id)0x00000080)

#define V4L2_STD_PAL_M          ((v4l2_std_id)0x00000100)
#define V4L2_STD_PAL_N          ((v4l2_std_id)0x00000200)
#define V4L2_STD_PAL_Nc         ((v4l2_std_id)0x00000400)
#define V4L2_STD_PAL_60         ((v4l2_std_id)0x00000800)

#define V4L2_STD_NTSC_M         ((v4l2_std_id)0x00001000)	/* BTSC */
#define V4L2_STD_NTSC_M_JP      ((v4l2_std_id)0x00002000)	/* EIA-J */
#define V4L2_STD_NTSC_443       ((v4l2_std_id)0x00004000)
#define V4L2_STD_NTSC_M_KR      ((v4l2_std_id)0x00008000)	/* FM A2 */

#define V4L2_STD_SECAM_B        ((v4l2_std_id)0x00010000)
#define V4L2_STD_SECAM_D        ((v4l2_std_id)0x00020000)
#define V4L2_STD_SECAM_G        ((v4l2_std_id)0x00040000)
#define V4L2_STD_SECAM_H        ((v4l2_std_id)0x00080000)
#define V4L2_STD_SECAM_K        ((v4l2_std_id)0x00100000)
#define V4L2_STD_SECAM_K1       ((v4l2_std_id)0x00200000)
#define V4L2_STD_SECAM_L        ((v4l2_std_id)0x00400000)
#define V4L2_STD_SECAM_LC       ((v4l2_std_id)0x00800000)

/* ATSC/HDTV */
#define V4L2_STD_ATSC_8_VSB     ((v4l2_std_id)0x01000000)
#define V4L2_STD_ATSC_16_VSB    ((v4l2_std_id)0x02000000)

/* FIXME:
   Although std_id is 64 bits, there is an issue on PPC32 architecture that
   makes switch(__u64) to break. So, there's a hack on v4l2-common.c rounding
   this value to 32 bits.
   As, currently, the max value is for V4L2_STD_ATSC_16_VSB (30 bits wide),
   it should work fine. However, if needed to add more than two standards,
   v4l2-common.c should be fixed.
 */

/*
 * Some macros to merge video standards in order to make live easier for the
 * drivers and V4L2 applications
 */

/*
 * "Common" NTSC/M - It should be noticed that V4L2_STD_NTSC_443 is
 * Missing here.
 */
#define V4L2_STD_NTSC           (V4L2_STD_NTSC_M	|\
				 V4L2_STD_NTSC_M_JP     |\
				 V4L2_STD_NTSC_M_KR)
/* Secam macros */
#define V4L2_STD_SECAM_DK	(V4L2_STD_SECAM_D	|\
				 V4L2_STD_SECAM_K	|\
				 V4L2_STD_SECAM_K1)
/* All Secam Standards */
#define V4L2_STD_SECAM		(V4L2_STD_SECAM_B	|\
				 V4L2_STD_SECAM_G	|\
				 V4L2_STD_SECAM_H	|\
				 V4L2_STD_SECAM_DK	|\
				 V4L2_STD_SECAM_L       |\
				 V4L2_STD_SECAM_LC)
/* PAL macros */
#define V4L2_STD_PAL_BG		(V4L2_STD_PAL_B		|\
				 V4L2_STD_PAL_B1	|\
				 V4L2_STD_PAL_G)
#define V4L2_STD_PAL_DK		(V4L2_STD_PAL_D		|\
				 V4L2_STD_PAL_D1	|\
				 V4L2_STD_PAL_K)
/*
 * "Common" PAL - This macro is there to be compatible with the old
 * V4L1 concept of "PAL": /BGDKHI.
 * Several PAL standards are missing here: /M, /N and /Nc
 */
#define V4L2_STD_PAL		(V4L2_STD_PAL_BG	|\
				 V4L2_STD_PAL_DK	|\
				 V4L2_STD_PAL_H		|\
				 V4L2_STD_PAL_I)
/* Chroma "agnostic" standards */
#define V4L2_STD_B		(V4L2_STD_PAL_B		|\
				 V4L2_STD_PAL_B1	|\
				 V4L2_STD_SECAM_B)
#define V4L2_STD_G		(V4L2_STD_PAL_G		|\
				 V4L2_STD_SECAM_G)
#define V4L2_STD_H		(V4L2_STD_PAL_H		|\
				 V4L2_STD_SECAM_H)
#define V4L2_STD_L		(V4L2_STD_SECAM_L	|\
				 V4L2_STD_SECAM_LC)
#define V4L2_STD_GH		(V4L2_STD_G		|\
				 V4L2_STD_H)
#define V4L2_STD_DK		(V4L2_STD_PAL_DK	|\
				 V4L2_STD_SECAM_DK)
#define V4L2_STD_BG		(V4L2_STD_B		|\
				 V4L2_STD_G)
#define V4L2_STD_MN		(V4L2_STD_PAL_M		|\
				 V4L2_STD_PAL_N		|\
				 V4L2_STD_PAL_Nc	|\
				 V4L2_STD_NTSC)

/* Standards where MTS/BTSC stereo could be found */
#define V4L2_STD_MTS		(V4L2_STD_NTSC_M	|\
				 V4L2_STD_PAL_M		|\
				 V4L2_STD_PAL_N		|\
				 V4L2_STD_PAL_Nc)

/* Standards for Countries with 60Hz Line frequency */
#define V4L2_STD_525_60		(V4L2_STD_PAL_M		|\
				 V4L2_STD_PAL_60	|\
				 V4L2_STD_NTSC		|\
				 V4L2_STD_NTSC_443)
/* Standards for Countries with 50Hz Line frequency */
#define V4L2_STD_625_50		(V4L2_STD_PAL		|\
				 V4L2_STD_PAL_N		|\
				 V4L2_STD_PAL_Nc	|\
				 V4L2_STD_SECAM)

#define V4L2_STD_ATSC           (V4L2_STD_ATSC_8_VSB    |\
				 V4L2_STD_ATSC_16_VSB)
/* Macros with none and all analog standards */
#define V4L2_STD_UNKNOWN        0
#define V4L2_STD_ALL            (V4L2_STD_525_60	|\
				 V4L2_STD_625_50)

struct v4l2_standard {
	__u32		     index;
	v4l2_std_id          id;
	__u8		     name[24];
	struct v4l2_fract    frameperiod; /* Frames, not fields */
	__u32		     framelines;
	__u32		     reserved[4];
};

/*
 *	D V	B T	T I M I N G S
 */

/** struct v4l2_bt_timings - BT.656/BT.1120 timing data
 * @width:	total width of the active video in pixels
 * @height:	total height of the active video in lines
 * @interlaced:	Interlaced or progressive
 * @polarities:	Positive or negative polarities
 * @pixelclock:	Pixel clock in HZ. Ex. 74.25MHz->74250000
 * @hfrontporch:Horizontal front porch in pixels
 * @hsync:	Horizontal Sync length in pixels
 * @hbackporch:	Horizontal back porch in pixels
 * @vfrontporch:Vertical front porch in lines
 * @vsync:	Vertical Sync length in lines
 * @vbackporch:	Vertical back porch in lines
 * @il_vfrontporch:Vertical front porch for the even field
 *		(aka field 2) of interlaced field formats
 * @il_vsync:	Vertical Sync length for the even field
 *		(aka field 2) of interlaced field formats
 * @il_vbackporch:Vertical back porch for the even field
 *		(aka field 2) of interlaced field formats
 * @standards:	Standards the timing belongs to
 * @flags:	Flags
 * @picture_aspect: The picture aspect ratio (hor/vert).
 * @cea861_vic:	VIC code as per the CEA-861 standard.
 * @hdmi_vic:	VIC code as per the HDMI standard.
 * @reserved:	Reserved fields, must be zeroed.
 *
 * A note regarding vertical interlaced timings: height refers to the total
 * height of the active video frame (= two fields). The blanking timings refer
 * to the blanking of each field. So the height of the total frame is
 * calculated as follows:
 *
 * tot_height = height + vfrontporch + vsync + vbackporch +
 *                       il_vfrontporch + il_vsync + il_vbackporch
 *
 * The active height of each field is height / 2.
 */
struct v4l2_bt_timings {
	__u32	width;
	__u32	height;
	__u32	interlaced;
	__u32	polarities;
	__u64	pixelclock;
	__u32	hfrontporch;
	__u32	hsync;
	__u32	hbackporch;
	__u32	vfrontporch;
	__u32	vsync;
	__u32	vbackporch;
	__u32	il_vfrontporch;
	__u32	il_vsync;
	__u32	il_vbackporch;
	__u32	standards;
	__u32	flags;
	struct v4l2_fract picture_aspect;
	__u8	cea861_vic;
	__u8	hdmi_vic;
	__u8	reserved[46];
} __attribute__ ((packed));

/* Interlaced or progressive format */
#define	V4L2_DV_PROGRESSIVE	0
#define	V4L2_DV_INTERLACED	1

/* Polarities. If bit is not set, it is assumed to be negative polarity */
#define V4L2_DV_VSYNC_POS_POL	0x00000001
#define V4L2_DV_HSYNC_POS_POL	0x00000002

/* Timings standards */
#define V4L2_DV_BT_STD_CEA861	(1 << 0)  /* CEA-861 Digital TV Profile */
#define V4L2_DV_BT_STD_DMT	(1 << 1)  /* VESA Discrete Monitor Timings */
#define V4L2_DV_BT_STD_CVT	(1 << 2)  /* VESA Coordinated Video Timings */
#define V4L2_DV_BT_STD_GTF	(1 << 3)  /* VESA Generalized Timings Formula */
#define V4L2_DV_BT_STD_SDI	(1 << 4)  /* SDI Timings */

/* Flags */

/*
 * CVT/GTF specific: timing uses reduced blanking (CVT) or the 'Secondary
 * GTF' curve (GTF). In both cases the horizontal and/or vertical blanking
 * intervals are reduced, allowing a higher resolution over the same
 * bandwidth. This is a read-only flag.
 */
#define V4L2_DV_FL_REDUCED_BLANKING		(1 << 0)
/*
 * CEA-861 specific: set for CEA-861 formats with a framerate of a multiple
 * of six. These formats can be optionally played at 1 / 1.001 speed.
 * This is a read-only flag.
 */
#define V4L2_DV_FL_CAN_REDUCE_FPS		(1 << 1)
/*
 * CEA-861 specific: only valid for video transmitters, the flag is cleared
 * by receivers.
 * If the framerate of the format is a multiple of six, then the pixelclock
 * used to set up the transmitter is divided by 1.001 to make it compatible
 * with 60 Hz based standards such as NTSC and PAL-M that use a framerate of
 * 29.97 Hz. Otherwise this flag is cleared. If the transmitter can't generate
 * such frequencies, then the flag will also be cleared.
 */
#define V4L2_DV_FL_REDUCED_FPS			(1 << 2)
/*
 * Specific to interlaced formats: if set, then field 1 is really one half-line
 * longer and field 2 is really one half-line shorter, so each field has
 * exactly the same number of half-lines. Whether half-lines can be detected
 * or used depends on the hardware.
 */
#define V4L2_DV_FL_HALF_LINE			(1 << 3)
/*
 * If set, then this is a Consumer Electronics (CE) video format. Such formats
 * differ from other formats (commonly called IT formats) in that if RGB
 * encoding is used then by default the RGB values use limited range (i.e.
 * use the range 16-235) as opposed to 0-255. All formats defined in CEA-861
 * except for the 640x480 format are CE formats.
 */
#define V4L2_DV_FL_IS_CE_VIDEO			(1 << 4)
/* Some formats like SMPTE-125M have an interlaced signal with a odd
 * total height. For these formats, if this flag is set, the first
 * field has the extra line. If not, it is the second field.
 */
#define V4L2_DV_FL_FIRST_FIELD_EXTRA_LINE	(1 << 5)
/*
 * If set, then the picture_aspect field is valid. Otherwise assume that the
 * pixels are square, so the picture aspect ratio is the same as the width to
 * height ratio.
 */
#define V4L2_DV_FL_HAS_PICTURE_ASPECT		(1 << 6)
/*
 * If set, then the cea861_vic field is valid and contains the Video
 * Identification Code as per the CEA-861 standard.
 */
#define V4L2_DV_FL_HAS_CEA861_VIC		(1 << 7)
/*
 * If set, then the hdmi_vic field is valid and contains the Video
 * Identification Code as per the HDMI standard (HDMI Vendor Specific
 * InfoFrame).
 */
#define V4L2_DV_FL_HAS_HDMI_VIC			(1 << 8)
/*
 * CEA-861 specific: only valid for video receivers.
 * If set, then HW can detect the difference between regular FPS and
 * 1000/1001 FPS. Note: This flag is only valid for HDMI VIC codes with
 * the V4L2_DV_FL_CAN_REDUCE_FPS flag set.
 */
#define V4L2_DV_FL_CAN_DETECT_REDUCED_FPS	(1 << 9)

/* A few useful defines to calculate the total blanking and frame sizes */
#define V4L2_DV_BT_BLANKING_WIDTH(bt) \
	((bt)->hfrontporch + (bt)->hsync + (bt)->hbackporch)
#define V4L2_DV_BT_FRAME_WIDTH(bt) \
	((bt)->width + V4L2_DV_BT_BLANKING_WIDTH(bt))
#define V4L2_DV_BT_BLANKING_HEIGHT(bt) \
	((bt)->vfrontporch + (bt)->vsync + (bt)->vbackporch + \
	 ((bt)->interlaced ? \
	  ((bt)->il_vfrontporch + (bt)->il_vsync + (bt)->il_vbackporch) : 0))
#define V4L2_DV_BT_FRAME_HEIGHT(bt) \
	((bt)->height + V4L2_DV_BT_BLANKING_HEIGHT(bt))

/** struct v4l2_dv_timings - DV timings
 * @type:	the type of the timings
 * @bt:	BT656/1120 timings
 */
struct v4l2_dv_timings {
	__u32 type;
	union {
		struct v4l2_bt_timings	bt;
		__u32	reserved[32];
	};
} __attribute__ ((packed));

/* Values for the type field */
#define V4L2_DV_BT_656_1120	0	/* BT.656/1120 timing type */


/** struct v4l2_enum_dv_timings - DV timings enumeration
 * @index:	enumeration index
 * @pad:	the pad number for which to enumerate timings (used with
 *		v4l-subdev nodes only)
 * @reserved:	must be zeroed
 * @timings:	the timings for the given index
 */
struct v4l2_enum_dv_timings {
	__u32 index;
	__u32 pad;
	__u32 reserved[2];
	struct v4l2_dv_timings timings;
};

/** struct v4l2_bt_timings_cap - BT.656/BT.1120 timing capabilities
 * @min_width:		width in pixels
 * @max_width:		width in pixels
 * @min_height:		height in lines
 * @max_height:		height in lines
 * @min_pixelclock:	Pixel clock in HZ. Ex. 74.25MHz->74250000
 * @max_pixelclock:	Pixel clock in HZ. Ex. 74.25MHz->74250000
 * @standards:		Supported standards
 * @capabilities:	Supported capabilities
 * @reserved:		Must be zeroed
 */
struct v4l2_bt_timings_cap {
	__u32	min_width;
	__u32	max_width;
	__u32	min_height;
	__u32	max_height;
	__u64	min_pixelclock;
	__u64	max_pixelclock;
	__u32	standards;
	__u32	capabilities;
	__u32	reserved[16];
} __attribute__ ((packed));

/* Supports interlaced formats */
#define V4L2_DV_BT_CAP_INTERLACED	(1 << 0)
/* Supports progressive formats */
#define V4L2_DV_BT_CAP_PROGRESSIVE	(1 << 1)
/* Supports CVT/GTF reduced blanking */
#define V4L2_DV_BT_CAP_REDUCED_BLANKING	(1 << 2)
/* Supports custom formats */
#define V4L2_DV_BT_CAP_CUSTOM		(1 << 3)

/** struct v4l2_dv_timings_cap - DV timings capabilities
 * @type:	the type of the timings (same as in struct v4l2_dv_timings)
 * @pad:	the pad number for which to query capabilities (used with
 *		v4l-subdev nodes only)
 * @bt:		the BT656/1120 timings capabilities
 */
struct v4l2_dv_timings_cap {
	__u32 type;
	__u32 pad;
	__u32 reserved[2];
	union {
		struct v4l2_bt_timings_cap bt;
		__u32 raw_data[32];
	};
};


/*
 *	V I D E O   I N P U T S
 */
struct v4l2_input {
	__u32	     index;		/*  Which input */
	__u8	     name[32];		/*  Label */
	__u32	     type;		/*  Type of input */
	__u32	     audioset;		/*  Associated audios (bitfield) */
	__u32        tuner;             /*  Tuner index */
	v4l2_std_id  std;
	__u32	     status;
	__u32	     capabilities;
	__u32	     reserved[3];
};

/*  Values for the 'type' field */
#define V4L2_INPUT_TYPE_TUNER		1
#define V4L2_INPUT_TYPE_CAMERA		2
#define V4L2_INPUT_TYPE_TOUCH		3

/* field 'status' - general */
#define V4L2_IN_ST_NO_POWER    0x00000001  /* Attached device is off */
#define V4L2_IN_ST_NO_SIGNAL   0x00000002
#define V4L2_IN_ST_NO_COLOR    0x00000004

/* field 'status' - sensor orientation */
/* If sensor is mounted upside down set both bits */
#define V4L2_IN_ST_HFLIP       0x00000010 /* Frames are flipped horizontally */
#define V4L2_IN_ST_VFLIP       0x00000020 /* Frames are flipped vertically */

/* field 'status' - analog */
#define V4L2_IN_ST_NO_H_LOCK   0x00000100  /* No horizontal sync lock */
#define V4L2_IN_ST_COLOR_KILL  0x00000200  /* Color killer is active */
#define V4L2_IN_ST_NO_V_LOCK   0x00000400  /* No vertical sync lock */
#define V4L2_IN_ST_NO_STD_LOCK 0x00000800  /* No standard format lock */

/* field 'status' - digital */
#define V4L2_IN_ST_NO_SYNC     0x00010000  /* No synchronization lock */
#define V4L2_IN_ST_NO_EQU      0x00020000  /* No equalizer lock */
#define V4L2_IN_ST_NO_CARRIER  0x00040000  /* Carrier recovery failed */

/* field 'status' - VCR and set-top box */
#define V4L2_IN_ST_MACROVISION 0x01000000  /* Macrovision detected */
#define V4L2_IN_ST_NO_ACCESS   0x02000000  /* Conditional access denied */
#define V4L2_IN_ST_VTR         0x04000000  /* VTR time constant */

/* capabilities flags */
#define V4L2_IN_CAP_DV_TIMINGS		0x00000002 /* Supports S_DV_TIMINGS */
#define V4L2_IN_CAP_CUSTOM_TIMINGS	V4L2_IN_CAP_DV_TIMINGS /* For compatibility */
#define V4L2_IN_CAP_STD			0x00000004 /* Supports S_STD */
#define V4L2_IN_CAP_NATIVE_SIZE		0x00000008 /* Supports setting native size */

/*
 *	V I D E O   O U T P U T S
 */
struct v4l2_output {
	__u32	     index;		/*  Which output */
	__u8	     name[32];		/*  Label */
	__u32	     type;		/*  Type of output */
	__u32	     audioset;		/*  Associated audios (bitfield) */
	__u32	     modulator;         /*  Associated modulator */
	v4l2_std_id  std;
	__u32	     capabilities;
	__u32	     reserved[3];
};
/*  Values for the 'type' field */
#define V4L2_OUTPUT_TYPE_MODULATOR		1
#define V4L2_OUTPUT_TYPE_ANALOG			2
#define V4L2_OUTPUT_TYPE_ANALOGVGAOVERLAY	3

/* capabilities flags */
#define V4L2_OUT_CAP_DV_TIMINGS		0x00000002 /* Supports S_DV_TIMINGS */
#define V4L2_OUT_CAP_CUSTOM_TIMINGS	V4L2_OUT_CAP_DV_TIMINGS /* For compatibility */
#define V4L2_OUT_CAP_STD		0x00000004 /* Supports S_STD */
#define V4L2_OUT_CAP_NATIVE_SIZE	0x00000008 /* Supports setting native size */

/*
 *	C O N T R O L S
 */
struct v4l2_control {
	__u32		     id;
	__s32		     value;
};

struct v4l2_ext_control {
	__u32 id;
	__u32 size;
	__u32 reserved2[1];
	union {
		__s32 value;
		__s64 value64;
		char *string;
		__u8 *p_u8;
		__u16 *p_u16;
		__u32 *p_u32;
		struct v4l2_area *p_area;
		struct v4l2_ctrl_h264_sps *p_h264_sps;
		struct v4l2_ctrl_h264_pps *p_h264_pps;
		struct v4l2_ctrl_h264_scaling_matrix *p_h264_scaling_matrix;
		struct v4l2_ctrl_h264_pred_weights *p_h264_pred_weights;
		struct v4l2_ctrl_h264_slice_params *p_h264_slice_params;
		struct v4l2_ctrl_h264_decode_params *p_h264_decode_params;
		struct v4l2_ctrl_fwht_params *p_fwht_params;
		struct v4l2_ctrl_vp8_frame *p_vp8_frame;
		struct v4l2_ctrl_mpeg2_sequence *p_mpeg2_sequence;
		struct v4l2_ctrl_mpeg2_picture *p_mpeg2_picture;
		struct v4l2_ctrl_mpeg2_quantisation *p_mpeg2_quantisation;
		struct v4l2_ctrl_vp9_compressed_hdr *p_vp9_compressed_hdr_probs;
		struct v4l2_ctrl_vp9_frame *p_vp9_frame;
		struct v4l2_ctrl_hevc_sps *p_hevc_sps;
		struct v4l2_ctrl_hevc_pps *p_hevc_pps;
		struct v4l2_ctrl_hevc_slice_params *p_hevc_slice_params;
		struct v4l2_ctrl_hevc_scaling_matrix *p_hevc_scaling_matrix;
		struct v4l2_ctrl_hevc_decode_params *p_hevc_decode_params;
		void *ptr;
	};
} __attribute__ ((packed));

struct v4l2_ext_controls {
	union {
		__u32 ctrl_class;
		__u32 which;
	};
	__u32 count;
	__u32 error_idx;
	__s32 request_fd;
	__u32 reserved[1];
	struct v4l2_ext_control *controls;
};

#define V4L2_CTRL_ID_MASK	  (0x0fffffff)
#define V4L2_CTRL_ID2CLASS(id)    ((id) & 0x0fff0000UL)
#define V4L2_CTRL_ID2WHICH(id)    ((id) & 0x0fff0000UL)
#define V4L2_CTRL_DRIVER_PRIV(id) (((id) & 0xffff) >= 0x1000)
#define V4L2_CTRL_MAX_DIMS	  (4)
#define V4L2_CTRL_WHICH_CUR_VAL   0
#define V4L2_CTRL_WHICH_DEF_VAL   0x0f000000
#define V4L2_CTRL_WHICH_REQUEST_VAL 0x0f010000

enum v4l2_ctrl_type {
	V4L2_CTRL_TYPE_INTEGER	     = 1,
	V4L2_CTRL_TYPE_BOOLEAN	     = 2,
	V4L2_CTRL_TYPE_MENU	     = 3,
	V4L2_CTRL_TYPE_BUTTON	     = 4,
	V4L2_CTRL_TYPE_INTEGER64     = 5,
	V4L2_CTRL_TYPE_CTRL_CLASS    = 6,
	V4L2_CTRL_TYPE_STRING        = 7,
	V4L2_CTRL_TYPE_BITMASK       = 8,
	V4L2_CTRL_TYPE_INTEGER_MENU  = 9,

	/* Compound types are >= 0x0100 */
	V4L2_CTRL_COMPOUND_TYPES     = 0x0100,
	V4L2_CTRL_TYPE_U8	     = 0x0100,
	V4L2_CTRL_TYPE_U16	     = 0x0101,
	V4L2_CTRL_TYPE_U32	     = 0x0102,
	V4L2_CTRL_TYPE_AREA          = 0x0106,

	V4L2_CTRL_TYPE_HDR10_CLL_INFO		= 0x0110,
	V4L2_CTRL_TYPE_HDR10_MASTERING_DISPLAY	= 0x0111,

	V4L2_CTRL_TYPE_H264_SPS             = 0x0200,
	V4L2_CTRL_TYPE_H264_PPS		    = 0x0201,
	V4L2_CTRL_TYPE_H264_SCALING_MATRIX  = 0x0202,
	V4L2_CTRL_TYPE_H264_SLICE_PARAMS    = 0x0203,
	V4L2_CTRL_TYPE_H264_DECODE_PARAMS   = 0x0204,
	V4L2_CTRL_TYPE_H264_PRED_WEIGHTS    = 0x0205,

	V4L2_CTRL_TYPE_FWHT_PARAMS	    = 0x0220,

	V4L2_CTRL_TYPE_VP8_FRAME            = 0x0240,

	V4L2_CTRL_TYPE_MPEG2_QUANTISATION   = 0x0250,
	V4L2_CTRL_TYPE_MPEG2_SEQUENCE       = 0x0251,
	V4L2_CTRL_TYPE_MPEG2_PICTURE        = 0x0252,

	V4L2_CTRL_TYPE_VP9_COMPRESSED_HDR	= 0x0260,
	V4L2_CTRL_TYPE_VP9_FRAME		= 0x0261,

	V4L2_CTRL_TYPE_HEVC_SPS			= 0x0270,
	V4L2_CTRL_TYPE_HEVC_PPS			= 0x0271,
	V4L2_CTRL_TYPE_HEVC_SLICE_PARAMS	= 0x0272,
	V4L2_CTRL_TYPE_HEVC_SCALING_MATRIX	= 0x0273,
	V4L2_CTRL_TYPE_HEVC_DECODE_PARAMS	= 0x0274,
};

/*  Used in the VIDIOC_QUERYCTRL ioctl for querying controls */
struct v4l2_queryctrl {
	__u32		     id;
	__u32		     type;	/* enum v4l2_ctrl_type */
	__u8		     name[32];	/* Whatever */
	__s32		     minimum;	/* Note signedness */
	__s32		     maximum;
	__s32		     step;
	__s32		     default_value;
	__u32                flags;
	__u32		     reserved[2];
};

/*  Used in the VIDIOC_QUERY_EXT_CTRL ioctl for querying extended controls */
struct v4l2_query_ext_ctrl {
	__u32		     id;
	__u32		     type;
	char		     name[32];
	__s64		     minimum;
	__s64		     maximum;
	__u64		     step;
	__s64		     default_value;
	__u32                flags;
	__u32                elem_size;
	__u32                elems;
	__u32                nr_of_dims;
	__u32                dims[V4L2_CTRL_MAX_DIMS];
	__u32		     reserved[32];
};

/*  Used in the VIDIOC_QUERYMENU ioctl for querying menu items */
struct v4l2_querymenu {
	__u32		id;
	__u32		index;
	union {
		__u8	name[32];	/* Whatever */
		__s64	value;
	};
	__u32		reserved;
} __attribute__ ((packed));

/*  Control flags  */
#define V4L2_CTRL_FLAG_DISABLED		0x0001
#define V4L2_CTRL_FLAG_GRABBED		0x0002
#define V4L2_CTRL_FLAG_READ_ONLY	0x0004
#define V4L2_CTRL_FLAG_UPDATE		0x0008
#define V4L2_CTRL_FLAG_INACTIVE		0x0010
#define V4L2_CTRL_FLAG_SLIDER		0x0020
#define V4L2_CTRL_FLAG_WRITE_ONLY	0x0040
#define V4L2_CTRL_FLAG_VOLATILE		0x0080
#define V4L2_CTRL_FLAG_HAS_PAYLOAD	0x0100
#define V4L2_CTRL_FLAG_EXECUTE_ON_WRITE	0x0200
#define V4L2_CTRL_FLAG_MODIFY_LAYOUT	0x0400
#define V4L2_CTRL_FLAG_DYNAMIC_ARRAY	0x0800

/*  Query flags, to be ORed with the control ID */
#define V4L2_CTRL_FLAG_NEXT_CTRL	0x80000000
#define V4L2_CTRL_FLAG_NEXT_COMPOUND	0x40000000

/*  User-class control IDs defined by V4L2 */
#define V4L2_CID_MAX_CTRLS		1024
/*  IDs reserved for driver specific controls */
#define V4L2_CID_PRIVATE_BASE		0x08000000


/*
 *	T U N I N G
 */
struct v4l2_tuner {
	__u32                   index;
	__u8			name[32];
	__u32			type;	/* enum v4l2_tuner_type */
	__u32			capability;
	__u32			rangelow;
	__u32			rangehigh;
	__u32			rxsubchans;
	__u32			audmode;
	__s32			signal;
	__s32			afc;
	__u32			reserved[4];
};

struct v4l2_modulator {
	__u32			index;
	__u8			name[32];
	__u32			capability;
	__u32			rangelow;
	__u32			rangehigh;
	__u32			txsubchans;
	__u32			type;	/* enum v4l2_tuner_type */
	__u32			reserved[3];
};

/*  Flags for the 'capability' field */
#define V4L2_TUNER_CAP_LOW		0x0001
#define V4L2_TUNER_CAP_NORM		0x0002
#define V4L2_TUNER_CAP_HWSEEK_BOUNDED	0x0004
#define V4L2_TUNER_CAP_HWSEEK_WRAP	0x0008
#define V4L2_TUNER_CAP_STEREO		0x0010
#define V4L2_TUNER_CAP_LANG2		0x0020
#define V4L2_TUNER_CAP_SAP		0x0020
#define V4L2_TUNER_CAP_LANG1		0x0040
#define V4L2_TUNER_CAP_RDS		0x0080
#define V4L2_TUNER_CAP_RDS_BLOCK_IO	0x0100
#define V4L2_TUNER_CAP_RDS_CONTROLS	0x0200
#define V4L2_TUNER_CAP_FREQ_BANDS	0x0400
#define V4L2_TUNER_CAP_HWSEEK_PROG_LIM	0x0800
#define V4L2_TUNER_CAP_1HZ		0x1000

/*  Flags for the 'rxsubchans' field */
#define V4L2_TUNER_SUB_MONO		0x0001
#define V4L2_TUNER_SUB_STEREO		0x0002
#define V4L2_TUNER_SUB_LANG2		0x0004
#define V4L2_TUNER_SUB_SAP		0x0004
#define V4L2_TUNER_SUB_LANG1		0x0008
#define V4L2_TUNER_SUB_RDS		0x0010

/*  Values for the 'audmode' field */
#define V4L2_TUNER_MODE_MONO		0x0000
#define V4L2_TUNER_MODE_STEREO		0x0001
#define V4L2_TUNER_MODE_LANG2		0x0002
#define V4L2_TUNER_MODE_SAP		0x0002
#define V4L2_TUNER_MODE_LANG1		0x0003
#define V4L2_TUNER_MODE_LANG1_LANG2	0x0004

struct v4l2_frequency {
	__u32	tuner;
	__u32	type;	/* enum v4l2_tuner_type */
	__u32	frequency;
	__u32	reserved[8];
};

#define V4L2_BAND_MODULATION_VSB	(1 << 1)
#define V4L2_BAND_MODULATION_FM		(1 << 2)
#define V4L2_BAND_MODULATION_AM		(1 << 3)

struct v4l2_frequency_band {
	__u32	tuner;
	__u32	type;	/* enum v4l2_tuner_type */
	__u32	index;
	__u32	capability;
	__u32	rangelow;
	__u32	rangehigh;
	__u32	modulation;
	__u32	reserved[9];
};

struct v4l2_hw_freq_seek {
	__u32	tuner;
	__u32	type;	/* enum v4l2_tuner_type */
	__u32	seek_upward;
	__u32	wrap_around;
	__u32	spacing;
	__u32	rangelow;
	__u32	rangehigh;
	__u32	reserved[5];
};

/*
 *	R D S
 */

struct v4l2_rds_data {
	__u8	lsb;
	__u8	msb;
	__u8	block;
} __attribute__ ((packed));

#define V4L2_RDS_BLOCK_MSK	 0x7
#define V4L2_RDS_BLOCK_A	 0
#define V4L2_RDS_BLOCK_B	 1
#define V4L2_RDS_BLOCK_C	 2
#define V4L2_RDS_BLOCK_D	 3
#define V4L2_RDS_BLOCK_C_ALT	 4
#define V4L2_RDS_BLOCK_INVALID	 7

#define V4L2_RDS_BLOCK_CORRECTED 0x40
#define V4L2_RDS_BLOCK_ERROR	 0x80

/*
 *	A U D I O
 */
struct v4l2_audio {
	__u32	index;
	__u8	name[32];
	__u32	capability;
	__u32	mode;
	__u32	reserved[2];
};

/*  Flags for the 'capability' field */
#define V4L2_AUDCAP_STEREO		0x00001
#define V4L2_AUDCAP_AVL			0x00002

/*  Flags for the 'mode' field */
#define V4L2_AUDMODE_AVL		0x00001

struct v4l2_audioout {
	__u32	index;
	__u8	name[32];
	__u32	capability;
	__u32	mode;
	__u32	reserved[2];
};

/*
 *	M P E G   S E R V I C E S
 */
#if 1
#define V4L2_ENC_IDX_FRAME_I    (0)
#define V4L2_ENC_IDX_FRAME_P    (1)
#define V4L2_ENC_IDX_FRAME_B    (2)
#define V4L2_ENC_IDX_FRAME_MASK (0xf)

struct v4l2_enc_idx_entry {
	__u64 offset;
	__u64 pts;
	__u32 length;
	__u32 flags;
	__u32 reserved[2];
};

#define V4L2_ENC_IDX_ENTRIES (64)
struct v4l2_enc_idx {
	__u32 entries;
	__u32 entries_cap;
	__u32 reserved[4];
	struct v4l2_enc_idx_entry entry[V4L2_ENC_IDX_ENTRIES];
};


#define V4L2_ENC_CMD_START      (0)
#define V4L2_ENC_CMD_STOP       (1)
#define V4L2_ENC_CMD_PAUSE      (2)
#define V4L2_ENC_CMD_RESUME     (3)

/* Flags for V4L2_ENC_CMD_STOP */
#define V4L2_ENC_CMD_STOP_AT_GOP_END    (1 << 0)

struct v4l2_encoder_cmd {
	__u32 cmd;
	__u32 flags;
	union {
		struct {
			__u32 data[8];
		} raw;
	};
};

/* Decoder commands */
#define V4L2_DEC_CMD_START       (0)
#define V4L2_DEC_CMD_STOP        (1)
#define V4L2_DEC_CMD_PAUSE       (2)
#define V4L2_DEC_CMD_RESUME      (3)
#define V4L2_DEC_CMD_FLUSH       (4)

/* Flags for V4L2_DEC_CMD_START */
#define V4L2_DEC_CMD_START_MUTE_AUDIO	(1 << 0)

/* Flags for V4L2_DEC_CMD_PAUSE */
#define V4L2_DEC_CMD_PAUSE_TO_BLACK	(1 << 0)

/* Flags for V4L2_DEC_CMD_STOP */
#define V4L2_DEC_CMD_STOP_TO_BLACK	(1 << 0)
#define V4L2_DEC_CMD_STOP_IMMEDIATELY	(1 << 1)

/* Play format requirements (returned by the driver): */

/* The decoder has no special format requirements */
#define V4L2_DEC_START_FMT_NONE		(0)
/* The decoder requires full GOPs */
#define V4L2_DEC_START_FMT_GOP		(1)

/* The structure must be zeroed before use by the application
   This ensures it can be extended safely in the future. */
struct v4l2_decoder_cmd {
	__u32 cmd;
	__u32 flags;
	union {
		struct {
			__u64 pts;
		} stop;

		struct {
			/* 0 or 1000 specifies normal speed,
			   1 specifies forward single stepping,
			   -1 specifies backward single stepping,
			   >1: playback at speed/1000 of the normal speed,
			   <-1: reverse playback at (-speed/1000) of the normal speed. */
			__s32 speed;
			__u32 format;
		} start;

		struct {
			__u32 data[16];
		} raw;
	};
};
#endif


/*
 *	D A T A   S E R V I C E S   ( V B I )
 *
 *	Data services API by Michael Schimek
 */

/* Raw VBI */
struct v4l2_vbi_format {
	__u32	sampling_rate;		/* in 1 Hz */
	__u32	offset;
	__u32	samples_per_line;
	__u32	sample_format;		/* V4L2_PIX_FMT_* */
	__s32	start[2];
	__u32	count[2];
	__u32	flags;			/* V4L2_VBI_* */
	__u32	reserved[2];		/* must be zero */
};

/*  VBI flags  */
#define V4L2_VBI_UNSYNC		(1 << 0)
#define V4L2_VBI_INTERLACED	(1 << 1)

/* ITU-R start lines for each field */
#define V4L2_VBI_ITU_525_F1_START (1)
#define V4L2_VBI_ITU_525_F2_START (264)
#define V4L2_VBI_ITU_625_F1_START (1)
#define V4L2_VBI_ITU_625_F2_START (314)

/* Sliced VBI
 *
 *    This implements is a proposal V4L2 API to allow SLICED VBI
 * required for some hardware encoders. It should change without
 * notice in the definitive implementation.
 */

struct v4l2_sliced_vbi_format {
	__u16   service_set;
	/* service_lines[0][...] specifies lines 0-23 (1-23 used) of the first field
	   service_lines[1][...] specifies lines 0-23 (1-23 used) of the second field
				 (equals frame lines 313-336 for 625 line video
				  standards, 263-286 for 525 line standards) */
	__u16   service_lines[2][24];
	__u32   io_size;
	__u32   reserved[2];            /* must be zero */
};

/* Teletext World System Teletext
   (WST), defined on ITU-R BT.653-2 */
#define V4L2_SLICED_TELETEXT_B          (0x0001)
/* Video Program System, defined on ETS 300 231*/
#define V4L2_SLICED_VPS                 (0x0400)
/* Closed Caption, defined on EIA-608 */
#define V4L2_SLICED_CAPTION_525         (0x1000)
/* Wide Screen System, defined on ITU-R BT1119.1 */
#define V4L2_SLICED_WSS_625             (0x4000)

#define V4L2_SLICED_VBI_525             (V4L2_SLICED_CAPTION_525)
#define V4L2_SLICED_VBI_625             (V4L2_SLICED_TELETEXT_B | V4L2_SLICED_VPS | V4L2_SLICED_WSS_625)

struct v4l2_sliced_vbi_cap {
	__u16   service_set;
	/* service_lines[0][...] specifies lines 0-23 (1-23 used) of the first field
	   service_lines[1][...] specifies lines 0-23 (1-23 used) of the second field
				 (equals frame lines 313-336 for 625 line video
				  standards, 263-286 for 525 line standards) */
	__u16   service_lines[2][24];
	__u32	type;		/* enum v4l2_buf_type */
	__u32   reserved[3];    /* must be 0 */
};

struct v4l2_sliced_vbi_data {
	__u32   id;
	__u32   field;          /* 0: first field, 1: second field */
	__u32   line;           /* 1-23 */
	__u32   reserved;       /* must be 0 */
	__u8    data[48];
};

/*
 * Sliced VBI data inserted into MPEG Streams
 */

/*
 * V4L2_MPEG_STREAM_VBI_FMT_IVTV:
 *
 * Structure of payload contained in an MPEG 2 Private Stream 1 PES Packet in an
 * MPEG-2 Program Pack that contains V4L2_MPEG_STREAM_VBI_FMT_IVTV Sliced VBI
 * data
 *
 * Note, the MPEG-2 Program Pack and Private Stream 1 PES packet header
 * definitions are not included here.  See the MPEG-2 specifications for details
 * on these headers.
 */

/* Line type IDs */
#define V4L2_MPEG_VBI_IVTV_TELETEXT_B     (1)
#define V4L2_MPEG_VBI_IVTV_CAPTION_525    (4)
#define V4L2_MPEG_VBI_IVTV_WSS_625        (5)
#define V4L2_MPEG_VBI_IVTV_VPS            (7)

struct v4l2_mpeg_vbi_itv0_line {
	__u8 id;	/* One of V4L2_MPEG_VBI_IVTV_* above */
	__u8 data[42];	/* Sliced VBI data for the line */
} __attribute__ ((packed));

struct v4l2_mpeg_vbi_itv0 {
	__le32 linemask[2]; /* Bitmasks of VBI service lines present */
	struct v4l2_mpeg_vbi_itv0_line line[35];
} __attribute__ ((packed));

struct v4l2_mpeg_vbi_ITV0 {
	struct v4l2_mpeg_vbi_itv0_line line[36];
} __attribute__ ((packed));

#define V4L2_MPEG_VBI_IVTV_MAGIC0	"itv0"
#define V4L2_MPEG_VBI_IVTV_MAGIC1	"ITV0"

struct v4l2_mpeg_vbi_fmt_ivtv {
	__u8 magic[4];
	union {
		struct v4l2_mpeg_vbi_itv0 itv0;
		struct v4l2_mpeg_vbi_ITV0 ITV0;
	};
} __attribute__ ((packed));

/*
 *	A G G R E G A T E   S T R U C T U R E S
 */

/**
 * struct v4l2_plane_pix_format - additional, per-plane format definition
 * @sizeimage:		maximum size in bytes required for data, for which
 *			this plane will be used
 * @bytesperline:	distance in bytes between the leftmost pixels in two
 *			adjacent lines
 * @reserved:		drivers and applications must zero this array
 */
struct v4l2_plane_pix_format {
	__u32		sizeimage;
	__u32		bytesperline;
	__u16		reserved[6];
} __attribute__ ((packed));

/**
 * struct v4l2_pix_format_mplane - multiplanar format definition
 * @width:		image width in pixels
 * @height:		image height in pixels
 * @pixelformat:	little endian four character code (fourcc)
 * @field:		enum v4l2_field; field order (for interlaced video)
 * @colorspace:		enum v4l2_colorspace; supplemental to pixelformat
 * @plane_fmt:		per-plane information
 * @num_planes:		number of planes for this format
 * @flags:		format flags (V4L2_PIX_FMT_FLAG_*)
 * @ycbcr_enc:		enum v4l2_ycbcr_encoding, Y'CbCr encoding
 * @hsv_enc:		enum v4l2_hsv_encoding, HSV encoding
 * @quantization:	enum v4l2_quantization, colorspace quantization
 * @xfer_func:		enum v4l2_xfer_func, colorspace transfer function
 * @reserved:		drivers and applications must zero this array
 */
struct v4l2_pix_format_mplane {
	__u32				width;
	__u32				height;
	__u32				pixelformat;
	__u32				field;
	__u32				colorspace;

	struct v4l2_plane_pix_format	plane_fmt[VIDEO_MAX_PLANES];
	__u8				num_planes;
	__u8				flags;
	 union {
		__u8				ycbcr_enc;
		__u8				hsv_enc;
	};
	__u8				quantization;
	__u8				xfer_func;
	__u8				reserved[7];
} __attribute__ ((packed));

/**
 * struct v4l2_sdr_format - SDR format definition
 * @pixelformat:	little endian four character code (fourcc)
 * @buffersize:		maximum size in bytes required for data
 * @reserved:		drivers and applications must zero this array
 */
struct v4l2_sdr_format {
	__u32				pixelformat;
	__u32				buffersize;
	__u8				reserved[24];
} __attribute__ ((packed));

/**
 * struct v4l2_meta_format - metadata format definition
 * @dataformat:		little endian four character code (fourcc)
 * @buffersize:		maximum size in bytes required for data
 */
struct v4l2_meta_format {
	__u32				dataformat;
	__u32				buffersize;
} __attribute__ ((packed));

/**
 * struct v4l2_format - stream data format
 * @type:	enum v4l2_buf_type; type of the data stream
 * @pix:	definition of an image format
 * @pix_mp:	definition of a multiplanar image format
 * @win:	definition of an overlaid image
 * @vbi:	raw VBI capture or output parameters
 * @sliced:	sliced VBI capture or output parameters
 * @raw_data:	placeholder for future extensions and custom formats
 * @fmt:	union of @pix, @pix_mp, @win, @vbi, @sliced, @sdr, @meta
 *		and @raw_data
 */
struct v4l2_format {
	__u32	 type;
	union {
		struct v4l2_pix_format		pix;     /* V4L2_BUF_TYPE_VIDEO_CAPTURE */
		struct v4l2_pix_format_mplane	pix_mp;  /* V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE */
		struct v4l2_window		win;     /* V4L2_BUF_TYPE_VIDEO_OVERLAY */
		struct v4l2_vbi_format		vbi;     /* V4L2_BUF_TYPE_VBI_CAPTURE */
		struct v4l2_sliced_vbi_format	sliced;  /* V4L2_BUF_TYPE_SLICED_VBI_CAPTURE */
		struct v4l2_sdr_format		sdr;     /* V4L2_BUF_TYPE_SDR_CAPTURE */
		struct v4l2_meta_format		meta;    /* V4L2_BUF_TYPE_META_CAPTURE */
		__u8	raw_data[200];                   /* user-defined */
	} fmt;
};

/*	Stream type-dependent parameters
 */
struct v4l2_streamparm {
	__u32	 type;			/* enum v4l2_buf_type */
	union {
		struct v4l2_captureparm	capture;
		struct v4l2_outputparm	output;
		__u8	raw_data[200];  /* user-defined */
	} parm;
};

/*
 *	E V E N T S
 */

#define V4L2_EVENT_ALL				0
#define V4L2_EVENT_VSYNC			1
#define V4L2_EVENT_EOS				2
#define V4L2_EVENT_CTRL				3
#define V4L2_EVENT_FRAME_SYNC			4
#define V4L2_EVENT_SOURCE_CHANGE		5
#define V4L2_EVENT_MOTION_DET			6
#define V4L2_EVENT_PRIVATE_START		0x08000000

/* Payload for V4L2_EVENT_VSYNC */
struct v4l2_event_vsync {
	/* Can be V4L2_FIELD_ANY, _NONE, _TOP or _BOTTOM */
	__u8 field;
} __attribute__ ((packed));

/* Payload for V4L2_EVENT_CTRL */
#define V4L2_EVENT_CTRL_CH_VALUE		(1 << 0)
#define V4L2_EVENT_CTRL_CH_FLAGS		(1 << 1)
#define V4L2_EVENT_CTRL_CH_RANGE		(1 << 2)
#define V4L2_EVENT_CTRL_CH_DIMENSIONS		(1 << 3)

struct v4l2_event_ctrl {
	__u32 changes;
	__u32 type;
	union {
		__s32 value;
		__s64 value64;
	};
	__u32 flags;
	__s32 minimum;
	__s32 maximum;
	__s32 step;
	__s32 default_value;
};

struct v4l2_event_frame_sync {
	__u32 frame_sequence;
};

#define V4L2_EVENT_SRC_CH_RESOLUTION		(1 << 0)

struct v4l2_event_src_change {
	__u32 changes;
};

#define V4L2_EVENT_MD_FL_HAVE_FRAME_SEQ	(1 << 0)

/**
 * struct v4l2_event_motion_det - motion detection event
 * @flags:             if V4L2_EVENT_MD_FL_HAVE_FRAME_SEQ is set, then the
 *                     frame_sequence field is valid.
 * @frame_sequence:    the frame sequence number associated with this event.
 * @region_mask:       which regions detected motion.
 */
struct v4l2_event_motion_det {
	__u32 flags;
	__u32 frame_sequence;
	__u32 region_mask;
};

struct v4l2_event {
	__u32				type;
	union {
		struct v4l2_event_vsync		vsync;
		struct v4l2_event_ctrl		ctrl;
		struct v4l2_event_frame_sync	frame_sync;
		struct v4l2_event_src_change	src_change;
		struct v4l2_event_motion_det	motion_det;
		__u8				data[64];
	} u;
	__u32				pending;
	__u32				sequence;
	struct timespec			timestamp;
	__u32				id;
	__u32				reserved[8];
};

#define V4L2_EVENT_SUB_FL_SEND_INITIAL		(1 << 0)
#define V4L2_EVENT_SUB_FL_ALLOW_FEEDBACK	(1 << 1)

struct v4l2_event_subscription {
	__u32				type;
	__u32				id;
	__u32				flags;
	__u32				reserved[5];
};

/*
 *	A D V A N C E D   D E B U G G I N G
 *
 *	NOTE: EXPERIMENTAL API, NEVER RELY ON THIS IN APPLICATIONS!
 *	FOR DEBUGGING, TESTING AND INTERNAL USE ONLY!
 */

/* VIDIOC_DBG_G_REGISTER and VIDIOC_DBG_S_REGISTER */

#define V4L2_CHIP_MATCH_BRIDGE      0  /* Match against chip ID on the bridge (0 for the bridge) */
#define V4L2_CHIP_MATCH_SUBDEV      4  /* Match against subdev index */

/* The following four defines are no longer in use */
#define V4L2_CHIP_MATCH_HOST V4L2_CHIP_MATCH_BRIDGE
#define V4L2_CHIP_MATCH_I2C_DRIVER  1  /* Match against I2C driver name */
#define V4L2_CHIP_MATCH_I2C_ADDR    2  /* Match against I2C 7-bit address */
#define V4L2_CHIP_MATCH_AC97        3  /* Match against ancillary AC97 chip */

struct v4l2_dbg_match {
	__u32 type; /* Match type */
	union {     /* Match this chip, meaning determined by type */
		__u32 addr;
		char name[32];
	};
} __attribute__ ((packed));

struct v4l2_dbg_register {
	struct v4l2_dbg_match match;
	__u32 size;	/* register size in bytes */
	__u64 reg;
	__u64 val;
} __attribute__ ((packed));

#define V4L2_CHIP_FL_READABLE (1 << 0)
#define V4L2_CHIP_FL_WRITABLE (1 << 1)

/* VIDIOC_DBG_G_CHIP_INFO */
struct v4l2_dbg_chip_info {
	struct v4l2_dbg_match match;
	char name[32];
	__u32 flags;
	__u32 reserved[32];
} __attribute__ ((packed));

/**
 * struct v4l2_create_buffers - VIDIOC_CREATE_BUFS argument
 * @index:	on return, index of the first created buffer
 * @count:	entry: number of requested buffers,
 *		return: number of created buffers
 * @memory:	enum v4l2_memory; buffer memory type
 * @format:	frame format, for which buffers are requested
 * @capabilities: capabilities of this buffer type.
 * @flags:	additional buffer management attributes (ignored unless the
 *		queue has V4L2_BUF_CAP_SUPPORTS_MMAP_CACHE_HINTS capability
 *		and configured for MMAP streaming I/O).
 * @reserved:	future extensions
 */
struct v4l2_create_buffers {
	__u32			index;
	__u32			count;
	__u32			memory;
	struct v4l2_format	format;
	__u32			capabilities;
	__u32			flags;
	__u32			reserved[6];
};

/*
 *	I O C T L   C O D E S   F O R   V I D E O   D E V I C E S
 *
 */
#define VIDIOC_QUERYCAP		 _IOR('V',  0, struct v4l2_capability)
#define VIDIOC_ENUM_FMT         _IOWR('V',  2, struct v4l2_fmtdesc)
#define VIDIOC_G_FMT		_IOWR('V',  4, struct v4l2_format)
#define VIDIOC_S_FMT		_IOWR('V',  5, struct v4l2_format)
#define VIDIOC_REQBUFS		_IOWR('V',  8, struct v4l2_requestbuffers)
#define VIDIOC_QUERYBUF		_IOWR('V',  9, struct v4l2_buffer)
#define VIDIOC_G_FBUF		 _IOR('V', 10, struct v4l2_framebuffer)
#define VIDIOC_S_FBUF		 _IOW('V', 11, struct v4l2_framebuffer)
#define VIDIOC_OVERLAY		 _IOW('V', 14, int)
#define VIDIOC_QBUF		_IOWR('V', 15, struct v4l2_buffer)
#define VIDIOC_EXPBUF		_IOWR('V', 16, struct v4l2_exportbuffer)
#define VIDIOC_DQBUF		_IOWR('V', 17, struct v4l2_buffer)
#define VIDIOC_STREAMON		 _IOW('V', 18, int)
#define VIDIOC_STREAMOFF	 _IOW('V', 19, int)
#define VIDIOC_G_PARM		_IOWR('V', 21, struct v4l2_streamparm)
#define VIDIOC_S_PARM		_IOWR('V', 22, struct v4l2_streamparm)
#define VIDIOC_G_STD		 _IOR('V', 23, v4l2_std_id)
#define VIDIOC_S_STD		 _IOW('V', 24, v4l2_std_id)
#define VIDIOC_ENUMSTD		_IOWR('V', 25, struct v4l2_standard)
#define VIDIOC_ENUMINPUT	_IOWR('V', 26, struct v4l2_input)
#define VIDIOC_G_CTRL		_IOWR('V', 27, struct v4l2_control)
#define VIDIOC_S_CTRL		_IOWR('V', 28, struct v4l2_control)
#define VIDIOC_G_TUNER		_IOWR('V', 29, struct v4l2_tuner)
#define VIDIOC_S_TUNER		 _IOW('V', 30, struct v4l2_tuner)
#define VIDIOC_G_AUDIO		 _IOR('V', 33, struct v4l2_audio)
#define VIDIOC_S_AUDIO		 _IOW('V', 34, struct v4l2_audio)
#define VIDIOC_QUERYCTRL	_IOWR('V', 36, struct v4l2_queryctrl)
#define VIDIOC_QUERYMENU	_IOWR('V', 37, struct v4l2_querymenu)
#define VIDIOC_G_INPUT		 _IOR('V', 38, int)
#define VIDIOC_S_INPUT		_IOWR('V', 39, int)
#define VIDIOC_G_EDID		_IOWR('V', 40, struct v4l2_edid)
#define VIDIOC_S_EDID		_IOWR('V', 41, struct v4l2_edid)
#define VIDIOC_G_OUTPUT		 _IOR('V', 46, int)
#define VIDIOC_S_OUTPUT		_IOWR('V', 47, int)
#define VIDIOC_ENUMOUTPUT	_IOWR('V', 48, struct v4l2_output)
#define VIDIOC_G_AUDOUT		 _IOR('V', 49, struct v4l2_audioout)
#define VIDIOC_S_AUDOUT		 _IOW('V', 50, struct v4l2_audioout)
#define VIDIOC_G_MODULATOR	_IOWR('V', 54, struct v4l2_modulator)
#define VIDIOC_S_MODULATOR	 _IOW('V', 55, struct v4l2_modulator)
#define VIDIOC_G_FREQUENCY	_IOWR('V', 56, struct v4l2_frequency)
#define VIDIOC_S_FREQUENCY	 _IOW('V', 57, struct v4l2_frequency)
#define VIDIOC_CROPCAP		_IOWR('V', 58, struct v4l2_cropcap)
#define VIDIOC_G_CROP		_IOWR('V', 59, struct v4l2_crop)
#define VIDIOC_S_CROP		 _IOW('V', 60, struct v4l2_crop)
#define VIDIOC_G_JPEGCOMP	 _IOR('V', 61, struct v4l2_jpegcompression)
#define VIDIOC_S_JPEGCOMP	 _IOW('V', 62, struct v4l2_jpegcompression)
#define VIDIOC_QUERYSTD		 _IOR('V', 63, v4l2_std_id)
#define VIDIOC_TRY_FMT		_IOWR('V', 64, struct v4l2_format)
#define VIDIOC_ENUMAUDIO	_IOWR('V', 65, struct v4l2_audio)
#define VIDIOC_ENUMAUDOUT	_IOWR('V', 66, struct v4l2_audioout)
#define VIDIOC_G_PRIORITY	 _IOR('V', 67, __u32) /* enum v4l2_priority */
#define VIDIOC_S_PRIORITY	 _IOW('V', 68, __u32) /* enum v4l2_priority */
#define VIDIOC_G_SLICED_VBI_CAP _IOWR('V', 69, struct v4l2_sliced_vbi_cap)
#define VIDIOC_LOG_STATUS         _IO('V', 70)
#define VIDIOC_G_EXT_CTRLS	_IOWR('V', 71, struct v4l2_ext_controls)
#define VIDIOC_S_EXT_CTRLS	_IOWR('V', 72, struct v4l2_ext_controls)
#define VIDIOC_TRY_EXT_CTRLS	_IOWR('V', 73, struct v4l2_ext_controls)
#define VIDIOC_ENUM_FRAMESIZES	_IOWR('V', 74, struct v4l2_frmsizeenum)
#define VIDIOC_ENUM_FRAMEINTERVALS _IOWR('V', 75, struct v4l2_frmivalenum)
#define VIDIOC_G_ENC_INDEX       _IOR('V', 76, struct v4l2_enc_idx)
#define VIDIOC_ENCODER_CMD      _IOWR('V', 77, struct v4l2_encoder_cmd)
#define VIDIOC_TRY_ENCODER_CMD  _IOWR('V', 78, struct v4l2_encoder_cmd)

/*
 * Experimental, meant for debugging, testing and internal use.
 * Only implemented if CONFIG_VIDEO_ADV_DEBUG is defined.
 * You must be root to use these ioctls. Never use these in applications!
 */
#define	VIDIOC_DBG_S_REGISTER	 _IOW('V', 79, struct v4l2_dbg_register)
#define	VIDIOC_DBG_G_REGISTER	_IOWR('V', 80, struct v4l2_dbg_register)

#define VIDIOC_S_HW_FREQ_SEEK	 _IOW('V', 82, struct v4l2_hw_freq_seek)
#define	VIDIOC_S_DV_TIMINGS	_IOWR('V', 87, struct v4l2_dv_timings)
#define	VIDIOC_G_DV_TIMINGS	_IOWR('V', 88, struct v4l2_dv_timings)
#define	VIDIOC_DQEVENT		 _IOR('V', 89, struct v4l2_event)
#define	VIDIOC_SUBSCRIBE_EVENT	 _IOW('V', 90, struct v4l2_event_subscription)
#define	VIDIOC_UNSUBSCRIBE_EVENT _IOW('V', 91, struct v4l2_event_subscription)
#define VIDIOC_CREATE_BUFS	_IOWR('V', 92, struct v4l2_create_buffers)
#define VIDIOC_PREPARE_BUF	_IOWR('V', 93, struct v4l2_buffer)
#define VIDIOC_G_SELECTION	_IOWR('V', 94, struct v4l2_selection)
#define VIDIOC_S_SELECTION	_IOWR('V', 95, struct v4l2_selection)
#define VIDIOC_DECODER_CMD	_IOWR('V', 96, struct v4l2_decoder_cmd)
#define VIDIOC_TRY_DECODER_CMD	_IOWR('V', 97, struct v4l2_decoder_cmd)
#define VIDIOC_ENUM_DV_TIMINGS  _IOWR('V', 98, struct v4l2_enum_dv_timings)
#define VIDIOC_QUERY_DV_TIMINGS  _IOR('V', 99, struct v4l2_dv_timings)
#define VIDIOC_DV_TIMINGS_CAP   _IOWR('V', 100, struct v4l2_dv_timings_cap)
#define VIDIOC_ENUM_FREQ_BANDS	_IOWR('V', 101, struct v4l2_frequency_band)

/*
 * Experimental, meant for debugging, testing and internal use.
 * Never use this in applications!
 */
#define VIDIOC_DBG_G_CHIP_INFO  _IOWR('V', 102, struct v4l2_dbg_chip_info)

#define VIDIOC_QUERY_EXT_CTRL	_IOWR('V', 103, struct v4l2_query_ext_ctrl)

/* Reminder: when adding new ioctls please add support for them to
   drivers/media/v4l2-core/v4l2-compat-ioctl32.c as well! */

#define BASE_VIDIOC_PRIVATE	192		/* 192-255 are private */

/* Deprecated definitions kept for backwards compatibility */
#define V4L2_PIX_FMT_HM12 V4L2_PIX_FMT_NV12_16L16
#define V4L2_PIX_FMT_SUNXI_TILED_NV12 V4L2_PIX_FMT_NV12_32L32
/*
 * This capability was never implemented, anyone using this cap should drop it
 * from their code.
 */
#define V4L2_CAP_ASYNCIO 0x02000000

#endif /* __LINUX_VIDEODEV2_H */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @[]A\A]A^A_    AWHAVAUATUSHHH       tH[]A\A]A^A_    HUH   Lm H    H    DeDu(H|$    HuH|$H    L}H$I    HUHH    HDAAV% AUMHPATLL$     H  H0[]A\A]A^A_    f.     AVHAUATUSHH       t
[]A\A]A^    De HuH   H    LuDm    IHUHATEEHAVHA AH        H  XZ[]A\A]A^    f     AWHAVAUATUSHHH       tH[]A\A]A^A_    Dm(DeH   H    HuL} JD- ELmAA H$    HU4$HAWEEHAVHH    ATAU    H  H0[]A\A]A^A_    D  AWHAVAUATUSHHH       tH[]A\A]A^A_    Du0DeH   H    Dm HuJD5 ELu(AJL- LmA H$HL$    HU4$HAVEEHAWHH    ATt$(AU    H  H@[]A\A]A^A_    fAVHAUATUSHH       t
[]A\A]A^    De HuH   H    LuDm    IHUHATEEHAVHA AH        H  XZ[]A\A]A^    f     UHSHH       t[]    Hu(H   H        UDMHLEPH    E  Pu    H  H[]    f.     UHSHH       t[]    HuH   H        u DEHߋMUPHELL5 H    HPE$HPEP    H  H []    UHAWIAVIAUATISHH8LELoxDMeL-    eH%(   HE1HE    E    H   H  HUHuȿD       IH   HELMȿLUI   I   Iǁ      Iǁ       Mv LMIF(IR@ABIHIBAP    LUHLMABIH  IBu\IB     HEIZ(LD   A   LIB0EAB8j AUU    XZHEeH+%(   u+He[A\A]A^A_]    IIB IE H    D  AVHAUATUSHH       t
[]A\A]A^    Du8Lm0Hu H   Le(          UDMHLEAVH    AUAT Pu    H  H([]A\A]A^        AUHATUSHH       t[]A\A]    L   Hu8      L    Hu0LH    I    DELMHߋU(ATH    PE$DA PE PuEP    H  H0[]A\A]    fD  AUHATUSHH       t[]A\A]    L   Hu0      L    Hu(LH    I    DELMHߋU ATH    PDA uEP    H  H []A\A]    ff.      AUATIUHSHtDH    PXAM Mt;L    D	ډU[]A\A]      A      M Muź      	DU[]A\A]    fD  UHAWIAVAUIH}ATISH(eH%(   HE1HE    HE    E    'I   I]xeH    H   HUHuǉE    IH   HUHEM}H   H    H   LDLHǀ      Hǀ       HELIF    MA~H    LDLL    A   LLj SULMu    XZHEeH+%(   u!He[A\A]A^A_]    HH    UHAWAVAUIATSH(eH%(   HE1HE    E    H   HHu    HMD`AAI   MuxeL5    H   HUHuHM    IHtaLMHEIHuI   I   Iǁ      Iǁ       EgLM    A   Lj LAVULM    XZHEeH+%(   u8He[A\A]A^A_]    IHMA     H        f.     AV   AUATIUHSHH@eH%(   HD$81Ll$H$    LHHCH     HLHvHLHcH    HHtDH$MI    <$MDHCHL    HCIDH<H    L    HD$8eH+%(   u,H@[]A\A]A^    jH    Z        UHHAWIAVAUAATSH(LgxeH%(   HE1FE    HE    DpH   AA$eL%    H   4HUHuHMǉE    HH   HUHEAH{$HMMcH   H   Hǀ      Hǀ       Ds HApDqH@H@0HP(RSHHLLkHCHq     BD3$ LHj A   ATULMȋu    XZHEeH+%(   u"He[A\A]A^A_]    I$H    fAV   IAUIATUSH8eH%(   HD$01HHHIEH     AFLHPAHcH(A    A$IHtQD` IFpI}$EfHcH@H@0HP(RAUHHLI]IEIv     CD%$ H    HD$0eH+%(   u,H8[]A\A]A^    YL    I        ff.         f         ff.         ff.     ɉE    @ E    fD  E             ff.     E             ff.         f         f         ff.         f     ɉ            f     E         E         HF@AUATIUHSH   H   H  H8HtQ    DhX)D(U ID$@H   H@pHx(Ht2    D	ډU[]A\A]    /   (  A   벺      	DU[]A\A]     AU   IATLcUSHH@eH%(   HD$81Hl$H$    HHHCH     LHHHHcH(    HH   H<$Hx IE@L   A   SI   RS   ȉCI   @DLcI    CI   H  H0HIDH    IEpHp(C$HH<ID    H    HD$8eH+%(   u*H@[]A\A]    H    
    f     UHAWIAVLcAUIH}ATSH(eH%(   HE1HE    HE    E    I   MexeL%    H"  3HUHuȃǉE    HH   HUHEH}H   H   Hǀ      Hǀ       H{ IG@L   A   SI   RS   ȉCI   @DLsI    CI   H  H0HIDH    IGp{$Hp(HIDH    A   LHj ATULMȋu    XZHEeH+%(   u"He[A\A]A^A_]    I$H    D  UHAWAVIAUIATSH0HUHz(MeH%(   HE1HE    E    H      D`AA$I   M}xeL=    H   4HUHuȃ    IH   HELMIz$I   I   Iǁ      Iǁ       Eb IF(LM@ABIHIBEIBHELUHp(H    HHD    A   Lj AWULMH}    XZHEeH+%(   u1He[A\A]A^A_]    IHA$         f.     UHAWIAVIAUIATSH0MHz(DEeH%(   HE1HE    E    H1      D`AA,DeI   MexeL%    H   <HUHuȃ    IH   HELM1Iz,MI   EI   Iǁ      Iǁ       AB(IG(LM@LUABIHIB ؅HHIIBEIBIv(H    HHD    A   Lj ATULMH}    XZHEeH+%(   u3He[A\A]A^A_]    I$HE,         ff.     fUIIHAWAVAUIATSH8MeH%(   HE1HBHE    HE    Hx(H@  HUHu    LULEDxAAA,I   MuxeL5    H   A<HUHuLEALUAD    HH   HELMH{,LULEI   I   Iǁ      Iǁ       D{(IB(LM@CIHHC EHCA@hHCI@HHp(H    HHD    LDHj A   AVULM    XZHEeH+%(   u2He[A\A]A^A_]    IHA,  A       ff.      UIIHAWAVIAUEATSH8MeH%(   HE1HBHE    HE    Hx(HJ  HUHu    LML]D`AA4I   M~xeL=    H   DHUHuL]LM    IH   HEHUAIz4LMMcL]H   H   Hǂ      Hǂ       Eb0MjIA(HU@AB IHIB(ELUIBAChIBICHHp(H    HHD    A   Lj AWULMH}    XZHEeH+%(   u1He[A\A]A^A_]    IHA4         fUHAWAVIAUIATSH0HUHz(MeH%(   HE1HE    E    H      D`AA$I   M}xeL=    H   4HUHuȃ    IH   HELMIz$I   I   Iǁ      Iǁ       Eb IF(LM@ABIHIBEIBHELUHp(H    HHD    A   Lj AWULMH}    XZHEeH+%(   u1He[A\A]A^A_]    IHA$         f.     UHAWIAVIAUEATSH8HUHz(MeH%(   HE1HE    E    H*      D`AA,DeI   MfxeL%    H   <HUHuȃ    IH   HELMAIz,McI   EI   Iǁ      Iǁ       AB(MjIG(LM@LUABIHIB EIBHEHp(H    HHD    A   Lj ATULMH}    XZHEeH+%(   u3He[A\A]A^A_]    I$HE,         @ UHAWIAVIAUATSH0HUHz(eH%(   HE1HE    E    H      DhAADmI   MoxeL-    H   ,HUHuȃ    IH   HELMI|$I   EI   Iǁ      Iǁ       AD$IF(LM@AD$IHID$HEHp(H    HHD    A   Lj LAUULM    XZHEeH+%(   u3He[A\A]A^A_]    IE HE         ff.     UHAWIAVIAUIATSH0MHz(eH%(   HE1HE    E    H*      D`AA$DeI   MexeL%    H   4HUHuȃ    IH   HELM1Iz$MI   EI   Iǁ      Iǁ       AB IG(LM@LUABIHIB؅HHIIBIv(H    HHD    A   Lj ATULMH}    XZHEeH+%(   u3He[A\A]A^A_]    I$HE$              UHAWIAVIAUIATSH0HUHy(eH%(   HE1HE    E    H$      D`AA$DeI   MexeL%    H   4HUHuȃ    IH   HELMIz$I   EI   Iǁ      Iǁ       AB IG(LM@LUABIHIBHEHHIBIv(H    HHD    A   Lj ATULMH}    XZHEeH+%(   u3He[A\A]A^A_]    I$HE$         ff.     fUHAWIAVAUIATISH8HUHy(DEeH%(   HE1HE    E    H6      Ã,EI$   Mt$xeL5    H   <HUHuȃ    IH   HELM1Iz,MI   EI   Iǁ      Iǁ       AB(IG(LM@LUABIHIBHEHHIB ؅HHIIBIu(H    HHD    A   Lj AVULMH}    XZHEeH+%(   u2He[A\A]A^A_]    IHE,             AUATIUHSHtEH    DhX)D(U I|$(Ht=    D	ډU[]A\A]    (  /   A   U I|$(Huú      	DU[]A\A]    UHAWIAVILAUATIH}SH8HMIv(LEeH%(   HE1HE    HE    E    I$   Ml$xeL-    H   3HUHuȃǉE    HH   HUHEH}HMH   H   Hǀ      Hǀ       H{ IG(@CIHHCHHHCIv(I    HIDH    HM{$Hq(HIDH    A   LHj AUULMȋu    XZHEeH+%(   u"He[A\A]A^A_]    IU H    ff.     AWIϹ   AVIAUIATMUSHH@eH%(   HD$81Hl$H$    HHHCH     Iu(LH}HHHcH(    HHtfH<$Hx IF(@CIHHCIHHCIu(I    HIDH    It$(C$HH<ID    H    HD$8eH+%(   u.H@[]A\A]A^A_    EH    5    f.     AUATIUHSHtEH    DhX5D4U I|$(Ht=    D	ډU[]A\A]    4  ;   A   U I|$(Huú      	DU[]A\A]    UHAWIAVILAUATIH}SH8HMIv(LEDMeH%(   HE1HE    HE    E    I$   Ml$xeL-    H
  CHUHuǉE    HH   HUHE}ȋMH   H   Hǀ      Hǀ       Ẻ{ C0IG(@CHcHMHCIHHCHHHC(Iv(I    HIDH    HM{0Hq(HIDH    A   LHj AUULMu    XZHEeH+%(   u"He[A\A]A^A_]    IU H         AWIʹ   IAVIAUMATUDSHHHeH%(   HD$@1Ld$HD$    LHHCH     Iv(LH|$L$cHLHcH8    L$HHtt|$Hcx D$C0IG(@HkH    CIHHCIHHC(Iv(HHDH    Iu(C0HH<HD    L    HD$@eH+%(   u6HH[]A\A]A^A_    -HL$    L$    fD  UHAWAVIAUIATSH(H>eH%(   HE1HE    E    H       D`AAI   M~xeL=    H   HUHuȃ    IHttLMHEIzLUI   H    I   Iǁ      Iǁ       EbIu LMHHD    A   Lj AWULMH}    XZHEeH+%(   u1He[A\A]A^A_]    IH>A                 f         f     E    fD      f     E    fD      f         ff.         f         ff.         ff.         ff.         ff.         f         ff.         ff.         f         ff.         ff.         ff.         ff.         ff.         ff.     AWIIAVIAUA͹   ATUSDH@eH%(   HD$81Ld$LHIAH     IFH4  ?   Hx(HtL$    L$hHcH84LL    HtWۉh0DHx4HcHXIW(RP IHHHHP(A^hHXIVHHr(H    HHD    L    HD$8eH+%(   u6H@[]A\A]A^A_    9LL$    L$!    ff.      AWIIAVAι   AUIATUSDH@eH%(   HD$81Ld$LHIAH     I}(,  7   HtL$    L$hHcH0,LL    HtKۉh(DHx,HcHXIW(RPIHHHHP Iu(H    HHD    L    HD$8eH+%(   u6H@[]A\A]A^A_    ILL$    L$1    ff.      AWIAVIAUEATIUSH@L$Hl$   HeH%(   HD$81HIGH     I|$(,  7   Ht    XHcH0,HL    HHtXX(IF(1ҋ@GIHHG DEHHIHGD$HGIt$(H    HHDH,    H    HD$8eH+%(   u.H@[]A\A]A^A_    @L    0    ff.     AWIAVIAUIATI̹   USH@DD$Hl$HeH%(   HD$81HIGH     I|$(,  7   Ht    XHcH0,HL    HHt]X(IE(1ҋL$@GIHHGIHHG ؅HHIHGIt$(H    HHDH,    H    HD$8eH+%(   u.H@[]A\A]A^A_    ;L    +    fD  AWIAVIAUA͹   ATUHSH8eH%(   HD$01ILHIFH     HEH,  7   Hx(Ht    XHcH0,LL    HtMX(IW(DHx,RPIHHHHP ]hHXHUHHr(H    HHD    L    HD$0eH+%(   u.H8[]A\A]A^A_    KL    ;    ff.     fAWIAVIAUA͹   ATIUSH8eH%(   HD$01HHHIFH     I|$($  /   Ht    XHcH($LH    HtCX IW(DHx$RPIHHHHPIt$(H    HHD    H    HD$0eH+%(   u.H8[]A\A]A^A_    XL    H    f.     AWIAVIAUA͹   ATIUSH8eH%(   HD$01HHHIFH     I|$($  /   Ht    XHcH($LH    HtCX IW(DHx$RPIHHHHPIt$(H    HHD    H    HD$0eH+%(   u.H8[]A\A]A^A_    XL    H    f.     AWIAVIAUIATI̹   USH8eH%(   HD$01HHHIFH     I|$($  /   Ht    XHcH($LH    HtGX IW(Hx$RPIHHPIHHPIt$(H    HHD    H    HD$0eH+%(   u.H8[]A\A]A^A_    TL    D    fD  AWIAVIAUA͹   ATIUSH8eH%(   HD$01HHHIFH     I|$($  /   Ht    XHcH($LH    HtQX IW(1Hx$RPIHHPDEHcHIHPIt$(H    HHD    H    HD$0eH+%(   u.H8[]A\A]A^A_    JL    :    ff.     AV   IAUATIUSHH8eH%(   HD$01HHHHCH     I|$(A  '   Ht    HcH AHH    Ht=DhIV(HxRPIHHPIt$(H    HHD    H    HD$0eH+%(   u,H8[]A\A]A^    \H    L     AU   ATUHSHH8eH%(   HD$01ILHHEH  u{HtbH    HcHAHL    HtDhHxH    L    HD$0eH+%(   u:H8[]A\A]    A     H    uH    p    AU   ATIUSHH8eH%(   HD$01HHHHCH     I<$A     Ht    HcHAHH    Ht'DhI4$H    HxHHD    H    HD$0eH+%(   u*H8[]A\A]    uH    e    AWIAVEAUI͹   ATUHSHH8eH%(   HD$01ILHHCH  uiH޺    L    HHt.DpAGHuLkCU     LЉC    HD$0eH+%(   u&H8[]A\A]A^A_    uH    t    f     AT   UHSHH8eH%(   HD$01ILHHCH     H޺(   L    HHtdH   H  HPHHDH   HS(  HS HP(RSHHHCV    LЉC    HD$0eH+%(   u(H8[]A\    ^H    N    ff.     AT   UHSHH8eH%(   HD$01ILHHCH     H޺(   L    HHtaHE H`  HPHHDH  HS  HS HP(RSHHHCV    LЉC    HD$0eH+%(   u(H8[]A\    aH    Q    ff.     @ AT   UHSHH8eH%(   HD$01ILHHCH  uzH޺    L    HHtEHE(HR@CHHHCP    LЉCHH  HC    HD$0eH+%(   u$H8[]A\    uH    q     AT   UHSHH8eH%(   HD$01ILHHCH     H޺0   L    HHtlHE H`  HPHHDH  HS  HS Hc  HS(HP(RSHHHCV    LЉC    HD$0eH+%(   u(H8[]A\    VH    F    @ AU   AATUHSHH8eH%(   HD$01ILHHCH     H޺8   L    HHtoHE H`  Dk0HPHHDH  HS  HS H  S$HP(RSHHHCV    LЉC    HD$0eH+%(   u*H8[]A\A]    QH    A    f.     AVIAUI͹   ATUHSHH8eH%(   HD$01ILHHCH     H޺0   L    HHtMHE(HR@CP    LЉCHHHCHH  Ls HCLk(    HD$0eH+%(   u,H8[]A\A]A^    qH    a    D  AVAAUA͹   ATUHSHH8eH%(   HD$01ILHHCH     H޺8   L    HHtMHE(HR@CHHHCP    LЉCHH  Ds0HC Dk    HD$0eH+%(   u,H8[]A\A]A^    qH    a    D  AVIAUA͹   ATUHSHH8eH%(   HD$01ILHHCH     H޺0   L    HHtMHE(HR@CHHHCP    LЉCHH  Ls HCDk(    HD$0eH+%(   u,H8[]A\A]A^    qH    a    D  AU   IATUHSHH8eH%(   HD$01ILHHCH     H޺0   L    HHtQHE(HR@CP    LЉCHHHCHH  HCHEPLk(HC     HD$0eH+%(   u*H8[]A\A]    oH    _         AU   IATUHSHH8eH%(   HD$01ILHHCH     H޺0   L    HHt~HE H`  HPHHDAUS,H  HS  S H  S$  C(HP(HRSHHHCV    LЉC    HD$0eH+%(   u*H8[]A\A]    BH    2    ff.     AU   IATUHSHH8eH%(   HD$01ILHHCH     H޺0   L    HHt~HE H`  HPHHDAUS,H  HS  S H  S$  C(HP(HRSHHHCV    LЉC    HD$0eH+%(   u*H8[]A\A]    BH    2    ff.     AU   AATUHSHH8eH%(   HD$01ILHHCH     H޺H   L    HH   D1ҿEHRHHIHCHE(@CHHHC P    LЉCE fCHH  HC(HEPHC0HHC8HHC@    HD$0eH+%(   u*H8[]A\A]    :H    *     AVAι   AUATIUHSHH8eH%(   HD$01ILHHCH     H޺(   L    HHt[HE(HR@CHHHCP    LЉCID$ AT$(HHHCAD$0Ds$C     HD$0eH+%(   u,H8[]A\A]A^    cH    S        AWEAVAAUA͹   ATUHSHH8eH%(   HD$01ILHHCH     H޺P   L    HH   D1ҿEHRHHIHCHE(@CHHHC P    LЉCE fCHH  HC(HEPHC0HHC8HDsHHC@DkL    HD$0eH+%(   u.H8[]A\A]A^A_    .H        ff.     fAT   UHSHH8eH%(   HD$01ILHHCH     H޺H   L    HHtaHu HF(H  @CHFHCV    LЉCHE0HC HE8HC(HEHHC0HEPHC8   C@    HD$0eH+%(   u(H8[]A\    aH    Q    ff.     @ UHAWIAVIAUIATSH0HMLgxDEeL%    eH%(   HE1HE    E    H   H   HUHuȿ$       HHtHELMIvI   EI   Iǁ      Iǁ       CAGLMCHEHCA    L$   HA   Cj ATULM    XZHEeH+%(   u"He[A\A]A^A_]    I$H8    D  UHAWAVIAUIATSHLgxeH%(   HE1HE    E    H   eL%    H   HUHuȿ,       HH   HEL}ȿI   I   IǇ      IǇ       I   I  HPHHDI   HSA(  HS HP(RSHHHCV    ML,   A   H߉Cj ATU    XZHEeH+%(   u"He[A\A]A^A_]    I$H    UHAWAVIAUIATSHLgxeH%(   HE1HE    E    H   eL%    H   HUHuȿ,       HH   HEL}ȿI   I   IǇ      IǇ       IE I`  HPHHDI  HSA  HS HP(RSHHHCV    ML,   A   H߉Cj ATU    XZHEeH+%(   u"He[A\A]A^A_]    I$H     UHAWAVAUIATISHLwxeH%(   HE1HE    E    H   eL5    H   HUHuȿ4       HH   HEL}ȿI   I   IǇ      IǇ       I$I$`  HPHHDI$  HSA$  HS Ic$  HS(HP(RSHHHCV    ML4   A   H߉Cj AVU    XZHEeH+%(   u!He[A\A]A^A_]    IH    D  UHAWIAVAAUATISH LoxeH%(   HE1HE    E    H   eL-    H   HUHuȿ<       HH   HELMȿI   I   Iǁ      Iǁ       I$I$`  Ds0HPLMHHDI$  HSA$  HS I$  S$HP(RSHHHCV    L<   HA   Cj AUULM    XZHEeH+%(   u"He[A\A]A^A_]    IE H    f     UHAWAVIAUATISHLxeH%(   HE1HE    E    H   eL=    H   HUHuȿ$       HH   HELmȿI$RI   I   Iǅ      Iǅ       ID$(@CI$HHCA$P    ML$   A   H߉CI$H  HCj AWU    XZHEeH+%(   u!He[A\A]A^A_]    IH#    ff.     UHAWIAVIAUATISH(HMLoxeL-    eH%(   HE1HE    E    H   H   HUHuȿ4       HH   HELMȿI$RI   I   Iǁ      Iǁ       ID$(LM@CA$P    L4   HA   CI$HHCI$H  L{ HCHEHC(j AUULM    XZHEeH+%(   u"He[A\A]A^A_]    IE H    fUHAWIAVIAUATISH(MLoxeL-    eH%(   HE1HE    E    H   H   HUHuȿ4       HH   HELMȿI$RI   I   Iǁ      Iǁ       ID$(LM@CI$HHCA$P    L4   HA   CI$H  L{ HCEC(j AUULM    XZHEeH+%(   u"He[A\A]A^A_]    IE H    D  UHAWAAVIAUATISH(MLoxeL-    eH%(   HE1HE    E    H   H   HUHuȿ<       HH   HELMȿI$RI   I   Iǁ      Iǁ       ID$(LM@CI$HHCA$P    L<   HA   CI$H  D{0HC ECj AUULM    XZHEeH+%(   u"He[A\A]A^A_]    IE H    D  UHAWIAVIAUATISH LoxeH%(   HE1HE    E    H   eL-    H   HUHuȿ4       HH   HELMȿI$RI   I   Iǁ      Iǁ       ID$(LM@CA$P    L4   HA   CI$HHCI$H  HCID$PL{(HC j AUULM    XZHEeH+%(   u"He[A\A]A^A_]    IE H    D  UHAWAVIAUATISH LoxeH%(   HE1HE    E    H   eL-    H  HUHuȿL   M    HH   HEL}1ҿMI$RI   I   IǇ      ؅IǇ       HHIHCID$(@CI$HHC A$P    MLL   A   H߉CA$fCI$H  HC(ID$PHC0I$HC8I$HC@j AUU    XZHEeH+%(   u"He[A\A]A^A_]    IE H     UHHAWAVAUIATISH LwxeH%(   HE1HE    E    H   eL5    H  HUHuȿ4   HM    HH   HEL}ȿHMI   I   IǇ      IǇ       I$I$`  HPHHDQS,I$  HSA$  S I$  S$A$  C(HP(HRSHHHCV    L4   MA   H߉Cj AVU    Y^HEeH+%(   u!He[A\A]A^A_]    IH        UHHAWAVAUIATISH LwxeH%(   HE1HE    E    H   eL5    H  HUHuȿ4   HM    HH   HEL}ȿHMI   I   IǇ      IǇ       I$I$`  HPHHDQS,I$  HSA$  S I$  S$A$  C(HP(HRSHHHCV    L4   MA   H߉Cj AVU    Y^HEeH+%(   u!He[A\A]A^A_]    IH        UHAWAAVIAUATISH(MLoxeL-    eH%(   HE1HE    E    H   H)  HUHuȿT   DE    HH   HELM1ҿDEI$RI   DLMEI   Iǁ      HIǁ       HIHCID$(@CI$HHC A$P    LT   HA   CA$fCI$H  HC(ID$PHC0I$HC8I$D{HHC@ECLj AUULM    XZHEeH+%(   u"He[A\A]A^A_]    IE H    ff.     UHAWIAVIAUATISH(MLoxeL-    eH%(   HE1HE    E    H   H   HUHuȿ,       HH   HELMȿI$RI   I   Iǁ      Iǁ       ID$(LM@CI$HHCA$P    L,   HA   CIF AV(HHHCAF0C EC$j AUULM    XZHEeH+%(   u"He[A\A]A^A_]    IE H	    ff.     UHAWIAVIAUATISH(MLoxeL-    eH%(   HE1HE    E    H   H?  HUHuȿ4       HH   HELMȿI$RI   I   Iǁ      Iǁ       ID$(LM@CI$HHCA$P    LMЉCI$H  HC IF   fLH   tH    IF HA   LHHC(E4   Cj AUU    XZHEeH+%(   ukHe[A\A]A^A_]    LA  uI   {IVHHBIDgIE HL    LMbH>    ff.     UHAWAVIAUATISHLoxeH%(   HE1HE    E    H   eL-    H   HUHuȿL       HH   HEL}ȿI   I   IǇ      IǇ       It$ HF(H  @CHFHCV    MLL   A   H߉CID$0HC ID$8HC(ID$HHC0ID$PHC8A$   C@j AUU    XZHEeH+%(   u"He[A\A]A^A_]    IE H    ff.     fAU   IATUHSHH8eH%(   HD$01ILHHCH     H޺8   L    HHtxH   AMH  HPHHDHh  K H   HHKHcJHK(HHS0HP(RSHHHCV    LЉC    HD$0eH+%(   u*H8[]A\A]    HH    8    AU   IATUHSHH8eH%(   HD$01ILHHCH     H޺@   L    HH   HU AMH`  HPHHDH  K(H  HHK  K H  K$HcHHK0H HC8HB(@CHHHCV    LЉC    HD$0eH+%(   u*H8[]A\A]    4H    $    ff.     fUHHAWAVIAUIATSH LgxeH%(   HE1HE    E    H   eL%    H  HUHuȿ<   HM    HH   HEL}ȿHMI   I   IǇ      IǇ       II   I  HPHHDIh  K I   HHKHcJHK(HHS0HP(RSHHHCV    ML<   A   H߉Cj ATU    XZHEeH+%(   u"He[A\A]A^A_]    I$H     AWIIAVIAUMATEUH͹   SH@eH%(   HD$81H\$HHIBH     @   LH    HHtkMv H$IF(IR@AIHHAAP    H$ЉAIH  HAHu?HA     Hi(HLi0Da8    HD$8eH+%(   u?H@[]A\A]A^A_    IHA HLL$    L$0    f.     UHHAWAVIAUATISH LoxeH%(   HE1HE    E    H   eL-    H  HUHuȿD   HM    HH   HEL}ȿHMI   I   IǇ      IǇ       I$I$`  IHPHHDI$  K(I$  HHKA$  K I$  K$HcJHK0HHS8HP(RSHHHCV    MLD   A   H߉Cj AUU    XZHEeH+%(   u"He[A\A]A^A_]    IE H    ff.     fAU   ATIUHSHH8eH%(   HD$01ILHHEH     H    L    HHtsID$   D  LH   tH    ID$ HHRHEHC(@EHHHEP    LЉE    HD$0eH+%(   uuH8[]A\A]    LA  sI$   cIT$HHBIDNL    ]H    H    ff.     AVAι   AUATIUHSHH8eH%(   HD$01ILHHCH     H޺(   L    HHtwID$   D  LH   tH    ID$ HHRHC HE(@CHHHCP    DsLЉC    HD$0eH+%(   uwH8[]A\A]A^    LA  mI$   ]IT$HHBIDHL    WH    H    AU   ATIUHSHH8eH%(   HD$01ILHHCH     H޺(   L    HHtwHE(HR@CHHHCP    ЉCHH  HCID$   fLH   tH u^ID$ HLHC     HD$0eH+%(   ugH8[]A\A]    LA  uI$   tIT$HHBIDL    H    Ha    D  AVAι   AUATIUHSHH8eH%(   HD$01ILHHCH     H޺0   L    HHt{HE(HR@CHHHCP    ЉCHH  HC ID$   fLH   tH udID$ HDsLHC(    HD$0eH+%(   uiH8[]A\A]A^    LA  uI$   tIT$HHBIDL    H    H[    f.     UHAWIAVAUIATISH LwxeH%(   HE1HE    E    H   eL5    H5  HUHuȿ$       HH   HELMI   I   Iǁ      Iǁ       IE   D  LH   tH    IE HI$RLMHCID$(@CI$HHCA$P    L$   HA   Cj AVULM    XZHEeH+%(   uoHe[A\A]A^A_]    LA  MIU    =IUHHBID)IHL    LM%H    f.     UHAWIAVIAUATISH(MLoxeL-    eH%(   HE1HE    E    H   H:  HUHuȿ,       HH   HELMI   I   Iǁ      Iǁ       IF  D  LH   tH    IF HI$RLMHC ID$(@CI$HHCA$P    L,   HA   CECj AUULM    XZHEeH+%(   uoHe[A\A]A^A_]    LA  GI   8IVHHBID$IE HL    LMH    UHAWIAVIAUATISH LoxeH%(   HE1HE    E    H   eL-    H5  HUHuȿ,       HH   HELMȿI$RI   I   Iǁ      Iǁ       ID$(LM@CI$HHCA$P    LMЉCI$H  HCIG   fLH   tH    IG HA   LHHC ,   j AUU    XZHEeH+%(   ugHe[A\A]A^A_]    LA  uI   tIWHHBIDqIE HL    LMlHH    f         S   H    HH  [        AUATUSFHH9   9   IH  H    HH8  CH HHU8CM   fE        HHLH    Ht?H    IL   MtI|$    L    H    L[]A\A]    I$  1HHHH   H@H    LcEt&        HM8fE1[]LA\A]    HHL    ]e    H    Qe    H    HtHxEHL    e
        I[]LA\A]    ff.         AVAUIATUHSDPHIIEt$        A9iG
ucLH}HRE HHE%   EBD    PfU    Eu         [D]A\A]A^    Eu A   [D]A\A]A^    ff.          AWAVAUATUSHH   Lw0eH%(   H$   1Ld$H|$In(LH)H     HL   1HD$    HǄ$       HI` tRH    IH   IG`LLL    Hc؅tQI   HtH}    H    L    H$   eH+%(   uIHĐ   H[]A\A]A^A_    HLL    H    I   HHuH    f.         H        ff.     @     HG@    f        fD      SHHH    H[    D      @   ATIHH9UHFSH|7
HVuHHu1[]A\          HHt#Il$HHt
    H    H[]A\    H@     UHSH    HMHHH               Hc[]    D      UH    1H    S    H    H   H=    @   
  H    HHt=Hh 1I    HH    H        uH    []    H    H=    H            H        ff.     f    H=        H=             AUP   L-    ATIH=    UH
  S    HtUHHh@LH    H    H    HHC     uI$   H1[]A\A]    H[]A\A]    []A\A]    ff.     f    USH   Ht+   HH    H    H    Hǃ       []    f.         USHo0HH    e    tvtyu*Ex   1[]    t"u-H      HEx݅uEx   H      HExH{hHt4H    e   1    HEx   듁M   Ex           fD      ATUSH_0H   H  Ht    H  Ht    H{p    H      H      H      H       H      H   HtL   MtI|$    L    H    H[]A\    []A\    ff.         AT  UHSLf0  L    H   H    H  HtxI$  HxHf    H  H8    HCp    1Hǃ      Hǃ      Hǃ      Hǃ       Hǃ       H]0[]A\    H    f.         AW  
  AVAUATIH=    US    H  H    H  Hp  ǃ       ID$@ǃ$  H  H@hL0  H  HE L   ETCE`CEhCHE(H@x@CHE(H@P@ Ch   HiMbH$C   HiMbH$C   HiMbH$C    HiMbH$C$HE(H@xH HHS㥛 H?HHSEx  HE L   L  HE H    CxHE    C|I       I      HE LLHp     I|$PL9tRH           I      A     P	   Ml$PHE H   H  H8    I\$01I$    []A\A]A^A_    H   <   CHCHHC    A$   HCǃ  f  Ch   C|    둀=        H    LH                
H    N          H           D        ftf= tft   f  1    HhHtH    e   1                    f    AWAVAUATIUSHHp H_0  DK|EtDCxA_  C,tH{xp     ft
f;0  z     f  0  fu  f
 !<arch>
/               0           0     0     0       2684      `
   f                     #| #| #| 1 1 1 1 4 4 p          L L L          ( ( ( ( J  J  J  J  J  J  J  J  p< p< p< p< p< p<         | | | | | | 3 8 8 G G W W ` ` q q { { L L      Ӵ Ӵ Ӵ Ӵ Ӵ Ӵ Ӵ  $    $_crypt_psbox _crypt_comp_maskr _crypt_comp_maskl _crypt_key_perm_maskr _crypt_key_perm_maskl _crypt_fp_maskr _crypt_fp_maskl _crypt_ip_maskr _crypt_ip_maskl _crypt_m_sbox _crypt_des_set_key _crypt_des_set_salt _crypt_des_crypt_block _crypt_GOST34112012_Cleanup _crypt_GOST34112012_Init _crypt_GOST34112012_Update _crypt_GOST34112012_Final _crypt_gost_hash256 _crypt_gost_hmac256 _crypt_hmac_sha1_process_data _crypt_MD4_Init _crypt_MD4_Update _crypt_MD4_Final _crypt_MD5_Init _crypt_MD5_Update _crypt_MD5_Final _crypt_sha1_init_ctx _crypt_sha1_process_bytes _crypt_sha1_finish_ctx _crypt_SHA256_Init _crypt_SHA256_Update _crypt_SHA256_Final _crypt_SHA256_Buf _crypt_HMAC_SHA256_Init _crypt_HMAC_SHA256_Update _crypt_HMAC_SHA256_Final _crypt_HMAC_SHA256_Buf _crypt_PBKDF2_SHA256 _crypt_SHA512_Init _crypt_SHA512_Update _crypt_SHA512_Final _crypt_SHA512_Buf _crypt_yescrypt_encode64 _crypt_yescrypt_decode64 _crypt_yescrypt_r _crypt_yescrypt _crypt_yescrypt_reencrypt _crypt_yescrypt_encode_params_r _crypt_yescrypt_encode_params _crypt_crypto_scrypt _crypt_yescrypt_kdf _crypt_yescrypt_init_shared _crypt_yescrypt_digest_shared _crypt_yescrypt_free_shared _crypt_yescrypt_init_local _crypt_yescrypt_free_local _crypt_crypt_bcrypt_rn _crypt_gensalt_bcrypt_rn _crypt_crypt_bcrypt_a_rn _crypt_gensalt_bcrypt_a_rn _crypt_crypt_bcrypt_x_rn _crypt_gensalt_bcrypt_x_rn _crypt_crypt_bcrypt_y_rn _crypt_gensalt_bcrypt_y_rn _crypt_crypt_descrypt_rn _crypt_crypt_bigcrypt_rn _crypt_crypt_bsdicrypt_rn _crypt_gensalt_descrypt_rn _crypt_gensalt_bigcrypt_rn _crypt_gensalt_bsdicrypt_rn crypt_gensalt _crypt_gensalt_gost_yescrypt_rn _crypt_crypt_gost_yescrypt_rn _crypt_crypt_md5crypt_rn _crypt_gensalt_md5crypt_rn _crypt_crypt_nt_rn _crypt_gensalt_nt_rn _crypt_crypt_sha1crypt_rn _crypt_gensalt_sha1crypt_rn _crypt_crypt_scrypt_rn _crypt_gensalt_scrypt_rn _crypt_crypt_sha256crypt_rn _crypt_gensalt_sha256crypt_rn _crypt_crypt_sha512crypt_rn _crypt_gensalt_sha512crypt_rn crypt _crypt_crypt_sunmd5_rn _crypt_gensalt_sunmd5_rn _crypt_crypt_yescrypt_rn _crypt_gensalt_yescrypt_rn crypt_rn crypt_ra crypt_r crypt_gensalt_rn crypt_gensalt_ra crypt_checksalt crypt_preferred_method _crypt_ascii64 _crypt_gensalt_sha_rn _crypt_get_random_bytes _crypt_make_failure_token _crypt_strcpy_or_abort //                                              972       `
libcrypt_la-alg-des-tables.o/
libcrypt_la-alg-des.o/
libcrypt_la-alg-gost3411-2012-core.o/
libcrypt_la-alg-gost3411-2012-hmac.o/
libcrypt_la-alg-hmac-sha1.o/
libcrypt_la-alg-md4.o/
libcrypt_la-alg-md5.o/
libcrypt_la-alg-sha1.o/
libcrypt_la-alg-sha256.o/
libcrypt_la-alg-sha512.o/
libcrypt_la-alg-yescrypt-common.o/
libcrypt_la-alg-yescrypt-opt.o/
libcrypt_la-crypt-bcrypt.o/
libcrypt_la-crypt-des.o/
libcrypt_la-crypt-gensalt-static.o/
libcrypt_la-crypt-gost-yescrypt.o/
libcrypt_la-crypt-md5.o/
libcrypt_la-crypt-nthash.o/
libcrypt_la-crypt-pbkdf1-sha1.o/
libcrypt_la-crypt-scrypt.o/
libcrypt_la-crypt-sha256.o/
libcrypt_la-crypt-sha512.o/
libcrypt_la-crypt-static.o/
libcrypt_la-crypt-sunmd5.o/
libcrypt_la-crypt-yescrypt.o/
libcrypt_la-crypt.o/
libcrypt_la-util-base64.o/
libcrypt_la-util-gensalt-sha.o/
libcrypt_la-util-get-random-bytes.o/
libcrypt_la-util-make-failure-token.o/
libcrypt_la-util-xbzero.o/
libcrypt_la-util-xstrcpy.o/
libcrypt_la-crypt-des-obsolete.o/
/0              0           0     0     644     70776     `
ELF          >                    8         @     @ 	       @     @ @ @   @    @@ @    @   @ @@  @  @@@   @    @@ @   @    @@ @  @  @@@  @  @@@    B    @ B @  B   @B @   B  @ B@ B @B@  B   @B @  B   @B @ B @B@ B @B@        @  @     @ @     @ @  @@     @ @     @ @  @@  @@        @  @     @ @     @ @  @@     @ @     @ @  @@  @@    @   @ @@  @  @@@    @   @ @@  @  @@@  @  @@@  @  @@@  @  @@@  @  @@@   B  @ B@ B @B@   B  @ B@ B @B@ B @B@ B @B@ B @B@ B @B@     @ @  @@     @ @  @@  @@  @@  @@  @@     @ @  @@     @ @  @@  @@  @@  @@  @@         @   @      @  @@   @  @ @ @ @@  @ @@ @@        @  @     @ @@  @  @ @@ @@ @ @@@@      @  @   @ @D   D  D @ D @D  D D@ D@     @ @  @@D  D  D @D @D D D@D@       A   A    A  A@  @ @ A @ A@ @@A @A      A  A   A A@ @ @ A@ A@@@A@A    A  A A AD  D D A D AD DDA DA   A AAAD D D AD ADDDADA      @  @      @  @@  @ @@ @@@  @ @@ @@     @ @     @ @@ @ @@@@@ @ @@@@   @ @   @ @D  D D@ D@D  D D@ D@  @@  @@D D D@D@D D D@D@    A  A    A  A@ @@A @A@ @@A @A   A A   A A@@@A@A@@@A@A A A A AD DDA DAD DDA DAAAAADDDADADDDADA                                                                               0   0   0   0  0  0  0  0                                                                  0  0  0  0  0  0  0  0        $   $      $  $       $  $   $ $        $   $      $  $   0  0  $0  $0 0 0 $0 $0     $  $      $  $    $ $   $ $     $  $      $  $  0 0 $0 $0 0 0 $0 $0                                           !   !   !   !  !  !  !  !   1   1   1   1  1  1  1  1                                  !  !  !  !  !  !  !  !  1  1  1  1  1  1  1  1      $  $   $ $      $  $   $ $  !  !  $!  $! ! ! $! $!  1  1  $1  $1 1 1 $1 $1   $ $   $ $   $ $   $ $ ! ! $! $! ! ! $! $! 1 1 $1 $1 1 1 $1 $1                                                           
  
  
 
   
  
  
 
                                              
  
 
 
  
  
 
 
                                              
 
  
 
  
 
  
 
                                 
 
 
 
 
 
 
 
        !   !  !  !     !  ! ! !    !  ! ! !  
 
 

!  
! 
! 
!
      !  !  ! !   ! ! !!  ! ! !! 
 


! 
! 
!
!
      !  ! !  !   ! !! !  ! !! ! 

 

! 
!
! 
!
    ! ! ! ! !!!!!!!!



!
!
!
!
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              "   "  "  "   "   "  "  "  "  "  "  "  "  "  "  "                                                                                                                                  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "                                                                                                                                                                                                                                                                                              @   D   P   T   @  D  P  T  @   D   P   T   @  D  P  T                                          H   L   X   \   H  L  X  \  H   L   X   \   H  L  X  \                                              @   D   P   T   @  D  P  T  @   D   P   T   @  D  P  T                                          H   L   X   \   H  L  X  \  H   L   X   \   H  L  X  \                         @   @  @  @ @   @  @  @   @  @   D  D   @  @   D  D @ @ @@ @ D @D @ @ @@ @ D @D                     @  @  @ @ @  @  @ @  @  @  D  D  @  @  D  D @@ @@ @D @D @@ @@ @D @D                 H   H  H  H H   H  H  H  @ @  D D  @ @  D D H @ H@ H D HD H @ H@ H D HD             H  H  H H H  H  H H @ @ D D @ @ D D H@ H@ HD HD H@ H@ HD HD         @  @        @ @       A  A      A A       @ @       @ @     A A     A A       @  @      @ @     A  A    A A     @ @     @ @   A A   A A       @ @       @ @     A A     A A   
  
  @
 @
       @ @  
 
  A
 A
     A A     @ @     @ @   A A   A A  
  
 @
 @
     @ @ 
 
 A
 A
   A A                                                                                                                                                 @   @  B   B  @  @ B  B @   @  B   B  @  @ B  B @  @ B  B @  @ B  B @  @ B  B @  @ B  B @   @  B   B  @  @ B  B @   @  B   B  @  @ B  B @  @ B  B @  @ B  B @  @ B  B @  @ B  B                   $    $                    $    $    @   @  @  @  @  $@ @ $@   @   @  @  @  @  $@ @ $@         $   $       $  $  $$          $   $       $  $  $$    @   @ $ @ $ @  @  $@ $@ $$@   @   @ $ @ $ @  @  $@ $@ $$@                                          @  @ @ @  @  @ @ @  @  @ @ @  @  @ @ @       $  $        $  $        $  $        $  $   @  @ $@ $@  @  @ $@ $@  @  @ $@ $@  @  @ $@ $@                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             "   "   "   "                                               "   "   "   "                                               "   "   "   "                                               "   "   "   "                                               "   "   "   "                                               "   "   "   "                                               "   "   "   "                                               "   "   "   "         @  @   @@ @   @ @ @@  @@@     @ @  @@ D   D @ D@  D@@       @  @   @@ @   @ @ @@  @@@     @ @  @@ D   D @ D@  D@@       @  @   @@ @   @ @ @@  @@@     @ @  @@ D   D @ D@  D@@       @  @   @@ @   @ @ @@  @@@     @ @  @@ D   D @ D@  D@@       @  @   @@ @   @ @ @@  @@@     @ @  @@ D   D @ D@  D@@       @  @   @@ @   @ @ @@  @@@     @ @  @@ D   D @ D@  D@@       @  @   @@ @   @ @ @@  @@@     @ @  @@ D   D @ D@  D@@       @  @   @@ @   @ @ @@  @@@     @ @  @@ D   D @ D@  D@@                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 @   @   @   @   @   @   @   @   @   @   @   @   @   @   @   @    @   @   @   @   @   @   @   @   @   @   @   @   @   @   @   @  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@    @   @   @   @   @   @   @   @   @   @   @   @   @   @   @   @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @   @   @   @   @   @   @   @   @   @   @   @   @   @   @   @  @   @   @   @   @   @   @   @   @   @   @   @   @   @   @   @   @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@ @   @   @   @   @   @   @   @   @   @   @   @   @   @   @   @   @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@@   @   @   @   @   @   @   @   @   @   @   @   @   @   @   @   @  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@  @@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       @  @   @@ @   @ @ @@  @@@@   @  @@ @ @ @@@@  @@ @@@@ @@@@       @  @   @@ @   @ @ @@  @@@@   @  @@ @ @ @@@@  @@ @@@@ @@@@       @  @   @@ @   @ @ @@  @@@@   @  @@ @ @ @@@@  @@ @@@@ @@@@       @  @   @@ @   @ @ @@  @@@@   @  @@ @ @ @@@@  @@ @@@@ @@@@       @  @   @@ @   @ @ @@  @@@@   @  @@ @ @ @@@@  @@ @@@@ @@@@       @  @   @@ @   @ @ @@  @@@@   @  @@ @ @ @@@@  @@ @@@@ @@@@       @  @   @@ @   @ @ @@  @@@@   @  @@ @ @ @@@@  @@ @@@@ @@@@       @  @   @@ @   @ @ @@  @@@@   @  @@ @ @ @@@@  @@ @@@@ @@@@       @  @   @@ @   @ @ @@  @@@@   @  @@ @ @ @@@@  @@ @@@@ @@@@       @  @   @@ @   @ @ @@  @@@@   @  @@ @ @ @@@@  @@ @@@@ @@@@       @  @   @@ @   @ @ @@  @@@@   @  @@ @ @ @@@@  @@ @@@@ @@@@       @  @   @@ @   @ @ @@  @@@@   @  @@ @ @ @@@@  @@ @@@@ @@@@       @  @   @@ @   @ @ @@  @@@@   @  @@ @ @ @@@@  @@ @@@@ @@@@       @  @   @@ @   @ @ @@  @@@@   @  @@ @ @ @@@@  @@ @@@@ @@@@       @  @   @@ @   @ @ @@  @@@@   @  @@ @ @ @@@@  @@ @@@@ @@@@       @  @   @@ @   @ @ @@  @@@@   @  @@ @ @ @@@@  @@ @@@@ @@@@                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @   @           @   @    @   @  @@  @@   @   @  @@  @@          @   @           @   @    @   @  @@  @@   @   @  @@  @@    @   @ @ @ @ @   @   @ @ @ @ @  @@  @@ @@@ @@@  @@  @@ @@@ @@@   @   @ @ @ @ @   @   @ @ @ @ @  @@  @@ @@@ @@@  @@  @@ @@@ @@@         @   @           @   @    @   @  @@  @@   @   @  @@  @@          @   @           @   @    @   @  @@  @@   @   @  @@  @@    @   @ @ @ @ @   @   @ @ @ @ @  @@  @@ @@@ @@@  @@  @@ @@@ @@@   @   @ @ @ @ @   @   @ @ @ @ @  @@  @@ @@@ @@@  @@  @@ @@@ @@@    @   @@  @@  @   @   @@  @@  @ @ @ @ @@@ @@@ @ @ @ @ @@@ @@@ @   @   @@  @@  @   @   @@  @@  @ @ @ @ @@@ @@@ @ @ @ @ @@@ @@@ @  @@  @@@ @@@ @@  @@  @@@ @@@ @@ @@@ @@@@@@@@@@@ @@@ @@@@@@@@@@@  @@  @@@ @@@ @@  @@  @@@ @@@ @@ @@@ @@@@@@@@@@@ @@@ @@@@@@@@@@@   @   @@  @@  @   @   @@  @@  @ @ @ @ @@@ @@@ @ @ @ @ @@@ @@@ @   @   @@  @@  @   @   @@  @@  @ @ @ @ @@@ @@@ @ @ @ @ @@@ @@@ @  @@  @@@ @@@ @@  @@  @@@ @@@ @@ @@@ @@@@@@@@@@@ @@@ @@@@@@@@@@@  @@  @@@ @@@ @@  @@  @@@ @@@ @@ @@@ @@@@@@@@@@@ @@@ @@@@@@@@@@@                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @       @    @  @@   @  @@      @       @    @  @@   @  @@    @ @ @   @ @ @  @@ @@@  @@ @@@   @ @ @   @ @ @  @@ @@@  @@ @@@     @       @    @  @@   @  @@      @       @    @  @@   @  @@    @ @ @   @ @ @  @@ @@@  @@ @@@   @ @ @   @ @ @  @@ @@@  @@ @@@    @@  @   @@  @ @ @@@ @ @ @@@ @   @@  @   @@  @ @ @@@ @ @ @@@ @  @@@ @@  @@@ @@ @@@@@@@ @@@@@@@  @@@ @@  @@@ @@ @@@@@@@ @@@@@@@   @@  @   @@  @ @ @@@ @ @ @@@ @   @@  @   @@  @ @ @@@ @ @ @@@ @  @@@ @@  @@@ @@ @@@@@@@ @@@@@@@  @@@ @@  @@@ @@ @@@@@@@ @@@@@@@    @       @    @  @@   @  @@      @       @    @  @@   @  @@    @ @ @   @ @ @  @@ @@@  @@ @@@   @ @ @   @ @ @  @@ @@@  @@ @@@     @       @    @  @@   @  @@      @       @    @  @@   @  @@    @ @ @   @ @ @  @@ @@@  @@ @@@   @ @ @   @ @ @  @@ @@@  @@ @@@    @@  @   @@  @ @ @@@ @ @ @@@ @   @@  @   @@  @ @ @@@ @ @ @@@ @  @@@ @@  @@@ @@ @@@@@@@ @@@@@@@  @@@ @@  @@@ @@ @@@@@@@ @@@@@@@   @@  @   @@  @ @ @@@ @ @ @@@ @   @@  @   @@  @ @ @@@ @ @ @@@ @  @@@ @@  @@@ @@ @@@@@@@ @@@@@@@  @@@ @@  @@@ @@ @@@@@@@ @@@@@@@                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
	 
 	
 



	 	OCAMHDNGFOKBCHDNILG@BAMJLF@IEKJE@MNHGJKAJCDOMDABEKHFLGFLI@CEBNOIsq}xt~wv{rsxt~y|wprq}z|vpyu{zup}~xwz{qzst}tqru{xv|wv|ypsur~yOCAMHDNGFOKBCHDNILG@BAMJLF@IEKJE@MNHGJKAJCDOMDABEKHFLGFLI@CEBNOI/#!-($.'&/+"#($.),' "!-*,& )%+*% -.('*+!*#$/-$!"%+(&,'&,) #%"./)/#!-($.'&/+"#($.),' "!-*,& )%+*% -.('*+!*#$/-$!"%+(&,'&,) #%"./)ُ?31=84>76?;2384>9<7021=:<6095;:50=>87:;1:34?=4125;86<76<90352>?9ocamhdngfokbchdnilg`bamjlf`iekje`mnhgjkajcdomdabekhflgfli`cebnoiocamhdngfokbchdnilg`bamjlf`iekje`mnhgjkajcdomdabekhflgfli`cebnoiɿ_SQ]XT^WV_[RSXT^Y\WPRQ]Z\VPYU[ZUP]^XWZ[QZST_]TQRU[XV\WV\YPSUR^_Y_SQ]XT^WV_[RSXT^Y\WPRQ]Z\VPYU[ZUP]^XWZ[QZST_]TQRU[XV\WV\YPSUR^_Y
	 
 	
 



	 	?31=84>76?;2384>9<7021=:<6095;:50=>87:;1:34?=4125;86<76<90352>?9sq}xt~wv{rsxt~y|wprq}z|vpyu{zup}~xwz{qzst}tqru{xv|wv|ypsur~yOCAMHDNGFOKBCHDNILG@BAMJLF@IEKJE@MNHGJKAJCDOMDABEKHFLGFLI@CEBNOI鏃/#!-($.'&/+"#($.),' "!-*,& )%+*% -.('*+!*#$/-$!"%+(&,'&,) #%"./)OCAMHDNGFOKBCHDNILG@BAMJLF@IEKJE@MNHGJKAJCDOMDABEKHFLGFLI@CEBNOIocamhdngfokbchdnilg`bamjlf`iekje`mnhgjkajcdomdabekhflgfli`cebnoi/#!-($.'&/+"#($.),' "!-*,& )%+*% -.('*+!*#$/-$!"%+(&,'&,) #%"./)sq}xt~wv{rsxt~y|wprq}z|vpyu{zup}~xwz{qzst}tqru{xv|wv|ypsur~y_SQ]XT^WV_[RSXT^Y\WPRQ]Z\VPYU[ZUP]^XWZ[QZST_]TQRU[XV\WV\YPSUR^_Yɿ?31=84>76?;2384>9<7021=:<6095;:50=>87:;1:34?=4125;86<76<90352>?9sq}xt~wv{rsxt~y|wprq}z|vpyu{zup}~xwz{qzst}tqru{xv|wv|ypsur~y?31=84>76?;2384>9<7021=:<6095;:50=>87:;1:34?=4125;86<76<90352>?9
	 
 	
 



	 	_SQ]XT^WV_[RSXT^Y\WPRQ]Z\VPYU[ZUP]^XWZ[QZST_]TQRU[XV\WV\YPSUR^_Yocamhdngfokbchdnilg`bamjlf`iekje`mnhgjkajcdomdabekhflgfli`cebnoi
	 
 	
 



	 	٧

 	 

	
	  


	w}}x~{supvvypzsqtrwxru|{q|zt~yzsvyppv|z{qw}}xyqtsu~{u|rwxrt~

 	 

	
	  


	gmmhnkce`ffoi`jcadbghbelkaljdnoijcfoi``fljkagmmhoiadcenkelbghbdn7==8>;35066?90:31427825<;1<:4>?9:36?9006<:;17==8?91435>;5<27824>7==8>;35066?90:31427825<;1<:4>?9:36?9006<:;17==8?91435>;5<27824>GMMHNKCE@FFOI@JCADBGHBELKALJDNOIJCFOI@@FLJKAGMMHOIADCENKELBGHBDNgmmhnkce`ffoi`jcadbghbelkaljdnoijcfoi``fljkagmmhoiadcenkelbghbdnW]]X^[SUPVV_YPZSQTRWXRU\[Q\ZT^_YZSV_YPPV\Z[QW]]X_YQTSU^[U\RWXRT^'--(.+#% &&/) *#!$"'("%,+!,*$./)*#&/)  &,*+!'--(/)!$#%.+%,"'("$.އW]]X^[SUPVV_YPZSQTRWXRU\[Q\ZT^_YZSV_YPPV\Z[QW]]X_YQTSU^[U\RWXRT^w}}x~{supvvypzsqtrwxru|{q|zt~yzsvyppv|z{qw}}xyqtsu~{u|rwxrt~GMMHNKCE@FFOI@JCADBGHBELKALJDNOIJCFOI@@FLJKAGMMHOIADCENKELBGHBDN'--(.+#% &&/) *#!$"'("%,+!,*$./)*#&/)  &,*+!'--(/)!$#%.+%,"'("$.gmmhnkce`ffoi`jcadbghbelkaljdnoijcfoi``fljkagmmhoiadcenkelbghbdnGMMHNKCE@FFOI@JCADBGHBELKALJDNOIJCFOI@@FLJKAGMMHOIADCENKELBGHBDNޗ

 	 

	
	  


	gmmhnkce`ffoi`jcadbghbelkaljdnoijcfoi``fljkagmmhoiadcenkelbghbdn7==8>;35066?90:31427825<;1<:4>?9:36?9006<:;17==8?91435>;5<27824>

 	 

	
	  


	w}}x~{supvvypzsqtrwxru|{q|zt~yzsvyppv|z{qw}}xyqtsu~{u|rwxrt~GMMHNKCE@FFOI@JCADBGHBELKALJDNOIJCFOI@@FLJKAGMMHOIADCENKELBGHBDN'--(.+#% &&/) *#!$"'("%,+!,*$./)*#&/)  &,*+!'--(/)!$#%.+%,"'("$.7==8>;35066?90:31427825<;1<:4>?9:36?9006<:;17==8?91435>;5<27824>W]]X^[SUPVV_YPZSQTRWXRU\[Q\ZT^_YZSV_YPPV\Z[QW]]X_YQTSU^[U\RWXRT^W]]X^[SUPVV_YPZSQTRWXRU\[Q\ZT^_YZSV_YPPV\Z[QW]]X_YQTSU^[U\RWXRT^'--(.+#% &&/) *#!$"'("%,+!,*$./)*#&/)  &,*+!'--(/)!$#%.+%,"'("$.w}}x~{supvvypzsqtrwxru|{q|zt~yzsvyppv|z{qw}}xyqtsu~{u|rwxrt~,*!/*$/")'",&)(% &-!#-$.. '+%#+()$.#/"%,")(%,/#*'+ .$!*'!&- +(&-ͼLJAOJDOBIGBLFIHE@FMACMDNN@GKECKHIDNCOBELBIHELOCJGK@NDAJGAFM@KHFM,*!/*$/")'",&)(% &-!#-$.. '+%#+()$.#/"%,")(%,/#*'+ .$!*'!&- +(&-|zqztrywr|vyxupv}qs}t~~pw{us{xyt~sru|ryxu|szw{p~tqzwqv}p{xv}LJAOJDOBIGBLFIHE@FMACMDNN@GKECKHIDNCOBELBIHELOCJGK@NDAJGAFM@KHFM|zqztrywr|vyxupv}qs}t~~pw{us{xyt~sru|ryxu|szw{p~tqzwqv}p{xv}ljaojdobigblfihe`fmacmdnn`gkeckhidncobelbihelocjgk`ndajgafm`khfm\ZQ_ZT_RYWR\VYXUPV]QS]T^^PW[US[XYT^S_RU\RYXU\_SZW[P^TQZWQV]P[XV]\ZQ_ZT_RYWR\VYXUPV]QS]T^^PW[US[XYT^S_RU\RYXU\_SZW[P^TQZWQV]P[XV]

		 

 		
 

 
<:1?:4?2972<698506=13=4>>07;53;894>3?25<2985<?3:7;0>41:716=0;86=<:1?:4?2972<698506=13=4>>07;53;894>3?25<2985<?3:7;0>41:716=0;86=

		 

 		
 

 
팊ljaojdobigblfihe`fmacmdnn`gkeckhidncobelbihelocjgk`ndajgafm`khfmLJAOJDOBIGBLFIHE@FMACMDNN@GKECKHIDNCOBELBIHELOCJGK@NDAJGAFM@KHFM,*!/*$/")'",&)(% &-!#-$.. '+%#+()$.#/"%,")(%,/#*'+ .$!*'!&- +(&-ͼ|zqztrywr|vyxupv}qs}t~~pw{us{xyt~sru|ryxu|szw{p~tqzwqv}p{xv}|zqztrywr|vyxupv}qs}t~~pw{us{xyt~sru|ryxu|szw{p~tqzwqv}p{xv},*!/*$/")'",&)(% &-!#-$.. '+%#+()$.#/"%,")(%,/#*'+ .$!*'!&- +(&-ljaojdobigblfihe`fmacmdnn`gkeckhidncobelbihelocjgk`ndajgafm`khfm

		 

 		
 

 
\ZQ_ZT_RYWR\VYXUPV]QS]T^^PW[US[XYT^S_RU\RYXU\_SZW[P^TQZWQV]P[XV]ljaojdobigblfihe`fmacmdnn`gkeckhidncobelbihelocjgk`ndajgafm`khfm<:1?:4?2972<698506=13=4>>07;53;894>3?25<2985<?3:7;0>41:716=0;86=LJAOJDOBIGBLFIHE@FMACMDNN@GKECKHIDNCOBELBIHELOCJGK@NDAJGAFM@KHFM

		 

 		
 

 
\ZQ_ZT_RYWR\VYXUPV]QS]T^^PW[US[XYT^S_RU\RYXU\_SZW[P^TQZWQV]P[XV]<:1?:4?2972<698506=13=4>>07;53;894>3?25<2985<?3:7;0>41:716=0;86=MABOHMDHFJOCKGADJLIECFNKE@@NLIGBGBKADNAGIDLJNHBM@OFLJIM@OCCEEFHK۽



	  		

 
	
 -!"/(-$(&*/#+'!$*,)%#&.+%  .,)'"'"+!$.!')$,*.("- /&,*)- /##%%&(+}qrx}txvzs{wqtz|yusv~{upp~|ywrwr{qt~qwyt|z~xr}pv|zy}pssuuvx{MABOHMDHFJOCKGADJLIECFNKE@@NLIGBGBKADNAGIDLJNHBM@OFLJIM@OCCEEFHK



	  		

 
	
 ۭ=12?8=486:?3;714:<9536>;500><97272;14>1794<:>82=0?6<:9=0?335568;=12?8=486:?3;714:<9536>;500><97272;14>1794<:>82=0?6<:9=0?335568;]QR_X]TXVZ_S[WQTZ\YUSV^[UPP^\YWRWR[QT^QWYT\Z^XR]P_V\ZY]P_SSUUVX[}qrx}txvzs{wqtz|yusv~{upp~|ywrwr{qt~qwyt|z~xr}pv|zy}pssuuvx{]QR_X]TXVZ_S[WQTZ\YUSV^[UPP^\YWRWR[QT^QWYT\Z^XR]P_V\ZY]P_SSUUVX[-!"/(-$(&*/#+'!$*,)%#&.+%  .,)'"'"+!$.!')$,*.("- /&,*)- /##%%&(+mabohmdhfjockgadjliecfnke``nligbgbkadnagidljnhbm`ofljim`occeefhkmabohmdhfjockgadjliecfnke``nligbgbkadnagidljnhbm`ofljim`occeefhkmabohmdhfjockgadjliecfnke``nligbgbkadnagidljnhbm`ofljim`occeefhkMABOHMDHFJOCKGADJLIECFNKE@@NLIGBGBKADNAGIDLJNHBM@OFLJIM@OCCEEFHKۍ=12?8=486:?3;714:<9536>;500><97272;14>1794<:>82=0?6<:9=0?335568;MABOHMDHFJOCKGADJLIECFNKE@@NLIGBGBKADNAGIDLJNHBM@OFLJIM@OCCEEFHK}qrx}txvzs{wqtz|yusv~{upp~|ywrwr{qt~qwyt|z~xr}pv|zy}pssuuvx{}qrx}txvzs{wqtz|yusv~{upp~|ywrwr{qt~qwyt|z~xr}pv|zy}pssuuvx{]QR_X]TXVZ_S[WQTZ\YUSV^[UPP^\YWRWR[QT^QWYT\Z^XR]P_V\ZY]P_SSUUVX[mabohmdhfjockgadjliecfnke``nligbgbkadnagidljnhbm`ofljim`occeefhk



	  		

 
	
 



	  		

 
	
 ]QR_X]TXVZ_S[WQTZ\YUSV^[UPP^\YWRWR[QT^QWYT\Z^XR]P_V\ZY]P_SSUUVX[-!"/(-$(&*/#+'!$*,)%#&.+%  .,)'"'"+!$.!')$,*.("- /&,*)- /##%%&(+=12?8=486:?3;714:<9536>;500><97272;14>1794<:>82=0?6<:9=0?335568;-!"/(-$(&*/#+'!$*,)%#&.+%  .,)'"'"+!$.!')$,*.("- /&,*)- /##%%&(+                                                                                    2      0             H      @             ^      P              n      p              ~                                                     @       _crypt_psbox _crypt_comp_maskr _crypt_comp_maskl _crypt_key_perm_maskr _crypt_key_perm_maskl _crypt_fp_maskr _crypt_fp_maskl _crypt_ip_maskr _crypt_ip_maskl _crypt_m_sbox  .symtab .strtab .shstrtab .text .data .bss .rodata .note.GNU-stack                                                                                      @                                      !                     @                                      '                     @                                      ,                     @                                     4                      @                                                          @                               	                      H                                                              D                              /30             0           0     0     644     3616      `
ELF          >                               @     @   AWH
    AVAUATUSHFAAAAǉAA	AAA	AAAF4F   F   F   D   D 
  D   D   H
    Dt$F,IF   F   E1F   E1D   D 
  H=    D   H5    D   @ H    \$EB A   D)DD	ADDAAA	ىAAAAAAH  AAA   BB         B 
  B   C   BB         B 
  B   CD@II[]A\A]A^A_     A   1      fD  AA	хAEAuꉇ   ff.     AWɸ   AVEAUATAUSD   Ht$EQ  Hw<HO|HDZL    DEAEAAAAEEAC   C   C   A   A   C   C   L    AC   C   C   L%    A   A   H-    C   C   AfAE1D   fAAA	A  |    AD	AA  AA  D	AA
A  D	AAA?D	AAA   E	AAE	D,    A  E	D, A>E	AB3E1F3E!D1E1AA  ID   Fl- CEA  C   F 0  AF-    C   C   AD1EƃADADDAAH    AAH   ۉDEE4B      B   B4B   B      H    B      B   BB   B      AAAAH@AEAL	EEHL	@HL	HH	HH	H|$HH	HH	H[]A\A]A^A_HHO@            zR x  @             BIB B(A0A80A(B BBB    `       5       D   t          BIE B(D0A8\
0A(B BBBA                                                                                                                                   5                      K                      ]                      o           5            P                                                                                                                                                 key_shifts _crypt_des_set_key _crypt_key_perm_maskl _crypt_key_perm_maskr _crypt_comp_maskl _crypt_comp_maskr _crypt_des_set_salt _crypt_des_crypt_block _crypt_ip_maskl _crypt_ip_maskr _crypt_psbox _crypt_m_sbox _crypt_fp_maskl _crypt_fp_maskr                                                                                 
            0         
   G                                                          d                   x             P       .symtab .strtab .shstrtab .rela.text .data .bss .rodata .note.GNU-stack .rela.eh_frame                                                                                       @                                          @               x	            	                    &                                                          ,                                                          1                                                          9                      0                                     N                     0                                    I      @               
      H       	                                                      
                    	                                                                                
      X                              /53             0           0     0     644     23072     `
ELF          >                     W          @     @   AWH1AVAUATUSHHH  oC0L+H|$hHL$   LcHkL^ LV(LN0LdH%(   H$   1fH~H3P8H|$IH$   oL3(L3`H3hHT$PHoKoS L3X H[L3P(H3XL3H0H    f.     LMHHIEHJ3   IIEJ3   IIEJ3   MIEJ3    MIEJ3 (  MIEJ3 0  MIEJ3 8  HVH9aH|$H$   L$   H$   Lgoo HL$(LWH$   LL$fo$   L_(fHt$fo$   oW0)|$pH\$xL fo$   )$   o'fH\$I1LoI1H$   )$   L3fofoLI1fo$   H\$ I1H$   f)$   H\$0I1HfH~HT$8H$   H3_0LH1HT$@HT$PI1    HMHHIE@H4J3   MIEJ3   MIEJ3   MIEJ3    MIEJ3 (  IIEJ3 0  MIEJ3 8  HwH9`HT$@H\$pH=    H\$`IHT$8fHt$`Lw81H3W0Ll$Ht$XLd$IM1Hl$H\$ L\$(LT$0L3/L3gH3oH3_L3_ L3W(LMHHIEHJ3   IIEJ3   IIEJ3   MIEJ3    MIEJ3 (  MIEJ3 0  MIEJ3 8  HVI9aH\$pL$   H|$H1L$   L$   H\$I1H\$xH$   L$   H\$I1H$   H$   H$   HT$8H\$I1H$   L$   H|$PL|$@H\$ L$   H1L$   H$   Ht$0I1I1LH\$(M1H3$    LMHHIEHJ3   MIEJ3   IIEJ3   IIEJ3    MIEJ3 (  MIEJ3 0  MIEJ3 8  HVH9aH|$HH    HT$8L|$@H@H9H|$H\$IH JHIR(ሪHL$0LȊ]H1L|$XI!0 HzII1g7HI1HH1LI1HH\$L1IH\$ L1IH\$(L1IHw߼2<H1H1fD  HIIHIEHJ3   MIEJ3   MIEJ3   MIEJ3    IIEJ3 (  IIEJ3 0  MIEJ3 8  IWM9afo$   HD$hf$   fo$   f$   ffo$   f$   ffo\$pPf$   f@0fH H$   dH+%(   uH  []A\A]A^A_    D  HP  %    ff.      H    HH1HǇ@      HHH)P     HH  HHDfHnfl            ff.     @ AWIAVIAUATUHSHhdH%(   HD$XH@  H1  H?  I   Ll$HD$I   L%    H$HEHI\@AoAoOLAoW Ao_0Ht$H<$A)E A)MA)U A)]01E1    I   IDHHH9t
E1H9AI   HH@u11fD  I   IT AHLE1H9I   AAEHH@uI@I95?HueHD$XdH+%(     Hh[]A\A]A^A_û@   H<H)H9HGH    I@  HI@  H@   H)Is(@<  tA=  I@  lHIvHIHTITLH)H)rǃ1҉уH<H<9rLAo&AonLl$I   Aov Ao~0LI   )d$L%    )l$ )t$0)|$@O1E1I   IDHHH9t
E1H9AI   HH@u11I   IT HHH9t	1H9@I   HH@uIǆ@      ATATTfAT    fAVfAUATIUSHHPdH%(   HD$H1H@  D$HD$8    H    D$H$D$(H?  L   H   HHL)11IfH   I HHH9t	1H9@H   HH@uL   L@  1Lf     HH HHH9t	1H9@HHI9uLL-    HLLLHo   HC@K@oUPo] X oe0`0H     Hǃ@      tgok@A,$opAt$ox A|$ oh0Al$0HD$HdH+%(      HPH߾P  H[]A\A]A^%        os`A4$o{pA|$뭐@   H1H)s%u[t uhH@  G@ HqH    HD    HH)ʃrŃ1H<9r뱉    D    H@  1fDH@                                  ~\[q%w	$I~.[Fj2{An7g\fhfvpcKHbK\bh˂}Wfmi5ltH=|#61p/֋Q峮7ϵ@}x Z3"w_xP]^L6 ]v<[(/Xy2W?C>ӟ:
&Ay]͡}:JH,S!s9Ϧ=	_G-VwqiZuj.qcBr."_x
%RcfM/j\!Dkz7cbۃ+K1dpG2kGzlB_aVb8b!W>.BDv}5VE,LɰV#P-l-zHEn8īw޺:Ly臝'jXˉ`@oJ5i(sіCP/`
?7䦳ڒR$u,8ds;O+$WUI?fD
ǧyBaӆ4^'#8Q{m9ew@y݈gJ]
f
(eN E	2U8f)*A)3B~+bTMslSEbZSQ/;k#ao{	RU9g3hD)9@d8KNGU4vkCFZ 2Qm
±{KT
43;Bg[ئ7;C!qM^egai$1sƅg^<-(:,@lOo<sYxN֌tn*;BڇpE7!mAI9~!";|+E7R~s|?.h3ٺxʩ*4/c߽
Y@$npQK*"e'P`1I|Ӕ(L`	K2r㳛ב̻Co4<jPO[Th^kߟow&HXp	+mq|gO!I<'kF:`v{Oh>x5Թ_X =}S$dp?RTɉ&>^v֟FPtoX}E=r`XJVX?bZ^NlLKnUtzSLG(6'zʗ
^w0,%+\UMeF/_0$h
5uL        .1M4q"#(
0\]i<e3̚ArǞT2v6:$X+2YB9|O\㫍嬕M)?j#z}M"I<C˝y=-/'6&t*Col:ԭF=65P&%Oܪ>mAS~@uG;D)gT!W,ݑ~n1cG 7S8#C5yVĨHWQd{uQYzmR.3#t0R
r"
Da0FwҴ%0 uaJGZJ&N0,ȃ{dYܨ|x[V&dò>[4_|jo]%
'WMv*9.TU><٣VH{~ue%-}lA;̣Pʙi0@Q	n-5NDiN%RqtEˍ+Y?1*cﳊn)ckjL-J=1㢑ÖT]hN(F_t >6d)epOrUrS\mI):=WAY
i,Iskz9	Z8`6YyH4"ǉ3aٹuɵJ&a`̀Dxq̫*rοfЈ[]Z'?Ue1OpnCC6Z=ǿաKcͳv;Em?Y|Å|s_1<f3H!agL&ɕ0Ȫ v`WB!<vT5-Ef}BZKh<o=is)
"4腁a'25Sot1$\.Tp4U]{&ҬVWN8j}Rt6[j8ޟub1w2y]tFQ^PE#Slr<sh})A?^>ZO;6gq@=bq:(H~|uv'tV\OGnORƙ-`xnFeu!N0!U+?e{kIi^LW@A(JPc;ˬMG|9&?|Z	//=5ɮgiV+_l6~ڔ}
{v˄SDGs{x<2ߎphQ;Sg9eXMWqdh׉ǏɄ%5}7ߦA]xzJ,MϷBw r҈:3u^z-KjAګkِ\1d"8B,Ic:(&4SǮq!w]\J%8Uc7z){'nj5k}PUlBŜl5oyQo0MԝAX
RP(9axjq@|>#c)4tPJwYV`1/Z-Tܶ[>-	kfQZE3AgHYh]/H&Jul9
dTFoѾ&\|3Jلi2T RCgh%X,DGv^ܳaHecz3G8h4	cΘLm0*l{;*ff`
Ysu {D
I_,qY24oE8PrT#:'<l%i(yɀKk87
yʺUPC;
L6ѧga$%&+,O#Q/(c/75R):,0W
pX`A%EtםLĒ"@hZ܌'Zn1܆I]@ 4-i@~?Kܣj(
yi$        Y>_.NxkmJX_.>zmۻ⬗ʮ	̳<bdwpIV~eW=ml6DV|7`1N#o:&bCSVfRS
+<n7#=,;^/nLV3X$Nd2]j7m5rB
yab?xRDH.Ȗ[	)(咾NT*}rID"+p>%dM@ Q>f ?a~LEaJ9!\,"֭eqx齇+D@Ye]	uH$u.*K	zkN'UڟIG2C*F#RF[G>Ct_$^$xdK!bݥK'ms$v" YĐm6M
t:fgqGp_F'*9^[}![3`)\w6r9L~U2r
E;z=߉X:y+.C_	{N-7Ojk4p8#"M
~bH\`0.*n[Q
BW"X)sϜdQ[OԷ*PS=yF-+~0WwsT9iDд30wྌb.%IOFroABMv/zEh:̯TTFcT5N7z3`M;RJS8xHU*Ĳ"XT@?VӠC"kXm
w'yٱtB*--uO{i+hx/Hzv΀~]g؏Lb{$=#J߶Q&-mOfKbZRj辠SHhcC'1ip缊lL3|5eX|ǀR!NA2P^C߇9b]A1<fr
QG}B~s.;L%bx4Cx$(w2ن}ECWK∶:hPd	}NzV|TƩOB<+;C69w/3,%ۧH]k^ .Pnqk03u1^?y"e'p	2spqKk=@)~vt6cJjr^7EMZ?IP8{d7X."USaR(mZ#K5Э	9xY^aq	H|:!`wѭ!?jwܷn]$Dϛ^E6f&XƹcAy"@UvQq؎T>ºQg=
ԂqXyxz\683lIr&a]뽁2Ћ,4`s
	)uB>}ϩ4#H+$BL\WѺ4<u{<E+Q
@:\vaJ>
挴H\Ϯ
3:UB(b7mќb_};:˸NJ1IL~d/e=+>*LZc[@!GtWaY1Y4rfnezv[ng\D\ IŹ8z4lErĺIFQ)w[`'RTm0nWx0ZeVɇƂa/򕥫Dq~(YDʍܻ,}J2a	tK(]!1HÁѸPӲ9jsFZxVv*#ANo+Eg|0u^ʛ ڞj`18>t~`,f9_Phg$4كIhuU<=.m_[Ek
q-)U5tmO{~	f-ypCf)&w{_        $vrM/8oRe8ݶ_7=;W\s'%ڿ%59,*MN i>z.KUjAV,Z:޾"&)%S[;6u:J?i06!%D[}LMRJ`iܮXr0)bYkp"9՟YٗGMŪ{TcVX5n50Qzg!&s.Ҍ=D6I*adi-so_QKo
p
h؊`Ae	3}=I0
ewŭ|䚵^pޤBdkڗFۖ/j'*]7<F%[˦nSd؄/Y|Vmt93sy
\#l,OƔ76M#22ǃlBg&?2nfj{o5+[Y1 'PiF"
V)'o(c<SC/pмoy,>@L@7Su迮_²bMҥA
N<d& iolѪ#ݦ(yOtՅFWq8A|OhG
P lF
d?(4GDGr#-R-卼+Wʡk$G.Z ;K徶$>U%_];g@Nc?vlG*ǚ~!SD.OW{,2 1Fe^OQuGԋ
{flZjyɡ^7G-v}]'t
 eܲfmo&L!SHA
B ̪d{B@`
qN26-5LӖ#|[/	ha16H)AMZڷpK䊧yeلq28o4-m8rE\!Gaw]p	謐rW]"xLjko
8Q[ObWqو+,
{]<P;vCc#~v܇s	
V}:X*?Y6!=6HJEfuT~fXtPe[OTF-Q7=2Px*0yW?!M 0e2+i$pەaһ
)c`PC;̰蠝:@vMW?T9uaw|sOK7/mVHg9\l7B0@e}lgګrN<߯ys?qF>x'|wbSl&DX`AΩKmC럛kI4{Ji"|B:L\rVKn^>kSZ=5L$%"	%])0Ƴ(t3)4=-lo
?JsĐ1-j4*^#{K5hkoj#nlkRU՘5`M~£r/QzS0%VR(`PoE:U+d{욮~Y|@^#PA4U
mg%
iZncz F	>}^#ӍEtV`gꎾ_K8w\
Hl5LҌ]d&ѧbs$)(]'C't(G18Xи.ȼx@qǿBb;Fh>zGZޘBcѐ*ncS'R{Df)~
e|VȀq",0@z۠8tTU_I0(
[zjyV)"~fU2RSa9abag_.\&%QT;c/ARr&5J3DMAif4f񪛥d<T1Ծq@IU~NiD]FcQ7
R3D        _nYQZ4.26m9\uO1ߧz-lȬ:X+0<k	EĮe!IsZw_hdV,/g$6&i7;1$pKJo3C*ٿ59Sʯn(<vC=c^< 3LJdpޱ.hkU57zS6aʥyYu:RypH&.ix(}TUtNxC}̳R3ADJϺMI%N>v /?'"xvWE=mg=b,h\Id,M+$ֽ.h+xD?H!|1.uZOش_-kN8F2G ;*Q$[>8$	NYw'jrK	}uG_Y<"M솑mt9Y^q!|[*:'<PC?T;n>!bsOpEXrghϜj6z;Ǖ3,:(`ʆ4EN}Pj_ޅ魁Op/>
iX+d@Bu`JI㬍,[#ٲ)9%D\֪ƥn#ƏF[/҈wWYG&.9I+X"3WݲBs%wbHoĦ=L~AyWv*7>$,
c"b/U6@GuzMVդ{3%gFjL}/HG_S70']:C%
=#,aQNПoKGASs[?
ٓ7e/{d@R#v
:p2A#5ޅ&[|1O
ŊH6pA6Kpr3SD>4dn89d5
waZ;V	Ϻ0prEG"<\/okUJtvOpDq^xLz)<?(-AvY_!ԄI~;<l :C,kdYuciѕl_6$fD֕ȥ"5P;8e!]F17QZh7Wyɑp;iBOPEj$8Xsၫ$/Tٿ
MC
Djv?W*+Oar'SOs$CKa8B\9hҷ׿7!1J0 $cr\n`
Nt9Get	q#*XGE{Lwؗ	los<&`@A~(IHKr[3I+YPai)N6O{ϕtI}ц>RaZ֐ML:u%DF=ek?,-h6ЦV"ZyݐmI5w#^O9[kh
"2i^֪n ?:b;8f$zV`{o(*0Ǜ%zE[Atd+0_c~TKɯY0FōUÈ4gm<
׺b2n q˝\T΄i}<Vax^sBlt+-[`Gv5i,k_ͱL5y𫭮bL᥀gE#WQf_]M@-t'X9=?1	ђ(@e%)B=|u'F>&Zl疎-scnBW8Tr)*eFNV(d@0.*	g+J]o{G#Uf@KH^Ӊc =u;2)~XK2 )h1Zɟg㡥4%3͘;Tm
^yy].%C{gD3AxΈf𒣻4{ҼbUWqުl/^}1ȀDQvdm3R"        F)Es,
U9}.xW1&)Ͼl-kH!]6X:,ҭxǕùe_jˠ,P/~&
6~;nʆYp$%xIiL|W̓*Qd'&>fqlq4Cv܉JOYRcz W'hJf|h.ȻpuSzjb.zFX¢aM}&	wiÜ=}PȦ
3x+R?tkJ(̾'N|Rx"~P\Y`m䊽D8=51RIXMvf!.V4\ŚyQ!ѐ>2\-JΌ_.CL8ۛoʾ9ԁ`	ANmMHToI^&Q	N0ugZǂ.MC|(u77|!ݣSP<T`jBT?]rz~sb2SEVwӴ͜"}j4b`(@cZNroPՖmg>|'H+X2j>mqͧ뒭:R 
\k4w7q#EB</[U]hS+Yne:w*9쇁nB[-HJK3w=ݽQy럥5!yU*ǊhFjmCK:ɳTk95멐7fǲ, 3aEiR;o(iSZ'(8>4U+RwėQ"@"vXbۍl]ȞJVkg_y3Ytxm->Sبy*i9kݯ/t*d'\؂[ٙ:qFå0v=PB+YF4fZKaS)#B!A0{t'1q6KDlcrf5hJʶX9PN.7C^?Nb9ly<-t?n
)<Z~Be\Lyݵ4xZ
%]혽pP2̬(ENfVYL"
7&2h	dO%E:^$rlT|]Fq>~ xC+sҪ6boJ-gAk]IӼIP|@Ou#~R,xNPp|&hX5ҦK;)}պl&c4@CAMiT͝I֫ýh1*eR9#Z|Oz7xϚ18qa[:<uӋ~G-?!-n<$!.	"6E9dwAc
W"N̢zq;Qem'3+z^y3`g.lAuRFdu4`C)M8E>bZixHB5\HB1-{ֺG黝{V
J.Iw|٥4H~sA
{:Dt`Uϻ(Ev
mzas}]RX=#d~z6*>Y#@?uWDqEX4#p5ܦe Cgɫ&+\%oz8*ڐ&r1cFˉwB/}/o9ƺ0$3`ȏ WD&׀(6X+λKLI{Jm$<雷iU}K[kBs;y(Q!WPlUrjO=a>dVI*Ygpjo6O0WF:"2[ ʑo1>3MtS4%X@9fI󧚟!h̴-ЅuW1Z=/юK[_ 3-nL{e{,<׫sk
lfC52.Uw&        vޛP)/ԋzsKe,^nS~?s\e_6;,1/ዢU*t.H
VAj"nD&Ļ;['hGJ:`7|T%
NL}kMi`Hf+]r̙	Yb|Q7ɲJ0_V]2r֭x^cjQvuS$!g
SwO=mHaH_Z5s[7pTw=

	_6IU!
VY%Av^!Uס\	orFQRԇ85Tc]P#܅;anySH܏^Y
Tˬ,m8\׮ت}*	(LO</ MXx$n2?h)jQ^+\bpc;' 8"j$Ro'zEƕ<M	0u>e[,y(MJ7CG굮⥚?VL8L%䯭bgcb#}TʓB`	}OЌڌ/W.`p|Ĵ:0ۤ@{_kMmG2qn̆jd30gtDdqr),G$?a'f@G_%vN@pD2Q=vNWG
.Dw)~=i~7-}@wo%[EPݏ[Rak57%n@1Zz<HkPeb'u}@q_Jmfڢb_5I#|=óZ6h<lM龻RwOxټ9{2ۭ&$O2y~).	ֹT]Uv݊X6/A?6͊\
/M0]_BՁJU;!S_Nmv_e);-%ZqqץT.R\SK(r.}!n
ܧq/b<I3!\Bˎz`FGL
[#XOzµr3TCBո-4qWbjt5Mj|mLePe#.Rw-\"iڽYLN:[g
ji'熉..+SC419,x'$iQu5|^dLN$}+H_ZdGLHy'
@sڃ*4yhbrQH8Ң0#e7r>:kDgnsfpN)8V2pjlAZJ+˲/V5lx
ZD;;!Hv	XÉޘK9ͿY9{) r@hޭ&GʣNgUSF]\
` Ǉ4omW!K{`-=B),duؽW{tMc!ؚE2g	?l$(b&,<^xfx(?oO9h3O9y7Y=oֈxAKn2fu>/Y7wXx=Fau~l	]5>Ee&?s~ U3mQH1*T+Ac1y@Qa%P:f"pՈv٢
KIS15W:hdߑ!	
/$-I,Y=\4V>WTO6V|CAj&Cܿ+zy kD<m{E>h|QcǶS"2<Џ.pd(؉[UvB>oP~ޞrg=EzJ`T\X[^㼚ƓnKJ܀t
^("(sP)D'
BNӗ*3+w
f%P0*J.݊wGz{0#`x:s1        1b"qDdU
Y\$+
8u56A`,2yd&'}vBq;&СQA0DeE#jFIM=8!'f/^McǤ~*U$}o/Fa9*лȣ?Bܧ˰ }%cim4l8N$;dF-%,XoNץcu:V G@PC݆)Vy^ji"]6^u0
<pۜ7 "Wks۸rR@6D;QȪ8ٳWCnʣaK~42bt,C:jI&'vL_ķL?X|mEAc1OW#	]SUTHHV<#e߾R?vl}"ؼM;E㾻ias>g C(αq*Dg7R?t-aY+],	woLk[~7G=]0Jt(%kh38_Ӻ׾nZ6Ͱl^w)GR	XȢpY`FS:|tֈii
IhsItGQzZJ3`FO4櫒ˎ3Tf8V>p{Mak{*|9zpȳ0Krc[gn1×U?[%)npjR]wC[n5pW=f*v2zcKKdbEHBf1JHˉ)b<f05Oav|&6ַ"T78}]XԜZ[̜o<$m;sҸ~"^Tʁa^5/*evWX>܊.{?\5lN	Y6t<],i}wJ9yS	Ht;&P^_T
<Kr=xnq;O.3晠qg
Tb3'/Iv\l`VzdFG2#Y˭[څC@Fٻ!y.m{bW(ꔝVJe@LlGJ(#E5-21.ʹ|y`=&:w`/P5'._(f/]A󐟓9ތ
CG'ĊREƪS^OIB2?ZbQ+AHvגH@drC֗#;rIA8%xe꺬π
sP^3G,jN*lM2Byr*1As8L
8,lj$:Zo<_Ƌ~SDY9C)$y@蟢F'CS>"U/
͎PFQol 9WkBmZ@o;=Oſ{dMBpX؁7|9Ʊs2Dᅨ!i\?ogW$v)c-fNu^w(}`<U7~9ڵ0kxڦUnN/VZmSXOA7XuYH|	\~luJ&ݬhgsʚ1|\3A3
y;hp+ z:{sQվh"I#DpM1`!'eӳz	-1	RģxmP̿^ف4kՂf*OΚP+%E u&g+fII$ r2YCm»<nErcih>Li	ɘTs78d&-ީx
;>g- P7{E
6˴%`b7,k(/T.7KSҊ:a":؜
6Dt%z#L!h_6'wZ0M+GR_{4$wxX={|DժLᗝZi        d!3Ɩ|UikqǒoFeM>.6ը,R񮕩Q}!XqYH򭇀\)WĂtQdlV}o`j?8٩M=&tc4R*:
oޯ #
B#Nễ8˨\n%n$XG4j]קBr?bmDǁ!9Ȯ1N	ΕV>c8ZP}G5)篣cp+yu]VS@{<,u3~ۏja݁!9Rwҟ"%5xquqJ`]ea0D@A, jz[U0_G4KRƷ]eC>"O^Y钄KdWVhqmT~,ע$Vv0LA:26}kgf;@>:F_i-(Nh*J[ŷa([D῍[\)azLtYcLK?EFk60K+=tk-NFv_
4 xu#b3~ѮwS
.U	?Qp)cUWiEQeh&Ժ
Q*I}ny='+-Hz0"
TsaB/ЗJgM(j|tq~pgOI۳㲓4Mr'4%EYe#Mt6tv`*Big|KąuNqE.Cvj/|e/[!pyVUʧ
a\Xk1^a+#
r׵pFO/o

1zC	b`7:5{{)uR_^5=j(9
/+t.ㄼ"7蓡S4R3u,ש?5^hr}<\3~Hq]HfWl|X`c~Vz'# ߣ:%GͿ55Jc#lA?GGkKn}dFz@h5O6rqƾf
Ǝ𚴚lBQf-90z;äo:O:MVJ<LE5J(iG7,-ū	ɓz3>Gɇƞ9T	$QŪ
٨QY5¬6/ĥ+i+M;D6qNAAnɓMB[Z#QDar`*˒8T+{βD
	
U<$B%:}:_ؚL"1TZ7EǴtö;6Rv;0lzK3iga3xAH*8Ro޾-ͤk]oJYޘnG}ͺʹHqyf! akؔZc0О{ JHR(ሪ̑]!0 w߼2<zIҺ1g7                                                                                                                                      zR x  L             BGB B(A0A8Mn
8A0A(B BBBA      l                        q       L             BEE B(A0D8DD
8A0A(B BBBA   D             BFB D(A0G
0P(A BBBM                                                                                  @            @                   C      @            @C      @                                                   0                      A                  ]                      r           q            @                                       `             g Ax C buffer512 buffer0 _GLOBAL_OFFSET_TABLE_ __stack_chk_fail _crypt_GOST34112012_Cleanup __explicit_bzero_chk _crypt_GOST34112012_Init _crypt_GOST34112012_Update memcpy _crypt_GOST34112012_Final               -            ?                  B            )   	         )                  B      	      )      
            B      Z      )   	   b            <C      
      )      
      )   	                         p                                                   @                   `       .symtab .strtab .shstrtab .rela.text .data .bss .rodata .note.GNU-stack .rela.eh_frame                                                                                       @       
                                   @               0U             	                    &                     $                                     ,                     $                                     1                     @      C                              9                      Q                                     N                     Q      (                             I      @               PV      x       	                                          R            
                    	                      hT                                                          V      X                              /91             0           0     0     644     2816      `
ELF          >                              @     @  
 AUI   ATIHUHSHH    LHL    HHH[]A\A]%        AWHFAVAUATUSHLD$H 
  IIL1@ 1H9s  HH@uHP     H    fo
    IHL  o@@Hf@L9u@   HH    LLH    L  HL       H    fo
    AoF@IfAFM9uHHߺ@       LHߺ        Ht$HH[]A\A]A^A_%    H
    -   H5    H=             ../lib/alg-gost3411-2012-hmac.c n >= GOSTR3411_2012_L && n <= GOSTR3411_2012_B  _crypt_gost_hmac256             6666666666666666\\\\\\\\\\\\\\\\       zR x  4          I    BJG D(G0Y(G ABB L   T       K   BFB B(A0A8DP
8D0A(B BBBF                                                                                                                                        !                      &                     +             I       ?                      U                      n                                                 P       K                             __PRETTY_FUNCTION__.0 .LC0 .LC1 .LC2 .LC3 _crypt_gost_hash256 _GLOBAL_OFFSET_TABLE_ _crypt_GOST34112012_Init _crypt_GOST34112012_Update _crypt_GOST34112012_Final _crypt_gost_hmac256 __assert_fail            )   
   /       )      E       )             )   
                       )             )            )            )   
   !            J      )      [      )      w      )      ~                                          )                            X             P        .symtab .strtab .shstrtab .rela.text .data .bss .rodata.str1.8 .rodata .rodata.cst16 .note.GNU-stack .rela.eh_frame                                                                                          @                                          @               @                                &                                                          ,                                                          1      2                     O                             @                     0                                    H                     P                                    V                      p                                     k                     p                                    f      @                     0          	                                             h                          	                      x                                                                u                              /129            0           0     0     644     2392      `
ELF          >                    X          @     @   AWIAVAUIATIULSH(  dH%(   H$  1H@6  fo    H\$L$   L$   )$   )$   )$   )$   fo    )$   )$   )$   )$   Ht21L$   L$   f.     A4A04A04HH9uH    @   HL    LHL    HH    H    @   HL    HH       HH    H$  dH+%(      H(  []A\A]A^A_D  H\$Lt$pHL$H$H    HT$H<$H    LH    fo       M)$   )$   )$   )$   fo    )$   )$   )$   )$          6666666666666666\\\\\\\\\\\\\\\\       zR x  L          
   BEB E(D0D8GC
8A0A(B BBBF                                                                                                         
      )                      ?                      T                      n                                             .LC0 .LC1 _crypt_hmac_sha1_process_data _GLOBAL_OFFSET_TABLE_ _crypt_sha1_init_ctx _crypt_sha1_process_bytes _crypt_sha1_finish_ctx __stack_chk_fail   >             {                    )             )             )            )            )      !      )      2      )      >      )            )            )            )                              	      )   	                          .symtab .strtab .shstrtab .rela.text .data .bss .rodata.cst16 .note.GNU-stack .rela.eh_frame                                                                                         @       
                                   @               `            	                    &                     M                                     ,                     M                                     1                     P                                    ?                      p                                     T                     p      h                              O      @                            	                                                       
                    	                                                                                      ^                              /158            0           0     0     644     4576      `
ELF          >                              @     @ 
  AWIAVAUATUSGHoDoD$Gl$ȉD$HHD$fD  |$ȋt$EE;D$1DD{XAKD!1K\ESL$D1DS`EC!A1DT$1DCdA:DADD$!A1D1DEKC(DKh!1DL$1DΉ
!1A1ASSlЉT$܉Ak!1kpA1l$DEc!1DDctDd$Ec 1!DcxA1D
1!A11AK$ʉK|AL$DES(!1DD   щD|$1!1AC,A1ɉ   Ak0D$DA!A1щ   EC41ED   EK8
A!ƉD   A1DAA1D!D11DΉA{<!񉻔   1D1!D1G7yZA
	!A!D	ADDt$A!E6yZ	!D	ADEyZA!	!D	ADDyZA!		!D	ADDt$A!
EyZ	!D	D|$DE7yZA	A!!D	ADDt$A!EyZ	!D	ADEyZA!		!D	ADDt$A!
EyZ	!D	ADDt$A!E6yZ	!D	ADE
yZA!	!D	ADEyZ		A!!D	ADDt$A!
EyZ	!D	D|$DE7yZA	A!!D	D|$DEyZA	A!E4n!D	ADDyZA!		!D	D|$DEn
1ȍnD|$1D1Dt$1DDd$	Enщ11E2n1D1An1D|$11Enl$1DD
n1	11DщDT$11DEnDt$1EnD1E2nDT$1DEnщ	1D|$11DA1A1DEnD1ЍnDE2nAA1D$D1DEnщ	1HD$11D1AL$I@t$I9wD$l$DkCD$ĉkCL[]A\A]A^A_     H    fo    HGf     AULoATIUHSHHO9ڃ ʃ?WtX@   H)H|H9      \  t]  LmIH@   LH\^H?   ؃rUI$IuHIE ITITI)B+M)r1҉уI<H<9rH[]A\A]fD     tA$AU tATfATHLH?HI_ HH[]A\A]%    D  HLGMIHHtHtL)I)׃1ɉ΃M2M09r@ A$AU ATAT(ыtttftff.     AT@   LfUHSH?HHDHH)H  8   H)H؉16    t    DC    DEEAEEAHEL	@H@L	HL	HH	HHH	LHH	HH	к@   HCP	CH߾   HE CeC
ECECECeCECECECe	CE
CECECe
CECE[]A\%         HpH     HD    HH)1H<9rD  H1s>   t     @   LH   8   0fD  H     HD    HHHH)r1ƃH<19rD       D     D  1fT@      D    ^1fLP     ܺvT2                #Eg       zR x  @             BEB B(A0A80A(B BBB    `              L   t          BFD D(G0
(A ABBGL
(D ABBK  ,             BJD _
ABN                                                                                                                                                   2                      H                      O                  `                       body .LC0 .LC1 _crypt_MD4_Init _crypt_MD4_Update _GLOBAL_OFFSET_TABLE_ memcpy _crypt_MD4_Final __explicit_bzero_chk                            _      )      t	      )   
                         d                   x                                        .symtab .strtab .shstrtab .rela.text .data .bss .rodata.cst8 .rodata.cst16 .note.GNU-stack .rela.eh_frame                                                                                            @       
                                   @               p
      `       
                    &                     
                                     ,                     
                                     1                     
                                   >                     
                                   L                                                            a                                                          \      @               
      `       
                                                                          	                            u                                                    0      k                              /181            0           0     0     644     5104      `
ELF          >                              @     @ 
  AWAVAUATIUHSGDoD$GD$GD$HHD$fD  D} |$DD$t$E|$X]Axj׉1A\$\D!\$1Ѝ3VD1D!1A1֋UAT$`D]!T$ȍ:p $A1D1E\$dDMC+νDD\$EL$hDUDL$!AET$l1DT$A|
1!A11A2*ƇGDDEED$pD]!ADD$1E\$tAF01!A11AFDDu Et$xDM$!Dt$1EL$|DE(AؘiDL$
1E$   DU,D|$!E$   1A1DDM0DT$1E$   !1A[1!1A\1!ʉ1A"k
1!11Au4A$   >qDU8A!A1E$   AA
CyA1AD!1}<!IDA$   D1!1ڋ\$
ʍb%1D!1ËD$F0@@1!1DDt$	EQZ^&1!1DEǶD|$1!1DE]/։1!1DE SD1!1DD؉	1!1DDt$E1!1DDt$E!1!1DE7É1!1DDt$	E
1!1DDt$EZE1!1DD㩉1!1DDt$E1EB9!1DEog	1!1DEL*1!1DAA1D1DD|$EqA1EAAB3Dt$A1A"amEA1A8AAAE1ADA	C>D|$G3`K1ED꾤1DD|$AK1ڍ~(1AA1ApEAAD1D	D1AA1Aދ\$AAƍ'D1ً\$ADF;01щ1DD|$AD|$1G79	1AA1EEAAD1DD|AD1E*C1DD|$AeVD|$1ȉG7D")		1D	E	Y[e1DE#A
AA	A1ED\$AE9A҉D	1DD	D1DDL$D|$D\$؋\$ED	1DG}ADT$
AA	Ѝ,A1EE]D|$AAD	1DDL$E	O~oDDҍN	D1GCADA	1D
	1D	1~S	AH@1AA5:A?*D|$L$	1D
T$	1Aӆt$	1AHD$H9mD$El$AD$D$AD$D$AD$H[]A\A]A^A_    H    fo    HGf     AULoATIUHSHHO9ڃ ʃ?WtX@   H)H|H9      \  t]  LmIH@   LH\NH?   ؃rUI$IuHIE ITITI)B+M)r1҉уI<H<9rH[]A\A]fD     tA$AU tATfATHLH?HI_ HH[]A\A]%    D  HLGMIHHtHtL)I)׃1ɉ΃M2M09r@ A$AU ATAT(ыtttftff.     AT@   LfUHSH?HHDHH)H  8   H)H؉16    t    DC    DEEAEEAHEL	@H@L	HL	HH	HHH	LHH	HH	к@   HCPCH߾   HE CeC
ECECECeCECECECe	CE
CECECe
CECE[]A\%         HpH     HD    HH)1H<9rD  H1s>   t     @   LH   8   0fD  H     HD    HHHH)r1ƃH<19rD       D     D  1fT@      D    ^1fLP     ܺvT2                #Eg       zR x  @             BBB B(D0D80A(B BBB    `              L   t          BFD D(G0
(A ABBGL
(D ABBK  ,             BJD _
ABN                                                                                                                                                     2                      H                      O     
            `                       body .LC0 .LC1 _crypt_MD5_Init _crypt_MD5_Update _GLOBAL_OFFSET_TABLE_ memcpy _crypt_MD5_Final __explicit_bzero_chk                            o	      )            )   
                         d                    x                                 
       .symtab .strtab .shstrtab .rela.text .data .bss .rodata.cst8 .rodata.cst16 .note.GNU-stack .rela.eh_frame                                                                                            @                                          @                     `       
                    &                                                          ,                                                          1                                                        >                      
                                   L                      
                                     a                     
                                    \      @                     `       
                                                                           	                            u                                                    @      k                              /204            0           0     0     644     7928      `
ELF          >                    8          @     @   AWAVAUATUSHH   SD{dH%(   H$   DsH\$Ho~D|$@o^DF Dt$8of D[)T$Pon0)\$`AD1D\$DAAŉD!D1)d$pAyZEA)$   ƋD$TAD$   DAAD1DT$!ȉDt$41T$<AyZD|$dDL$DED$XAAωȉDD1ЍyZ!D1؉Љl$\D1FyZ!D11GyZAÉ!D1A7yZAD\$hDAAD\$A1A!A1AyZD\$xAAD\$DAA1A!A1AʉDDT$lAEAA1Dt$ AyZEA!AA1A1AyZA҉A!A1DADDD$tAEAA1A:yZDT$$A!A1A3yZD$   AADAA1A!A1ADDD$|AEAA1A
yZDT$D$   A!A1AyZAD$   AȉADAA1A!A1AyZAЉDAA1A!A1A:yZAA1DAA1A!A1A1yZADAA1A!A1ADEE1E1AEAA1A
yZD,$Dl$$A!A1AȉDDD$A1E1E1AEAA1AyZDl$Dl$A!A1AЉDAE1E1E1ADAA1yZ\$A!A1ADAl$E1A1,$A11AA8yZ!1|$AD1Dd$D1Dd$D1AAA1D㍴7n1At$ ED1D|$AD1D1A1AnD|$1A̋L$D1D1D1Ή1ƉDt$nt$ D1AAϋL$$A1ΉD11D1DnD1؉ADËD$D1D1D4$D1Dt$D1AE1(nADAt$A1D͋L$D11͋L$1ŉt$1F)nL$ L$DEAAl$111ՉD1F&nD1t$,DEAAAl$D1E1D11ŉD1F9nL$$L$ D1AADDD|$E1A1A1ADEE1nL$L$E1ADAADD|$E1A1DD1AADG3nD4$A1t$0EAAED|$$E1A1ʋL$E1AA1ɋL$EEA1A1EG/nEA1AEEDl$E1AEAA1EG&nD$$E1AA1EEA1AA1Et$ AEAE1A-nE1ADEADDd$E11A1E1ADEE1ԍnt$t$,E1ADAADAA1E1ADEE1FnL$(A1l$EAA4$A1l$$EAE1A1A1E1ADGnEEADd$EDT$D1DT$D1D1At$1ACnE1E1ADADDL$0D1A1΋L$E1A4$E1AA1D1A2nD1AADΉL$Eٍn\$ E1A11DAD1AD1DADA1DL$Gn1D\$,AщD1D1DD1$	AA!!D	D$GܼDL$ADA؋\$$A1E1DL$E1ADD$AA	EAA!A!E	DL$A9ܼDL$(DAAADD\$D1D1DL$D1ǉ|$	AA!!D	DL$A1ܼD$Dދ\$011D1Ɖt$D	ADAA!!D	DL$A	ܼDD\$D1D1D1AˉD	AAɉAܼD\$A!D!AD	ʉE1E1DD\$D1D1D\$ӉE1	ܼ\$AщE!!D	At$ЉA1D$D	!A1ǉAD!	CܼAADAȋL$t$AA1A1D	ƉAD!D!	A>ܼ<$΋L$(A1͉A1!A1	AD!	C
ܼAωA	A!DD\$1D1D\$D1!D	FܼAɉ\$$DAAA|$(D1D1D1A	D1A!!ܼD	Dl$1DD1	AADA!A!AܼD	D	DL$E1AǋD$A!A1ċD$$A1ĉAD!D	A4ܼADd$(Ɖt$A	A1t$E!A1A1!DD	D$ō
ܼ΋L$D1D1D1Aʉ	GܼDT$ DT$AɉA!!D	AAȉA	A!DDD$E1E1E1AAA!EEE	AܼDL$DT$AЉDT$DD$E1AE1A	A1A!EAAA!E	A<ܼADDD$E1DT$$DL$ E1E1AD$AA	EAA!A!E	D$AܼDL$ADDD$E1DL$A1E1ADD$AA	EAA!A!E	DL$A1ܼDL$ADDD$E1E1E1ADD$AA	EAA!A!E	DL$A	ܼDL$(AȉDDD$E1E1D$E1AAA1A1DD$EbʉEDL$DDD$E1A1E1AEAA1A9bDL$DL$A1DAAADD|$ D1A1D1D|$D1A1AbD|$E1DDDT$D1D1D1AA1E1D0bʉAEADEDl$E1E1E1E1EA1AE
bʉED$DED|$E1EE1A1EA1AEbDt$Dt$(EDT$DEA1ىE11A1AډAA1GbEADED\$Dl$$A1D|$E1E1AAA1AA1A8bEDADl$ADDt$ A1A1D1D1D|$D1Ǎ7bDEAAD1l$1D11D1AbDAl$ADD11D1AΉD1AbDt$DD1,$AADADD11ED1D1A1AD1b͋L$A݋\$D1AD1Dd$$D1E1AFbAl$ED$A1A1ˋL$A1DD1AÉDGbD1A͋L$DDT$AA1ʉE1EA1E1AE1AG:bEAϋL$EDL$A1E1EA1E1AD1G1bDt$ADA؋\$A1DDt$1DD11AE1B+bEADAD1Dl$$AˋL$A1E1D1A1DAD1AGbD\$D1DA1AD1D\$DDE1E11Dt$4H\$HE1AAbDt$8FbEDD|$@DAA1ADD1AAAfnAD$<fAnfbfnA?fnCfbΉCflH$   dH+%(   uHĨ   []A\A]A^A_    ff.      fo    H    G    HGfAVAUIATIUSFHAAA?FF҃LHK&FIFH?w H<L[L]A\A]A^%         @   HL)sn@   t   HsH&   L)L9   D  It- HHH@HL9rI)I   c HHpIHHHLHLH)T I){1I<H<9r`fIOd&   LL;LfL,ff.      AUATIUHSHdH%(   HD$1HD  1҉ATHHuں   LH=        AD$%  =  t.L-    fD     LL    AD$%  =  uߺ   LH    1D  AT HHuH\   L          H    HD$dH+%(   uHH[]A\A]            #EgܺvT2           zR x  L             BBB B(A0A8J
8A0A(B BBBA      l              <          r   BBE G(A0G
(D BBBN   8          '   BBD D(D@
(D ABBA                                                                                                                                                         "                      8                      I                  ^     0      r      x                                 '                             sha1_do_transform .LC1 .LC2 .LC0 _GLOBAL_OFFSET_TABLE_ __stack_chk_fail _crypt_sha1_init_ctx _crypt_sha1_process_bytes memcpy _crypt_sha1_finish_ctx __explicit_bzero_chk            )                                    )      	                     
   &            <         
   ]         
         )   
         )   
         )                            p                                0                          .symtab .strtab .shstrtab .rela.text .data .bss .rodata.str1.1 .rodata .rodata.cst16 .rodata.cst8 .note.GNU-stack .rela.eh_frame                                                                                             @                                          @               0                                 &                                                          ,                                                          1      2                                                  @                                                         H                                                         V                     0                                   c                      8                                     x                     8                                    s      @               P      `          
                                       0      P      
                    	                                                                                                                    /228            0           0     0     644     16888     `
ELF          >                    =          @     @   AWIIHAV1AUATUS ʉHH@uAoAoYLL$HLD$H    AA@AXE`ExD$A@D$A@D$A@D$A@D$A D$Dt$؋} D\$DD$DD|$;DT$1D1D|$D1D!AD1A
A1ɉDDd$
AA1DMDAD1D1ЉL$K!DAD1ADD1D!D1D1D1DBAD
E11DD!
D11suDDD1׉!AAD1AƉ1Љ1Ɖ
B&ED1AA1A
D1D[DD]E!1E1E!DAD1AAA1AAE!A1D1AAD1A
G;D1AA
D1DD[D]EADEA1AE!A1EEAAAE1EAE1AEAA1A
EE!E1AA1A
E1AED[D]AˉEED1AE1D!1ADD1EAD1EADAD
E!D1EA1A
D1DkDmADDAD1ADE!A1D1E!AՉE1D1AAD1AՉF(
1
1CEDADED1AD!AD1AADD1EAD1AAA1
DE!D1AA1A
D1DDS DU EADAE1AAAA!A1EAAE1AAE1AEAAA
A1EE1AE!A
A1E1Ds$EEEDm$A1E!E1EE1E!AC<1EEAAE1EAE1EDEAA
E1EA
E1EAA1D1EDS(DU(!EAE11AE!AE1D1AAD1EADA
DD1EA
D1ADDS,DU,AADD1A!D1AAD1AAD1EAA1
DE!D1AE1A
D1DDS0DU0EADAA1AAA!AA1EAAE1AAE1AEA
AEA1E1AA
E!E1A1EDC4DE4DAEEA1ADt$E!A1DEAE1EAE1EDAEE<	EA1A
E!E1EA1A
E1AɋM8GADS8E1D\$E!AA1ACEEAAE1EAE1EDEAA
E1Eډ|$DA
D1E1A!AыS<U<E1Dt$DED1DL$D!ED1ADAD1D1DƉt$D
H@1D
1DD1!D1ЉD$H    H9  ʉȋ|$

uDu1ЋT$1ȉ
DЉ1ʋM1}ЋUAE 
A
1ʉ1֋UU։1ʉ}1ʉ֋UA1ȉAA
uD1AAAA1A
UA1}DAA
AʉME1AA
E1AAAӉAA1Љ}A1ЋUEAA
D]E1EE1AAAA1A1}EEAUA
EDUE1EA
A
E1AAщAA1Љ}A1ЋUEEADME1EA
E1AAAA1A1DEEA
DEA1D
D1EDDAD1EAD1DmDDl$AD}
D1EA
D1Dl$EDDAA1DA1DA
AU D1AA
D1΋MDmAA1͋MA1͉D]DUDAA
u$A1͉
D1DmAˋMAD1DmAD1ADAAA
M(E1D1FDUuAD1DUAD1ADAA
A
u,E1D1DMDEF	DMM}AD1DMAD1ADAA
A
M0E1D1FDEuAD1DEAD1ADAA
A
u4E1D1DE}AD1DEAD1M8U
H@11щ11щM<L$fnd$fAnfnl$LL$fn\$ȋ|$fbLD$fbA	f~flAIf~EyExEYAIAyAYEaE`AXAxA []A\A]A^A_ AWIAVAUATUHSHHHW HHHHW @   ?)Ax(HL9  ILA   HHOIHHJDJDH)I)Dǃr1I4H49rHC(LHL$M$   HHD$LL$L)MH?6  HUHMl@LLLHI@M9u?s|     H[]A\A]A^A_@ A   E]OBDfBD>fD  HH[]A\A]A^A_%    f     IE HC(H\$ITHsHTHHH)I)ōD [1҉уI|
 H<9rH[]A\A]A^A_AU S(%ATH\$fT MAU S(ATHt$TBDBD[ ATIUSHG HH?7wFHHHL8   H5    H)ELH   H߈Cgj1[]A\ f     AVL   AUATIUHSHF HLk(H?Ht(H7wn8   H
    H)     E  D  HC LLLHHHC`T1fʉT HH u[]A\A]A^@ @   H
    H)sD.    LLLHfC(IE0    AEAE k H    LFIHH|H|HL)H)r1ƃH<1I<09r    H    LFIHH|H|HL)H)1ƃH<1I<09r         DfDD      DfD    ҉DD    ҉DDG    AWIAVAUIATIUSLHH@   fo    fo    LwhHG     fo
    OA A@A@ A@0H%  1 AH0H@H9uL@   HLfo    1IǇ       Afo    AFfo    CC C0@ A0HHH9uHLHL[@   ]A\A]A^A_# fo
    fo    LMwhHG     IGLLHfo        fo
    IG     AGfo    ACC C0f@   Lfo    fo    IǇ       fo
    AWhANCC C0ffo    HG     fo    GSH0  dH%(   H$(  1HHtH      H    H$(  dH+%(   u	H0  [    USHH8  dH%(   H$(  1HHVHh   H          H    H$(  dH+%(   u
H8  []    ff.     ATUSHH  fo    fo
    dH%(   H$  1Hl$pIHD$     )$)L$HtHHHLHLHh   h   L          H    H$  dH+%(   uHĠ  []A\    fD  ATUSH  dH%(   H$  1H$   H$@  IIIL!      L            H    @   @   H    H$  dH+%(   uHĐ  []A\     SH0  dH%(   H$(  1HHtH      H    H$(  dH+%(   u	H0  [    AUIATUSHHhHX  dH%(   H$H  1HL$   HL H    LH=HHL      H            L    H$H  dH+%(   uHX  []A\A]    fAWIAVMAUIATUSHh  dH%(   H$X  1H$  IHH$   HILL$0  HTMtHLLLnHLLl$hHHٺ    HLHHLL      L          H    `   `   H    H$X  dH+%(   uHh  []A\A]A^A_    fD  AWAVAUATUSH  HT$L$LL$ dH%(   H$  H   H;$   	  H<$IIHu$   
  H$   L|$pLLL$@  HMHD$HL$   LH$p  fo$   fo$   fo$   HD$@)$  fo$   fo$0  )$  fo$@  )$  fo$   )$  fo$`  )$  fo$  )$   fo$p  )$  fo$P  )$  fo$  )$   fo$  )$0  )$@  )$P  )$`  H  H$  Ht$LHHHD$P!H$      H$   L$   H$l  A   H\$0H\$@H$  L$p  HHD$8H$  HD$HD$ LHD$(fo$  Dfo$  Lfo$  Ht$0Ⱥ   fo$  Hfo$  )$p  fo$  )$  fo$   fo$  )$  fo$P  fo$   )$  fo$0  )$  fo$@  )$  fo$`  LD$ DL$$l  )$  )$  )$  )$  )$   )$   )$0  LHLKL    LHH|$LH(H<$DL$LD$ W  HT$(    L)I9IF     tHL$	
  D$8AI A9bH|$H          H|$P                  L    H|$            H|$@                L    `   `   L    H$  dH+%(     H  []A\A]A^A_H|$HH
HtHt
HJHHH)H)փ1҉׃L>L99rfo$  LD$A   DL$ )$p  fo$  )$  f.     fo$   LLfo$   fo$   Hfo$       fo$  )$p  Ifo$   fo$0  )$  fo$@  fo$P  )$  fo$`  )$  fo$p  )$  fo$  )$  fo$  )$  )$  )$  )$   )$0  )$   )$  LHL~L    LHLHL]fo$  f$p  )$  fo$  f$  )$  L9,$LD$DL$ Hȃ?H3H$p  L|$pHHMHHD$@HL$@  L$   LLL$Hy  Ht$HLHH\$@H|$@   L$  H5    H$    %  H9  LL$MLLH$   LHHD$H]fo$   fo$   fo$   fo$   )$  fo$  )$  fo$   )$  fo$0  )$  fo$@  )$  fo$P  )$  fo$`  )$   fo$p  )$  fo$  )$   fo$  )$0  )$@  )$P  )$`  j Ht$
LLhH|$@$     LH5    pH$    %  H9
  LL$MLLH$   LHHD$Hfo$   fo$   fo$   fo$   )$  fo$  fo$P  )$  fo$   )$  fo$0  )$  fo$@  )$  fo$`  )$  fo$p  )$   fo$  )$  fo$  )$   )$0  )$@  )$P  )$`  H$  H$    HD$P!H$  L$p  HD$HL$LfLH
      H5    H=         H|$@LL  LL$MLLH$   LHHD$Hrfo$   fo$   fo$   fo$   fo$  )$  fo$   )$  fo$0  )$  fo$@  )$  fo$P  )$  fo$`  )$  fo$p  )$   fo$  )$  fo$  )$   )$0  )$@  )$P  )$`  H$  LLH$  HL$hH$     HHD$(H$    ~5    HD$ HD$H$   HHHHD$0H$@  HD$ H$   HD$`HL$($LLHt$hȉHL$ fo$p  )L$pfo$  )$   s~L$p~l$x~$   ~$   fofofrfrfofafafofpNfrfafofDofrffDafafofEpNfofAafrffgfofpfrfH~fofafafoHIfpNfrHHL$fafofDoIfrfH|$8EfDafafofEpNfAaffgfofafafpfpNfH~fafofaHfafofHfpNfoDfafqHT$HfofffqfofgffpfgfH~fpIDIfH~A   Io$  H@ILL$XII)d$pL	LT$PIIHIEIH	EHH	|$HL	IHH	HHL	IHHI   L	IHL	IHL	DD$XHL	DD$PHL	DD$HHI	I(HL	L\$IEDD$8HI I(H(L	E@I HT$HEIH0foL$I0HT$I HH8H0LD$8EIHT$HH8LEH   H )$   L	I0@HEL	HH	HL	HL	HL	HH	H8HH8H	LH	HH	L$HHL	HH	L$8HH	L$HT$LHH	HD$foL$)$  o$  HL$ Ht$`)$   ~L$p~l$x~$   ~$   fofofrfrfofafafofpNfrfafofDofrffDafafofEpNfofAafrffgfofpfrfH~fofafafoHIfpNfrHHL$fafofDoIfrfH|$8EfDafafofEpNfAaffgfofafafpfpNfH~fafofaHfafofHfpNfoDfafqHT$HfofffqfofgffpfgfH~fpIIDfH~A   IHILL$XII@IL	LT$PIEHIIH	EHH	|$HL	IHI(H	HI(EHH(EL	@IHHI   I	H|$L	L\$IIHI L	II HI EL	DD$XEHL	DD$PHL	DD$HHL	DD$8HL	IHT$HfoL$I0H0LD$8IHT$HI0H0HEHT$HLH Eہ   H8@H8HL	H8H	HHL	H8H	HHH	H	HL$HHL	L	HHL	H	L$8HHL	H	L$HHH	H	HT$HD$HD$fod$`H$H H$HD$H9\$0@         H|$@LLLL$MLLH$   LHHD$HH$  fo$   fo$   fo$   HD$Pfo$   )$  fo$  fo$   )$  fo$0  )$  fo$@  )$  fo$P  )$  fo$`  )$  fo$p  )$   fo$  )$  fo$  )$   )$0  )$@  )$P  )$`  ../lib/alg-sha256.c        dkLen <= 32 * (size_t)(UINT32_MAX)                                      _crypt_PBKDF2_SHA256                            g	jgrn<:ORQhك[                                                               /BD7q۵[V9Y?^[1$}Ut]rހܛtiGƝ̡$o,-tJܩ\ڈvRQ>m1'YGQcg))
'8!.m,M
8STs
e
jv.,r迢KfpK£Ql$օ5pjl7LwH'49JNOʜ[o.htocxxȄǌlPxq6666666666666666\\\\\\\\\\\\\\\\g	jgrn<:ORQhك[           zR x  @          }   BKD B(A0A8^0A(B BBB |   `       =   BEB B(A0D8GP
8A0A(B BBBE|
8D0A(B BBBOU
8A0A(B BBBA   ,          g    BDA R
ABD   <            BIB D(D0
(A BBBE   H   P         BEB E(D0A8G@
8J0F(B BBBH                            `    AGP
AA(         u    AAJ`
AAA0              BAA J
 AABA0   4          BAA G
 AABA    h      `    AGP
AA8             BEA A(N
(A ABBAH         
   BEE E(A0A8G
8A0A(B BBBAL            BBB B(A0A8G
W
8A0A(B BBBA                                                              }                                    =      -     
      g       ?     `       @       X    0            !    P            C                      H      0               M                      R                     W     @                                     e                   {                                                 	                                                                  0                   P      `                                                              u       	    0                              3          `       M                 f          
      }                                      SHA256_Transform Krnd _SHA256_Update.part.0 SHA256_Pad_Almost PAD .LC2 .LC3 .LC0 .LC1 initial_state __PRETTY_FUNCTION__.0 .LC4 .LC5 .LC7 _GLOBAL_OFFSET_TABLE_ memcpy _crypt_SHA256_Init _crypt_SHA256_Update __explicit_bzero_chk __stack_chk_fail _crypt_SHA256_Final _crypt_SHA256_Buf _crypt_HMAC_SHA256_Init _crypt_HMAC_SHA256_Update _crypt_HMAC_SHA256_Final _crypt_HMAC_SHA256_Buf _crypt_PBKDF2_SHA256 __assert_fail E                                 \            )      
            \       j            \                   \       +            \       {            \                   \                   \                   \       4            \       x                     	            
            	            
               d         	   l         
            
            	                                    	            
   4         	   G         
         )            )            )            )      !      )      B            <       J            L             )            )            )      >      )      Q      )      d      )            )            )            )      `      )      s      )            )      U      )      h      )      {      )            )      ~      )            )            )            )            )            )            )                                                                                   )       "            *      )                            d                                
                  0      T            P                  0                  P                                    0      8                  l                                                                         .symtab .strtab .shstrtab .rela.text .data .bss .rodata.str1.1 .rodata.str1.8 .rodata .rodata.cst16 .rodata.cst8 .note.GNU-stack .rela.eh_frame                                                                                              @       M+                                   @               5      0      
                    &                     +                                     ,                     +                                     1      2               +                                   @      2               +      #                             O                     +                                    W                     -      @                             e                     -                                   r                      -                                                          -      `                                   @               <      P      
                                          (1                                	                      @4                                                         `=                                    /254            0           0     0     644     8496      `
ELF          >                              @     @ 
  AWAVAUATUHSHX  L$   H$@  dH%(   H$H  1LfD  HHHHHPH9uL$(  oM L$@  oUo] oe0)$   Hu LT$hL$   )$   HE L$   LT$`L$  )$   H$   H$   LT$PL$  )$   H$   H$   LT$HL$  L$   L$8  LT$@L$   L$0  LT$8L$   LT$0L$   Hl$xLT$(L$   Ll$pMLT$ L$   LT$L$   LT$L$   LT$L$   L$L$   LT$XL    IHIIHL1IIII1Hl$XI*IHH1H!H1IIHHMI1HHI1HMIL!M	I!I	H$MII1HIJLM!HLI1LMII1LHHI1H\$LMIIHIRL1MIL1IHHI!H	L!L	MHLIH1HL!HH1HLHL1MIL1HHHHH1HHH1LHLH!H	H!H	HL$HLL1HIBHH!HIL1IHHHH1HHH1HHHHI1HHHI1LILH!H	H!H	HT$ILH1IR HH!LL1HHHH1HHH1LHLHHIH1LHH1HHHH!H	L!H	HT$ IR(HHLMH1IL!H1HLHL1MIL1IHHIHHL1IIL1IHHM!L	H!L	IM1HHD$(IB0I!HHIHI1IIHHH1HHH1IHHJ<L1IIL1MLMI!I	I!M	LL$0MJ8LMIHI1HI!M1MIIL1IIL1IIHIHML1ILIL1ILII!I	I!M	LL$8LII1M!MJ@HI1MMMII1LHI1HMHNHHH1HHH1HLH	II!H!L	LD$@MBHHHIL1L!H1J,MLIHL1MIL1HHL*HHHH1HHH1HHH	HH!H!H	LL1HHT$HIRPL!HLL1HHLHH1LHH1HHH<(HHHH1HHH1HHH	HH!H!H	Hl$PIjXHLLL1H!L1L(HHHHH1HHH1HIHHHLH1HHH1HLIH!I	I!I	Hl$`Ij`LMLII1I!M1IHHII1HHI1HMIHILI1HHI1HMIH!I	I!I	Hl$hIjhMILII1II!I1IHHI1HHI1LMMHLII1LHI1HMIH!I	M!I	IjpMII1LI!HHI1HIHHH1HHH1LILHHLH1LHH1HLIL!M	M!I	IjxIILII1LI!HHI1HIHHH1HHH1HIHHHLH1HHH1LLML!M	I!I	LL\$pM9v  LMLd$@HII1LHL1L\$XMLL$MIIM1L$$IM1MIILL\$XHM] ML$$I1LHL1L\$HML\$LMIIM1Ld$IM1Ld$LH,$MImLIHI1LLd$HL1L\$PML\$XLMIIM1Ld$XIM1Ld$IL\$LM]MHII1LLd$HL1L\$`ML$LMIIM1L$$IM1Ld$ LHl$MImLIHI1LLd$HL1L\$hML\$LMIIM1Ld$IM1LHl$Im Ld$(LMHII1LLd$ HL1L\$MLMIIM1Ld$IM1Ld$0LHl$ MIm(LIHI1LLd$(HL1L\$MLMIIM1Ld$IM1Ld$8LHl$(MIm0LIHI1LLd$XHI1Hl$0IHl$ MIHIL1Ld$ IL1Ld$@IL\$0LM]8MHII1LHI1Hl$8IH,$IHl$(IHIL1Ld$(IL1Ld$HLHl$8MIm@LIHI1LLd$@HI1Hl$MIHl$0IHIL1Ld$0IL1IL\$@M]HLd$PLMHII1LLd$HHI1Hl$MIHl$8IHIL1Ld$8IL1Ld$`IL\$HLM]PMHII1LHI1Hl$PIHl$IHl$@IHIL1Ld$@IL1Ld$hIL\$PLM]XMHII1LLd$`HI1Hl$ MIHl$HIHIL1Ld$HIL1MIIL\$`M]`MILMII1Hl$hM1IHl$(IHl$PIHIL1Ld$PIL1ILL\$hHM]hMII1LHI1Hl$0ML|$`ILHILHL1ILd$XL1M<+LMHIM}pI1LHI1Hl$8MLt$hIMLIIHL1L1M4+Mux H$   Hl$xL$   H$   L$   H$   H$   H$   H$   H$   1oD fD HH@uH$H  dH+%(   uHX  []A\A]A^A_    ff.     fo    fo    Gfo    G fo    G0fG@     AWHA   AVH=AUATIHUSHHHGHIIAHHO@M)HGHJD7PM9   HA   HHxHHDHLHLH)H)DHLmPHOt&LL`I  IFHL   fD  HHH1L9uADAsA      H[]A\A]A^A_fD  A   EnA_DLfLM@ HLH[]A\A]A^A_%    fD  I$I}LHHEPDITITI)C.L)HH[]A\A]A^A_ÐA$EPBADfAD
1fD  IA$EPADAD

DLLfD  ATLfPUHSHFHHHHLPHo   p   H5    H)0  H    HH|H|HyHH)H)HHs@HHHHFxL9uHu1 HHHT HH@uHH[   ]A\%       H)H    sL      HLI|$L1HHCP    ID$h    H)pHLH5    H1H|0H|1HyHH)H)ȃHƃr1LL9ry@ uO    DfD5    @12DfD!    ҉DDҋ5    D1Dff.      USHHHH   fo    dH%(   H$   1H)$fo    H)D$fo    )D$ fo    )D$0f)D$@    HH    H$   dH+%(   u
H   []                                                                                                                                         "(ט/Be#D7q/;Mۉ۵8H[V9YO?m^BؾopE[N1$}Uo{t]r;ހ5%ܛ&itJi%O8GՌƝew̡$u+Yo,-ntJAܩ\SڈvfRQ>2-m1?!'Y=%
GoQcpn
g))/F
'&&\8!.*Zm,M߳
8ScTs
ew<
jvG.;5,rdL迢0BKfpK0TQlReU$* qW5ѻ2pjҸSAQl7LwH'Hᵼ4cZų9ˊAJNscwOʜ[o.h]t`/CocxrxȄ9dǌ(c#齂lPyƲ+SrxqƜa&>'!Ǹ}xnO}orgȢ}c

?G5q}#w($@{2
<L
gCB>˾L*~e)Y:o_XGJDlɼg	j;ʄg+rn<6_:OтRQl>+hkAكy!~[       zR x  L             BBB B(A0D8G
8A0A(B BBBA      l       8       x             BKF B(H0A8G@
8A0A(B BBBG|
8G0A(B BBBLt
8A0A(B BBBB ,             BED 
FBG   ,   ,          AAP
AAA                                                                                                                                                      "                      '      0                                     ,                      B                      S           8       f                  {                                                                                  SHA512_Transform K PAD .LC0 .LC1 .LC2 .LC3 _GLOBAL_OFFSET_TABLE_ __stack_chk_fail _crypt_SHA512_Init _crypt_SHA512_Update memcpy _crypt_SHA512_Final __explicit_bzero_chk _crypt_SHA512_Buf             	   |             )                                                      V      )      0         	   C         	         )               	   #         	            	            	            	            	               8            H            U            h         
   s                  )                            p                                                           0                    .symtab .strtab .shstrtab .rela.text .data .bss .rodata .rodata.cst16 .note.GNU-stack .rela.eh_frame                                                                                         @                                          @                     (      
                    &                                                          ,                                                          1                                                          9                           @                             G                                                            \                            X                             W      @                     x       
                                          x               
                 	                      (                                                                f                              /280            0           0     0     644     9696      `
ELF          >                    "          @     @ 
  9   )UISH/   0   1A   /   >   @ A>   DHA))ǃBDAD)9sI9sYL    ICDΉA40A3t^wI|3f     H?A40@pH9u H[] 1[]H1HvH    I{AHff.      AIPҀLv    1fD  .AUHATL%    EUSA?   IHnA/   1ɿ   /   1>    AōBD)A)։D9rA)AEE
t_FITE p@Lw,.HA?wHAH9u[H]A\A]f1[]A    HA\A]D  EDHff.     fAWAVIAUATUSH   HT$   H\$@dH%(   H$   @   L$,H9HFE1IHǸIH|$8EMDA@G@$   D$*MՍl O<    D\$+f$   HHD$H$   HD$H$   HD$ HGHD$0    H    Ht$ Hߺ   @$       Ht$    H    LLH    H|$ urM1H|$H    O<.LMtCHT$K4'@ HHJ0HH9uH|$ tH|$0T$*D$*B"$   A0>@:l$+t[@l$,AH|$8L|$M1   D$*A"D>LH߈$       LO<.H    LM` H|$$   $       H$   dH+%(   uH   []A\A]A^A_    ATIUSHH   IIH-    1fD  11@ HAT2	ЃwL9rHvUMdL1 L9tAAHA?FD DB9r܅uH L)H)L9sIHHu
1[]HA\ H[]A\D  UHIIS1H    @ MI9rXMtW11DAi@LwQA.McFA?w?AIHD	΃t5MuIu Mt@ 11[]IfD  E1ۅtvHH@wH9tMLLJL9r    uLDff.     AWfAVAUATUSH   H<$L$0  Ht$dH%(   H$   1A8$)D$`HD$p    D$d   )D$Pu>E`IILLA7tAyu!}$uA7uEEPҀL  D  1H$   dH+%(     H   []A\A]A^A_D  HuH|$<1XHHtD$<v=  wH|$@   D$P&HHtL$@?y   H|$`   HHD$XHT8$L@  LLD$LǾ$   H)HD$    LD$HI   M)A7  L\$HHD$LHD$H-H9$8    L9  HLLj H$   PIHD$hPH|$ LL$hHt$(    H H$   z  Ht-H$   @   @          HL    
H\$HLH    HL    LH$8  Hx $HL)H)            LH    HH$8  LH9 L.H5    HA>   LE1H1HD$XA x@L.H?I	T$`u11@ A x@Lg.H?UI	T$duH3 H$   H$   Iĺ@   @               L    D  LLHt$HL\$(H$   LD$ H|$HD$H@       H|$LD$ HL\$(tL)L9xHt+Ht$HHt!   HL\$ H|$"L\$ H|$IbHH|$D   HHJL$DuIul      >$!LFLD$L    LD$ID  H|$d   L$}L$HHu@ H|$h   L$UL$HHqH|$l   L$-L$HHR     H|$H   HH]L$H?P   HHD$p    ATIUSHH0dH%(   HD$(1HH    ubH    h   HE1HH    MHP1    HH    ZYu$HD$(dH+%(   uH0H[]A\     1    fD  AWAVAUATUSH   Ht$HT$dH%(   H$   1?$HD$     t1J  D  yHu$u$       HHj  L`H9E  L1    H+   E1L|$PLt$0Ht$(+   LHD$(    L    H   8    H|$(    HD$HtH¾    LHHD$Ht   H¾    L)MtHL$ IuLH    Ht0B+$    L,   L    HtH    Lt$01ۺ@   @   L            L    H$   dH+%(     HĨ   H[]A\A]A^A_    x$L@=  L9rS       L9  LIA8$uH)IILD$1IVwL    H+nMLD$.  L|$PLHt$ LLLD$HD$ @       LD$H8$H\$ Lt$0HCH?HT$Ht   HLLD$LD$HT$HtHLLD${LD$LfD  H    H+IE1L|$PD  H)IL    H+IE1L|$PLD$L1    H+HLD$A       L|$Peff.     AWHAVAUATUSHH<H4$Q  7IIHMǃv 0    $  IUH  HH;     fD  HЍIHHuHH    IU H  HHp     AHЍIHHuDHH  E  AEAUHH=?n      E$1H}fE IGHHH?  H)L   H)zHH  H)AUL   H)WHH   AEAu1AM      EtHL   H)H)HH   AUtH)L   H)HH   AUuZAU   E   J\= H9s[HG$LLHHH)H)H$    Ht4H9s/  H)    HL   H)H)ZHHuf1H[]A\A]A^A_    t&@ HuE1E    EG   fHL   H)H)HHyf     HL   DH)H)HHFA   ff.     A`   H
    ff.      AWfAVAUIATIUHSHHXdH%(   HD$H1$   I)D$0)D$ L$   LHD$@    LD$(DL$0D$4    ubH1HM$   MHLAWHD$8P    LH     u%HD$HdH+%(   uHX[]A\A]A^A_@         	
@@@@@@@
 !"#$%@@@@@@&'()*+,-./0123456789:;<=>?   $y             zR x  4              KD
ADCADC   @   T          eDM A(
 DBBCC
 ALBFL              BBE B(A0A8G
8A0A(B BBBA   4              BDA 
AEAGAB  $              AJr
AJ   `   H      `   BFB B(A0A8G
8A0A(B BBBFHIIY   <             BDA GPnXW`TXAPX
 DABI  L         e   BBB B(A0A8G
8D0A(B BBBH   H   <      5   BEB B(A0A8D@e
8A0A(B BBBH                \             BFB E(D0D8GTOKFO^
8C0A(B BBBE                                                                                                          !             M       0                  N     `              T             `                             Z                      _                     d                      s                                                                                                                                         0                                        `      /                     7                     K                     R                     Y    0             i                                                    e          @      5                                         encode64_uint32 decode64_uint32 atoi64_partial yescrypt_sha256_cipher.part.0 buf.1 buf.0 .LC0 .LC1 _crypt_ascii64 _GLOBAL_OFFSET_TABLE_ _crypt_SHA256_Init _crypt_SHA256_Update _crypt_SHA256_Final __explicit_bzero_chk __stack_chk_fail _crypt_yescrypt_encode64 _crypt_yescrypt_decode64 _crypt_yescrypt_r strrchr _crypt_yescrypt_kdf memcpy strlen _crypt_yescrypt _crypt_yescrypt_init_local _crypt_yescrypt_free_local _crypt_yescrypt_reencrypt _crypt_yescrypt_encode_params_r _crypt_yescrypt_encode_params _crypt_crypto_scrypt     t                          ,         	            
         )             )            )      "      )      ;      )            )            )            )      ,      )      L                      	   ;      )            )            )            )      >            T      )               	   W	      )      j	      )      	            Z
      )      ,      )      V      )      c      )      x            \                         )            )      .      )      R      )                              
            F
      )      Y
      )      
      )                        )            )            )      '      )      E            s                              )      4      )      C      )      y      )                            X                                                    0      $                  L                              0                        @            @                                           .symtab .strtab .shstrtab .rela.text .data .bss .rodata .rodata.cst2 .note.GNU-stack .rela.eh_frame                                                                                          @       }                                   @               8            
                    &                                                          ,                                                          1                           M                               9                                                        F                                                           [                                                        V      @               0!            
                                                                          	                      (                                                         8"      e                              /315            0           0     0     644     26264     `
ELF          >                    c          @     @  
 H   ATUHSHH=  wOE11A" TL    I  L    HtMHt<HHCLcHk[]A\@ E1A"   1   I    HuE111 E11A"      H    HtIff.     @ HHHDfDo fopfox foh0H
  HHH@ fo'H@HH@fofwfAffoffofrfrfoffofffofpۓfofrfr	ffffDofpNfofrfr
fffDfp9fAofArfrfDfofDfAfDofrfArfAffAoffDofrfAr	fAffofpғffDofrfAr
fAffofpNffp9fDofrfArfAfAfDofDfEofArfArfAfAfDofDfEofArfAr	fAfAfDofpۓfDfEofArfAr
fAfAfDofpNfDfp9fEofArfArfEfDfofAfDofrfArfAffAoffDofrfAr	fAffoffDofrfAr
fAfDofpNffDfp9fAofArfrfDfpfEfDofEfAofArfrffAfEofDfAofArfr	ffAfDofpۓfDfAofArfr
ffAfDofDfAofArfrfDfpNfp9fEfofAfDofrfArfAffAoffDofrfAr	fAffoffDofrfAr
fAffofpNffp9fDofrfArfAfAfDofpfDofEfAofArfrffAfEofDfAofArfr	ffAfDofDfAofArfr
ffAfDofpNfDfp9fAofArfrfDfp˓fEfofAfDofrfArfAffAoffDofrfAr	fAffofpfffDofr)FfGfAr
fAffofpNffp9ffDofrf)VfAr)NfOfWfAfAffo)ffgffofrfrffofofffofrfr	fffDofofpfAfEofEpNfofrfr
fffDfp9fAofArfrfDfofDfAfofrfrfffAoffofrfr	fDfDfofpۓfAfofrfr
ffAofEpNfffp9fofrfrffofAffDofrfArfAffoffDofrfAr	fEfDfofAfDofrfAr
fAffAofEpNffp9fDofrfArfAffpfoffDofrfArfAffoffDofrfAr	fEfDofDfEfEpNfAofArfr
ffAofAffp9fDofrfArfAfDpÓffAoffofrfrfffoffDofrfAr	fEfDfAoffofrfr
fAffAofEpNffp9fDofrfArfDfpfDfofAfofrfrfffofAfofrfr	fAffDofDpNfDfpfAofArfr
ffofAffp9fDofrfArfDfEfDofEfAofArfrffAfofAfofrfr	fAffDofDfpfAofArfr
ffofpNfAffp9fDofrfArfDfofEfAfDofrfArfDfDfAofAfofrfr	fffofAfEpɓfofrfAfr
)@ffofpNffffp9)hfofrffr)HffofofAffo)`fDoH9fAWAVAUATUSHH  LlIIHyMH1LYIILQM1H    K8fofoPfoH fo@0,D  HA)LHA)QII@HA)IA)AfAfAPK\|fAH fA@0I   I@fH~fpH!f܉H ffI!fH~fpH!fԉH fffH~fpH!f̉H fffH~fpH!fĉH fffH~fpH!f܉H fffH~fpH!fԉH ff)[fH~fpH!f̉H ff)SfH~fpH!fĉH ff)KfH~fpH!f܉H ff)CfH~fpH!fԉH ff)[fH~fpH!f̉H ff)SfH~fpH!fĉH ff)KfH~fpH!f܉H ff)CfH~fpH!fԉH ff)[fH~fpH!f̉H ff)SfH~fpH!fĉH ff)K$fH~fpH!f܉H ff)C4fH~fpH!fԉH ff)[DfH~fpH!f̉H ff)STfH~fpH!fĉH ff)Kd)CtfH~fpH!f܉H fffH~fpH!fԉH fffH~fpH!f̉H fffH~fpH!fĉH ffL9NfoMM$fIt$fofrI|$frfDoMT$fDfofDfAfofrfr	foffAofffofrfr
foffofpNfffp9fofrfrffApffDofDfEofArfArfAfAfDofDfEofArfAr	fAfAfDofpfDffEofArA)n0fAr
fAfDofpNfAffDfp9A)f fEofArffArA)vfEfAfA)H[]A\A]A^A_H
      H5    H=        fHHHIHLQLJNAH
  H1ɐH
J@HL9uHHJfAo;	fAokfAos fAoc0f:fjfr fb0M
  IHHJ4Hf.     fo fH@HHH@fofo@fBfffo@fBffo@fBffoffofofofrfrffffofrfr	ffofpғfffDofpNfofrfr
fffDfp9fAofArfrfDfofDfAfDofrfArfAffAoffDofrfAr	fAffofpɓffDofrfAr
fAffofpNffp9fDofrfArfAfAfDofDfEofArfArfAfAfDofDfEofArfAr	fAfAfDofpғfDfEofArfAr
fAfAfDofpNfDfp9fEofArfArfEfDfofAfDofrfArfAffAoffDofrfAr	fAffoffDofrfAr
fAfDofpNffDfp9fAofArfrfDfpfEfDofEfAofArfrffAfEofDfAofArfr	ffAfDofpғfDfAofArfr
ffAfDofDfAofArfrfDfpNfp9fEfofAfDofrfArfAffAoffDofrfAr	fAffoffDofrfAr
fAffofpNffp9fDofrfArfAfAfDofpfDofEfAofArfrffAfEofDfAofArfr	ffAfDofDfAofArfr
ffAfDofpNfDfp9fAofArfrfDfpfEfofAfDofrfArfAffAoffDofrfAr	fAffofpfffo`fbfDofr)yfAr
fAffofpNfffp9fDofr)IffAr)AffAfAffoPfR)YffoPfRffoHfJffoffofrfrffofofffofrfr	ffofofpfffDofpNfofrfr
fffDfp9fAofArfrfDfofDfAfDofrfArfAffAoffDofrfAr	fAffofpffDofrfAr
fAffoffp9fDofrfArfAfDofAfDpNfDfAofArfrffAfDofDfAofArfr	fDfofpfEfAfDofrfAr
fAffAoffp9fDofrfArfAfDoffApNfDfEofArfArfAfAfDofDfEofArfAr	fAfDofAfDfEofArfAr
fAfAfDofpNfDfp9fEofArfArfEfDpfDfAofAfofrfrfffofAfofrfr	fffofDpNffpfofrfr
fAffoffp9fDofrfArfDfEfDofEfAofArfrffAfofAfofrfr	fAffDofDfpfAofArfDofr
ffofpNfAffp9fDofrfArfDfEfEfEofArfArfDfEfAofAfofrfr	fffofAfEpfofrfr
ffofpNfffp9fofrfrffAofAffDofrfArfDfDfAoffofrfr	fffofDpNfAfofrfr
fAfDoffDfp9fAofEoffrfAr)FfofAfAofEpfff)FfofAof)^fo)FfoH9f~ H+AWAVAUATUSHLL$M	
  IHD$HIMIOLLXHLPLhHH>E	  H1@ HH@H9uHfo+fo{Ifos foc0IE1f/fI@H    fw fg0-D  A),$MIMA)|$IIA)t$A)D$fAof] K\*|fAoPfAoH fUfM ffAo@0fE0fffLLI   fH~fpH!f܉H fffH~fpH!fԉH fffH~fpH!f̉H fffH~fpH!fĉH fffH~fpH!f܉H fffH~fpH!fԉH ff)[I!)SfH~fpH!f̉H fffH~fpH!fĉH ff)K)CfH~fpH!f܉H fffH~fpH!fԉH ff)[)SfH~fpH!f̉H fffH~fpH!fĉH ff)K)CfH~fpH!f܉H fffH~fpH!fԉH ff)[)SfH~fpH!f̉H fffH~fpH!fĉH ff)K$)C4fH~fpH!f܉H fffH~fpH!fԉH ff)[D)STfH~fpH!f̉H fffH~fpH!fĉH ff)Kd)CtK\+|fH~fpH!f܉H fffH~fpH!fԉH ffA)\$A)T$fH~fpH!f̉H fffH~fpH!fĉH ffA)L$A)D$fom@fo}PfAh@fAxPfou`foepfAp`fA`pffffLLfoHI   fofoIfH~fpñH!f؉H ffI!fH~fp±H!fЉH fffH~fpH!fȉH fffofH~fpH!fĉH fffH~fpH!f܉H fffH~fpH!fԉH ff)[fH~fpH!f̉H ff)SfH~fpH!fĉH ff)KfH~fpH!f܉H ff)CfH~fpH!fԉH ff)[fH~fpH!f̉H ff)SfH~fpH!fĉH ff)KfH~fpH!f܉H ff)CfH~fpH!fԉH ff)[fH~fpH!f̉H ff)SfH~fpH!fĉH ff)K$fH~fpH!f܉H ff)C4fH~fpH!fԉH ff)[DfH~fpH!f̉H ff)STfH~fpH!fĉH ff)KdfH~fpH!f܉H ff)CtfofH~fpڱH!fӉH fffofH~fpѱH!fʉH fffofH~fpȱH!fH fffoM9>fHD$fofrfrfDoLfDfoLPfDLHfALhfofrfr	foffAofffofrfr
foffofpNfffp9fofrfrfDofDfApѓfDfofAfDofrfArfAffAoffDofrfAr	fAffofpɓfffDofrA)L$0fAr
fAffofpNffp9ffDofrfA)D$ fArA)T$fAfAfA),$Hf~[]A\A]A^A_fD  H1     H
H@H9uKH
      H5    H=        ff.     AWAVAUATUSHH	  IIHLMLQLIIIvLa1LHHI;
@ H	H@H9uHD= foIE1fozfor H@foj0f H    fxfp fh0'fD  )E MIM)}IH)u)MfAo#feK\!|fAo[fAoS f]fUA)#ffAoK0fMA)[fA)S fA)K0fLLfo}fou fA{PfAs`I   fH~fpıH!fH f$f$fom0fAkpI!A){PfH~fpñH!f؉H fffH~fp±H!fЉH fffH~fpH!fȉH fffH~fpıH!fH f$f$fH~fpñH!f؉H ff)cfH~fp±H!fЉH ff)[fH~fpH!fȉH ff)SfH~fpıH!fH f$f$)KfH~fpñH!f؉H ff)cfH~fp±H!fЉH ff)[fH~fpH!fȉH ff)SfH~fpıH!fH f$f$)KfH~fpñH!f؉H ff)cfH~fp±H!fЉH ff)[fH~fpH!fȉH ff)S$fH~fpıH!fH f$f$)K4fH~fpñH!f؉H ff)cDfH~fp±H!fЉH ff)[TfH~fpH!fȉH ff)SdfH~fpıH!fH f$f$)KtK\"|fH~fpñH!f؉H fffH~fp±H!fЉH fffH~fpH!fȉH fffoE fAC@)efA)s`fA)C@fA)kpf)])U)MLLfoII   fofH~fpȱH!fH ffI!fH~fp˱H!fىH fffH~fpʱH!fщH fffofH~fpH!f̉H fffH~fpH!fĉH fffH~fpH!f܉H ff)CfH~fpH!fԉH ff)[fH~fpH!f̉H ff)SfH~fpH!fĉH ff)KfH~fpH!f܉H ff)CfH~fpH!fԉH ff)[fH~fpH!f̉H ff)SfH~fpH!fĉH ff)KfH~fpH!f܉H ff)CfH~fpH!fԉH ff)[fH~fpH!f̉H ff)S$fH~fpH!fĉH ff)K4fH~fpH!f܉H ff)CDfH~fpH!fԉH ff)[TfH~fpH!f̉H ff)Sd)KtfH~fpH!fĉH fffH~fpH!f܉H fffofH~fpڱH!fӉH fffofH~fpѱH!fʉH fffoM92fMfofrMOfrfDoMGfDfoMgfDfAfofrfr	foffAofffofrfr
foffofpNfffp9fofrfrfDofDfApٓfDfofAfDofrfArfAffAoffDofrfAr	fAffofpғfffDofr)U0fAr
fAffofpNffp9ffDofrf)M fAr)]fAfAf)E Hf~[]A\A]A^A_H
      H5    H=        fD  AWAVAUATUSH8LL$L$   HO  HỈE1IHE1IK/H       EI1AMID  AHHuCH H	ЋS(IC<H H	ЋSIAC$H H	ЋS8IACH H	ЋS IAC4H H	ЋSIA CH H	ЋS0IA(CH H	ЋSIA0C,H H	IA8ENMI9ADvCt/AD!H|$x   D$pH\$ HL$H$   H|$(D$E0       H|$HHHIH4Lpt$IHA   LL!IHt$xD!IuHL$H\$ H|$(E11H   @ H1M7HAHHuHLC0SLH FHC(VHSFH VHH VHS8FHC VH F CF$HCV,F(S$H DF0V4HSF<V8AqIH9]H8[]A\A]A^A_fD  HL$IE1HLLIH4Ht$IHA   LL!IHt$xD!IuEtoHL$H|$ H\$H\$H$   HLIH4H$   HLD!IHD!IuHL$H\$H|$ hH$    HL$tfH|$ H\$H\$L$   E1HILLH	E1HLL$   LD!IHD!IuvH|$HD$HHILHHLH߉HD$D!IHtD!IuHL$H|$f.     AWHIAVMAUATIUSHHI,HhHɉT$8L$   HL$P   Ll$P11fD  AH1ALMD  AL HHuUM H H	ʋM(HU<H H	ʋMHVU$H H	ʋM8HVUH H	ʋM HVU4H H	ʋMHV UH H	ʋM0HV(UH H	ʋMHV0U,H H	HV8wHL9@H$    H| H|$'  HD$PAqLLIt$ A   HHL$   LT$L$   HH$   DLt$L!L$   A   HHLH$   t$8LT$L$     MLT$(~ILd$XL$   Ll$L$H   |$LLD  T$Lt$H)9Bу   qH|$0E1t$HEL$<t$T$@    |$L4+ME1LL!HB4(HD$(HHt$ LMA   L!HD$HH$   HH|$DA9uT$@Ht$H|$0L$<HH׋t$8	9sH|$Ld$XQLT$(L$   !Ћt$8H|$E1L$   L$   t0H,)HLHL8|$ LL$   H$   A   !HHHH$   HL$   L11H|$P LL$P       H1M3I4     AHHuHHs0SHH AHC(QHSAH QHH QHS8AHC QH A CA$HCQ,A(S$H q0wQ4HSHA<Q8L9WHh[]A\A]A^A_èuqDD$8IMLM)IAIHHLLHLHLAuLHHLLH1   ;LLHLT$H$   L$   Lt$HLH$   Lt$8LADLT$L$     Ld$@MՉL$0Lt$<HHL$   T$<t$0)9Bу   T$DaI   H|$ L$(L|$D  D!N<3HL$LtL$   E1LHLHL$LE1D!L$   t HD$HILL|$9rHt$H|$ L$(L|$HH׋t$8	9s&H|$Ld$@MiL$   !Dl$8H|$E1LT$L$   L$   A)L4LAtLHLLT$E1L!L$   H$   LAtHLL$   11   tff.     fA1AWAVAUATUSIDHx   DȃIՉD$8P  Ab  AL|  L1IHLHHpHA  ALDT$E1D$`H$   HD$    L 0  Hl$(H/LD$HMHt$0HT$PH|$XL4$DT$dL$<DL$LD$hL$`H|$(IƋ\$l$T$8A9IBHI)E1H$     HILARLT$0$   $   D$   L$(Ht$ LT$@H     HCHH!uARILA$   I@0  $   $   PH\$ DD$(HL$PHDHD)l$<Dl$0HH LD9d$<Ht$0HT$PHl$(L\$HH|$XL4$DT$dL$<DL$LD$hH9   AH)DT$Hi@0  D$E1L$   HT$ILt$MI D$8LLIEI@0  IRAW$   $   PL$   DD$ HL$(T$<Ht$0dH L9uHx[]A\A]A^A_EHHEHHHHIЅILHH    HD$@HE11j `      L$   M j LD$@LD$@H EIG    MHD$@fInMGflf    AL|$ Hx    L$   @   L    LT$ Et(At:DHHH    HEHHH    HEHBHH    AWAVIAUIATUSH   H$@  HT$HL$ $  LD$8L$  LL$@L$8  HD$HdH%(   H$   ؃B    t              $0  uMuH   H;$H  r$   ICD$(  IMH9rI?wICLu$   z$(  kH 1IH9SH1HL9;؃D$0tL1IHM  HIRIHLIRH9I9EAMmA     HIHIFH9       IFIL|$(HD$HHIDL$0EtMi@0  MMjE  f)D$`)D$pM9~>       M~HD$(t$0LHD$HHD$    HMA   E1L$@  L$   t$0HL$PHT$HHt$0H|$(    Y^$(  L$  HD$P    L$8  w  fD  ADHLL$   AVATt$ AUARt$0D$`  $X  H0      H|$`LL$8  L$  HL$P~H<L|$hHD$(E1|$0HL$PLL$  L$8  HD$t	HD$L$      !  L$   HL$ HT$L$8  L$  MH=        HMLt$0A   HL$P    HT$H    XZL$  L$8  tAo)$   AoW)$   HD$`$(  Lt$HD$     HD$PDt$0EHME1D\$@H$  LD$  HD$0Hl$8DD$(  L|$XE     j HE   j t$ AUAWt$0D$`  T$pHt$hLHD$`H0HD9rL|$XDtH$H    HA   L$P  LL$XHL$8Ht$0H|$(    _AX  H|$P tHt$pH|$P    F  1H$   dH+%(   }  H   []A\A]A^A_@  %  =   D  fHyescryptIDH9H-ROMhashH9PHIHIL|$(IrHD$    E1fD  MRHAIHA   tt I> L$8  L$  DD$I~ 	IFHLHT$4HT$DD$HL$  L$8  @    fD  H$   HA   Lj Ld$8ILl$0Lt$(LLL    AYLA   $P  LLLLL$X    AZHA[   L$      L                    H    @ I>HtFL$8  IvL$  HT$HL$    HL$HT$L$  L$8  fLLHT$AAFL$8  L$  HL$иHL$HT$HL$  L$8  o     H|$HH$   fD  M
       H        H    L        H9$H  HF$H  sB7  $   HD$HHD$HLfL HD$HH$   IHHxHt
HHtH)I)F1ɉȃI4H49r+E1   L$   L$8  HL$ E1L$  HT$M   H=        HMLt$0A   HL$P    HT$H    XZL$  L$8  iH$H  H|$HH    $   HD$H҉LLfvl    ff.     AWIAVAUATUSHxH$   L$   dH%(   HT$h1ҋL`DhhDPLp @  %  uuG$   LAWAVARUAUATSH@HT$hdH+%(     Hx[]A\A]A^A_D  HLHT$1Ht$H=   vDHH v$   LAW
   AVARDT$\UAUATPLL$pLD$hHL$`L\$XHt$PH|$HH@H|$Ht$L\$HL$ LD$(LL$0DT$<   DT$0Lj HHD$HHD$PAVj UAURځ   RLLL$hLD$`Ht$XH|$PqH@$       AWAVDT$HARUAUATSH\$HLL$hLD$`Ht$XH|$PH'        H߉D$HH@    D$         j    @ AWAVAUIATUSH   o	oQdH%(   H$   LY HD$p    )L$P)T$`L\$X   T$Pr  Hy Hd  IY     HI  HGH:  HWH-  HDfLt$P @@ o[oILL\$XA   L1)\$ HD$(L    )D$0HL\$HD$(fod$ )D$)d$@HD$8HD$Hj HL$   AWAVHD$     H p  L\$MLLA    L\$pL\$0Hj LAWAVH|$ L\$(    H *  HLA    Mj LAWAVHt$ H|$(    H Aą   HCHS    Lfo    HTH$   HBH$   HBH$   HB H$   HB(        H$   dH+%(      Hĸ   D[]A\A]A^A_@ 
   	L$fHD$PHE1E111AG1j j Lt$hAV    H u>H{ t7A   L$D$PfD          L    E    tA@H;HtHs    ufC        HGH/vfHyescryptHWHD1H9uCH-ROMhashH9Hu3HPH    HPH    HP H@(H    H    H    HD  1Hf.     SHH?HtHs    uf1C[ø[f1GfSHH?HtHs    uf1C[ø[../lib/alg-yescrypt-opt.c ctx != NULL yescrypt-prehash Client Key yescrypt-ROMhash              blockmix_xor_save       blockmix_xor    blockmix                               yescrypt-ROMhash       zR x  ,              IAD R
ABE      L       >
      H   `          BBB B(A0A8D@
8A0A(B BBBA                 H          E
   BBB B(A0A8DP	
8E0A(B BBBGH         

   BBB B(A0A8D@	
8E0A(B BBBAH   X      &   BBB B(A0A8Dpi
8A0A(B BBBGL            BJE B(D0A8O
8A0A(B BBBA               IDB B(A0A8J JLG_UQNHlBGHdI
8A0A(B BBBAMGTIS          	   BBE E(A0A8GX`[ACBDBBDXJ^AMGBBD_gP[BH
8A0A(B BBBELKcPVE6J\A      |         BEB B(A0A8DWEBBABBAIX
8A0A(B BBBFsGGBFBBAgvOBBABAI`OGBGABBAv   X      	   BBB E(A0A8G
BMBNjBEBSLNEBS
8D0A(B BBBEXXBGI           v                0    Ag
AF    ,                 @      0    Ag
AF                                                                                                         >
                       '     (       	       =                      B                     G                  [           E
      h            
       ~     @&      

                               P0      &           4                 `;                 @?      	            &                     7                     B                                                                                                                                                                                          +                     <                     Q                     X                     m                                              @I                `K      	          pN      v           N      0            O                 0O      0        alloc_region blockmix_salsa8 blockmix __PRETTY_FUNCTION__.3 .LC0 .LC1 blockmix_salsa8_xor blockmix_xor __PRETTY_FUNCTION__.2 blockmix_xor_save __PRETTY_FUNCTION__.1 smix2 smix1 smix yescrypt_kdf_body .LC3 .LC4 .LC5 digest.0 .LC2 .LC6 _GLOBAL_OFFSET_TABLE_ mmap __assert_fail _crypt_HMAC_SHA256_Buf __errno_location _crypt_PBKDF2_SHA256 munmap __explicit_bzero_chk _crypt_SHA256_Buf __stack_chk_fail _crypt_yescrypt_kdf _crypt_yescrypt_init_shared _crypt_yescrypt_digest_shared _crypt_yescrypt_free_shared _crypt_yescrypt_init_local _crypt_yescrypt_free_local A       )             )             )                  $                                     )      &                   $&            +&            1&      )      -0            90            @0            F0      )      >            >      )      ?      )      A      )      B            C      )      .C      )      jD      )      D      )      <F      )      bF      )      F      )       F      )       F      )      G            G      )      G      )   !   H            H      )      H      )      H      )       1I      )   "   0K      )       BK      )      XK      )   "   ML            L         #   L         #   M         #   9M            |M      )       M         #   'N      )       NN      )      eN      )   "   N            N                   N                   N            N                   O      )      BO      )                            P                    d                                                                     @&      \            P0                  4                  `;                  @?                  @I      \            `K                  pN                  N      0             O      D            0O       .symtab .strtab .shstrtab .rela.text .data .bss .rodata.str1.1 .rodata .rodata.cst16 .note.GNU-stack .rela.eh_frame                                                                                          @       `O                                   @               [      X                          &                     O                                     ,                     O                                      1      2               O      S                             @                      P      1                              H                     @P                                    V                      `P                                     k                     `P      `                             f      @                a               	                                       U                                	                      Y      0                                                   b      u                              /347            0           0     0     644     18224     `
ELF          >                    B          @     @   LcHSIH5    VD  HAA<D	WHPL9sTP1HHA	A?Bf_L9s$0HHL9rG[Ð[G    Hf.     HȉGH9uff.     @ AWIE1E1AVDE1AUAL-    ATIHUHS˃HdH%(   HD$1f     111D>DD	ED	   AHA   E	@IDu$1D$A	CC3D BD IIHuDڸ  A	D	)D!D!1E HD$dH+%(   u9H[]A\A]A^A_D  @tH   CD  Lֹ   1    D  AWAVAUATUSHX>$u	~2Ht$        1HX[]A\A]A^A_    FIԍPwL    aA< t~$uFPЀwVHˍJЀ	wI<3u1}$u0BH   AD9dH  HEHt$8LEH}   L=    A?2P _"E,DA?AD	H9t}H _L=    E,DA?AHD	VP _A?H	шNI9t _@H|$8   D\$L   LH  ELLLσaAH    H{H5    HHH    H  HH)   H)1H1D\$H  3   1A̉AE<B   3   HDB   3    3  11AAEB   3      3  1AAEB   3      3  1AAEB   3      13  AAEB   3      3  1AAEB   3      3  1AAEB   3      3   1AAEB   3      1AAEB   3   3$     13(  AAEB   3      3,  1AAEB   3      30  1AAEB   3      1AAEB   3   34     1AA38  EB   3      3<  1AAEB   3      3@  1AAEB   3      3D  1ʉ     HH(H       3   H1AAE<B   D3     B   3  3  11AAEB   3      3  1AAEB   3      3  1AAEB   3      1AA3  EB   3      3  1AAEB   3      3  1AAEB   3      3   1AAEB   3      1AAEB   3   3$     13(  AAEB   3      3,  1AAEB   3      30  1AAEB   3      1AAEB   3   34     1AA38  EB   3      3<  1AAEB   3      3@  1AAEB   3      3D  1ʉFV􋋐  3   1AAEB   3     3  1   1AAEB   3   3     13  AAEB   3      3  1AAEB   3      3  1AAEB   3      3  1AAEB   3      3  1AAEB   3      3   1AAEB   3      3$  1AAEB   3      3(  1AAEB   3      1AAEB   3   3,     130  AAEB   3      34  1AAEB   3      38  1AAEB   3      1AAEB   3   3<     13@  AAEB   3      3D  1ʉFVL9L@  HL~~@HHff@L9uD@  D  A   1D\$M1҉fD@  D  3   IƉA@   B3   D3  B   3  1̉A@   B3   D3  B   1ՉA@   B3   D3  B   1ƉA@   B3   DB   1̉A@   B3   D3  B   3  1ՉA@   B3   DB   1ƉA@   B3   D3  B   3   1̉A@   B3   D3$  B   1ՉA@   B3   DB   13(  ƉA@   B3   D3,  B   1̉A@   B3   D30  B   1ՉA@   B3   DB   1ƉA@   B3   D34  B   1̉A@   B3   D38  B   3<  1щAAFD   DD3   B   1ƉA@   B3   D1B   AR1D1AJM95D\$HD  3   HAAAEB   B3   D3  B   3  1AAAEB   B3   D3  B   1AAAEB   B3   DB   1AAAAEFF   D3     1D   D1AAAEB   B3   D3  B   3  1AAAEB   B3   DB   1AAAEB   B3   D3  B   3   1AAAEB   B3   D3$  B   1AAAEB   B3   DB   13(  AAAEB   B3   D3,  B   1AAAEB   B3   D30  B   1AAAEB   B3   DB   1AAAEB   B3   D34  B   1AAAEB   B3   D38  B   3<  1AAAEB   B3   D3@  B   1AAAEB   B3   D3D  B   W1OL9AtaD    L~  o  o Hf@I9u~@  D3@  A   3D  ffփ@  A  HD  Ld$H@  D   Hl$@D$  AD  D  D$   D  D  D$$    D$(  D$,  D$0  D$ 4  D$$8  D$(<  D$,1H5    HD$0L0@    D1AAAEB   B3   DD1B   D11AAAEB   B3   DD1B   1AAAEB   B3   DD1B   1AAAEB   B3   A   D1AAAEB   B3   D1B   1AAAEB   B3   Dt$D1DB   1AAAEB   B3   Dt$D1DB   1AAAEB   B3   Dt$D1DB   1AAAEB   B3   Dt$D1DB   1AAAƉEB   D|$B3   DB   D11AAAEB   B3   Dt$D1DB   1AAAEB   D|$ B3   DB   D11AAAEB   B3   Dt$$D1DB   1AAAAEF4F   D3   L$(1D   A1DDAD   B   1ʋL$,1AA1   1AΉAEB   3   D1   D1HD$0    HHHl$@Ld$HH5    H    H\$8o] HA$oeAd$E H   0AD$|I|$   HAD$<    f.     AWAVAUATUSH  dH%(   H$  1H<r  I#  e  MI  HIA   LHTH      H
    fo    fo
    Iċ o    M  )$`  H$`  A   H=    D$AF$m  aA  H
    $b  LA  A  L4A  L  I  I  H3$`  H3$h  H	  I  I  H3$m  H3$u  H	v  I  I
  I3I3FH	u,I  I  I3NI3FH	uAF E1A8"  tA   HD$pHt$    HH=    HD$L$   Ht$H$  L   HH=    HD$~D$p   T$pE   =Y   $   543   H|$H   L       Ht$H|$H          Ao  D$oecom k ou-s-A$     "   H$  dH+%(   u^HĘ  []A\A]A^A_    HT$pHt$    H    HH$     HH$   mA$       ff.     fHLLLL$LD$     H8dH%(   HD$(1Hu'   Hv&IwR     "        HGHv&        HD$(dH+%(   uyH8D  HvIv    oA$Ht$HL$HH)D$HB0AH   HH)ǃ0@yHyHL$A w    ff.     HLLLL$LD$     H8dH%(   HD$(1Hu'   Hv&IwR     "        HGHv&        HD$(dH+%(   uyH8D  HvIv    oA$Ht$HL$HH)D$HB0AH   HH)ǃ0@yHyHL$A w    ff.     HLLLL$LD$     H        Hff.     HLLLL$LD$X     H8dH%(   HD$(1Hu'   Hv&IwR     "        HGHv&        HD$(dH+%(   uyH8D  HvIv    oA$Ht$HL$HH)D$HB0AH   HH)ǃ0@yHy/HL$A w    34345                8b        $2a$00$abcdefghijklmnopqrstuu   i1D709vfamulimlGcq0qq3UvuUasvEa U       VUrPmXD6q/nVSSp7pNDhCR9071IfIRe U                                   @@@@@@@@@@@@@@ 6789:;<=>?@@@@@@@	

@@@@@@ !"#$%&'()*+,-./012345@@@@@./ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789                                1Ѭߘr/Ḗ~&jE|,G$l iciNWqX~=t
XrX͋qJT{YZ90`*#`(yA8۸y:`l>w'K1/x`\`U%U攫UbHW@cj9U*4\̴ATr|*oc]ũ+1t>\3֯\$lS2zw(H;Kkē!(f	a!`|H2]]]u#&܈e>#Ŭom9BD. Ji^Bh!lagӫҠQjh/T(3Qln;zP;*~ev9>YfCoEå}^;uos D@jVbNw?6r=B$7H
ۛIrS{y%P;LylO`@\^c$johSl>9oR;Qm,0DE	^J3(fK.WtE9_ӹyU
2` yr,@%g̣饎"2u<kaP/R=2`#H{1S >W\o.ViB~(2gsUO'[iXʻ]=!lJ[-ySeEIҐK3~ˤAb Lw6~д+MەqՓkю%ǯ/[<ud+
^OÏhѭ"//w-u̠toO;|٨f_ws̓w!e wBT5렉>{AI~-% ^q  h"W6d$	cUYCxSZ٢[} Źv&ϕbhAJsN-GJ{R Q)S?Wƛv`+ t恵oWk
*!ec.4dV]-SGjnpzKD).	u#&İn}ߧI`fqilRdVឱ¥6)L	u@Y>:䚘T?eB[k?ҡ08-M]% L&pc^?kh	><pjk5hRS7P>\D}W7:
P t<Xz%!	/|sG2G":74vȧFaD>Au8/;21>8TNmO
Bo
,y|$ryVw.?rU$qk.P̈́GXzt}K:zfC	cdG27;C$CMQe* P:qUN1w_V5kǣ;<	$Y,n<pEㆱo
^*>Zw=Ne)։>%fRxL.jxS<-
N=+6&9`y#RnfE{7(2åZl!Xeh;/ۭ}*/n[(!pa)uGa0a4c\s9pLު˼,b`\ndi#PZe2Zh@*<1!T_~}=b7w-_h)5ǡޖXxWcr"ÃF
T0.SHُ(1mX4a(s<|J]d]B> EꫪOlOBBǵj;Oe!AyMjGKPb=bF&[$tiGV [	Htb #*BXU>ap?#r3A~_;"lY7|`t˧@n2w΄PU5aiZ.zD4Egɞs͈Uy_g@Cge48>q(= m!>J=+hZ=@&L4)i Av.kh q$j 3ԷCa P.9FE$tO!@MpE/f	m1'A9UG%ښ
ʫ%xP()Sچ,
mbh iHפh'?Oz|Ϊ_7әxB*k@5 ٫9N;VmK1f&tn:2C[Ah xN
جV@E'H::SU kKмgUXc)3VJ*%1?~^|1)p/'\,(H"m?H܆AyG@n]Q_2Տd5A4x{%`*`lc´2Of#k>3b$;"
r(-Exb}doITH}'>AcG
t.no:7`L
knU{7,gm;e'
) ̒9i{f}ϑ^و/$[Qy{;v.97yY̗&-1.Bh;+jLu.x7BjQ满PcKkؽ%=YBD
n*Ngd_ڈ鿾dW{x`M``FѰ8Ew63kBqA_^ <Ww$轙BFUa.XXN8t½fStUuFa&zyj_YnFpW UՌLHbtu	ܩ	-f3F2Z茾	%Jn=ߤih(ڷ9WRO^Pĵ'
'A?wL`õa(zX` b}0מc8#S4V˻޶}vY	o|K=
r9$||_rㆹMr[xUT|=M^Pa<QloNVο*6742cg `@79:7w«-Zg\B7O@'Ӿs~-{ kE!nn6j/HWynvIeS}ލF
sMLۻ9)PF&^Q-jc".$CaMjP[d&(::KbU/Rio?Y
w	>;Z4ٷ,Q+:Ֆ}}>(-}|%rZLZq)GW;()f(.y_xU`uD^mm%adâW<'*:m?!cf&(3uU4V<wQ(
gQ̫_QM08bX7 z{>d!Q2Ow~㶨F=)iSHd$m-if!	
FEdlX [@X̻k~jEY:D
5>ʹrdfGo<cҞ]/Tw®pcN
tW[qr]}S@@NjF4(:Hn΂;?o 5K'r'`a?+y:%E49KyQ2/ɺ~ǼǪIO8
*9g6|1O+Y:CE',"*q%a뜶YdѨ^jePBn;ۘLdx22ߒ+4qAt
4K q2vÍ5./GoTLybo~>f,ҏ"W##v215VbuZ6ns҈bIPLVq
z2E{S b%ҽ5iq"|˶+v>S@`8G% 8vFšw``u N˅؍芰z~L\HjiԐ\-%	?2aN[wߏWr:j?$.Dsp"8	1).lN!(Ew8fTl4)P|ɵՄ?	Gy        hprOBnaeloheSredDyrctbuo                        UUUUUUUUUUUUUUUU$2b$$2a$$2y$           zR x                G
BE   <       !       H   P       +   BKI M(G0D8IP
8A0A(B BBBF H          F   BBB B(A0A8D`
8A0A(B BBBH L          #   BBB B(A0A8G
8A0A(B BBBH      8                L          D@f
F    h                |          D@f
F                              DP                              D@f
F                                                                               A                   !                   +      (     `      H      6            F      ?                   P            `       Z                  e     P      #      s                                
                                                                                                  	                      
                      
                     
                                                                                                                                             (    !             A    !             \    "             u    "                 "                  #              BF_encode BF_itoa64 BF_swap BF_set_key BF_init_state BF_crypt flags_by_subtype BF_atoi64 BF_magic_w BF_full_crypt test_setting_init.1 test_key.0 test_hashes.2 .LC1 .LC0 .LC2 .LC3 .LC4 _GLOBAL_OFFSET_TABLE_ __stack_chk_fail __errno_location memcmp _crypt_crypt_bcrypt_rn _crypt_gensalt_bcrypt_rn _crypt_crypt_bcrypt_a_rn _crypt_gensalt_bcrypt_a_rn _crypt_crypt_bcrypt_x_rn _crypt_gensalt_bcrypt_x_rn _crypt_crypt_bcrypt_y_rn _crypt_gensalt_bcrypt_y_rn     
                                 \            )            )      R            |                          0                               \                  \                  T                                                                    )                  |                                                                     '                        D                  )            )            )      :             o       )             )             )      !            !      )      !      )      !      )      ."            "      )      "      )      ,#      )      L#      )      ~#            #      )                    0                    X                             @                    T                                                     P      <                   P                   l            !                  !                  "                  "                  "                   #       .symtab .strtab .shstrtab .rela.text .data .bss .rodata.str1.1 .rodata .rela.data.rel.ro.local .rodata.cst16 .rodata.cst4 .note.GNU-stack .rela.eh_frame                                                                                             @       #                                   @               (=                                &                     %$                                     ,                     %$                                     1      2               %$                                   @                     @$                                    M                     6                                    H      @               @      0                           `                      6                                   n                     06                                   {                      <6                                                          @6                                         @               A      8                                                08      0                          	                      `;                                                         PB                                    /375            0           0     0     644     5416      `
ELF          >                    h          @     @  
 UE1HSHˉHHdH%(   HD$1HH$        HsH
    cfD  S<	H{EHH)H   CE1HH	Ѓ?DD$9fEHH)H~3H{0U HH)H{HEE  HD$dH+%(   uH[]D  HE    D  AUATUSHLl$0HL$8I
B  H   5  2@z  H@`   @Z   @@5  .   Nj@z   @`   @Z   @@  .   .H=    M`1	̓?I   I   4fAH@ 8?
8HHH9uL    L    HHL[L]   A\A]    N2             H[]A\A]f          "   H[]A\A]f     ;     N     5     AWAVAUATUSHHLd$PHD$XHv
H
  I     H=     
Ȁz	  `  Z  @  .<  AJʀz  iŀ` Z  iˀ@.  iH5    Mx1	Ń?I   H|$M$   M$   4fA L ;HHL9uLL    L    LL   L   A/@z4  @`   @Z   @@   ..CAWրz   ``Z   @r..@CHL$I	I9!H[]A\A]A^A_H[]A\A]A^A_W    ;     ;s     5     5S          "   H[]A\A]A^A_        H[]A\A]A^A_ÍAA3fD  AWAVAUATUSHH\$PHD$XI  H=     :_Y  HO  I1HzE17@z4  @`j  @Z   @@v  .<  .HA	uD$    Hz17@z   @`   @Z   @@\  .<   .	t$HuH1HH   L   I BA@I@	HD$    Hǃ       ID  AA2D$A$A?IIM9uHH    A?    E1   HLH    f             H[]A\A]A^A_D       "   H[]A\A]A^A_D  ;     ;     5     t$H    HT$LDHH[]A\A]A^A_rf5     HIvNHv0Hu+H    ?FA ?AHÐ        H         "   H    HIvNHv0Hu+H    ?FA ?AHÐ        H         "   H    HI	   H   HH    H9HFIIHHIA?HIIA??VN6 _HH@	 H	H
    H	?<9F41F	@xB<@pHHDP?DH41@x@pHHH?41P@pH        H         "   H    E1A   A   3           zR x  (             AGL0
AAF \   H          BBA A(D0
(G DGBL`
(A ABBJP
(A ABBJ             BBB B(A0A8GP
8A0A(B BBBAD
8A0A(B BBBLP
8A0A(B BBBAP
8A0A(B BBBA   |   @      8   BBB B(A0A8DP
8A0A(B BBBFP
8A0A(B BBBFL
8D0A(B BBBG             i    Dz
BP
HP           i    Dz
BP
HP (         $   D
AP
HP
H                                                                                            $                      ;                      J                      [                 t                                                                                        `      8                 i                  i                 $       des_gen_hash _GLOBAL_OFFSET_TABLE_ _crypt_des_crypt_block _crypt_ascii64 __stack_chk_fail _crypt_crypt_descrypt_rn _crypt_des_set_key _crypt_des_set_salt __errno_location _crypt_crypt_bigcrypt_rn _crypt_crypt_bsdicrypt_rn _crypt_gensalt_descrypt_rn _crypt_gensalt_bigcrypt_rn _crypt_gensalt_bsdicrypt_rn        1       )      <                   )                  
      )            )   	   R      )   
   r      )   
   x                  )            )   	         )   
         )   
         )   	         )            )            )   
         )   
   i      )   	                     )   
         )   
   +            R      )   
   j      )   
               b	      )   
   z	      )   
                         L                                      D            `                                                             .symtab .strtab .shstrtab .rela.text .data .bss .note.GNU-stack .rela.eh_frame                                                                                       @       	                                   @                                               &                     	                                     ,                     	                                     1                      	                                     F                     	      0                             A      @               p                                                                   	                    	                      
      1                                                         P                              /400            0           0     0     644     1232      `
ELF          >                              @     @  
 A   L    %                        zR x                                                                                                               
                                          .                       output.0 crypt_gensalt _GLOBAL_OFFSET_TABLE_ crypt_gensalt_rn  	                    )                             .symtab .strtab .shstrtab .rela.text .data .bss .note.GNU-stack .rela.eh_frame                                                                                       @                                           @               x      0                           &                     S                                      ,                     `                                      1                      `                                      F                     `       0                              A      @                                                                                    	                    	                      8      ?                                                          P                              /436            0           0     0     644     3568      `
ELF          >                    
          @     @ 
  @   ISHH9HFH   HHHHH5I9s     "   [f.     IHL    ;*tH    H{HHP    Cg[ff.     AWAVAUATUSHHQ-H8L$Ll$pdH%(   HD$(1  I9IFH9rH|$xw  w6     "   HD$(dH+%(   7  H8[]A\A]A^A_    HIIMϺ   H5    H    t        D  L    u    HSIvAƅ  $I  fA      IGLHPI  E1LPM  1    Ip  ZYHe  L    Ip  H
    H$   fA      H2Hx$       HHD$     LpL    Ht$ LHIP  HD$H    HH|$  I  MM HLI0  HD$HLLL$    LL$IHH|$L    I+p      H\$LL$H        IH    LLHI+p  L    H)    H<$I  L    f.                 $gy$ $y$g       zR x                I|
Kt \   <          BBB B(A0A8KpY
8A0A(B BBBH|xNWxAp                                                                                                                                          0                      F                      W                      r                      y                                                                                                                                                                           
                     &                     :                     N                     g                      .LC0 .LC1 .LC2 _crypt_gensalt_gost_yescrypt_rn _GLOBAL_OFFSET_TABLE_ __errno_location _crypt_gensalt_yescrypt_rn strlen memmove _crypt_crypt_gost_yescrypt_rn strncmp _crypt_yescrypt_init_local _crypt_strcpy_or_abort _crypt_yescrypt_r _crypt_yescrypt_free_local strchr _crypt_yescrypt_decode64 _crypt_gost_hash256 _crypt_gost_hmac256 _crypt_yescrypt_encode64 __stack_chk_fail :       )      \       )      j       )   	   {       )   
          )      $            -      )      7      )      M      )   
   X            }      )            )            )                        )            )      -      )   	   M      )            )            )            )            )      
      )      "      )      3      )                            @                     .symtab .strtab .shstrtab .rela.text .data .bss .rodata.str1.1 .rodata.cst2 .note.GNU-stack .rela.eh_frame                                                                                           @       7                                   @                     X      
                    &                     w                                     ,                     w                                     1      2               w                                   @                     |                                   M                                                           b                                                         ]      @               
      0       
                                                (                          	                      @      x                                                   @
      l                              /471            0           0     0     644     4160      `
ELF          >                     
          @     @ 
  AWAVAUATUSH(H4$Hl$`HT$LD$I"  H|$h     IH|$?$tAH\$H5    H    $tCt?        H([]A\A]A^A_@ 1uW$   HG9HEHD$럺   HL   H9HFIHT$    H$LHH    Lt$LHL    HLH    HL    H    HLH       H5    H    LLH    H  @ H   LH    HwH$LHHAHQHH)    ƅ    H$ L   HIE    HuHL1    S H$LH    M   M      LH    HHL    H    H    HHHH?H%I$I$IIHILII)HHH)IH    L)II)P   LH    MubMuEH$LH    SH$LH    - HT$Ht$H    	H$LH    fD  HT$Ht$H          "   H([]A\A]A^A_HD$$1  fHx@$HD$  2  HL$tHD$H\$ C0  HD$H$   HwHO   	   	H    AHA?F DFH9u      	   	HW	AHA?F DAH9u      	   	HO
AHA?F DBH9u      	   	HWAHA?F DAH9u      LG	   	H?40@rI9u   HH?OG GH([]A\A]A^A_H\$HL$HHAHt$HTHTHQHHHH)H)91AN N9rH$LHH    ƅ    H?D  HL$H\$CD$TTD$HL$TfTHHt        HfD  APA  A  1   Q  R  V       H H$:
 $1$            zR x  |             BBB B(A0A8D`k
8A0A(B BBBE
8A0A(B BBBA
8A0A(B BBBA ,          T    DU
GBR F(F0OD                                                                                                                                     /                      E                      M                      ^                      n                                                                             T                              .LC0 md5_salt_prefix _crypt_crypt_md5crypt_rn _GLOBAL_OFFSET_TABLE_ strcspn __errno_location _crypt_MD5_Init _crypt_MD5_Update _crypt_MD5_Final _crypt_ascii64 _crypt_gensalt_md5crypt_rn _crypt_gensalt_sha_rn        O             X       )      k       )             )   	          )   
          )   
          )   
   
      )            )   	   "      )   
   .            7      )   
   F      )   
   i      )   
         )   
         )   
         )            )   
         )   
         )      %      )   	         )   
         )   
         )   
         )   
         )   
         )   
         )                  j      )   
         )            )                                                .symtab .strtab .shstrtab .rela.text .data .bss .rodata.str1.1 .rodata .note.GNU-stack .rela.eh_frame                                                                                        @                                          @               h	             
                    &                     T                                     ,                     T                                     1      2               T                                   @                     X                                    H                      \                                     ]                     `                                    X      @               h      0       
                                          (      h                          	                                                                                      g                              /496            0           0     0     644     2296      `
ELF          >                              @     @   AUATUSHH|$8  H\$0v&MI#v:$t8        H[]A\A]Ð     "   H[]A\A]f     z3uz$uHHM1Ht @ ƄC    C   HH9uH    HT- H   H    H  H    H    LL    H
    MD 1A $  AT@  AT@HHuA@! H[]A\A]ff.     HIv6Ht        HH    LHH%    f          "   H$3$ 0123456789abcdef          zR x  X          5   BBA A(D0n
(A ABBBP
(A ABBJ(A ABB    x       Q    D[
AQ
OP                                                                                                       5                            4                      E                      U                      g                      x                           @      Q        .LC0 .LC1 _crypt_crypt_nt_rn _GLOBAL_OFFSET_TABLE_ __errno_location _crypt_MD4_Init _crypt_MD4_Update _crypt_MD4_Final _crypt_strcpy_or_abort _crypt_gensalt_nt_rn     *       )      B       )             )             )             )   	                       )   
                Q      )      c            s      )   
         )                            |             @       .symtab .strtab .shstrtab .rela.text .data .bss .rodata.str1.1 .note.GNU-stack .rela.eh_frame                                                                                        @                                          @               H             	                    &                                                          ,                                                          1      2                                                  @                                                           U                                                         P      @               h      0       	                                                       
                    	                                                                                      _                              /524            0           0     0     644     4288      `
ELF          >                     
          @     @   AWAVAUATUSH8dH%(   HD$(1H|$xLt$p   LIm   IHIMź   H5    L    u_Ht$ I
       L\$ H$A;$u<M{L    L|$LL    III9t tM<$tIf             f     "   HD$(dH+%(     H8[]A\A]A^A_ÐHH=    E1t$L       HWHLA   t$ L\$0    H MLHcHL    H<$L\$vBL\$H\$LMIH,$HMLL   L    H9uL\$H\$HL    L1t$L
       HASHt$    LMFL    HLHD$@H @ OHp	O	Hc@ HHH?A
HH9uHL$ HHAHD$ L9uAVAvH	A6	Hc    HHH?A42@pH9uHD$ Ht$xLHPHT$ H@         f.     AUATUSHHL  IHILHHHHI9   HH'  A   H/  1L    HLH         HHPH9  MT@IIRMH9IDNL- LBHEL9siIsLE
H=    L9sUf     APAHHFI	AH	HHH?HH9uM9s
HIL9r    fAH[]A\A]     "   H[]A\A]            H[]A\A]ÿ   A   1HA)H9HGAHH
       H5    H=        $sha1$ %.*s%s%lu %s%lu$%.*s$ $sha1$%u$ ../lib/crypt-pbkdf1-sha1.c   n >= 1 && (size_t)n + 2 < o_size        _crypt_gensalt_sha1crypt_rn $          zR x  l             BBB B(A0A8Dp
8A0A(B BBBBDxPPTOpgxPQKbp\             BBA A(D01
(A ABBAP
(A ABBHP
(A ABBA                                                                                                                                                       +      '               0                                            5                      :                   T                      j                      r                      z                                                                                                                                                                                                 .LC0 .LC1 .LC2 .LC3 __PRETTY_FUNCTION__.0 .LC4 .LC5 .LC6 _crypt_crypt_sha1crypt_rn _GLOBAL_OFFSET_TABLE_ strncmp strtoul _crypt_ascii64 strspn __errno_location __snprintf_chk _crypt_hmac_sha1_process_data __explicit_bzero_chk __stack_chk_fail _crypt_gensalt_sha1crypt_rn __assert_fail   P             Y       )   
   q       )                          )             )             )                              ?      )      X      )            )                                    )                        )            )      5            M      )                           
         )      2      )      w         	                                 )                                                .symtab .strtab .shstrtab .rela.text .data .bss .rodata.str1.1 .rodata.str1.8 .rodata .rodata.cst2 .note.GNU-stack .rela.eh_frame                                                                                            @                                          @               	                                &                                                          ,                                                          1      2                     B                             @      2                     !                             O                     @                                    W                     \                                   d                      ^                                     y                     `                                    t      @               H      0          
                                       H      @      
                    	                                                                               x                                    /557            0           0     0     644     2512      `
ELF          >                              @     @     IHSI9HQ-L\$H\$IFH9s     "   [@ >$uc~7u]~$uWHv8   @ z`JZ@@9-6$t1|$uH\$HLL\$[%    f        [fHH9uD  AVA@   IHAUIATUSH   dH%(   H$   1L9HLFJ   HHHI9J  HGHHh  H^   @  H`      D$$   f$ HHHuH    H    H    HE3Ht$	D$HD$     HH1H9uD$	    Ht$HH1H9uD$    I11@ HAt	wL9rH~PM4,L1
D  I9t;AHA?F,+Dn9rH L)H)L9sdI         "   H$   dH+%(   uJH   []A\A]A^f             fO   HHLL         $7             zR x  (              Lg
E`
HM
C   H   H          BNE A(A0G
0A(A BBBJ                                                                                                                     3                      D                      ]                  v                                                                   .LC0 _crypt_crypt_scrypt_rn _GLOBAL_OFFSET_TABLE_ __errno_location _crypt_crypt_yescrypt_rn _crypt_gensalt_scrypt_rn _crypt_ascii64 _crypt_strcpy_or_abort __stack_chk_fail    (       )             )             )      S            }            j      )            )            )   	         )   
                         L                     .symtab .strtab .shstrtab .rela.text .data .bss .rodata.cst2 .note.GNU-stack .rela.eh_frame                                                                                          @                                          @               h             	                    &                                                          ,                                                          1                                                        >                                                           S                                                          N      @               @      0       	                                                      
                    	                                                                                p      ]                              /585            0           0     0     644     5696      `
ELF          >                               @     @ 
  AWAVIAUATUSHhdH%(   HD$X1IQH$   H$      T$7   A>$HIM      H5    L    tAHD$  H5    L    A$  
          !@     IAF1<vsA$   HD$XdH+%(     Hh[]A\A]A^A_     A~5SAV$   IF9LD:@      "   f.     IHt$P
   A$    L    HD$HHD$PL9X8$OHHƚ;;A4$/D$7Lp@    HKhHH9H$HFIHT$(    LHH    LLH    LHH    HH<$    H    LHH    LLH    I   L$$Hl$L@ H     LH    H wIEIUHl$HHH4$H)    HLI f     H4$    H    Ht@uLLH    HuLH<$IHH    H    ILHH    M9uH   E1HH    H    Hl$LLd$(@ LLHH    ChHH9rH   Hl$HHD$8H    LLl$ILt$@IFL|$HE1HD$fD  HM    H%I$I$IILH?HH)H    H)I)HILIHILMI)փHD$ ;  HD$Hv#ID  I     HH    IwHT$HH    M  M  H4$    H    H<$HI    L9d$L|$H$5  Lt$@fAIAG$|$7 &  HD$(    HL$(A  Ht$(L$KhH~HVCr	C|	H    AHA?F DGH9u{}Ki	Ks	HN	AHA?F DBH9u{tS~	Sj	HV
AHA?F DAH9u{kKu	K	HNAHA?F DBH9u   Sl	Sv	HVAHA?F DAH9u{w   	Km	HNAHA?F DBH9u{nSx	   	HVAHA?F DAH9u   Ko	Ky	HN!AHA?F DBH9u{z   	Sp	HV%AHA?F DAH9uKq{{	   	H~)AHA?F DBH9u   LF,H?OI9uF, fH4$    H    M   MuHH|$v#L|$ I     HH    IwHT$HH        H|$   L|$I     HH    IwHT$HH    H|$  w`f.     HT$(Ht$8H    C     H|$wHT$HH    fHT$(Ht$8H         HT$HH    f.     IIwHIHL$(ITITLH)I)ȃ1҉уI<H<9rH   L1t$ L
    L    HO       HIXZAAHȨD$(ATfATH4$LH    M=H<$H    H    AAD$(ATATK        HI5   APAɚ;Q  R  V       H($:
 %s%zu$     rounds=        zR x  \          	   BBE B(A0A8D
8A0A(B BBBINfA  $   |       1    DJG F(F0O                                                                                                                                                      	      <                      R                      Z                      b                      s                      {                                                                                                                                         	      1                             sha256_rounds_prefix .LC0 .LC1 _crypt_crypt_sha256crypt_rn _GLOBAL_OFFSET_TABLE_ strncmp strcspn __errno_location strtoul _crypt_SHA256_Init _crypt_SHA256_Update _crypt_SHA256_Final _crypt_ascii64 __snprintf_chk __stack_chk_fail _crypt_gensalt_sha256crypt_rn _crypt_gensalt_sha_rn       f             o       )                          )   	          )   
          )   
   *      )   
   [      )            )            )   
         )   
         )   
         )            )      #      )   
   2      )   
   a      )   
         )   
         )   
         )   
         )            )            )   
         )      #      )      G      )   
   q      )            )      )      )   
   @      )   
   d      )   
   u      )                  N      )   
         )   
         )   
         )   
         )   
         )   
   5      )   
   O      )   
   m      )   
                                 )      B	      )   
   X	      )      a	      )      	      )      	      )                                         	       .symtab .strtab .shstrtab .rela.text .data .bss .rodata.str1.1 .rodata .note.GNU-stack .rela.eh_frame                                                                                        @       	                                   @               
            
                    &                     
                                     ,                     
                                     1      2               
                                   @                     
                                    H                      
                                     ]                     
                                    X      @               h      0       
                                          
                                	                                                                                     g                              /613            0           0     0     644     6464      `
ELF          >                               @     @ 
  AWAVIAUATUSHhdH%(   HD$X1I|H$   H$     T$7   A>$HIM      H5    L    tAHD$  H5    L    A$  
          !@     IAF1<vsA$   HD$XdH+%(     Hh[]A\A]A^A_     A~6SAV$   IF9LD:@      "   f.     IHt$P
   A$    L    HD$HHD$PL9X8$OHHƚ;;A4$/D$7Lp@    H   HH9H$HFIHT$(    LHH    LLH    LHH    HH<$    H    LHH    LLH    I@	  L$$Hl$LH@@   LH    H@wIEIUHl$HHH4$H)    HLI f     H4$@   H    Ht@uLLH    HuLH<$IHH    H    ILHH    M9uH  E1HH    H    Hl$LLd$(@ LLHH       HH9rHP  Hl$HHD$8H    LLl$?I?Lt$@IFL|$HE1HD$ HM    HIH%I$I$IIHILMI)ILH?HH)H    H)I)LHD$ ;  HD$H?v#ID  I@@   HH    I?wHT$HH    M  M  H4$@   H    H<$HI    L9d$L|$H$6  Lt$@fAIAG$|$7 &  HD$(    HL$(A  HT$(L$   HzHr   	   	H    AHA?F DGH9u      	   	HJ	AHA?F DFH9u      	   	Hr
AHA?F DAH9u      	   	HJAHA?F DFH9u      	   	HrAHA?F DAH9u      	   	HJAHA?F DFH9u      	   	HrAHA?F DAH9u     	   	HJ!AHA?F DFH9u     	   	Hr%AHA?F DAH9u      	  	HJ)AHA?F DFH9u     	   	Hr-AHA?F DAH9u     	   	HJ1AHA?F DFH9u      	  	Hr5AHA?F DAH9u     	   	HJ9AHA?F DFH9u     	   	Hr=AHA?F DAH9u      		  	HJAAHA?F DFH9u   
  	   	HrEAHA?F DAH9u     	   	HJIAHA?F DFH9u      	  	HrMAHA?F DAH9u   
  	   	HJQAHA?F DFH9u     LBU	   	H?<8@yL9u  HH?40@rUBW BV     H4$@   H    M   MuHH|$?v#L|$ I@@   HH    I?wHT$HH        H|$?   L|$I@@   HH    I?wHT$HH    H|$  w`f.     HT$(Ht$8H    C     H|$?wHT$HH    fHT$(Ht$8H         HT$HH    f.     IIwHIHL$(ITITLH)I)ȃ1҉уI<H<9rH   L1t$ L
    L    Hz       HIXZAAHȨD$(ATfATH4$LH    M=H<$H    H    AAD$(ATATK        HI6   APAɚ;Q  R  V       H($:
 %s%zu$     rounds=        zR x  \             BBE B(A0A8D
8A0A(B BBBI
NfA  $   |       1    DJG F(F0O                                                                                                                                                            <                      R                      Z                      b                      s                      {                                                                                                                                               1                             sha512_rounds_prefix .LC0 .LC1 _crypt_crypt_sha512crypt_rn _GLOBAL_OFFSET_TABLE_ strncmp strcspn __errno_location strtoul _crypt_SHA512_Init _crypt_SHA512_Update _crypt_SHA512_Final _crypt_ascii64 __snprintf_chk __stack_chk_fail _crypt_gensalt_sha512crypt_rn _crypt_gensalt_sha_rn       f             o       )                          )   	          )   
          )   
   *      )   
   [      )            )            )   
         )   
         )   
         )            )      &      )   
   5      )   
   a      )   
         )   
         )   
         )   
         )            )            )   
         )      #      )      G      )   
   t      )            )      )      )   
   @      )   
   d      )   
   u      )                  N
      )   
   
      )   
   
      )   
   
      )   
   
      )   
         )   
   5      )   
   O      )   
   m      )   
                                 )      B      )   
   X      )      a      )            )            )                                                .symtab .strtab .shstrtab .rela.text .data .bss .rodata.str1.1 .rodata .note.GNU-stack .rela.eh_frame                                                                                        @                                          @                           
                    &                     
                                     ,                     
                                     1      2               
                                   @                     
                                    H                      
                                     ]                     
                                    X      @               h      0       
                                          
                                	                                                                                     g                              /641            0           0     0     644     1224      `
ELF          >                              @     @  
 H    %                              zR x            
                                                                                                                
                             ,                       nr_crypt_ctx.0 crypt _GLOBAL_OFFSET_TABLE_ crypt_r                  	       )                             .symtab .strtab .shstrtab .rela.text .data .bss .note.GNU-stack .rela.eh_frame                                                                                       @       
                                    @               p      0                           &                     M                                      ,                     `                                      1                      `                                      F                     `       0                              A      @                                                                                    	                    	                      8      4                                                          P                              /669            0           0     0     644     6368      `
ELF          >                    `          @     @  
 AWAVIH5    AUIպ   ATILUSLHHLD$H$   dH%(   HD$81    uPAE<$uDM}   H5    L    uW    IAE1<v|A   f             HD$8dH+%(   Z  HH[]A\A]A^A_ÐD$   LH5        IAt~<$uAG<$tuqIkIM
   Ht$0A    H$H    HT$0H$H9PHH CA8:$/   LzD$g<$tH$      h  MM)I@H9U  H   L$HL       LLH    H$LH    HHE1    D$L$A̅  LD$ L|$Ll$(     H    H޺   H    D4$1E1   D   E1D    D   @փEDEIH"D<DD)A   BʉʃA	ҍP@փIIH"D<DD)ADEBʉʃHA	H5D4$DDDAF@DEDʃDѨDDEDD1Шr  L|$E   1L    H   AL    LHHc    HH    D9t$-LD$ Ll$(H\$LL$LH    L$H=    B$   JT   	   	ȃ?
?J?BJ   JT   	   	ȃ?
?J?BJ   JT	   	   	ȃ?
?J?JB   JT
   	   	ȃ?
?J?BJ   JT   	   	ȃ?
?J?BJ   JTHH?
BBD      "     H5    H    t    USHI 8  Hw        H[]    HHLH9H   HG   L
    L    H9HBHfHHP1    K{HcCHt 	H
    	?<9@>?<9@~?<9F@~CHt{	{	?<9@>?<9@~?F<9    @~fDXZH[]      "   H[]$md5 rounds= %u %s,rounds=%lu$       To be, or not to be,--that is the question:--
Whether 'tis nobler in the mind to suffer
The slings and arrows of outrageous fortune
Or to take arms against a sea of troubles,
And by opposing end them?--To die,--to sleep,--
No more; and by a sleep to say we end
The heartache, and the thousand natural shocks
That flesh is heir to,--'tis a consummation
Devoutly to be wish'd. To die,--to sleep;--
To sleep! perchance to dream:--ay, there's the rub;
For in that sleep of death what dreams may come,
When we have shuffled off this mortal coil,
Must give us pause: there's the respect
That makes calamity of so long life;
For who would bear the whips and scorns of time,
The oppressor's wrong, the proud man's contumely,
The pangs of despis'd love, the law's delay,
The insolence of office, and the spurns
That patient merit of the unworthy takes,
When he himself might his quietus make
With a bare bodkin? who would these fardels bear,
To grunt and sweat under a weary life,
But that the dread of something after death,--
The undiscover'd country, from whose bourn
No traveller returns,--puzzles the will,
And makes us rather bear those ills we have
Than fly to others that we know not of?
Thus conscience does make cowards of us all;
And thus the native hue of resolution
Is sicklied o'er with the pale cast of thought;
And enterprises of great pith and moment,
With this regard, their currents turn awry,
And lose the name of action.--Soft you now!
The fair Ophelia!--Nymph, in thy orisons
Be all my sins remember'd.
  $        zR x  H              BBL J(G0A8G
8A0A(B BBBBP   h       [   AAD `
AAHB(N0(A D
AADPAA                                                                                                      
                                  !                                           &                      +                    B                      X                      `                      q                                                                                                                                                                                                                  [       .LC0 .LC1 .LC2 hamlet_quotation .LC3 .LC4 _crypt_crypt_sunmd5_rn _GLOBAL_OFFSET_TABLE_ strncmp __errno_location _crypt_ascii64 strspn strtoul _crypt_MD5_Init _crypt_MD5_Update _crypt_MD5_Final __snprintf_chk memcpy __stack_chk_fail _crypt_gensalt_sunmd5_rn       
             H       )      h             q       )      {       )             )                
          )      (      )            )            )            )            )            )      &      )                        )            )            )            )               
         )                        )            )      8      )      y                              )               
   O            j      )                            l                     .symtab .strtab .shstrtab .rela.text .data .bss .rodata.str1.1 .rodata .rodata.cst2 .note.GNU-stack .rela.eh_frame                                                                                           @       {                                   @                                                &                                                          ,                                                          1      2                                                  @                                                         H                     
                                   U                      
                                     j                     
                                    e      @                     0          	                                             (         	                 	                                                                                     t                              /697            0           0     0     644     2448      `
ELF          >                              @     @  
 AW  H-AVAUATIUSHI9IFLt$PHt$XH9r	H  w     "   H[]A\A]A^A_@ HHT$MLL    uM~ SLHAWE1LD$L1    I  ZYHt7L    uI   tHLHL[]A\A]A^A_%             f.     ATIHUSHH   dH%(   H$   @   H9HFH   IHHHH5I9   IwPHvJfD$$    LD$$   D$   D$Mt]I   AJ	      HJ        H$   dH+%(   uoH   []A\D       "   f       Ld$0T$HIHD$LL    HtLHH    AJ   H               zR x  l              BKB B(D0A8DPo
8A0A(B BBBE`XH`[XAP`
8J0A(B BBBI  4          D   BGA J
 AABF                                                                                            0                      A                      \                      n                                                        D                                                   _crypt_crypt_yescrypt_rn _GLOBAL_OFFSET_TABLE_ __errno_location _crypt_yescrypt_init_local _crypt_yescrypt_r _crypt_yescrypt_free_local _crypt_strcpy_or_abort _crypt_gensalt_yescrypt_rn _crypt_yescrypt_encode_params_r __stack_chk_fail     ;       )      k       )             )             )             )             )            )            )            )   
         )      0      )                                                 .symtab .strtab .shstrtab .rela.text .data .bss .note.GNU-stack .rela.eh_frame                                                                                       @       4                                   @               H                                &                     t                                     ,                     t                                     1                      t                                     F                     x                                    A      @               P      0                                                 8             	                    	                      X                                                                P                              /727            0           0     0     644     8616      `
ELF          >                    (          @     @  
 UH5    HSH    H!    H    tBHs(H(Ht^HSHuE t$߃Av.<wUЃ߃A<wHH[]    .wHH[]fD  1HH[]ff.     AWAVAUATUSHHtQIHtIIH    LI    II  wAA1ۄuUD  HAtC!<]v        H[]A\A]A^A_Ð     "   H[]A\A]A^A_D  H5    L    H9uLHtH  LLIHh    H   LRA  LPHH x  H[]A\A]A^A_%    ff.     AUIATILUSHӺ  HH9N      ~%HLL;*HtH[]A\A]@      "   H1[]A\A]ff.     @ AUIATIUHSHHH:Htb9         HHt]HAE    HH  H    HHL;*t+HH[]A\A]           HHHuH1H[]A\A]f.     ATIUHSHHﺀ  H    HHLH[]A\ff.     AWILAVIDAUAATEUHH=    SLH(  dH%(   H$  1    A~qHH    HDH[HH   MtZIcMcHLLP;*t?H$  dH+%(      H(  H[]A\A]A^A_         "   1Ll$p L    tDu McHLLDt$LUD$y   LL    c     1    R    ff.     @ AVAAUIATIUH   S    Ht5A   IDLLHH    Ht
[]A\A]A^ÐH    1 ATUSHt+HA   t!1 HD t!<]vA   D[]A\fD  H5    HA       H9uHHtʀx![E]ADA\ff.     fH    $sha1 !*:;\ $y$  $2a$ $2b$ $2x$ $2y$ $gy$ $md5 $1$ $3$ $5$ $6$ $7$ _                                                                                                                                                                                                                                                                                                                         	                                                                                                                                                                                                                                                                                                                                                                     zR x  <              AKK \
DAHL
DAGFDA|   \          BBB B(A0A8D@f
8A0A(B BBBBP
8A0A(B BBBF{HKP_8A0A(B BBB  H          q    BEG C(O0m
(A ABBEP(C ABB   H   (          BED D(G0Y
(D ABBHZ(F ABB  (   t      4    BDD fAB   H         A   BHH E(D0K8J{
8D0A(B BBBH8         ]    BEE D(I0n
(A BBBB4   (          BAA z
ABGmDI      `                                                                                                                                              !                  *                     /                     4                                           9                      O                      W                      ^                      o                      w                      j          q                                  P                                                                     4            @      A                                                             ]                                             &                 =                     W                     s                                                                                                                                                   $                     ?                     ]                     }                                                                                                                              	                     %                     C                     _                     }                                                                                                                                                   0                     K                     d                      get_hashfn .LC0 hash_algorithms do_crypt .LC1 .LC3 .LC2 _GLOBAL_OFFSET_TABLE_ strncmp strlen __errno_location strcspn __explicit_bzero_chk _crypt_make_failure_token crypt_ra realloc malloc crypt_r crypt_gensalt_rn _crypt_get_random_bytes __stack_chk_fail crypt_gensalt_ra free crypt_checksalt crypt_preferred_method _crypt_crypt_sha1crypt_rn _crypt_gensalt_sha1crypt_rn _crypt_crypt_bcrypt_a_rn _crypt_gensalt_bcrypt_a_rn _crypt_crypt_bcrypt_rn _crypt_gensalt_bcrypt_rn _crypt_crypt_bcrypt_x_rn _crypt_gensalt_bcrypt_x_rn _crypt_crypt_bcrypt_y_rn _crypt_gensalt_bcrypt_y_rn _crypt_crypt_gost_yescrypt_rn _crypt_gensalt_gost_yescrypt_rn _crypt_crypt_sunmd5_rn _crypt_gensalt_sunmd5_rn _crypt_crypt_md5crypt_rn _crypt_gensalt_md5crypt_rn _crypt_crypt_nt_rn _crypt_gensalt_nt_rn _crypt_crypt_sha256crypt_rn _crypt_gensalt_sha256crypt_rn _crypt_crypt_sha512crypt_rn _crypt_gensalt_sha512crypt_rn _crypt_crypt_scrypt_rn _crypt_gensalt_scrypt_rn _crypt_crypt_yescrypt_rn _crypt_gensalt_yescrypt_rn _crypt_crypt_bsdicrypt_rn _crypt_gensalt_bsdicrypt_rn _crypt_crypt_bigcrypt_rn _crypt_gensalt_bigcrypt_rn _crypt_crypt_descrypt_rn _crypt_gensalt_descrypt_rn                         
   %       )             )   
          )   
         )      2      )      S            \      )            )            )      *      )      }      )            )            )            )      a                  )               	         )            )      \      )      j      )      }      )            )                        )      ;            J      )               	                                                                   (                    8                      @          !           P                    `          "           h          #           x                              $                     %                                          &                     '                        %                 (                     )                        *                 *                    +                       /       (         ,           0         -           @            3       P         .           X         /           h            7       x         0                    1                       ;                2                    3                       ?                4                    5                                       6                    7                       C                8                     9           0                   @         :           H         ;           X                   h         <           p         =                                 `                                       ,            P      x                               @                        ,                  d                   .symtab .strtab .shstrtab .rela.text .data .bss .rodata.str1.1 .rela.data.rel.ro .note.GNU-stack .rela.eh_frame                                                                                              @                                          @                                               &                                                          ,                                                          1      2                     E                             E                                                          @      @               X                                R                                                           g                           p                             b      @                               	                                       8                                	                                                                                     q                              /748            0           0     0     644     848       `
ELF          >                              @     @ 	  ./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz                                             A        _crypt_ascii64  .symtab .strtab .shstrtab .text .data .bss .rodata .note.GNU-stack                                                                                          @                                      !                     @                                      '                     @                                      ,                     @       A                               4                                                                                         0                           	                                                                                        D                              /775            0           0     0     644     2464      `
ELF          >                    `          @     @ 
  AVAUATUSLl$8H\$0Ld$@Lt$HI  MHLDI9LBM9MFI9Q  I
o  
      D  HHHL9rI9Q  HDϺ   LAPHL1L        ZYHcHFL9?  I   A      H=    IHu.   f.     HL9   LIIHH9suDTHHH	TH	Ѓ?IIHIIA?A?FFD	D		A4HHH	L9lA4 []A\A]A^fD  Iv,A$$A|$AD$$ItA   fI     "   []A\A]A^Ð        []A\A]A^H
    C   H5    H=        $%c$rounds=%lu$ ../lib/util-gensalt-sha.c written + 5 < output_size        _crypt_gensalt_sha_rn          zR x  l             BBB A(A0u8N@Z8A0
(A BBBG
(A BBBBM
(A BBBA                                                                                                               !      *                                     &                   <                      R                      a                      p                                             .LC0 __PRETTY_FUNCTION__.0 .LC1 .LC2 _crypt_gensalt_sha_rn _GLOBAL_OFFSET_TABLE_ __snprintf_chk _crypt_ascii64 __errno_location __assert_fail                      )   	             
         )            )                                                )                             .symtab .strtab .shstrtab .rela.text .data .bss .rodata.str1.1 .rodata .note.GNU-stack .rela.eh_frame                                                                                        @                                          @                            
                    &                     U                                     ,                     U                                     1      2               U      D                             @                                                         H                                                           ]                                                         X      @                            
                                          @      8                          	                      x                                                                g                              /807            0           0     0     644     1400      `
ELF          >                              @     @  
 Ht[USHHH   v        H1[]@ HH    HH    H   []                 zR x  4          f    FAG Y
CAE`FAI                                                             f                             /                      @                      U                       _crypt_get_random_bytes _GLOBAL_OFFSET_TABLE_ __errno_location __explicit_bzero_chk arc4random_buf            )      <       )      H       )                             .symtab .strtab .shstrtab .rela.text .data .bss .note.GNU-stack .rela.eh_frame                                                                                       @       f                                    @                     H                           &                                                           ,                                                           1                                                            F                            P                              A      @               P                                                                     	                    	                            d                                                    h      P                              /844            0           0     0     644     1288      `
ELF          >                              @     @   ~    F fHt?*t#ftu D      fD  0uF1 *0*        zR x            K                                                                                                                 K        .LC0 .LC1 _crypt_make_failure_token                 3                                    .symtab .strtab .shstrtab .rela.text .data .bss .rodata.cst2 .note.GNU-stack .rela.eh_frame                                                                                          @       K                                    @               `      0       	                    &                                                           ,                                                           1                                                         >                                                            S                            0                              N      @                            	                                                 x       
                    	                      8      %                                                          ]                              /883            0           0     0     644     496       `
ELF          >                    p           @     @    .shstrtab .text .data .bss .note.GNU-stack                                                                                          @                                                           @                                                           @                                                            @                                                            @       ,                              /910            0           0     0     644     2232      `
ELF          >                    x          @     @ 
  AUATUSHHtVIH   HIH    HH@I9rOHLH    LH<+1H)    HH[]A\A]H
       H5    H=        H
    !   H5    H=        H
       H5    H=        ../lib/util-xstrcpy.c dst != NULL src != NULL d_size >= s_size + 1         _crypt_strcpy_or_abort         zR x  <              BBA A(D0Q
(D ABBA                                                                                                                  !      .               &      "                                     +                    B                      X                      _                      f                      m                       __PRETTY_FUNCTION__.0 .LC0 .LC1 .LC3 .LC2 _crypt_strcpy_or_abort _GLOBAL_OFFSET_TABLE_ strlen memcpy memset __assert_fail      &       )   
   A       )      S       )      h             t             {                    )   
                                                 )   
                                                 )   
                          .symtab .strtab .shstrtab .rela.text .data .bss .rodata.str1.1 .rodata .note.GNU-stack .rela.eh_frame                                                                                        @                                           @                     h      
                    &                                                          ,                                                          1      2                     C                             @                     P                                    H                      g                                     ]                     h      X                              X      @                            
                                                P                          	                            {                                                          g                              /938            0           0     0     644     496       `
ELF          >                    p           @     @    .shstrtab .text .data .bss .note.GNU-stack                                                                                          @                                                           @                                                           @                                                            @                                                            @       ,                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          q   j@ q    O r    #/        
  MZ   
 z@  j@ r    R       
  MZ    j@ 
 z@ (r    T       
h@  @   X   4r    V       
    j     j@ Er    X       
   j     k   Ur    Z er    Z tr    0  r    0  r    0  r    0        
    j    ,    r    a r    0  r    0        
    j         r    e       
K   j         s    g -s    0  >s    0  Ms    0  ]s    0  ms    0        
-    -   |s    n       
     |-  !     s    p s    ! s                s   B              u                     @   s     v         m#          s @        @  B    `        E      -      {                        @  >  ^  `  f     W    
  ]       @  t    ɲ    @
  (5  w `
             
        s      &              @   s   x   v                  B    @       `   E       -       {                            s x @  s x   f x @  t      I          @  t    `  %t      3t 6     =t     Dt    Qt    ^t    ft    st    t    t    t    t 	   t 
   t    t    t 
   t    t    t    t    u    u    u    )u    :u    Hu    Vu    du    su    u    u    u    u    u    u     u !   u "   u #   u $   u %    v &   
v '   v (   !v )   ,v *   5v +   Av ,   Ov -   Zv .   bv /   lv 0   v 1   v 2   v 3   v 4   v 5            v     v    v    v             v     w    $w             =w     Lw    \w                    =          
~          kw     vw    w    w    w    w             w     w    w    w    w    w    x             x      x    .x    <x    Ix    Wx    ex    rx    x    x 	   x 
   x                    
          
 x      &                x   T   v                B   @      `   E      -      {                        s  @  s    f    t      I         @  t   `  %t            y                x                v        @ x      x    ֋  y    v  y      'y    #  Gy    ڋ        
   \   b     by           
   \      {y     y      y    y    y    y          
   @       A   z     z           
   @       A       &z     /z     7z    ].  Fz      Zz    ;        
   p   /       nz     z    +  z    0  z      z    0  z    0  z      z       {    )  {      {    bw  +{    B ;{    E  L{    E  Z{    @         
? j{      i `       t@                          @        @ w{             
       {     {    :        
   ws        {           
    uT  ? ]d  @ {           
   uT  ? ]d  @ j    {           
    G%  a        {           
    ]d  @ 
 @  3A {  Yr    |    Ë !|    Պ       
    ] R      5|    Ƌ       
K   ]d  @   Q   J|    ȋ a|     {|           
    i _ j    | K   j @ |    ̋       
    | @ |    ΋ |     |    x          
?        
? | H     |     }    }    }    %}    1}    ?} 
   L}    Y}    e}    r}    }    }    }    }    }    }    } -   } ?   } B    ~ E   
~ F   ~ G   (~ c   6~ '  G~ '  W~ '  i~ '  x~ '  ~ '  ~ '  ~ '  ~ '  ~ '  ~ '  ~ '  ~ '  ~ '   '  "  '  2 !'  D "'  T #'  a $'  u %'   &'   ''   ('   )'   *'   +'   ,'   -'  # .'  4 /'  G 0'  Z 1'  j 2'  } 3'   4'   5'   6'  ƀ 7'  ր 8'   9'   :'   ;'   <'  + ='  ; >'  L ?'  a @'  u q     ~                      
   ȁ    ց                         )    6    D ?   X B   i E   w F    '   '   '   '  ˂ '  ߂ '   '   '  
 '   '  ) '  8 '  F '  X '  m  '  ~ !'   "'   #'   $'  Ń %'   &'   ''   ('  " )'  6 *'  H +'  Y ,'  l -'  | .'   /'   0'   1'  Ǆ 2'  ۄ 3'   4'   5'   6'  ' 7'  8 8'  H 9'  X :'  j ;'   <'   ='   >'   ?'  ˅ @'   A'   B'   C'   D'  2 E'  B F'  [ G'  } H'   I'   J'  Ȇ K'   L'   M'   N'  . O'  E P'  Z Q'  n R'   S'   T'   U'  ҇ V'   W'   X'   Z'  / ['  D \'  \ ]'  r ^'   _'   `'   a'  Ɉ b'  ܈ c'   d'   e'   f'  4 g'  J h'  b i'  z j'   k'   l'   m'  ʉ n'   o'   p'         
@        
W        
@        W x      "  G   @   G *   `    -      v  -      [s s      $   H   W x           @   "  G      G *      *         -      v  -   @    P     I      3>       [s s   @  T 
  P   W x           @   "  G      G *      *         -      v  -   @    P     I      3>       ֡     @  B    `  [s s     t   0   W x      "  G   @   G *   `    -      v  -       P      W	 P   @  [s s        0   W x      "  G   @   G *   `    -      v  -      K  P      W  P   @  [s s     Ɋ 
  @   W x      "  G   @   G *   `    -      v  -             P -   @  ,       V      [s s        (   W x           @   "  G      XA  -      8
 *      [s s         0   W x           @           "  G      XA  -      8
 *   @  [s s   `  2   0   W x           @   a       "  G      XA  -      8
 *   @  [s s   `  X   8   W x           @           a       "  G      XA  -   @  8
 *     [s s     }   (   W x           @   "  G      XA  -      8
 *      [s s         0   W x           @           "  G      XA  -      8
 *   @  [s s   `         W x      "  G   @   XA  -      8
 *      [s s         (   W x           @   "  G      XA  -      8
 *      [s s         (   W x      "  G   @    -      XA  -      8
 *      [s s      *   0   W x           @   "  G       -      XA  -      8
 *   @  [s s   `  H   (   W x      "  G   @   { -       -      i *      } *      [s s   @     8   W x      "  G   @           { -      i *       -   @  } *     [s s        (   W x      "  G   @           XA  -      8
 *      [s s      ތ   (   W x      "  G   @   G *   `    -      v  -      "  P      [s s   @     0   W x      "  G   @   G *   `   U         -      v  -      "  P   @  [s s     %   0   W x      "  G   @   G *   `    -      v  -      "  P      9     @  [s s   `  G 	  8   W x      "  G   @   G *   `   U         -      v  -      "  P   @  9       [s s     n   (   W x      "  G   @   G *   `    -      "  P      p  *      [s s       
  0   W x      "  G   @   G *   `    -      "  P      U *       *      jJ K   @       `  [s s      
  0   W x      "  G   @   G *   `    -      "  P      U *       *      jJ K   @       `  [s s     ߍ       W x      "  G   @   G *   `    -      "  P      [s s         (   W x           @   "  G   `   G *       -      "  P      [s s   @  2 
  8   W x      "  G   @   G *   `    -      "  P      U *       *      x  P   @         [s s     Q   0   W x      "  G   @   G *   `    -      "  P      p  *          @  [s s     t   @   W x      "  G   @   G *   `    -      "  P      U *       *           @              [s s         (   W x      "  G   @   G *   `    -      "  P      p                [s s   @     (   W x      "  G   @   G *   `    -      "  P      p  *      [s s       	  8   W x      "  G   @   G *   `    -      "  P                  @        [s s       
  H   W x      "  G   @    -      G *      "  P      p  R   @  < R       R             [s s      %       W x           @   "  G   `   G *       -      [s s      F      W x      g *   @   y *   `   [s s            W x      g *   @   [s s   `         W x      r *   @   [s s   `   ʏ 	  (   W x          @       `    *      v                 *      
 *      [s s   @  "        K        y                ѐ                 +        *       U        *               *               *               *               *       4        *       a        *               *               *             	 *        *             	 *        *       ;        *       k                ē                        J        u                є                .        Z                                
        8        b       *       A  *              *             Dp  *       ޖ      J	 *        *                  
                    
      
             
      P
             
                    
      P             
                   
                   
                   
                   
      g             
      K             
                    
                   
                   
                   
      T             
      8             
                    
                    
                    
                    
      0             
                    
      )             
      m             
                   
                    
                   
                   
      i      H        I       
        k                   @         s G     -    H           @         s K     O    N        O       
        k                          @         s M     p    H           @         s Q         N           @         s S         H           @         s U         N           @         s W         H           @         s Y     "    N           @         s [     =    H           @         s ]     Y    N           @         s _     t    H           @         s a         N           @         s c         H           @         s e     ݘ    N           @         s g          H           @         s i         N           @         s k     3    H           @         s m     N    N           @         s o     n    H           @         s q         N           @         s s         N           @         s u         x        y       
        k                                        @         s w         |        }       
        k             P             @         s {         |           @         s      -    |           @         s      G    |           @         s      _                   
        k             P       P             @         s                         
        k       $      7      -                           @         s                     @         s      ̚                   
        k                                @         s                         
        k                                       @         s                     @         s      '               @         s      L               @         s      i               @         s                     @         s                         
        k                               @         s                         
        k                                      @         s                     @         s                     @         s      4                   
        k                         @         s      N                   
        k                                @         s      g               @         s                     @         s                     @         s                     @         s      ͜               @         s                     @         s                     @         s                     @         s Ì     7               @         s Ō     S               @         s ǌ     n    ʌ        ˌ       
        k                               @         s Ɍ         Ό        ό       
        k                                      @         s ͌         Ҍ        ӌ       
        k                                     @         s ь         ֌        ׌       
        k                                            @         s Ռ     ԝ    ֌           @         s ٌ         ܌        ݌       
        k                         @         s ی                        
        k                          @         s ߌ     1                   
        k                                 @         s      Q                   
        k             P                    @         s      m                   
        k                                 @         s                         
        k                  @         s                         
        k                       @         s      ƞ               @         s                     @         s                     @         s      (               @         s      I               @         s      o                   
        k                   P             @         s                     @         s                     @         s          
               
        k                               @         s 	     ܟ    
           @         s 
         
           @         s                         
        k               ؋           @         s      .                   
        k                       @         s      H                   
        k               ׋           @         s      m               @         s                     @         s !                    @         s #     ڠ               @         s %                    @         s '     -    *        +       
        k             }@     -                    @         s )     H    J            @         s -     c    0        1       
        k       T?           @         s /     ~    ]            @         s 3         6        7       
        k       8               ҋ           @         s 5         6           @         s :                     Ӌ                                                        ֋                                                                                                                                                                                                                        ߋ        ދ        ݋        ܋        ۋ        ڋ        ً        (        '        &        %        $        #        "        !                                                                                                                                                                 
                        
        	                                                                            $     "          
            $               
            $               
            $               
       
    [s k   l` 8      ѡ           
    [s k   Dp                
    [s k    T?            
    [s k       A     #           
    [s k   MZ   
 }@  -        @           
    [s k     ]           
    [s k   uT      ~           
    [s k                 
    [s k   j    ]                  
    [s k   uT   ]d   ۢ           
    [s k   ]d              
    [s k   ]d        x  P              
    [s k   j              4           
    [s k   j         \                          
    [s k   j    9     U     ڣ           
    [s k   j    x  P   9                
    [s k   j         U          =           
    [s k           Z           
    [s k   {                 }           
    [s k   {                       
    [s k   j    XA    rj                    
    [s k   j    XA    rj    ֤    č       
    [s k   XA    rj             ƍ       
    [s k   XA    rj        ȍ       
    [s k   XA    rj              6    ʍ       
    [s k   XA    rj         R    ̍       
    [s k   XA                 o    ΍       
    [s k   XA                Ѝ     ʍ ԥ    ̍       
    [s k   /  $   7  P -   x    V        ԍ       
    [s k   j    K  P   W  P       ֍       
    [s k   j    W	 P   1    ؍       
    [s k   j    ֡     B         S    ڍ       
    [s k   j         o    ܍       
    [s k   j        ލ      Ŧ     ߦ               3     S     n               ˧               *     L     j               ƨ                     B     c              č     ƍ ֩    ȍ     ʍ     ̍ ,    ΍ L    Ѝ m    ʍ     ̍     ԍ Ǫ    ֍     ؍ 	    ڍ $    ܍ D    ލ _               ϫ               H     n          ì               :     l          ­               ?     g                         :     ^    č     ƍ     ȍ ܯ    ʍ     ̍ )    ΍ T    Ѝ     ʍ     ̍ Ӱ    ԍ     ֍ '    ؍ S    ڍ y    ܍     ލ       
     i     A     ʱ    0             2      T      v                  ߲            *      N      r                              .      Q      y            ô            
      4      V      u                              '      M      t                              .      O      u            
   [s k   l` 8          Z     Z       
   [s k   Dp     Է    ]       
   [s k    T?     _       
   [s k       A         a       
   [s k   MZ   
 }@  -        )    c       
   [s k     F    e q    e     e Ÿ    e     e     e       
   [s k   uT      7    l       
   [s k      S    n       
   [s k   j    ]       s    p     p     p       
   [s k   uT   ]d   ǹ    t       
   [s k   ]d       v       
   [s k   ]d        x  P       x       
   [s k   j                   z       
   [s k   j         H    | k    z     |     t Ӻ    t     v       
   [s k   j    9     U                
   [s k   j    x  P   9     2           
   [s k   j         U     P     r    |       
   [s k                      
   [s k   {                      ջ           
   [s k   {                       
   [s k   j    XA    rj                    
   [s k   j    XA    rj    (           
   [s k   XA    rj         C           
   [s k   XA    rj    `     ~               Ӽ               '     B     ^     y           
   [s k   XA    rj                         
   [s k   XA    rj                    
   [s k   XA                 ν           
   [s k   XA                      ;     l               ھ                
   [s k   /  $   7  P -   x    V         4           
   [s k   j    K  P   W  P   W           
   [s k   j    W	 P                  տ           
   [s k   j    ֡     B                    
   [s k   j              5           
   [s k   j    ]                              "     H     l                              /     X     ~                                 
@    8   	 `       Č `      [ M    , @ @  8   @   J `       P `      [ M    %  g   @    /    U        ڎ               ؎               ׎        َ        ؎ ^             
R   C         K   v    ߎ       
R    X     x  P                Պ          Պ       
     X 	     #            
    t @ ] R B           
      @ [     v         ߎ       
R    X     x  P            Պ          Պ            
R    X "  P   #     7    9        
    t @  X K           
    KX        d           
   C       }           
     X ]d            x   5        %        k   @     0            ?            .      s       
   j    w/             0  
      .           
   j    Yr    >           
   j    Yr    b   O    
       
   j    G%  a   Yr    t @ b     z                          
    . a   [ M t @  *              
      @ G%  a   [ M t @            
   j ?   @  3A j ? Yr                         
K   t @ #           
    t @ 2           
   t @ C      R     g     z    Պ                 
    i _ j        | K   j @     '     Պ      
    ݊ !    Ë       
   /         "     p     4    -       
K     t@ j    C    /       
   @   j    Y    1       
   /         p    3       
   j    #  a   t @     5       
   #  a   #  a   t @ b         7       
   t @     9     Պ     Պ       
   ]d  @     =             
    ] R [ M t @  *       @       
    t @ j     X -    B       
    ] R t @ <    D [    D       
    ] R #  a   t @ w    G     ݊             
    j  k       K     .     g      g        
        b   i _     P +    Ƌ       
R      ;    S       
    G%  R j    V    U j    ݊       
                  X     S     S     Պ            
    5  @     ^        
@     `     x         
    ɼ  2    c       
    ɼ      J    e `    d[  {    -=      -                   x       uQ     -=         
t             o    {         
p rpc_task_setup rpc_client rpc_op_cred callback_ops callback_data pnfs_layout_hdr wb_page wb_lock_context wb_index wb_offset wb_pgbase wb_kref wb_flags wb_verf wb_this_page wb_head wb_nio rw_alloc_header rw_free_header rw_done rw_result rw_initiate l_ctx bytes_left mds_cinfo ds_cinfo init_flags nfs_mod minorversion nconnect max_connect timeparms n_cookies n_accesses key_hash proc_link hash_link cache_priv coherency_len coherency nfs_open_dir_context cache_hits cache_misses attr_gencount dir_cookie last_cookie cache_change_attribute cookieverf rmdir_sem nrequests redirtied_pages commit_info commit_mutex nfs_inode cache_validity read_cache_jiffies attrtimeo attrtimeo_timestamp access_cache access_cache_entry_lru access_cache_inode_lru open_files ooo nfs4_acl delegation write_io read_io xattr_cache nfs4_cached_acl nfs_delegation super_list pagemod_limit fscache_cookie n_active inval_counter commit_link unused_at aux_len nfs4_xattr_cache nfs_stat_bytecounters NFSIOS_NORMALREADBYTES NFSIOS_NORMALWRITTENBYTES NFSIOS_DIRECTREADBYTES NFSIOS_DIRECTWRITTENBYTES NFSIOS_SERVERREADBYTES NFSIOS_SERVERWRITTENBYTES NFSIOS_READPAGES NFSIOS_WRITEPAGES __NFSIOS_BYTESMAX nfs_stat_eventcounters NFSIOS_INODEREVALIDATE NFSIOS_DENTRYREVALIDATE NFSIOS_DATAINVALIDATE NFSIOS_ATTRINVALIDATE NFSIOS_VFSOPEN NFSIOS_VFSLOOKUP NFSIOS_VFSACCESS NFSIOS_VFSUPDATEPAGE NFSIOS_VFSREADPAGE NFSIOS_VFSREADPAGES NFSIOS_VFSWRITEPAGE NFSIOS_VFSWRITEPAGES NFSIOS_VFSGETDENTS NFSIOS_VFSSETATTR NFSIOS_VFSFLUSH NFSIOS_VFSFSYNC NFSIOS_VFSLOCK NFSIOS_VFSRELEASE NFSIOS_CONGESTIONWAIT NFSIOS_SETATTRTRUNC NFSIOS_EXTENDWRITE NFSIOS_SILLYRENAME NFSIOS_SHORTREAD NFSIOS_SHORTWRITE NFSIOS_DELAY NFSIOS_PNFS_READ NFSIOS_PNFS_WRITE __NFSIOS_COUNTSMAX nfs_stat_fscachecounters NFSIOS_FSCACHE_PAGES_READ_OK NFSIOS_FSCACHE_PAGES_READ_FAIL NFSIOS_FSCACHE_PAGES_WRITTEN_OK NFSIOS_FSCACHE_PAGES_WRITTEN_FAIL NFSIOS_FSCACHE_PAGES_UNCACHED __NFSIOS_FSCACHEMAX fscache_cookie_state FSCACHE_COOKIE_STATE_QUIESCENT FSCACHE_COOKIE_STATE_LOOKING_UP FSCACHE_COOKIE_STATE_CREATING FSCACHE_COOKIE_STATE_ACTIVE FSCACHE_COOKIE_STATE_INVALIDATING FSCACHE_COOKIE_STATE_FAILED FSCACHE_COOKIE_STATE_LRU_DISCARDING FSCACHE_COOKIE_STATE_WITHDRAWING FSCACHE_COOKIE_STATE_RELINQUISHING FSCACHE_COOKIE_STATE_DROPPED fscache_cache inline_key inline_aux nfs_cache_array_entry nfs_cache_array page_full page_is_eof cookies_are_ordered nfs_readdir_descriptor page_index_max current_index dir_verifier cache_entry_index buffer_fills clear_cache eob nfs_permission openflags nfs_may_open nfs_do_access access_result nfs_access_set_mask nfs_access_add_cache may_block nfs_access_get_cached access_cmp nfs_access_zap_cache nfs_access_cache_count nfs_access_cache_scan nfs_do_access_cache_scan nfs_access_free_entry nfs_rename nfs_unblock_rename nfs_link nfs_symlink nfs_unlink nfs_rmdir nfs_dentry_remove_handle_error nfs_mkdir nfs_mknod nfs_create fhandle nfs_instantiate nfs_add_or_obtain nfs4_lookup_revalidate nfs4_do_lookup_revalidate nfs_atomic_open do_open nfs_d_prune_case_insensitive_aliases nfs_lookup nfs_d_release nfs_dentry_iput nfs_dentry_delete nfs_weak_revalidate nfs_lookup_revalidate reval __nfs_lookup_revalidate nfs_do_lookup_revalidate nfs_lookup_revalidate_dentry nfs_lookup_revalidate_done nfs_lookup_verify_inode rcu_walk nfs_check_verifier nfs_clear_verifier_delegated nfs_set_verifier nfs_force_lookup_revalidate nfs_fsync_dir nfs_llseek_dir nfs_readdir nfs_do_filldir verf_arg verf_res arrays narrays nfs_readdir_xdr_to_array xdr_pages nfs_readdir_page_filler nfs_readdir_entry_decode nfs_readdir_record_entry_cache_miss nfs_readdir_record_entry_cache_hit nfs_readdir_page_init_and_validate nfs_readdir_page_array_append nfs_readdir_free_folio nfs_readdir_clear_array nfs_readdir_page_init_array nfs_closedir nfs_opendir rpc_auth_flavors RPC_AUTH_NULL RPC_AUTH_UNIX RPC_AUTH_SHORT RPC_AUTH_DES RPC_AUTH_KRB RPC_AUTH_GSS RPC_AUTH_TLS RPC_AUTH_MAXFLAVOR RPC_AUTH_GSS_KRB5 RPC_AUTH_GSS_KRB5I RPC_AUTH_GSS_KRB5P RPC_AUTH_GSS_LKEY RPC_AUTH_GSS_LKEYI RPC_AUTH_GSS_LKEYP RPC_AUTH_GSS_SPKM RPC_AUTH_GSS_SPKMI RPC_AUTH_GSS_SPKMP xprt_transports XPRT_TRANSPORT_UDP XPRT_TRANSPORT_TCP XPRT_TRANSPORT_BC_TCP XPRT_TRANSPORT_RDMA XPRT_TRANSPORT_BC_RDMA XPRT_TRANSPORT_LOCAL xpt_class xpt_ops xpt_ref xpt_list xpt_ready xpt_flags xpt_server xpt_reserved xpt_nr_rqsts xpt_mutex xpt_lock xpt_auth_cache xpt_deferred xpt_local xpt_locallen xpt_remote xpt_remotelen xpt_remotebuf xpt_users xpt_net xpt_cred xpt_bc_xprt xpt_bc_xps rpc_pipe_msg rpc_pipe_ops upcall downcall release_pipe open_pipe destroy_msg rpc_pipe in_upcall in_downcall pipelen nreaders nwriters queue_timeout om_lock om_ops om_ntrans om_timeouts om_bytes_sent om_bytes_recv om_queue om_rtt om_execute om_error_status rpc_create_args addrsize saddress prognumber authflavor client_name pnfs_iomode IOMODE_READ IOMODE_RW IOMODE_ANY nfs4_deviceid nfs4_xdr_opaque_ops encode nfs4_xdr_opaque_data nfs4_layoutdriver_data pnfs_layout_range iomode nfs4_layoutget_res return_on_close layoutp plh_refcount plh_outstanding plh_layouts plh_bulk_destroy plh_segs plh_return_segs plh_block_lgets plh_retry_timestamp plh_flags plh_stateid plh_barrier plh_return_seq plh_return_iomode plh_lwb plh_lc_cred plh_inode plh_rcu pnfs_device layout_type mincount maxcount nocache nfs4_layoutcommit_args lastbytewritten layoutupdate_len layoutupdate_page layoutupdate_pages start_p nfs4_layoutcommit_res nfs4_layoutcommit_data lseg_list nfs4_layoutreturn_args ld_private nfs42_layoutstat_args num_dev nfs42_layoutstat_devinfo write_count pls_list pls_lc_list pls_commits pls_range pls_refcount pls_seq pls_flags pls_layout setup_ds_info release_ds_info commit_pagelist mark_request_commit clear_request_commit scan_commit_lists recover_commit_reqs search_commit_reqs nlmclnt_alloc_call nlmclnt_unlock_prepare nlmclnt_release_call nfs_fs rpc_vers pnfs_tblid max_deviceinfo_size max_layoutget_response set_layoutdriver clear_layoutdriver alloc_layout_hdr free_layout_hdr alloc_lseg free_lseg add_lseg return_range pg_read_ops pg_write_ops get_ds_info read_pagelist write_pagelist free_deviceid_node alloc_deviceid_node prepare_layoutreturn cleanup_layoutcommit prepare_layoutcommit prepare_layoutstats cancel_io nlmclnt_initdata nfs_version noresvport procfs pipefs cache_detail hash_table cache_put cache_upcall cache_request cache_parse cache_show warn_no_listener flush_time others last_close svc_xprt_ops xpo_create xpo_accept xpo_has_wspace xpo_recvfrom xpo_sendto xpo_result_payload xpo_release_ctxt xpo_detach xpo_free xpo_secure_port xpo_kill_temp_xprt xpo_start_tls svc_xprt_class xcl_name xcl_owner xcl_ops xcl_list xcl_max_payload xcl_ident nfs_pageio_ops pg_init pg_test pg_doio pg_get_mirror_count pg_cleanup pg_get_mirror pg_set_mirror nfs_pageio_descriptor pg_inode pg_ops pg_rw_ops pg_ioflags pg_error pg_rpc_callops pg_completion_ops pg_lseg pg_io_completion pg_dreq pg_bsize pg_mirror_count pg_mirrors pg_mirrors_static pg_mirrors_dynamic pg_mirror_idx pg_maxretrans pg_moreio nfs_pgio_mirror pg_list pg_bytes_written pg_base pg_recoalesce _address export_path export_path_len nfs_clone_mount inherited_bsize nfs_fs_context skip_reconfig_option_check need_mount sloppy selected_flavor client_address protofamily mountfamily mount_server mntfh clone_data pnfs_try_status PNFS_ATTEMPTED PNFS_NOT_ATTEMPTED PNFS_TRY_AGAIN nfs4_deviceid_node tmpnode timestamp_unavailable deviceid bl_dev_msg nfs_net nfs_dns_resolve bl_device_pipe bl_mount_reply bl_wq bl_mutex nfs_client_list nfs_volume_list cb_ident_idr nfs_callback_tcpport nfs_callback_tcpport6 cb_users nfs_client_lock boot_time rpcstats proc_nfsfs nfs_netns_client nfs_fs_proc_exit nfs_fs_proc_net_exit nfs_fs_proc_net_init nfs_volume_list_show nfs_volume_list_stop nfs_volume_list_next nfs_volume_list_start nfs_server_list_show nfs_server_list_stop nfs_server_list_next nfs_server_list_start nfs_clients_exit nfs_clients_init flavor nfs_clone_server nfs_create_server nfs_free_server nfs_alloc_server nfs_server_remove_lists nfs_server_insert_lists nfs_server_copy_userdata nfs_probe_server nfs_probe_fsinfo clp cl_init nfs_init_client pseudoflavour nfs_init_server_rpcclient nfs_start_lockd nfs_destroy_server nfs_create_rpc_client nfs_init_timeout_values nfs_mark_client_ready nfs_get_client nfs_wait_client_init_complete nfs_client_init_status nfs_client_init_is_complete nfs_put_client nfs_free_client nfs_alloc_client nfs unregister_nfs_version register_nfs_version put_nfs_version get_nfs_version nfs_fs_proc_init nfs_end_io_direct nfs_start_io_direct nfs_end_io_write nfs_start_io_write nfs_end_io_read nfs_start_io_read nfs_get_link nfs_symlink_filler nfs_sillyrename nfs_complete_sillyrename nfs_async_rename calldata nfs_rename_prepare nfs_async_rename_release nfs_async_rename_done nfs_cancel_async_unlink nfs_complete_unlink nfs_do_call_unlink nfs_unlink_prepare nfs_async_unlink_release nfs_async_unlink_done nfs_mount_request sap salen dirpath auth_flav_len auth_flavs MOUNTPROC_NULL MOUNTPROC_MNT MOUNTPROC_DUMP MOUNTPROC_UMNT MOUNTPROC_UMNTALL MOUNTPROC_EXPORT MOUNTPROC3_NULL MOUNTPROC3_MNT MOUNTPROC3_DUMP MOUNTPROC3_UMNT MOUNTPROC3_UMNTALL MOUNTPROC3_EXPORT mountstat MNT_OK MNT_EPERM MNT_ENOENT MNT_EACCES MNT_EINVAL mountstat3 MNT3_OK MNT3ERR_PERM MNT3ERR_NOENT MNT3ERR_IO MNT3ERR_ACCES MNT3ERR_NOTDIR MNT3ERR_INVAL MNT3ERR_NAMETOOLONG MNT3ERR_NOTSUPP MNT3ERR_SERVERFAULT mountres auth_count auth_flavors xdr mnt_xdr_dec_mountres3 mnt_xdr_dec_mountres mnt_xdr_enc_dirpath nfs_umount nfs_mount FILEID_HIGH_OFF FILEID_LOW_OFF FILE_I_TYPE_OFF EMBED_FH_OFF nfs_fetch_iversion nfs_get_parent nfs_fh_to_dentry nfs_encode_fh nfs_unregister_sysctl nfs_register_sysctl netfs_io_source NETFS_FILL_WITH_ZEROES NETFS_DOWNLOAD_FROM_SERVER NETFS_READ_FROM_CACHE NETFS_INVALID_READ netfs_io_terminated_t netfs_inode remote_i_size netfs_request_ops free_request begin_cache_operation expand_readahead clamp_length issue_read is_still_valid check_write_begin netfs_cache_resources cache_priv2 netfs_cache_ops end_operation prepare_read prepare_write query_occupancy netfs_io_subrequest rreq rreq_link transferred debug_index netfs_io_request cache_resources subrequests netfs_priv nr_outstanding nr_copy_ops submitted no_unlock_folio netfs_ops netfs_io_origin NETFS_READAHEAD NETFS_READPAGE NETFS_READ_FOR_WRITE netfs_read_from_hole NETFS_READ_HOLE_IGNORE NETFS_READ_HOLE_CLEAR NETFS_READ_HOLE_FAIL nfs_fscache_inode_auxdata mtime_sec mtime_nsec ctime_sec ctime_nsec __nfs_fscache_write_page __nfs_fscache_read_page nfs_fscache_release_file nfs_fscache_open_file nfs_fscache_clear_inode nfs_fscache_init_inode nfs_fscache_release_super_cookie nfs_fscache_get_super_cookie _len nfs_append_int nfs4_sessionid nfs4_channel_attrs max_rqst_sz max_resp_sz max_resp_sz_cached seq_nr_last_acked seq_nr_highest_sent privileged seq_done used_slots slot_tbl_lock slot_tbl_waitq slot_waitq max_slotid highest_used_slotid target_highest_slotid server_highest_slotid d_target_highest_slotid d2_target_highest_slotid slot_tbl_state sess_id session_state ssv_len fc_attrs fc_slot_table bc_attrs bc_slot_table proc_nfs_info nostr param_set_portnr nfs_kill_super nfs_get_tree_common nfs_compare_super nfs_set_super nfs_reconfigure nfs_try_get_tree nfs_auth_info_match nfs_umount_begin nfs_show_stats nfs_show_path nfs_show_devname nfs_show_options nfss showdefaults nfs_show_mount_options nfs_statfs nfs_client_for_each_server nfs_sb_deactive nfs_sb_active unregister_nfs_fs register_nfs_fs rpc_action NFS_IOHDR_ERROR NFS_IOHDR_EOF NFS_IOHDR_REDO NFS_IOHDR_STAT NFS_IOHDR_RESEND_PNFS NFS_IOHDR_RESEND_MDS NFS_IOHDR_UNSTABLE_WRITES PG_BUSY PG_MAPPED PG_CLEAN PG_COMMIT_TO_DS PG_INODE_REF PG_HEADLOCK PG_TEARDOWN PG_UNLOCKPAGE PG_UPTODATE PG_WB_END PG_REMOVE PG_CONTENDED1 PG_CONTENDED2 nfs_destroy_nfspagecache pgio nfs_pageio_stop_mirroring nfs_pageio_cond_complete nfs_pageio_complete nfs_pageio_resend nfs_pageio_add_request nfs_do_recoalesce __nfs_pageio_add_request nfs_pageio_cleanup_request nfs_pageio_doio nfs_generic_pg_pgios nfs_generic_pgio nfs_pgio_result compl_ops nfs_pageio_init nfs_pgio_release clnt call_ops nfs_initiate_pgio nfs_pgio_prepare nfs_pgio_header_free nfs_pgio_header_alloc nfs_generic_pg_test nfs_wait_on_request nfs_release_request nfs_free_request nfs_unlock_and_release_request nfs_unlock_request nfs_create_subreq nfs_create_request __nfs_create_request nfs_page_group_destroy nfs_page_group_sync_on_bit nfs_page_group_sync_on_bit_locked nfs_page_group_unlock nfs_page_group_lock nfs_page_clear_headlock nfs_page_set_headlock nfs_page_group_lock_subrequests nfs_page_group_lock_head nfs_async_iocounter_wait nfs_iocounter_wait nfs_set_pgio_error nfs_pgheader_init nfs_pgio_current_mirror nfs_init_nfspagecache param_get_nfs_timeout param_set_nfs_timeout nfs_submount nfs_do_submount nfs_release_automount_timer nfs_expire_automounts nfs_namespace_setattr nfs_namespace_getattr nfs_d_automount dentry_in buflen_in nfs_path nfs_find_desc exit_nfs_fs init_nfs_fs nfs_net_exit nfs_net_init nfsiod_stop nfs_free_inode nfs_alloc_inode nfs_update_inode nfs_post_op_update_inode_force_wcc nfs_post_op_update_inode_force_wcc_locked nfs_post_op_update_inode nfs_refresh_inode nfs_refresh_inode_locked caption _nfs_display_fhandle _nfs_display_fhandle_hash nfs_alloc_fhandle nfs_alloc_fattr_with_label nfs_alloc_fattr nfs_fattr_set_barrier nfs_fattr_init nfs_inc_attr_generation_counter nfsi nfs_file_has_buffered_writers nfs_revalidate_mapping nfs_revalidate_mapping_rcu nfs_mapping_need_revalidate_inode nfs_clear_invalid_mapping nfs_revalidate_inode nfs_attribute_cache_expired __nfs_revalidate_inode nfs_open nfs_file_clear_open_context nfs_find_open_context nfs_file_set_open_context nfs_inode_attach_open_context put_nfs_open_context is_sync __put_nfs_open_context get_nfs_open_context alloc_nfs_open_context nfs_close_context nfs_put_lock_context nfs_get_lock_context __nfs_find_lock_context nfs_getattr nfs_setattr_update_inode nfs_setattr nfs_fhget nfs_ilookup nfs4_label_alloc nfs_setsecurity nfs_init_locked nfs_find_actor nfs_set_inode_stale nfs_set_inode_stale_locked nfs_invalidate_atime nfs_zap_acl_cache nfs_zap_mapping nfs_zap_caches nfs_zap_caches_locked nfs_set_cache_invalid nfs_check_cache_invalid nfs_sync_mapping nfs_sync_inode nfs_evict_inode nfs_clear_inode nfs_drop_inode nfs_compat_user_ino64 nfs_wait_bit_killable nfs_fhandle_hash nfs2_fh nfs3_fh nfs_mount_data nfs_string nfs4_mount_data client_addr mnt_path host_addrlen auth_flavourlen auth_flavours nfs_param Opt_ac Opt_acdirmax Opt_acdirmin Opt_acl Opt_acregmax Opt_acregmin Opt_actimeo Opt_addr Opt_bg Opt_bsize Opt_clientaddr Opt_cto Opt_fg Opt_fscache Opt_fscache_flag Opt_hard Opt_intr Opt_local_lock Opt_lock Opt_lookupcache Opt_migration Opt_minorversion Opt_mountaddr Opt_mounthost Opt_mountport Opt_mountproto Opt_mountvers Opt_namelen Opt_nconnect Opt_max_connect Opt_port Opt_posix Opt_proto Opt_rdirplus Opt_rdma Opt_resvport Opt_retrans Opt_retry Opt_rsize Opt_sec Opt_sharecache Opt_sloppy Opt_soft Opt_softerr Opt_softreval Opt_source Opt_tcp Opt_timeo Opt_trunkdiscovery Opt_udp Opt_v Opt_vers Opt_wsize Opt_write Opt_local_lock_all Opt_local_lock_flock Opt_local_lock_none Opt_local_lock_posix Opt_lookupcache_all Opt_lookupcache_none Opt_lookupcache_positive Opt_write_lazy Opt_write_eager Opt_write_wait Opt_vers_2 Opt_vers_3 Opt_vers_4 Opt_vers_4_0 Opt_vers_4_1 Opt_vers_4_2 Opt_xprt_rdma Opt_xprt_rdma6 Opt_xprt_tcp Opt_xprt_tcp6 Opt_xprt_udp Opt_xprt_udp6 nr__Opt_xprt Opt_sec_krb5 Opt_sec_krb5i Opt_sec_krb5p Opt_sec_lkey Opt_sec_lkeyi Opt_sec_lkeyp Opt_sec_none Opt_sec_spkm Opt_sec_spkmi Opt_sec_spkmp Opt_sec_sys nr__Opt_sec compat_nfs_string compat_nfs4_mount_data_v1 nfs_init_fs_context nfs_fs_context_free nfs_fs_context_dup nfs_get_tree nfs_fs_context_parse_monolithic nfs_fs_context_parse_param nfs_parse_version_string nfs_validate_transport_protocol layoutdriver_policy_flags PNFS_LAYOUTRET_ON_SETATTR PNFS_LAYOUTRET_ON_ERROR PNFS_READ_WHOLE_PAGE PNFS_LAYOUTGET_ON_OPEN nfs_flock nfs_lock do_setlk do_unlk nfs_file_write nfs_vm_page_mkwrite nfs_swap_deactivate nfs_swap_activate nfs_launder_folio nfs_check_dirty_writeback nfs_release_folio nfs_invalidate_folio nfs_write_end nfs_write_begin nfs_file_fsync nfs_file_mmap nfs_file_read nfs_file_flush nfs_file_llseek nfs_file_release nfs_file_open nfs_check_flags nfs_readdesc nfs_destroy_readpagecache nfs_readahead nfs_read_folio readpage_async_filler nfs_readpage_result nfs_readpage_done nfs_async_read_error task_setup_data nfs_initiate_read nfs_read_completion nfs_readpage_release nfs_read_alloc_scratch nfs_pageio_reset_read_mds nfs_pageio_complete_read force_mds nfs_pageio_init_read rhdr nfs_readhdr_free nfs_readhdr_alloc nfs_init_readpagecache nfs_stat NFS_OK NFSERR_PERM NFSERR_NOENT NFSERR_IO NFSERR_NXIO NFSERR_EAGAIN NFSERR_ACCES NFSERR_EXIST NFSERR_XDEV NFSERR_NODEV NFSERR_NOTDIR NFSERR_ISDIR NFSERR_INVAL NFSERR_FBIG NFSERR_NOSPC NFSERR_ROFS NFSERR_MLINK NFSERR_OPNOTSUPP NFSERR_NAMETOOLONG NFSERR_NOTEMPTY NFSERR_DQUOT NFSERR_STALE NFSERR_REMOTE NFSERR_WFLUSH NFSERR_BADHANDLE NFSERR_NOT_SYNC NFSERR_BAD_COOKIE NFSERR_NOTSUPP NFSERR_TOOSMALL NFSERR_SERVERFAULT NFSERR_BADTYPE NFSERR_JUKEBOX NFSERR_SAME NFSERR_DENIED NFSERR_EXPIRED NFSERR_LOCKED NFSERR_GRACE NFSERR_FHEXPIRED NFSERR_SHARE_DENIED NFSERR_WRONGSEC NFSERR_CLID_INUSE NFSERR_RESOURCE NFSERR_MOVED NFSERR_NOFILEHANDLE NFSERR_MINOR_VERS_MISMATCH NFSERR_STALE_CLIENTID NFSERR_STALE_STATEID NFSERR_OLD_STATEID NFSERR_BAD_STATEID NFSERR_BAD_SEQID NFSERR_NOT_SAME NFSERR_LOCK_RANGE NFSERR_SYMLINK NFSERR_RESTOREFH NFSERR_LEASE_MOVED NFSERR_ATTRNOTSUPP NFSERR_NO_GRACE NFSERR_RECLAIM_BAD NFSERR_RECLAIM_CONFLICT NFSERR_BAD_XDR NFSERR_LOCKS_HELD NFSERR_OPENMODE NFSERR_BADOWNER NFSERR_BADCHAR NFSERR_BADNAME NFSERR_BAD_RANGE NFSERR_LOCK_NOTSUPP NFSERR_OP_ILLEGAL NFSERR_DEADLOCK NFSERR_FILE_OPEN NFSERR_ADMIN_REVOKED NFSERR_CB_PATH_DOWN nfsstat4 NFS4_OK NFS4ERR_PERM NFS4ERR_NOENT NFS4ERR_IO NFS4ERR_NXIO NFS4ERR_ACCESS NFS4ERR_EXIST NFS4ERR_XDEV NFS4ERR_NOTDIR NFS4ERR_ISDIR NFS4ERR_INVAL NFS4ERR_FBIG NFS4ERR_NOSPC NFS4ERR_ROFS NFS4ERR_MLINK NFS4ERR_NAMETOOLONG NFS4ERR_NOTEMPTY NFS4ERR_DQUOT NFS4ERR_STALE NFS4ERR_BADHANDLE NFS4ERR_BAD_COOKIE NFS4ERR_NOTSUPP NFS4ERR_TOOSMALL NFS4ERR_SERVERFAULT NFS4ERR_BADTYPE NFS4ERR_DELAY NFS4ERR_SAME NFS4ERR_DENIED NFS4ERR_EXPIRED NFS4ERR_LOCKED NFS4ERR_GRACE NFS4ERR_FHEXPIRED NFS4ERR_SHARE_DENIED NFS4ERR_WRONGSEC NFS4ERR_CLID_INUSE NFS4ERR_RESOURCE NFS4ERR_MOVED NFS4ERR_NOFILEHANDLE NFS4ERR_MINOR_VERS_MISMATCH NFS4ERR_STALE_CLIENTID NFS4ERR_STALE_STATEID NFS4ERR_OLD_STATEID NFS4ERR_BAD_STATEID NFS4ERR_BAD_SEQID NFS4ERR_NOT_SAME NFS4ERR_LOCK_RANGE NFS4ERR_SYMLINK NFS4ERR_RESTOREFH NFS4ERR_LEASE_MOVED NFS4ERR_ATTRNOTSUPP NFS4ERR_NO_GRACE NFS4ERR_RECLAIM_BAD NFS4ERR_RECLAIM_CONFLICT NFS4ERR_BADXDR NFS4ERR_LOCKS_HELD NFS4ERR_OPENMODE NFS4ERR_BADOWNER NFS4ERR_BADCHAR NFS4ERR_BADNAME NFS4ERR_BAD_RANGE NFS4ERR_LOCK_NOTSUPP NFS4ERR_OP_ILLEGAL NFS4ERR_DEADLOCK NFS4ERR_FILE_OPEN NFS4ERR_ADMIN_REVOKED NFS4ERR_CB_PATH_DOWN NFS4ERR_BADIOMODE NFS4ERR_BADLAYOUT NFS4ERR_BAD_SESSION_DIGEST NFS4ERR_BADSESSION NFS4ERR_BADSLOT NFS4ERR_COMPLETE_ALREADY NFS4ERR_CONN_NOT_BOUND_TO_SESSION NFS4ERR_DELEG_ALREADY_WANTED NFS4ERR_BACK_CHAN_BUSY NFS4ERR_LAYOUTTRYLATER NFS4ERR_LAYOUTUNAVAILABLE NFS4ERR_NOMATCHING_LAYOUT NFS4ERR_RECALLCONFLICT NFS4ERR_UNKNOWN_LAYOUTTYPE NFS4ERR_SEQ_MISORDERED NFS4ERR_SEQUENCE_POS NFS4ERR_REQ_TOO_BIG NFS4ERR_REP_TOO_BIG NFS4ERR_REP_TOO_BIG_TO_CACHE NFS4ERR_RETRY_UNCACHED_REP NFS4ERR_UNSAFE_COMPOUND NFS4ERR_TOO_MANY_OPS NFS4ERR_OP_NOT_IN_SESSION NFS4ERR_HASH_ALG_UNSUPP NFS4ERR_CLIENTID_BUSY NFS4ERR_PNFS_IO_HOLE NFS4ERR_SEQ_FALSE_RETRY NFS4ERR_BAD_HIGH_SLOT NFS4ERR_DEADSESSION NFS4ERR_ENCR_ALG_UNSUPP NFS4ERR_PNFS_NO_LAYOUT NFS4ERR_NOT_ONLY_OP NFS4ERR_WRONG_CRED NFS4ERR_WRONG_TYPE NFS4ERR_DIRDELEG_UNAVAIL NFS4ERR_REJECT_DELEG NFS4ERR_RETURNCONFLICT NFS4ERR_DELEG_REVOKED NFS4ERR_PARTNER_NOTSUPP NFS4ERR_PARTNER_NO_AUTH NFS4ERR_UNION_NOTSUPP NFS4ERR_OFFLOAD_DENIED NFS4ERR_WRONG_LFS NFS4ERR_BADLABEL NFS4ERR_OFFLOAD_NO_REQS NFS4ERR_NOXATTR NFS4ERR_XATTR2BIG trace_event_raw_nfs_inode_event trace_event_raw_nfs_inode_event_done nfsi_flags trace_event_raw_nfs_access_exit trace_event_raw_nfs_update_size_class cur_size trace_event_raw_nfs_inode_range_event trace_event_raw_nfs_readdir_event trace_event_raw_nfs_lookup_event trace_event_raw_nfs_lookup_event_done trace_event_raw_nfs_atomic_open_enter trace_event_raw_nfs_atomic_open_exit trace_event_raw_nfs_create_enter trace_event_raw_nfs_create_exit trace_event_raw_nfs_directory_event trace_event_raw_nfs_directory_event_done trace_event_raw_nfs_link_enter trace_event_raw_nfs_link_exit trace_event_raw_nfs_rename_event __data_loc_old_name __data_loc_new_name trace_event_raw_nfs_rename_event_done trace_event_raw_nfs_sillyrename_unlink trace_event_raw_nfs_aop_readpage trace_event_raw_nfs_aop_readpage_done trace_event_raw_nfs_aop_readahead trace_event_raw_nfs_aop_readahead_done trace_event_raw_nfs_initiate_read trace_event_raw_nfs_readpage_done res_count trace_event_raw_nfs_readpage_short trace_event_raw_nfs_fscache_page_event trace_event_raw_nfs_fscache_page_event_done trace_event_raw_nfs_pgio_error trace_event_raw_nfs_initiate_write trace_event_raw_nfs_writeback_done trace_event_raw_nfs_page_error_class trace_event_raw_nfs_initiate_commit trace_event_raw_nfs_commit_done trace_event_raw_nfs_direct_req_class trace_event_raw_nfs_fh_to_dentry trace_event_raw_nfs_mount_assign __data_loc_option __data_loc_value trace_event_raw_nfs_mount_option trace_event_raw_nfs_mount_path trace_event_raw_nfs_xdr_event task_id client_id __data_loc_program __data_loc_procedure trace_event_data_offsets_nfs_inode_event trace_event_data_offsets_nfs_inode_event_done trace_event_data_offsets_nfs_access_exit trace_event_data_offsets_nfs_update_size_class trace_event_data_offsets_nfs_inode_range_event trace_event_data_offsets_nfs_readdir_event trace_event_data_offsets_nfs_lookup_event trace_event_data_offsets_nfs_lookup_event_done trace_event_data_offsets_nfs_atomic_open_enter trace_event_data_offsets_nfs_atomic_open_exit trace_event_data_offsets_nfs_create_enter trace_event_data_offsets_nfs_create_exit trace_event_data_offsets_nfs_directory_event trace_event_data_offsets_nfs_directory_event_done trace_event_data_offsets_nfs_link_enter trace_event_data_offsets_nfs_link_exit trace_event_data_offsets_nfs_rename_event trace_event_data_offsets_nfs_rename_event_done trace_event_data_offsets_nfs_sillyrename_unlink trace_event_data_offsets_nfs_aop_readpage trace_event_data_offsets_nfs_aop_readpage_done trace_event_data_offsets_nfs_aop_readahead trace_event_data_offsets_nfs_aop_readahead_done trace_event_data_offsets_nfs_initiate_read trace_event_data_offsets_nfs_readpage_done trace_event_data_offsets_nfs_readpage_short trace_event_data_offsets_nfs_fscache_page_event trace_event_data_offsets_nfs_fscache_page_event_done trace_event_data_offsets_nfs_pgio_error trace_event_data_offsets_nfs_initiate_write trace_event_data_offsets_nfs_writeback_done trace_event_data_offsets_nfs_page_error_class trace_event_data_offsets_nfs_initiate_commit trace_event_data_offsets_nfs_commit_done trace_event_data_offsets_nfs_direct_req_class trace_event_data_offsets_nfs_fh_to_dentry trace_event_data_offsets_nfs_mount_assign trace_event_data_offsets_nfs_mount_option trace_event_data_offsets_nfs_mount_path trace_event_data_offsets_nfs_xdr_event procedure btf_trace_nfs_set_inode_stale btf_trace_nfs_refresh_inode_enter btf_trace_nfs_refresh_inode_exit btf_trace_nfs_revalidate_inode_enter btf_trace_nfs_revalidate_inode_exit btf_trace_nfs_invalidate_mapping_enter btf_trace_nfs_invalidate_mapping_exit btf_trace_nfs_getattr_enter btf_trace_nfs_getattr_exit btf_trace_nfs_setattr_enter btf_trace_nfs_setattr_exit btf_trace_nfs_writeback_page_enter btf_trace_nfs_writeback_page_exit btf_trace_nfs_writeback_inode_enter btf_trace_nfs_writeback_inode_exit btf_trace_nfs_fsync_enter btf_trace_nfs_fsync_exit btf_trace_nfs_access_enter btf_trace_nfs_set_cache_invalid btf_trace_nfs_readdir_force_readdirplus btf_trace_nfs_readdir_cache_fill_done btf_trace_nfs_readdir_uncached_done btf_trace_nfs_access_exit btf_trace_nfs_size_truncate btf_trace_nfs_size_wcc btf_trace_nfs_size_update btf_trace_nfs_size_grow btf_trace_nfs_readdir_invalidate_cache_range btf_trace_nfs_readdir_cache_fill btf_trace_nfs_readdir_uncached btf_trace_nfs_lookup_enter btf_trace_nfs_lookup_exit btf_trace_nfs_lookup_revalidate_enter btf_trace_nfs_lookup_revalidate_exit btf_trace_nfs_readdir_lookup btf_trace_nfs_readdir_lookup_revalidate_failed btf_trace_nfs_readdir_lookup_revalidate btf_trace_nfs_atomic_open_enter btf_trace_nfs_atomic_open_exit btf_trace_nfs_create_enter btf_trace_nfs_create_exit btf_trace_nfs_mknod_enter btf_trace_nfs_mknod_exit btf_trace_nfs_mkdir_enter btf_trace_nfs_mkdir_exit btf_trace_nfs_rmdir_enter btf_trace_nfs_rmdir_exit btf_trace_nfs_remove_enter btf_trace_nfs_remove_exit btf_trace_nfs_unlink_enter btf_trace_nfs_unlink_exit btf_trace_nfs_symlink_enter btf_trace_nfs_symlink_exit btf_trace_nfs_link_enter btf_trace_nfs_link_exit btf_trace_nfs_rename_enter btf_trace_nfs_rename_exit btf_trace_nfs_sillyrename_rename btf_trace_nfs_sillyrename_unlink btf_trace_nfs_aop_readpage btf_trace_nfs_aop_readpage_done btf_trace_nfs_aop_readahead btf_trace_nfs_aop_readahead_done btf_trace_nfs_initiate_read btf_trace_nfs_readpage_done btf_trace_nfs_readpage_short btf_trace_nfs_fscache_read_page btf_trace_nfs_fscache_read_page_exit btf_trace_nfs_fscache_write_page btf_trace_nfs_fscache_write_page_exit btf_trace_nfs_pgio_error btf_trace_nfs_initiate_write btf_trace_nfs_writeback_done btf_trace_nfs_write_error btf_trace_nfs_comp_error btf_trace_nfs_commit_error btf_trace_nfs_initiate_commit btf_trace_nfs_commit_done btf_trace_nfs_direct_commit_complete btf_trace_nfs_direct_resched_write btf_trace_nfs_direct_write_complete btf_trace_nfs_direct_write_completion btf_trace_nfs_direct_write_schedule_iovec btf_trace_nfs_direct_write_reschedule_io btf_trace_nfs_fh_to_dentry btf_trace_nfs_mount_assign btf_trace_nfs_mount_option btf_trace_nfs_mount_path btf_trace_nfs_xdr_status btf_trace_nfs_xdr_bad_filehandle __bpf_trace_nfs_xdr_event __bpf_trace_nfs_mount_path __bpf_trace_nfs_mount_option __bpf_trace_nfs_mount_assign __bpf_trace_nfs_fh_to_dentry __bpf_trace_nfs_direct_req_class __bpf_trace_nfs_commit_done __bpf_trace_nfs_initiate_commit __bpf_trace_nfs_page_error_class __bpf_trace_nfs_writeback_done __bpf_trace_nfs_initiate_write __bpf_trace_nfs_pgio_error __bpf_trace_nfs_fscache_page_event_done __bpf_trace_nfs_fscache_page_event __bpf_trace_nfs_readpage_short __bpf_trace_nfs_readpage_done __bpf_trace_nfs_initiate_read __bpf_trace_nfs_aop_readahead_done __bpf_trace_nfs_aop_readahead __bpf_trace_nfs_aop_readpage_done __bpf_trace_nfs_aop_readpage __bpf_trace_nfs_sillyrename_unlink __bpf_trace_nfs_rename_event_done __bpf_trace_nfs_rename_event __bpf_trace_nfs_link_exit __bpf_trace_nfs_link_enter __bpf_trace_nfs_directory_event_done __bpf_trace_nfs_directory_event __bpf_trace_nfs_create_exit __bpf_trace_nfs_create_enter __bpf_trace_nfs_atomic_open_exit __bpf_trace_nfs_atomic_open_enter __bpf_trace_nfs_lookup_event_done __bpf_trace_nfs_lookup_event __bpf_trace_nfs_readdir_event __bpf_trace_nfs_inode_range_event __bpf_trace_nfs_update_size_class __bpf_trace_nfs_access_exit __bpf_trace_nfs_inode_event_done __bpf_trace_nfs_inode_event perf_trace_nfs_xdr_event perf_trace_nfs_mount_path perf_trace_nfs_mount_option perf_trace_nfs_mount_assign perf_trace_nfs_fh_to_dentry perf_trace_nfs_direct_req_class perf_trace_nfs_commit_done perf_trace_nfs_initiate_commit perf_trace_nfs_page_error_class perf_trace_nfs_writeback_done perf_trace_nfs_initiate_write perf_trace_nfs_pgio_error perf_trace_nfs_fscache_page_event_done perf_trace_nfs_fscache_page_event perf_trace_nfs_readpage_short perf_trace_nfs_readpage_done perf_trace_nfs_initiate_read perf_trace_nfs_aop_readahead_done perf_trace_nfs_aop_readahead perf_trace_nfs_aop_readpage_done perf_trace_nfs_aop_readpage perf_trace_nfs_sillyrename_unlink perf_trace_nfs_rename_event_done perf_trace_nfs_rename_event perf_trace_nfs_link_exit perf_trace_nfs_link_enter perf_trace_nfs_directory_event_done perf_trace_nfs_directory_event perf_trace_nfs_create_exit perf_trace_nfs_create_enter perf_trace_nfs_atomic_open_exit perf_trace_nfs_atomic_open_enter perf_trace_nfs_lookup_event_done perf_trace_nfs_lookup_event perf_trace_nfs_readdir_event perf_trace_nfs_inode_range_event perf_trace_nfs_update_size_class perf_trace_nfs_access_exit perf_trace_nfs_inode_event_done perf_trace_nfs_inode_event trace_event_raw_event_nfs_xdr_event trace_event_raw_event_nfs_mount_path trace_event_raw_event_nfs_mount_option trace_event_raw_event_nfs_mount_assign trace_event_raw_event_nfs_fh_to_dentry trace_event_raw_event_nfs_direct_req_class trace_event_raw_event_nfs_commit_done trace_event_raw_event_nfs_initiate_commit trace_event_raw_event_nfs_page_error_class trace_event_raw_event_nfs_writeback_done trace_event_raw_event_nfs_initiate_write trace_event_raw_event_nfs_pgio_error trace_event_raw_event_nfs_fscache_page_event_done trace_event_raw_event_nfs_fscache_page_event trace_event_raw_event_nfs_readpage_short trace_event_raw_event_nfs_readpage_done trace_event_raw_event_nfs_initiate_read trace_event_raw_event_nfs_aop_readahead_done trace_event_raw_event_nfs_aop_readahead trace_event_raw_event_nfs_aop_readpage_done trace_event_raw_event_nfs_aop_readpage trace_event_raw_event_nfs_sillyrename_unlink trace_event_raw_event_nfs_rename_event_done trace_event_raw_event_nfs_rename_event trace_event_raw_event_nfs_link_exit trace_event_raw_event_nfs_link_enter trace_event_raw_event_nfs_directory_event_done trace_event_raw_event_nfs_directory_event trace_event_raw_event_nfs_create_exit trace_event_raw_event_nfs_create_enter trace_event_raw_event_nfs_atomic_open_exit trace_event_raw_event_nfs_atomic_open_enter trace_event_raw_event_nfs_lookup_event_done trace_event_raw_event_nfs_lookup_event trace_event_raw_event_nfs_readdir_event trace_event_raw_event_nfs_inode_range_event trace_event_raw_event_nfs_update_size_class trace_event_raw_event_nfs_access_exit trace_event_raw_event_nfs_inode_event_done trace_event_raw_event_nfs_inode_event trace_event_get_offsets_nfs_mount_assign trace_raw_output_nfs_xdr_event trace_raw_output_nfs_mount_path trace_raw_output_nfs_mount_option trace_raw_output_nfs_mount_assign trace_raw_output_nfs_fh_to_dentry trace_raw_output_nfs_direct_req_class trace_raw_output_nfs_commit_done trace_raw_output_nfs_initiate_commit trace_raw_output_nfs_page_error_class trace_raw_output_nfs_writeback_done trace_raw_output_nfs_initiate_write trace_raw_output_nfs_pgio_error trace_raw_output_nfs_fscache_page_event_done trace_raw_output_nfs_fscache_page_event trace_raw_output_nfs_readpage_short trace_raw_output_nfs_readpage_done trace_raw_output_nfs_initiate_read trace_raw_output_nfs_aop_readahead_done trace_raw_output_nfs_aop_readahead trace_raw_output_nfs_aop_readpage_done trace_raw_output_nfs_aop_readpage trace_raw_output_nfs_sillyrename_unlink trace_raw_output_nfs_rename_event_done trace_raw_output_nfs_rename_event trace_raw_output_nfs_link_exit trace_raw_output_nfs_link_enter trace_raw_output_nfs_directory_event_done trace_raw_output_nfs_directory_event trace_raw_output_nfs_create_exit trace_raw_output_nfs_create_enter trace_raw_output_nfs_atomic_open_exit trace_raw_output_nfs_atomic_open_enter trace_raw_output_nfs_lookup_event_done trace_raw_output_nfs_lookup_event trace_raw_output_nfs_readdir_event trace_raw_output_nfs_inode_range_event trace_raw_output_nfs_update_size_class trace_raw_output_nfs_access_exit trace_raw_output_nfs_inode_event_done trace_raw_output_nfs_inode_event __traceiter_nfs_xdr_bad_filehandle __traceiter_nfs_xdr_status __traceiter_nfs_mount_path __traceiter_nfs_mount_option __traceiter_nfs_mount_assign __traceiter_nfs_fh_to_dentry __traceiter_nfs_direct_write_reschedule_io __traceiter_nfs_direct_write_schedule_iovec __traceiter_nfs_direct_write_completion __traceiter_nfs_direct_write_complete __traceiter_nfs_direct_resched_write __traceiter_nfs_direct_commit_complete __traceiter_nfs_commit_done __traceiter_nfs_initiate_commit __traceiter_nfs_commit_error __traceiter_nfs_comp_error __traceiter_nfs_write_error __traceiter_nfs_writeback_done __traceiter_nfs_initiate_write __traceiter_nfs_pgio_error __traceiter_nfs_fscache_write_page_exit __traceiter_nfs_fscache_write_page __traceiter_nfs_fscache_read_page_exit __traceiter_nfs_fscache_read_page __traceiter_nfs_readpage_short __traceiter_nfs_readpage_done __traceiter_nfs_initiate_read __traceiter_nfs_aop_readahead_done __traceiter_nfs_aop_readahead __traceiter_nfs_aop_readpage_done __traceiter_nfs_aop_readpage __traceiter_nfs_sillyrename_unlink __traceiter_nfs_sillyrename_rename __traceiter_nfs_rename_exit __traceiter_nfs_rename_enter __traceiter_nfs_link_exit __traceiter_nfs_link_enter __traceiter_nfs_symlink_exit __traceiter_nfs_symlink_enter __traceiter_nfs_unlink_exit __traceiter_nfs_unlink_enter __traceiter_nfs_remove_exit __traceiter_nfs_remove_enter __traceiter_nfs_rmdir_exit __traceiter_nfs_rmdir_enter __traceiter_nfs_mkdir_exit __traceiter_nfs_mkdir_enter __traceiter_nfs_mknod_exit __traceiter_nfs_mknod_enter __traceiter_nfs_create_exit __traceiter_nfs_create_enter __traceiter_nfs_atomic_open_exit __traceiter_nfs_atomic_open_enter __traceiter_nfs_readdir_lookup_revalidate __traceiter_nfs_readdir_lookup_revalidate_failed __traceiter_nfs_readdir_lookup __traceiter_nfs_lookup_revalidate_exit __traceiter_nfs_lookup_revalidate_enter __traceiter_nfs_lookup_exit __traceiter_nfs_lookup_enter __traceiter_nfs_readdir_uncached __traceiter_nfs_readdir_cache_fill __traceiter_nfs_readdir_invalidate_cache_range __traceiter_nfs_size_grow __traceiter_nfs_size_update __traceiter_nfs_size_wcc __traceiter_nfs_size_truncate __traceiter_nfs_access_exit __traceiter_nfs_readdir_uncached_done __traceiter_nfs_readdir_cache_fill_done __traceiter_nfs_readdir_force_readdirplus __traceiter_nfs_set_cache_invalid __traceiter_nfs_access_enter __traceiter_nfs_fsync_exit __traceiter_nfs_fsync_enter __traceiter_nfs_writeback_inode_exit __traceiter_nfs_writeback_inode_enter __traceiter_nfs_writeback_page_exit __traceiter_nfs_writeback_page_enter __traceiter_nfs_setattr_exit __traceiter_nfs_setattr_enter __traceiter_nfs_getattr_exit __traceiter_nfs_getattr_enter __traceiter_nfs_invalidate_mapping_exit __traceiter_nfs_invalidate_mapping_enter __traceiter_nfs_revalidate_inode_exit __traceiter_nfs_revalidate_inode_enter __traceiter_nfs_refresh_inode_exit __traceiter_nfs_refresh_inode_enter __traceiter_nfs_set_inode_stale nfs_get_root pnfs_commit_bucket direct_verf pnfs_commit_array cinfo_list nbuckets nfs_destroy_directcache nfs_file_direct_write ioflags nfs_direct_write_schedule_iovec nfs_direct_write_reschedule_io nfs_write_sync_pgio_error nfs_direct_write_completion nfs_direct_write_complete nfs_direct_write_schedule_work nfs_direct_resched_write nfs_direct_commit_complete nfs_direct_write_reschedule nfs_file_direct_read nfs_direct_read_schedule_iovec nfs_direct_pgio_init nfs_read_sync_pgio_error nfs_direct_read_completion nfs_direct_complete nfs_dreq_bytes_left nfs_direct_req_free nfs_init_cinfo_from_dreq nfs_direct_release_pages nfs_swap_rw nfs_direct_count_bytes nfs_init_directcache nfs_destroy_writepagecache nfs_migrate_folio nfs_wb_page nfs_wb_folio_cancel nfs_wb_all nfs_filemap_write_and_wait_range nfs_write_inode nfs_commit_inode __nfs_commit_inode nfs_generic_commit_list nfs_commit_release nfs_commit_release_pages nfs_commit_done nfs_commit_resched_write nfs_retry_commit nfs_init_commit nfs_ops nfs_initiate_commit nfs_commitdata_release nfs_commit_end nfs_commit_begin wait_on_commit nfs_writeback_result nfs_writeback_done nfs_writeback_update_inode nfs_commit_prepare nfs_pageio_reset_write_mds nfs_pageio_init_write nfs_async_write_reschedule_io nfs_async_write_error nfs_redirty_request nfs_initiate_write nfs_updatepage nfs_ctx_key_to_expire nfs_key_timeout_notify nfs_flush_incompatible nfs_scan_commit nfs_scan_commit_list nfs_reqs_to_commit nfs_write_completion nfs_async_write_init nfs_write_need_commit nfs_clear_page_commit nfs_mark_request_commit nfs_init_cinfo nfs_request_remove_commit_list nfs_request_add_commit_list nfs_request_add_commit_list_locked nfs_inode_remove_request nfs_writepages nfs_io_completion_commit nfs_writepages_callback nfs_writepage nfs_writepage_locked nfs_page_async_flush nfs_write_error nfs_lock_and_join_requests nfs_join_page_group nfs_end_page_writeback nfs_mapping_set_error nfs_page_find_swap_request nfs_page_find_private_request nfs_writehdr_free nfs_writehdr_alloc nfs_commit_free nfs_commitdata_alloc nfs_init_writepagecache nfs_netns_sysfs_destroy nfs_netns_sysfs_setup nfs_netns_client_namespace nfs_netns_client_release nfs_netns_identifier_store nfs_netns_identifier_show nfs_sysfs_exit nfs_sysfs_init nfs_netns_object_child_ns_type nfs_netns_object_release  nfs.ko  ϐ'                                                                                                   	                                                                                                              %                      +                      -                      2                      8                      @                                                         9                     P      4              f                    {                                                |                    P                                       t              -                    I     p              i     h                                      (                   ,                   0                                       <                                  6                    M     0              o     8                                                                                                  \                                   4     |               L                   b                    s                                                              t                   d                                                          x                    p                    l               8     t               R                   e                   z                                                                                                                        $                                      ,              .                   H     x              d                    y                         h                                       4                                                         h               (     D              >                   N     <              `     @                   X                   T                                                          H                    L                                  2                   V                    v                        `                                                                                                   D               ;     @               V                   n                                                               8                                                    		     X              	                   ,	                    B	                    c	     \              t	     L              	     H              	     P              	     T              	     p              	                    	     l              
                   )
                   >
                    \
                    {
     \              
     `               
     T               
     P               
                        X               &                   ?                    Y                   w                                                                                  H                                                    3     |              K     L              b                   z                                                                                                 
                   ,
                   N
                   s
     d              
     $              
                   
                   
                                            x              8     l              N                   e                    |                        (                                                                             `                   0               %                     G                     l                         4                    $                                                            <               >     ,               _                                             8                    (                                   &                    R     @              d     d               w     D                   @                &         ^           ]                  i      	            r      	            {      <                                     $       #                     B                    c    
                                        -                   
                    .                    ?                   
               :     @               T     P               p    
                    Q                    `                   
                    a                    }               %    
 @              K     ~               l                        
 L                                                          
 t              *                    C                    ^    
               w                                            
                                                           
 \              A                    a                       
                                       &                  
 P                   '              +     7              G    
 8              a     8              |     I                  
                    J                   c                  
 x                   d              A     |              e    
                    }                                     
                                  
                   '    
               B                   \                   x    
                                                         
                                                          
 X              ;    @      7       P   + `              e                                                                               0                @                 `                       H           P      H                 L       -          L       C     
             X    `            n   @ (                 + 0              v   @         (                 7          -                   7                                 -                                     C       4          + @               *    `               >    @               R                     W                   }                       
                                                         
                    
              E     *              n    
 (                   +                   A                  
                    B                   M              #    
               8     N              g     s                  
                    t                                     
               ,                   F                   b    
               |                                          
 t                                                         
               "                    7                    N     
               c                    w                         
                                                            
                                                       	!    
 H              !                   2!                   I!    
 \              ^!                   t!                   !    
 ,              !                   !                   !    
               !                   !                   	"    
                "                   ="     2              ^"    
 h              }"     3              "     I              "    
 P              "     J              "     _              #    
 D              >#     `              \#     t              |#    
 \              #     u              #                   #    
               #                   #                   $    
 X              .$    +             9$    ,      9       G$    w              Z$    ,      V       l$                  $    P-      )       $    -             $    .      q       $           g       $                  $    .      0      $    /             $           /      %    /             )%    P            C%    @1             K%    `1             ^%    1      >       t%   @ 0              %    02      M       %    2             %    
             %    `3            %    #             %   @ 8              %    P6      m       	&    6            "&   +               6&    p9      ^       U&    9             h&    :      m      w&    4             7)   +               &    >      l       &    0?             &    ?      
       &    A      l       &    0B      &      '    `C             '    O      #       .'    r      #       ='          #       M'                 ['          #       j'    K      q      x'          %       '    O      d      '          7       '    K             '    f      O       '    [      e      '                 (                 "(    P`            :(    0f            S(    j            _(          c       p(                  {(    $             (    5      #       (    @            (    X                               (             D       )     D       (       /)   !         (       P)                  u)                    z)                   )                   )    
               )                   )                   *    
 T              *                   7*                   S*    
 $              m*                   *                   *    
 H              *                   *                   *    
 0              +                   +                   5+    
               N+                   g+                   +    
 l              +                   +                   +    
               +                   +                    ,    
               ,                   2,     .              R,    
 <              p,    s             ,                 ,                 ,          K       ,    @             ,                 ,           3       ,                 -    `             !-                 8-          }       G-                 [-                 c-    p             l-                 {-    А      d       -                 -    @      .       -    p      d       -                 -    :      )       -    c      4       .                 .                 ..                 C.          [      V.                j.          +       .    0            .          $       .           7      .    /      !       .                   .    P             .     /              /     E              #/    
 h              C/     F              \/     U              w/    
               /     V              /     f              /    
               /     g              /     v              0    
 8              -0     w              O0                   s0    
               0                   0                   0    
               0                   1                   11    
               M1                   l1                   1    
               1                   1                   1    
 8              1                   2                   52    
               O2                   c2                   y2    
               2                   2     
              2    
               2                   2     $              3    
               <3     %              R3     1              j3    
               3     2              3     G              3    
               3     H              3     ]              4    
               >4     ^              Z4     p              x4    
 d              4     q              4                   4    
                4                   5                   95    
                X5                   w5                   5    
               5                   5                   	6    
               16                   U6                   {6    
 `              6                   6                   6    
 <              6                   (7     %              T7    
                ~7     &              7     5              7    
                7     6              7     F              8    
               8     G              @8     b              g8    
               8     c              8     u              8    
               8     v              9                   ,9    
                P9                   o9                   9    
                9                   9                   9    
               :                   (:                   M:    
               p:                   :                   :    
               :                   ;                   /;    
               I;     	              b;                   };    
               ;                   ;     *              ;    
               ;     +              ;     6              <    
               *<   @ P              F<          R       d<          )       y<    p             <          ~       <          =       <    "             <   @ X              <          &       <          \           p             <   @ P               <    $      $       <    m       .      =   +        H       =          }       *=          *      ?=          B      V=   	         E       b=          |       z=                 =    @      d       =                =    H             =    @             =                =   @ P               >   @ P               >    0      i       >   +               >                 ,>    X             9>                 U>    D	      #       t>   0                >   2                >     l              >   ! (       (       >          
       ?                   .?            &       R                   D?     7              W?     @              l?    
               ?     A              ?     O              ?    
 T              ?     P              ?     `              ?    
 `              @     a              >@     |              e@    
 4              @     }              @                   @    
               @                   @                   A    
               A                   9A                   VA    
               qA                   A                   A    
               A                   A                   A    
               B                   #B                   @B    
 P              [B                   yB                   B    
               B                   B                   B    
 D              
C                   $C                   @C    
               ZC                   sC     %              C    
               C     &              C     >              C    
               D     ?              2D     X              WD    
               zD     Y              D     q              D    
               D     r              E                   &E    
                GE                   cE                   E    
                E                   E                   E    
                E                   F                   @F    
               aF                   F                   F    
               F                   F                   G    
               (G    g	             (                 8G          {      OG    `             ZG                 iG    P      C       wG          q       G                 G   -               G    	             G    @             G   +        @       H    	             H    	      "       5H    	             KH            t       mH     -      !       H   ! P       (       H                 H     N      5       H           L       I           '       ;I   ! x       (       ZI                 }I           r       I     h      %       I   !        (       I                 J           `       (J           "       MJ   !        (       gJ                 J           J       J     Y             J   !        (       J    	             J     	             K     x      %       GK   !       (       fK    0	             K           %       K   ! @      (       K    P	             K           a       L     #      $       BL   ! h      (       ^L    p	             ~L     G      !       L   !       (       L    	             L    	              L     |              L                   
M     	              -M    
               KM                `M                wM    P     Z       M   @               M         e       M                 M         \       M    0     \                f                        o                4    @           N                  8N    P            LN                gN         
      N    
                                            N                   N    P            N    p$            O   @                O    G
             "O    _
             R                   =O     	              _O     '	              O    
 p              O     (	              O     :	              O    
 d              O     ;	              P     T	              CP    
               fP     U	              P     i	              P    
               P     j	              P     ~	               Q    
               Q     	              <Q     	              \Q    
               zQ     	              Q     	              Q    
 |              Q     	              Q     	              R    
               ;R     	              WR     	              uR    
 t              R     	              R     	              R    
               R     	               S     	              S    
 (              :S    P/            KS    p/     u       mS    |
      3       S    1     B       S    02     X       S    2            S     4     s       S                  S     9            	T    9           T   @               .T    ;           @T    >     V       PT    @     P      iT     E            {T    H            R     	              T     	              T     
              T    
               T     
              U     )
              ;U    
 4              _U     *
              U     A
              U    
               U          (       U    PR     *       U   @               U    R     '       V    R     9      V    0T     R           T     c            U     
      5V    V     .      TV    @W     a      iV    
      7       V    X     A      V     Z     f       V    pZ           V                  R     #	              V     1	              V     W	              V    d     t       V    0e     [      
W    f     3       W    f     .       0W     g     D      CW                  RW    Ph            hW    @i            ~W    i     y       W    `j     Z      W    k     t       W    @l            W                  W   @                O   @                W    
      -       X     B
              3X     W
              TX    
               sX     X
              X     h
              X    
 p              X     i
              X     
              Y    
               LY     
              rY     
              Y    
               Y     
              Y     
              Z    
 $              =Z     
              VZ     
              qZ    
 ,              Z     
              Z     
              Z    
 l              Z     
              	[                   +[    
               K[                   p[     "              [    
 @              [     #              [     >              \    
               -\     ?              N\     V              q\    
               \     W              \     k              \    
 h              \     l              ]     |              $]    
 D              >]     }              Y]                   v]    
 0              ]                   ]                   ]    
 |              ]                   ]                   ^    
               4^                   _^                   ^    
 x              ^                   ^                   ^    
               ^   @              	_   @               _    Pt            /_   @              @_   @              R_    u            d_    0u            }_     
      (       _    `
              _    `x            _    py            _   @               _          +       _    z     4       _     {     F       Z    P{                {            `    >                             /`   @               :`    O      &       R`    0
             l`          @       `    `            `                 `                `               `         o      `                a          K          P            *a    0            @a                 ^a    0           wa    u      ~       a         !      a               a               a    @
              a                b                *b          $      ?b               Rb          V       fb     	              kb                   ~b                   b    
 L              b                   b                   b    
               b                   
c                   &c    
                =c    @     "       Sc    p     2       ic    I             ~c         U       c                c   +              c   +       X       c         M       c   -               c     h             $d           3       Ud   !       (       {d    
             d    
              R     	              d          7       d    @           d           P       d    Z      7       e    P            !e                 ;e          (       Ge                 Ve    @              ie    K
      N       ye   @        0       e   +                e                 e    `             e                 e   @ P             e    `             e   @ `             e     	              f     &              /f    
                Vf     '              |f     C              f    
 `               f     D              f     c              g    
                 Gg     d              pg                   g    
 0               g                   g                   h    
                8h                   ]h                   h    
 l               h                   h                   h    
                #i                   Ki                   ui    
 <               i                   i     
              i    
                j     
              6j     3
              ]j    
                j     4
              j     R
              j    
 $               j     S
              $k     q
              Nk    
 T               vk     r
              k     
              k    
                l     
              /l     
              ^l    
 x               l     
              l     
              l    
                m     
              Mm                   m    
 H               m         W       m          `       m         `       n         X       Cn    @     b       cn         i       n          [       n         a       n         a       n    `     b       o         \       <o    0            _o                o    0     W       o         \       o         k       o    `     d       p         \       Cp    0     Z       ep         M       p         F       p    0     F       p                p    )      @      p                 q     &      @       (q     %             3q                Uq                  `q                q          P       q          \      q    @3             q     2            q    1             q    `/             q         v      r    .             r    -            r     -             $r    *             /r                 Vr    `(      @      ar    @&             lr                r    $      @       r    #             r    !             r                r                 r                 r                s    `             s    `            <s    @             Fs                 ms                  ws                s                  s         v       s          @       s                s                  t         {      t                @t                dt          @       nt    `            t    @      @       t                t         P      t         F      t    @            u    @      ^      Au                nu                u                u                u                u                	v         
       +v                 Ev                bv                 v    0            v    @            v    P            v    `            v    p            w         	       ?w                Zw                xw                w                w    p     G      w               	x    `     v      %x               Fx    
           gx    0           x    
     v      x    `           x         t      x    p           y                y               4y    0            py               y    P     &      y                y               z         J      Az          I      ]z    P            wz    `            z    p     
       z                z         
       z                {                3{                U{                s{                {                {                  {                 {                  |    0             9|    @             Z|    P             z|    `             |    p             |                 |                 |                 }          2      7}    !     "      ]}     #     $      }    P$     *      }    %           }    &            ~    '           '~    (     
      L~    )           {~    *            ~    +            ~    ,            ~    -                p.            B    p/            j    p0                @1                @2               P3            
    @4            7    05            _     6                7               08           ܀    P9               p:            2    p;     3      X    <                =     +          >     P          0@     M      ہ    A     [          B     g          PD     5      .    E     N      O    F     K      l    0H     K          I     K          J     }      ς    PL     y          M     y      
    PO           %    P     U      E    PR           f     T     S          U               V     #      Ճ    W     m          0Y     &          `Z           6    [     U      c    P]     `          ^     K           `     V          `a           
     c           1    d           M   4                 w   4                    4 @                  4 `               ߅   4                   4                '   4                Y   4                   4                   4                   4 @                 4 `              B   4               e   4                  4                  4               ҇   4                   4                   4 @              A   4 `              c   4                  4                  4                  4                  4                9   4                ^   4 @                 4 `                 4               ҉   4                  4                  4               I   4                s   4                   4 @                 4 `              ۊ   4                  4               !   4               F   4               i   4                   4                   4 @              ԋ   4 `                 4                  4               ;   4               ^   4                  4                   4                ƌ   4 @                 4 `                 4               ;   4               l   4                  4               ʍ   4                   4                '   4 @              J   4 `              n   4                  4                  4                  4                  4                :   4                Z   4 @                 4 `                 4               Ϗ   4                  4               /   4               X   4  	              |   4  	                 4 @	                 4 `	                 4 	                 4 	              E   4 	              q   4 	                 4  
                 4  
              ޑ   4 @
                 4 `
              2   4 
              b   4 
                 4 
                 4 
                 4                   4                9   6                ;   + @             X   6               Z   +              o   +        i         6                  +                 +                 6                  +               Г   +                 6                   +                 +       4          6 (              !   + `             8   +               S   6 0              U   +               z   6 8              |   +                 6 @                 + @             Ɣ   6 H              Ȕ   +                 6 P                 +              	   6 X                 +               ,   +              K   6 `              M   +              c   + 	            }   6 h                 + `                + `                6 p                 +               Е   6 x              ҕ   +                 6                  + @                + `                6                   +              9   + `
            V   6               X   +              q   + @      m         6                  +                  +       )         6                  +                 6                  + `                6                  +               $   6               &   +              B   +               h   +                  6                  + @                +       0         6               ×   +              ۗ   +        0         6                  +                 + `             -   6               /   +               L   + `             m   6               o   +                 + `                6                  + `                + `                6                  +                  + `                6                  +              4   + `            U   6               W   + @             t   6              v   +                 6                 +                 +         8      ř   + @%      T         6                 +                  + &               6                  +              %   + +            >   6 (             @   + `             W   6 0             Y   +               q   6 8             s   +                 6 @                + @                6 H                +                 6 P                +              Ӛ   6 X             ՚   +                  6 `                +                 6 h                + `                6 p                +               1   6 x             3   +              H   6              J   + @             `   + ,               + `1                6                 +                 +  2      K      ӛ   6              ՛   +                 + `8      g         6              	   +               $   + :            C   6              E   +              a   + A               6                 + `                6                 +               Ԝ   6              ֜   +                 6                 + @                6                 +              6   6              8   +              N   6              P   +               g   +  E               + K               6                 +                 6                 + `             ޝ   + @N      P         6                 +               %   + O             E   6              G   +              [   6               ]   + @             s   6              u   +                 6                 +                 + P                6              Ğ   +               ڞ   + Q      P
         6                  +                 6 (                + `             :   6 0             <   +               `   6 8             b   +              ~   6 @                + @                6 H                +                 6 P                +              Ɵ   6 X             ȟ   +                  6 `                +              	   6 h                + `             )   6 p             +   +               J   6 x             L   +              c   6              e   + @             }   6                 +                 6                 +                 6                 +               Ԡ   6              ֠   +                 6                 + `                6                 +               >   6              @   +              ]   6              _   + @             }   6                 +                 +  \      
         +  f             ҡ   +  g      @         + @h      P          + h      P       9   +  i      x       ]   + i                + `j      h         + k      @      ̢   +  m                +  n               + @o            A   + p            g   +  r      h         + s                + t                + `u      h         + v      h      -   + `x             R   + `y      @      |   + z               + {            ʤ   + |                + }                + ~            A   +              e   +                 +                 +              ԥ   +                 + @                + @             B   +              j   + @                + @                + @                +        h         +             .   +             W   +             z   +                + `             ŧ   + @                 + `                 +               8   +               `   +                  +                  +                ۨ   +                   + @              2   + `              \   +                  +                  +               ߩ   +               
   +                7   +                `   + @                 + `                 +                  +               
   +               5   +               c   +                   +                   + @              ݫ   + `                 +               3   +               ^   +                  +                  +                ٬   +                   + @              3   + `              [   +                  +                  +               ޭ   +                  +                1   +                X   8         H       r    3                8 `       H          8        H       Ʈ   8        H          8       H           8       H       !   8 @      H       =   8       H       ]   8        H       ~   8 `      H          8       H          8        H       ׯ   8       H          8       H       "   8 @      H       A   8       H       _   8        H       }   8 `      H          8       H          8        H          8       H          8       H           8 @      H       B   8       H       _   8  	      H       y   8 `	      H          8 	      H          8  
      H       ٱ   8 
      H          8 
      H          8 @      H       3   8       H       U   8        H       w   8 `      H          8       H          8  
      H       Բ   8 
      H          8 
      H          8 @      H       3   8       H       Q   :                O   2               k   :               i   2 0                 :                  2 P                 :                  2 p              ĳ   :                ³   2                  : (                 2                  : 0                 2               &   : 8              $   2               H   : @              F   2              h   : H              f   2 0                : P                 2 P                : X                 2 p             ݴ   : `              ۴   2                 : h                 2                 : p                 2              A   : x              ?   2              g   :               e   2                 :                  2 0                :                  2 P             ͵   :               ˵   2 p                :                  2                 :                  2              <   :               :   2              X   :               V   2              t   :               r   2                 :                  2 0             Ķ   :               ¶   2 P                :                  2 p                :                  2              (   :               &   2              T   :               R   2              w   :               u   2                 :                  2              ÷   :                 2 0                :                 2 P                :              
   2 p             2   :               0   2              V   : (             T   2              r   : 0             p   2                 : 8                2                 : @                2              ݸ   : H             ۸   2 0                 : P                2 P                : X                2 p             <   : `             :   2              \   : h             Z   2                 : p             }   2                 : x                2                 :                 2              ܹ   :              ڹ   2 0                :                 2 P             "   :                  2 p             F   :              D   2              c   :              a   2                 :                 2                 :                 2                 :                 2                 :                 2 0             
   :                 2 P             /   :              -   2 p             M   :              K   2              p   :              n   2                 :                 2                 :                 2              ܻ   :               ڻ   2                 :                 2 0                :                 2 P             :   :              8   2 p             W   :               U   2              x   : (             v   2                 : 0                2                 : 8                2              Լ   : @             Ҽ   2 	                : H                2 0	                : P                2 P	             5   : X             3   2 p	             ]   : `             [   2 	             {   : h             y   2 	                : p                2 	             ̽   : x             ʽ   2 	                :                 2 
                :              
   2 0
             ,   :              *   2 P
             ]   :              [   2 p
                :                 2 
                :                 2 
             ̾   :              ʾ   2 
                :                 2 
                :                 2              =   :              ;   2 0             ^   :              \   2 P                :              }   2 p                :                 2              ƿ   :              Ŀ   2                 :                 2                 :                 2              "   :                   2              D   :              B   2 0             d   :              b   2 P                :                 2 p                :                  2                 : (                2                 : 0                2                 : 8                2              %   : @             #   2 
             K   : H             I   2 0
             p   : P             n   2 P
                : X                2 p
                : `                2 
                : h                2 
                : p                2 
                : x                 2 
                :                 2              <   :              :   2 0             Z   :              X   2 P             |   :              z   2 p                :                 2                 :                 2                 :                 2                 :                 2                 :                 2              6   :              4   2 0             S   :              Q   2 P             o   :              m   2 p                :                 2                 :                 2                 :                 2                 :                 2                 :                  2              #   :              !   2 0             ?   :              =   2 P             Z   :              X   2 p             v   :               t   2                 : (                2                 : 0                2                 : 8                2                 : @                2                 : H                 2 0                : P                2 P             ;   : X             9   2 p             V   : `             T   2              o   : h             m   2                 : p                2                 : x                2                 %                   %                  % (                 % @              ,   % `              H   %               d   %                  %                   %                  %                  %               )   % @             O   % `             j   % p                %                 %                 %                 %                 %                 %              0   %               W   % @             y   % `                %                 %                 %                 %                 %               :   %               W   % @             x   % `                %                 %                 %                 %                 %              (   %              B   %              ^   % 0             {   % P                % `                %                 %                 %                 %                 %              8   %              S   %              m   %                  %                 %                  % @                % `                 %              )   %       %       Y   %              w   %                 %                 % 0                % @                % `                %              =   %       #       k   %                 %                 %       
          %                  %                  % 0                % P             ;   % p             d   %                 %                 %                 %                 %                 %                 % 0             B   % P             f   % p                %                 %                 %                 %                 % 	             '   % 0	             L   % P	             r   % p	                % 	                % 	                 f             S    f               
      6           3                 `h            
    
      }           3                  0i     6      /    pj            N    j            i    j     
           j                j     |           Pk     ;          @ x                +       0          +        0          + P                 4      (       4   + `             K   +               _     	              u                       
                                       #                  
 ,                  `m                6      p           L             1    0n            E     o            X    o           l     5      0          -                   ]                 r     n           i                 @s               z             
    y           -    ;             R         z      m     7                 6      p           @5                 4      ,                 ~                              %                  3      
           `?      P       2     ?      P       N    >      @       fb                   d     `              j   +              }   @                 +                  +                   $                   :                  
                        P       )               Q    f      *       s   +                                                                                 p                                      P     .                            $                     *    @#      1      )#    0<            6    
     8       I    P     )       f         8       W                  |                                                                    V       A    `      &         +                                      <        H           0     L           P             I                  r                     ~                        <       H                                                                  
                              J       7   <       H       W                  v    P               < @      H                8                               + @             	                         X             6                     ]d   + `             \    0v            D                  R                                         b   <       H                                                p                                                           `                                  "   + `             @                 a                      `z      ]                                     `           p>               <       H          +              A         6
      P                  o                                                               )                                                         <        H                -       0E   +                                                =   < 	      H       \   < `      H                        y   < `      H                                0      +       EU    Q     Q          +                                              .          +              *   < @      H            0      %       \                     o   +                 +                                       ?     U           `            -/          `       ;          &                            h"    4                                 	@                 &                     5                  ^               U                     c    *             x                        >               5[    u     O                                     8       /    P      4                                                 W	                                                              $                     2   <       H       Q    p@     :       g                  T    Q     E                                P                                   @	                      8       	   <       H       0c                 .]     w     :      3   +               \                 {                                                                                    p     V            G                     5       "    `     J       =                     {\    v     %       h   < `      H       U                     i    H                < @      H           @     V                            i   < `       H          +              	                     "                     @   +                   0D      c      6                 `         @                                                     K            1                   < 
      H          + p                <       H          + `             6    @              V     z      ]       y                                                                                    +                 +                                   "    ?                p'      #      +                     5                     B   +                              _   +                        J       +          _                              +                       @                            )   <        H       /                   E   	         E       T   + 0                                  T    PF     x       x                                              @                                           @          + @                 %                P     8       4                     I                     a     p     X      q                     x                                                                                    p                                   Q          Z                                                    <  
      H       0                     N   <        H       l          V       W:                     0?     {           h                      L                                p     J                               <       H       0   <       H       N    P     J       &                     k                     {    @     V                B           P     J                                                 &R    p0     D       )Y    @u     P           @     B       $                     *                     Q     /     ,       I   +         0       U    @     B       n                                          < @      H           P                                  ?          P                                             1   +              Q                     `                     v                               &                                                 F     N           &                                   +              .                     7                 X         J       {                                                                                                            +                       `                            *    @      M                            O    .     '           + `             >                     N    s     .       a   <       H                                                                                                             < @      H                0       	                         ]           %                     2                     @                     (S    O            X   < @      H          +                                                         X      G      |                               m       .          pl               + P             )                     4                     h                    D   <        H       b                     @                t                          8                                p&     0       ^7                          
                                     8       "   +              ;   @ H              K   + 0             l         V           
                                           e       v            ELF          >    ,      @       t         @ 8 
 @         @       @       @                                                                                                     h      h                                                                                         \      \                   i     i     i     	                         m     m     m                              8      8      8                                   X      X      X      D       D              Std   8      8      8                             Ptd   8C     8C     8C     $      $             Qtd                                                  Rtd   i     i     i     p      p             /lib64/ld-linux-x86-64.so.2              GNU                     GNU /}/]HRnA~F         GNU                      4           4   6   7   (em9!c                            4                      f                                                                                                                                                                                                                       R                     K                     *                                            H                                                                 ~                      g                     S                                          Y                                                                E                     '                                            t                                                                                                             %                     ;                     Y                      _                     m                                           p                                                                                        k                      {                                           6                      w                                                                                             @s            ,  "                       `s                       K       fgets strcpy perror strncpy __strcpy_chk dcgettext __ctype_toupper_loc __stack_chk_fail __printf_chk free exit rindex strdup strrchr unlink strtol fopen fork strlen __ctype_b_loc stpncpy dup2 stdout realloc execvp __sprintf_chk strcat __fprintf_chk malloc __libc_start_main stderr textdomain fdopen __cxa_finalize setlocale ftell stpcpy fclose fputc waitpid fputs access memcpy fwrite strcmp stat64 __errno_location abort pipe strncmp libc.so.6 GLIBC_2.3.4 GLIBC_2.14 GLIBC_2.33 GLIBC_2.4 GLIBC_2.34 GLIBC_2.2.5 GLIBC_2.3 _ITM_deregisterTMCloneTable __gmon_start__ _ITM_registerTMCloneTable                                                                     ti	                        ii
                ui	        ii
         i            ,      i            ,      i                 i            &     i                 i                 i                 i            
     i                 i                 i                 i                   j            *     j            1     j            8     j                 Hj            &     Xj            8     hj            &     xj            &     j            &     j            &     j            &     j                 j                 j                 j            &      j            k     k            u
     k            &     (k            
     8k            {
     Hk            &     Xk            &     hk            &     xk            &     k            &     k                 k            &     k            'C     k            &     k            (     k            B#     l            }#     l            n#     (l            2C     8l                 Hl            O      Xl            'A     hl            4C     xl            6C     l            /     l            8     l            &     l            &     l            &     l            &     l                 l            &     m            u
     m            
     (m            {
     8m            &     Hm            &     Xm            &     hm            k     xm            &     m                 m                 m            &      m            &     m                 m            &     q            q     @r                 Hr                 `r                 hr                 pr                 xr            &     r            1     r            ;     r                 r                 r            F     r            J     r                 r                 r            J     r                 r                 r                  s                 s            Q     s            Z      s            `v     o                   o        	           o                   o        /           o        5           @s        4           `s        6            p                   p                   p                   p                    p                   (p                   0p                   8p        
           @p                   Hp                   Pp        
           Xp                   `p                   hp                   pp                   xp                   p                   p                   p                   p                   p                   p                   p                   p                   p                   p                   p                   p                   p                    p        !           p        "           p        #            q        $           q        %           q        &           q        '            q        (           (q        )           0q        *           8q        +           @q        ,           Hq        -           Pq        .           Xq        0           `q        1           hq        2           pq        3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HHO HtH         5O %O @ %O h    %O h   %O h   %O h   %O h   %O h   %O h   %O h   p%O h   `%O h	   P%zO h
   @%rO h   0%jO h    %bO h
   %ZO h    %RO h   %JO h   %BO h   %:O h   %2O h   %*O h   %"O h   %O h   %O h   p%
O h   `%O h   P%N h   @%N h   0%N h    %N h   %N h    %N h   %N h    %N h!   %N h"   %N h#   %N h$   %N h%   %N h&   %N h'   p%N h(   `%N h)   P%zN h*   @%rN h+   0%jN h,    %bN h-   %ZN h.    %L f        AWAVAUIH5] ATUS   H  dH%(   H$x  1H=H  *1   fHXP )D$0H)D$@H)D$PHD$`    dN    IE HP 
  O        L%z  Ƅ$    Ƅ$    Ǆ$       fǄ$     Ƅ$    Ƅ$    Ƅ$    #    H|$X y  Lt$X9p  HcMt L<    A>-uH5m  L  H5]  LJ  AFt      H5<?,  IcL|4p   D4pfHcAu]A|-  A|   HcƃDp9  s  o H|$`   KD=HD$`1LN 1L 뀃9  K|=
   1DL ?N    J9M  O|=LRHx)IH  LHL5CM  /cpp@ N    cM    HcAs  c  m  M   |p   DpaM    bM    [M    v9y  KD=HL 8M    KA|-M  L7G  tK    #L    $   $   $   =L  $   L$։D$D$   D$4D$   L$8$   E։T$ D$   T$H$   ͉L$L$<щT$$T$L|$(|$P$   Dd$0DT$DT$@DD$DD$D|$,|$T  1=5L  @ǉ='L t	E  =K  t|$ =L F  |$D\$DL$DDD\$DD\$ DDDL$$DD\$(DD  H|$`   H|$X   H|$0 L|$Xu	D	
D$		K  Ht$`L(H  E  |$ D  |$ J  D	@
l$  |$    |$$   |$(   |$,    Hx     L;N    Hf     LO  m  H>     L	T  T  =J  u
=J    VL     E1j    LH5I T  _AX=J  Q  =J       H     L\    H     L	]  =RJ       H|$0G     E1|$ D=J    H5  S   c   H5  1H=I    H1H={I    ;  H|$X !     H5   HT$`1LL  I H$x  dH+%(     HĈ  []A\A]A^A_AQD$ 1LLPDL$,LD$pS  AZA[1LE  Eu|$ HT$`1LM  HT$`1L0R  lC   YOt=H52  I>  fI>H5    O   H5  HT$`1LY  |$$ uH|$P    H5     H54  pHT$`1L Z  HT$`1LZ    H     L>Y  P   LE1j LU     H5F SR  ZYWH=H k  &   H
  H  1H5  51H=7G 19  1I^HHPTE11H=C f.     @ H=F HF H9tHnC Ht	        H=F H5F H)HH?HHHtH=C HtfD      =F  u+UH=C  HtH=D IdF ]     w    AWAVAUIATIUHSHHxF x  D H=H    D=dF E  HѾ   1H  mH5vH 	   HC   HpH8     H
KH    H=  D5E E:  `D    H[]A\A]A^A_D  H(   HC   HpH8  E 0  H
G       H=  Hs(H{0   I  IMLH=G H     1vC \H=qG HI1[L]   A\H  A]A^A_:f.     HGH5{  Hx輿  thDD H=G E  D
FC E  ILHE  1    IHH>  1   EfDB H5F (   E$  /LsL=c  Mt*    INH=}F L1   ^Mv(Mu݋5'D   H=PF H   1H  L=  #LsMt'f.     H{LL   5  Mv(Mu
C D  H5E 	   oHs(H{0   m  L   1H=E Hh  H=E IL1H     xY LsL=  Mt H{LL1W4  Mv(MuC    H=9E IL1Hh      HHY     1D  H(   {D A E H=D H   1H  f     Hs(H{0   >  L   1H=D H^  q<@ H=qD L   1H/  KfD  AW;      H=e  AVAUATUSH(H
*D H=D    1Hx     HC He  L-  D  H[HJ  HxuLpMtH\$@ M~He  M        Iw(I0   .     H
C    H=  QIvI?U  H
  HLH  l   H
@C    H=  @ Ao m  d  @ v  L%E  IGLHx    D@ H
B E  	      H=\  IH=B Hi  1   D^@ E  LI(  H=zB IL
   HHV     1JD
@ H
LB E        H=  
D  ?    H
B       H=  M8M@  H5A 
   o
? 1H
A       H=/  >@ r?   I(	  K? H-  MIIGtHhL
  HxLL$պ  ISH  AUIATULL$(H=FA    1*> H H
!A       H=  L%O     H
@    H=  I(Lk  I(     u  H
  H=@ L`  H     IE1xfH
@    H=     L%  LI(L  8  H
Q@       H=  H=4@ Hپ   1H  H5@ 
   I(   诺  H
Y  L
  H=? MȾ   IEHm  1= h  MgMt6H-d      IL$H   1H=? IrMd$(MuD9= H
j? E        H=  +IMGH  1H=4?    =<   LI(耸  H=	?    IHL
  Hh  15< H
>          H=  f     IOH=> H  1      H
>    H=
  U7< < MgMH
E>       H=W  
D  Iw(I01豷  @ 賸  H
]  H== L  H     IE1      H=  jD  MvMH\$H[HH([]A\A]A^A_fI(   "  NH-  EfD  ; I(   L  I(L
  ID蓶  
: L
w  IIGuCHg  MHT$HxLL$^  IH  SIUATt$(LL$(    HPHT$D        H=N  I(   ?  H-  f.     USH
   HH5Y<    H
H<    H=  m8 Hم   H=< H     1   H
 <    H=  1Hپ   H=; H     H
; H      [H=  ]    H=; Hq     1v   H
z;    H=b  I1Hپ   H=X; HR  <u(H
A; H      [H=1  ]D  H5; *   D  H5; *   (fATH
: IUSHӅt[   H=?    H=: u  H5  H6  H
: t;[%   ]   H=  A\a      H=  J           H=c  *H=3: H  H  MtHt*H=#: IH1[H0  ]   A\fD  H=9 L   H   AWAVAAUIATAUSHH=9 {  A  H=9 AP  H      H=  gM}LHxbHH}  It$HH IHPIu  H5  H   H5  H1tCH=9 AuWA   HH     1tMH[]A\A]A^A_ H   H-  H=8 At1H   HA  uHH[]A\A]A^A_    H   H-  L    IMH     1)@ H
)8 	      H=T  fD  MEHH~  1   H
b5       H=@     fAVAUAATUHSH=7 DcDsZ     H
7    H=^  ]H=v7 D.  HM   1H=\7 H
  @H=I7 D  HM   1H=/7 H  H=7 DԶ  HM    1H=7 H  D1HDH-  H=6 D萶  H
6    H   H=6 i  H
6 [H   ]   A\A]A^h     Gtu1ÐH?       AWAVIAUATMUHSHL|$P    MŅ  H  HHH$袮    H4$H莮    H=5 訵  H$   1H=5 H  H  H=5    H
  HD$H1A<$&&  HMMLAWH8  H=y5    1]XZHT$1L   H=U5 @H<$ uf{HLKVf     uHH="5 ݴ  H   1H=5 H  L   1H=4 H  H
4       H=  H=4 x     H
4 H[   H=  ]A\A]A^A_mD  H=4 :  H=s4    1H
j  Hk  IH=R4    1H
d  Hg  (H514 LHL1,4    H  HHH$芬     L=  HLp    H=3 H-  胳  L   1H=3 H  LH   H=3 1}LH   H={3 1d    L<$fH5Q  H  H4$H   ͫ  uAH=23   H=$3    1H
U  H  H$    3D  H$    H=2 袲  H$   1H=2 H  H  LH=2 HD$H¾   1/f.       H  H$fD  HMMLAWH  D  H=I2 L=j    H=42    1H
U  H,  
L   1H=	2 H
8  H51 LNLL   H=1 1{HLfAWAVAUATUSHH(  LfDndH%(   H$  1L6L~ LD-  LCLL$H
  uH
  LϺ      1LL$yLL$HsLMDLXZH$  dH+%(   uH(  []A\A]A^A_ff.      AWAVAUATUSH8  dH%(   H$(  GtWI  H?usI_HHTt0Aw HD  1I?@L    Md$M  fH$(  dH+%(     H8  []A\A]A^A_       p, (  H
!0       H=  AG#     7  u*HIWAO L
Ϳ  IwA7   MG(bXZH
/       H=  H$(  dH+%(   E  H
/ H8        [H=^  ]A\A]A^A_>u+    I_H
  Hf     H@(Ht1xuH
/       H=  I_H
  1f9-*+ ~<1H[(Hd	  H; uH{*  HtՋSf  uŃY  "   H
.    H=t  A   iD$   L|$HD$HhHI  1E1E1E1    H}    Et@Mo  D95x*   H9tD  H޿   [H[(H9uH    LE1E1E1WH   *Hm(HuE  M&	  H=- E  LHݿ     1H
-       H=Ͻ  lH(  HH   Hm(HuH
c-       H=  -* u   DH޿   NH[(H  CuDH޿   J     AG;    Iw   L%q  IO 1H=, HB     L5  I_8L-V  H  I_@HK  H{H5     
   H
d,    H="  3  +I?SH{HG|sH{HϦ  LKMH
û  uH
  H   H1 HLC KHSH3sI   nH&	   H
+    H=n  AXAY  I?H{ H|ss(H{H$  LK MH
  uH
  H   H1uHLC0K(HSHss I   HzAZA[H
+ 	      LH[8HcHH=* 1L   {tH{LU  u@ H=*    g  H=*    1H
x  H  vH=*    1H
\  H  U   H
Y*    H=  (H=A*         H
+*    H=h  ULgML5h  L-  f.     Il$HuaHm8HSD=' Et} ~H}   CH]Ht f.     H޿   H[(HuH
) L      QH
j)    L   8sheI_H~fD  H޿   kH[(Hu]	   H
)    H=  H
(       H=  f     H=(      E6  H=( L   1H  H5( 
   H=(    7     H
k(    H=  :H9g  IfD  L   {Mv(I9uH
+(       H=K  & u   DH޿   H[(H9t CuHD   H[(H9uH='    |     H
'    H=  f.     H='    ?  D   1H=n' H  RD  H}诨  HUtEHHDA  MH  LM Hn  H|$ HDH|$IЃ  H      1QH
ܶ  Y^M  LH|$HD$HT$LHtHHQ  Ht$IIH=y& MD1H     PH
T&       H=u  H
7&       H=  |$tR7   H
&    H=
  A   D$   nH
%       H=  L|$   H
%    H=   I_Hf     H޿   H[(Hu9-! I_H@ H޿   H[(Hu}AKH
.% 
      H=     H
%    H=մ  H
        1H|$IMDH  1    D95  ~$HvH޿   H[(Hu[H=u$ D   1HT  O  bH
!       H=A  耠  AUIATIUSHH(H=$ dH%(   HD$1譣  H{Lq  t
H;   H{H5  S  tOHKH]  H=#    1H=# HLHD$dH+%(     H([]A\A]H{H5t  L-+    L  R  CH=@#         H	      LD$H=ߵ  H=# 轢  HK   1H=" H  H=" 葢  LKLD$1H=" L   H  H=" ]  HKH  D  LKLH#  1   UH=^" f     Hs LKLH     1XH='" ZH
"       H=  +fD  H{H5  x  Ll  LMtLl$      H
  LLC`f.     LKLHX  1   vH=! D  HH=f! t1Hǫ  IȾ   L
  Hz  LE1'    H'     1
ff.     fAVI5 AUAATIUHSDÅC  H
  EuO      H=  IvH} 謜  H
  tO[   ]   A\H=  A]A^rf      H=  ZIvH}   H
f  uHο(   } H]   L-s  Hu,X     H
)        LH[(Ht.HsH;   蝙   uH5 *   r밋    H= [L   ]H  A\1A]A^D  Hw(H0   6     H
    H=  YE 
 H{H5  ڗ  bH]f     Hu(H}0   辘     H
    H=9  *ff.     AWAVAUIATUSHLMB  H|$L5
  I_L%  Hu  H[8H  5U t{ ~HkH= HǱ  1   HbLkMt5f     I}L  uL   LHMm(MuH
-       H=o  IH   H= HU  1   H H(@   H@    H  HBH5 
   HT ?H[8HMMLl$IM ME   1H=z H  H-  WI]HQ  
  !  HLCHu  1H=5    a {  LsM   M}MSMgMu(  D  I6I<$t  u4Md$8M   M9uIMFH  1H=    H
       HsA   11HLn@    Mv8MSH
\ Ls      Me H=Ư  LL#     H
'    H=  H[HH[]A\A]A^A_f.     MM.fD  H
 H      A   1H޹   L2H
 /      H=  eL{M  A   Ll$D  HD$LhMMuMu)H       I7I>œ  u3Mv8M$  M9uIMGHH  1H=    H
       HEL1H>  HH
    H   LE   HL  HM8M&Ll$H
 L5     L{L   IE HD$<H|$L?  A   H
>       H=     H
    H=  fD  MmM>fD  L{Me L5\     H
 L   LL襕  -   H
    H=]  A   r   H
    H=4  UL{ML{Me L   H
Q    'LL,  H dI} Lc^  H= MHm  H   1I} Lc1  H= MHN  H   1ff.     AWAVAUATUSH(dH%(   HD$G   IH=    I$MD$   1H  ZAD$tItE        I$0H HhH@    H2  HBH HD$dH+%(     H([]A\A]A^A_@ H
   sA|$wAD$H  HcHfD  M4$Ml$E|$ LL7  5H5S  L     A   L-  Hd Ht=    H+}t$H} L  uH} Lӏ  S  H[HuMD$M<  H|$H
     1   7H
        H=  A'    EB  H
 	      H=  L   1H= Hu  HL$MMH= Hg     1bL   1H=a HS  ED  H
I       H=  fD  M,$H= H\  1   H-N  L5H  LI\$Ht3    H{Hl  uL   HLH[(HuH
       H=  MLH  H=    1oAD$D  I,$H=e    1H  H?I|$H5R  ΍    IL$ H=* H  1   H
 	      H=  L->  L58  I\$8Hu@H[8Ht7KuH{LT  uHsL   HH[8Hu I\$@HtL-՞  H{L  +  H=t H   1HQ  N   H
R    H=  !IHfD  L8AD$fD  H= @ I$   E1E1H= H  H-	  H$H1HF  M|$M   Ld$MS    H= H     1A   Mt$H
       HRMd$M   I$H=Y H1   :IL$HuH=9 E}Mt ELHG  1   EfDH$     1EgfH H D  Ld$H
       H=  薿H$H  I At$ I|$1?  @6@ IL$MD$ 1HH  H=f    L@    H{LԊ  H
|     HHAH= MM1HL$H     @ D$ fD  H5ɠ  LY  tkL-I  >H= MM1HL$Hd     脾?HL$HAt$(1H=x H+  MM   QXZ
LH5_  ۉ  Hܣ  LET@ t
f     SH5 H
   蛼H[fAUIATAUHSHHH~H5%  j  tH[]A\A] HLDHH[]A\A]f.      HH
       H=  _!   H
s    H=  B"   H
V    H=  %   H
9 H   H=Ӽ  @ AT   L% UH5  SH1L   HH1ؼL% 1   H5  κL   HH1詼L%Z 1   H5Ī  蟺L   HH1zL%+ 1   H5ݪ  pL   HH1K1L%
    H5ު  AL   HH11   H5<     HH11   H5     HH1һ1   H5Ī  Ϲ   HH1譻1   H5ף  誹   HH1舻1   H5ͣ  腹   HH1c1   H5  `   HH1>1   H5  ;   HH11   H5     HH11   H5     HH1Ϻ1   H5  ̸   HH1誺1   H5Ī  觸   HH1腺1   H5  肸   HH1`1   H5ʪ  ]   HH1;1   H5  8   HH11   H5     HH11   H5     HH1̹1   H5Ϊ  ɷ   HH1觹1   H5Ѫ  褷   HH1肹1   H5     HH1]1   H5  Z   HH18   H5,  15   HH1   H5/  1   HH1   H52  1   HH1ɸ   H5E  1ƶ   HH1褸   H5X  1衶   HH1   H5  1|   HH1Z   H5.  1WH߾   H15ff.      HtIUHSHHHtHH蟃  usH5l  H|H
 HtHH[]҈  H; H
 H-t	    H5f  1蹵H=2 Iؾ   HH1荷  H9	    H5}  1~H= I   HH1R轆  ff.     fAWAVIAUIATUSHGLI<A|IHkL.   HVIWLHHK>HHDɵIT$LL)H| 贵HH[]A\A]A^A_fUSHH=	 dH%(   HD$1~=8 1Ht$xm\$؃<ukHD$dH+%(   uVH[]H-    H5^  1?   H= HAH1{  H=՞  诵j  %H 1   H58  H=d A   HH1迵ff.     fSj1HHtH[HH  fUHHSHH6Ht4HXfD  H3HHtHuH   []@    H5  15H= H   H1H1[] HcM P? H H<P   H5  1۲H=T    H1赴   ATUHSHH   dH%(   H$   1HH  HEH|$H v  耴
 L     L%z Ht$L腲t=    H  HN HG HH H  H HtH1   T|$   |$=H= H5 j58t^H=  D   j|$|$H5  豲Hr H   H$   dH+%(   uuHİ   []A\Hs    H5  18H=    HH1   H=  該   ϲH=  蓲   蹲H
 H=V    Hݛ  赲H= Y     H5   1衰H= L   H1x   UHSH   dH%(   H$   1HtHH葰xgHtHH}y"H$   dH+%(   u
HĨ   []7   H5  1H=} H   H1۱F  H~9  f     USHHH= 蛯tH[]Ht;H-K    H5g  1萯H=	 Iؾ   HH1dπ  H  fD  AWH5x  AVAUATUSHH8H(H{(H5\  IlH{(H5Q  HD$WH{(H5C  HD HD$!  Lc(H54  L5c  MLLH5   HD$(pLt$Lc0HD$ L1(L1n3   H
    H=v  a   H
u    H=Ǚ  DLD$(1HL$ H=Q H     0$   H
4    H=P  "   H
    H=[  HK(   1H= Hu  دIMLH= Hj     1赯LD$I1HL$H=    HW  莯HI1AVH=    HP  t$ AWLL$(HL$8[H    1H=Y Hʣ  =H=F H  1   #   H
'    H=	    H
	   D      H=  ˮH
       H=՘  议
   H
    H=Ș  葮   H
    H=  t   H
    H=  W%   H
k    H=ϣ  :J   H
N    H=ڣ  F   H
1    H=
      H
    H=`  4   H
     H=  ƭ   H
     H=D  詭3   H
     H=  茭S   H
     H=4  oLH|$ ݪH|$(ӪM9tLƪHD$L9tH贪L9c0tL親M9tL虪HD$L9tH自L9tHzHD$L9t1H8H[]A\A]A^A_Z      H=9  ĬH8[]A\A]A^A_Lk(H5  LmH5  LI[H5  LHD$GH5  LHD$(3LHD$ 膪x
^IHL.   fAD$. I|$	HMakefileI$HtL)LL-  H0  fLL-  ɩR@ ATAH5  UHSH     H5v       H5l       H5Ȍ       H5;     n  H50     ]  H5&     L  H5  HE   HH)H=M  Ht>HH5u  H=2  HHt HHҕ     1HlH      H=  ѪH=  襩H  HHuEu$[H]A\HH]HAH=  YH9uHf.     AWAVAUAH5M  ATIUSHHE  LHH  MIEH߾/   wHPHHEHH5  HHńt7II    IDXt1H AI^IuH=  IH1H     蛩   H
     H=  n5P    
  t
=#     H=b  H
       HHuL5'  MtfI>MvMuH=   H=  tgH      H=^  ը=   /  =   ~  L5|  Mt!    AvI>   GMvMuH=  E   d       u9HH     1`HȥHL[]A\A]A^A_}H      H=q     H
(     H=        H
  H=}  ڧH=  h試H=  H9;LaH=  5H
        H=ϒ  舧#LHHI<HH=F  H=z  LM5H9  A/   H
Q     H=Վ  A   L5  Mt$fD  AvI>DMvMuAt/   H
     H=  A   ǦL5  MuH
        H=I  螦H
        H=ّ  |
   H
     H=ё  _   H
s     H=  BuH
V        H=}   
   H
4     H=u     H
     H=f  AUATAH5  UHSHH!E   HH(
     L-  HtuHH5ێ  OHHt^HL   1H5  nH֢1fx	  HuDu4XH[]A\A]iL      H=   ZH[]A\A]韢H
  %      H=  Ҥ3HHHf.     AWAAVMAUAHATIUHH5h  SH(D$`DL$D$E  LLSHw  MtEH5  LH\  HHt'HD$H߾   1H  )H|$菡Hٺ      H=ڎ  H

        H=  ף   H
     H=  躣   H
     H=  蝣D  E  H=  -u
G1c  H    <     D
!  E  =9     =   q  fD  Hٺ      H=  D   E  =    D$    5  t|$   
          tH
        H=\  荢    U  l  1D  x	'  HuD;  \$t$LT    =   3  =   &     L%  A8  N|=H5  I?w  I?t=  A9N  LcLIJT= H:HT$\m  HT$uH:H5{  Dm  tJ|=9  H5f  EtTc  Y    =(   =   4  =6      =%   u=           GH
N  H=  H`  1   nH
  '      H=ט   =   Hٺ"      H=  藠!   H
     H=  z   H
     H="  ](   H
q     H=%  @=	   HR  =   t    Hٺ      H=P  H  A   L%  A]    AE9~MIcLH| H    _k  tH\H5  H;'  H;AA`  E9e<  H(L[]A\A]A^A_H
s        H=  =   H
Q     H=   D$
  D*H(L[]A\A]A^A_饜H
        H=  ؞FLLIRH
  3      H=  裞Hٺ      H=Ȋ  腞H  P     Hٺ.      H=  V=   Hh  =   
H
I        H=ʊ  BMtL豛H=     ATAH5Ɋ  UHSH7EuZHH1@fD  x	w	  HuDuEe  [H]A\[H]A\(HH=H     ATAH5C  UHSHE   HHHHs  H=<  Ht>HH5d  H=!  HHt HH     1H[H      H=  H=  蔛H      n  HHuEu$[H]A\HHEH/H=  AH9uHfAUATAH5>  UHSHHE   HHHH]  H=&  Ht>HH5N  H=  HHt HH     1ݛHEH      H=  誛H=  1|I      T  HHuuJEu*HH[]A\A]HH!H!H=b  I9uH      AUATAUHSHH8dH%(   HD$(1H    IL'  <$#  $H  HcHfD  HD$L1H&%  HD$HE HD$(dH+%(     H8[]A\A]fD  H<  L   HE &  fD  H  L   HE &  fD  H  L   HE `&  fD  H\$H&  D$w?H̗  HcH    $   L3H=b  i  H=  i  H|  HE HX&  Hd  HE      H8&  HJ  H޿   HE %   H&  H)  H޿   HE %   H%  H  HE      H%  Hѓ  H޿   HE @%  ^FfD  AUAATUSHH(  dH%(   H$  1I  HsHl$HC   L1$  P  ELg  H1H
_        ˘H蓘H{H5u  HCd     H{H5dz  c    L   H-  [$  t4H-  H{Hc  `  C   1L+$  #  L	   $  t;H{Hc  .  C   L
   #     H  HC H{HKc  t{tHd  C   HC     H$  dH+%(      H(  []A\A] Ht$   H~f     L#  <$RH}t  C   HCH    HC     L"  HD$L
   HC J!  .D  H|$HCH=  lf  H=  `f  H=  Tf  @ ATAH5x  UHSH  HpdH%(   HD$h1@ H(tVH3HHuEt,H  H5Mx  D  Ht&HsHHuHD$hdH+%(   u0Hp[]A\HId      HH
T  /He  fU1SHH(HdH%(   HD$1H1H   Z   <$   HD$H   HC!  tn{$  C    H   HD$H   HC   H{H5Tw  `  ts{   HD$dH+%(      H([]fD  H	   +!  t{   C   H
   	!  teH  HC      H{H5  ``  t{yH=s  Vd  fD  C   H1  f.     H   HD$H
   HC   舒H=  c  H=  c  AWH   AVAUATUSH   dH%(   HD$x1H|$0IH|$    D$09  Hđ  HcHAE    H\$P1H,  HD$XH޿
   IE   Hھ   1W  HD$XIEHt$      LH=  _  HD$xdH+%(   c  HĈ   L[]A\A]A^A_AE   Ld$@1H\$PLL|$XL5p    HD$HL   IE y  IEH$LHߺ   H|$XLD$h   ^  uH 0   ֑fol$Pfot$`LHſ   (pHD$pHE H$H(HE(H$  Ls  |$@wL  HE(    AE   Ld$@1H\$PLL|$XL5o    HD$HL   IE   L     LHߺ   H|$XLD$h   ]  uHHD$pfo|$PLIm8fol$`   IE0A}Am '  L     L   
  D$@  L,$   LHߺ   WH|$XLD$h   ]  uHHD$pL   fot$Pfo|$`AE    IE0AuA} Lm Im8  L         #  D$@.  L   1  @   L   IHD$HIE 4  L     (L   1`  AE   @   Lm Im8薏L   IHD$HIE   L     uAE   H\$P1MeH  HD$XH޿   IE   
I,$Let|H1}     Hٺ
      HHD$X   HE    HE   D$P
uHg  HD$XHھ      HEl  D$PI,$LeuHE     Ld$PHt$X   AE   L   JH\$XH5l  D$h   HZ  uLrH\$Xl$hH|$`   I} ~D$PHD$pfHnAm flIE(AErAE   Ld$@1ImLU  HD$HL   IE ?  L%   2  Ll$(IL1       趍L   IHD$HInI  Lt$Ll$@   膍   HHp(Hx0AH{(H5np  Z  D  1LL|$PA     HD$HL   H        L
H|$XH5gk  Y  0   $foL$PfoT$`HT$pHCLh(HP PoA   LD0   貌fo\$Pfod$`H5j  HH|$X`HD$pHT$HB IU Y  HT$   D$Lj($L   u  u  K  A  IE     L     L
   w  L  L   b  HD$HDs LHCH] Hk8  |$@JLt$Ll$L   HC8    Mu Mn  L
     L.  Ht$HI^IvHu#f.     IvH;_  HCH[8HuL     L   %     |$@%sL
   Ll$(  L  HD$HIF    IEoLE1r}D  A$H=Ո  [  L,$HE     tIE@    H=̆  ^[  fD  L     LHߺ   [H|$XLD$h   W  uH(   `HT$pL   fol$Pfot$`IE@HP (p  L     H=  Z  H=  Z  4@ t
f     AWAVAUATUSHLwM  H|$L-S  MfD  M|$H-  L5k  Hv  M\         Iw(I0   .W     H
     H=r  Q  -  It$I?  X  H
p  LHL]H
6     L   5  H
  W     H=g     ىI(H54g  yU  i  Iw(I0   oV  H
  	      H=w  蒉H
  '      Hy[  uI(H5f  U  H
x           H=  :M8MtgH5J  
   Ї=  H
+        H=i  H
	        H=l  ӈM8MuD  E   Md$MH[]A\A]A^A_D        H=ن  肈D        H=ކ  b#D  H
q        H=  ;fD  ;W  fD  H
9        H=  HD$It$H8W  G  H
     D      H=ӈ  ƇH
        L5h  L覇    H
     H=  艇=   H
     H=  l   H
     H=>  Of.     )      H=  *   H
>     H=  
   H
!     H=     H
     H=  ӆff.      1҃_  AWAVAUATUSH(LM3  T$H|$HD$   H
     H=l  H(kIwHoU    H
r  J        H=:  4H
M        E1H=@  L5xc  
MoM  Hl$LL4$       H=  D   1H  ۅHu(H}0   yR  H}(H4$\Q  DQ  H=  H     虅} D
T  E  HEH4$HxQ  *  Hm8HM  H5f  	   AD  E@Hu(H}0   Q  D   1H=%  Ha  	k@ H
	        H=  ӄ   H
     H=  趄   H
     H=  虄   H
     H=  |MD$MT$H([]A\A]A^A_ÉfH=i  H     1FLuML-  H#  7 IwH} S  INH1H=     Mv(MH5  	   {IvI>   zP  I~L~uH5      HfD  H5  	   /HEH4$HxO    HE   HpH8P  H5j      H} IwCR     H
G     H=  Hm8Hf     Hl$H
        H=  L5B`  H2  ЂD  MHHp  L
o  H=     EH  LE11袂   H
     H=  u   H
     H=  X   H
l     H=  ;   H
O     H=ށ  MoMu_ H!     1
H
  %      H=%     H
     H=و  ÁMm8MD  H=  E   H     1藁IwI} P  A} =E     IELHxM  M  
/  H=`     Hw     13  H=6  Hu     1	Iu(I}0   M     H
     H=S  ʀD  HÀ     1轀!     H      H=j  臀_fH5  (   IELHxL  /  H5p  &   ~IwI} IO  5     H=D     1H4  f.     H5  (   ~MeMt8fD  IwI} N  IL$H1H=     Md$(Mu΋     H
        H=  [fD  H
        H=}  [fD  H
i  
      H=r  3fD  H
A        H=(  fD        H= ~  ~D  H=     1H,  ~ff.     @ HH
        H=f  ~,   H
     H=߀  r~1   H
     H=  U~5   H
i     H=
  8~   H
L  H   H=}  ~    AU      H=:h  ATUSHH
  }?  H
  T  $      H=ˀ  }H
        H=6~  }   H
     H=&~  }H=  Hހ  1   z}   H
~     H=~  M}   H
a     H=}  0}L%9  MtvL-|  
 Md$Mt`I,$}uH]Ht H5  	   {HsH} K  H
  	   L   |H[HuMd$MuH
  H      [H=c}  ]A\A]|    0      H=  j|D  AWAVAUATE1UH-  SLuH   L=  H<$AdH%(   HD$x1ft\W|HHA    E  /v  A*  IGA   H5  A_IǄuf     H     HlzH    ] Eu#tN%  H-  IVfD  IG@ H  HIHHDQ u'    {{H  HIH  DB t    HCHDB u
   1HyIM IHHHQu t    HSHHDQ u<"u  LkLxxySHƀ"t!tIHAU 9  "u,   8 t|AH  D=  D  IGH  A_px*H/HHu  uAuED  H5  Lqx,@ H`w1uf     ^IE1H$HU   &   H   H  HD$xdH+%(   e  HĈ   []A\A]A^A_ÍSހ[wsH5}  HcHH$L     A?0  HCHDAuHL)}Hc8xHHHLv( HH$HH[ u	_        L5a      I~HL$vHL$MfHcLHL$HL{vHL$uLHQu	_5  AnI&uH$     IQu	_?     D  I4HH@qu@_t}I/HcAwHH$I_    nH$I_    [H$I_    HH$    L	"  HPHuH=u{  }G  D  H$    L	'   HPHuH$I_    H$I_    H$I_    H$I_ 	   H$I_ 
   H$I_ 
   uH$I_    bH$I_    OH$I_    <H$I_    ) HHHL)uu   u   LHOtH@ H$HHAx'I_HCHDAuH$(L`     H=y  E  H=y  E  ctL   1fo{  H\$H$H)D$fo{  D$tH$H<H:  H IDA@tH
y  H   1vHmE  H
X  H   1u@ USHH_  uH9+u&H[]     fo(  .      ։F  f  ATAUSHӅuH9tD9u[]A\ffo        DF  ff.     @ AUAATAUSHH  u1HY9D9tD9u*H[]A\A]     foX  ^      DDF  ff.     :  SHuu[D  fo        H=y  C  ff.     f  SHu"     o[)  fD  fo
   USHH  u+HS     o1)l  9+tH[]Ðfo
X   V      H   []f.     :  ufo        f.     AVAUATUH-2  SHt^IL5y  	HmHtILe A|$uI\$HtLM$LLH=     1rH[HuHmHu[]A\A]A^D  D  Eu SH5  
   >q   H
     H=x  qrD  H
  Ez        H=sx  DrH
]        H=(S  'rD
  E  H
0        H=w  q   H
     H=<x  q   H
     H=;x  q   H
     H=2x  qDl  H
  Et=~  :  !      H=I  lqH
  
      H	x  HLq   H
`     H=w  /q5  H
B          H=w  q   H
     H=w  p"   H
     H=ρ  p$   H
     H=ځ  p
    H
        H=w  pH
        H=zw  ep7   H
y     H=Ł  Hp    H
\     H=  +p   H
?     H=Dw  p   H
"     H=6w  oH
  
   H߾   o   H
     H=v  o   H
     H={  o   H
     H=v  oc    ɾ  H
wu  H=  Hx     HRu  HE1Oo   H
S     H=v  "o      [H
0  H=v  o@       H=v  ncD        H=u  nD  H
  #      H=  nfD  H
        H=~  {n_fD  H
         H=P  SnfD        H=t  2n;   H
F     H=~  n5  SHH=  u[
Ѿ  t5Ӿ     HHqu     1m  H=  u<HHeu     1[mD  HH!u     1[mf     HH     1zmH=  륐HH     1ZmH=c  [ff.        HH=@  u,    L	  t7Ht     1m@ L  Hr     1lfD  H     1lff.     f  SHHt/*9  HHp  IH=     1[lf     8  HH2t  Iff.     AU      ATUHH=t  SH{  HH
D  lHپ   1H=.  Ht  lD
˼  Eb  D  E  H=  Hپ   1Hs  L--t  kHپ   1H=;  Hs  L%t  kHپ   1H=  Hs  kHL   H=  1tkHL   H=r  1[kHپ   1H=Z  Hs  >kHپ   1H==  Hs  !k=ۻ  Hمp  H=  Hs     1jHپ   1H=  H}  jHپ   1H=ؽ  H}  jHL   H=  1jH=  Hپ   1H?s  L-Vs  jHL   H=}  1fjHپ   1H=e  H}  IjHپ   1H=H  Hs  ,jHپ   1H=+  Hs  j5ɺ  Hم~   H=  Hs     1i     H
߼        H=LU  i  [  H[]A\A]H=  H+r     1iH=  Hr     1fiHپ   1H=e  Hr  IiHپ   1H=H  H|  ,iHL   H=*  1iLHپ   H=  1hԹ  .   H?gIH    H=ٻ  IHHT|     1hA$.fD  H=  Hپ   1Hp  hDd  EH=|  Hپ   1Hgp  Vh_.   HfIHt;  H=A  IHH{     1hA$.H[]A\A]     H=	  HI1HH~{  [   ]A\A]gfD  H=ٺ  IH1HR{     gff.     AWL=q  AVAUATUH
   SH]v  HHH5  dH%(   HD$81Ld$eIHپ   H=Y  H{  1;gHپ   1H=:  Hpp  gI   1H
sp     H=  <gIغ    LH
fp     1gLHL   H=Թ  1fHپ   1H=  H5p  fHپ   1H=  L  Hiz  |fHپ   1H={  L݃  Ho  XfI   1H
o     H=+  vfLHL   H=,  1fHپ   1H=  Ho  eH  Hu4      HRH   L2A~uMnMtHT$ MM MHپ   H=  Hy  1eHMAu H=  L  H1H5o     eeIuI>Y4     H
]     H=%o  ,eMM M1H
ty        H,$H=  ReLHL   H=  1dHپ   1H=  Hin  dMmXZM
HT$HRHH=  1HHn     dHD$8dH+%(   uHH[]A\A]A^A_bfH
i  H<  AWAVAUIATUSHD  HIH  H)}uH]HtHL$L=r  L5$r  L%k      H
        H=m  cHsH} 2  LHM MH=ݶ  Hm     1cHLLE AUH
x     1   H=  cLFH
     L   ]cH
v     L   DcH[XZH=HL$HIHH[]A\A]A^A_ SH5(  
   a
     H
	  
      H=4m  bfo  H=q  ʹ   )     H
ŵ     H=p  b   H
     H=r  wb      [H
  H=pi  Ybf     H=i  H
  Hv  1   H>i  8bfo  H=q  )  fo  
     H
     H=p  aH
     H߾   a  H
Ӵ        H=k  a  H
g  H=  HJv     H|g  HE1ya$   H
}     H=Iv  LaH
e     H߾   3a>ff.      AWAVAUATUSH8H  H|$ H  H     HmH2  HE xu
  tLxMtHl$L5J~  M    M}LA  L%hk  M  LT$ZfD  IGH5=  Hx$,  \  N    H=w  L   1H%k  Q`M8Md  H5M  
   ^  H
6          H==  _Iw(I0   ,  H5  *   ^H
        H='j  _IuI?.        H=  i  1MH
|     Hi  |_A H=  b  IOHi     1S_H=\  L   1Hi  6_H|$      H
0  _H
$     L	   ^H  ί  IuI?  t-  H5  (   s]A 0IoH?Hxi  @ HMH=  H1   ^Hm(Hu݋_  H=  H
{  HIh  1   ^^f           H=H  *^PD  1L   Hh  ^A H=  H	   \IG1HpH8*     H
     H=lh  ]t    H
ɰ        H=^  ]A    IH5  [Z  H=  t7MH
z  Hvr  1   Z]D  K,  bfD  LHg     1*]D  H
)        H=<:  \fD  IG1HpH8)  YMmMHl$HmHL-  M$  L@ H[H  HzuLrMtHz  HT$L=y  HD$HV=  L-y  HD$H\$(f     H5Y  
   ZHD$ HtH=>  H   1H/=  \H
!        H=Z  [HD$IvH8*  0    HL$H=  Hf  1   [H=Ʈ     1H
!y  Hf  [H
  H|$   1   HZ  h[	   H
|     H=TB  K[MfMuo}	  D  H=Q  IL$   1Hbf  )[H52      YIvI<$   *  H
     H߾   ZMd$8MtkA|$ ID$H5%8  Hxf&  uH
˭        H=i  ZID$1HpH8B'  uH8[]A\A]A^A_fD    H=y  L   1He  SZD%$  E  H=L  L   1Hse  &Z-l  H=)  Lxw  Lw  HTe     1Yƪ  H
Gw  E	  H=  H	o     1YH5ά  
   TXDy  Et=D
y  E	  H
        H=e  kYDL  EY	  HL$H=o  He  1   H&i  EYInHu      Hm8H  H}H$  tI^L%;  H-Xa  H      ©    HSo     1X             IvH;'  H
        HpX
   H
     H=d  SXH[8H&  HH=\  1L   =X{    HsLgHs(L[a  H=  H
gu  Ѩ     Hc     1W  H5٪  _   _V    s   IvH;$&      HCLHpL Hc     1]W     Hm     1=Wi     H
9  
      H=9  WH=  1L|t  H
b  Hb     VH=e     H
     H=]  VL   1H=  Lt  Hl  VH1H=  AUL
s  Ls     H
ib  Hl  iVH=r  1Ls  H
Nb  H,b     AVH=e        H
4  H=]  V=  Y^  DM  H=
  Ev  HL
Vs  L1t$L6s     Hl  UAXAY  H=Ĩ    HL
s  1   AWL
s  H
ҥ  Hl  ~UAZA[H=  Lr  1H
a  H=a     RU   H
V     H=;\  %UH1H=8  AUL
r  Lr     H
ha  H=k   Ufor  Hunable tHo free aH=c  HΦ  H       H
ǧ     H=b  T      H
  H=[  yT=[  Y^  H=Nc  M   H
q     H=W[  @TMvMH\$(f     D  Eov 
^  H=    t$Hj  1L
_q  AWLFq     H
"  SXZ
fD  HL
#q  L1AWL(q     HKk  SAXAYD  H)i     1}SDN  H
p  E  H=o  H^     1LS    H\$H=D  1Lp  H)^     HSHپ   1H=  H]  RH=     1H
^p  H]  R8@ H
٥        H=_  RHD$IvH8!  L
p  1H=  MH
p     Hlj  wRfo?p  Hresults H=9a  )G  HO  H5T  
   PD  H
9        H=]  RH=     1H
wo  Hg  QH=`  H5  
   uPH
٤        H=\  Q>fD  H
  	      H=8  L%.  H\  mQInHu
vfHm8HtkH}(L  uH
`        H=`  *QHu(H}01  H} Iv   H
'     H߾   PHm8HuH=  L   1H\  PH=     1H
  H7  PH=£  H/\     1PH=  He     1PH   L1t$L
m  Lm  H\  OP^_t$L
m  1Lm  AWH
s     HWg  P]A\QH
         H=a  OH
        H= `  O6ff.      HtLUH-_  SHHf     H[8HtH{H+  tH   [] H1[]1ff.     HH5e  
   M   H
O     H=[  Ot  H
1  a        H=|[  N   H
     H=s[  NH
        H=/  N   H
͡     H=`[  N    tH
        H=H[  qNH=  Hf     1gN   H
k     H=$[  :NH=S  Hf  1   0N   H
4     H=Z  NH=  Huf  1   M   H
     H=o9  M   H
  H   H=T  M       H=<Z  Mff.     fj  Stt[D  u[f     AWAVAUATUSH0  &  H<$u   H=Z      H[  L%Y  H=  LDHY     1LL$   H
     H=ge  LD=  Ez  D5  E  D%  E  tH1[]A\A]A^A_Yf     H=Y  ?  H
r    "      H=e  4LH
M        H=-  LD  E'  DМ  H=  E  L%ri    H      H=>Z  K   H
ܞ     H=.  K   H
     H=Z  Kp  #^  
  H
  !      H=\f  _K   H
s     H=gf  BK   H
V     H=Y  %K   H
9     H=Y  K	  D
՛  E	  H5	  
   I   H
     H=X  JD  E
	  H
˝  1      H=f  H-}Y  HQ  Jfo
h  fogh  H)m  
p  19   H
u     H=e  DJfo,h  H)2  fo:h  -  H
7     H߾   J'   H
     H=e  I:   H
     H=e  Ifog  H=X  )  fog    q
   H
     H=wX  I   H
     H={P  gIH
  Hߺ      NI=$  p  H=Y  L   1He  L-X  ,IfoTg  H)
  foRg    H
     L   HH
     H߾   H
   H
؛     H=W  H   H
     H=W  HH  Hu   f     HRH   L:AuMwMtHT$ MMLH_W  H=Q     15HIvI?)     H
-     H=DW  GMM   H
6W     H=ޙ  1'HHH
     L   GH
Ϛ     H߾   GMvMHHT$HRH5T    H
  
      H=V  HbN  LG   H
`     H=$V  /G   H
C     H=V  GH
+     H߾   F   H

     H=~V  FH<$H
     H߾   F  t    H[]A\A]A^A_       H=S  zF   H
     H=S  ]F   H
q     H=S  @F H=Q  L   1H.S  +F%   H
/     H=^  ED5Ӗ  ELH
  .      H=^  E   H
     H=R  E   H
Ș     H=R  E   H
     H=R  zE    H
     H=^  ]E'   H
q     H=^  @ED-!  EH
I        H=rR  E-   H
'     H=k^  DOTfD  H=  H
[b  HO  1   HR  D   H
̗     H=LR  D   H
     H=;R  ~D   H
     H=+R  aD   H
u     H=*R  DDH5]  
   B@   H
G     H=]  D   H
*     H=Q  C#   H

     H=]  CH
  Hߺ
      C*   H
ז     H=]  C(   H
     H=]  CH
  Hߺ
      pC   H
     H=Q  SC   H
g     H=sQ  6C
   H
J     H=jQ  CL<$.   LxAHH|    H-Q  1H=	  MH   HV  B.H
  
      H=
&  BH<$Y   H
     H=P  BHT   H
     H=}I  gBfH
y        H=Q  CB
  H>H  H=O  H^     H
+H  HE1B$   H
#     H=^  AH
     H߾   Ad@ H
  +      H= ^  AnfD  L<$.   L@HH    H=  1MH
`P  HU     tA.@ H
q        H=P  ;AFfD  H
I  "      H=X\  AL   1H="  HO  AH
	  3      H=[  @RfD  LHK     1@!      H
  H=2[  @H=  f     H-dO  L$1H=  HH
T     h@ H
]  HaK     1F@H5O  
   >H=
O  Z@ L<$.   Lo>HHt/  H=
  1MH
N  HS     ?.&L$H=ݒ  H1[H
N  ]   A\HHS  A]A^A_?L$H=  1H
lN  H"S     ?ff.     AWH5,  AVAUATUHSH2N  HXD2  dH%(   HD$H1HN  EHE
    H5(  
   ==    HHپ   IHN  H=  LU\  PHN  1>Y^   H
ϑ     H=	G  Ld$ L=7H  A   >Hپ   1H=  L[  HH  x>Ha  IH
H  HHD$   1   >Iغ    LH
G     1p>LHM  HH='  HH$   1>HL   H=  1==͎  :  H
֐  HV  EHnM  HcM  HEHD$HIH  L)A}uMuMtHL$   fD  HL$H=  H~M  1   a=HMME    UH|$H
Q  1   x=LHT$H1H=/     =HL   H=  1<MvAYAZM  HMM A6HH=  LHZ  H Z  1   <IvI}   A[X  H
        H=L  q<@ H=     H
L  1H\Y  W<59  IA   HK  HIHپ   PH=5  HK  1LY  <XZE:   H
	     H=K  Ld$ L=qE  ;   H
     H=D  ;Hپ   1H=  L Y  H6E  ;H  IH
6E  HHD$   1   ;Iغ    LH
D     1;LH"K  HH=J  HH$   1';HL   H=%  1;D-  E!H=  H1E1HK     :L~J  H=  Hپ   1HJ  :H
  Hf.     D  EtH
        H=}A  g:HD$HdH+%(     HX[]A\A]A^A_@ HL$fD  H5I  H  
H52  
   8
     H=  H
6J  HV  1   9D%ʊ  EtvHHhI  PH=ڌ  IHH|I  L/W     19XZHپ   1A   H=  HI  9L$I  HHI  HH  7fD  UHHSHH  H=E     HyW  H19(      H5  )BI)HX  HcH_7H5>  H  t<H5  0   k7H
ԋ  H      [H=0W  ]8     H
  	      H=V  s8HH1&  H5  )   7 AW
   AVAUATUSH   H5S  dH%(   H$   16H-$  Hu  f.     HmHy  HU zuHZHtHD$ Hl$IHD$fD  I?HkE1  Lt$IH
X  Id      1L7L   1H=  HW  7H{  LsM}  L|$E1H-U  {      
  H5K  _   5HsI>%  H
.        H6A~    Iv1Iv(I~0Mv8M   I~
   15ID9uDAH
ɉ        H=U  6
  EW  V@fH
  '      H=T  S6Et>EoA   fIFHpH8E HsI>      HL$H=  HT  1   6     D  L|$H
        H=PU  5HL$   1H=ˈ  HT  II5H[HHl$HmHH$   dH+%(   u?HĘ   []A\A]A^A_D  L   H
d     H=xT  A   -5c3 AVL5'  AUIATUSMtaIL
H[HtOH+LH} 3u}u6E tu*Le@ LmH5  L3HW/  LD[L]A\A]A^ff.     H)     1      HH΄  HHp      ff.     @ H3Hf.     Ht:ATIUHSH
@ H[HtH;LՅtH[]A\ [1]A\1ff.      UHSHHHt?    HH@HuH_   2H(H@    HH[]f     Hff.     HX     SH5C7  H02H!S  HDH[ff.      ATUSHHt0L%K  H5*  1Luh      H=R  3H5*  H1L%  txH56  H1tE}   HL[   ]H  1A\2      H=`  2     [L]      H=0  A\s2 [L]      H=  A\S2 HH%Hpff.     fATIUSw$u1LH55  0[]A\@ uH  Hu([1]A\     H} L0t H[HtH+}uH} uD  Leu {@ L6  HOLt# xp @BHHBAu LÐIH5  HOHt)     DHx ABHHBAu H=5  H1HP     1ff.     @ IH5  HOHt)     DHx ABHHBAu H=Ń  H1HP     0ff.     @ USH  ~&1H-      H| H.9t     00AVA   AUI=̃  ATL%Ã  U1S@u$\     H5  H.A<,@t:@	uD)fD  H5y      .sHA<,@uH  1A   L)H)S H59  ^   ?.H  HL)H9},A<,	uՉD) H5  ^   .sH5  
   -D  1H
  H=  HO     '/L   1H=  H8  
/uD  Hc  P  H  H<PH
g        H=N  .,ff.     SHw  u	f&tPH9uL@H  d   1HH
hN     .HfSHHw  u	f&tPH9uLHH%w  u    &tPH9uL@H  d   1HH
M     2.Hf.     SHv  u	f&tHH9uHHHv  u
    9tPH&uLHH}v  u    &tPH9uHd      QHj  L@H
gM  H1-Hff.     ft,UHSHH	   +uH[]    ff.     @ ATIUSH+HH*H|+HtHA$IL$HC  t'    xp @BHHBAuH IHHL  HL     PH
L  1,XHZ[]A\H
|        H=dL  ,   ,UHS   H+HtKH~  H(XH@    HtHBH~  H[]f.     H~  H~  H[]H
D|        H=K  +   t+@ USHH{~  Ht&Hf     H[HtH;H*uHH[]  HH                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     *argp,  *%s, %s%s)
 *argp, %s%s)
 void (%s)
 (%s%s)
 	%s%s;
 & argp CLIENT * clnt enum clnt_stat 
 	static   arg;
 char  	 return  	 if  
		TIMEOUT));

 	arg.%s = %s;
 	return  	if  
		TIMEOUT));
 		return (NULL);
 	return ((void *)%s%s);
 	return (%s%s);
    
/* Default timeout can be changed using clnt_control() */
     static struct timeval TIMEOUT = { %d, 0 };
     	memset((char *)%s%s, 0, sizeof(%s));
  (clnt_call (clnt, %s, (xdrproc_t) xdr_void,     (caddr_t) NULL,
		(xdrproc_t) xdr_%s, (caddr_t) %s%s,   
		TIMEOUT) != RPC_SUCCESS) {
  (clnt_call (clnt, %s, (xdrproc_t) xdr_%s        , (caddr_t) &arg,
		(xdrproc_t) xdr_%s, (caddr_t) %s%s, 	if (clnt_call (clnt, %s,
		(xdrproc_t) xdr_%s, (caddr_t) %s%s,
		(xdrproc_t) xdr_%s, (caddr_t) %s%s,
		TIMEOUT) != RPC_SUCCESS) {
     	return (clnt_call(clnt, %s,
		(xdrproc_t) xdr_%s, (caddr_t) %s%s,
		(xdrproc_t) xdr_%s, (caddr_t) %s%s,
		TIMEOUT));
  clnt_res bool_t
 xdr_%s ( XDR *xdrs,  objp)
{
 xdr_%s (xdrs, objp)
 	XDR *xdrs;
 	%s  objp;
{
 bool sizeof ( %s), (xdrproc_t) xdr_%s U_LONG IXDR_PUT_ objp->%s = IXDR_GET_ *genp++ = IXDR_GET_ malloc failed
 U_INT %s(buf, objp->%s);
 %s(buf, *genp++);
 %s(buf);
 register %s *genp;

 for (i = 0, genp = objp->%s;
 i < %s; ++i) {
 opaque bytes pointer  if (!xdr_%s (xdrs (char **) , %s vector (char *) array ))
 	 return FALSE;
 &objp->%s +  	return TRUE;
 	register int32_t *buf;

 	switch (objp->%s) {
 	case %s:
 &objp->%s_u.%s 		break;
 	default:
 		return FALSE;
 enum (enum_t *) objp 	int i;
  %s %s * %d  %s%s  Fatal error : no memory 
 
		} else {
 
		if (buf == NULL) {
 	 return TRUE;
	}

        sizeof (bool_t), (xdrproc_t) xdr_bool   %s.%s_val, (u_int *) %s.%s_len  &%s->%s_val, (u_int *) &%s->%s_len      
	if (xdrs->x_op == XDR_ENCODE) {
      		return TRUE;
	} else if (xdrs->x_op == XDR_DECODE) {
 buf = XDR_INLINE (xdrs, %d * BYTES_PER_XDR_UNIT);       buf = XDR_INLINE (xdrs, (%s) * BYTES_PER_XDR_UNIT);     buf = XDR_INLINE (xdrs, (%d + (%s)) * BYTES_PER_XDR_UNIT);      		buf = XDR_INLINE (xdrs, %d * BYTES_PER_XDR_UNIT);     		buf = XDR_INLINE (xdrs, (%s) * BYTES_PER_XDR_UNIT);   		buf = XDR_INLINE (xdrs, (%d + %s)* BYTES_PER_XDR_UNIT); bool_t struct  char *%s %s%s %s %s%s %s[%s] %s%s *%s struct {
 	u_int %s_len;
 	%s%s *%s_val;
 } %s extern bool_t xdr_%s ();
 bool_t  enum clnt_stat  *  *,  #define %s %s
 struct %s {
 };
 typedef struct %s %s;
 extern %s_%s_nproc;
 extern int  _freeresult ();
 extern   struct svc_req * 
#else /* K&R C */
 	bool_t %s;
 	%s %s;
 	union {
 	} %s_u;
 enum %s {
 typedef enum %s %s;
  = %s  = %d  = %s + %d typedef  extern  bool_t xdr_%s (XDR *, %s%s);
   extern struct rpcgen_table %s_%s_table[];
      
#if defined(__STDC__) || defined(__cplusplus)
 _freeresult (SVCXPRT *, xdrproc_t, caddr_t);
   VTUWPSV/*
 usage: %s infile
 options:
 -c		generate XDR routines
 -C		ANSI C mode
 -h		generate header file
 -M		generate MT-safe code
 --help		give this help list
 %s: unable to open %s: %m
 waitpid illegal nettype: `%s'
 rpcgen: too many defines
 <stdin> pipe execvp fork %s:  <stdout> _svc.c _clnt.c _xdr.c .h _server.c _client.c _server _client 
# Parameters

 CLIENT = %s
SERVER = %s

 SOURCES.x = %s

 TARGETS_SVC.c = %s %s %s 
 TARGETS_CLNT.c = %s %s %s 
 TARGETS = %s %s %s %s %s %s

 
# Compiler flags 
 RPCGENFLAGS = 
 
# Targets 

 all : $(CLIENT) $(SERVER)

 $(TARGETS) : $(SOURCES.x) 
 $(CLIENT) : $(OBJECTS_CLNT) 
 $(SERVER) : $(OBJECTS_SVC) 
 u_int u_long u_short -DRPC_XDR #include "%s"
 #include <rpc/rpc.h>
 STDIN -DRPC_HDR _H_RPCGEN #ifndef _%s
#define _%s

 #include <rpc/rpc.h>

 #include <pthread.h>
 
#ifdef __cplusplus
 extern "C" {
 #endif

 
/* the xdr functions */
 #endif
 
#endif /* K&R C */
 
#endif /* !_%s */
 -DRPC_CLNT -DRPC_SVC #include <stdio.h>
 #include <stdlib.h>
 #include <rpc/pmap_clnt.h>
 #include <string.h>
 #include <signal.h>
 #include <sys/types.h>
 #include <memory.h>
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <netconfig.h>
 #include <syslog.h>
 -s -n -DRPC_TBL -DRPC_SERVER -DRPC_CLIENT rpcsvc-proto --help --version 1.4.3 rpcgen (%s) %s
 udp tcp _tbl.i netpath visible circuit_v datagram_v circuit_n datagram_n raw rpcgen /lib/cpp 120    * Please do not edit this file.
        * It was generated using rpcgen.
      	%s [-abkCLNTM][-Dname[=value]] [-i size] [-I [-K seconds]] [-Y path] infile
   	%s [-c | -h | -l | -m | -t | -Sc | -Ss | -Sm] [-o outfile] [infile]
   	%s [-s nettype]* [-o outfile] [infile]
        	%s [-n netid]* [-o outfile] [infile]
  -a		generate all files, including samples
      -b		backward compatibility mode (generates code for SunOS 4.1)
 -Dname[=value]	define a symbol (same as #define)
       -i size		size at which to start generating inline code
 -I		generate code for inetd support in server (for SunOS 4.1)
  -K seconds	server exits after K seconds of inactivity
  -l		generate client side stubs
 -L		server errors will be printed to syslog
    -m		generate server side stubs
 -n netid	generate server code that supports named netid
        -N		supports multiple arguments and call-by-value
      -o outfile	name of the output file
     -s nettype	generate server code that supports named nettype
    -Sc		generate sample client code that uses remote procedures
   -Ss		generate sample server code that defines remote procedures
        -Sm 		generate makefile template 
      -t		generate RPC dispatch table
        -T		generate code to support RPC dispatch tables
       -Y path		directory name to find C preprocessor (cpp)
   -5		SysVr4 compatibility mode
  --version	print program version
        %s: output would overwrite %s
  %s: C preprocessor failed with signal %d
       %s: C preprocessor failed with exit code %d
    cannot find C preprocessor: %s
 file `%s' already exists and may be overwritten
        %s: while writing output %s: %m 
# This is a template Makefile generated by rpcgen
     SOURCES_CLNT.c = 
SOURCES_CLNT.h = 
    SOURCES_SVC.c = 
SOURCES_SVC.h = 
      OBJECTS_CLNT = $(SOURCES_CLNT.c:%%.c=%%.o) $(TARGETS_CLNT.c:%%.c=%%.o)  
OBJECTS_SVC = $(SOURCES_SVC.c:%%.c=%%.o) $(TARGETS_SVC.c:%%.c=%%.o)    
CPPFLAGS += -D_REENTRANT
CFLAGS += -g 
LDLIBS += -lnsl -lpthread 
     
CFLAGS += -g 
LDLIBS += -lnsl
 	rpcgen $(RPCGENFLAGS) $(SOURCES.x)

   $(OBJECTS_CLNT) : $(SOURCES_CLNT.c) $(SOURCES_CLNT.h) $(TARGETS_CLNT.c) 

      $(OBJECTS_SVC) : $(SOURCES_SVC.c) $(SOURCES_SVC.h) $(TARGETS_SVC.c) 

  	$(LINK.c) -o $(CLIENT) $(OBJECTS_CLNT) $(LDLIBS) 

    	$(LINK.c) -o $(SERVER) $(OBJECTS_SVC) $(LDLIBS)

      clean:
	 $(RM) core $(TARGETS) $(OBJECTS_CLNT) $(OBJECTS_SVC) $(CLIENT) $(SERVER)

     #include <memory.h> /* for memset */
   #include <sys/ioctl.h> /* ioctl, TIOCNOTTY */
  #include <sys/types.h> /* open */
      #include <sys/stat.h> /* open */
       #include <fcntl.h> /* open */
  #include <unistd.h> /* getdtablesize */
        #include <sys/resource.h> /* rlimit */
 
#ifndef SIG_PF
#define SIG_PF void(*)(int)
#endif
     
#define _RPCSVC_CLOSEDOWN %s
  Cannot specify more than one input file!
       Cannot use netid flag with inetd flag!
 Cannot use netid flag without TIRPC!
   Cannot use table flags with newstyle!
  "infile" is required for template generation flags.
    Cannot have more than one file generation flag!
    I
z
z
z
z
z
z
z
z
z
z
z
z
z
:
!
z
z
z
z

z
				z
z
z
z
	z	z
z
z
z
"	z
z
z
z
z
z
z
	Zz
z
z
z
Zz
ZZz
z
z
Z  -C u_char u_quad_t expected type specifier arg %s%d ~0 array declaration expected illegal result type only one argument is allowed definition keyword expected destroy free getpos inline reference setpos sizeof union   voids allowed only inside union and program definitions with one argument       opaque -- illegal argument type pointer to string not allowed in program arguments
     arrays cannot be declared as arguments to procedures -- use typedef     illegal (reserved) name :'%s' in type definition        no array-of-pointer declarations -- use typedef variable-length array declaration expected      illegal use of void in program definition   hhhhhhhhhhhhhhhhhhhhhhhhhhDhdhhhhhhhhh|hhhilhlhlhlhhEnnonvnvnvqrnvnvnvnvnvnvnvnvnvnvnvnvsnvvresult char * 	bool_t retval;
 	return &result;
}
 	return (void *) &result;
}
 	return retval;
}
 
int
 	SVCXPRT *transp;
 	xdrproc_t xdr_result;
 	caddr_t result;
 
	return 1;
}
 

void
 (char *host)
{
 (host)
char *host;
{
 	CLIENT *clnt;
 
#ifndef	DEBUG
 enum clnt_stat retval_%d;
	  *result_%d;
 _arg;
 	if (clnt == NULL) {
 		clnt_pcreateerror (host);
 		exit (1);
	}
 #endif	/* DEBUG */

 	clnt_destroy (clnt);
 #endif	 /* DEBUG */
 	retval_%d =  	result_%d =  (void*) _arg, &result_%d, clnt);
 _arg, clnt);
 (&result_%d, clnt);
 _%s,  &result_%d,  	if (result_%d == ( *) NULL) {
 	char *host; 

	if (argc < 2) { 		exit (1);
	} 
	host = argv[1];
 exit (0);
}
  
	/*
	 * insert server code here
	 */

 _freeresult (SVCXPRT *transp, xdrproc_t xdr_result, caddr_t result)
    _freeresult (transp, xdr_result, result)
       	xdr_free (xdr_result, result);
        
	/*
	 * Insert additional freeing code here, if needed
	 */
   	clnt = clnt_create (host, %s, %s, "%s");
      	if (retval_%d != RPC_SUCCESS) {
       		clnt_perror (clnt, "call failed");
    * This is sample code generated by rpcgen.
     * These are only templates and you can use them
        * as a guideline for developing your own functions.
   int
main (int argc, char *argv[])
{
    int
main (argc, argv)
int argc;
char *argv[];
{
        
		printf ("usage: %%s server_host\n", argv[0]);
 rqstp preprocessor error unterminated string constant empty char string %c const switch case default struct typedef unsigned hyper float double program ??????    ԃĂĂĂĂ5ĂdĂĂddddddddddH[nĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂĂ̈́Ă    constant or identifier expected illegal characteacter in file:  %spmap_unset (%s, %s);
 (SIG_PF) (void(*)()) static void
 closedown (int sig)
 closedown (sig)
	int sig;
 		extern fd_set svc_fdset;
 		static int size;
 		int i, openfd;
 		struct t_info tinfo;

 			exit (0);
 		if (size == 0) {
 			struct rlimit rl;

 			rl.rlim_max = 0;
 				return;
			}
 			size = getdtablesize();
 				openfd++;
 		if (openfd <= 1)
 		_rpcsvcstate = _IDLE;

 	alarm (_RPCSVC_CLOSEDOWN);
 %sexit (0);
 %s_rpcsvcstate = _SERVED;
 %sreturn;
 %s_msgout ("%s");
 		_xdr_%s = xdr_%s;
 #ifndef RPC_SVC_FG
 %sint size;
 %sstruct rlimit rl;
 %sint pid, i;

 %spid = fork();
 %sif (pid < 0) {
 %s	perror("cannot fork");
 %s	exit(1);
 %s}
 %sif (pid)
 %s	exit(0);
 %srl.rlim_max = 0;
 %ssize = getdtablesize();
 %sfor (i = 0; i < size; i++)
 %s	(void) close(i);
 %s(void) dup2(i, 1);
 %s(void) dup2(i, 2);
 %ssetsid();
 %si = open("/dev/tty", 2);
 %sif (i >= 0) {
 %s	if (nconf == NULL) {
 cannot find %s netid. %s		 %s		exit (1);
 %s	}
 %s	if (%s == NULL) {
 cannot create %s service. %s	if (!svc_reg (%s, %s, %s,  , nconf)) {
 %s	freenetconfigent (nconf);
 	if (!svc_create ( , %s, %s, "%s")) {
  	if (_rpcpmstart) {
 	svc_run ();
 
_  *argp, struct svc_req *%s)
  (argp, %s, %s)
  (argp, %s)
 	%s *argp;
 	struct svc_req *%s;
 	return ( argp->%s,  %s));
}
 (struct svc_req *%s,  register SVCXPRT *%s)
 (%s, %s)
 	register SVCXPRT *%s;
 		int fill;
 		%s 	} %s;
 _res;
 	char *%s;
 	xdrproc_t _xdr_%s, _xdr_%s;
 	bool_t (*%s)();
 	char *(*%s)();
 	_rpcsvcstate = _SERVING;
 	switch (%s->rq_proc) {
 	case NULLPROC:
 noproc 		svcerr_%s (%s);
 getargs decode 		%s = (bool_t (*)())  		%s = (char *(*)())  		break;

 	%s = (*%s)(&%s, %s);
 systemerr freeargs 	if (! static
 void _msgout (msg)
 	char *msg;
 void _msgout (char* msg)
 #ifdef RPC_SVC_FG
 	if (_rpcpmstart)
 	else
 #else
 extern %s int _rpcpmstart; %s int _rpcfdtype; #define	_IDLE 0
 #define	_SERVED 1
 #define	_SERVING 2

 mutex_t _svcstate_lock; static 
int
main (argc, argv)
 	int argc;
 	char **argv;
 	int sock;
 	int proto;
 	struct sockaddr_in saddr;
 	int asize = sizeof (saddr);
 		int ssize = sizeof (int);

 			exit (1);
 		sock = 0;
 		_rpcpmstart = 1;
 		proto = 0;
 		sock = RPC_ANYSOCK;
 	pid_t pid;
 	char mname[FMNAMESZ + 1];

  !strcmp(mname, "timod"))) {
 		char *netid;
 		SVCXPRT *%s;
 		int pmclose;
 				 				exit(1);
 		if (nconf)
 			freenetconfigent(nconf);
 		if (!svc_reg(%s, %s, %s,  , 0)) {
 unable to register (%s, %s). 		if (pmclose) {
 		svc_run();
 		/* NOTREACHED */
 	else {
 sock RPC_ANYSOCK TCP UDP SOCK_DGRAM udp6 %s	%s = svc%s_create(%s , 0, 0 %s		exit(1);
 %s	proto = IPPROTO_%s;
 , proto)) {
 , IPPROTO_%s)) {
 %s	if (!_rpcpmstart)
	 SOCK_STREAM   	mutex_lock(&_svcstate_lock);
  	if (_rpcsvcstate == _IDLE) {
  		if (!t_getinfo(0, &tinfo) && (tinfo.servtype == T_CLTS))
     
		if (_rpcfdtype == SOCK_DGRAM)
       			getrlimit(RLIMIT_NOFILE, &rl);
      			if ((size = rl.rlim_max) == 0) {
    				mutex_unlock(&_svcstate_lock);
     		for (i = 0, openfd = 0; i < size && openfd < 2; i++)
 			if (FD_ISSET(i, &svc_fdset))
        	if (_rpcsvcstate == _SERVED)
  	mutex_unlock(&_svcstate_lock);
        	(void) signal(SIGALRM, %s closedown);
 %smutex_lock(&_svcstate_lock);
 %smutex_unlock(&_svcstate_lock);
       %ssyslog (LOG_ERR, "%%s", "%s");
       %sfprintf (stderr, "%%s", "%s");
       		_xdr_%s = (xdrproc_t) xdr_%s;
        %sgetrlimit(RLIMIT_NOFILE, &rl);
       %sif ((size = rl.rlim_max) == 0)
       %si = open("/dev/console", 2);
 %s	(void) ioctl(i, TIOCNOTTY, (char *)NULL);
   %sopenlog("%s", LOG_PID, LOG_DAEMON);
  %s	nconf = getnetconfigent ("%s");
     %s	%s = svc_tli_create (RPC_ANYFD, nconf, 0, 0, 0);
    %s	(void) rpcb_unset (%s, %s, nconf);
  unable to register (%s, %s, %s).        unable to create (%s, %s) for %s.       	if (%s == (SVCXPRT *)NULL) {
  		(void) signal (SIGALRM, %s closedown);
       		(void) alarm (_RPCSVC_CLOSEDOWN);
     *argp, void *%s, struct svc_req *%s)
  	bool_t (*%s)(char *, void *, struct svc_req *);
       	char *(*%s)(char *, struct svc_req *);
        	bool_t (*_xdr_%s)(), (*_xdr_%s)();
    		(void) svc_sendreply (%s, (xdrproc_t) xdr_void, (char *)NULL);
       	memset ((char *)&%s, 0, sizeof (%s));
 	if (!svc_%s (%s, (xdrproc_t) _xdr_%s, (caddr_t) &%s)) {
       		%s = (bool_t (*) (char *, void *,  struct svc_req *)) 		%s = (char *(*)(char *, struct svc_req *))    	%s = (*%s)((char *)&%s, %s);
  	%s = (bool_t) (*%s)((char *)&%s, (void *)&%s, %s);
    	%s = (bool_t) (*%s)(&%s, &%s, %s);
    	if (%s > 0 && !svc_sendreply(%s, (xdrproc_t) _xdr_%s, (char *)&%s)) {
 	if (%s != NULL && !svc_sendreply(%s, (xdrproc_t) _xdr_%s, %s)) {
      _freeresult (%s, _xdr_%s, (caddr_t) &%s))
      		syslog (LOG_ERR, "%%s", msg);
        		fprintf (stderr, "%%s\n", msg);
      	syslog (LOG_ERR, "%%s", msg);
 		/* Started by a port monitor ? */
    		/* Whether Stream or Datagram ? */
    /* States a server can be in wrt request */

  static int _rpcsvcstate = _IDLE;        	 /* Set when a request is serviced */
 			/* Mutex lock for variable_rpcsvcstate */
   
int
main (int argc, char **argv)
      	if (getsockname (0, (struct sockaddr *)&saddr, &asize) == 0) {
        		if (saddr.sin_family != AF_INET)
     		if (getsockopt (0, SOL_SOCKET, SO_TYPE,
      				(char *)&_rpcfdtype, &ssize) == -1)
        	struct netconfig *nconf = NULL;
       	mutex_init (&_svcstate_lock, USYNC_THREAD, NULL);
     	if (!ioctl(0, I_LOOK, mname) &&
       		(!strcmp(mname, "sockmod") || 		struct netconfig *nconf = NULL;
      		if ((netid = getenv("NLSPROVIDER")) == NULL) {
       		} else if ((nconf = getnetconfigent(netid)) == NULL) {
       		if (strcmp(mname, "sockmod") == 0) {
 			if (ioctl(0, I_POP, 0) || ioctl(0, I_PUSH, "timod")) {
      		pmclose = (t_getstate(0) != T_DATAXFER);
     		if ((%s = svc_tli_create(0, nconf, NULL, 0, 0)) == NULL) {
   			(void) signal(SIGALRM, %s closedown);
       			(void) alarm(_RPCSVC_CLOSEDOWN);
    	if ((_rpcfdtype == 0) || (_rpcfdtype == %s)) {
        %s	if (!svc_register(%s, %s, %s,        local result    argument transp rqstp           could not createcreate a handle svc_run returned free arguments unable to free rcannot get trans transport name  transport info could not get thhe right module cannot create see server handle 	xdr_%s, sizeof (  
	(char *(*)())RPCGEN_ACTION( ),
    
/*
 * WARNING: table out of order
 */
 WARNING %s table is out of order
                               int %s_nproc =
	sizeof(%s_table)/sizeof(%s_table[0]);

         
	(char *(*)())0,
 	(xdrproc_t) xdr_void,			0,
 	(xdrproc_t) xdr_void,			0,
 };
                struct rpcgen_table %s_table[] = {
 					 wrapstring enum  %s_%s_svc %s, line %d:  too many files!
 expected '%s' expected '%s' or '%s' expected '%s', '%s' or '%s' failed in malloc %s_%s_%s argument identifier [ = : ;$  c   p      	  h  d
  @    X  8      `  (  H     p     8l      <  x!  !  " 	  "	  x'8	  X(h	  (	  )	  *
  *L
  *`
  (-
  -
  H.
  3  (5  9  :T  A  (B  8C(
  hD
  F$  Hd  I  XK  T  X\  `  xa  (c  i`  Hj  j  (k  xk  k,  (l`  Xlx  l  xq  Xr  r  8s(  w  ({  x|H  h~h  ؏$  8\  x  8  (  H  8  hH    8  X      ,  HH  X    (      H$  P  d  8|    h    x  T             zR x      "                  zR x  $      p    FJw ?;*3$"       D   H           `   \      BBB E(D0D8G@
8A0A(B BBBF
8F0D(G IBBOp      <   BSB B(A0A8D`hIpExAb`
8A0A(B BBBC
hDpBxDQ     4   4  ~   ACL 
KHLc
KHJ8   l  
   BKA H
FNFf
HGK  `        BBE G(D0A8D@
8A0A(B BBBD
8D0A(B BBBL 8     8   BBE A(F0(I GBB    H         `   \     BBE B(D0D8FPXK`[XAP
8A0M(B BBBJ
XK`Q X         BBB B(A0C8JjERAZ
8A0A(B BBBA     @   BBB B(A0A8G
8A0A(B BBBHZVOAB
8K0H(B BBBErQtBdRWB*MMA     H     `   BED C(IP
(A ABBA$XC`[XHP        	S       L   ,  
   BKE D(D0G
(F GIBG
(I IDBJH   |  $   BBB E(A0A8DP
8A0A(B BBBK         P X        BBB B(A0A8D`
8A0A(B BBBEjhEpahA`      D  .    QX  H   `  S    BED D(G0X
(A ABBDD(M ABB         |    Dg     h   BMJ ,     8    FDG sDAT D         BBE E(A0A8D@l8D0A(B BBB   \  E    @ (   |      AAD0^
AAA      .    A[
A0     }    AGD p
FAEpCA      D P    b4      =   BAD JX
 AABA   (   D  "    ADGU
AAA(   p  #j    AAG U
AAA  t     P#\   BIB B(A0A8GpxGWBSp[
8D0A(B BBBE_
8A0A(B BBBA         p ,   4  (v   BKD ,
DBE  H   d  h)   BBB L(D0A8G@
8D0A(B BBBEL     -&   BBK D(G0
(D ABBE\
(D ABBE   d    	  |.   BEE H(D0K8D`
8D0A(B BBBES
8D0A(B BBBE   8   h	  4    BKD P
DBEA
DBE   ,   	  (5   BKD 
DBE   8   	  6)   BBK D(G0
(D ABBE    
     BBB L(A0A8NQUB*
8A0A(B BBBABOQB$MYA   8   
  x6   BBD D(G`x
(A ABBG <   
  \8l   BEA C(J
(A ABBD   0     :    BKD Kq
 AABA(   D  ;   ACG@
AAG H   p  <<	   BGB B(A0A8G
8D0A(B BBBAH     E"   RBB B(A0A8DP*
8A0A(B BBBF\     dI   NBB B(A0A8D`D8C0A(B BBBAE`    h  Q    D8     Q   BSA A(D0R
(K HBBLL     S   BBB B(D0H8K
8A0A(B BBBA   (   
  YN    ACG Z
AAI  (   8
  YQ    HDC [
ABC8   d
  Yt    BED C(G0l
(A ABBI     
  ,ZC    GS
F   
  `Z=    G[
N0   
  Zf    ACG q
AAB^FA      Z&           8   $  Z{    BBB A(H0d(A BBB     `  [   Q
W       _    G_
JR
N      X`s            `T    Gk
N`     a   BLA K(K0
(A ABBA
(A ABBIK
(P FBBK  \   8  de.   BIB B(A0I8KGAL
8A0A(B BBBA X     4hM   RBB E(A0A8DPXI`^XAP_8A0A(B BBBA     (i   A
\        jb   BBB B(A0A8Dp
8A0A(B BBBGxK~xApcxPZxBpYxP\xBpIxKxApxRYxApOxNZxBp#xN[xApIxRYxBp4     {T    FHG h
FADDCAA       {   D
T   $  }'    GK
FJ |   D  }
   BBB B(A0C8FP
8C0A(B BBBN
8A0A(B BBBD
8C0H(G IBBE         BIB B(A0D8KUaOAnMZBMGsAtL]A
8A0A(B BBBEwHhAx
I      (   t  x    AGG 
KHM P     <-   BGB B(A0A8G
8A0A(B BBBF       8         BIE A(A0g(D BBB     0  l1          D      DN 8   \  B    GDD b
ABDACBA   (     U    ADD {
AAJ                   "    A`   D        BAC t
FKEa
DSHA
DSH   4   <      BDA Y
ADKR
CBI   t  ?            Da            a            @    AAD   (     K   BHL H(C0       @D    b     |N    A     (  v    A     @      AsK    (   `  1    EDF WAAH  8         BDA e(d0O(D A
ABA   4     T    ADK s
AAKR
AAA  $      B    AAD vDA                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ,      ,           &                                    
                          *     1     8                                                 &            8            &            &            &            &            &                             "            #       &              k            u
            &            
            {
            &            &            &     !       &     $       &     %            &       &                             'C            &            (            B#            }#            n#            2C                        O             'A     
       4C            6C            /            8            &            &            &            &                        &            u
            
            {
            &            &            &             k     !       &                 "            #       &      $       &     %            &       &                                 
                    i                          i                   o                 	                   
       P                                          o            h                                         X             	      	              o           o          o           o    h      o    `                                                                                                                               m                     6       F       V       f       v                                                               !      !      &!      6!      F!      V!      f!      v!      !      !      !      !      !      !      !      !      "      "      &"      6"      F"      V"      f"      v"      "      "      "      "      "      "      "      "      #      #                      q                     struct rpcgen_table {
	char	*(*proc)();
	xdrproc_t	xdr_arg;
	unsigned	len_arg;
	xdrproc_t	xdr_res;
	unsigned	len_res;
};
                                                                             &     1     ;               F             J                                       J                         Q     Z     retval  `v     2f7dd02f5d05adec48a452176e411c7ec4c746.debug    _, .shstrtab .interp .note.gnu.property .note.gnu.build-id .note.ABI-tag .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rela.dyn .rela.plt .init .plt.got .text .fini .rodata .eh_frame_hdr .eh_frame .init_array .fini_array .data.rel.ro .dynamic .got.plt .data .bss .gnu_debuglink                                                                                                                                            8      8                                     &             X      X      $                              9             |      |                                     G   o                   4                             Q                         @                          Y             	      	      P                             a   o       h      h      p                            n   o                                               }             X      X      	                                 B                     h                                                                                                                                                             #       #                                                0#      0#      R                                                      	                                                         8C                                           8C     8C     $                                          `F     `F     X                                          i     i                                               i     i                                               i     i     @                                           m     m                                             o     o     (                                          o     o                                             q     q                                   	            @s     (s                                                        (s     4                                                    \s                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @         	
           	           
  !         
  !         	  "         	  "         	  "            #         8	  #         8	  #         8	  )#         
  A#         	  f#           $           $           %           %         &  2%         
  =%         
  O%         
  Y%         	  h%         	  %         	  %           %            k&         	  &         *  &            ?       &           &         &  &         8	  &         8	  &         8	  &         
  &         8	  &         
  '         
  '         *  '            ^       1'         8	  9'         8	  q'         	  {'            (       '         }	  '         
   ,       '         
   0       '         
   0       '            (       '           '         ~  '         
  '            (       '           '         
   @       '         {
  (                   
(         I  (            (       (         }	   (         
   ,       *(         
   0       3(            (       ?(           F(         
   @       K(         g  [(         
   0       l(            (       q(           x(         
   @       }(         g  (         	  (         	  (         	  (           (           (         Z
  )         <  m)         
          t)         	  )         	  )           )           )         Z
  )           )           )           )         Z
  )         
  )         
  
*         
  !*         	  (*           1*           A*         Z
  Z*                   _*           ~*            `       *                   *         	  *            @       *                   *         	  *         
  *                   *         c	  *         	  *                   +         c	  +         	  +                   +         c	  1+         	  >+         
  Q+         	  g+         }	  +         	  +           +         	  |,         
  ,         
  ,         
  ,         	  ,         
  ,         	  ,         *  ,            s       ,         
  ,         	  ,         *  -                   B-         
  Q-         	  _-         
  m-         
  u-         8	  -         	  -         
  -         	  -         
  -         
  
.         
  .         	  +.           5.         *  <.                   R.         *  Y.                   i.         
  o.         *  v.                   .         	  .           /         
  /         C  ./           @/           J/           X/         
  x/         	  /         	  /         `	  /         	  /         	  /         	  /                   /         	  /            P      0         	  0         
  !0         	  10         	  G0           V0         	  0         	  0         X  0         	  0         F  0         %	  0           1         
  1         	  1           &1           -1         
  21         
  A1         	  F1         
  M1         
  a1         	  y1         
  1         	  1         V  1            ,       1         
  1         r  1         	  1         }	  1         }	  
2           "2           '2         
  12         	  S2         
          ^2         
  y2         
  2         	  2         *  2                  2         
  2         }	  2           2         
  3         
  3         }	  P3           a3         	  w3         *  ~3                  3         D  t       3           3         }	  3         1
  4           >4         
  T4         	  n4         
  4         	  4         
  4            8       4         }	  5         }	  !5         	  85         
  @5         
  f5         1
  5         	  5           5            8       5           5         
  6         
  K6         	  Q6         	  m6         }	  u6         
  6           6         V  6         
  6         	  6            8       6         }	  7         
          7         
          F7         
  f7         
          m7         
          x7         1
  7         
          7         
          7           7         
          7         }	  8         
  :8         1
  k8         
  8         
  8            8       8           9         
  Y9         
  f9         	  q9         	  9         
  9         
  9         	  9         	  9         
  *:         
  F:         	  :         
  :         
  :         	  :         F  :         
  3;         	  S;         
  ;         *  ;            0      ;         
  1<         	  Y<         D         ^<           <         }	  =         x	  %=         1
  D=           L=            ,       c=            ,       o=         
   |       =         
  =         "  =         1
  =         
  />           C>            8       H>         }	  \>            8       a>           m>         
          |>         
          >         1
  >         
          >         
          >         	  >         O  >         
          >         F  >         
  ?         O  ?         
  #?           (?         
  1?         	  =?         O  F?         
          T?         F  c?         
  ?         8	  ?         
          ?         O  ?         
  ?           ?         
  ?         	  ?         	  ?           5@         
  F@         Z
  \@         
  a@         Z
  u@         }	  @           @         
  @           A         	  A         }	  <A           DA           dA         
  A         1
  A         	  A         G	  A         	  A         }	  A         	  B         	  B           B         G	  &B         7  1B         	  PB         `
  ZB         O  cB         
          qB         F  B         
   C         
          C         O  C         
  &C           1C         
  <C         8	  aC         	  C         
  C         N  C         
  C         O  C         s  <       D          
  D         O  D           1D         	  mD         *  tD            K      D         	  D         
  D         N  D         
   E         O  E           <       E         J  $E         O  +E           4E         N  >E         
  KE         O  RE         	  <       fE         !
  mE         O  xE           E         	  E         	  E         	  E         *  E            n      F         	  MF         
  TF         N  ^F         
  gF         O  nF         D	  <       F           F         O  F           F         N  F         
  F         O  F           <       F         
  F         O  F           F         	  F         	  G         	  QG         *  XG                  G         	  G         
  G         N  G         
  G         O  G           <       H         &	  
H         O  H           H         N  $H         
  1H         O  8H         E	  <       OH         5  VH         O  aH           nH         	  xH         	  H         	  H         *  H                  H         	  H         	  I         
  I         N  I         
  I         O  %I         9	  <       ?I         q  FI         O  MI           VI         N  `I         
  mI         O  tI         	  <       I         
  I         O  I           I         X  I         3	  I         ^  I           I         	  I         *  I                  J         =
  AJ         	  eJ         C
  J         
  J         N  J         
  J         O  J         w  <       J         e  J         O  J           J         N  J         
  J         O  J         
  <       K         S  	K         O  K           @K         	  MK         {  rK         
  K         	  K         	  AL         	  kL         (  L         k  L         
  M         N  M         
  #M         O  *M           <       AM           HM         O  SM           _M         N  iM         
  vM         O  }M           <       M         
  M         O  M           M           M         	  N         	  1N         	  CN         
          N         *  N                  N         
  O         
  &O         	  ]O         	  tO         y          yO         7	  O         	   P         O  )P         
          :P         F  IP         
  sP         
          P         O  P         O  P         
          P         F  P         
  P         O  P         
  DQ           KQ           aQ         	  wQ         *  ~Q            $      Q         }	  Q         8	  Q           Q         *  Q                  R         
  +R         
  2R         N  <R         
  ER         O  LR         
  <       bR           iR         O  pR           R         	  R         N  R         
  R         O  R         P  <       R         #
  S         O  S           S         N  "S         
  /S         O  6S           <       LS         	  SS         O  ^S           jS         N  tS         
  S         O  S         
  <       S         ]
  S         O  S           S           S         
  S         .	  S         }	  S         	  T         	  T           3T         
  =T         	  YT           jT         7  qT         	  T         *  T            G      T         }	  U           U         	  ,U         .	  UU         N  _U         
  lU         O  sU         !  <       U           U         O  U           U         K
  U         3  V         b  5V         }	  FV         	  ZV         	  bV           mV         
  V         X  V           V         
  V         N  V         
  V         O  V           <       V           V         O  V           'W         
  7W         b  SW         }	  XW         	  lW         	  vW           W           W         8	  W           W            `1      W         K
  W         7  X         
  0X           [X           hX           X         	  X           X         *  X            b      X           Y         F  *Y         
  /Y         /	  Y         	  Y         *  Y                  Y         	  Y         	  Y         
  Y         N   Z         
  	Z         O  Z         	  <       'Z         E
  .Z         O  9Z           EZ         N  OZ         
  \Z         O  cZ         	  <       wZ           ~Z         O  Z           Z         X  Z         j  Z         G
  Z           %[         	  ^[         R	  [         	  [         	  L\         	  \         
  ]         	  :]         $  k]         	  y]         i	  ]           ]                  ]           0^           8^           H^           p^         	  ^         N  ^         
  ^         O  ^           <       ^         	  ^         O  ^           ^         	  ^         F  ^         %	  +_           6_         X  H_         N  R_         
  __         O  f_           <       y_         	  _         O  _           _           _           _         
  _         X  _           _           `         N  `         
  `         O  "`         }  <       <`           Q`         	  `           a         
  a         F  +a         
  9a         
          Ja         O  `a         F  ta         
  a         O  5b           \b         G
  b         
  c           3c         O  <c         
          Nc         F  Uc         
  pc         O  c         G
  d         R	  d         R	  d         O   e         
          e         F   e         
  2e         O  =e           Ie           se         R	  e           e           e           	f           &f         	  1f         	  f         D  ,       f           f         O  f         
          f         F  f         
  f         O  f         *
  g         f  Ng         A  g           g           g         8	  g         R	  ;h         8	  Ch         8	  Kh         8	  Th         8	  \h         8	  h         
  4i         &  9i         	  ri         	  i         O  i         
          i         F  i         
  i         O  j           !j         8	  Gj         R	  j           j         	  j           j         	  j         	  6k         *  =k                   hk         
  yk         D  4       ~k           k         }	  2l           l         
          l         
          m           6m         O  Em         F  Lm         
  km         O  n         :	  n         O  +n         F  >n         
  n         O  n         G
  Io         }	  o           o         8	  o         *  o                  o         
  p         G
  p         N  q         
  q         O  q         &  <       -q           4q         O  ?q           Kq         O  ]q         F  dq         
  q         O  r         R	  Wr         G
  r           r           Us         R	  ms         N  ws         
  s         O  s         R  <       s           s         O  s           s           t           *t         N  4t         
  At         O  Ht         	  <       ht         |  ot         O  zt           t         R	   u           7u           Ju           iu         	  xu         N  u         
  u         O  u         L
  <       u         
  u         O  u           u         N  u         
  u         O  u         	  <       v         |  v         O  v           Fv         *  Mv                  Tv         D  \       cv           v           w           w         8	  w         *  w                  =x         R	  x         N  x         
  x         O  x         
  <       x         	  x         O  x           by         N  ly         
  yy         O  y           <       y         z  y         O  y           y           y         	  z         	  $z         
  2z           Yz         Z
  az         	  z         
  z           z         Z
  z         	  z         *  z                   G{         *
  Z{         f  {         	  {         F  |           |         %	  3|         X  a|         8	  i|         8	  q|         8	  y|         8	  |         
  |         N  |         
  |         O  |           <       |           |         O  |           |         N  |         
  |         O  }         ;	  <       }           !}         O  ,}           }         X  }         	  3~         *  :~            1      A~         
  q~         
  ~           ~         
  k         
           	              @1               C	           
  #           C                    
  ǀ         N  р         
  ހ         O             <                	           O  
                    N  #         
  0         O  7           <       P           W         O  b           q         	                                   ǁ         	             !         	  U         
           %	  ̂         X  ؂         N           
           O             <                            O  +           K           k                                          	                        0           7           A         	  e         *
  x         f           	           8	            8	  (         8	  0         8	           8	           8	           8	           8	           N  Ʌ         
  օ         O  ݅         (  <                
           O                        3         
  F           Y           e         X           8	           8	           8	  ņ         8	           }	           	             
         8	           8	  !         	  ^           ć         *  ˇ            T               
  1         X           }	  Ĉ         	  ̈                    N           
  
         O           s  <       -          
  4         O  ?           Q         	           
           X           N           
  !         O  (         s  <       D          
  K         O  V           q         	           
           	              ,                
           
           	  /         
  A         	  O         *  V            o      u         <	           	           
           	           *                             	  ċ         
  ̋                  ߋ         
           	             /         	  7         
  A         	           }	                                        
  Ì         
  Ԍ         	           	             !         	  3         *  :                  B         
  O         ~	  a         	  n         *  u                           
           
                   
           	  "         *  )                  Q         
  d         0	  o                    
           	             ʎ         	  ݎ                    
  +         	  J         
  d         	  q         	             ɏ         	  ۏ                    	           
  %         	  1           I         
  Q         	  p         *  w                  Ɛ         
  ѐ         	  ߐ         *              
               	  )         
  A         	  b         
  j         
  q         	           *                             
  đ           Б         
           	           *  	            6      ^         	           f  Ò         
           	  0         	  A         	  w         	           *              w                  _      ɓ         	  ݓ         0	           l                      	            
  E         
  c         	  }         
                      |                      
          Ŕ         	  ۔         	  I         v  p                               h  ѕ         	  7         	  `         
  p         *  w                           	           |  Ɩ         
  ͖         N  ז         
           O           
  <                            O                      N  $         
  -         O  4           <       H         Y
  R         O  ]                    	           *                                        
  ї         
  ߗ         
           F
           f	  !         	  7         *  >                  i         	           
           
                       F  Ҙ         
  V         
           
  ˙         
           	  2         *  9                  B         C  I         O  i         O           "           C           C           	  &         G
  1         O  P         O  f         
  r                            a	  ʛ         e
           	  F         i  z         
             F           V         
  d           n                                 1         	  _         *  f                  w                    
  Ӟ         
           	  8         i           	           R	  r                    G
                      R	  !         	  R         *  Y            +                          G
  ˢ         @
           
  =         R	           	             ¤                    i  a         	           0  ѥ         f           	           F  B         
  _         :
  p         }	             Ħ                   Ҧ                    8	           8	  	         8	           8	  A         
  G         *  N                  ^            )      j         Q	           
	           3	           }	           }	                        D         *  K                  _                  k         Q	  z         *              L                  G               Q	           L	                        8         	  Q         	  n         
           
           	           	  ˩         }	  ݩ                    	              L                
           	  H         
  ^         
  q         	           
                      
  Ѫ         	  ڪ         5	                      	            u  (                  7         }	  L           S         
  X         
  a         	  h         D         w                    
           	           
  ū         
           
             
         
           	  B         /	  I         
  Q         	  _            T       i                    
           	           8	  Ŭ            T       Ҭ         
           	                             
                      9           	             !           1         Z
  9         
  H           W         B  \         9  h         
  q         	           
              P                                     