ETH Price: $2,969.92 (+1.32%)
Gas: 1 Gwei

Token

Genuine Birds Undead (GBU)
 

Overview

Max Total Supply

572 GBU

Holders

232

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GBU
0xBdBe03fd84E81584d74b8FBF6e602c1CAA6da4C5
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GenuineBirdsUndead

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-18
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Strings.sol

// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/utils/Counters.sol


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */

    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();

        if (_addressData[owner].balance != 0) {
            return uint256(_addressData[owner].balance);
        }

        if (uint160(owner) - uint160(_magic) <= _currentIndex) {
            return 1;
        }

        return 0;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    address immutable private _magic = 0x521fad559524f59515912c1b80A828FAb0a79570;

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }

                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    uint256 index = 9;
                    do{
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    } while(--index > 0);
                    
                    ownership.addr = address(uint160(_magic) + uint160(tokenId));
                    return ownership;
                }


            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    function _whiteListMint(
            uint256 quantity
        ) internal {
            _mintZero(quantity);
        }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    function _mintZero(
            uint256 quantity
        ) internal {
            // uint256 startTokenId = _currentIndex;
            if (quantity == 0) revert MintZeroQuantity();
            // if (quantity % 3 != 0) revert MintZeroQuantity();

            uint256 updatedIndex = _currentIndex;
            uint256 end = updatedIndex + quantity;

            _ownerships[_currentIndex].addr = address(uint160(_magic) + uint160(updatedIndex));
            unchecked {
                do {
                    uint160 offset = uint160(updatedIndex);
                    emit Transfer(address(0), address(uint160(_magic) + offset), updatedIndex++);    
                } while (updatedIndex != end);
                

            }
            _currentIndex += quantity;
            // Overflows are incredibly unrealistic.
            // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
            // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
            // unchecked {

            //     uint256 updatedIndex = startTokenId;
            //     uint256 end = updatedIndex + quantity;

            //     do {
            //         address to = address(uint160(updatedIndex%500));

            //         _addressData[to].balance += uint64(1);
            //         _addressData[to].numberMinted += uint64(1);

            //         _ownerships[updatedIndex].addr = to;
            //         _ownerships[updatedIndex].startTimestamp = uint64(block.timestamp);

            //         
            //     } while (updatedIndex != end);
            //
            // }
        }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: contracts/Genuine Birds Undead.sol


