ETH Price: $3,093.89 (+0.82%)
Gas: 10 Gwei

Token

Bored Ape Alpha Club (BAAC)
 

Overview

Max Total Supply

5,000 BAAC

Holders

1,960

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
24 BAAC
0x0b10f3938442e4737f34548e4e932ec773fe702c
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:
BoredApeAlphaClub

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-12-05
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
/**
Where am i?.......                                   
                                                                           
*/

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

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

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }
}

// 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/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (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 `IERC721.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 v4.4.1 (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`, 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 be 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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 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);

    /**
     * @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;
}

// 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/new.sol




pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
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 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();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        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) {
        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) {
        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 {
        _addressData[owner].aux = aux;
    }

    /**
     * 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.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            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 virtual 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);
    }

    /**
     * @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);
    }

    /**
     * @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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, 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 {}
}

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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender() , "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @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);
    }
}
    pragma solidity ^0.8.7;
    
    contract BoredApeAlphaClub is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;


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

  
  

  uint256 public cost = 0.001 ether;
  uint256 public whiteListCost = 0.001 ether ;
  

  uint16 public maxSupply = 5000;
  uint8 public maxMintAmountPerTx = 50;
    uint8 public maxFreeMintAmountPerWallet = 2;
    uint256 public freeNFTAlreadyMinted = 0;
     uint256 public  NUM_FREE_MINTS = 4000;
                                                             
  bool public WLpaused = false;
  bool public paused = true;
  bool public reveal =true;
  mapping (address => uint8) public NFTPerWLAddress;
   mapping (address => uint8) public NFTPerPublicAddress;
  mapping (address => bool) public isWhitelisted;
 
  
  
 
  

    constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    
  }

  
 
 
  function mint(uint256 _mintAmount)
      external
      payable
  {
    require(!paused, "The contract is paused!");
    require(totalSupply() + _mintAmount < maxSupply + 1, "No more");

    if(freeNFTAlreadyMinted + _mintAmount > NUM_FREE_MINTS){
        require(
            (cost * _mintAmount) <= msg.value,
            "Incorrect ETH value sent"
        );
    }
     else {
        if (balanceOf(msg.sender) + _mintAmount > maxFreeMintAmountPerWallet) {
        require(
            (cost * _mintAmount) <= msg.value,
            "Incorrect ETH value sent"
        );
        require(
            _mintAmount <= maxMintAmountPerTx,
            "Max mints per transaction exceeded"
        );
        } else {
            require(
                _mintAmount <= maxFreeMintAmountPerWallet,
                "Max mints per transaction exceeded"
            );
            freeNFTAlreadyMinted += _mintAmount;
        }
    }
    _safeMint(msg.sender, _mintAmount);
  }

  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }

  function Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
     uint totalAmount =   _amountPerAddress * addresses.length;
    require(totalSupply + totalAmount <= maxSupply, "Excedes max supply.");
     for (uint256 i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], _amountPerAddress);
        }

     delete _amountPerAddress;
     delete totalSupply;
  }

 

  function setMaxSupply(uint16 _maxSupply) external onlyOwner {
      maxSupply = _maxSupply;
  }



   
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
  
if ( reveal == false)
{
    return hiddenURL;
}
    

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix))
        : "";
  }
 
   function setWLPaused() external onlyOwner {
    WLpaused = !WLpaused;
  }
  function setWLCost(uint256 _cost) external onlyOwner {
    whiteListCost = _cost;
    delete _cost;
  }



 function setFreeMaxLimitPerAddress(uint8 _limit) external onlyOwner{
    maxFreeMintAmountPerWallet = _limit;
   delete _limit;

}

    
  function addToPresaleWhitelist(address[] calldata entries) external onlyOwner {
        for(uint8 i = 0; i < entries.length; i++) {
            isWhitelisted[entries[i]] = true;
        }   
    }

    function removeFromPresaleWhitelist(address[] calldata entries) external onlyOwner {
        for(uint8 i = 0; i < entries.length; i++) {
             isWhitelisted[entries[i]] = false;
        }
    }



    function whitelistMint(uint256 _mintAmount)
      external
      payable
  {
    require(!WLpaused, "Whitelist minting is over!");
     require(isWhitelisted[msg.sender],  "You are not whitelisted");

    require(totalSupply() + _mintAmount < maxSupply + 1, "No more");

    if(freeNFTAlreadyMinted + _mintAmount > NUM_FREE_MINTS){
        require(
            (whiteListCost * _mintAmount) <= msg.value,
            "Incorrect ETH value sent"
        );
    }
     else {
        if (balanceOf(msg.sender) + _mintAmount > maxFreeMintAmountPerWallet) {
        require(
            (whiteListCost * _mintAmount) <= msg.value,
            "Incorrect ETH value sent"
        );
        require(
            _mintAmount <= maxMintAmountPerTx,
            "Max mints per transaction exceeded"
        );
        } else {
            require(
                _mintAmount <= maxFreeMintAmountPerWallet,
                "Max mints per transaction exceeded"
            );
            freeNFTAlreadyMinted += _mintAmount;
        }
    }
    _safeMint(msg.sender, _mintAmount);
  }

  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }
   function setHiddenUri(string memory _uriPrefix) external onlyOwner {
    hiddenURL = _uriPrefix;
  }


  function setPaused() external onlyOwner {
    paused = !paused;
    WLpaused = true;
  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }

 function setRevealed() external onlyOwner{
     reveal = !reveal;
 }

  function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerTx = _maxtx;

  }

 

  function withdraw() public onlyOwner nonReentrant {
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
    // =============================================================================
  }


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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"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":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerPublicAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerWLAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WLpaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleWhitelist","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":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","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":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromPresaleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setWLCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWLPaused","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":"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":"whiteListCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000519291906200029e565b5066038d7ea4c68000600d5566038d7ea4c68000600e55611388600f60006101000a81548161ffff021916908361ffff1602179055506032600f60026101000a81548160ff021916908360ff1602179055506002600f60036101000a81548160ff021916908360ff1602179055506000601055610fa06011556000601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff0219169083151502179055503480156200012857600080fd5b50604051620053a2380380620053a283398181016040528101906200014e9190620003cc565b82828160029080519060200190620001689291906200029e565b508060039080519060200190620001819291906200029e565b5062000192620001cb60201b60201c565b6000819055505050620001ba620001ae620001d060201b60201c565b620001d860201b60201c565b600160098190555050505062000609565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ac906200051a565b90600052602060002090601f016020900481019282620002d057600085556200031c565b82601f10620002eb57805160ff19168380011785556200031c565b828001600101855582156200031c579182015b828111156200031b578251825591602001919060010190620002fe565b5b5090506200032b91906200032f565b5090565b5b808211156200034a57600081600090555060010162000330565b5090565b6000620003656200035f84620004ae565b62000485565b905082815260208101848484011115620003845762000383620005e9565b5b62000391848285620004e4565b509392505050565b600082601f830112620003b157620003b0620005e4565b5b8151620003c38482602086016200034e565b91505092915050565b600080600060608486031215620003e857620003e7620005f3565b5b600084015167ffffffffffffffff811115620004095762000408620005ee565b5b620004178682870162000399565b935050602084015167ffffffffffffffff8111156200043b576200043a620005ee565b5b620004498682870162000399565b925050604084015167ffffffffffffffff8111156200046d576200046c620005ee565b5b6200047b8682870162000399565b9150509250925092565b600062000491620004a4565b90506200049f828262000550565b919050565b6000604051905090565b600067ffffffffffffffff821115620004cc57620004cb620005b5565b5b620004d782620005f8565b9050602081019050919050565b60005b8381101562000504578082015181840152602081019050620004e7565b8381111562000514576000848401525b50505050565b600060028204905060018216806200053357607f821691505b602082108114156200054a576200054962000586565b5b50919050565b6200055b82620005f8565b810181811067ffffffffffffffff821117156200057d576200057c620005b5565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b614d8980620006196000396000f3fe6080604052600436106102935760003560e01c80637ec4a6591161015a578063a475b5dd116100c1578063d5abeb011161007a578063d5abeb0114610982578063e94053c7146109ad578063e985e9c5146109ea578063eef440af14610a27578063f2fde38b14610a52578063f8bf517214610a7b57610293565b8063a475b5dd14610876578063aa062290146108a1578063b88d4fde146108ca578063c87b56dd146108f3578063cffb6e2014610930578063d1d192131461095957610293565b80639257e044116101135780639257e0441461078557806394354fd0146107b057806395d89b41146107db578063982d669e14610806578063a0712d6814610831578063a22cb4651461084d57610293565b80637ec4a659146106985780637f6e9093146106c1578063868ff4a2146106ec5780638da5cb5b146107085780638e07484c146107335780638f65fe0a1461075c57610293565b806337a66d85116101fe5780634d9c1848116101b75780634d9c18481461057657806359bf5dbb1461059f5780635c975abb146105dc5780636352211e1461060757806370a0823114610644578063715018a61461068157610293565b806337a66d85146104a25780633af32abf146104b95780633bd64968146104f65780633ccfd60b1461050d57806342842e0e1461052457806344a0d68a1461054d57610293565b80631067fcc7116102505780631067fcc7146103a657806313faede6146103cf57806318160ddd146103fa578063193ad7b41461042557806323b872dd146104505780632f6f98e11461047957610293565b806301ffc9a71461029857806306421c2f146102d557806306fdde03146102fe578063081812fc14610329578063093cfa6314610366578063095ea7b31461037d575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613df2565b610aa6565b6040516102cc919061437a565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190613e95565b610b88565b005b34801561030a57600080fd5b50610313610c24565b6040516103209190614395565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190613f02565b610cb6565b60405161035d9190614313565b60405180910390f35b34801561037257600080fd5b5061037b610d32565b005b34801561038957600080fd5b506103a4600480360381019061039f9190613d65565b610dda565b005b3480156103b257600080fd5b506103cd60048036038101906103c89190613e4c565b610ee5565b005b3480156103db57600080fd5b506103e4610f7b565b6040516103f19190614532565b60405180910390f35b34801561040657600080fd5b5061040f610f81565b60405161041c9190614532565b60405180910390f35b34801561043157600080fd5b5061043a610f98565b6040516104479190614532565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190613c4f565b610f9e565b005b34801561048557600080fd5b506104a0600480360381019061049b9190613ec2565b610fae565b005b3480156104ae57600080fd5b506104b76110bb565b005b3480156104c557600080fd5b506104e060048036038101906104db9190613be2565b61117e565b6040516104ed919061437a565b60405180910390f35b34801561050257600080fd5b5061050b61119e565b005b34801561051957600080fd5b50610522611246565b005b34801561053057600080fd5b5061054b60048036038101906105469190613c4f565b611398565b005b34801561055957600080fd5b50610574600480360381019061056f9190613f02565b6113b8565b005b34801561058257600080fd5b5061059d60048036038101906105989190613f2f565b61143e565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190613be2565b6114dc565b6040516105d3919061454d565b60405180910390f35b3480156105e857600080fd5b506105f16114fc565b6040516105fe919061437a565b60405180910390f35b34801561061357600080fd5b5061062e60048036038101906106299190613f02565b61150f565b60405161063b9190614313565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190613be2565b611525565b6040516106789190614532565b60405180910390f35b34801561068d57600080fd5b506106966115f5565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190613e4c565b61167d565b005b3480156106cd57600080fd5b506106d6611713565b6040516106e3919061437a565b60405180910390f35b61070660048036038101906107019190613f02565b611726565b005b34801561071457600080fd5b5061071d611a36565b60405161072a9190614313565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190613da5565b611a60565b005b34801561076857600080fd5b50610783600480360381019061077e9190613da5565b611b87565b005b34801561079157600080fd5b5061079a611cae565b6040516107a79190614532565b60405180910390f35b3480156107bc57600080fd5b506107c5611cb4565b6040516107d2919061454d565b60405180910390f35b3480156107e757600080fd5b506107f0611cc7565b6040516107fd9190614395565b60405180910390f35b34801561081257600080fd5b5061081b611d59565b6040516108289190614532565b60405180910390f35b61084b60048036038101906108469190613f02565b611d5f565b005b34801561085957600080fd5b50610874600480360381019061086f9190613d25565b611fe3565b005b34801561088257600080fd5b5061088b61215b565b604051610898919061437a565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c39190613f2f565b61216e565b005b3480156108d657600080fd5b506108f160048036038101906108ec9190613ca2565b612208565b005b3480156108ff57600080fd5b5061091a60048036038101906109159190613f02565b612284565b6040516109279190614395565b60405180910390f35b34801561093c57600080fd5b5061095760048036038101906109529190613f5c565b6123dd565b005b34801561096557600080fd5b50610980600480360381019061097b9190613f02565b612546565b005b34801561098e57600080fd5b506109976125d0565b6040516109a49190614517565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf9190613be2565b6125e4565b6040516109e1919061454d565b60405180910390f35b3480156109f657600080fd5b50610a116004803603810190610a0c9190613c0f565b612604565b604051610a1e919061437a565b60405180910390f35b348015610a3357600080fd5b50610a3c612698565b604051610a499190614395565b60405180910390f35b348015610a5e57600080fd5b50610a796004803603810190610a749190613be2565b612726565b005b348015610a8757600080fd5b50610a9061281e565b604051610a9d919061454d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b815750610b8082612831565b5b9050919050565b610b9061289b565b73ffffffffffffffffffffffffffffffffffffffff16610bae611a36565b73ffffffffffffffffffffffffffffffffffffffff1614610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb90614477565b60405180910390fd5b80600f60006101000a81548161ffff021916908361ffff16021790555050565b606060028054610c3390614870565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5f90614870565b8015610cac5780601f10610c8157610100808354040283529160200191610cac565b820191906000526020600020905b815481529060010190602001808311610c8f57829003601f168201915b5050505050905090565b6000610cc1826128a3565b610cf7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610d3a61289b565b73ffffffffffffffffffffffffffffffffffffffff16610d58611a36565b73ffffffffffffffffffffffffffffffffffffffff1614610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da590614477565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6000610de58261150f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e4d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e6c61289b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610e9e5750610e9c81610e9761289b565b612604565b155b15610ed5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ee08383836128f1565b505050565b610eed61289b565b73ffffffffffffffffffffffffffffffffffffffff16610f0b611a36565b73ffffffffffffffffffffffffffffffffffffffff1614610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5890614477565b60405180910390fd5b80600c9080519060200190610f77929190613933565b5050565b600d5481565b6000610f8b6129a3565b6001546000540303905090565b60105481565b610fa98383836129a8565b505050565b610fb661289b565b73ffffffffffffffffffffffffffffffffffffffff16610fd4611a36565b73ffffffffffffffffffffffffffffffffffffffff161461102a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102190614477565b60405180910390fd5b6000611034610f81565b9050600f60009054906101000a900461ffff1661ffff1683826110579190614652565b61ffff16111561109c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611093906143b7565b60405180910390fd5b6110aa828461ffff16612e5e565b600092506000915060009050505050565b6110c361289b565b73ffffffffffffffffffffffffffffffffffffffff166110e1611a36565b73ffffffffffffffffffffffffffffffffffffffff1614611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e90614477565b60405180910390fd5b601260019054906101000a900460ff1615601260016101000a81548160ff0219169083151502179055506001601260006101000a81548160ff021916908315150217905550565b60156020528060005260406000206000915054906101000a900460ff1681565b6111a661289b565b73ffffffffffffffffffffffffffffffffffffffff166111c4611a36565b73ffffffffffffffffffffffffffffffffffffffff161461121a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121190614477565b60405180910390fd5b601260029054906101000a900460ff1615601260026101000a81548160ff021916908315150217905550565b61124e61289b565b73ffffffffffffffffffffffffffffffffffffffff1661126c611a36565b73ffffffffffffffffffffffffffffffffffffffff16146112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990614477565b60405180910390fd5b60026009541415611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff906144f7565b60405180910390fd5b6002600981905550600061131a611a36565b73ffffffffffffffffffffffffffffffffffffffff164760405161133d906142fe565b60006040518083038185875af1925050503d806000811461137a576040519150601f19603f3d011682016040523d82523d6000602084013e61137f565b606091505b505090508061138d57600080fd5b506001600981905550565b6113b383838360405180602001604052806000815250612208565b505050565b6113c061289b565b73ffffffffffffffffffffffffffffffffffffffff166113de611a36565b73ffffffffffffffffffffffffffffffffffffffff1614611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b90614477565b60405180910390fd5b80600d8190555050565b61144661289b565b73ffffffffffffffffffffffffffffffffffffffff16611464611a36565b73ffffffffffffffffffffffffffffffffffffffff16146114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b190614477565b60405180910390fd5b80600f60036101000a81548160ff021916908360ff1602179055506000905050565b60136020528060005260406000206000915054906101000a900460ff1681565b601260019054906101000a900460ff1681565b600061151a82612e7c565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561158d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115fd61289b565b73ffffffffffffffffffffffffffffffffffffffff1661161b611a36565b73ffffffffffffffffffffffffffffffffffffffff1614611671576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166890614477565b60405180910390fd5b61167b600061310b565b565b61168561289b565b73ffffffffffffffffffffffffffffffffffffffff166116a3611a36565b73ffffffffffffffffffffffffffffffffffffffff16146116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f090614477565b60405180910390fd5b80600a908051906020019061170f929190613933565b5050565b601260009054906101000a900460ff1681565b601260009054906101000a900460ff1615611776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176d90614417565b60405180910390fd5b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f990614457565b60405180910390fd5b6001600f60009054906101000a900461ffff1661181f9190614652565b61ffff168161182c610f81565b611836919061468a565b10611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d906143d7565b60405180910390fd5b60115481601054611887919061468a565b11156118e2573481600e5461189c9190614711565b11156118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d4906144d7565b60405180910390fd5b611a29565b600f60039054906101000a900460ff1660ff16816118ff33611525565b611909919061468a565b11156119b9573481600e5461191e9190614711565b111561195f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611956906144d7565b60405180910390fd5b600f60029054906101000a900460ff1660ff168111156119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab90614437565b60405180910390fd5b611a28565b600f60039054906101000a900460ff1660ff16811115611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0590614437565b60405180910390fd5b8060106000828254611a20919061468a565b925050819055505b5b611a333382612e5e565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a6861289b565b73ffffffffffffffffffffffffffffffffffffffff16611a86611a36565b73ffffffffffffffffffffffffffffffffffffffff1614611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad390614477565b60405180910390fd5b60005b828290508160ff161015611b825760016015600085858560ff16818110611b0957611b08614a04565b5b9050602002016020810190611b1e9190613be2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611b7a9061491c565b915050611adf565b505050565b611b8f61289b565b73ffffffffffffffffffffffffffffffffffffffff16611bad611a36565b73ffffffffffffffffffffffffffffffffffffffff1614611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa90614477565b60405180910390fd5b60005b828290508160ff161015611ca95760006015600085858560ff16818110611c3057611c2f614a04565b5b9050602002016020810190611c459190613be2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611ca19061491c565b915050611c06565b505050565b600e5481565b600f60029054906101000a900460ff1681565b606060038054611cd690614870565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0290614870565b8015611d4f5780601f10611d2457610100808354040283529160200191611d4f565b820191906000526020600020905b815481529060010190602001808311611d3257829003601f168201915b5050505050905090565b60115481565b601260019054906101000a900460ff1615611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da690614497565b60405180910390fd5b6001600f60009054906101000a900461ffff16611dcc9190614652565b61ffff1681611dd9610f81565b611de3919061468a565b10611e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1a906143d7565b60405180910390fd5b60115481601054611e34919061468a565b1115611e8f573481600d54611e499190614711565b1115611e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e81906144d7565b60405180910390fd5b611fd6565b600f60039054906101000a900460ff1660ff1681611eac33611525565b611eb6919061468a565b1115611f66573481600d54611ecb9190614711565b1115611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f03906144d7565b60405180910390fd5b600f60029054906101000a900460ff1660ff16811115611f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5890614437565b60405180910390fd5b611fd5565b600f60039054906101000a900460ff1660ff16811115611fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb290614437565b60405180910390fd5b8060106000828254611fcd919061468a565b925050819055505b5b611fe03382612e5e565b50565b611feb61289b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612050576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061205d61289b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661210a61289b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161214f919061437a565b60405180910390a35050565b601260029054906101000a900460ff1681565b61217661289b565b73ffffffffffffffffffffffffffffffffffffffff16612194611a36565b73ffffffffffffffffffffffffffffffffffffffff16146121ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e190614477565b60405180910390fd5b80600f60026101000a81548160ff021916908360ff16021790555050565b6122138484846129a8565b6122328373ffffffffffffffffffffffffffffffffffffffff166131d1565b80156122475750612245848484846131f4565b155b1561227e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061228f826128a3565b6122ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c5906144b7565b60405180910390fd5b60001515601260029054906101000a900460ff161515141561237c57600c80546122f790614870565b80601f016020809104026020016040519081016040528092919081815260200182805461232390614870565b80156123705780601f1061234557610100808354040283529160200191612370565b820191906000526020600020905b81548152906001019060200180831161235357829003601f168201915b505050505090506123d8565b6000612386613354565b905060008151116123a657604051806020016040528060008152506123d4565b806123b0846133e6565b600b6040516020016123c4939291906142cd565b6040516020818303038152906040525b9150505b919050565b6123e561289b565b73ffffffffffffffffffffffffffffffffffffffff16612403611a36565b73ffffffffffffffffffffffffffffffffffffffff1614612459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245090614477565b60405180910390fd5b6000612463610f81565b90506000838390508560ff166124799190614711565b9050600f60009054906101000a900461ffff1661ffff16818361ffff166124a0919061468a565b11156124e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d8906143b7565b60405180910390fd5b60005b848490508110156125365761252385858381811061250557612504614a04565b5b905060200201602081019061251a9190613be2565b8760ff16612e5e565b808061252e906148d3565b9150506124e4565b5060009450600091505050505050565b61254e61289b565b73ffffffffffffffffffffffffffffffffffffffff1661256c611a36565b73ffffffffffffffffffffffffffffffffffffffff16146125c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b990614477565b60405180910390fd5b80600e819055506000905050565b600f60009054906101000a900461ffff1681565b60146020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c80546126a590614870565b80601f01602080910402602001604051908101604052809291908181526020018280546126d190614870565b801561271e5780601f106126f35761010080835404028352916020019161271e565b820191906000526020600020905b81548152906001019060200180831161270157829003601f168201915b505050505081565b61272e61289b565b73ffffffffffffffffffffffffffffffffffffffff1661274c611a36565b73ffffffffffffffffffffffffffffffffffffffff16146127a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279990614477565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612812576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612809906143f7565b60405180910390fd5b61281b8161310b565b50565b600f60039054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816128ae6129a3565b111580156128bd575060005482105b80156128ea575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006129b382612e7c565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a1e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612a3f61289b565b73ffffffffffffffffffffffffffffffffffffffff161480612a6e5750612a6d85612a6861289b565b612604565b5b80612ab35750612a7c61289b565b73ffffffffffffffffffffffffffffffffffffffff16612a9b84610cb6565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612aec576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b53576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b608585856001613547565b612b6c600084876128f1565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612dec576000548214612deb57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e57858585600161354d565b5050505050565b612e78828260405180602001604052806000815250613553565b5050565b612e846139b9565b600082905080612e926129a3565b11158015612ea1575060005481105b156130d4576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516130d257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fb6578092505050613106565b5b6001156130d157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146130cc578092505050613106565b612fb7565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261321a61289b565b8786866040518563ffffffff1660e01b815260040161323c949392919061432e565b602060405180830381600087803b15801561325657600080fd5b505af192505050801561328757506040513d601f19601f820116820180604052508101906132849190613e1f565b60015b613301573d80600081146132b7576040519150601f19603f3d011682016040523d82523d6000602084013e6132bc565b606091505b506000815114156132f9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461336390614870565b80601f016020809104026020016040519081016040528092919081815260200182805461338f90614870565b80156133dc5780601f106133b1576101008083540402835291602001916133dc565b820191906000526020600020905b8154815290600101906020018083116133bf57829003601f168201915b5050505050905090565b6060600082141561342e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613542565b600082905060005b60008214613460578080613449906148d3565b915050600a8261345991906146e0565b9150613436565b60008167ffffffffffffffff81111561347c5761347b614a33565b5b6040519080825280601f01601f1916602001820160405280156134ae5781602001600182028036833780820191505090505b5090505b6000851461353b576001826134c7919061476b565b9150600a856134d69190614946565b60306134e2919061468a565b60f81b8183815181106134f8576134f7614a04565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561353491906146e0565b94506134b2565b8093505050505b919050565b50505050565b50505050565b6135608383836001613565565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156135d2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561360d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61361a6000868387613547565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156137e457506137e38773ffffffffffffffffffffffffffffffffffffffff166131d1565b5b156138aa575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461385960008884806001019550886131f4565b61388f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156137ea5782600054146138a557600080fd5b613916565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156138ab575b81600081905550505061392c600086838761354d565b5050505050565b82805461393f90614870565b90600052602060002090601f01602090048101928261396157600085556139a8565b82601f1061397a57805160ff19168380011785556139a8565b828001600101855582156139a8579182015b828111156139a757825182559160200191906001019061398c565b5b5090506139b591906139fc565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613a155760008160009055506001016139fd565b5090565b6000613a2c613a278461458d565b614568565b905082815260208101848484011115613a4857613a47614a71565b5b613a5384828561482e565b509392505050565b6000613a6e613a69846145be565b614568565b905082815260208101848484011115613a8a57613a89614a71565b5b613a9584828561482e565b509392505050565b600081359050613aac81614cc9565b92915050565b60008083601f840112613ac857613ac7614a67565b5b8235905067ffffffffffffffff811115613ae557613ae4614a62565b5b602083019150836020820283011115613b0157613b00614a6c565b5b9250929050565b600081359050613b1781614ce0565b92915050565b600081359050613b2c81614cf7565b92915050565b600081519050613b4181614cf7565b92915050565b600082601f830112613b5c57613b5b614a67565b5b8135613b6c848260208601613a19565b91505092915050565b600082601f830112613b8a57613b89614a67565b5b8135613b9a848260208601613a5b565b91505092915050565b600081359050613bb281614d0e565b92915050565b600081359050613bc781614d25565b92915050565b600081359050613bdc81614d3c565b92915050565b600060208284031215613bf857613bf7614a7b565b5b6000613c0684828501613a9d565b91505092915050565b60008060408385031215613c2657613c25614a7b565b5b6000613c3485828601613a9d565b9250506020613c4585828601613a9d565b9150509250929050565b600080600060608486031215613c6857613c67614a7b565b5b6000613c7686828701613a9d565b9350506020613c8786828701613a9d565b9250506040613c9886828701613bb8565b9150509250925092565b60008060008060808587031215613cbc57613cbb614a7b565b5b6000613cca87828801613a9d565b9450506020613cdb87828801613a9d565b9350506040613cec87828801613bb8565b925050606085013567ffffffffffffffff811115613d0d57613d0c614a76565b5b613d1987828801613b47565b91505092959194509250565b60008060408385031215613d3c57613d3b614a7b565b5b6000613d4a85828601613a9d565b9250506020613d5b85828601613b08565b9150509250929050565b60008060408385031215613d7c57613d7b614a7b565b5b6000613d8a85828601613a9d565b9250506020613d9b85828601613bb8565b9150509250929050565b60008060208385031215613dbc57613dbb614a7b565b5b600083013567ffffffffffffffff811115613dda57613dd9614a76565b5b613de685828601613ab2565b92509250509250929050565b600060208284031215613e0857613e07614a7b565b5b6000613e1684828501613b1d565b91505092915050565b600060208284031215613e3557613e34614a7b565b5b6000613e4384828501613b32565b91505092915050565b600060208284031215613e6257613e61614a7b565b5b600082013567ffffffffffffffff811115613e8057613e7f614a76565b5b613e8c84828501613b75565b91505092915050565b600060208284031215613eab57613eaa614a7b565b5b6000613eb984828501613ba3565b91505092915050565b60008060408385031215613ed957613ed8614a7b565b5b6000613ee785828601613ba3565b9250506020613ef885828601613a9d565b9150509250929050565b600060208284031215613f1857613f17614a7b565b5b6000613f2684828501613bb8565b91505092915050565b600060208284031215613f4557613f44614a7b565b5b6000613f5384828501613bcd565b91505092915050565b600080600060408486031215613f7557613f74614a7b565b5b6000613f8386828701613bcd565b935050602084013567ffffffffffffffff811115613fa457613fa3614a76565b5b613fb086828701613ab2565b92509250509250925092565b613fc58161479f565b82525050565b613fd4816147b1565b82525050565b6000613fe582614604565b613fef818561461a565b9350613fff81856020860161483d565b61400881614a80565b840191505092915050565b600061401e8261460f565b6140288185614636565b935061403881856020860161483d565b61404181614a80565b840191505092915050565b60006140578261460f565b6140618185614647565b935061407181856020860161483d565b80840191505092915050565b6000815461408a81614870565b6140948186614647565b945060018216600081146140af57600181146140c0576140f3565b60ff198316865281860193506140f3565b6140c9856145ef565b60005b838110156140eb578154818901526001820191506020810190506140cc565b838801955050505b50505092915050565b6000614109601383614636565b915061411482614a91565b602082019050919050565b600061412c600783614636565b915061413782614aba565b602082019050919050565b600061414f602683614636565b915061415a82614ae3565b604082019050919050565b6000614172601a83614636565b915061417d82614b32565b602082019050919050565b6000614195602283614636565b91506141a082614b5b565b604082019050919050565b60006141b8601783614636565b91506141c382614baa565b602082019050919050565b60006141db602083614636565b91506141e682614bd3565b602082019050919050565b60006141fe601783614636565b915061420982614bfc565b602082019050919050565b6000614221602f83614636565b915061422c82614c25565b604082019050919050565b600061424460008361462b565b915061424f82614c74565b600082019050919050565b6000614267601883614636565b915061427282614c77565b602082019050919050565b600061428a601f83614636565b915061429582614ca0565b602082019050919050565b6142a9816147e9565b82525050565b6142b881614817565b82525050565b6142c781614821565b82525050565b60006142d9828661404c565b91506142e5828561404c565b91506142f1828461407d565b9150819050949350505050565b600061430982614237565b9150819050919050565b60006020820190506143286000830184613fbc565b92915050565b60006080820190506143436000830187613fbc565b6143506020830186613fbc565b61435d60408301856142af565b818103606083015261436f8184613fda565b905095945050505050565b600060208201905061438f6000830184613fcb565b92915050565b600060208201905081810360008301526143af8184614013565b905092915050565b600060208201905081810360008301526143d0816140fc565b9050919050565b600060208201905081810360008301526143f08161411f565b9050919050565b6000602082019050818103600083015261441081614142565b9050919050565b6000602082019050818103600083015261443081614165565b9050919050565b6000602082019050818103600083015261445081614188565b9050919050565b60006020820190508181036000830152614470816141ab565b9050919050565b60006020820190508181036000830152614490816141ce565b9050919050565b600060208201905081810360008301526144b0816141f1565b9050919050565b600060208201905081810360008301526144d081614214565b9050919050565b600060208201905081810360008301526144f08161425a565b9050919050565b600060208201905081810360008301526145108161427d565b9050919050565b600060208201905061452c60008301846142a0565b92915050565b600060208201905061454760008301846142af565b92915050565b600060208201905061456260008301846142be565b92915050565b6000614572614583565b905061457e82826148a2565b919050565b6000604051905090565b600067ffffffffffffffff8211156145a8576145a7614a33565b5b6145b182614a80565b9050602081019050919050565b600067ffffffffffffffff8211156145d9576145d8614a33565b5b6145e282614a80565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061465d826147e9565b9150614668836147e9565b92508261ffff0382111561467f5761467e614977565b5b828201905092915050565b600061469582614817565b91506146a083614817565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146d5576146d4614977565b5b828201905092915050565b60006146eb82614817565b91506146f683614817565b925082614706576147056149a6565b5b828204905092915050565b600061471c82614817565b915061472783614817565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147605761475f614977565b5b828202905092915050565b600061477682614817565b915061478183614817565b92508282101561479457614793614977565b5b828203905092915050565b60006147aa826147f7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561485b578082015181840152602081019050614840565b8381111561486a576000848401525b50505050565b6000600282049050600182168061488857607f821691505b6020821081141561489c5761489b6149d5565b5b50919050565b6148ab82614a80565b810181811067ffffffffffffffff821117156148ca576148c9614a33565b5b80604052505050565b60006148de82614817565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561491157614910614977565b5b600182019050919050565b600061492782614821565b915060ff82141561493b5761493a614977565b5b600182019050919050565b600061495182614817565b915061495c83614817565b92508261496c5761496b6149a6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45786365646573206d617820737570706c792e00000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f57686974656c697374206d696e74696e67206973206f76657221000000000000600082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f742077686974656c6973746564000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b614cd28161479f565b8114614cdd57600080fd5b50565b614ce9816147b1565b8114614cf457600080fd5b50565b614d00816147bd565b8114614d0b57600080fd5b50565b614d17816147e9565b8114614d2257600080fd5b50565b614d2e81614817565b8114614d3957600080fd5b50565b614d4581614821565b8114614d5057600080fd5b5056fea26469706673582212205f21464413f6eed61ea5dbdad554b0ee4cd6f876dcdbd6214ca9d432e834077864736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000014426f7265642041706520416c70686120436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442414143000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102935760003560e01c80637ec4a6591161015a578063a475b5dd116100c1578063d5abeb011161007a578063d5abeb0114610982578063e94053c7146109ad578063e985e9c5146109ea578063eef440af14610a27578063f2fde38b14610a52578063f8bf517214610a7b57610293565b8063a475b5dd14610876578063aa062290146108a1578063b88d4fde146108ca578063c87b56dd146108f3578063cffb6e2014610930578063d1d192131461095957610293565b80639257e044116101135780639257e0441461078557806394354fd0146107b057806395d89b41146107db578063982d669e14610806578063a0712d6814610831578063a22cb4651461084d57610293565b80637ec4a659146106985780637f6e9093146106c1578063868ff4a2146106ec5780638da5cb5b146107085780638e07484c146107335780638f65fe0a1461075c57610293565b806337a66d85116101fe5780634d9c1848116101b75780634d9c18481461057657806359bf5dbb1461059f5780635c975abb146105dc5780636352211e1461060757806370a0823114610644578063715018a61461068157610293565b806337a66d85146104a25780633af32abf146104b95780633bd64968146104f65780633ccfd60b1461050d57806342842e0e1461052457806344a0d68a1461054d57610293565b80631067fcc7116102505780631067fcc7146103a657806313faede6146103cf57806318160ddd146103fa578063193ad7b41461042557806323b872dd146104505780632f6f98e11461047957610293565b806301ffc9a71461029857806306421c2f146102d557806306fdde03146102fe578063081812fc14610329578063093cfa6314610366578063095ea7b31461037d575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613df2565b610aa6565b6040516102cc919061437a565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190613e95565b610b88565b005b34801561030a57600080fd5b50610313610c24565b6040516103209190614395565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190613f02565b610cb6565b60405161035d9190614313565b60405180910390f35b34801561037257600080fd5b5061037b610d32565b005b34801561038957600080fd5b506103a4600480360381019061039f9190613d65565b610dda565b005b3480156103b257600080fd5b506103cd60048036038101906103c89190613e4c565b610ee5565b005b3480156103db57600080fd5b506103e4610f7b565b6040516103f19190614532565b60405180910390f35b34801561040657600080fd5b5061040f610f81565b60405161041c9190614532565b60405180910390f35b34801561043157600080fd5b5061043a610f98565b6040516104479190614532565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190613c4f565b610f9e565b005b34801561048557600080fd5b506104a0600480360381019061049b9190613ec2565b610fae565b005b3480156104ae57600080fd5b506104b76110bb565b005b3480156104c557600080fd5b506104e060048036038101906104db9190613be2565b61117e565b6040516104ed919061437a565b60405180910390f35b34801561050257600080fd5b5061050b61119e565b005b34801561051957600080fd5b50610522611246565b005b34801561053057600080fd5b5061054b60048036038101906105469190613c4f565b611398565b005b34801561055957600080fd5b50610574600480360381019061056f9190613f02565b6113b8565b005b34801561058257600080fd5b5061059d60048036038101906105989190613f2f565b61143e565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190613be2565b6114dc565b6040516105d3919061454d565b60405180910390f35b3480156105e857600080fd5b506105f16114fc565b6040516105fe919061437a565b60405180910390f35b34801561061357600080fd5b5061062e60048036038101906106299190613f02565b61150f565b60405161063b9190614313565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190613be2565b611525565b6040516106789190614532565b60405180910390f35b34801561068d57600080fd5b506106966115f5565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190613e4c565b61167d565b005b3480156106cd57600080fd5b506106d6611713565b6040516106e3919061437a565b60405180910390f35b61070660048036038101906107019190613f02565b611726565b005b34801561071457600080fd5b5061071d611a36565b60405161072a9190614313565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190613da5565b611a60565b005b34801561076857600080fd5b50610783600480360381019061077e9190613da5565b611b87565b005b34801561079157600080fd5b5061079a611cae565b6040516107a79190614532565b60405180910390f35b3480156107bc57600080fd5b506107c5611cb4565b6040516107d2919061454d565b60405180910390f35b3480156107e757600080fd5b506107f0611cc7565b6040516107fd9190614395565b60405180910390f35b34801561081257600080fd5b5061081b611d59565b6040516108289190614532565b60405180910390f35b61084b60048036038101906108469190613f02565b611d5f565b005b34801561085957600080fd5b50610874600480360381019061086f9190613d25565b611fe3565b005b34801561088257600080fd5b5061088b61215b565b604051610898919061437a565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c39190613f2f565b61216e565b005b3480156108d657600080fd5b506108f160048036038101906108ec9190613ca2565b612208565b005b3480156108ff57600080fd5b5061091a60048036038101906109159190613f02565b612284565b6040516109279190614395565b60405180910390f35b34801561093c57600080fd5b5061095760048036038101906109529190613f5c565b6123dd565b005b34801561096557600080fd5b50610980600480360381019061097b9190613f02565b612546565b005b34801561098e57600080fd5b506109976125d0565b6040516109a49190614517565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf9190613be2565b6125e4565b6040516109e1919061454d565b60405180910390f35b3480156109f657600080fd5b50610a116004803603810190610a0c9190613c0f565b612604565b604051610a1e919061437a565b60405180910390f35b348015610a3357600080fd5b50610a3c612698565b604051610a499190614395565b60405180910390f35b348015610a5e57600080fd5b50610a796004803603810190610a749190613be2565b612726565b005b348015610a8757600080fd5b50610a9061281e565b604051610a9d919061454d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b815750610b8082612831565b5b9050919050565b610b9061289b565b73ffffffffffffffffffffffffffffffffffffffff16610bae611a36565b73ffffffffffffffffffffffffffffffffffffffff1614610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb90614477565b60405180910390fd5b80600f60006101000a81548161ffff021916908361ffff16021790555050565b606060028054610c3390614870565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5f90614870565b8015610cac5780601f10610c8157610100808354040283529160200191610cac565b820191906000526020600020905b815481529060010190602001808311610c8f57829003601f168201915b5050505050905090565b6000610cc1826128a3565b610cf7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610d3a61289b565b73ffffffffffffffffffffffffffffffffffffffff16610d58611a36565b73ffffffffffffffffffffffffffffffffffffffff1614610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da590614477565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6000610de58261150f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e4d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e6c61289b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610e9e5750610e9c81610e9761289b565b612604565b155b15610ed5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ee08383836128f1565b505050565b610eed61289b565b73ffffffffffffffffffffffffffffffffffffffff16610f0b611a36565b73ffffffffffffffffffffffffffffffffffffffff1614610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5890614477565b60405180910390fd5b80600c9080519060200190610f77929190613933565b5050565b600d5481565b6000610f8b6129a3565b6001546000540303905090565b60105481565b610fa98383836129a8565b505050565b610fb661289b565b73ffffffffffffffffffffffffffffffffffffffff16610fd4611a36565b73ffffffffffffffffffffffffffffffffffffffff161461102a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102190614477565b60405180910390fd5b6000611034610f81565b9050600f60009054906101000a900461ffff1661ffff1683826110579190614652565b61ffff16111561109c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611093906143b7565b60405180910390fd5b6110aa828461ffff16612e5e565b600092506000915060009050505050565b6110c361289b565b73ffffffffffffffffffffffffffffffffffffffff166110e1611a36565b73ffffffffffffffffffffffffffffffffffffffff1614611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e90614477565b60405180910390fd5b601260019054906101000a900460ff1615601260016101000a81548160ff0219169083151502179055506001601260006101000a81548160ff021916908315150217905550565b60156020528060005260406000206000915054906101000a900460ff1681565b6111a661289b565b73ffffffffffffffffffffffffffffffffffffffff166111c4611a36565b73ffffffffffffffffffffffffffffffffffffffff161461121a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121190614477565b60405180910390fd5b601260029054906101000a900460ff1615601260026101000a81548160ff021916908315150217905550565b61124e61289b565b73ffffffffffffffffffffffffffffffffffffffff1661126c611a36565b73ffffffffffffffffffffffffffffffffffffffff16146112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990614477565b60405180910390fd5b60026009541415611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff906144f7565b60405180910390fd5b6002600981905550600061131a611a36565b73ffffffffffffffffffffffffffffffffffffffff164760405161133d906142fe565b60006040518083038185875af1925050503d806000811461137a576040519150601f19603f3d011682016040523d82523d6000602084013e61137f565b606091505b505090508061138d57600080fd5b506001600981905550565b6113b383838360405180602001604052806000815250612208565b505050565b6113c061289b565b73ffffffffffffffffffffffffffffffffffffffff166113de611a36565b73ffffffffffffffffffffffffffffffffffffffff1614611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b90614477565b60405180910390fd5b80600d8190555050565b61144661289b565b73ffffffffffffffffffffffffffffffffffffffff16611464611a36565b73ffffffffffffffffffffffffffffffffffffffff16146114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b190614477565b60405180910390fd5b80600f60036101000a81548160ff021916908360ff1602179055506000905050565b60136020528060005260406000206000915054906101000a900460ff1681565b601260019054906101000a900460ff1681565b600061151a82612e7c565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561158d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115fd61289b565b73ffffffffffffffffffffffffffffffffffffffff1661161b611a36565b73ffffffffffffffffffffffffffffffffffffffff1614611671576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166890614477565b60405180910390fd5b61167b600061310b565b565b61168561289b565b73ffffffffffffffffffffffffffffffffffffffff166116a3611a36565b73ffffffffffffffffffffffffffffffffffffffff16146116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f090614477565b60405180910390fd5b80600a908051906020019061170f929190613933565b5050565b601260009054906101000a900460ff1681565b601260009054906101000a900460ff1615611776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176d90614417565b60405180910390fd5b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f990614457565b60405180910390fd5b6001600f60009054906101000a900461ffff1661181f9190614652565b61ffff168161182c610f81565b611836919061468a565b10611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d906143d7565b60405180910390fd5b60115481601054611887919061468a565b11156118e2573481600e5461189c9190614711565b11156118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d4906144d7565b60405180910390fd5b611a29565b600f60039054906101000a900460ff1660ff16816118ff33611525565b611909919061468a565b11156119b9573481600e5461191e9190614711565b111561195f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611956906144d7565b60405180910390fd5b600f60029054906101000a900460ff1660ff168111156119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab90614437565b60405180910390fd5b611a28565b600f60039054906101000a900460ff1660ff16811115611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0590614437565b60405180910390fd5b8060106000828254611a20919061468a565b925050819055505b5b611a333382612e5e565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a6861289b565b73ffffffffffffffffffffffffffffffffffffffff16611a86611a36565b73ffffffffffffffffffffffffffffffffffffffff1614611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad390614477565b60405180910390fd5b60005b828290508160ff161015611b825760016015600085858560ff16818110611b0957611b08614a04565b5b9050602002016020810190611b1e9190613be2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611b7a9061491c565b915050611adf565b505050565b611b8f61289b565b73ffffffffffffffffffffffffffffffffffffffff16611bad611a36565b73ffffffffffffffffffffffffffffffffffffffff1614611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa90614477565b60405180910390fd5b60005b828290508160ff161015611ca95760006015600085858560ff16818110611c3057611c2f614a04565b5b9050602002016020810190611c459190613be2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611ca19061491c565b915050611c06565b505050565b600e5481565b600f60029054906101000a900460ff1681565b606060038054611cd690614870565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0290614870565b8015611d4f5780601f10611d2457610100808354040283529160200191611d4f565b820191906000526020600020905b815481529060010190602001808311611d3257829003601f168201915b5050505050905090565b60115481565b601260019054906101000a900460ff1615611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da690614497565b60405180910390fd5b6001600f60009054906101000a900461ffff16611dcc9190614652565b61ffff1681611dd9610f81565b611de3919061468a565b10611e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1a906143d7565b60405180910390fd5b60115481601054611e34919061468a565b1115611e8f573481600d54611e499190614711565b1115611e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e81906144d7565b60405180910390fd5b611fd6565b600f60039054906101000a900460ff1660ff1681611eac33611525565b611eb6919061468a565b1115611f66573481600d54611ecb9190614711565b1115611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f03906144d7565b60405180910390fd5b600f60029054906101000a900460ff1660ff16811115611f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5890614437565b60405180910390fd5b611fd5565b600f60039054906101000a900460ff1660ff16811115611fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb290614437565b60405180910390fd5b8060106000828254611fcd919061468a565b925050819055505b5b611fe03382612e5e565b50565b611feb61289b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612050576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061205d61289b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661210a61289b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161214f919061437a565b60405180910390a35050565b601260029054906101000a900460ff1681565b61217661289b565b73ffffffffffffffffffffffffffffffffffffffff16612194611a36565b73ffffffffffffffffffffffffffffffffffffffff16146121ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e190614477565b60405180910390fd5b80600f60026101000a81548160ff021916908360ff16021790555050565b6122138484846129a8565b6122328373ffffffffffffffffffffffffffffffffffffffff166131d1565b80156122475750612245848484846131f4565b155b1561227e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061228f826128a3565b6122ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c5906144b7565b60405180910390fd5b60001515601260029054906101000a900460ff161515141561237c57600c80546122f790614870565b80601f016020809104026020016040519081016040528092919081815260200182805461232390614870565b80156123705780601f1061234557610100808354040283529160200191612370565b820191906000526020600020905b81548152906001019060200180831161235357829003601f168201915b505050505090506123d8565b6000612386613354565b905060008151116123a657604051806020016040528060008152506123d4565b806123b0846133e6565b600b6040516020016123c4939291906142cd565b6040516020818303038152906040525b9150505b919050565b6123e561289b565b73ffffffffffffffffffffffffffffffffffffffff16612403611a36565b73ffffffffffffffffffffffffffffffffffffffff1614612459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245090614477565b60405180910390fd5b6000612463610f81565b90506000838390508560ff166124799190614711565b9050600f60009054906101000a900461ffff1661ffff16818361ffff166124a0919061468a565b11156124e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d8906143b7565b60405180910390fd5b60005b848490508110156125365761252385858381811061250557612504614a04565b5b905060200201602081019061251a9190613be2565b8760ff16612e5e565b808061252e906148d3565b9150506124e4565b5060009450600091505050505050565b61254e61289b565b73ffffffffffffffffffffffffffffffffffffffff1661256c611a36565b73ffffffffffffffffffffffffffffffffffffffff16146125c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b990614477565b60405180910390fd5b80600e819055506000905050565b600f60009054906101000a900461ffff1681565b60146020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c80546126a590614870565b80601f01602080910402602001604051908101604052809291908181526020018280546126d190614870565b801561271e5780601f106126f35761010080835404028352916020019161271e565b820191906000526020600020905b81548152906001019060200180831161270157829003601f168201915b505050505081565b61272e61289b565b73ffffffffffffffffffffffffffffffffffffffff1661274c611a36565b73ffffffffffffffffffffffffffffffffffffffff16146127a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279990614477565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612812576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612809906143f7565b60405180910390fd5b61281b8161310b565b50565b600f60039054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816128ae6129a3565b111580156128bd575060005482105b80156128ea575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006129b382612e7c565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a1e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612a3f61289b565b73ffffffffffffffffffffffffffffffffffffffff161480612a6e5750612a6d85612a6861289b565b612604565b5b80612ab35750612a7c61289b565b73ffffffffffffffffffffffffffffffffffffffff16612a9b84610cb6565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612aec576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b53576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b608585856001613547565b612b6c600084876128f1565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612dec576000548214612deb57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e57858585600161354d565b5050505050565b612e78828260405180602001604052806000815250613553565b5050565b612e846139b9565b600082905080612e926129a3565b11158015612ea1575060005481105b156130d4576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516130d257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fb6578092505050613106565b5b6001156130d157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146130cc578092505050613106565b612fb7565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261321a61289b565b8786866040518563ffffffff1660e01b815260040161323c949392919061432e565b602060405180830381600087803b15801561325657600080fd5b505af192505050801561328757506040513d601f19601f820116820180604052508101906132849190613e1f565b60015b613301573d80600081146132b7576040519150601f19603f3d011682016040523d82523d6000602084013e6132bc565b606091505b506000815114156132f9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461336390614870565b80601f016020809104026020016040519081016040528092919081815260200182805461338f90614870565b80156133dc5780601f106133b1576101008083540402835291602001916133dc565b820191906000526020600020905b8154815290600101906020018083116133bf57829003601f168201915b5050505050905090565b6060600082141561342e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613542565b600082905060005b60008214613460578080613449906148d3565b915050600a8261345991906146e0565b9150613436565b60008167ffffffffffffffff81111561347c5761347b614a33565b5b6040519080825280601f01601f1916602001820160405280156134ae5781602001600182028036833780820191505090505b5090505b6000851461353b576001826134c7919061476b565b9150600a856134d69190614946565b60306134e2919061468a565b60f81b8183815181106134f8576134f7614a04565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561353491906146e0565b94506134b2565b8093505050505b919050565b50505050565b50505050565b6135608383836001613565565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156135d2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561360d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61361a6000868387613547565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156137e457506137e38773ffffffffffffffffffffffffffffffffffffffff166131d1565b5b156138aa575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461385960008884806001019550886131f4565b61388f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156137ea5782600054146138a557600080fd5b613916565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156138ab575b81600081905550505061392c600086838761354d565b5050505050565b82805461393f90614870565b90600052602060002090601f01602090048101928261396157600085556139a8565b82601f1061397a57805160ff19168380011785556139a8565b828001600101855582156139a8579182015b828111156139a757825182559160200191906001019061398c565b5b5090506139b591906139fc565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613a155760008160009055506001016139fd565b5090565b6000613a2c613a278461458d565b614568565b905082815260208101848484011115613a4857613a47614a71565b5b613a5384828561482e565b509392505050565b6000613a6e613a69846145be565b614568565b905082815260208101848484011115613a8a57613a89614a71565b5b613a9584828561482e565b509392505050565b600081359050613aac81614cc9565b92915050565b60008083601f840112613ac857613ac7614a67565b5b8235905067ffffffffffffffff811115613ae557613ae4614a62565b5b602083019150836020820283011115613b0157613b00614a6c565b5b9250929050565b600081359050613b1781614ce0565b92915050565b600081359050613b2c81614cf7565b92915050565b600081519050613b4181614cf7565b92915050565b600082601f830112613b5c57613b5b614a67565b5b8135613b6c848260208601613a19565b91505092915050565b600082601f830112613b8a57613b89614a67565b5b8135613b9a848260208601613a5b565b91505092915050565b600081359050613bb281614d0e565b92915050565b600081359050613bc781614d25565b92915050565b600081359050613bdc81614d3c565b92915050565b600060208284031215613bf857613bf7614a7b565b5b6000613c0684828501613a9d565b91505092915050565b60008060408385031215613c2657613c25614a7b565b5b6000613c3485828601613a9d565b9250506020613c4585828601613a9d565b9150509250929050565b600080600060608486031215613c6857613c67614a7b565b5b6000613c7686828701613a9d565b9350506020613c8786828701613a9d565b9250506040613c9886828701613bb8565b9150509250925092565b60008060008060808587031215613cbc57613cbb614a7b565b5b6000613cca87828801613a9d565b9450506020613cdb87828801613a9d565b9350506040613cec87828801613bb8565b925050606085013567ffffffffffffffff811115613d0d57613d0c614a76565b5b613d1987828801613b47565b91505092959194509250565b60008060408385031215613d3c57613d3b614a7b565b5b6000613d4a85828601613a9d565b9250506020613d5b85828601613b08565b9150509250929050565b60008060408385031215613d7c57613d7b614a7b565b5b6000613d8a85828601613a9d565b9250506020613d9b85828601613bb8565b9150509250929050565b60008060208385031215613dbc57613dbb614a7b565b5b600083013567ffffffffffffffff811115613dda57613dd9614a76565b5b613de685828601613ab2565b92509250509250929050565b600060208284031215613e0857613e07614a7b565b5b6000613e1684828501613b1d565b91505092915050565b600060208284031215613e3557613e34614a7b565b5b6000613e4384828501613b32565b91505092915050565b600060208284031215613e6257613e61614a7b565b5b600082013567ffffffffffffffff811115613e8057613e7f614a76565b5b613e8c84828501613b75565b91505092915050565b600060208284031215613eab57613eaa614a7b565b5b6000613eb984828501613ba3565b91505092915050565b60008060408385031215613ed957613ed8614a7b565b5b6000613ee785828601613ba3565b9250506020613ef885828601613a9d565b9150509250929050565b600060208284031215613f1857613f17614a7b565b5b6000613f2684828501613bb8565b91505092915050565b600060208284031215613f4557613f44614a7b565b5b6000613f5384828501613bcd565b91505092915050565b600080600060408486031215613f7557613f74614a7b565b5b6000613f8386828701613bcd565b935050602084013567ffffffffffffffff811115613fa457613fa3614a76565b5b613fb086828701613ab2565b92509250509250925092565b613fc58161479f565b82525050565b613fd4816147b1565b82525050565b6000613fe582614604565b613fef818561461a565b9350613fff81856020860161483d565b61400881614a80565b840191505092915050565b600061401e8261460f565b6140288185614636565b935061403881856020860161483d565b61404181614a80565b840191505092915050565b60006140578261460f565b6140618185614647565b935061407181856020860161483d565b80840191505092915050565b6000815461408a81614870565b6140948186614647565b945060018216600081146140af57600181146140c0576140f3565b60ff198316865281860193506140f3565b6140c9856145ef565b60005b838110156140eb578154818901526001820191506020810190506140cc565b838801955050505b50505092915050565b6000614109601383614636565b915061411482614a91565b602082019050919050565b600061412c600783614636565b915061413782614aba565b602082019050919050565b600061414f602683614636565b915061415a82614ae3565b604082019050919050565b6000614172601a83614636565b915061417d82614b32565b602082019050919050565b6000614195602283614636565b91506141a082614b5b565b604082019050919050565b60006141b8601783614636565b91506141c382614baa565b602082019050919050565b60006141db602083614636565b91506141e682614bd3565b602082019050919050565b60006141fe601783614636565b915061420982614bfc565b602082019050919050565b6000614221602f83614636565b915061422c82614c25565b604082019050919050565b600061424460008361462b565b915061424f82614c74565b600082019050919050565b6000614267601883614636565b915061427282614c77565b602082019050919050565b600061428a601f83614636565b915061429582614ca0565b602082019050919050565b6142a9816147e9565b82525050565b6142b881614817565b82525050565b6142c781614821565b82525050565b60006142d9828661404c565b91506142e5828561404c565b91506142f1828461407d565b9150819050949350505050565b600061430982614237565b9150819050919050565b60006020820190506143286000830184613fbc565b92915050565b60006080820190506143436000830187613fbc565b6143506020830186613fbc565b61435d60408301856142af565b818103606083015261436f8184613fda565b905095945050505050565b600060208201905061438f6000830184613fcb565b92915050565b600060208201905081810360008301526143af8184614013565b905092915050565b600060208201905081810360008301526143d0816140fc565b9050919050565b600060208201905081810360008301526143f08161411f565b9050919050565b6000602082019050818103600083015261441081614142565b9050919050565b6000602082019050818103600083015261443081614165565b9050919050565b6000602082019050818103600083015261445081614188565b9050919050565b60006020820190508181036000830152614470816141ab565b9050919050565b60006020820190508181036000830152614490816141ce565b9050919050565b600060208201905081810360008301526144b0816141f1565b9050919050565b600060208201905081810360008301526144d081614214565b9050919050565b600060208201905081810360008301526144f08161425a565b9050919050565b600060208201905081810360008301526145108161427d565b9050919050565b600060208201905061452c60008301846142a0565b92915050565b600060208201905061454760008301846142af565b92915050565b600060208201905061456260008301846142be565b92915050565b6000614572614583565b905061457e82826148a2565b919050565b6000604051905090565b600067ffffffffffffffff8211156145a8576145a7614a33565b5b6145b182614a80565b9050602081019050919050565b600067ffffffffffffffff8211156145d9576145d8614a33565b5b6145e282614a80565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061465d826147e9565b9150614668836147e9565b92508261ffff0382111561467f5761467e614977565b5b828201905092915050565b600061469582614817565b91506146a083614817565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146d5576146d4614977565b5b828201905092915050565b60006146eb82614817565b91506146f683614817565b925082614706576147056149a6565b5b828204905092915050565b600061471c82614817565b915061472783614817565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147605761475f614977565b5b828202905092915050565b600061477682614817565b915061478183614817565b92508282101561479457614793614977565b5b828203905092915050565b60006147aa826147f7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561485b578082015181840152602081019050614840565b8381111561486a576000848401525b50505050565b6000600282049050600182168061488857607f821691505b6020821081141561489c5761489b6149d5565b5b50919050565b6148ab82614a80565b810181811067ffffffffffffffff821117156148ca576148c9614a33565b5b80604052505050565b60006148de82614817565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561491157614910614977565b5b600182019050919050565b600061492782614821565b915060ff82141561493b5761493a614977565b5b600182019050919050565b600061495182614817565b915061495c83614817565b92508261496c5761496b6149a6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45786365646573206d617820737570706c792e00000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f57686974656c697374206d696e74696e67206973206f76657221000000000000600082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f742077686974656c6973746564000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b614cd28161479f565b8114614cdd57600080fd5b50565b614ce9816147b1565b8114614cf457600080fd5b50565b614d00816147bd565b8114614d0b57600080fd5b50565b614d17816147e9565b8114614d2257600080fd5b50565b614d2e81614817565b8114614d3957600080fd5b50565b614d4581614821565b8114614d5057600080fd5b5056fea26469706673582212205f21464413f6eed61ea5dbdad554b0ee4cd6f876dcdbd6214ca9d432e834077864736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000014426f7265642041706520416c70686120436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442414143000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Bored Ape Alpha Club
Arg [1] : _tokenSymbol (string): BAAC
Arg [2] : _hiddenMetadataUri (string):

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [4] : 426f7265642041706520416c70686120436c7562000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4241414300000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47015:6529:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27339:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49885:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30452:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31955:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50495:75;;;;;;;;;;;;;:::i;:::-;;31518:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52479:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47229:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26588:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47449:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32820:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49070:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52589:91;;;;;;;;;;;;;:::i;:::-;;47806:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52767:70;;;;;;;;;;;;;:::i;:::-;;52961:475;;;;;;;;;;;;;:::i;:::-;;33061:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52686:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50689:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47693:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47634:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30260:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27708:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46161:103;;;;;;;;;;;;;:::i;:::-;;52372:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47601:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51259:1107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45509:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50835:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51043:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47267:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47356:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30621:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47496:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48061:1003;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32231:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47664:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52843:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33317:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49997:490;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49402:472;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50574:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47321:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47748:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32589:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47189:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46419:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47399:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27339:305;27441:4;27493:25;27478:40;;;:11;:40;;;;:105;;;;27550:33;27535:48;;;:11;:48;;;;27478:105;:158;;;;27600:36;27624:11;27600:23;:36::i;:::-;27478:158;27458:178;;27339:305;;;:::o;49885:97::-;45740:12;:10;:12::i;:::-;45729:23;;:7;:5;:7::i;:::-;:23;;;45721:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;49966:10:::1;49954:9;;:22;;;;;;;;;;;;;;;;;;49885:97:::0;:::o;30452:100::-;30506:13;30539:5;30532:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30452:100;:::o;31955:204::-;32023:7;32048:16;32056:7;32048;:16::i;:::-;32043:64;;32073:34;;;;;;;;;;;;;;32043:64;32127:15;:24;32143:7;32127:24;;;;;;;;;;;;;;;;;;;;;32120:31;;31955:204;;;:::o;50495:75::-;45740:12;:10;:12::i;:::-;45729:23;;:7;:5;:7::i;:::-;:23;;;45721:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50556:8:::1;;;;;;;;;;;50555:9;50544:8;;:20;;;;;;;;;;;;;;;;;;50495:75::o:0;31518:371::-;31591:13;31607:24;31623:7;31607:15;:24::i;:::-;31591:40;;31652:5;31646:11;;:2;:11;;;31642:48;;;31666:24;;;;;;;;;;;;;;31642:48;31723:5;31707:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31733:37;31750:5;31757:12;:10;:12::i;:::-;31733:16;:37::i;:::-;31732:38;31707:63;31703:138;;;31794:35;;;;;;;;;;;;;;31703:138;31853:28;31862:2;31866:7;31875:5;31853:8;:28::i;:::-;31580:309;31518:371;;:::o;52479:102::-;45740:12;:10;:12::i;:::-;45729:23;;:7;:5;:7::i;:::-;:23;;;45721:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52565:10:::1;52553:9;:22;;;;;;;;;;;;:::i;:::-;;52479:102:::0;:::o;47229:33::-;;;;:::o;26588:303::-;26632:7;26857:15;:13;:15::i;:::-;26842:12;;26826:13;;:28;:46;26819:53;;26588:303;:::o;47449:39::-;;;;:::o;32820:170::-;32954:28;32964:4;32970:2;32974:7;32954:9;:28::i;:::-;32820:170;;;:::o;49070:326::-;45740:12;:10;:12::i;:::-;45729:23;;:7;:5;:7::i;:::-;:23;;;45721:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;49153:18:::1;49181:13;:11;:13::i;:::-;49153:42;;49239:9;;;;;;;;;;;49210:38;;49224:11;49210;:25;;;;:::i;:::-;:38;;;;49202:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;49280:34;49290:9;49302:11;49280:34;;:9;:34::i;:::-;49322:18;;;49348:16;;;49372:18;;;49145:251;49070:326:::0;;:::o;52589:91::-;45740:12;:10;:12::i;:::-;45729:23;;:7;:5;:7::i;:::-;:23;;;45721:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52646:6:::1;;;;;;;;;;;52645:7;52636:6;;:16;;;;;;;;;;;;;;;;;;52670:4;52659:8;;:15;;;;;;;;;;;;;;;;;;52589:91::o:0;47806:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;52767:70::-;45740:12;:10;:12::i;:::-;45729:23;;:7;:5;:7::i;:::-;:23;;;45721:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52826:6:::1;;;;;;;;;;;52825:7;52816:6;;:16;;;;;;;;;;;;;;;;;;52767:70::o:0;52961:475::-;45740:12;:10;:12::i;:::-;45729:23;;:7;:5;:7::i;:::-;:23;;;45721:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1986:1:::1;2584:7;;:19;;2576:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1986:1;2717:7;:18;;;;53258:7:::2;53279;:5;:7::i;:::-;53271:21;;53300;53271:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53257:69;;;53341:2;53333:11;;;::::0;::::2;;53011:425;1942:1:::1;2896:7;:22;;;;52961:475::o:0;33061:185::-;33199:39;33216:4;33222:2;33226:7;33199:39;;;;;;;;;;;;:16;:39::i;:::-;33061:185;;;:::o;52686:76::-;45740:12;:10;:12::i;:::-;45729:23;;:7;:5;:7::i;:::-;:23;;;45721:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52749:5:::1;52742:4;:12;;;;52686:76:::0;:::o;50689:134::-;45740:12;:10;:12::i;:::-;45729:23;;:7;:5;:7::i;:::-;:23;;;45721:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50792:6:::1;50763:26;;:35;;;;;;;;;;;;;;;;;;50804:13;;;50689:134:::0;:::o;47693:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;47634:25::-;;;;;;;;;;;;;:::o;30260:125::-;30324:7;30351:21;30364:7;30351:12;:21::i;:::-;:26;;;30344:33;;30260:125;;;:::o;27708:206::-;27772:7;27813:1;27796:19;;:5;:19;;;27792:60;;;27824:28;;;;;;;;;;;;;;27792:60;27878:12;:19;27891:5;27878:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27870:36;;27863:43;;27708:206;;;:::o;46161:103::-;45740:12;:10;:12::i;:::-;45729:23;;:7;:5;:7::i;:::-;:23;;;45721:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;46226:30:::1;46253:1;46226:18;:30::i;:::-;46161:103::o:0;52372:102::-;45740:12;:10;:12::i;:::-;45729:23;;:7;:5;:7::i;:::-;:23;;;45721:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52458:10:::1;52446:9;:22;;;;;;;;;;;;:::i;:::-;;52372:102:::0;:::o;47601:28::-;;;;;;;;;;;;;:::o;51259:1107::-;51353:8;;;;;;;;;;;51352:9;51344:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;51408:13;:25;51422:10;51408:25;;;;;;;;;;;;;;;;;;;;;;;;;51400:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;51521:1;51509:9;;;;;;;;;;;:13;;;;:::i;:::-;51479:43;;51495:11;51479:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:43;51471:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51583:14;;51569:11;51546:20;;:34;;;;:::i;:::-;:51;51543:777;;;51664:9;51648:11;51632:13;;:27;;;;:::i;:::-;51631:42;;51609:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;51543:777;;;51798:26;;;;;;;;;;;51760:64;;51784:11;51760:21;51770:10;51760:9;:21::i;:::-;:35;;;;:::i;:::-;:64;51756:557;;;51892:9;51876:11;51860:13;;:27;;;;:::i;:::-;51859:42;;51837:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;52001:18;;;;;;;;;;;51986:33;;:11;:33;;51964:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;51756:557;;;52155:26;;;;;;;;;;;52140:41;;:11;:41;;52114:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;52290:11;52266:20;;:35;;;;;;;:::i;:::-;;;;;;;;51756:557;51543:777;52326:34;52336:10;52348:11;52326:9;:34::i;:::-;51259:1107;:::o;45509:87::-;45555:7;45582:6;;;;;;;;;;;45575:13;;45509:87;:::o;50835:200::-;45740:12;:10;:12::i;:::-;45729:23;;:7;:5;:7::i;:::-;:23;;;45721:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50928:7:::1;50924:101;50945:7;;:14;;50941:1;:18;;;50924:101;;;51009:4;50981:13;:25;50995:7;;51003:1;50995:10;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;50981:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;50961:3;;;;;:::i;:::-;;;;50924:101;;;;50835:200:::0;;:::o;51043:204::-;45740:12;:10;:12::i;:::-;45729:23;;:7;:5;:7::i;:::-;:23;;;45721:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51141:7:::1;51137:103;51158:7;;:14;;51154:1;:18;;;51137:103;;;51223:5;51195:13;:25;51209:7;;51217:1;51209:10;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;51195:25;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;51174:3;;;;;:::i;:::-;;;;51137:103;;;;51043:204:::0;;:::o;47267:42::-;;;;:::o;47356:36::-;;;;;;;;;;;;;:::o;30621:104::-;30677:13;30710:7;30703:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30621:104;:::o;47496:37::-;;;;:::o;48061:1003::-;48146:6;;;;;;;;;;;48145:7;48137:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;48237:1;48225:9;;;;;;;;;;;:13;;;;:::i;:::-;48195:43;;48211:11;48195:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:43;48187:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;48299:14;;48285:11;48262:20;;:34;;;;:::i;:::-;:51;48259:759;;;48371:9;48355:11;48348:4;;:18;;;;:::i;:::-;48347:33;;48325:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;48259:759;;;48505:26;;;;;;;;;;;48467:64;;48491:11;48467:21;48477:10;48467:9;:21::i;:::-;:35;;;;:::i;:::-;:64;48463:548;;;48590:9;48574:11;48567:4;;:18;;;;:::i;:::-;48566:33;;48544:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;48699:18;;;;;;;;;;;48684:33;;:11;:33;;48662:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;48463:548;;;48853:26;;;;;;;;;;;48838:41;;:11;:41;;48812:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;48988:11;48964:20;;:35;;;;;;;:::i;:::-;;;;;;;;48463:548;48259:759;49024:34;49034:10;49046:11;49024:9;:34::i;:::-;48061:1003;:::o;32231:287::-;32342:12;:10;:12::i;:::-;32330:24;;:8;:24;;;32326:54;;;32363:17;;;;;;;;;;;;;;32326:54;32438:8;32393:18;:32;32412:12;:10;:12::i;:::-;32393:32;;;;;;;;;;;;;;;:42;32426:8;32393:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32491:8;32462:48;;32477:12;:10;:12::i;:::-;32462:48;;;32501:8;32462:48;;;;;;:::i;:::-;;;;;;;;32231:287;;:::o;47664:24::-;;;;;;;;;;;;;:::o;52843:107::-;45740:12;:10;:12::i;:::-;45729:23;;:7;:5;:7::i;:::-;:23;;;45721:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52936:6:::1;52915:18;;:27;;;;;;;;;;;;;;;;;;52843:107:::0;:::o;33317:369::-;33484:28;33494:4;33500:2;33504:7;33484:9;:28::i;:::-;33527:15;:2;:13;;;:15::i;:::-;:76;;;;;33547:56;33578:4;33584:2;33588:7;33597:5;33547:30;:56::i;:::-;33546:57;33527:76;33523:156;;;33627:40;;;;;;;;;;;;;;33523:156;33317:369;;;;:::o;49997:490::-;50096:13;50137:17;50145:8;50137:7;:17::i;:::-;50121:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50247:5;50237:15;;:6;;;;;;;;;;;:15;;;50232:50;;;50269:9;50262:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50232:50;50296:28;50327:10;:8;:10::i;:::-;50296:41;;50382:1;50357:14;50351:28;:32;:130;;;;;;;;;;;;;;;;;50419:14;50435:19;:8;:17;:19::i;:::-;50456:9;50402:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50351:130;50344:137;;;49997:490;;;;:::o;49402:472::-;45740:12;:10;:12::i;:::-;45729:23;;:7;:5;:7::i;:::-;:23;;;45721:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;49501:18:::1;49529:13;:11;:13::i;:::-;49501:42;;49551:16;49592:9;;:16;;49572:17;:36;;;;;;:::i;:::-;49551:57;;49652:9;;;;;;;;;;;49623:38;;49637:11;49623;:25;;;;;;:::i;:::-;:38;;49615:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;49698:9;49693:116;49717:9;;:16;;49713:1;:20;49693:116;;;49755:42;49765:9;;49775:1;49765:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;49779:17;49755:42;;:9;:42::i;:::-;49735:3;;;;;:::i;:::-;;;;49693:116;;;;49818:24;;;49850:18;;;49493:381;;49402:472:::0;;;:::o;50574:106::-;45740:12;:10;:12::i;:::-;45729:23;;:7;:5;:7::i;:::-;:23;;;45721:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50650:5:::1;50634:13;:21;;;;50662:12;;;50574:106:::0;:::o;47321:30::-;;;;;;;;;;;;;:::o;47748:53::-;;;;;;;;;;;;;;;;;;;;;;:::o;32589:164::-;32686:4;32710:18;:25;32729:5;32710:25;;;;;;;;;;;;;;;:35;32736:8;32710:35;;;;;;;;;;;;;;;;;;;;;;;;;32703:42;;32589:164;;;;:::o;47189:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46419:201::-;45740:12;:10;:12::i;:::-;45729:23;;:7;:5;:7::i;:::-;:23;;;45721:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;46528:1:::1;46508:22;;:8;:22;;;;46500:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;46584:28;46603:8;46584:18;:28::i;:::-;46419:201:::0;:::o;47399:43::-;;;;;;;;;;;;;:::o;17264:157::-;17349:4;17388:25;17373:40;;;:11;:40;;;;17366:47;;17264:157;;;:::o;5734:98::-;5787:7;5814:10;5807:17;;5734:98;:::o;33941:187::-;33998:4;34041:7;34022:15;:13;:15::i;:::-;:26;;:53;;;;;34062:13;;34052:7;:23;34022:53;:98;;;;;34093:11;:20;34105:7;34093:20;;;;;;;;;;;:27;;;;;;;;;;;;34092:28;34022:98;34015:105;;33941:187;;;:::o;42111:196::-;42253:2;42226:15;:24;42242:7;42226:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42291:7;42287:2;42271:28;;42280:5;42271:28;;;;;;;;;;;;42111:196;;;:::o;26362:92::-;26418:7;26362:92;:::o;37054:2130::-;37169:35;37207:21;37220:7;37207:12;:21::i;:::-;37169:59;;37267:4;37245:26;;:13;:18;;;:26;;;37241:67;;37280:28;;;;;;;;;;;;;;37241:67;37321:22;37363:4;37347:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;37384:36;37401:4;37407:12;:10;:12::i;:::-;37384:16;:36::i;:::-;37347:73;:126;;;;37461:12;:10;:12::i;:::-;37437:36;;:20;37449:7;37437:11;:20::i;:::-;:36;;;37347:126;37321:153;;37492:17;37487:66;;37518:35;;;;;;;;;;;;;;37487:66;37582:1;37568:16;;:2;:16;;;37564:52;;;37593:23;;;;;;;;;;;;;;37564:52;37629:43;37651:4;37657:2;37661:7;37670:1;37629:21;:43::i;:::-;37737:35;37754:1;37758:7;37767:4;37737:8;:35::i;:::-;38098:1;38068:12;:18;38081:4;38068:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38142:1;38114:12;:16;38127:2;38114:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38160:31;38194:11;:20;38206:7;38194:20;;;;;;;;;;;38160:54;;38245:2;38229:8;:13;;;:18;;;;;;;;;;;;;;;;;;38295:15;38262:8;:23;;;:49;;;;;;;;;;;;;;;;;;38563:19;38595:1;38585:7;:11;38563:33;;38611:31;38645:11;:24;38657:11;38645:24;;;;;;;;;;;38611:58;;38713:1;38688:27;;:8;:13;;;;;;;;;;;;:27;;;38684:384;;;38898:13;;38883:11;:28;38879:174;;38952:4;38936:8;:13;;;:20;;;;;;;;;;;;;;;;;;39005:13;:28;;;38979:8;:23;;;:54;;;;;;;;;;;;;;;;;;38879:174;38684:384;38043:1036;;;39115:7;39111:2;39096:27;;39105:4;39096:27;;;;;;;;;;;;39134:42;39155:4;39161:2;39165:7;39174:1;39134:20;:42::i;:::-;37158:2026;;37054:2130;;;:::o;34136:104::-;34205:27;34215:2;34219:8;34205:27;;;;;;;;;;;;:9;:27::i;:::-;34136:104;;:::o;29089:1109::-;29151:21;;:::i;:::-;29185:12;29200:7;29185:22;;29268:4;29249:15;:13;:15::i;:::-;:23;;:47;;;;;29283:13;;29276:4;:20;29249:47;29245:886;;;29317:31;29351:11;:17;29363:4;29351:17;;;;;;;;;;;29317:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29392:9;:16;;;29387:729;;29463:1;29437:28;;:9;:14;;;:28;;;29433:101;;29501:9;29494:16;;;;;;29433:101;29836:261;29843:4;29836:261;;;29876:6;;;;;;;;29921:11;:17;29933:4;29921:17;;;;;;;;;;;29909:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29995:1;29969:28;;:9;:14;;;:28;;;29965:109;;30037:9;30030:16;;;;;;29965:109;29836:261;;;29387:729;29298:833;29245:886;30159:31;;;;;;;;;;;;;;29089:1109;;;;:::o;46780:191::-;46854:16;46873:6;;;;;;;;;;;46854:25;;46899:8;46890:6;;:17;;;;;;;;;;;;;;;;;;46954:8;46923:40;;46944:8;46923:40;;;;;;;;;;;;46843:128;46780:191;:::o;7181:326::-;7241:4;7498:1;7476:7;:19;;;:23;7469:30;;7181:326;;;:::o;42799:667::-;42962:4;42999:2;42983:36;;;43020:12;:10;:12::i;:::-;43034:4;43040:7;43049:5;42983:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42979:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43234:1;43217:6;:13;:18;43213:235;;;43263:40;;;;;;;;;;;;;;43213:235;43406:6;43400:13;43391:6;43387:2;43383:15;43376:38;42979:480;43112:45;;;43102:55;;;:6;:55;;;;43095:62;;;42799:667;;;;;;:::o;53444:97::-;53497:13;53526:9;53519:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53444:97;:::o;3296:723::-;3352:13;3582:1;3573:5;:10;3569:53;;;3600:10;;;;;;;;;;;;;;;;;;;;;3569:53;3632:12;3647:5;3632:20;;3663:14;3688:78;3703:1;3695:4;:9;3688:78;;3721:8;;;;;:::i;:::-;;;;3752:2;3744:10;;;;;:::i;:::-;;;3688:78;;;3776:19;3808:6;3798:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3776:39;;3826:154;3842:1;3833:5;:10;3826:154;;3870:1;3860:11;;;;;:::i;:::-;;;3937:2;3929:5;:10;;;;:::i;:::-;3916:2;:24;;;;:::i;:::-;3903:39;;3886:6;3893;3886:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3966:2;3957:11;;;;;:::i;:::-;;;3826:154;;;4004:6;3990:21;;;;;3296:723;;;;:::o;44114:159::-;;;;;:::o;44932:158::-;;;;;:::o;34603:163::-;34726:32;34732:2;34736:8;34746:5;34753:4;34726:5;:32::i;:::-;34603:163;;;:::o;35025:1775::-;35164:20;35187:13;;35164:36;;35229:1;35215:16;;:2;:16;;;35211:48;;;35240:19;;;;;;;;;;;;;;35211:48;35286:1;35274:8;:13;35270:44;;;35296:18;;;;;;;;;;;;;;35270:44;35327:61;35357:1;35361:2;35365:12;35379:8;35327:21;:61::i;:::-;35700:8;35665:12;:16;35678:2;35665:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35764:8;35724:12;:16;35737:2;35724:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35823:2;35790:11;:25;35802:12;35790:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35890:15;35840:11;:25;35852:12;35840:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35923:20;35946:12;35923:35;;35973:11;36002:8;35987:12;:23;35973:37;;36031:4;:23;;;;;36039:15;:2;:13;;;:15::i;:::-;36031:23;36027:641;;;36075:314;36131:12;36127:2;36106:38;;36123:1;36106:38;;;;;;;;;;;;36172:69;36211:1;36215:2;36219:14;;;;;;36235:5;36172:30;:69::i;:::-;36167:174;;36277:40;;;;;;;;;;;;;;36167:174;36384:3;36368:12;:19;;36075:314;;36470:12;36453:13;;:29;36449:43;;36484:8;;;36449:43;36027:641;;;36533:120;36589:14;;;;;;36585:2;36564:40;;36581:1;36564:40;;;;;;;;;;;;36648:3;36632:12;:19;;36533:120;;36027:641;36698:12;36682:13;:28;;;;35640:1082;;36732:60;36761:1;36765:2;36769:12;36783:8;36732:20;:60::i;:::-;35153:1647;35025: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;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:137::-;2768:5;2806:6;2793:20;2784:29;;2822:32;2848:5;2822:32;:::i;:::-;2723:137;;;;:::o;2866:139::-;2912:5;2950:6;2937:20;2928:29;;2966:33;2993:5;2966:33;:::i;:::-;2866:139;;;;:::o;3011:135::-;3055:5;3093:6;3080:20;3071:29;;3109:31;3134:5;3109:31;:::i;:::-;3011:135;;;;:::o;3152:329::-;3211:6;3260:2;3248:9;3239:7;3235:23;3231:32;3228:119;;;3266:79;;:::i;:::-;3228:119;3386:1;3411:53;3456:7;3447:6;3436:9;3432:22;3411:53;:::i;:::-;3401:63;;3357:117;3152:329;;;;:::o;3487:474::-;3555:6;3563;3612:2;3600:9;3591:7;3587:23;3583:32;3580:119;;;3618:79;;:::i;:::-;3580:119;3738:1;3763:53;3808:7;3799:6;3788:9;3784:22;3763:53;:::i;:::-;3753:63;;3709:117;3865:2;3891:53;3936:7;3927:6;3916:9;3912:22;3891:53;:::i;:::-;3881:63;;3836:118;3487:474;;;;;:::o;3967:619::-;4044:6;4052;4060;4109:2;4097:9;4088:7;4084:23;4080:32;4077:119;;;4115:79;;:::i;:::-;4077:119;4235:1;4260:53;4305:7;4296:6;4285:9;4281:22;4260:53;:::i;:::-;4250:63;;4206:117;4362:2;4388:53;4433:7;4424:6;4413:9;4409:22;4388:53;:::i;:::-;4378:63;;4333:118;4490:2;4516:53;4561:7;4552:6;4541:9;4537:22;4516:53;:::i;:::-;4506:63;;4461:118;3967:619;;;;;:::o;4592:943::-;4687:6;4695;4703;4711;4760:3;4748:9;4739:7;4735:23;4731:33;4728:120;;;4767:79;;:::i;:::-;4728:120;4887:1;4912:53;4957:7;4948:6;4937:9;4933:22;4912:53;:::i;:::-;4902:63;;4858:117;5014:2;5040:53;5085:7;5076:6;5065:9;5061:22;5040:53;:::i;:::-;5030:63;;4985:118;5142:2;5168:53;5213:7;5204:6;5193:9;5189:22;5168:53;:::i;:::-;5158:63;;5113:118;5298:2;5287:9;5283:18;5270:32;5329:18;5321:6;5318:30;5315:117;;;5351:79;;:::i;:::-;5315:117;5456:62;5510:7;5501:6;5490:9;5486:22;5456:62;:::i;:::-;5446:72;;5241:287;4592:943;;;;;;;:::o;5541:468::-;5606:6;5614;5663:2;5651:9;5642:7;5638:23;5634:32;5631:119;;;5669:79;;:::i;:::-;5631:119;5789:1;5814:53;5859:7;5850:6;5839:9;5835:22;5814:53;:::i;:::-;5804:63;;5760:117;5916:2;5942:50;5984:7;5975:6;5964:9;5960:22;5942:50;:::i;:::-;5932:60;;5887:115;5541:468;;;;;:::o;6015:474::-;6083:6;6091;6140:2;6128:9;6119:7;6115:23;6111:32;6108:119;;;6146:79;;:::i;:::-;6108:119;6266:1;6291:53;6336:7;6327:6;6316:9;6312:22;6291:53;:::i;:::-;6281:63;;6237:117;6393:2;6419:53;6464:7;6455:6;6444:9;6440:22;6419:53;:::i;:::-;6409:63;;6364:118;6015:474;;;;;:::o;6495:559::-;6581:6;6589;6638:2;6626:9;6617:7;6613:23;6609:32;6606:119;;;6644:79;;:::i;:::-;6606:119;6792:1;6781:9;6777:17;6764:31;6822:18;6814:6;6811:30;6808:117;;;6844:79;;:::i;:::-;6808:117;6957:80;7029:7;7020:6;7009:9;7005:22;6957:80;:::i;:::-;6939:98;;;;6735:312;6495:559;;;;;:::o;7060:327::-;7118:6;7167:2;7155:9;7146:7;7142:23;7138:32;7135:119;;;7173:79;;:::i;:::-;7135:119;7293:1;7318:52;7362:7;7353:6;7342:9;7338:22;7318:52;:::i;:::-;7308:62;;7264:116;7060:327;;;;:::o;7393:349::-;7462:6;7511:2;7499:9;7490:7;7486:23;7482:32;7479:119;;;7517:79;;:::i;:::-;7479:119;7637:1;7662:63;7717:7;7708:6;7697:9;7693:22;7662:63;:::i;:::-;7652:73;;7608:127;7393:349;;;;:::o;7748:509::-;7817:6;7866:2;7854:9;7845:7;7841:23;7837:32;7834:119;;;7872:79;;:::i;:::-;7834:119;8020:1;8009:9;8005:17;7992:31;8050:18;8042:6;8039:30;8036:117;;;8072:79;;:::i;:::-;8036:117;8177:63;8232:7;8223:6;8212:9;8208:22;8177:63;:::i;:::-;8167:73;;7963:287;7748:509;;;;:::o;8263:327::-;8321:6;8370:2;8358:9;8349:7;8345:23;8341:32;8338:119;;;8376:79;;:::i;:::-;8338:119;8496:1;8521:52;8565:7;8556:6;8545:9;8541:22;8521:52;:::i;:::-;8511:62;;8467:116;8263:327;;;;:::o;8596:472::-;8663:6;8671;8720:2;8708:9;8699:7;8695:23;8691:32;8688:119;;;8726:79;;:::i;:::-;8688:119;8846:1;8871:52;8915:7;8906:6;8895:9;8891:22;8871:52;:::i;:::-;8861:62;;8817:116;8972:2;8998:53;9043:7;9034:6;9023:9;9019:22;8998:53;:::i;:::-;8988:63;;8943:118;8596:472;;;;;:::o;9074:329::-;9133:6;9182:2;9170:9;9161:7;9157:23;9153:32;9150:119;;;9188:79;;:::i;:::-;9150:119;9308:1;9333:53;9378:7;9369:6;9358:9;9354:22;9333:53;:::i;:::-;9323:63;;9279:117;9074:329;;;;:::o;9409:325::-;9466:6;9515:2;9503:9;9494:7;9490:23;9486:32;9483:119;;;9521:79;;:::i;:::-;9483:119;9641:1;9666:51;9709:7;9700:6;9689:9;9685:22;9666:51;:::i;:::-;9656:61;;9612:115;9409:325;;;;:::o;9740:700::-;9833:6;9841;9849;9898:2;9886:9;9877:7;9873:23;9869:32;9866:119;;;9904:79;;:::i;:::-;9866:119;10024:1;10049:51;10092:7;10083:6;10072:9;10068:22;10049:51;:::i;:::-;10039:61;;9995:115;10177:2;10166:9;10162:18;10149:32;10208:18;10200:6;10197:30;10194:117;;;10230:79;;:::i;:::-;10194:117;10343:80;10415:7;10406:6;10395:9;10391:22;10343:80;:::i;:::-;10325:98;;;;10120:313;9740:700;;;;;:::o;10446:118::-;10533:24;10551:5;10533:24;:::i;:::-;10528:3;10521:37;10446:118;;:::o;10570:109::-;10651:21;10666:5;10651:21;:::i;:::-;10646:3;10639:34;10570:109;;:::o;10685:360::-;10771:3;10799:38;10831:5;10799:38;:::i;:::-;10853:70;10916:6;10911:3;10853:70;:::i;:::-;10846:77;;10932:52;10977:6;10972:3;10965:4;10958:5;10954:16;10932:52;:::i;:::-;11009:29;11031:6;11009:29;:::i;:::-;11004:3;11000:39;10993:46;;10775:270;10685:360;;;;:::o;11051:364::-;11139:3;11167:39;11200:5;11167:39;:::i;:::-;11222:71;11286:6;11281:3;11222:71;:::i;:::-;11215:78;;11302:52;11347:6;11342:3;11335:4;11328:5;11324:16;11302:52;:::i;:::-;11379:29;11401:6;11379:29;:::i;:::-;11374:3;11370:39;11363:46;;11143:272;11051:364;;;;:::o;11421:377::-;11527:3;11555:39;11588:5;11555:39;:::i;:::-;11610:89;11692:6;11687:3;11610:89;:::i;:::-;11603:96;;11708:52;11753:6;11748:3;11741:4;11734:5;11730:16;11708:52;:::i;:::-;11785:6;11780:3;11776:16;11769:23;;11531:267;11421:377;;;;:::o;11828:845::-;11931:3;11968:5;11962:12;11997:36;12023:9;11997:36;:::i;:::-;12049:89;12131:6;12126:3;12049:89;:::i;:::-;12042:96;;12169:1;12158:9;12154:17;12185:1;12180:137;;;;12331:1;12326:341;;;;12147:520;;12180:137;12264:4;12260:9;12249;12245:25;12240:3;12233:38;12300:6;12295:3;12291:16;12284:23;;12180:137;;12326:341;12393:38;12425:5;12393:38;:::i;:::-;12453:1;12467:154;12481:6;12478:1;12475:13;12467:154;;;12555:7;12549:14;12545:1;12540:3;12536:11;12529:35;12605:1;12596:7;12592:15;12581:26;;12503:4;12500:1;12496:12;12491:17;;12467:154;;;12650:6;12645:3;12641:16;12634:23;;12333:334;;12147:520;;11935:738;;11828:845;;;;:::o;12679:366::-;12821:3;12842:67;12906:2;12901:3;12842:67;:::i;:::-;12835:74;;12918:93;13007:3;12918:93;:::i;:::-;13036:2;13031:3;13027:12;13020:19;;12679:366;;;:::o;13051:365::-;13193:3;13214:66;13278:1;13273:3;13214:66;:::i;:::-;13207:73;;13289:93;13378:3;13289:93;:::i;:::-;13407:2;13402:3;13398:12;13391:19;;13051:365;;;:::o;13422:366::-;13564:3;13585:67;13649:2;13644:3;13585:67;:::i;:::-;13578:74;;13661:93;13750:3;13661:93;:::i;:::-;13779:2;13774:3;13770:12;13763:19;;13422:366;;;:::o;13794:::-;13936:3;13957:67;14021:2;14016:3;13957:67;:::i;:::-;13950:74;;14033:93;14122:3;14033:93;:::i;:::-;14151:2;14146:3;14142:12;14135:19;;13794:366;;;:::o;14166:::-;14308:3;14329:67;14393:2;14388:3;14329:67;:::i;:::-;14322:74;;14405:93;14494:3;14405:93;:::i;:::-;14523:2;14518:3;14514:12;14507:19;;14166:366;;;:::o;14538:::-;14680:3;14701:67;14765:2;14760:3;14701:67;:::i;:::-;14694:74;;14777:93;14866:3;14777:93;:::i;:::-;14895:2;14890:3;14886:12;14879:19;;14538:366;;;:::o;14910:::-;15052:3;15073:67;15137:2;15132:3;15073:67;:::i;:::-;15066:74;;15149:93;15238:3;15149:93;:::i;:::-;15267:2;15262:3;15258:12;15251:19;;14910:366;;;:::o;15282:::-;15424:3;15445:67;15509:2;15504:3;15445:67;:::i;:::-;15438:74;;15521:93;15610:3;15521:93;:::i;:::-;15639:2;15634:3;15630:12;15623:19;;15282:366;;;:::o;15654:::-;15796:3;15817:67;15881:2;15876:3;15817:67;:::i;:::-;15810:74;;15893:93;15982:3;15893:93;:::i;:::-;16011:2;16006:3;16002:12;15995:19;;15654:366;;;:::o;16026:398::-;16185:3;16206:83;16287:1;16282:3;16206:83;:::i;:::-;16199:90;;16298:93;16387:3;16298:93;:::i;:::-;16416:1;16411:3;16407:11;16400:18;;16026:398;;;:::o;16430:366::-;16572:3;16593:67;16657:2;16652:3;16593:67;:::i;:::-;16586:74;;16669:93;16758:3;16669:93;:::i;:::-;16787:2;16782:3;16778:12;16771:19;;16430:366;;;:::o;16802:::-;16944:3;16965:67;17029:2;17024:3;16965:67;:::i;:::-;16958:74;;17041:93;17130:3;17041:93;:::i;:::-;17159:2;17154:3;17150:12;17143:19;;16802:366;;;:::o;17174:115::-;17259:23;17276:5;17259:23;:::i;:::-;17254:3;17247:36;17174:115;;:::o;17295:118::-;17382:24;17400:5;17382:24;:::i;:::-;17377:3;17370:37;17295:118;;:::o;17419:112::-;17502:22;17518:5;17502:22;:::i;:::-;17497:3;17490:35;17419:112;;:::o;17537:589::-;17762:3;17784:95;17875:3;17866:6;17784:95;:::i;:::-;17777:102;;17896:95;17987:3;17978:6;17896:95;:::i;:::-;17889:102;;18008:92;18096:3;18087:6;18008:92;:::i;:::-;18001:99;;18117:3;18110:10;;17537:589;;;;;;:::o;18132:379::-;18316:3;18338:147;18481:3;18338:147;:::i;:::-;18331:154;;18502:3;18495:10;;18132:379;;;:::o;18517:222::-;18610:4;18648:2;18637:9;18633:18;18625:26;;18661:71;18729:1;18718:9;18714:17;18705:6;18661:71;:::i;:::-;18517:222;;;;:::o;18745:640::-;18940:4;18978:3;18967:9;18963:19;18955:27;;18992:71;19060:1;19049:9;19045:17;19036:6;18992:71;:::i;:::-;19073:72;19141:2;19130:9;19126:18;19117:6;19073:72;:::i;:::-;19155;19223:2;19212:9;19208:18;19199:6;19155:72;:::i;:::-;19274:9;19268:4;19264:20;19259:2;19248:9;19244:18;19237:48;19302:76;19373:4;19364:6;19302:76;:::i;:::-;19294:84;;18745:640;;;;;;;:::o;19391:210::-;19478:4;19516:2;19505:9;19501:18;19493:26;;19529:65;19591:1;19580:9;19576:17;19567:6;19529:65;:::i;:::-;19391:210;;;;:::o;19607:313::-;19720:4;19758:2;19747:9;19743:18;19735:26;;19807:9;19801:4;19797:20;19793:1;19782:9;19778:17;19771:47;19835:78;19908:4;19899:6;19835:78;:::i;:::-;19827:86;;19607:313;;;;:::o;19926:419::-;20092:4;20130:2;20119:9;20115:18;20107:26;;20179:9;20173:4;20169:20;20165:1;20154:9;20150:17;20143:47;20207:131;20333:4;20207:131;:::i;:::-;20199:139;;19926:419;;;:::o;20351:::-;20517:4;20555:2;20544:9;20540:18;20532:26;;20604:9;20598:4;20594:20;20590:1;20579:9;20575:17;20568:47;20632:131;20758:4;20632:131;:::i;:::-;20624:139;;20351:419;;;:::o;20776:::-;20942:4;20980:2;20969:9;20965:18;20957:26;;21029:9;21023:4;21019:20;21015:1;21004:9;21000:17;20993:47;21057:131;21183:4;21057:131;:::i;:::-;21049:139;;20776:419;;;:::o;21201:::-;21367:4;21405:2;21394:9;21390:18;21382:26;;21454:9;21448:4;21444:20;21440:1;21429:9;21425:17;21418:47;21482:131;21608:4;21482:131;:::i;:::-;21474:139;;21201:419;;;:::o;21626:::-;21792:4;21830:2;21819:9;21815:18;21807:26;;21879:9;21873:4;21869:20;21865:1;21854:9;21850:17;21843:47;21907:131;22033:4;21907:131;:::i;:::-;21899:139;;21626:419;;;:::o;22051:::-;22217:4;22255:2;22244:9;22240:18;22232:26;;22304:9;22298:4;22294:20;22290:1;22279:9;22275:17;22268:47;22332:131;22458:4;22332:131;:::i;:::-;22324:139;;22051:419;;;:::o;22476:::-;22642:4;22680:2;22669:9;22665:18;22657:26;;22729:9;22723:4;22719:20;22715:1;22704:9;22700:17;22693:47;22757:131;22883:4;22757:131;:::i;:::-;22749:139;;22476:419;;;:::o;22901:::-;23067:4;23105:2;23094:9;23090:18;23082:26;;23154:9;23148:4;23144:20;23140:1;23129:9;23125:17;23118:47;23182:131;23308:4;23182:131;:::i;:::-;23174:139;;22901:419;;;:::o;23326:::-;23492:4;23530:2;23519:9;23515:18;23507:26;;23579:9;23573:4;23569:20;23565:1;23554:9;23550:17;23543:47;23607:131;23733:4;23607:131;:::i;:::-;23599:139;;23326:419;;;:::o;23751:::-;23917:4;23955:2;23944:9;23940:18;23932:26;;24004:9;23998:4;23994:20;23990:1;23979:9;23975:17;23968:47;24032:131;24158:4;24032:131;:::i;:::-;24024:139;;23751:419;;;:::o;24176:::-;24342:4;24380:2;24369:9;24365:18;24357:26;;24429:9;24423:4;24419:20;24415:1;24404:9;24400:17;24393:47;24457:131;24583:4;24457:131;:::i;:::-;24449:139;;24176:419;;;:::o;24601:218::-;24692:4;24730:2;24719:9;24715:18;24707:26;;24743:69;24809:1;24798:9;24794:17;24785:6;24743:69;:::i;:::-;24601:218;;;;:::o;24825:222::-;24918:4;24956:2;24945:9;24941:18;24933:26;;24969:71;25037:1;25026:9;25022:17;25013:6;24969:71;:::i;:::-;24825:222;;;;:::o;25053:214::-;25142:4;25180:2;25169:9;25165:18;25157:26;;25193:67;25257:1;25246:9;25242:17;25233:6;25193:67;:::i;:::-;25053:214;;;;:::o;25273:129::-;25307:6;25334:20;;:::i;:::-;25324:30;;25363:33;25391:4;25383:6;25363:33;:::i;:::-;25273:129;;;:::o;25408:75::-;25441:6;25474:2;25468:9;25458:19;;25408:75;:::o;25489:307::-;25550:4;25640:18;25632:6;25629:30;25626:56;;;25662:18;;:::i;:::-;25626:56;25700:29;25722:6;25700:29;:::i;:::-;25692:37;;25784:4;25778;25774:15;25766:23;;25489:307;;;:::o;25802:308::-;25864:4;25954:18;25946:6;25943:30;25940:56;;;25976:18;;:::i;:::-;25940:56;26014:29;26036:6;26014:29;:::i;:::-;26006:37;;26098:4;26092;26088:15;26080:23;;25802:308;;;:::o;26116:141::-;26165:4;26188:3;26180:11;;26211:3;26208:1;26201:14;26245:4;26242:1;26232:18;26224:26;;26116:141;;;:::o;26263:98::-;26314:6;26348:5;26342:12;26332:22;;26263:98;;;:::o;26367:99::-;26419:6;26453:5;26447:12;26437:22;;26367:99;;;:::o;26472:168::-;26555:11;26589:6;26584:3;26577:19;26629:4;26624:3;26620:14;26605:29;;26472:168;;;;:::o;26646:147::-;26747:11;26784:3;26769:18;;26646:147;;;;:::o;26799:169::-;26883:11;26917:6;26912:3;26905:19;26957:4;26952:3;26948:14;26933:29;;26799:169;;;;:::o;26974:148::-;27076:11;27113:3;27098:18;;26974:148;;;;:::o;27128:242::-;27167:3;27186:19;27203:1;27186:19;:::i;:::-;27181:24;;27219:19;27236:1;27219:19;:::i;:::-;27214:24;;27312:1;27304:6;27300:14;27297:1;27294:21;27291:47;;;27318:18;;:::i;:::-;27291:47;27362:1;27359;27355:9;27348:16;;27128:242;;;;:::o;27376:305::-;27416:3;27435:20;27453:1;27435:20;:::i;:::-;27430:25;;27469:20;27487:1;27469:20;:::i;:::-;27464:25;;27623:1;27555:66;27551:74;27548:1;27545:81;27542:107;;;27629:18;;:::i;:::-;27542:107;27673:1;27670;27666:9;27659:16;;27376:305;;;;:::o;27687:185::-;27727:1;27744:20;27762:1;27744:20;:::i;:::-;27739:25;;27778:20;27796:1;27778:20;:::i;:::-;27773:25;;27817:1;27807:35;;27822:18;;:::i;:::-;27807:35;27864:1;27861;27857:9;27852:14;;27687:185;;;;:::o;27878:348::-;27918:7;27941:20;27959:1;27941:20;:::i;:::-;27936:25;;27975:20;27993:1;27975:20;:::i;:::-;27970:25;;28163:1;28095:66;28091:74;28088:1;28085:81;28080:1;28073:9;28066:17;28062:105;28059:131;;;28170:18;;:::i;:::-;28059:131;28218:1;28215;28211:9;28200:20;;27878:348;;;;:::o;28232:191::-;28272:4;28292:20;28310:1;28292:20;:::i;:::-;28287:25;;28326:20;28344:1;28326:20;:::i;:::-;28321:25;;28365:1;28362;28359:8;28356:34;;;28370:18;;:::i;:::-;28356:34;28415:1;28412;28408:9;28400:17;;28232:191;;;;:::o;28429:96::-;28466:7;28495:24;28513:5;28495:24;:::i;:::-;28484:35;;28429:96;;;:::o;28531:90::-;28565:7;28608:5;28601:13;28594:21;28583:32;;28531:90;;;:::o;28627:149::-;28663:7;28703:66;28696:5;28692:78;28681:89;;28627:149;;;:::o;28782:89::-;28818:7;28858:6;28851:5;28847:18;28836:29;;28782:89;;;:::o;28877:126::-;28914:7;28954:42;28947:5;28943:54;28932:65;;28877:126;;;:::o;29009:77::-;29046:7;29075:5;29064:16;;29009:77;;;:::o;29092:86::-;29127:7;29167:4;29160:5;29156:16;29145:27;;29092:86;;;:::o;29184:154::-;29268:6;29263:3;29258;29245:30;29330:1;29321:6;29316:3;29312:16;29305:27;29184:154;;;:::o;29344:307::-;29412:1;29422:113;29436:6;29433:1;29430:13;29422:113;;;29521:1;29516:3;29512:11;29506:18;29502:1;29497:3;29493:11;29486:39;29458:2;29455:1;29451:10;29446:15;;29422:113;;;29553:6;29550:1;29547:13;29544:101;;;29633:1;29624:6;29619:3;29615:16;29608:27;29544:101;29393:258;29344:307;;;:::o;29657:320::-;29701:6;29738:1;29732:4;29728:12;29718:22;;29785:1;29779:4;29775:12;29806:18;29796:81;;29862:4;29854:6;29850:17;29840:27;;29796:81;29924:2;29916:6;29913:14;29893:18;29890:38;29887:84;;;29943:18;;:::i;:::-;29887:84;29708:269;29657:320;;;:::o;29983:281::-;30066:27;30088:4;30066:27;:::i;:::-;30058:6;30054:40;30196:6;30184:10;30181:22;30160:18;30148:10;30145:34;30142:62;30139:88;;;30207:18;;:::i;:::-;30139:88;30247:10;30243:2;30236:22;30026:238;29983:281;;:::o;30270:233::-;30309:3;30332:24;30350:5;30332:24;:::i;:::-;30323:33;;30378:66;30371:5;30368:77;30365:103;;;30448:18;;:::i;:::-;30365:103;30495:1;30488:5;30484:13;30477:20;;30270:233;;;:::o;30509:167::-;30546:3;30569:22;30585:5;30569:22;:::i;:::-;30560:31;;30613:4;30606:5;30603:15;30600:41;;;30621:18;;:::i;:::-;30600:41;30668:1;30661:5;30657:13;30650:20;;30509:167;;;:::o;30682:176::-;30714:1;30731:20;30749:1;30731:20;:::i;:::-;30726:25;;30765:20;30783:1;30765:20;:::i;:::-;30760:25;;30804:1;30794:35;;30809:18;;:::i;:::-;30794:35;30850:1;30847;30843:9;30838:14;;30682:176;;;;:::o;30864:180::-;30912:77;30909:1;30902:88;31009:4;31006:1;30999:15;31033:4;31030:1;31023:15;31050:180;31098:77;31095:1;31088:88;31195:4;31192:1;31185:15;31219:4;31216:1;31209:15;31236:180;31284:77;31281:1;31274:88;31381:4;31378:1;31371:15;31405:4;31402:1;31395:15;31422:180;31470:77;31467:1;31460:88;31567:4;31564:1;31557:15;31591:4;31588:1;31581:15;31608:180;31656:77;31653:1;31646:88;31753:4;31750:1;31743:15;31777:4;31774:1;31767:15;31794:117;31903:1;31900;31893:12;31917:117;32026:1;32023;32016:12;32040:117;32149:1;32146;32139:12;32163:117;32272:1;32269;32262:12;32286:117;32395:1;32392;32385:12;32409:117;32518:1;32515;32508:12;32532:102;32573:6;32624:2;32620:7;32615:2;32608:5;32604:14;32600:28;32590:38;;32532:102;;;:::o;32640:169::-;32780:21;32776:1;32768:6;32764:14;32757:45;32640:169;:::o;32815:157::-;32955:9;32951:1;32943:6;32939:14;32932:33;32815:157;:::o;32978:225::-;33118:34;33114:1;33106:6;33102:14;33095:58;33187:8;33182:2;33174:6;33170:15;33163:33;32978:225;:::o;33209:176::-;33349:28;33345:1;33337:6;33333:14;33326:52;33209:176;:::o;33391:221::-;33531:34;33527:1;33519:6;33515:14;33508:58;33600:4;33595:2;33587:6;33583:15;33576:29;33391:221;:::o;33618:173::-;33758:25;33754:1;33746:6;33742:14;33735:49;33618:173;:::o;33797:182::-;33937:34;33933:1;33925:6;33921:14;33914:58;33797:182;:::o;33985:173::-;34125:25;34121:1;34113:6;34109:14;34102:49;33985:173;:::o;34164:234::-;34304:34;34300:1;34292:6;34288:14;34281:58;34373:17;34368:2;34360:6;34356:15;34349:42;34164:234;:::o;34404:114::-;;:::o;34524:174::-;34664:26;34660:1;34652:6;34648:14;34641:50;34524:174;:::o;34704:181::-;34844:33;34840:1;34832:6;34828:14;34821:57;34704:181;:::o;34891:122::-;34964:24;34982:5;34964:24;:::i;:::-;34957:5;34954:35;34944:63;;35003:1;35000;34993:12;34944:63;34891:122;:::o;35019:116::-;35089:21;35104:5;35089:21;:::i;:::-;35082:5;35079:32;35069:60;;35125:1;35122;35115:12;35069:60;35019:116;:::o;35141:120::-;35213:23;35230:5;35213:23;:::i;:::-;35206:5;35203:34;35193:62;;35251:1;35248;35241:12;35193:62;35141:120;:::o;35267:::-;35339:23;35356:5;35339:23;:::i;:::-;35332:5;35329:34;35319:62;;35377:1;35374;35367:12;35319:62;35267:120;:::o;35393:122::-;35466:24;35484:5;35466:24;:::i;:::-;35459:5;35456:35;35446:63;;35505:1;35502;35495:12;35446:63;35393:122;:::o;35521:118::-;35592:22;35608:5;35592:22;:::i;:::-;35585:5;35582:33;35572:61;;35629:1;35626;35619:12;35572:61;35521:118;:::o

Swarm Source

ipfs://5f21464413f6eed61ea5dbdad554b0ee4cd6f876dcdbd6214ca9d432e8340778
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.