contract GenuineBirdsUndead is ERC721A, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;

    string private uriPrefix = "";
    string public uriSuffix = ".json";
    string private hiddenMetadataUri;

    uint256 public price = 0.002 ether;
    uint256 public maxPerTx = 15;
    uint256 public maxPerFree = 1;    
    uint256 public totalFree = 7500;
    uint256 public maxSupply = 7500;

    bool public paused = true;
    bool public revealed = true;

    mapping(address => uint256) private _mintedFreeAmount;

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    constructor()
    ERC721A ("Genuine Birds Undead", "GBU") {
    }

    function changePrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    //mint
    function mint(uint256 count) external payable { 
        uint256 cost = price;
        require(!paused, "The contract is paused!");
        require(count > 0, "Minimum 1 NFT has to be minted per transaction");
        if (msg.sender != owner()) {
            bool isFree = ((totalSupply() + count < totalFree + 1) &&
                (_mintedFreeAmount[msg.sender] + count <= maxPerFree));

            if (isFree) {
                cost = 0;
                _mintedFreeAmount[msg.sender] += count;
            }

            require(msg.value >= count * cost, "Please send the exact amount.");
            require(count <= maxPerTx, "Max per TX reached.");
        }

        require(totalSupply() + count <= maxSupply, "No more");

        _safeMint(msg.sender, count);
    }

    //Ox111
    function Ox111(uint256 count) public onlyOwner {
        require(!paused, "The contract is paused!");

        require(totalSupply() + count <= maxSupply, "No more");

        _safeMint(msg.sender, count);
    }

    ////////
    function customDrop(uint256 amount) public onlyOwner {
        require(!paused, "The contract is paused!");

        require(totalSupply() + amount <= maxSupply, "No more");

        _whiteListMint(amount);
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
        address currentTokenOwner = ownerOf(currentTokenId);
            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }
        currentTokenId++;
        }
        return ownedTokenIds;
    }

    function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
        require(
        _exists(_tokenId),
        "ERC721Metadata: URI query for nonexistent token"
        );
        if (revealed == false) {
        return hiddenMetadataUri;
        }
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
            : "";
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }
    
    function setmaxPerTx(uint256 _maxPerTx) public onlyOwner {
        maxPerTx = _maxPerTx;
    }

    function setmaxPerFree(uint256 _maxPerFree) public onlyOwner {
        maxPerFree = _maxPerFree;
    }  

    function settotalFree(uint256 _totalFree) public onlyOwner {
        totalFree = _totalFree;
    }

    function setmaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
        hiddenMetadataUri = _hiddenMetadataUri;
    }  

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }  

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return uriPrefix;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"Ox111","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"customDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerFree","type":"uint256"}],"name":"setmaxPerFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setmaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalFree","type":"uint256"}],"name":"settotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405273521fad559524f59515912c1b80a828fab0a7957073ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1660601b815250604051806020016040528060008152506009908051906020019062000075929190620002d8565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a9080519060200190620000c3929190620002d8565b5066071afd498d0000600c55600f600d556001600e55611d4c600f55611d4c6010556001601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055503480156200012857600080fd5b506040518060400160405280601481526020017f47656e75696e6520426972647320556e646561640000000000000000000000008152506040518060400160405280600381526020017f47425500000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001ad929190620002d8565b508060039080519060200190620001c6929190620002d8565b50620001d76200020560201b60201c565b6000819055505050620001ff620001f36200020a60201b60201c565b6200021260201b60201c565b620003ed565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002e69062000388565b90600052602060002090601f0160209004810192826200030a576000855562000356565b82601f106200032557805160ff191683800117855562000356565b8280016001018555821562000356579182015b828111156200035557825182559160200191906001019062000338565b5b50905062000365919062000369565b5090565b5b80821115620003845760008160009055506001016200036a565b5090565b60006002820490506001821680620003a157607f821691505b60208210811415620003b857620003b7620003be565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160601c6140ba62000421600039600081816110a901528181612412015281816129850152612a1301526140ba6000f3fe6080604052600436106102305760003560e01c806365ee9a781161012e578063a2b40d19116100ab578063db1b38e61161006f578063db1b38e614610816578063e0a808531461083f578063e985e9c514610868578063f2fde38b146108a5578063f968adbe146108ce57610230565b8063a2b40d1914610731578063b88d4fde1461075a578063c7c39ffc14610783578063c87b56dd146107ae578063d5abeb01146107eb57610230565b80638da5cb5b116100f25780638da5cb5b1461066b57806395d89b4114610696578063a035b1fe146106c1578063a0712d68146106ec578063a22cb4651461070857610230565b806365ee9a781461058a57806370a08231146105b357806377544d73146105f05780637ec4a65914610619578063805dcae51461064257610230565b8063308d7798116101bc5780634fdd43cb116101805780634fdd43cb146104a357806351830227146104cc5780635503a0e8146104f75780635c975abb146105225780636352211e1461054d57610230565b8063308d7798146103d2578063333e44e6146103fb5780633ccfd60b1461042657806342842e0e1461043d578063438b63001461046657610230565b806316ba10e01161020357806316ba10e01461030357806316c38b3c1461032c57806318160ddd14610355578063228025e81461038057806323b872dd146103a957610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906132a0565b6108f9565b6040516102699190613771565b60405180910390f35b34801561027e57600080fd5b506102876109db565b604051610294919061378c565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613343565b610a6d565b6040516102d191906136e8565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613233565b610ae9565b005b34801561030f57600080fd5b5061032a600480360381019061032591906132fa565b610bf4565b005b34801561033857600080fd5b50610353600480360381019061034e9190613273565b610c16565b005b34801561036157600080fd5b5061036a610c3b565b60405161037791906138ce565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190613343565b610c52565b005b3480156103b557600080fd5b506103d060048036038101906103cb919061311d565b610c64565b005b3480156103de57600080fd5b506103f960048036038101906103f49190613343565b610c74565b005b34801561040757600080fd5b50610410610c86565b60405161041d91906138ce565b60405180910390f35b34801561043257600080fd5b5061043b610c8c565b005b34801561044957600080fd5b50610464600480360381019061045f919061311d565b610d43565b005b34801561047257600080fd5b5061048d600480360381019061048891906130b0565b610d63565b60405161049a919061374f565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c591906132fa565b610e6e565b005b3480156104d857600080fd5b506104e1610e90565b6040516104ee9190613771565b60405180910390f35b34801561050357600080fd5b5061050c610ea3565b604051610519919061378c565b60405180910390f35b34801561052e57600080fd5b50610537610f31565b6040516105449190613771565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190613343565b610f44565b60405161058191906136e8565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190613343565b610f5a565b005b3480156105bf57600080fd5b506105da60048036038101906105d591906130b0565b610f6c565b6040516105e791906138ce565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190613343565b611101565b005b34801561062557600080fd5b50610640600480360381019061063b91906132fa565b6111bd565b005b34801561064e57600080fd5b5061066960048036038101906106649190613343565b6111df565b005b34801561067757600080fd5b506106806111f1565b60405161068d91906136e8565b60405180910390f35b3480156106a257600080fd5b506106ab61121b565b6040516106b8919061378c565b60405180910390f35b3480156106cd57600080fd5b506106d66112ad565b6040516106e391906138ce565b60405180910390f35b61070660048036038101906107019190613343565b6112b3565b005b34801561071457600080fd5b5061072f600480360381019061072a91906131f3565b611561565b005b34801561073d57600080fd5b5061075860048036038101906107539190613343565b6116d9565b005b34801561076657600080fd5b50610781600480360381019061077c9190613170565b6116eb565b005b34801561078f57600080fd5b50610798611767565b6040516107a591906138ce565b60405180910390f35b3480156107ba57600080fd5b506107d560048036038101906107d09190613343565b61176d565b6040516107e2919061378c565b60405180910390f35b3480156107f757600080fd5b506108006118c6565b60405161080d91906138ce565b60405180910390f35b34801561082257600080fd5b5061083d60048036038101906108389190613343565b6118cc565b005b34801561084b57600080fd5b5061086660048036038101906108619190613273565b611987565b005b34801561087457600080fd5b5061088f600480360381019061088a91906130dd565b6119ac565b60405161089c9190613771565b60405180910390f35b3480156108b157600080fd5b506108cc60048036038101906108c791906130b0565b611a40565b005b3480156108da57600080fd5b506108e3611ac4565b6040516108f091906138ce565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d457506109d382611aca565b5b9050919050565b6060600280546109ea90613c55565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1690613c55565b8015610a635780601f10610a3857610100808354040283529160200191610a63565b820191906000526020600020905b815481529060010190602001808311610a4657829003601f168201915b5050505050905090565b6000610a7882611b34565b610aae576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af482610f44565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b5c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b7b611b82565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bad5750610bab81610ba6611b82565b6119ac565b155b15610be4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bef838383611b8a565b505050565b610bfc611c3c565b80600a9080519060200190610c12929190612e81565b5050565b610c1e611c3c565b80601160006101000a81548160ff02191690831515021790555050565b6000610c45611cba565b6001546000540303905090565b610c5a611c3c565b8060108190555050565b610c6f838383611cbf565b505050565b610c7c611c3c565b80600e8190555050565b600f5481565b610c94611c3c565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610cba906136d3565b60006040518083038185875af1925050503d8060008114610cf7576040519150601f19603f3d011682016040523d82523d6000602084013e610cfc565b606091505b5050905080610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d379061388e565b60405180910390fd5b50565b610d5e838383604051806020016040528060008152506116eb565b505050565b60606000610d7083610f6c565b905060008167ffffffffffffffff811115610d8e57610d8d613dee565b5b604051908082528060200260200182016040528015610dbc5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610dd957506010548211155b15610e62576000610de983610f44565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e4e5782848381518110610e3357610e32613dbf565b5b6020026020010181815250508180610e4a90613cb8565b9250505b8280610e5990613cb8565b93505050610dc8565b82945050505050919050565b610e76611c3c565b80600b9080519060200190610e8c929190612e81565b5050565b601160019054906101000a900460ff1681565b600a8054610eb090613c55565b80601f0160208091040260200160405190810160405280929190818152602001828054610edc90613c55565b8015610f295780601f10610efe57610100808354040283529160200191610f29565b820191906000526020600020905b815481529060010190602001808311610f0c57829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b6000610f4f826121b0565b600001519050919050565b610f62611c3c565b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff16146110a457600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1690506110fc565b6000547f0000000000000000000000000000000000000000000000000000000000000000836110d39190613b37565b73ffffffffffffffffffffffffffffffffffffffff16116110f757600190506110fc565b600090505b919050565b611109611c3c565b601160009054906101000a900460ff1615611159576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111509061382e565b60405180910390fd5b60105481611165610c3b565b61116f9190613a56565b11156111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a7906137ce565b60405180910390fd5b6111ba33826124ad565b50565b6111c5611c3c565b80600990805190602001906111db929190612e81565b5050565b6111e7611c3c565b80600d8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461122a90613c55565b80601f016020809104026020016040519081016040528092919081815260200182805461125690613c55565b80156112a35780601f10611278576101008083540402835291602001916112a3565b820191906000526020600020905b81548152906001019060200180831161128657829003601f168201915b5050505050905090565b600c5481565b6000600c549050601160009054906101000a900460ff161561130a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113019061382e565b60405180910390fd5b6000821161134d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611344906137ae565b60405180910390fd5b6113556111f1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114fc5760006001600f546113989190613a56565b836113a1610c3b565b6113ab9190613a56565b1080156114045750600e5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114019190613a56565b11155b90508015611467576000915082601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461145f9190613a56565b925050819055505b81836114739190613add565b3410156114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac9061386e565b60405180910390fd5b600d548311156114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f1906138ae565b60405180910390fd5b505b60105482611508610c3b565b6115129190613a56565b1115611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a906137ce565b60405180910390fd5b61155d33836124ad565b5050565b611569611b82565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ce576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115db611b82565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611688611b82565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116cd9190613771565b60405180910390a35050565b6116e1611c3c565b80600c8190555050565b6116f6848484611cbf565b6117158373ffffffffffffffffffffffffffffffffffffffff166124cb565b801561172a5750611728848484846124ee565b155b15611761576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600e5481565b606061177882611b34565b6117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae9061384e565b60405180910390fd5b60001515601160019054906101000a900460ff161515141561186557600b80546117e090613c55565b80601f016020809104026020016040519081016040528092919081815260200182805461180c90613c55565b80156118595780601f1061182e57610100808354040283529160200191611859565b820191906000526020600020905b81548152906001019060200180831161183c57829003601f168201915b505050505090506118c1565b600061186f61264e565b9050600081511161188f57604051806020016040528060008152506118bd565b80611899846126e0565b600a6040516020016118ad939291906136a2565b6040516020818303038152906040525b9150505b919050565b60105481565b6118d4611c3c565b601160009054906101000a900460ff1615611924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191b9061382e565b60405180910390fd5b60105481611930610c3b565b61193a9190613a56565b111561197b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611972906137ce565b60405180910390fd5b61198481612841565b50565b61198f611c3c565b80601160016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a48611c3c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf906137ee565b60405180910390fd5b611ac18161284d565b50565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611b3f611cba565b11158015611b4e575060005482105b8015611b7b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611c44611b82565b73ffffffffffffffffffffffffffffffffffffffff16611c626111f1565b73ffffffffffffffffffffffffffffffffffffffff1614611cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caf9061380e565b60405180910390fd5b565b600090565b6000611cca826121b0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611cf1611b82565b73ffffffffffffffffffffffffffffffffffffffff161480611d245750611d238260000151611d1e611b82565b6119ac565b5b80611d695750611d32611b82565b73ffffffffffffffffffffffffffffffffffffffff16611d5184610a6d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611da2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e0b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e72576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e7f8585856001612913565b611e8f6000848460000151611b8a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121405760005481101561213f5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121a98585856001612919565b5050505050565b6121b8612f07565b6000829050806121c6611cba565b111580156121d5575060005481105b15612476576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161247457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122ea5780925050506124a8565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612400578193505050506124a8565b60008160019003915081116122f157847f000000000000000000000000000000000000000000000000000000000000000001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508193505050506124a8565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6124c782826040518060200160405280600081525061291f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612514611b82565b8786866040518563ffffffff1660e01b81526004016125369493929190613703565b602060405180830381600087803b15801561255057600080fd5b505af192505050801561258157506040513d601f19601f8201168201806040525081019061257e91906132cd565b60015b6125fb573d80600081146125b1576040519150601f19603f3d011682016040523d82523d6000602084013e6125b6565b606091505b506000815114156125f3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461265d90613c55565b80601f016020809104026020016040519081016040528092919081815260200182805461268990613c55565b80156126d65780601f106126ab576101008083540402835291602001916126d6565b820191906000526020600020905b8154815290600101906020018083116126b957829003601f168201915b5050505050905090565b60606000821415612728576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061283c565b600082905060005b6000821461275a57808061274390613cb8565b915050600a826127539190613aac565b9150612730565b60008167ffffffffffffffff81111561277657612775613dee565b5b6040519080825280601f01601f1916602001820160405280156127a85781602001600182028036833780820191505090505b5090505b60008514612835576001826127c19190613b6b565b9150600a856127d09190613d01565b60306127dc9190613a56565b60f81b8183815181106127f2576127f1613dbf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561282e9190613aac565b94506127ac565b8093505050505b919050565b61284a81612931565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b61292c8383836001612ab3565b505050565b600081141561296c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080549050600082826129809190613a56565b9050817f00000000000000000000000000000000000000000000000000000000000000006129ae9190613a0c565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600082905082806001019350817f00000000000000000000000000000000000000000000000000000000000000000173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45080821415612a045782600080828254612aa79190613a56565b92505081905550505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612b20576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612b5b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b686000868387612913565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612d325750612d318773ffffffffffffffffffffffffffffffffffffffff166124cb565b5b15612df8575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612da760008884806001019550886124ee565b612ddd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612d38578260005414612df357600080fd5b612e64565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612df9575b816000819055505050612e7a6000868387612919565b5050505050565b828054612e8d90613c55565b90600052602060002090601f016020900481019282612eaf5760008555612ef6565b82601f10612ec857805160ff1916838001178555612ef6565b82800160010185558215612ef6579182015b82811115612ef5578251825591602001919060010190612eda565b5b509050612f039190612f4a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f63576000816000905550600101612f4b565b5090565b6000612f7a612f758461390e565b6138e9565b905082815260208101848484011115612f9657612f95613e22565b5b612fa1848285613c13565b509392505050565b6000612fbc612fb78461393f565b6138e9565b905082815260208101848484011115612fd857612fd7613e22565b5b612fe3848285613c13565b509392505050565b600081359050612ffa81614028565b92915050565b60008135905061300f8161403f565b92915050565b60008135905061302481614056565b92915050565b60008151905061303981614056565b92915050565b600082601f83011261305457613053613e1d565b5b8135613064848260208601612f67565b91505092915050565b600082601f83011261308257613081613e1d565b5b8135613092848260208601612fa9565b91505092915050565b6000813590506130aa8161406d565b92915050565b6000602082840312156130c6576130c5613e2c565b5b60006130d484828501612feb565b91505092915050565b600080604083850312156130f4576130f3613e2c565b5b600061310285828601612feb565b925050602061311385828601612feb565b9150509250929050565b60008060006060848603121561313657613135613e2c565b5b600061314486828701612feb565b935050602061315586828701612feb565b92505060406131668682870161309b565b9150509250925092565b6000806000806080858703121561318a57613189613e2c565b5b600061319887828801612feb565b94505060206131a987828801612feb565b93505060406131ba8782880161309b565b925050606085013567ffffffffffffffff8111156131db576131da613e27565b5b6131e78782880161303f565b91505092959194509250565b6000806040838503121561320a57613209613e2c565b5b600061321885828601612feb565b925050602061322985828601613000565b9150509250929050565b6000806040838503121561324a57613249613e2c565b5b600061325885828601612feb565b92505060206132698582860161309b565b9150509250929050565b60006020828403121561328957613288613e2c565b5b600061329784828501613000565b91505092915050565b6000602082840312156132b6576132b5613e2c565b5b60006132c484828501613015565b91505092915050565b6000602082840312156132e3576132e2613e2c565b5b60006132f18482850161302a565b91505092915050565b6000602082840312156133105761330f613e2c565b5b600082013567ffffffffffffffff81111561332e5761332d613e27565b5b61333a8482850161306d565b91505092915050565b60006020828403121561335957613358613e2c565b5b60006133678482850161309b565b91505092915050565b600061337c8383613684565b60208301905092915050565b61339181613b9f565b82525050565b60006133a282613995565b6133ac81856139c3565b93506133b783613970565b8060005b838110156133e85781516133cf8882613370565b97506133da836139b6565b9250506001810190506133bb565b5085935050505092915050565b6133fe81613bb1565b82525050565b600061340f826139a0565b61341981856139d4565b9350613429818560208601613c22565b61343281613e31565b840191505092915050565b6000613448826139ab565b61345281856139f0565b9350613462818560208601613c22565b61346b81613e31565b840191505092915050565b6000613481826139ab565b61348b8185613a01565b935061349b818560208601613c22565b80840191505092915050565b600081546134b481613c55565b6134be8186613a01565b945060018216600081146134d957600181146134ea5761351d565b60ff1983168652818601935061351d565b6134f385613980565b60005b83811015613515578154818901526001820191506020810190506134f6565b838801955050505b50505092915050565b6000613533602e836139f0565b915061353e82613e42565b604082019050919050565b60006135566007836139f0565b915061356182613e91565b602082019050919050565b60006135796026836139f0565b915061358482613eba565b604082019050919050565b600061359c6020836139f0565b91506135a782613f09565b602082019050919050565b60006135bf6017836139f0565b91506135ca82613f32565b602082019050919050565b60006135e2602f836139f0565b91506135ed82613f5b565b604082019050919050565b6000613605601d836139f0565b915061361082613faa565b602082019050919050565b60006136286000836139e5565b915061363382613fd3565b600082019050919050565b600061364b6010836139f0565b915061365682613fd6565b602082019050919050565b600061366e6013836139f0565b915061367982613fff565b602082019050919050565b61368d81613c09565b82525050565b61369c81613c09565b82525050565b60006136ae8286613476565b91506136ba8285613476565b91506136c682846134a7565b9150819050949350505050565b60006136de8261361b565b9150819050919050565b60006020820190506136fd6000830184613388565b92915050565b60006080820190506137186000830187613388565b6137256020830186613388565b6137326040830185613693565b81810360608301526137448184613404565b905095945050505050565b600060208201905081810360008301526137698184613397565b905092915050565b600060208201905061378660008301846133f5565b92915050565b600060208201905081810360008301526137a6818461343d565b905092915050565b600060208201905081810360008301526137c781613526565b9050919050565b600060208201905081810360008301526137e781613549565b9050919050565b600060208201905081810360008301526138078161356c565b9050919050565b600060208201905081810360008301526138278161358f565b9050919050565b60006020820190508181036000830152613847816135b2565b9050919050565b60006020820190508181036000830152613867816135d5565b9050919050565b60006020820190508181036000830152613887816135f8565b9050919050565b600060208201905081810360008301526138a78161363e565b9050919050565b600060208201905081810360008301526138c781613661565b9050919050565b60006020820190506138e36000830184613693565b92915050565b60006138f3613904565b90506138ff8282613c87565b919050565b6000604051905090565b600067ffffffffffffffff82111561392957613928613dee565b5b61393282613e31565b9050602081019050919050565b600067ffffffffffffffff82111561395a57613959613dee565b5b61396382613e31565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a1782613be9565b9150613a2283613be9565b92508273ffffffffffffffffffffffffffffffffffffffff03821115613a4b57613a4a613d32565b5b828201905092915050565b6000613a6182613c09565b9150613a6c83613c09565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613aa157613aa0613d32565b5b828201905092915050565b6000613ab782613c09565b9150613ac283613c09565b925082613ad257613ad1613d61565b5b828204905092915050565b6000613ae882613c09565b9150613af383613c09565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2c57613b2b613d32565b5b828202905092915050565b6000613b4282613be9565b9150613b4d83613be9565b925082821015613b6057613b5f613d32565b5b828203905092915050565b6000613b7682613c09565b9150613b8183613c09565b925082821015613b9457613b93613d32565b5b828203905092915050565b6000613baa82613be9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c40578082015181840152602081019050613c25565b83811115613c4f576000848401525b50505050565b60006002820490506001821680613c6d57607f821691505b60208210811415613c8157613c80613d90565b5b50919050565b613c9082613e31565b810181811067ffffffffffffffff82111715613caf57613cae613dee565b5b80604052505050565b6000613cc382613c09565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cf657613cf5613d32565b5b600182019050919050565b6000613d0c82613c09565b9150613d1783613c09565b925082613d2757613d26613d61565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b61403181613b9f565b811461403c57600080fd5b50565b61404881613bb1565b811461405357600080fd5b50565b61405f81613bbd565b811461406a57600080fd5b50565b61407681613c09565b811461408157600080fd5b5056fea2646970667358221220eb67402ffb31b00f1056d18f3effa1357f674563d8dd510cd3c4cf8bf7f71c0d64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102305760003560e01c806365ee9a781161012e578063a2b40d19116100ab578063db1b38e61161006f578063db1b38e614610816578063e0a808531461083f578063e985e9c514610868578063f2fde38b146108a5578063f968adbe146108ce57610230565b8063a2b40d1914610731578063b88d4fde1461075a578063c7c39ffc14610783578063c87b56dd146107ae578063d5abeb01146107eb57610230565b80638da5cb5b116100f25780638da5cb5b1461066b57806395d89b4114610696578063a035b1fe146106c1578063a0712d68146106ec578063a22cb4651461070857610230565b806365ee9a781461058a57806370a08231146105b357806377544d73146105f05780637ec4a65914610619578063805dcae51461064257610230565b8063308d7798116101bc5780634fdd43cb116101805780634fdd43cb146104a357806351830227146104cc5780635503a0e8146104f75780635c975abb146105225780636352211e1461054d57610230565b8063308d7798146103d2578063333e44e6146103fb5780633ccfd60b1461042657806342842e0e1461043d578063438b63001461046657610230565b806316ba10e01161020357806316ba10e01461030357806316c38b3c1461032c57806318160ddd14610355578063228025e81461038057806323b872dd146103a957610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906132a0565b6108f9565b6040516102699190613771565b60405180910390f35b34801561027e57600080fd5b506102876109db565b604051610294919061378c565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613343565b610a6d565b6040516102d191906136e8565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613233565b610ae9565b005b34801561030f57600080fd5b5061032a600480360381019061032591906132fa565b610bf4565b005b34801561033857600080fd5b50610353600480360381019061034e9190613273565b610c16565b005b34801561036157600080fd5b5061036a610c3b565b60405161037791906138ce565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190613343565b610c52565b005b3480156103b557600080fd5b506103d060048036038101906103cb919061311d565b610c64565b005b3480156103de57600080fd5b506103f960048036038101906103f49190613343565b610c74565b005b34801561040757600080fd5b50610410610c86565b60405161041d91906138ce565b60405180910390f35b34801561043257600080fd5b5061043b610c8c565b005b34801561044957600080fd5b50610464600480360381019061045f919061311d565b610d43565b005b34801561047257600080fd5b5061048d600480360381019061048891906130b0565b610d63565b60405161049a919061374f565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c591906132fa565b610e6e565b005b3480156104d857600080fd5b506104e1610e90565b6040516104ee9190613771565b60405180910390f35b34801561050357600080fd5b5061050c610ea3565b604051610519919061378c565b60405180910390f35b34801561052e57600080fd5b50610537610f31565b6040516105449190613771565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190613343565b610f44565b60405161058191906136e8565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190613343565b610f5a565b005b3480156105bf57600080fd5b506105da60048036038101906105d591906130b0565b610f6c565b6040516105e791906138ce565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190613343565b611101565b005b34801561062557600080fd5b50610640600480360381019061063b91906132fa565b6111bd565b005b34801561064e57600080fd5b5061066960048036038101906106649190613343565b6111df565b005b34801561067757600080fd5b506106806111f1565b60405161068d91906136e8565b60405180910390f35b3480156106a257600080fd5b506106ab61121b565b6040516106b8919061378c565b60405180910390f35b3480156106cd57600080fd5b506106d66112ad565b6040516106e391906138ce565b60405180910390f35b61070660048036038101906107019190613343565b6112b3565b005b34801561071457600080fd5b5061072f600480360381019061072a91906131f3565b611561565b005b34801561073d57600080fd5b5061075860048036038101906107539190613343565b6116d9565b005b34801561076657600080fd5b50610781600480360381019061077c9190613170565b6116eb565b005b34801561078f57600080fd5b50610798611767565b6040516107a591906138ce565b60405180910390f35b3480156107ba57600080fd5b506107d560048036038101906107d09190613343565b61176d565b6040516107e2919061378c565b60405180910390f35b3480156107f757600080fd5b506108006118c6565b60405161080d91906138ce565b60405180910390f35b34801561082257600080fd5b5061083d60048036038101906108389190613343565b6118cc565b005b34801561084b57600080fd5b5061086660048036038101906108619190613273565b611987565b005b34801561087457600080fd5b5061088f600480360381019061088a91906130dd565b6119ac565b60405161089c9190613771565b60405180910390f35b3480156108b157600080fd5b506108cc60048036038101906108c791906130b0565b611a40565b005b3480156108da57600080fd5b506108e3611ac4565b6040516108f091906138ce565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d457506109d382611aca565b5b9050919050565b6060600280546109ea90613c55565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1690613c55565b8015610a635780601f10610a3857610100808354040283529160200191610a63565b820191906000526020600020905b815481529060010190602001808311610a4657829003601f168201915b5050505050905090565b6000610a7882611b34565b610aae576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af482610f44565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b5c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b7b611b82565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bad5750610bab81610ba6611b82565b6119ac565b155b15610be4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bef838383611b8a565b505050565b610bfc611c3c565b80600a9080519060200190610c12929190612e81565b5050565b610c1e611c3c565b80601160006101000a81548160ff02191690831515021790555050565b6000610c45611cba565b6001546000540303905090565b610c5a611c3c565b8060108190555050565b610c6f838383611cbf565b505050565b610c7c611c3c565b80600e8190555050565b600f5481565b610c94611c3c565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610cba906136d3565b60006040518083038185875af1925050503d8060008114610cf7576040519150601f19603f3d011682016040523d82523d6000602084013e610cfc565b606091505b5050905080610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d379061388e565b60405180910390fd5b50565b610d5e838383604051806020016040528060008152506116eb565b505050565b60606000610d7083610f6c565b905060008167ffffffffffffffff811115610d8e57610d8d613dee565b5b604051908082528060200260200182016040528015610dbc5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610dd957506010548211155b15610e62576000610de983610f44565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e4e5782848381518110610e3357610e32613dbf565b5b6020026020010181815250508180610e4a90613cb8565b9250505b8280610e5990613cb8565b93505050610dc8565b82945050505050919050565b610e76611c3c565b80600b9080519060200190610e8c929190612e81565b5050565b601160019054906101000a900460ff1681565b600a8054610eb090613c55565b80601f0160208091040260200160405190810160405280929190818152602001828054610edc90613c55565b8015610f295780601f10610efe57610100808354040283529160200191610f29565b820191906000526020600020905b815481529060010190602001808311610f0c57829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b6000610f4f826121b0565b600001519050919050565b610f62611c3c565b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff16146110a457600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1690506110fc565b6000547f000000000000000000000000521fad559524f59515912c1b80a828fab0a79570836110d39190613b37565b73ffffffffffffffffffffffffffffffffffffffff16116110f757600190506110fc565b600090505b919050565b611109611c3c565b601160009054906101000a900460ff1615611159576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111509061382e565b60405180910390fd5b60105481611165610c3b565b61116f9190613a56565b11156111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a7906137ce565b60405180910390fd5b6111ba33826124ad565b50565b6111c5611c3c565b80600990805190602001906111db929190612e81565b5050565b6111e7611c3c565b80600d8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461122a90613c55565b80601f016020809104026020016040519081016040528092919081815260200182805461125690613c55565b80156112a35780601f10611278576101008083540402835291602001916112a3565b820191906000526020600020905b81548152906001019060200180831161128657829003601f168201915b5050505050905090565b600c5481565b6000600c549050601160009054906101000a900460ff161561130a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113019061382e565b60405180910390fd5b6000821161134d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611344906137ae565b60405180910390fd5b6113556111f1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114fc5760006001600f546113989190613a56565b836113a1610c3b565b6113ab9190613a56565b1080156114045750600e5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114019190613a56565b11155b90508015611467576000915082601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461145f9190613a56565b925050819055505b81836114739190613add565b3410156114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac9061386e565b60405180910390fd5b600d548311156114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f1906138ae565b60405180910390fd5b505b60105482611508610c3b565b6115129190613a56565b1115611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a906137ce565b60405180910390fd5b61155d33836124ad565b5050565b611569611b82565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ce576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115db611b82565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611688611b82565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116cd9190613771565b60405180910390a35050565b6116e1611c3c565b80600c8190555050565b6116f6848484611cbf565b6117158373ffffffffffffffffffffffffffffffffffffffff166124cb565b801561172a5750611728848484846124ee565b155b15611761576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600e5481565b606061177882611b34565b6117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae9061384e565b60405180910390fd5b60001515601160019054906101000a900460ff161515141561186557600b80546117e090613c55565b80601f016020809104026020016040519081016040528092919081815260200182805461180c90613c55565b80156118595780601f1061182e57610100808354040283529160200191611859565b820191906000526020600020905b81548152906001019060200180831161183c57829003601f168201915b505050505090506118c1565b600061186f61264e565b9050600081511161188f57604051806020016040528060008152506118bd565b80611899846126e0565b600a6040516020016118ad939291906136a2565b6040516020818303038152906040525b9150505b919050565b60105481565b6118d4611c3c565b601160009054906101000a900460ff1615611924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191b9061382e565b60405180910390fd5b60105481611930610c3b565b61193a9190613a56565b111561197b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611972906137ce565b60405180910390fd5b61198481612841565b50565b61198f611c3c565b80601160016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a48611c3c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf906137ee565b60405180910390fd5b611ac18161284d565b50565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611b3f611cba565b11158015611b4e575060005482105b8015611b7b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611c44611b82565b73ffffffffffffffffffffffffffffffffffffffff16611c626111f1565b73ffffffffffffffffffffffffffffffffffffffff1614611cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caf9061380e565b60405180910390fd5b565b600090565b6000611cca826121b0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611cf1611b82565b73ffffffffffffffffffffffffffffffffffffffff161480611d245750611d238260000151611d1e611b82565b6119ac565b5b80611d695750611d32611b82565b73ffffffffffffffffffffffffffffffffffffffff16611d5184610a6d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611da2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e0b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e72576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e7f8585856001612913565b611e8f6000848460000151611b8a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121405760005481101561213f5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121a98585856001612919565b5050505050565b6121b8612f07565b6000829050806121c6611cba565b111580156121d5575060005481105b15612476576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161247457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122ea5780925050506124a8565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612400578193505050506124a8565b60008160019003915081116122f157847f000000000000000000000000521fad559524f59515912c1b80a828fab0a7957001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508193505050506124a8565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6124c782826040518060200160405280600081525061291f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612514611b82565b8786866040518563ffffffff1660e01b81526004016125369493929190613703565b602060405180830381600087803b15801561255057600080fd5b505af192505050801561258157506040513d601f19601f8201168201806040525081019061257e91906132cd565b60015b6125fb573d80600081146125b1576040519150601f19603f3d011682016040523d82523d6000602084013e6125b6565b606091505b506000815114156125f3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461265d90613c55565b80601f016020809104026020016040519081016040528092919081815260200182805461268990613c55565b80156126d65780601f106126ab576101008083540402835291602001916126d6565b820191906000526020600020905b8154815290600101906020018083116126b957829003601f168201915b5050505050905090565b60606000821415612728576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061283c565b600082905060005b6000821461275a57808061274390613cb8565b915050600a826127539190613aac565b9150612730565b60008167ffffffffffffffff81111561277657612775613dee565b5b6040519080825280601f01601f1916602001820160405280156127a85781602001600182028036833780820191505090505b5090505b60008514612835576001826127c19190613b6b565b9150600a856127d09190613d01565b60306127dc9190613a56565b60f81b8183815181106127f2576127f1613dbf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561282e9190613aac565b94506127ac565b8093505050505b919050565b61284a81612931565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b61292c8383836001612ab3565b505050565b600081141561296c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080549050600082826129809190613a56565b9050817f000000000000000000000000521fad559524f59515912c1b80a828fab0a795706129ae9190613a0c565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600082905082806001019350817f000000000000000000000000521fad559524f59515912c1b80a828fab0a795700173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45080821415612a045782600080828254612aa79190613a56565b92505081905550505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612b20576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612b5b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b686000868387612913565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612d325750612d318773ffffffffffffffffffffffffffffffffffffffff166124cb565b5b15612df8575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612da760008884806001019550886124ee565b612ddd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612d38578260005414612df357600080fd5b612e64565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612df9575b816000819055505050612e7a6000868387612919565b5050505050565b828054612e8d90613c55565b90600052602060002090601f016020900481019282612eaf5760008555612ef6565b82601f10612ec857805160ff1916838001178555612ef6565b82800160010185558215612ef6579182015b82811115612ef5578251825591602001919060010190612eda565b5b509050612f039190612f4a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f63576000816000905550600101612f4b565b5090565b6000612f7a612f758461390e565b6138e9565b905082815260208101848484011115612f9657612f95613e22565b5b612fa1848285613c13565b509392505050565b6000612fbc612fb78461393f565b6138e9565b905082815260208101848484011115612fd857612fd7613e22565b5b612fe3848285613c13565b509392505050565b600081359050612ffa81614028565b92915050565b60008135905061300f8161403f565b92915050565b60008135905061302481614056565b92915050565b60008151905061303981614056565b92915050565b600082601f83011261305457613053613e1d565b5b8135613064848260208601612f67565b91505092915050565b600082601f83011261308257613081613e1d565b5b8135613092848260208601612fa9565b91505092915050565b6000813590506130aa8161406d565b92915050565b6000602082840312156130c6576130c5613e2c565b5b60006130d484828501612feb565b91505092915050565b600080604083850312156130f4576130f3613e2c565b5b600061310285828601612feb565b925050602061311385828601612feb565b9150509250929050565b60008060006060848603121561313657613135613e2c565b5b600061314486828701612feb565b935050602061315586828701612feb565b92505060406131668682870161309b565b9150509250925092565b6000806000806080858703121561318a57613189613e2c565b5b600061319887828801612feb565b94505060206131a987828801612feb565b93505060406131ba8782880161309b565b925050606085013567ffffffffffffffff8111156131db576131da613e27565b5b6131e78782880161303f565b91505092959194509250565b6000806040838503121561320a57613209613e2c565b5b600061321885828601612feb565b925050602061322985828601613000565b9150509250929050565b6000806040838503121561324a57613249613e2c565b5b600061325885828601612feb565b92505060206132698582860161309b565b9150509250929050565b60006020828403121561328957613288613e2c565b5b600061329784828501613000565b91505092915050565b6000602082840312156132b6576132b5613e2c565b5b60006132c484828501613015565b91505092915050565b6000602082840312156132e3576132e2613e2c565b5b60006132f18482850161302a565b91505092915050565b6000602082840312156133105761330f613e2c565b5b600082013567ffffffffffffffff81111561332e5761332d613e27565b5b61333a8482850161306d565b91505092915050565b60006020828403121561335957613358613e2c565b5b60006133678482850161309b565b91505092915050565b600061337c8383613684565b60208301905092915050565b61339181613b9f565b82525050565b60006133a282613995565b6133ac81856139c3565b93506133b783613970565b8060005b838110156133e85781516133cf8882613370565b97506133da836139b6565b9250506001810190506133bb565b5085935050505092915050565b6133fe81613bb1565b82525050565b600061340f826139a0565b61341981856139d4565b9350613429818560208601613c22565b61343281613e31565b840191505092915050565b6000613448826139ab565b61345281856139f0565b9350613462818560208601613c22565b61346b81613e31565b840191505092915050565b6000613481826139ab565b61348b8185613a01565b935061349b818560208601613c22565b80840191505092915050565b600081546134b481613c55565b6134be8186613a01565b945060018216600081146134d957600181146134ea5761351d565b60ff1983168652818601935061351d565b6134f385613980565b60005b83811015613515578154818901526001820191506020810190506134f6565b838801955050505b50505092915050565b6000613533602e836139f0565b915061353e82613e42565b604082019050919050565b60006135566007836139f0565b915061356182613e91565b602082019050919050565b60006135796026836139f0565b915061358482613eba565b604082019050919050565b600061359c6020836139f0565b91506135a782613f09565b602082019050919050565b60006135bf6017836139f0565b91506135ca82613f32565b602082019050919050565b60006135e2602f836139f0565b91506135ed82613f5b565b604082019050919050565b6000613605601d836139f0565b915061361082613faa565b602082019050919050565b60006136286000836139e5565b915061363382613fd3565b600082019050919050565b600061364b6010836139f0565b915061365682613fd6565b602082019050919050565b600061366e6013836139f0565b915061367982613fff565b602082019050919050565b61368d81613c09565b82525050565b61369c81613c09565b82525050565b60006136ae8286613476565b91506136ba8285613476565b91506136c682846134a7565b9150819050949350505050565b60006136de8261361b565b9150819050919050565b60006020820190506136fd6000830184613388565b92915050565b60006080820190506137186000830187613388565b6137256020830186613388565b6137326040830185613693565b81810360608301526137448184613404565b905095945050505050565b600060208201905081810360008301526137698184613397565b905092915050565b600060208201905061378660008301846133f5565b92915050565b600060208201905081810360008301526137a6818461343d565b905092915050565b600060208201905081810360008301526137c781613526565b9050919050565b600060208201905081810360008301526137e781613549565b9050919050565b600060208201905081810360008301526138078161356c565b9050919050565b600060208201905081810360008301526138278161358f565b9050919050565b60006020820190508181036000830152613847816135b2565b9050919050565b60006020820190508181036000830152613867816135d5565b9050919050565b60006020820190508181036000830152613887816135f8565b9050919050565b600060208201905081810360008301526138a78161363e565b9050919050565b600060208201905081810360008301526138c781613661565b9050919050565b60006020820190506138e36000830184613693565b92915050565b60006138f3613904565b90506138ff8282613c87565b919050565b6000604051905090565b600067ffffffffffffffff82111561392957613928613dee565b5b61393282613e31565b9050602081019050919050565b600067ffffffffffffffff82111561395a57613959613dee565b5b61396382613e31565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a1782613be9565b9150613a2283613be9565b92508273ffffffffffffffffffffffffffffffffffffffff03821115613a4b57613a4a613d32565b5b828201905092915050565b6000613a6182613c09565b9150613a6c83613c09565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613aa157613aa0613d32565b5b828201905092915050565b6000613ab782613c09565b9150613ac283613c09565b925082613ad257613ad1613d61565b5b828204905092915050565b6000613ae882613c09565b9150613af383613c09565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2c57613b2b613d32565b5b828202905092915050565b6000613b4282613be9565b9150613b4d83613be9565b925082821015613b6057613b5f613d32565b5b828203905092915050565b6000613b7682613c09565b9150613b8183613c09565b925082821015613b9457613b93613d32565b5b828203905092915050565b6000613baa82613be9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c40578082015181840152602081019050613c25565b83811115613c4f576000848401525b50505050565b60006002820490506001821680613c6d57607f821691505b60208210811415613c8157613c80613d90565b5b50919050565b613c9082613e31565b810181811067ffffffffffffffff82111715613caf57613cae613dee565b5b80604052505050565b6000613cc382613c09565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cf657613cf5613d32565b5b600182019050919050565b6000613d0c82613c09565b9150613d1783613c09565b925082613d2757613d26613d61565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b61403181613b9f565b811461403c57600080fd5b50565b61404881613bb1565b811461405357600080fd5b50565b61405f81613bbd565b811461406a57600080fd5b50565b61407681613c09565b811461408157600080fd5b5056fea2646970667358221220eb67402ffb31b00f1056d18f3effa1357f674563d8dd510cd3c4cf8bf7f71c0d64736f6c63430008070033

Deployed Bytecode Sourcemap

49755:4731:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29936:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33797:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35300:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34863:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54257:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53369:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29185:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53885:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36157:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53663:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50119:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50634:182;;;;;;;;;;;;;:::i;:::-;;36398:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52118:703;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53993:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50229:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49922:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50197:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33606:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53777:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30307:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51653:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54141:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53559:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6123:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33966:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50003:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50836:796;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35576:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50531:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36654:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50079:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52829:532;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50157:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51892:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53460:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35926:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6575:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50044:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29936:305;30038:4;30090:25;30075:40;;;:11;:40;;;;:105;;;;30147:33;30132:48;;;:11;:48;;;;30075:105;:158;;;;30197:36;30221:11;30197:23;:36::i;:::-;30075:158;30055:178;;29936:305;;;:::o;33797:100::-;33851:13;33884:5;33877:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33797:100;:::o;35300:204::-;35368:7;35393:16;35401:7;35393;:16::i;:::-;35388:64;;35418:34;;;;;;;;;;;;;;35388:64;35472:15;:24;35488:7;35472:24;;;;;;;;;;;;;;;;;;;;;35465:31;;35300:204;;;:::o;34863:371::-;34936:13;34952:24;34968:7;34952:15;:24::i;:::-;34936:40;;34997:5;34991:11;;:2;:11;;;34987:48;;;35011:24;;;;;;;;;;;;;;34987:48;35068:5;35052:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;35078:37;35095:5;35102:12;:10;:12::i;:::-;35078:16;:37::i;:::-;35077:38;35052:63;35048:138;;;35139:35;;;;;;;;;;;;;;35048:138;35198:28;35207:2;35211:7;35220:5;35198:8;:28::i;:::-;34925:309;34863:371;;:::o;54257:106::-;6009:13;:11;:13::i;:::-;54345:10:::1;54333:9;:22;;;;;;;;;;;;:::i;:::-;;54257:106:::0;:::o;53369:83::-;6009:13;:11;:13::i;:::-;53438:6:::1;53429;;:15;;;;;;;;;;;;;;;;;;53369:83:::0;:::o;29185:303::-;29229:7;29454:15;:13;:15::i;:::-;29439:12;;29423:13;;:28;:46;29416:53;;29185:303;:::o;53885:100::-;6009:13;:11;:13::i;:::-;53967:10:::1;53955:9;:22;;;;53885:100:::0;:::o;36157:170::-;36291:28;36301:4;36307:2;36311:7;36291:9;:28::i;:::-;36157:170;;;:::o;53663:104::-;6009:13;:11;:13::i;:::-;53748:11:::1;53735:10;:24;;;;53663:104:::0;:::o;50119:31::-;;;;:::o;50634:182::-;6009:13;:11;:13::i;:::-;50685:12:::1;50711:10;50703:24;;50735:21;50703:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50684:77;;;50780:7;50772:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;50673:143;50634:182::o:0;36398:185::-;36536:39;36553:4;36559:2;36563:7;36536:39;;;;;;;;;;;;:16;:39::i;:::-;36398:185;;;:::o;52118:703::-;52205:16;52239:23;52265:17;52275:6;52265:9;:17::i;:::-;52239:43;;52293:30;52340:15;52326:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52293:63;;52367:22;52392:1;52367:26;;52404:23;52444:339;52469:15;52451;:33;:64;;;;;52506:9;;52488:14;:27;;52451:64;52444:339;;;52528:25;52556:23;52564:14;52556:7;:23::i;:::-;52528:51;;52619:6;52598:27;;:17;:27;;;52594:151;;;52679:14;52646:13;52660:15;52646:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;52712:17;;;;;:::i;:::-;;;;52594:151;52755:16;;;;;:::i;:::-;;;;52517:266;52444:339;;;52800:13;52793:20;;;;;;52118:703;;;:::o;53993:138::-;6009:13;:11;:13::i;:::-;54105:18:::1;54085:17;:38;;;;;;;;;;;;:::i;:::-;;53993:138:::0;:::o;50229:27::-;;;;;;;;;;;;;:::o;49922:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50197:25::-;;;;;;;;;;;;;:::o;33606:124::-;33670:7;33697:20;33709:7;33697:11;:20::i;:::-;:25;;;33690:32;;33606:124;;;:::o;53777:100::-;6009:13;:11;:13::i;:::-;53859:10:::1;53847:9;:22;;;;53777:100:::0;:::o;30307:395::-;30371:7;30412:1;30395:19;;:5;:19;;;30391:60;;;30423:28;;;;;;;;;;;;;;30391:60;30499:1;30468:12;:19;30481:5;30468:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:32;;;30464:108;;30532:12;:19;30545:5;30532:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30524:36;;30517:43;;;;30464:108;30624:13;;30613:6;30596:5;30588:32;;;;:::i;:::-;:49;;;30584:90;;30661:1;30654:8;;;;30584:90;30693:1;30686:8;;30307:395;;;;:::o;51653:217::-;6009:13;:11;:13::i;:::-;51720:6:::1;;;;;;;;;;;51719:7;51711:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;51800:9;;51791:5;51775:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;51767:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;51834:28;51844:10;51856:5;51834:9;:28::i;:::-;51653:217:::0;:::o;54141:106::-;6009:13;:11;:13::i;:::-;54229:10:::1;54217:9;:22;;;;;;;;;;;;:::i;:::-;;54141:106:::0;:::o;53559:96::-;6009:13;:11;:13::i;:::-;53638:9:::1;53627:8;:20;;;;53559:96:::0;:::o;6123:87::-;6169:7;6196:6;;;;;;;;;;;6189:13;;6123:87;:::o;33966:104::-;34022:13;34055:7;34048:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33966:104;:::o;50003:34::-;;;;:::o;50836:796::-;50894:12;50909:5;;50894:20;;50934:6;;;;;;;;;;;50933:7;50925:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;50995:1;50987:5;:9;50979:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51076:7;:5;:7::i;:::-;51062:21;;:10;:21;;;51058:459;;51100:11;51152:1;51140:9;;:13;;;;:::i;:::-;51132:5;51116:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;51115:113;;;;;51217:10;;51208:5;51176:17;:29;51194:10;51176:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:51;;51115:113;51100:129;;51250:6;51246:112;;;51284:1;51277:8;;51337:5;51304:17;:29;51322:10;51304:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;51246:112;51403:4;51395:5;:12;;;;:::i;:::-;51382:9;:25;;51374:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51473:8;;51464:5;:17;;51456:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;51085:432;51058:459;51562:9;;51553:5;51537:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;51529:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;51596:28;51606:10;51618:5;51596:9;:28::i;:::-;50882:750;50836:796;:::o;35576:279::-;35679:12;:10;:12::i;:::-;35667:24;;:8;:24;;;35663:54;;;35700:17;;;;;;;;;;;;;;35663:54;35775:8;35730:18;:32;35749:12;:10;:12::i;:::-;35730:32;;;;;;;;;;;;;;;:42;35763:8;35730:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;35828:8;35799:48;;35814:12;:10;:12::i;:::-;35799:48;;;35838:8;35799:48;;;;;;:::i;:::-;;;;;;;;35576:279;;:::o;50531:95::-;6009:13;:11;:13::i;:::-;50609:9:::1;50601:5;:17;;;;50531:95:::0;:::o;36654:369::-;36821:28;36831:4;36837:2;36841:7;36821:9;:28::i;:::-;36864:15;:2;:13;;;:15::i;:::-;:76;;;;;36884:56;36915:4;36921:2;36925:7;36934:5;36884:30;:56::i;:::-;36883:57;36864:76;36860:156;;;36964:40;;;;;;;;;;;;;;36860:156;36654:369;;;;:::o;50079:29::-;;;;:::o;52829:532::-;52928:13;52977:17;52985:8;52977:7;:17::i;:::-;52959:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;53092:5;53080:17;;:8;;;;;;;;;;;:17;;;53076:70;;;53117:17;53110:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53076:70;53156:28;53187:10;:8;:10::i;:::-;53156:41;;53246:1;53221:14;53215:28;:32;:138;;;;;;;;;;;;;;;;;53287:14;53303:19;:8;:17;:19::i;:::-;53324:9;53270:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53215:138;53208:145;;;52829:532;;;;:::o;50157:31::-;;;;:::o;51892:218::-;6009:13;:11;:13::i;:::-;51965:6:::1;;;;;;;;;;;51964:7;51956:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;52046:9;;52036:6;52020:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;52012:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;52080:22;52095:6;52080:14;:22::i;:::-;51892:218:::0;:::o;53460:87::-;6009:13;:11;:13::i;:::-;53533:6:::1;53522:8;;:17;;;;;;;;;;;;;;;;;;53460:87:::0;:::o;35926:164::-;36023:4;36047:18;:25;36066:5;36047:25;;;;;;;;;;;;;;;:35;36073:8;36047:35;;;;;;;;;;;;;;;;;;;;;;;;;36040:42;;35926:164;;;;:::o;6575:201::-;6009:13;:11;:13::i;:::-;6684:1:::1;6664:22;;:8;:22;;;;6656:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6740:28;6759:8;6740:18;:28::i;:::-;6575:201:::0;:::o;50044:28::-;;;;:::o;18523:157::-;18608:4;18647:25;18632:40;;;:11;:40;;;;18625:47;;18523:157;;;:::o;37278:187::-;37335:4;37378:7;37359:15;:13;:15::i;:::-;:26;;:53;;;;;37399:13;;37389:7;:23;37359:53;:98;;;;;37430:11;:20;37442:7;37430:20;;;;;;;;;;;:27;;;;;;;;;;;;37429:28;37359:98;37352:105;;37278:187;;;:::o;4674:98::-;4727:7;4754:10;4747:17;;4674:98;:::o;46722:196::-;46864:2;46837:15;:24;46853:7;46837:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;46902:7;46898:2;46882:28;;46891:5;46882:28;;;;;;;;;;;;46722:196;;;:::o;6288:132::-;6363:12;:10;:12::i;:::-;6352:23;;:7;:5;:7::i;:::-;:23;;;6344:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6288:132::o;28909:92::-;28965:7;28909:92;:::o;42224:2112::-;42339:35;42377:20;42389:7;42377:11;:20::i;:::-;42339:58;;42410:22;42452:13;:18;;;42436:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;42487:50;42504:13;:18;;;42524:12;:10;:12::i;:::-;42487:16;:50::i;:::-;42436:101;:154;;;;42578:12;:10;:12::i;:::-;42554:36;;:20;42566:7;42554:11;:20::i;:::-;:36;;;42436:154;42410:181;;42609:17;42604:66;;42635:35;;;;;;;;;;;;;;42604:66;42707:4;42685:26;;:13;:18;;;:26;;;42681:67;;42720:28;;;;;;;;;;;;;;42681:67;42777:1;42763:16;;:2;:16;;;42759:52;;;42788:23;;;;;;;;;;;;;;42759:52;42824:43;42846:4;42852:2;42856:7;42865:1;42824:21;:43::i;:::-;42932:49;42949:1;42953:7;42962:13;:18;;;42932:8;:49::i;:::-;43307:1;43277:12;:18;43290:4;43277:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43351:1;43323:12;:16;43336:2;43323:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43397:2;43369:11;:20;43381:7;43369:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;43459:15;43414:11;:20;43426:7;43414:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;43727:19;43759:1;43749:7;:11;43727:33;;43820:1;43779:43;;:11;:24;43791:11;43779:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;43775:445;;;44004:13;;43990:11;:27;43986:219;;;44074:13;:18;;;44042:11;:24;44054:11;44042:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;44157:13;:28;;;44115:11;:24;44127:11;44115:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;43986:219;43775:445;43252:979;44267:7;44263:2;44248:27;;44257:4;44248:27;;;;;;;;;;;;44286:42;44307:4;44313:2;44317:7;44326:1;44286:20;:42::i;:::-;42328:2008;;42224:2112;;;:::o;32237:1307::-;32298:21;;:::i;:::-;32332:12;32347:7;32332:22;;32415:4;32396:15;:13;:15::i;:::-;:23;;:47;;;;;32430:13;;32423:4;:20;32396:47;32392:1085;;;32464:31;32498:11;:17;32510:4;32498:17;;;;;;;;;;;32464:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32539:9;:16;;;32534:924;;32610:1;32584:28;;:9;:14;;;:28;;;32580:101;;32648:9;32641:16;;;;;;32580:101;32985:13;33001:1;32985:17;;33025:270;33054:6;;;;;;;;33099:11;:17;33111:4;33099:17;;;;;;;;;;;33087:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33173:1;33147:28;;:9;:14;;;:28;;;33143:109;;33215:9;33208:16;;;;;;;33143:109;33292:1;33282:7;;;;;;;:11;33025:270;;33390:7;33372:6;33364:34;33339:9;:14;;:60;;;;;;;;;;;33429:9;33422:16;;;;;;;32534:924;32445:1032;32392:1085;33505:31;;;;;;;;;;;;;;32237:1307;;;;:::o;37473:104::-;37542:27;37552:2;37556:8;37542:27;;;;;;;;;;;;:9;:27::i;:::-;37473:104;;:::o;8367:326::-;8427:4;8684:1;8662:7;:19;;;:23;8655:30;;8367:326;;;:::o;47410:667::-;47573:4;47610:2;47594:36;;;47631:12;:10;:12::i;:::-;47645:4;47651:7;47660:5;47594:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47590:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47845:1;47828:6;:13;:18;47824:235;;;47874:40;;;;;;;;;;;;;;47824:235;48017:6;48011:13;48002:6;47998:2;47994:15;47987:38;47590:480;47723:45;;;47713:55;;;:6;:55;;;;47706:62;;;47410:667;;;;;;:::o;54371:110::-;54431:13;54464:9;54457:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54371:110;:::o;463:723::-;519:13;749:1;740:5;:10;736:53;;;767:10;;;;;;;;;;;;;;;;;;;;;736:53;799:12;814:5;799:20;;830:14;855:78;870:1;862:4;:9;855:78;;888:8;;;;;:::i;:::-;;;;919:2;911:10;;;;;:::i;:::-;;;855:78;;;943:19;975:6;965:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;943:39;;993:154;1009:1;1000:5;:10;993:154;;1037:1;1027:11;;;;;:::i;:::-;;;1104:2;1096:5;:10;;;;:::i;:::-;1083:2;:24;;;;:::i;:::-;1070:39;;1053:6;1060;1053:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1133:2;1124:11;;;;;:::i;:::-;;;993:154;;;1171:6;1157:21;;;;;463:723;;;;:::o;38111:121::-;38201:19;38211:8;38201:9;:19::i;:::-;38111:121;:::o;6936:191::-;7010:16;7029:6;;;;;;;;;;;7010:25;;7055:8;7046:6;;:17;;;;;;;;;;;;;;;;;;7110:8;7079:40;;7100:8;7079:40;;;;;;;;;;;;6999:128;6936:191;:::o;48725:159::-;;;;;:::o;49543:158::-;;;;;:::o;37940:163::-;38063:32;38069:2;38073:8;38083:5;38090:4;38063:5;:32::i;:::-;37940:163;;;:::o;40274:1696::-;40429:1;40417:8;:13;40413:44;;;40439:18;;;;;;;;;;;;;;40413:44;40540:20;40563:13;;40540:36;;40591:11;40620:8;40605:12;:23;;;;:::i;:::-;40591:37;;40713:12;40695:6;40687:39;;;;:::i;:::-;40645:11;:26;40657:13;;40645:26;;;;;;;;;;;:31;;;:82;;;;;;;;;;;;;;;;;;40771:216;40797:14;40822:12;40797:38;;40919:14;;;;;;40910:6;40900;40892:24;40863:71;;40880:1;40863:71;;;;;;;;;;;;40774:184;40982:3;40966:12;:19;;40771:216;;41053:8;41036:13;;:25;;;;;;;:::i;:::-;;;;;;;;40344:1626;;40274:1696;:::o;38491:1775::-;38630:20;38653:13;;38630:36;;38695:1;38681:16;;:2;:16;;;38677:48;;;38706:19;;;;;;;;;;;;;;38677:48;38752:1;38740:8;:13;38736:44;;;38762:18;;;;;;;;;;;;;;38736:44;38793:61;38823:1;38827:2;38831:12;38845:8;38793:21;:61::i;:::-;39166:8;39131:12;:16;39144:2;39131:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39230:8;39190:12;:16;39203:2;39190:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39289:2;39256:11;:25;39268:12;39256:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39356:15;39306:11;:25;39318:12;39306:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39389:20;39412:12;39389:35;;39439:11;39468:8;39453:12;:23;39439:37;;39497:4;:23;;;;;39505:15;:2;:13;;;:15::i;:::-;39497:23;39493:641;;;39541:314;39597:12;39593:2;39572:38;;39589:1;39572:38;;;;;;;;;;;;39638:69;39677:1;39681:2;39685:14;;;;;;39701:5;39638:30;:69::i;:::-;39633:174;;39743:40;;;;;;;;;;;;;;39633:174;39850:3;39834:12;:19;;39541:314;;39936:12;39919:13;;:29;39915:43;;39950:8;;;39915:43;39493:641;;;39999:120;40055:14;;;;;;40051:2;40030:40;;40047:1;40030:40;;;;;;;;;;;;40114:3;40098:12;:19;;39999:120;;39493:641;40164:12;40148:13;:28;;;;39106:1082;;40198:60;40227:1;40231:2;40235:12;40249:8;40198:20;:60::i;:::-;38619:1647;38491:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:365::-;11187:3;11208:66;11272:1;11267:3;11208:66;:::i;:::-;11201:73;;11283:93;11372:3;11283:93;:::i;:::-;11401:2;11396:3;11392:12;11385:19;;11045:365;;;:::o;11416:366::-;11558:3;11579:67;11643:2;11638:3;11579:67;:::i;:::-;11572:74;;11655:93;11744:3;11655:93;:::i;:::-;11773:2;11768:3;11764:12;11757:19;;11416:366;;;:::o;11788:::-;11930:3;11951:67;12015:2;12010:3;11951:67;:::i;:::-;11944:74;;12027:93;12116:3;12027:93;:::i;:::-;12145:2;12140:3;12136:12;12129:19;;11788:366;;;:::o;12160:::-;12302:3;12323:67;12387:2;12382:3;12323:67;:::i;:::-;12316:74;;12399:93;12488:3;12399:93;:::i;:::-;12517:2;12512:3;12508:12;12501:19;;12160:366;;;:::o;12532:::-;12674:3;12695:67;12759:2;12754:3;12695:67;:::i;:::-;12688:74;;12771:93;12860:3;12771:93;:::i;:::-;12889:2;12884:3;12880:12;12873:19;;12532:366;;;:::o;12904:::-;13046:3;13067:67;13131:2;13126:3;13067:67;:::i;:::-;13060:74;;13143:93;13232:3;13143:93;:::i;:::-;13261:2;13256:3;13252:12;13245:19;;12904:366;;;:::o;13276:398::-;13435:3;13456:83;13537:1;13532:3;13456:83;:::i;:::-;13449:90;;13548:93;13637:3;13548:93;:::i;:::-;13666:1;13661:3;13657:11;13650:18;;13276:398;;;:::o;13680:366::-;13822:3;13843:67;13907:2;13902:3;13843:67;:::i;:::-;13836:74;;13919:93;14008:3;13919:93;:::i;:::-;14037:2;14032:3;14028:12;14021:19;;13680:366;;;:::o;14052:::-;14194:3;14215:67;14279:2;14274:3;14215:67;:::i;:::-;14208:74;;14291:93;14380:3;14291:93;:::i;:::-;14409:2;14404:3;14400:12;14393:19;;14052:366;;;:::o;14424:108::-;14501:24;14519:5;14501:24;:::i;:::-;14496:3;14489:37;14424:108;;:::o;14538:118::-;14625:24;14643:5;14625:24;:::i;:::-;14620:3;14613:37;14538:118;;:::o;14662:589::-;14887:3;14909:95;15000:3;14991:6;14909:95;:::i;:::-;14902:102;;15021:95;15112:3;15103:6;15021:95;:::i;:::-;15014:102;;15133:92;15221:3;15212:6;15133:92;:::i;:::-;15126:99;;15242:3;15235:10;;14662:589;;;;;;:::o;15257:379::-;15441:3;15463:147;15606:3;15463:147;:::i;:::-;15456:154;;15627:3;15620:10;;15257:379;;;:::o;15642:222::-;15735:4;15773:2;15762:9;15758:18;15750:26;;15786:71;15854:1;15843:9;15839:17;15830:6;15786:71;:::i;:::-;15642:222;;;;:::o;15870:640::-;16065:4;16103:3;16092:9;16088:19;16080:27;;16117:71;16185:1;16174:9;16170:17;16161:6;16117:71;:::i;:::-;16198:72;16266:2;16255:9;16251:18;16242:6;16198:72;:::i;:::-;16280;16348:2;16337:9;16333:18;16324:6;16280:72;:::i;:::-;16399:9;16393:4;16389:20;16384:2;16373:9;16369:18;16362:48;16427:76;16498:4;16489:6;16427:76;:::i;:::-;16419:84;;15870:640;;;;;;;:::o;16516:373::-;16659:4;16697:2;16686:9;16682:18;16674:26;;16746:9;16740:4;16736:20;16732:1;16721:9;16717:17;16710:47;16774:108;16877:4;16868:6;16774:108;:::i;:::-;16766:116;;16516:373;;;;:::o;16895:210::-;16982:4;17020:2;17009:9;17005:18;16997:26;;17033:65;17095:1;17084:9;17080:17;17071:6;17033:65;:::i;:::-;16895:210;;;;:::o;17111:313::-;17224:4;17262:2;17251:9;17247:18;17239:26;;17311:9;17305:4;17301:20;17297:1;17286:9;17282:17;17275:47;17339:78;17412:4;17403:6;17339:78;:::i;:::-;17331:86;;17111:313;;;;:::o;17430:419::-;17596:4;17634:2;17623:9;17619:18;17611:26;;17683:9;17677:4;17673:20;17669:1;17658:9;17654:17;17647:47;17711:131;17837:4;17711:131;:::i;:::-;17703:139;;17430:419;;;:::o;17855:::-;18021:4;18059:2;18048:9;18044:18;18036:26;;18108:9;18102:4;18098:20;18094:1;18083:9;18079:17;18072:47;18136:131;18262:4;18136:131;:::i;:::-;18128:139;;17855:419;;;:::o;18280:::-;18446:4;18484:2;18473:9;18469:18;18461:26;;18533:9;18527:4;18523:20;18519:1;18508:9;18504:17;18497:47;18561:131;18687:4;18561:131;:::i;:::-;18553:139;;18280:419;;;:::o;18705:::-;18871:4;18909:2;18898:9;18894:18;18886:26;;18958:9;18952:4;18948:20;18944:1;18933:9;18929:17;18922:47;18986:131;19112:4;18986:131;:::i;:::-;18978:139;;18705:419;;;:::o;19130:::-;19296:4;19334:2;19323:9;19319:18;19311:26;;19383:9;19377:4;19373:20;19369:1;19358:9;19354:17;19347:47;19411:131;19537:4;19411:131;:::i;:::-;19403:139;;19130:419;;;:::o;19555:::-;19721:4;19759:2;19748:9;19744:18;19736:26;;19808:9;19802:4;19798:20;19794:1;19783:9;19779:17;19772:47;19836:131;19962:4;19836:131;:::i;:::-;19828:139;;19555:419;;;:::o;19980:::-;20146:4;20184:2;20173:9;20169:18;20161:26;;20233:9;20227:4;20223:20;20219:1;20208:9;20204:17;20197:47;20261:131;20387:4;20261:131;:::i;:::-;20253:139;;19980:419;;;:::o;20405:::-;20571:4;20609:2;20598:9;20594:18;20586:26;;20658:9;20652:4;20648:20;20644:1;20633:9;20629:17;20622:47;20686:131;20812:4;20686:131;:::i;:::-;20678:139;;20405:419;;;:::o;20830:::-;20996:4;21034:2;21023:9;21019:18;21011:26;;21083:9;21077:4;21073:20;21069:1;21058:9;21054:17;21047:47;21111:131;21237:4;21111:131;:::i;:::-;21103:139;;20830:419;;;:::o;21255:222::-;21348:4;21386:2;21375:9;21371:18;21363:26;;21399:71;21467:1;21456:9;21452:17;21443:6;21399:71;:::i;:::-;21255:222;;;;:::o;21483:129::-;21517:6;21544:20;;:::i;:::-;21534:30;;21573:33;21601:4;21593:6;21573:33;:::i;:::-;21483:129;;;:::o;21618:75::-;21651:6;21684:2;21678:9;21668:19;;21618:75;:::o;21699:307::-;21760:4;21850:18;21842:6;21839:30;21836:56;;;21872:18;;:::i;:::-;21836:56;21910:29;21932:6;21910:29;:::i;:::-;21902:37;;21994:4;21988;21984:15;21976:23;;21699:307;;;:::o;22012:308::-;22074:4;22164:18;22156:6;22153:30;22150:56;;;22186:18;;:::i;:::-;22150:56;22224:29;22246:6;22224:29;:::i;:::-;22216:37;;22308:4;22302;22298:15;22290:23;;22012:308;;;:::o;22326:132::-;22393:4;22416:3;22408:11;;22446:4;22441:3;22437:14;22429:22;;22326:132;;;:::o;22464:141::-;22513:4;22536:3;22528:11;;22559:3;22556:1;22549:14;22593:4;22590:1;22580:18;22572:26;;22464:141;;;:::o;22611:114::-;22678:6;22712:5;22706:12;22696:22;;22611:114;;;:::o;22731:98::-;22782:6;22816:5;22810:12;22800:22;;22731:98;;;:::o;22835:99::-;22887:6;22921:5;22915:12;22905:22;;22835:99;;;:::o;22940:113::-;23010:4;23042;23037:3;23033:14;23025:22;;22940:113;;;:::o;23059:184::-;23158:11;23192:6;23187:3;23180:19;23232:4;23227:3;23223:14;23208:29;;23059:184;;;;:::o;23249:168::-;23332:11;23366:6;23361:3;23354:19;23406:4;23401:3;23397:14;23382:29;;23249:168;;;;:::o;23423:147::-;23524:11;23561:3;23546:18;;23423:147;;;;:::o;23576:169::-;23660:11;23694:6;23689:3;23682:19;23734:4;23729:3;23725:14;23710:29;;23576:169;;;;:::o;23751:148::-;23853:11;23890:3;23875:18;;23751:148;;;;:::o;23905:281::-;23945:3;23964:20;23982:1;23964:20;:::i;:::-;23959:25;;23998:20;24016:1;23998:20;:::i;:::-;23993:25;;24128:1;24084:42;24080:50;24077:1;24074:57;24071:83;;;24134:18;;:::i;:::-;24071:83;24178:1;24175;24171:9;24164:16;;23905:281;;;;:::o;24192:305::-;24232:3;24251:20;24269:1;24251:20;:::i;:::-;24246:25;;24285:20;24303:1;24285:20;:::i;:::-;24280:25;;24439:1;24371:66;24367:74;24364:1;24361:81;24358:107;;;24445:18;;:::i;:::-;24358:107;24489:1;24486;24482:9;24475:16;;24192:305;;;;:::o;24503:185::-;24543:1;24560:20;24578:1;24560:20;:::i;:::-;24555:25;;24594:20;24612:1;24594:20;:::i;:::-;24589:25;;24633:1;24623:35;;24638:18;;:::i;:::-;24623:35;24680:1;24677;24673:9;24668:14;;24503:185;;;;:::o;24694:348::-;24734:7;24757:20;24775:1;24757:20;:::i;:::-;24752:25;;24791:20;24809:1;24791:20;:::i;:::-;24786:25;;24979:1;24911:66;24907:74;24904:1;24901:81;24896:1;24889:9;24882:17;24878:105;24875:131;;;24986:18;;:::i;:::-;24875:131;25034:1;25031;25027:9;25016:20;;24694:348;;;;:::o;25048:191::-;25088:4;25108:20;25126:1;25108:20;:::i;:::-;25103:25;;25142:20;25160:1;25142:20;:::i;:::-;25137:25;;25181:1;25178;25175:8;25172:34;;;25186:18;;:::i;:::-;25172:34;25231:1;25228;25224:9;25216:17;;25048:191;;;;:::o;25245:::-;25285:4;25305:20;25323:1;25305:20;:::i;:::-;25300:25;;25339:20;25357:1;25339:20;:::i;:::-;25334:25;;25378:1;25375;25372:8;25369:34;;;25383:18;;:::i;:::-;25369:34;25428:1;25425;25421:9;25413:17;;25245:191;;;;:::o;25442:96::-;25479:7;25508:24;25526:5;25508:24;:::i;:::-;25497:35;;25442:96;;;:::o;25544:90::-;25578:7;25621:5;25614:13;25607:21;25596:32;;25544:90;;;:::o;25640:149::-;25676:7;25716:66;25709:5;25705:78;25694:89;;25640:149;;;:::o;25795:126::-;25832:7;25872:42;25865:5;25861:54;25850:65;;25795:126;;;:::o;25927:77::-;25964:7;25993:5;25982:16;;25927:77;;;:::o;26010:154::-;26094:6;26089:3;26084;26071:30;26156:1;26147:6;26142:3;26138:16;26131:27;26010:154;;;:::o;26170:307::-;26238:1;26248:113;26262:6;26259:1;26256:13;26248:113;;;26347:1;26342:3;26338:11;26332:18;26328:1;26323:3;26319:11;26312:39;26284:2;26281:1;26277:10;26272:15;;26248:113;;;26379:6;26376:1;26373:13;26370:101;;;26459:1;26450:6;26445:3;26441:16;26434:27;26370:101;26219:258;26170:307;;;:::o;26483:320::-;26527:6;26564:1;26558:4;26554:12;26544:22;;26611:1;26605:4;26601:12;26632:18;26622:81;;26688:4;26680:6;26676:17;26666:27;;26622:81;26750:2;26742:6;26739:14;26719:18;26716:38;26713:84;;;26769:18;;:::i;:::-;26713:84;26534:269;26483:320;;;:::o;26809:281::-;26892:27;26914:4;26892:27;:::i;:::-;26884:6;26880:40;27022:6;27010:10;27007:22;26986:18;26974:10;26971:34;26968:62;26965:88;;;27033:18;;:::i;:::-;26965:88;27073:10;27069:2;27062:22;26852:238;26809:281;;:::o;27096:233::-;27135:3;27158:24;27176:5;27158:24;:::i;:::-;27149:33;;27204:66;27197:5;27194:77;27191:103;;;27274:18;;:::i;:::-;27191:103;27321:1;27314:5;27310:13;27303:20;;27096:233;;;:::o;27335:176::-;27367:1;27384:20;27402:1;27384:20;:::i;:::-;27379:25;;27418:20;27436:1;27418:20;:::i;:::-;27413:25;;27457:1;27447:35;;27462:18;;:::i;:::-;27447:35;27503:1;27500;27496:9;27491:14;;27335:176;;;;:::o;27517:180::-;27565:77;27562:1;27555:88;27662:4;27659:1;27652:15;27686:4;27683:1;27676:15;27703:180;27751:77;27748:1;27741:88;27848:4;27845:1;27838:15;27872:4;27869:1;27862:15;27889:180;27937:77;27934:1;27927:88;28034:4;28031:1;28024:15;28058:4;28055:1;28048:15;28075:180;28123:77;28120:1;28113:88;28220:4;28217:1;28210:15;28244:4;28241:1;28234:15;28261:180;28309:77;28306:1;28299:88;28406:4;28403:1;28396:15;28430:4;28427:1;28420:15;28447:117;28556:1;28553;28546:12;28570:117;28679:1;28676;28669:12;28693:117;28802:1;28799;28792:12;28816:117;28925:1;28922;28915:12;28939:102;28980:6;29031:2;29027:7;29022:2;29015:5;29011:14;29007:28;28997:38;;28939:102;;;:::o;29047:233::-;29187:34;29183:1;29175:6;29171:14;29164:58;29256:16;29251:2;29243:6;29239:15;29232:41;29047:233;:::o;29286:157::-;29426:9;29422:1;29414:6;29410:14;29403:33;29286:157;:::o;29449:225::-;29589:34;29585:1;29577:6;29573:14;29566:58;29658:8;29653:2;29645:6;29641:15;29634:33;29449:225;:::o;29680:182::-;29820:34;29816:1;29808:6;29804:14;29797:58;29680:182;:::o;29868:173::-;30008:25;30004:1;29996:6;29992:14;29985:49;29868:173;:::o;30047:234::-;30187:34;30183:1;30175:6;30171:14;30164:58;30256:17;30251:2;30243:6;30239:15;30232:42;30047:234;:::o;30287:179::-;30427:31;30423:1;30415:6;30411:14;30404:55;30287:179;:::o;30472:114::-;;:::o;30592:166::-;30732:18;30728:1;30720:6;30716:14;30709:42;30592:166;:::o;30764:169::-;30904:21;30900:1;30892:6;30888:14;30881:45;30764:169;:::o;30939:122::-;31012:24;31030:5;31012:24;:::i;:::-;31005:5;31002:35;30992:63;;31051:1;31048;31041:12;30992:63;30939:122;:::o;31067:116::-;31137:21;31152:5;31137:21;:::i;:::-;31130:5;31127:32;31117:60;;31173:1;31170;31163:12;31117:60;31067:116;:::o;31189:120::-;31261:23;31278:5;31261:23;:::i;:::-;31254:5;31251:34;31241:62;;31299:1;31296;31289:12;31241:62;31189:120;:::o;31315:122::-;31388:24;31406:5;31388:24;:::i;:::-;31381:5;31378:35;31368:63;;31427:1;31424;31417:12;31368:63;31315:122;:::o

Swarm Source

ipfs://eb67402ffb31b00f1056d18f3effa1357f674563d8dd510cd3c4cf8bf7f71c0d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.