ETH Price: $3,365.11 (-1.51%)
Gas: 7 Gwei

Token

NFTBOY Consoles (NFTBOY)
 

Overview

Max Total Supply

1,452 NFTBOY

Holders

855

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
blockchaingeneralist.eth
Balance
2 NFTBOY
0xA820074071ffC196663039B086f88d281EC1a193
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:
BARConsoles

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 2021-10-25
*/

// File: @openzeppelin/contracts/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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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



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



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



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



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



pragma solidity ^0.8.0;


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

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

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

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



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: @openzeppelin/contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/BARConsoles.sol


pragma solidity ^0.8.7;
// IMPORTS //
/**
 * @dev ERC721 token standard
 */

/**
 * @dev Modifier 'onlyOwner' becomes available, where owner is the contract deployer
 */

// CONTRACT //
contract BARConsoles is ERC721Enumerable, Ownable { 
    
    
    uint256 private currentTokenId = 1;
    uint256 public MAX_SUPPLY = 2000; 
    uint256 public cost = 60000000000000000; // cost of minting in Wei, equivalent to 0.04 ether
    
    uint256 private preSaleMintsTotal;
    string private baseTokenURI;
    
    bool public preSaleStatus = false;
    bool public generalSaleStatus = false;
    bool public claimStatus = false;
    
    constructor(
        string memory _name,
        string memory _symbol,  
        string memory _uri
        
    ) ERC721(_name, _symbol) {
        baseTokenURI = _uri;
    }
    
    
    // EVENTS //
    
    event TokenBought(uint256 tokenId);
    
    
    // MAPPINGS //
    
    mapping(address => uint) whitelist;
    mapping(address => bool) claimList;
        
    // PUBLIC //
    
    
    /**
     * @dev Mint a token through pre or general sale
     * @param _num - number of tokens to mint
     */
    function mint(uint256 _num) external payable {
        
        require(msg.value == _num * cost, "Incorrect funds supplied"); // mint cost
        
        if (preSaleStatus == true) {
            require(_num > 0 && _num <=2, "2 mint maximum");
            require(whitelist[msg.sender] >= _num, "Not on whitelist or maximum of 2 mints per address allowed"); // checks if white listed & mint limit per address is obeyed
            require(preSaleMintsTotal + _num <= 500, "Minting that many would exceed pre sale minting allocation"); // ensures pre sale total mint limit is obeyed
            whitelist[msg.sender] -= _num; // reduces caller's minting allownace by the number of tokens they minted
            preSaleMintsTotal += _num; 
        } else {
            require(generalSaleStatus, "It's not time yet"); // checks general sale is live
            require(_num > 0 && _num <= 3, "Maximum of 3 mints allowed"); // mint limit per tx
        }
        
        for (uint256 i = 0; i < _num; i++) {
            uint tokenId = currentTokenId;
            require(tokenId <= MAX_SUPPLY, "All tokens have been minted");
            currentTokenId++;
            _mint(msg.sender, tokenId);
            emit TokenBought(tokenId);
            
        }
    }
    
    
    /**
     * @dev Mint token if on pre approved 'claimList'
     */
    function claim() external {
        
        require(claimStatus, "It's not time yet"); // ensures claiming is live
        require(claimList[msg.sender], "Not on pre-approved claim list or have already claimed");
        
        uint tokenId = currentTokenId;
        require(tokenId <= MAX_SUPPLY, "All tokens have been minted");
        currentTokenId++;
        claimList[msg.sender] = false; // ensures they cannot claim a token a second time
        _mint(msg.sender, tokenId);
        emit TokenBought(tokenId);
    }
    
    
    
    // VIEW //
    
    
    /**
     * @dev Returns tokenURI, which is comprised of the baseURI concatenated with the tokenId
     */
    function tokenURI(uint256 _tokenId) public view override returns(string memory) {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        return string(abi.encodePacked(baseTokenURI, Strings.toString(_tokenId)));
    }
    
    
    
    // ONLY OWNER //
    
    
    /**
     * @dev Withdraw ether from smart contract. Only contract owner can call.
     * @param _to - address ether will be sent to
     * @param _amount - amount of ether, in Wei, to be withdrawn (1 wei = 1e-18 ether)
     */
    function withdrawFunds(address payable _to, uint _amount) external onlyOwner {
        require(_amount <= address(this).balance, "Withdrawal amount greater than balance");
        _to.transfer(_amount);
    }
    
    
    /**
     * @dev Withdraw all ether from smart contract. Only contract owner can call.
     * @param _to - address ether will be sent to
     */
    function withdrawAllFunds(address payable _to) external onlyOwner {
        require(address(this).balance > 0, "No funds to withdraw");
        _to.transfer(address(this).balance);
    }
    
    
    /**
     * @dev Add addresses to white list, giving access to mint 2 tokens at pre sale
     * @param _addresses - array of address' to add to white list mapping
     */
    function whitelistAddresses(address[] calldata _addresses) external onlyOwner {
        for (uint i=0; i<_addresses.length; i++) {
            whitelist[_addresses[i]] = 2;
        }
    }
    
    
    /**
     * @dev Add addresses to claim list, giving access to claim function
     * @param _addresses - array of address' to add to claim list mapping
     */
    function claimAddresses(address[] calldata _addresses) external onlyOwner {
        for (uint i=0; i<_addresses.length; i++) {
            claimList[_addresses[i]] = true;
        }
    }
    
    
    /**
     * @dev Airdrop 1 token to each address in array '_to'
     * @param _to - array of address' that tokens will be sent to
     */
    function airDrop(address[] calldata _to) external onlyOwner {
        for (uint i=0; i<_to.length; i++) {
            uint tokenId = currentTokenId;
            require(tokenId <= MAX_SUPPLY, "All tokens have been minted");
            currentTokenId++;
            _mint(_to[i], tokenId);
            emit TokenBought(tokenId);
        }
        
    }
    /**
     * @dev Set the baseURI string
     */
    function setBaseUri(string memory _newBaseUri) external onlyOwner {
        baseTokenURI = _newBaseUri;
    }
    
    
    /**
     * @dev Set the cost of minting a token
     * @param _newCost in Wei. Where 1 Wei = 10^-18 ether
     */
    function setCost(uint _newCost) external onlyOwner {
        cost = _newCost;
    }
    
    
    /**
     * @dev Set the status of the pre sale
     * @param _status boolean where true = live 
     */
    function setPreSaleStatus(bool _status) external onlyOwner {
        preSaleStatus = _status;
    }
    
    
    /**
     * @dev Set the status of the general sale
     * @param _status boolean where true = live 
     */
    function setGeneralSaleStatus(bool _status) external onlyOwner {
        generalSaleStatus = _status;
    }
    /**
     * @dev Set the status of claim minitng
     * @param _status boolean where true = live 
     */
    function setClaimStatus(bool _status) external onlyOwner {
        claimStatus = _status;
    }
    
    
    /**
     * @dev Change the pre sale and claim status to over (false), and general sale status to live (true)
     */
    function switchPreToGeneral() external onlyOwner {
        claimStatus = false;
        preSaleStatus = false;
        generalSaleStatus = true;
    }
    
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TokenBought","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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"}],"name":"airDrop","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":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"claimAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"generalSaleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","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":"preSaleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setClaimStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setGeneralSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPreSaleStatus","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":"switchPreToGeneral","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"whitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdrawAllFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600b556107d0600c5566d529ae9e860000600d556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff0219169083151502179055503480156200007857600080fd5b50604051620053873803806200538783398181016040528101906200009e919062000312565b82828160009080519060200190620000b8929190620001e4565b508060019080519060200190620000d1929190620001e4565b505050620000f4620000e86200011660201b60201c565b6200011e60201b60201c565b80600f90805190602001906200010c929190620001e4565b505050506200054f565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001f29062000460565b90600052602060002090601f01602090048101928262000216576000855562000262565b82601f106200023157805160ff191683800117855562000262565b8280016001018555821562000262579182015b828111156200026157825182559160200191906001019062000244565b5b50905062000271919062000275565b5090565b5b808211156200029057600081600090555060010162000276565b5090565b6000620002ab620002a584620003f4565b620003cb565b905082815260208101848484011115620002ca57620002c96200052f565b5b620002d78482856200042a565b509392505050565b600082601f830112620002f757620002f66200052a565b5b81516200030984826020860162000294565b91505092915050565b6000806000606084860312156200032e576200032d62000539565b5b600084015167ffffffffffffffff8111156200034f576200034e62000534565b5b6200035d86828701620002df565b935050602084015167ffffffffffffffff81111562000381576200038062000534565b5b6200038f86828701620002df565b925050604084015167ffffffffffffffff811115620003b357620003b262000534565b5b620003c186828701620002df565b9150509250925092565b6000620003d7620003ea565b9050620003e5828262000496565b919050565b6000604051905090565b600067ffffffffffffffff821115620004125762000411620004fb565b5b6200041d826200053e565b9050602081019050919050565b60005b838110156200044a5780820151818401526020810190506200042d565b838111156200045a576000848401525b50505050565b600060028204905060018216806200047957607f821691505b6020821081141562000490576200048f620004cc565b5b50919050565b620004a1826200053e565b810181811067ffffffffffffffff82111715620004c357620004c2620004fb565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b614e28806200055f6000396000f3fe6080604052600436106102195760003560e01c80635e326b9211610123578063a0712d68116100ab578063bfdceac21161006f578063bfdceac214610797578063c1075329146107ae578063c87b56dd146107d7578063e985e9c514610814578063f2fde38b1461085157610219565b8063a0712d68146106d5578063a0bcfc7f146106f1578063a22cb4651461071a578063ae87fc4b14610743578063b88d4fde1461076e57610219565b8063715018a6116100f2578063715018a6146106145780638442636c1461062b5780638ae3d307146106545780638da5cb5b1461067f57806395d89b41146106aa57610219565b80635e326b92146105485780636352211e14610571578063654f97a3146105ae57806370a08231146105d757610219565b80632f745c59116101a657806344a0d68a1161017557806344a0d68a1461047757806345963235146104a0578063464bd640146104c95780634e71d92d146104f45780634f6ccce71461050b57610219565b80632f745c59146103bd57806332cb6b0c146103fa57806332dee40b1461042557806342842e0e1461044e57610219565b8063095ea7b3116101ed578063095ea7b3146102ec57806313faede61461031557806318160ddd1461034057806323b872dd1461036b5780632bf043041461039457610219565b8062b6849f1461021e57806301ffc9a71461024757806306fdde0314610284578063081812fc146102af575b600080fd5b34801561022a57600080fd5b50610245600480360381019061024091906136a5565b61087a565b005b34801561025357600080fd5b5061026e6004803603810190610269919061371f565b6109e9565b60405161027b9190613d9d565b60405180910390f35b34801561029057600080fd5b50610299610a63565b6040516102a69190613db8565b60405180910390f35b3480156102bb57600080fd5b506102d660048036038101906102d191906137c2565b610af5565b6040516102e39190613d36565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190613665565b610b7a565b005b34801561032157600080fd5b5061032a610c92565b604051610337919061415a565b60405180910390f35b34801561034c57600080fd5b50610355610c98565b604051610362919061415a565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d919061354f565b610ca5565b005b3480156103a057600080fd5b506103bb60048036038101906103b691906136a5565b610d05565b005b3480156103c957600080fd5b506103e460048036038101906103df9190613665565b610e13565b6040516103f1919061415a565b60405180910390f35b34801561040657600080fd5b5061040f610eb8565b60405161041c919061415a565b60405180910390f35b34801561043157600080fd5b5061044c600480360381019061044791906134a2565b610ebe565b005b34801561045a57600080fd5b506104756004803603810190610470919061354f565b610fc7565b005b34801561048357600080fd5b5061049e600480360381019061049991906137c2565b610fe7565b005b3480156104ac57600080fd5b506104c760048036038101906104c291906136a5565b61106d565b005b3480156104d557600080fd5b506104de61118e565b6040516104eb9190613d9d565b60405180910390f35b34801561050057600080fd5b506105096111a1565b005b34801561051757600080fd5b50610532600480360381019061052d91906137c2565b61137c565b60405161053f919061415a565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a91906136f2565b6113ed565b005b34801561057d57600080fd5b50610598600480360381019061059391906137c2565b611486565b6040516105a59190613d36565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d091906136f2565b611538565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190613475565b6115d1565b60405161060b919061415a565b60405180910390f35b34801561062057600080fd5b50610629611689565b005b34801561063757600080fd5b50610652600480360381019061064d91906136f2565b611711565b005b34801561066057600080fd5b506106696117aa565b6040516106769190613d9d565b60405180910390f35b34801561068b57600080fd5b506106946117bd565b6040516106a19190613d36565b60405180910390f35b3480156106b657600080fd5b506106bf6117e7565b6040516106cc9190613db8565b60405180910390f35b6106ef60048036038101906106ea91906137c2565b611879565b005b3480156106fd57600080fd5b5061071860048036038101906107139190613779565b611be4565b005b34801561072657600080fd5b50610741600480360381019061073c9190613625565b611c7a565b005b34801561074f57600080fd5b50610758611dfb565b6040516107659190613d9d565b60405180910390f35b34801561077a57600080fd5b50610795600480360381019061079091906135a2565b611e0e565b005b3480156107a357600080fd5b506107ac611e70565b005b3480156107ba57600080fd5b506107d560048036038101906107d091906134cf565b611f3f565b005b3480156107e357600080fd5b506107fe60048036038101906107f991906137c2565b612049565b60405161080b9190613db8565b60405180910390f35b34801561082057600080fd5b5061083b6004803603810190610836919061350f565b6120c5565b6040516108489190613d9d565b60405180910390f35b34801561085d57600080fd5b5061087860048036038101906108739190613475565b612159565b005b610882612251565b73ffffffffffffffffffffffffffffffffffffffff166108a06117bd565b73ffffffffffffffffffffffffffffffffffffffff16146108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed90613fba565b60405180910390fd5b60005b828290508110156109e4576000600b549050600c54811115610950576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109479061411a565b60405180910390fd5b600b600081548092919061096390614494565b919050555061099984848481811061097e5761097d6145ca565b5b90506020020160208101906109939190613475565b82612259565b7f5782b4799a39cbe194d6ee862b9cfe3d8e4f9e741e3f122be89e778aba8b9fff816040516109c8919061415a565b60405180910390a15080806109dc90614494565b9150506108f9565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5c5750610a5b82612427565b5b9050919050565b606060008054610a7290614431565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9e90614431565b8015610aeb5780601f10610ac057610100808354040283529160200191610aeb565b820191906000526020600020905b815481529060010190602001808311610ace57829003601f168201915b5050505050905090565b6000610b0082612509565b610b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3690613f9a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b8582611486565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed9061403a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c15612251565b73ffffffffffffffffffffffffffffffffffffffff161480610c445750610c4381610c3e612251565b6120c5565b5b610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90613f1a565b60405180910390fd5b610c8d8383612575565b505050565b600d5481565b6000600880549050905090565b610cb6610cb0612251565b8261262e565b610cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cec9061405a565b60405180910390fd5b610d0083838361270c565b505050565b610d0d612251565b73ffffffffffffffffffffffffffffffffffffffff16610d2b6117bd565b73ffffffffffffffffffffffffffffffffffffffff1614610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890613fba565b60405180910390fd5b60005b82829050811015610e0e57600260116000858585818110610da857610da76145ca565b5b9050602002016020810190610dbd9190613475565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610e0690614494565b915050610d84565b505050565b6000610e1e836115d1565b8210610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5690613dda565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600c5481565b610ec6612251565b73ffffffffffffffffffffffffffffffffffffffff16610ee46117bd565b73ffffffffffffffffffffffffffffffffffffffff1614610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3190613fba565b60405180910390fd5b60004711610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490613eba565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fc3573d6000803e3d6000fd5b5050565b610fe283838360405180602001604052806000815250611e0e565b505050565b610fef612251565b73ffffffffffffffffffffffffffffffffffffffff1661100d6117bd565b73ffffffffffffffffffffffffffffffffffffffff1614611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a90613fba565b60405180910390fd5b80600d8190555050565b611075612251565b73ffffffffffffffffffffffffffffffffffffffff166110936117bd565b73ffffffffffffffffffffffffffffffffffffffff16146110e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e090613fba565b60405180910390fd5b60005b82829050811015611189576001601260008585858181106111105761110f6145ca565b5b90506020020160208101906111259190613475565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061118190614494565b9150506110ec565b505050565b601060009054906101000a900460ff1681565b601060029054906101000a900460ff166111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e79061407a565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661127c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127390613e3a565b60405180910390fd5b6000600b549050600c548111156112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf9061411a565b60405180910390fd5b600b60008154809291906112db90614494565b91905055506000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506113423382612259565b7f5782b4799a39cbe194d6ee862b9cfe3d8e4f9e741e3f122be89e778aba8b9fff81604051611371919061415a565b60405180910390a150565b6000611386610c98565b82106113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be906140ba565b60405180910390fd5b600882815481106113db576113da6145ca565b5b90600052602060002001549050919050565b6113f5612251565b73ffffffffffffffffffffffffffffffffffffffff166114136117bd565b73ffffffffffffffffffffffffffffffffffffffff1614611469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146090613fba565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690613f5a565b60405180910390fd5b80915050919050565b611540612251565b73ffffffffffffffffffffffffffffffffffffffff1661155e6117bd565b73ffffffffffffffffffffffffffffffffffffffff16146115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab90613fba565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163990613f3a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611691612251565b73ffffffffffffffffffffffffffffffffffffffff166116af6117bd565b73ffffffffffffffffffffffffffffffffffffffff1614611705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc90613fba565b60405180910390fd5b61170f6000612968565b565b611719612251565b73ffffffffffffffffffffffffffffffffffffffff166117376117bd565b73ffffffffffffffffffffffffffffffffffffffff161461178d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178490613fba565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b601060019054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546117f690614431565b80601f016020809104026020016040519081016040528092919081815260200182805461182290614431565b801561186f5780601f106118445761010080835404028352916020019161186f565b820191906000526020600020905b81548152906001019060200180831161185257829003601f168201915b5050505050905090565b600d548161188791906142db565b34146118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf906140da565b60405180910390fd5b60011515601060009054906101000a900460ff1615151415611a7c576000811180156118f5575060028111155b611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b9061413a565b60405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156119b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ad9061409a565b60405180910390fd5b6101f481600e546119c79190614254565b1115611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff90613efa565b60405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a579190614335565b9250508190555080600e6000828254611a709190614254565b92505081905550611b1c565b601060019054906101000a900460ff16611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac29061407a565b60405180910390fd5b600081118015611adc575060038111155b611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b12906140fa565b60405180910390fd5b5b60005b81811015611be0576000600b549050600c54811115611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a9061411a565b60405180910390fd5b600b6000815480929190611b8690614494565b9190505550611b953382612259565b7f5782b4799a39cbe194d6ee862b9cfe3d8e4f9e741e3f122be89e778aba8b9fff81604051611bc4919061415a565b60405180910390a1508080611bd890614494565b915050611b1f565b5050565b611bec612251565b73ffffffffffffffffffffffffffffffffffffffff16611c0a6117bd565b73ffffffffffffffffffffffffffffffffffffffff1614611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5790613fba565b60405180910390fd5b80600f9080519060200190611c7692919061321e565b5050565b611c82612251565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce790613e9a565b60405180910390fd5b8060056000611cfd612251565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611daa612251565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611def9190613d9d565b60405180910390a35050565b601060029054906101000a900460ff1681565b611e1f611e19612251565b8361262e565b611e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e559061405a565b60405180910390fd5b611e6a84848484612a2e565b50505050565b611e78612251565b73ffffffffffffffffffffffffffffffffffffffff16611e966117bd565b73ffffffffffffffffffffffffffffffffffffffff1614611eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee390613fba565b60405180910390fd5b6000601060026101000a81548160ff0219169083151502179055506000601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff021916908315150217905550565b611f47612251565b73ffffffffffffffffffffffffffffffffffffffff16611f656117bd565b73ffffffffffffffffffffffffffffffffffffffff1614611fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb290613fba565b60405180910390fd5b47811115611ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff59061401a565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612044573d6000803e3d6000fd5b505050565b606061205482612509565b612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a90613ffa565b60405180910390fd5b600f61209e83612a8a565b6040516020016120af929190613d12565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612161612251565b73ffffffffffffffffffffffffffffffffffffffff1661217f6117bd565b73ffffffffffffffffffffffffffffffffffffffff16146121d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cc90613fba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223c90613e1a565b60405180910390fd5b61224e81612968565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c090613f7a565b60405180910390fd5b6122d281612509565b15612312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230990613e5a565b60405180910390fd5b61231e60008383612beb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461236e9190614254565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124f257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612502575061250182612cff565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125e883611486565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061263982612509565b612678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266f90613eda565b60405180910390fd5b600061268383611486565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126f257508373ffffffffffffffffffffffffffffffffffffffff166126da84610af5565b73ffffffffffffffffffffffffffffffffffffffff16145b80612703575061270281856120c5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661272c82611486565b73ffffffffffffffffffffffffffffffffffffffff1614612782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277990613fda565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e990613e7a565b60405180910390fd5b6127fd838383612beb565b612808600082612575565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128589190614335565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128af9190614254565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a3984848461270c565b612a4584848484612d69565b612a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7b90613dfa565b60405180910390fd5b50505050565b60606000821415612ad2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612be6565b600082905060005b60008214612b04578080612aed90614494565b915050600a82612afd91906142aa565b9150612ada565b60008167ffffffffffffffff811115612b2057612b1f6145f9565b5b6040519080825280601f01601f191660200182016040528015612b525781602001600182028036833780820191505090505b5090505b60008514612bdf57600182612b6b9190614335565b9150600a85612b7a91906144dd565b6030612b869190614254565b60f81b818381518110612b9c57612b9b6145ca565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bd891906142aa565b9450612b56565b8093505050505b919050565b612bf6838383612f00565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c3957612c3481612f05565b612c78565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612c7757612c768382612f4e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cbb57612cb6816130bb565b612cfa565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612cf957612cf8828261318c565b5b5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000612d8a8473ffffffffffffffffffffffffffffffffffffffff1661320b565b15612ef3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612db3612251565b8786866040518563ffffffff1660e01b8152600401612dd59493929190613d51565b602060405180830381600087803b158015612def57600080fd5b505af1925050508015612e2057506040513d601f19601f82011682018060405250810190612e1d919061374c565b60015b612ea3573d8060008114612e50576040519150601f19603f3d011682016040523d82523d6000602084013e612e55565b606091505b50600081511415612e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9290613dfa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ef8565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612f5b846115d1565b612f659190614335565b905060006007600084815260200190815260200160002054905081811461304a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506130cf9190614335565b90506000600960008481526020019081526020016000205490506000600883815481106130ff576130fe6145ca565b5b906000526020600020015490508060088381548110613121576131206145ca565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806131705761316f61459b565b5b6001900381819060005260206000200160009055905550505050565b6000613197836115d1565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461322a90614431565b90600052602060002090601f01602090048101928261324c5760008555613293565b82601f1061326557805160ff1916838001178555613293565b82800160010185558215613293579182015b82811115613292578251825591602001919060010190613277565b5b5090506132a091906132a4565b5090565b5b808211156132bd5760008160009055506001016132a5565b5090565b60006132d46132cf8461419a565b614175565b9050828152602081018484840111156132f0576132ef614637565b5b6132fb8482856143ef565b509392505050565b6000613316613311846141cb565b614175565b90508281526020810184848401111561333257613331614637565b5b61333d8482856143ef565b509392505050565b60008135905061335481614d7f565b92915050565b60008135905061336981614d96565b92915050565b60008083601f8401126133855761338461462d565b5b8235905067ffffffffffffffff8111156133a2576133a1614628565b5b6020830191508360208202830111156133be576133bd614632565b5b9250929050565b6000813590506133d481614dad565b92915050565b6000813590506133e981614dc4565b92915050565b6000815190506133fe81614dc4565b92915050565b600082601f8301126134195761341861462d565b5b81356134298482602086016132c1565b91505092915050565b600082601f8301126134475761344661462d565b5b8135613457848260208601613303565b91505092915050565b60008135905061346f81614ddb565b92915050565b60006020828403121561348b5761348a614641565b5b600061349984828501613345565b91505092915050565b6000602082840312156134b8576134b7614641565b5b60006134c68482850161335a565b91505092915050565b600080604083850312156134e6576134e5614641565b5b60006134f48582860161335a565b925050602061350585828601613460565b9150509250929050565b6000806040838503121561352657613525614641565b5b600061353485828601613345565b925050602061354585828601613345565b9150509250929050565b60008060006060848603121561356857613567614641565b5b600061357686828701613345565b935050602061358786828701613345565b925050604061359886828701613460565b9150509250925092565b600080600080608085870312156135bc576135bb614641565b5b60006135ca87828801613345565b94505060206135db87828801613345565b93505060406135ec87828801613460565b925050606085013567ffffffffffffffff81111561360d5761360c61463c565b5b61361987828801613404565b91505092959194509250565b6000806040838503121561363c5761363b614641565b5b600061364a85828601613345565b925050602061365b858286016133c5565b9150509250929050565b6000806040838503121561367c5761367b614641565b5b600061368a85828601613345565b925050602061369b85828601613460565b9150509250929050565b600080602083850312156136bc576136bb614641565b5b600083013567ffffffffffffffff8111156136da576136d961463c565b5b6136e68582860161336f565b92509250509250929050565b60006020828403121561370857613707614641565b5b6000613716848285016133c5565b91505092915050565b60006020828403121561373557613734614641565b5b6000613743848285016133da565b91505092915050565b60006020828403121561376257613761614641565b5b6000613770848285016133ef565b91505092915050565b60006020828403121561378f5761378e614641565b5b600082013567ffffffffffffffff8111156137ad576137ac61463c565b5b6137b984828501613432565b91505092915050565b6000602082840312156137d8576137d7614641565b5b60006137e684828501613460565b91505092915050565b6137f881614369565b82525050565b6138078161438d565b82525050565b600061381882614211565b6138228185614227565b93506138328185602086016143fe565b61383b81614646565b840191505092915050565b60006138518261421c565b61385b8185614238565b935061386b8185602086016143fe565b61387481614646565b840191505092915050565b600061388a8261421c565b6138948185614249565b93506138a48185602086016143fe565b80840191505092915050565b600081546138bd81614431565b6138c78186614249565b945060018216600081146138e257600181146138f357613926565b60ff19831686528186019350613926565b6138fc856141fc565b60005b8381101561391e578154818901526001820191506020810190506138ff565b838801955050505b50505092915050565b600061393c602b83614238565b915061394782614657565b604082019050919050565b600061395f603283614238565b915061396a826146a6565b604082019050919050565b6000613982602683614238565b915061398d826146f5565b604082019050919050565b60006139a5603683614238565b91506139b082614744565b604082019050919050565b60006139c8601c83614238565b91506139d382614793565b602082019050919050565b60006139eb602483614238565b91506139f6826147bc565b604082019050919050565b6000613a0e601983614238565b9150613a198261480b565b602082019050919050565b6000613a31601483614238565b9150613a3c82614834565b602082019050919050565b6000613a54602c83614238565b9150613a5f8261485d565b604082019050919050565b6000613a77603a83614238565b9150613a82826148ac565b604082019050919050565b6000613a9a603883614238565b9150613aa5826148fb565b604082019050919050565b6000613abd602a83614238565b9150613ac88261494a565b604082019050919050565b6000613ae0602983614238565b9150613aeb82614999565b604082019050919050565b6000613b03602083614238565b9150613b0e826149e8565b602082019050919050565b6000613b26602c83614238565b9150613b3182614a11565b604082019050919050565b6000613b49602083614238565b9150613b5482614a60565b602082019050919050565b6000613b6c602983614238565b9150613b7782614a89565b604082019050919050565b6000613b8f602f83614238565b9150613b9a82614ad8565b604082019050919050565b6000613bb2602683614238565b9150613bbd82614b27565b604082019050919050565b6000613bd5602183614238565b9150613be082614b76565b604082019050919050565b6000613bf8603183614238565b9150613c0382614bc5565b604082019050919050565b6000613c1b601183614238565b9150613c2682614c14565b602082019050919050565b6000613c3e603a83614238565b9150613c4982614c3d565b604082019050919050565b6000613c61602c83614238565b9150613c6c82614c8c565b604082019050919050565b6000613c84601883614238565b9150613c8f82614cdb565b602082019050919050565b6000613ca7601a83614238565b9150613cb282614d04565b602082019050919050565b6000613cca601b83614238565b9150613cd582614d2d565b602082019050919050565b6000613ced600e83614238565b9150613cf882614d56565b602082019050919050565b613d0c816143e5565b82525050565b6000613d1e82856138b0565b9150613d2a828461387f565b91508190509392505050565b6000602082019050613d4b60008301846137ef565b92915050565b6000608082019050613d6660008301876137ef565b613d7360208301866137ef565b613d806040830185613d03565b8181036060830152613d92818461380d565b905095945050505050565b6000602082019050613db260008301846137fe565b92915050565b60006020820190508181036000830152613dd28184613846565b905092915050565b60006020820190508181036000830152613df38161392f565b9050919050565b60006020820190508181036000830152613e1381613952565b9050919050565b60006020820190508181036000830152613e3381613975565b9050919050565b60006020820190508181036000830152613e5381613998565b9050919050565b60006020820190508181036000830152613e73816139bb565b9050919050565b60006020820190508181036000830152613e93816139de565b9050919050565b60006020820190508181036000830152613eb381613a01565b9050919050565b60006020820190508181036000830152613ed381613a24565b9050919050565b60006020820190508181036000830152613ef381613a47565b9050919050565b60006020820190508181036000830152613f1381613a6a565b9050919050565b60006020820190508181036000830152613f3381613a8d565b9050919050565b60006020820190508181036000830152613f5381613ab0565b9050919050565b60006020820190508181036000830152613f7381613ad3565b9050919050565b60006020820190508181036000830152613f9381613af6565b9050919050565b60006020820190508181036000830152613fb381613b19565b9050919050565b60006020820190508181036000830152613fd381613b3c565b9050919050565b60006020820190508181036000830152613ff381613b5f565b9050919050565b6000602082019050818103600083015261401381613b82565b9050919050565b6000602082019050818103600083015261403381613ba5565b9050919050565b6000602082019050818103600083015261405381613bc8565b9050919050565b6000602082019050818103600083015261407381613beb565b9050919050565b6000602082019050818103600083015261409381613c0e565b9050919050565b600060208201905081810360008301526140b381613c31565b9050919050565b600060208201905081810360008301526140d381613c54565b9050919050565b600060208201905081810360008301526140f381613c77565b9050919050565b6000602082019050818103600083015261411381613c9a565b9050919050565b6000602082019050818103600083015261413381613cbd565b9050919050565b6000602082019050818103600083015261415381613ce0565b9050919050565b600060208201905061416f6000830184613d03565b92915050565b600061417f614190565b905061418b8282614463565b919050565b6000604051905090565b600067ffffffffffffffff8211156141b5576141b46145f9565b5b6141be82614646565b9050602081019050919050565b600067ffffffffffffffff8211156141e6576141e56145f9565b5b6141ef82614646565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061425f826143e5565b915061426a836143e5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561429f5761429e61450e565b5b828201905092915050565b60006142b5826143e5565b91506142c0836143e5565b9250826142d0576142cf61453d565b5b828204905092915050565b60006142e6826143e5565b91506142f1836143e5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561432a5761432961450e565b5b828202905092915050565b6000614340826143e5565b915061434b836143e5565b92508282101561435e5761435d61450e565b5b828203905092915050565b6000614374826143c5565b9050919050565b6000614386826143c5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561441c578082015181840152602081019050614401565b8381111561442b576000848401525b50505050565b6000600282049050600182168061444957607f821691505b6020821081141561445d5761445c61456c565b5b50919050565b61446c82614646565b810181811067ffffffffffffffff8211171561448b5761448a6145f9565b5b80604052505050565b600061449f826143e5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144d2576144d161450e565b5b600182019050919050565b60006144e8826143e5565b91506144f3836143e5565b9250826145035761450261453d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74206f6e207072652d617070726f76656420636c61696d206c697374206f60008201527f72206861766520616c726561647920636c61696d656400000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f2066756e647320746f207769746864726177000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d696e74696e672074686174206d616e7920776f756c6420657863656564207060008201527f72652073616c65206d696e74696e6720616c6c6f636174696f6e000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5769746864726177616c20616d6f756e742067726561746572207468616e206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f49742773206e6f742074696d6520796574000000000000000000000000000000600082015250565b7f4e6f74206f6e2077686974656c697374206f72206d6178696d756d206f66203260008201527f206d696e747320706572206164647265737320616c6c6f776564000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e636f72726563742066756e647320737570706c6965640000000000000000600082015250565b7f4d6178696d756d206f662033206d696e747320616c6c6f776564000000000000600082015250565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b7f32206d696e74206d6178696d756d000000000000000000000000000000000000600082015250565b614d8881614369565b8114614d9357600080fd5b50565b614d9f8161437b565b8114614daa57600080fd5b50565b614db68161438d565b8114614dc157600080fd5b50565b614dcd81614399565b8114614dd857600080fd5b50565b614de4816143e5565b8114614def57600080fd5b5056fea264697066735822122050a415d375609441b867f8836182e86f176d483998bf5a90a9913324dbf0bd6064736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f4e4654424f5920436f6e736f6c6573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064e4654424f590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f636f6e736f6c65732d6170692e706c61796e6674626f792e636f6d2f636f6e736f6c65732f00000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102195760003560e01c80635e326b9211610123578063a0712d68116100ab578063bfdceac21161006f578063bfdceac214610797578063c1075329146107ae578063c87b56dd146107d7578063e985e9c514610814578063f2fde38b1461085157610219565b8063a0712d68146106d5578063a0bcfc7f146106f1578063a22cb4651461071a578063ae87fc4b14610743578063b88d4fde1461076e57610219565b8063715018a6116100f2578063715018a6146106145780638442636c1461062b5780638ae3d307146106545780638da5cb5b1461067f57806395d89b41146106aa57610219565b80635e326b92146105485780636352211e14610571578063654f97a3146105ae57806370a08231146105d757610219565b80632f745c59116101a657806344a0d68a1161017557806344a0d68a1461047757806345963235146104a0578063464bd640146104c95780634e71d92d146104f45780634f6ccce71461050b57610219565b80632f745c59146103bd57806332cb6b0c146103fa57806332dee40b1461042557806342842e0e1461044e57610219565b8063095ea7b3116101ed578063095ea7b3146102ec57806313faede61461031557806318160ddd1461034057806323b872dd1461036b5780632bf043041461039457610219565b8062b6849f1461021e57806301ffc9a71461024757806306fdde0314610284578063081812fc146102af575b600080fd5b34801561022a57600080fd5b50610245600480360381019061024091906136a5565b61087a565b005b34801561025357600080fd5b5061026e6004803603810190610269919061371f565b6109e9565b60405161027b9190613d9d565b60405180910390f35b34801561029057600080fd5b50610299610a63565b6040516102a69190613db8565b60405180910390f35b3480156102bb57600080fd5b506102d660048036038101906102d191906137c2565b610af5565b6040516102e39190613d36565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190613665565b610b7a565b005b34801561032157600080fd5b5061032a610c92565b604051610337919061415a565b60405180910390f35b34801561034c57600080fd5b50610355610c98565b604051610362919061415a565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d919061354f565b610ca5565b005b3480156103a057600080fd5b506103bb60048036038101906103b691906136a5565b610d05565b005b3480156103c957600080fd5b506103e460048036038101906103df9190613665565b610e13565b6040516103f1919061415a565b60405180910390f35b34801561040657600080fd5b5061040f610eb8565b60405161041c919061415a565b60405180910390f35b34801561043157600080fd5b5061044c600480360381019061044791906134a2565b610ebe565b005b34801561045a57600080fd5b506104756004803603810190610470919061354f565b610fc7565b005b34801561048357600080fd5b5061049e600480360381019061049991906137c2565b610fe7565b005b3480156104ac57600080fd5b506104c760048036038101906104c291906136a5565b61106d565b005b3480156104d557600080fd5b506104de61118e565b6040516104eb9190613d9d565b60405180910390f35b34801561050057600080fd5b506105096111a1565b005b34801561051757600080fd5b50610532600480360381019061052d91906137c2565b61137c565b60405161053f919061415a565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a91906136f2565b6113ed565b005b34801561057d57600080fd5b50610598600480360381019061059391906137c2565b611486565b6040516105a59190613d36565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d091906136f2565b611538565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190613475565b6115d1565b60405161060b919061415a565b60405180910390f35b34801561062057600080fd5b50610629611689565b005b34801561063757600080fd5b50610652600480360381019061064d91906136f2565b611711565b005b34801561066057600080fd5b506106696117aa565b6040516106769190613d9d565b60405180910390f35b34801561068b57600080fd5b506106946117bd565b6040516106a19190613d36565b60405180910390f35b3480156106b657600080fd5b506106bf6117e7565b6040516106cc9190613db8565b60405180910390f35b6106ef60048036038101906106ea91906137c2565b611879565b005b3480156106fd57600080fd5b5061071860048036038101906107139190613779565b611be4565b005b34801561072657600080fd5b50610741600480360381019061073c9190613625565b611c7a565b005b34801561074f57600080fd5b50610758611dfb565b6040516107659190613d9d565b60405180910390f35b34801561077a57600080fd5b50610795600480360381019061079091906135a2565b611e0e565b005b3480156107a357600080fd5b506107ac611e70565b005b3480156107ba57600080fd5b506107d560048036038101906107d091906134cf565b611f3f565b005b3480156107e357600080fd5b506107fe60048036038101906107f991906137c2565b612049565b60405161080b9190613db8565b60405180910390f35b34801561082057600080fd5b5061083b6004803603810190610836919061350f565b6120c5565b6040516108489190613d9d565b60405180910390f35b34801561085d57600080fd5b5061087860048036038101906108739190613475565b612159565b005b610882612251565b73ffffffffffffffffffffffffffffffffffffffff166108a06117bd565b73ffffffffffffffffffffffffffffffffffffffff16146108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed90613fba565b60405180910390fd5b60005b828290508110156109e4576000600b549050600c54811115610950576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109479061411a565b60405180910390fd5b600b600081548092919061096390614494565b919050555061099984848481811061097e5761097d6145ca565b5b90506020020160208101906109939190613475565b82612259565b7f5782b4799a39cbe194d6ee862b9cfe3d8e4f9e741e3f122be89e778aba8b9fff816040516109c8919061415a565b60405180910390a15080806109dc90614494565b9150506108f9565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5c5750610a5b82612427565b5b9050919050565b606060008054610a7290614431565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9e90614431565b8015610aeb5780601f10610ac057610100808354040283529160200191610aeb565b820191906000526020600020905b815481529060010190602001808311610ace57829003601f168201915b5050505050905090565b6000610b0082612509565b610b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3690613f9a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b8582611486565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed9061403a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c15612251565b73ffffffffffffffffffffffffffffffffffffffff161480610c445750610c4381610c3e612251565b6120c5565b5b610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90613f1a565b60405180910390fd5b610c8d8383612575565b505050565b600d5481565b6000600880549050905090565b610cb6610cb0612251565b8261262e565b610cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cec9061405a565b60405180910390fd5b610d0083838361270c565b505050565b610d0d612251565b73ffffffffffffffffffffffffffffffffffffffff16610d2b6117bd565b73ffffffffffffffffffffffffffffffffffffffff1614610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890613fba565b60405180910390fd5b60005b82829050811015610e0e57600260116000858585818110610da857610da76145ca565b5b9050602002016020810190610dbd9190613475565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610e0690614494565b915050610d84565b505050565b6000610e1e836115d1565b8210610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5690613dda565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600c5481565b610ec6612251565b73ffffffffffffffffffffffffffffffffffffffff16610ee46117bd565b73ffffffffffffffffffffffffffffffffffffffff1614610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3190613fba565b60405180910390fd5b60004711610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490613eba565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fc3573d6000803e3d6000fd5b5050565b610fe283838360405180602001604052806000815250611e0e565b505050565b610fef612251565b73ffffffffffffffffffffffffffffffffffffffff1661100d6117bd565b73ffffffffffffffffffffffffffffffffffffffff1614611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a90613fba565b60405180910390fd5b80600d8190555050565b611075612251565b73ffffffffffffffffffffffffffffffffffffffff166110936117bd565b73ffffffffffffffffffffffffffffffffffffffff16146110e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e090613fba565b60405180910390fd5b60005b82829050811015611189576001601260008585858181106111105761110f6145ca565b5b90506020020160208101906111259190613475565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061118190614494565b9150506110ec565b505050565b601060009054906101000a900460ff1681565b601060029054906101000a900460ff166111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e79061407a565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661127c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127390613e3a565b60405180910390fd5b6000600b549050600c548111156112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf9061411a565b60405180910390fd5b600b60008154809291906112db90614494565b91905055506000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506113423382612259565b7f5782b4799a39cbe194d6ee862b9cfe3d8e4f9e741e3f122be89e778aba8b9fff81604051611371919061415a565b60405180910390a150565b6000611386610c98565b82106113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be906140ba565b60405180910390fd5b600882815481106113db576113da6145ca565b5b90600052602060002001549050919050565b6113f5612251565b73ffffffffffffffffffffffffffffffffffffffff166114136117bd565b73ffffffffffffffffffffffffffffffffffffffff1614611469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146090613fba565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690613f5a565b60405180910390fd5b80915050919050565b611540612251565b73ffffffffffffffffffffffffffffffffffffffff1661155e6117bd565b73ffffffffffffffffffffffffffffffffffffffff16146115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab90613fba565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163990613f3a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611691612251565b73ffffffffffffffffffffffffffffffffffffffff166116af6117bd565b73ffffffffffffffffffffffffffffffffffffffff1614611705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc90613fba565b60405180910390fd5b61170f6000612968565b565b611719612251565b73ffffffffffffffffffffffffffffffffffffffff166117376117bd565b73ffffffffffffffffffffffffffffffffffffffff161461178d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178490613fba565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b601060019054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546117f690614431565b80601f016020809104026020016040519081016040528092919081815260200182805461182290614431565b801561186f5780601f106118445761010080835404028352916020019161186f565b820191906000526020600020905b81548152906001019060200180831161185257829003601f168201915b5050505050905090565b600d548161188791906142db565b34146118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf906140da565b60405180910390fd5b60011515601060009054906101000a900460ff1615151415611a7c576000811180156118f5575060028111155b611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b9061413a565b60405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156119b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ad9061409a565b60405180910390fd5b6101f481600e546119c79190614254565b1115611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff90613efa565b60405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a579190614335565b9250508190555080600e6000828254611a709190614254565b92505081905550611b1c565b601060019054906101000a900460ff16611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac29061407a565b60405180910390fd5b600081118015611adc575060038111155b611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b12906140fa565b60405180910390fd5b5b60005b81811015611be0576000600b549050600c54811115611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a9061411a565b60405180910390fd5b600b6000815480929190611b8690614494565b9190505550611b953382612259565b7f5782b4799a39cbe194d6ee862b9cfe3d8e4f9e741e3f122be89e778aba8b9fff81604051611bc4919061415a565b60405180910390a1508080611bd890614494565b915050611b1f565b5050565b611bec612251565b73ffffffffffffffffffffffffffffffffffffffff16611c0a6117bd565b73ffffffffffffffffffffffffffffffffffffffff1614611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5790613fba565b60405180910390fd5b80600f9080519060200190611c7692919061321e565b5050565b611c82612251565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce790613e9a565b60405180910390fd5b8060056000611cfd612251565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611daa612251565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611def9190613d9d565b60405180910390a35050565b601060029054906101000a900460ff1681565b611e1f611e19612251565b8361262e565b611e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e559061405a565b60405180910390fd5b611e6a84848484612a2e565b50505050565b611e78612251565b73ffffffffffffffffffffffffffffffffffffffff16611e966117bd565b73ffffffffffffffffffffffffffffffffffffffff1614611eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee390613fba565b60405180910390fd5b6000601060026101000a81548160ff0219169083151502179055506000601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff021916908315150217905550565b611f47612251565b73ffffffffffffffffffffffffffffffffffffffff16611f656117bd565b73ffffffffffffffffffffffffffffffffffffffff1614611fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb290613fba565b60405180910390fd5b47811115611ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff59061401a565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612044573d6000803e3d6000fd5b505050565b606061205482612509565b612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a90613ffa565b60405180910390fd5b600f61209e83612a8a565b6040516020016120af929190613d12565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612161612251565b73ffffffffffffffffffffffffffffffffffffffff1661217f6117bd565b73ffffffffffffffffffffffffffffffffffffffff16146121d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cc90613fba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223c90613e1a565b60405180910390fd5b61224e81612968565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c090613f7a565b60405180910390fd5b6122d281612509565b15612312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230990613e5a565b60405180910390fd5b61231e60008383612beb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461236e9190614254565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124f257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612502575061250182612cff565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125e883611486565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061263982612509565b612678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266f90613eda565b60405180910390fd5b600061268383611486565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126f257508373ffffffffffffffffffffffffffffffffffffffff166126da84610af5565b73ffffffffffffffffffffffffffffffffffffffff16145b80612703575061270281856120c5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661272c82611486565b73ffffffffffffffffffffffffffffffffffffffff1614612782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277990613fda565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e990613e7a565b60405180910390fd5b6127fd838383612beb565b612808600082612575565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128589190614335565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128af9190614254565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a3984848461270c565b612a4584848484612d69565b612a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7b90613dfa565b60405180910390fd5b50505050565b60606000821415612ad2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612be6565b600082905060005b60008214612b04578080612aed90614494565b915050600a82612afd91906142aa565b9150612ada565b60008167ffffffffffffffff811115612b2057612b1f6145f9565b5b6040519080825280601f01601f191660200182016040528015612b525781602001600182028036833780820191505090505b5090505b60008514612bdf57600182612b6b9190614335565b9150600a85612b7a91906144dd565b6030612b869190614254565b60f81b818381518110612b9c57612b9b6145ca565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bd891906142aa565b9450612b56565b8093505050505b919050565b612bf6838383612f00565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c3957612c3481612f05565b612c78565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612c7757612c768382612f4e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cbb57612cb6816130bb565b612cfa565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612cf957612cf8828261318c565b5b5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000612d8a8473ffffffffffffffffffffffffffffffffffffffff1661320b565b15612ef3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612db3612251565b8786866040518563ffffffff1660e01b8152600401612dd59493929190613d51565b602060405180830381600087803b158015612def57600080fd5b505af1925050508015612e2057506040513d601f19601f82011682018060405250810190612e1d919061374c565b60015b612ea3573d8060008114612e50576040519150601f19603f3d011682016040523d82523d6000602084013e612e55565b606091505b50600081511415612e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9290613dfa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ef8565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612f5b846115d1565b612f659190614335565b905060006007600084815260200190815260200160002054905081811461304a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506130cf9190614335565b90506000600960008481526020019081526020016000205490506000600883815481106130ff576130fe6145ca565b5b906000526020600020015490508060088381548110613121576131206145ca565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806131705761316f61459b565b5b6001900381819060005260206000200160009055905550505050565b6000613197836115d1565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461322a90614431565b90600052602060002090601f01602090048101928261324c5760008555613293565b82601f1061326557805160ff1916838001178555613293565b82800160010185558215613293579182015b82811115613292578251825591602001919060010190613277565b5b5090506132a091906132a4565b5090565b5b808211156132bd5760008160009055506001016132a5565b5090565b60006132d46132cf8461419a565b614175565b9050828152602081018484840111156132f0576132ef614637565b5b6132fb8482856143ef565b509392505050565b6000613316613311846141cb565b614175565b90508281526020810184848401111561333257613331614637565b5b61333d8482856143ef565b509392505050565b60008135905061335481614d7f565b92915050565b60008135905061336981614d96565b92915050565b60008083601f8401126133855761338461462d565b5b8235905067ffffffffffffffff8111156133a2576133a1614628565b5b6020830191508360208202830111156133be576133bd614632565b5b9250929050565b6000813590506133d481614dad565b92915050565b6000813590506133e981614dc4565b92915050565b6000815190506133fe81614dc4565b92915050565b600082601f8301126134195761341861462d565b5b81356134298482602086016132c1565b91505092915050565b600082601f8301126134475761344661462d565b5b8135613457848260208601613303565b91505092915050565b60008135905061346f81614ddb565b92915050565b60006020828403121561348b5761348a614641565b5b600061349984828501613345565b91505092915050565b6000602082840312156134b8576134b7614641565b5b60006134c68482850161335a565b91505092915050565b600080604083850312156134e6576134e5614641565b5b60006134f48582860161335a565b925050602061350585828601613460565b9150509250929050565b6000806040838503121561352657613525614641565b5b600061353485828601613345565b925050602061354585828601613345565b9150509250929050565b60008060006060848603121561356857613567614641565b5b600061357686828701613345565b935050602061358786828701613345565b925050604061359886828701613460565b9150509250925092565b600080600080608085870312156135bc576135bb614641565b5b60006135ca87828801613345565b94505060206135db87828801613345565b93505060406135ec87828801613460565b925050606085013567ffffffffffffffff81111561360d5761360c61463c565b5b61361987828801613404565b91505092959194509250565b6000806040838503121561363c5761363b614641565b5b600061364a85828601613345565b925050602061365b858286016133c5565b9150509250929050565b6000806040838503121561367c5761367b614641565b5b600061368a85828601613345565b925050602061369b85828601613460565b9150509250929050565b600080602083850312156136bc576136bb614641565b5b600083013567ffffffffffffffff8111156136da576136d961463c565b5b6136e68582860161336f565b92509250509250929050565b60006020828403121561370857613707614641565b5b6000613716848285016133c5565b91505092915050565b60006020828403121561373557613734614641565b5b6000613743848285016133da565b91505092915050565b60006020828403121561376257613761614641565b5b6000613770848285016133ef565b91505092915050565b60006020828403121561378f5761378e614641565b5b600082013567ffffffffffffffff8111156137ad576137ac61463c565b5b6137b984828501613432565b91505092915050565b6000602082840312156137d8576137d7614641565b5b60006137e684828501613460565b91505092915050565b6137f881614369565b82525050565b6138078161438d565b82525050565b600061381882614211565b6138228185614227565b93506138328185602086016143fe565b61383b81614646565b840191505092915050565b60006138518261421c565b61385b8185614238565b935061386b8185602086016143fe565b61387481614646565b840191505092915050565b600061388a8261421c565b6138948185614249565b93506138a48185602086016143fe565b80840191505092915050565b600081546138bd81614431565b6138c78186614249565b945060018216600081146138e257600181146138f357613926565b60ff19831686528186019350613926565b6138fc856141fc565b60005b8381101561391e578154818901526001820191506020810190506138ff565b838801955050505b50505092915050565b600061393c602b83614238565b915061394782614657565b604082019050919050565b600061395f603283614238565b915061396a826146a6565b604082019050919050565b6000613982602683614238565b915061398d826146f5565b604082019050919050565b60006139a5603683614238565b91506139b082614744565b604082019050919050565b60006139c8601c83614238565b91506139d382614793565b602082019050919050565b60006139eb602483614238565b91506139f6826147bc565b604082019050919050565b6000613a0e601983614238565b9150613a198261480b565b602082019050919050565b6000613a31601483614238565b9150613a3c82614834565b602082019050919050565b6000613a54602c83614238565b9150613a5f8261485d565b604082019050919050565b6000613a77603a83614238565b9150613a82826148ac565b604082019050919050565b6000613a9a603883614238565b9150613aa5826148fb565b604082019050919050565b6000613abd602a83614238565b9150613ac88261494a565b604082019050919050565b6000613ae0602983614238565b9150613aeb82614999565b604082019050919050565b6000613b03602083614238565b9150613b0e826149e8565b602082019050919050565b6000613b26602c83614238565b9150613b3182614a11565b604082019050919050565b6000613b49602083614238565b9150613b5482614a60565b602082019050919050565b6000613b6c602983614238565b9150613b7782614a89565b604082019050919050565b6000613b8f602f83614238565b9150613b9a82614ad8565b604082019050919050565b6000613bb2602683614238565b9150613bbd82614b27565b604082019050919050565b6000613bd5602183614238565b9150613be082614b76565b604082019050919050565b6000613bf8603183614238565b9150613c0382614bc5565b604082019050919050565b6000613c1b601183614238565b9150613c2682614c14565b602082019050919050565b6000613c3e603a83614238565b9150613c4982614c3d565b604082019050919050565b6000613c61602c83614238565b9150613c6c82614c8c565b604082019050919050565b6000613c84601883614238565b9150613c8f82614cdb565b602082019050919050565b6000613ca7601a83614238565b9150613cb282614d04565b602082019050919050565b6000613cca601b83614238565b9150613cd582614d2d565b602082019050919050565b6000613ced600e83614238565b9150613cf882614d56565b602082019050919050565b613d0c816143e5565b82525050565b6000613d1e82856138b0565b9150613d2a828461387f565b91508190509392505050565b6000602082019050613d4b60008301846137ef565b92915050565b6000608082019050613d6660008301876137ef565b613d7360208301866137ef565b613d806040830185613d03565b8181036060830152613d92818461380d565b905095945050505050565b6000602082019050613db260008301846137fe565b92915050565b60006020820190508181036000830152613dd28184613846565b905092915050565b60006020820190508181036000830152613df38161392f565b9050919050565b60006020820190508181036000830152613e1381613952565b9050919050565b60006020820190508181036000830152613e3381613975565b9050919050565b60006020820190508181036000830152613e5381613998565b9050919050565b60006020820190508181036000830152613e73816139bb565b9050919050565b60006020820190508181036000830152613e93816139de565b9050919050565b60006020820190508181036000830152613eb381613a01565b9050919050565b60006020820190508181036000830152613ed381613a24565b9050919050565b60006020820190508181036000830152613ef381613a47565b9050919050565b60006020820190508181036000830152613f1381613a6a565b9050919050565b60006020820190508181036000830152613f3381613a8d565b9050919050565b60006020820190508181036000830152613f5381613ab0565b9050919050565b60006020820190508181036000830152613f7381613ad3565b9050919050565b60006020820190508181036000830152613f9381613af6565b9050919050565b60006020820190508181036000830152613fb381613b19565b9050919050565b60006020820190508181036000830152613fd381613b3c565b9050919050565b60006020820190508181036000830152613ff381613b5f565b9050919050565b6000602082019050818103600083015261401381613b82565b9050919050565b6000602082019050818103600083015261403381613ba5565b9050919050565b6000602082019050818103600083015261405381613bc8565b9050919050565b6000602082019050818103600083015261407381613beb565b9050919050565b6000602082019050818103600083015261409381613c0e565b9050919050565b600060208201905081810360008301526140b381613c31565b9050919050565b600060208201905081810360008301526140d381613c54565b9050919050565b600060208201905081810360008301526140f381613c77565b9050919050565b6000602082019050818103600083015261411381613c9a565b9050919050565b6000602082019050818103600083015261413381613cbd565b9050919050565b6000602082019050818103600083015261415381613ce0565b9050919050565b600060208201905061416f6000830184613d03565b92915050565b600061417f614190565b905061418b8282614463565b919050565b6000604051905090565b600067ffffffffffffffff8211156141b5576141b46145f9565b5b6141be82614646565b9050602081019050919050565b600067ffffffffffffffff8211156141e6576141e56145f9565b5b6141ef82614646565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061425f826143e5565b915061426a836143e5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561429f5761429e61450e565b5b828201905092915050565b60006142b5826143e5565b91506142c0836143e5565b9250826142d0576142cf61453d565b5b828204905092915050565b60006142e6826143e5565b91506142f1836143e5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561432a5761432961450e565b5b828202905092915050565b6000614340826143e5565b915061434b836143e5565b92508282101561435e5761435d61450e565b5b828203905092915050565b6000614374826143c5565b9050919050565b6000614386826143c5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561441c578082015181840152602081019050614401565b8381111561442b576000848401525b50505050565b6000600282049050600182168061444957607f821691505b6020821081141561445d5761445c61456c565b5b50919050565b61446c82614646565b810181811067ffffffffffffffff8211171561448b5761448a6145f9565b5b80604052505050565b600061449f826143e5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144d2576144d161450e565b5b600182019050919050565b60006144e8826143e5565b91506144f3836143e5565b9250826145035761450261453d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74206f6e207072652d617070726f76656420636c61696d206c697374206f60008201527f72206861766520616c726561647920636c61696d656400000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f2066756e647320746f207769746864726177000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d696e74696e672074686174206d616e7920776f756c6420657863656564207060008201527f72652073616c65206d696e74696e6720616c6c6f636174696f6e000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5769746864726177616c20616d6f756e742067726561746572207468616e206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f49742773206e6f742074696d6520796574000000000000000000000000000000600082015250565b7f4e6f74206f6e2077686974656c697374206f72206d6178696d756d206f66203260008201527f206d696e747320706572206164647265737320616c6c6f776564000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e636f72726563742066756e647320737570706c6965640000000000000000600082015250565b7f4d6178696d756d206f662033206d696e747320616c6c6f776564000000000000600082015250565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b7f32206d696e74206d6178696d756d000000000000000000000000000000000000600082015250565b614d8881614369565b8114614d9357600080fd5b50565b614d9f8161437b565b8114614daa57600080fd5b50565b614db68161438d565b8114614dc157600080fd5b50565b614dcd81614399565b8114614dd857600080fd5b50565b614de4816143e5565b8114614def57600080fd5b5056fea264697066735822122050a415d375609441b867f8836182e86f176d483998bf5a90a9913324dbf0bd6064736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f4e4654424f5920436f6e736f6c6573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064e4654424f590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f636f6e736f6c65732d6170692e706c61796e6674626f792e636f6d2f636f6e736f6c65732f00000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): NFTBOY Consoles
Arg [1] : _symbol (string): NFTBOY
Arg [2] : _uri (string): https://consoles-api.playnftboy.com/consoles/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 4e4654424f5920436f6e736f6c65730000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 4e4654424f590000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000002d
Arg [8] : 68747470733a2f2f636f6e736f6c65732d6170692e706c61796e6674626f792e
Arg [9] : 636f6d2f636f6e736f6c65732f00000000000000000000000000000000000000


Deployed Bytecode Sourcemap

43352:6898:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48491:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36967:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24859:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26418:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25941:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43503:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37607:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27308:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47760:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37275:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43463:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47375:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27718:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49164:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48137:191;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43687:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45739:536;;;;;;;;;;;;;:::i;:::-;;37797:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49379:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24553:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49842:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24283:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4558:94;;;;;;;;;;;;;:::i;:::-;;49614:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43727:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3907:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25028:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44360:1288;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48913:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26711:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43771:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27974:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50081:154;;;;;;;;;;;;;:::i;:::-;;46994:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46440:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27077:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4807:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48491:362;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48567:6:::1;48562:274;48579:3;;:10;;48577:1;:12;48562:274;;;48611:12;48626:14;;48611:29;;48674:10;;48663:7;:21;;48655:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48731:14;;:16;;;;;;;;;:::i;:::-;;;;;;48762:22;48768:3;;48772:1;48768:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;48776:7;48762:5;:22::i;:::-;48804:20;48816:7;48804:20;;;;;;:::i;:::-;;;;;;;;48596:240;48591:3;;;;;:::i;:::-;;;;48562:274;;;;48491:362:::0;;:::o;36967:224::-;37069:4;37108:35;37093:50;;;:11;:50;;;;:90;;;;37147:36;37171:11;37147:23;:36::i;:::-;37093:90;37086:97;;36967:224;;;:::o;24859:100::-;24913:13;24946:5;24939:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24859:100;:::o;26418:221::-;26494:7;26522:16;26530:7;26522;:16::i;:::-;26514:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26607:15;:24;26623:7;26607:24;;;;;;;;;;;;;;;;;;;;;26600:31;;26418:221;;;:::o;25941:411::-;26022:13;26038:23;26053:7;26038:14;:23::i;:::-;26022:39;;26086:5;26080:11;;:2;:11;;;;26072:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26180:5;26164:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26189:37;26206:5;26213:12;:10;:12::i;:::-;26189:16;:37::i;:::-;26164:62;26142:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;26323:21;26332:2;26336:7;26323:8;:21::i;:::-;26011:341;25941:411;;:::o;43503:39::-;;;;:::o;37607:113::-;37668:7;37695:10;:17;;;;37688:24;;37607:113;:::o;27308:339::-;27503:41;27522:12;:10;:12::i;:::-;27536:7;27503:18;:41::i;:::-;27495:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27611:28;27621:4;27627:2;27631:7;27611:9;:28::i;:::-;27308:339;;;:::o;47760:192::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47854:6:::1;47849:96;47866:10;;:17;;47864:1;:19;47849:96;;;47932:1;47905:9;:24;47915:10;;47926:1;47915:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;47905:24;;;;;;;;;;;;;;;:28;;;;47885:3;;;;;:::i;:::-;;;;47849:96;;;;47760:192:::0;;:::o;37275:256::-;37372:7;37408:23;37425:5;37408:16;:23::i;:::-;37400:5;:31;37392:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37497:12;:19;37510:5;37497:19;;;;;;;;;;;;;;;:26;37517:5;37497:26;;;;;;;;;;;;37490:33;;37275:256;;;;:::o;43463:32::-;;;;:::o;47375:189::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47484:1:::1;47460:21;:25;47452:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;47521:3;:12;;:35;47534:21;47521:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;47375:189:::0;:::o;27718:185::-;27856:39;27873:4;27879:2;27883:7;27856:39;;;;;;;;;;;;:16;:39::i;:::-;27718:185;;;:::o;49164:85::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49233:8:::1;49226:4;:15;;;;49164:85:::0;:::o;48137:191::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48227:6:::1;48222:99;48239:10;;:17;;48237:1;:19;48222:99;;;48305:4;48278:9;:24;48288:10;;48299:1;48288:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;48278:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;48258:3;;;;;:::i;:::-;;;;48222:99;;;;48137:191:::0;;:::o;43687:33::-;;;;;;;;;;;;;:::o;45739:536::-;45794:11;;;;;;;;;;;45786:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;45874:9;:21;45884:10;45874:21;;;;;;;;;;;;;;;;;;;;;;;;;45866:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;45975:12;45990:14;;45975:29;;46034:10;;46023:7;:21;;46015:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;46087:14;;:16;;;;;;;;;:::i;:::-;;;;;;46138:5;46114:9;:21;46124:10;46114:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;46205:26;46211:10;46223:7;46205:5;:26::i;:::-;46247:20;46259:7;46247:20;;;;;;:::i;:::-;;;;;;;;45765:510;45739:536::o;37797:233::-;37872:7;37908:30;:28;:30::i;:::-;37900:5;:38;37892:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;38005:10;38016:5;38005:17;;;;;;;;:::i;:::-;;;;;;;;;;37998:24;;37797:233;;;:::o;49379:101::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49465:7:::1;49449:13;;:23;;;;;;;;;;;;;;;;;;49379:101:::0;:::o;24553:239::-;24625:7;24645:13;24661:7;:16;24669:7;24661:16;;;;;;;;;;;;;;;;;;;;;24645:32;;24713:1;24696:19;;:5;:19;;;;24688:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24779:5;24772:12;;;24553:239;;;:::o;49842:97::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49924:7:::1;49910:11;;:21;;;;;;;;;;;;;;;;;;49842:97:::0;:::o;24283:208::-;24355:7;24400:1;24383:19;;:5;:19;;;;24375:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;24467:9;:16;24477:5;24467:16;;;;;;;;;;;;;;;;24460:23;;24283:208;;;:::o;4558:94::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4623:21:::1;4641:1;4623:9;:21::i;:::-;4558:94::o:0;49614:109::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49708:7:::1;49688:17;;:27;;;;;;;;;;;;;;;;;;49614:109:::0;:::o;43727:37::-;;;;;;;;;;;;;:::o;3907:87::-;3953:7;3980:6;;;;;;;;;;;3973:13;;3907:87;:::o;25028:104::-;25084:13;25117:7;25110:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25028:104;:::o;44360:1288::-;44454:4;;44447;:11;;;;:::i;:::-;44434:9;:24;44426:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;44542:4;44525:21;;:13;;;;;;;;;;;:21;;;44521:807;;;44578:1;44571:4;:8;:20;;;;;44590:1;44583:4;:8;;44571:20;44563:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;44658:4;44633:9;:21;44643:10;44633:21;;;;;;;;;;;;;;;;:29;;44625:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;44837:3;44829:4;44809:17;;:24;;;;:::i;:::-;:31;;44801:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;44990:4;44965:9;:21;44975:10;44965:21;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;45104:4;45083:17;;:25;;;;;;;:::i;:::-;;;;;;;;44521:807;;;45150:17;;;;;;;;;;;45142:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;45250:1;45243:4;:8;:21;;;;;45263:1;45255:4;:9;;45243:21;45235:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;44521:807;45353:9;45348:293;45372:4;45368:1;:8;45348:293;;;45398:12;45413:14;;45398:29;;45461:10;;45450:7;:21;;45442:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;45518:14;;:16;;;;;;;;;:::i;:::-;;;;;;45549:26;45555:10;45567:7;45549:5;:26::i;:::-;45595:20;45607:7;45595:20;;;;;;:::i;:::-;;;;;;;;45383:258;45378:3;;;;;:::i;:::-;;;;45348:293;;;;44360:1288;:::o;48913:111::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49005:11:::1;48990:12;:26;;;;;;;;;;;;:::i;:::-;;48913:111:::0;:::o;26711:295::-;26826:12;:10;:12::i;:::-;26814:24;;:8;:24;;;;26806:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26926:8;26881:18;:32;26900:12;:10;:12::i;:::-;26881:32;;;;;;;;;;;;;;;:42;26914:8;26881:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26979:8;26950:48;;26965:12;:10;:12::i;:::-;26950:48;;;26989:8;26950:48;;;;;;:::i;:::-;;;;;;;;26711:295;;:::o;43771:31::-;;;;;;;;;;;;;:::o;27974:328::-;28149:41;28168:12;:10;:12::i;:::-;28182:7;28149:18;:41::i;:::-;28141:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28255:39;28269:4;28275:2;28279:7;28288:5;28255:13;:39::i;:::-;27974:328;;;;:::o;50081:154::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50155:5:::1;50141:11;;:19;;;;;;;;;;;;;;;;;;50187:5;50171:13;;:21;;;;;;;;;;;;;;;;;;50223:4;50203:17;;:24;;;;;;;;;;;;;;;;;;50081:154::o:0;46994:211::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47101:21:::1;47090:7;:32;;47082:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;47176:3;:12;;:21;47189:7;47176:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;46994:211:::0;;:::o;46440:260::-;46505:13;46539:17;46547:8;46539:7;:17::i;:::-;46531:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;46650:12;46664:26;46681:8;46664:16;:26::i;:::-;46633:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46619:73;;46440:260;;;:::o;27077:164::-;27174:4;27198:18;:25;27217:5;27198:25;;;;;;;;;;;;;;;:35;27224:8;27198:35;;;;;;;;;;;;;;;;;;;;;;;;;27191:42;;27077:164;;;;:::o;4807:192::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4916:1:::1;4896:22;;:8;:22;;;;4888:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4972:19;4982:8;4972:9;:19::i;:::-;4807:192:::0;:::o;2695:98::-;2748:7;2775:10;2768:17;;2695:98;:::o;31790:382::-;31884:1;31870:16;;:2;:16;;;;31862:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31943:16;31951:7;31943;:16::i;:::-;31942:17;31934:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32005:45;32034:1;32038:2;32042:7;32005:20;:45::i;:::-;32080:1;32063:9;:13;32073:2;32063:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32111:2;32092:7;:16;32100:7;32092:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32156:7;32152:2;32131:33;;32148:1;32131:33;;;;;;;;;;;;31790:382;;:::o;23914:305::-;24016:4;24068:25;24053:40;;;:11;:40;;;;:105;;;;24125:33;24110:48;;;:11;:48;;;;24053:105;:158;;;;24175:36;24199:11;24175:23;:36::i;:::-;24053:158;24033:178;;23914:305;;;:::o;29812:127::-;29877:4;29929:1;29901:30;;:7;:16;29909:7;29901:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29894:37;;29812:127;;;:::o;33794:174::-;33896:2;33869:15;:24;33885:7;33869:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33952:7;33948:2;33914:46;;33923:23;33938:7;33923:14;:23::i;:::-;33914:46;;;;;;;;;;;;33794:174;;:::o;30106:348::-;30199:4;30224:16;30232:7;30224;:16::i;:::-;30216:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30300:13;30316:23;30331:7;30316:14;:23::i;:::-;30300:39;;30369:5;30358:16;;:7;:16;;;:51;;;;30402:7;30378:31;;:20;30390:7;30378:11;:20::i;:::-;:31;;;30358:51;:87;;;;30413:32;30430:5;30437:7;30413:16;:32::i;:::-;30358:87;30350:96;;;30106:348;;;;:::o;33098:578::-;33257:4;33230:31;;:23;33245:7;33230:14;:23::i;:::-;:31;;;33222:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;33340:1;33326:16;;:2;:16;;;;33318:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;33396:39;33417:4;33423:2;33427:7;33396:20;:39::i;:::-;33500:29;33517:1;33521:7;33500:8;:29::i;:::-;33561:1;33542:9;:15;33552:4;33542:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33590:1;33573:9;:13;33583:2;33573:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33621:2;33602:7;:16;33610:7;33602:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33660:7;33656:2;33641:27;;33650:4;33641:27;;;;;;;;;;;;33098:578;;;:::o;5007:173::-;5063:16;5082:6;;;;;;;;;;;5063:25;;5108:8;5099:6;;:17;;;;;;;;;;;;;;;;;;5163:8;5132:40;;5153:8;5132:40;;;;;;;;;;;;5052:128;5007:173;:::o;29184:315::-;29341:28;29351:4;29357:2;29361:7;29341:9;:28::i;:::-;29388:48;29411:4;29417:2;29421:7;29430:5;29388:22;:48::i;:::-;29380:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29184:315;;;;:::o;311:723::-;367:13;597:1;588:5;:10;584:53;;;615:10;;;;;;;;;;;;;;;;;;;;;584:53;647:12;662:5;647:20;;678:14;703:78;718:1;710:4;:9;703:78;;736:8;;;;;:::i;:::-;;;;767:2;759:10;;;;;:::i;:::-;;;703:78;;;791:19;823:6;813:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;791:39;;841:154;857:1;848:5;:10;841:154;;885:1;875:11;;;;;:::i;:::-;;;952:2;944:5;:10;;;;:::i;:::-;931:2;:24;;;;:::i;:::-;918:39;;901:6;908;901:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;841:154;;;1019:6;1005:21;;;;;311:723;;;;:::o;38643:589::-;38787:45;38814:4;38820:2;38824:7;38787:26;:45::i;:::-;38865:1;38849:18;;:4;:18;;;38845:187;;;38884:40;38916:7;38884:31;:40::i;:::-;38845:187;;;38954:2;38946:10;;:4;:10;;;38942:90;;38973:47;39006:4;39012:7;38973:32;:47::i;:::-;38942:90;38845:187;39060:1;39046:16;;:2;:16;;;39042:183;;;39079:45;39116:7;39079:36;:45::i;:::-;39042:183;;;39152:4;39146:10;;:2;:10;;;39142:83;;39173:40;39201:2;39205:7;39173:27;:40::i;:::-;39142:83;39042:183;38643:589;;;:::o;15893:157::-;15978:4;16017:25;16002:40;;;:11;:40;;;;15995:47;;15893:157;;;:::o;34533:799::-;34688:4;34709:15;:2;:13;;;:15::i;:::-;34705:620;;;34761:2;34745:36;;;34782:12;:10;:12::i;:::-;34796:4;34802:7;34811:5;34745:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34741:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35004:1;34987:6;:13;:18;34983:272;;;35030:60;;;;;;;;;;:::i;:::-;;;;;;;;34983:272;35205:6;35199:13;35190:6;35186:2;35182:15;35175:38;34741:529;34878:41;;;34868:51;;;:6;:51;;;;34861:58;;;;;34705:620;35309:4;35302:11;;34533:799;;;;;;;:::o;35904:126::-;;;;:::o;39955:164::-;40059:10;:17;;;;40032:15;:24;40048:7;40032:24;;;;;;;;;;;:44;;;;40087:10;40103:7;40087:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39955:164;:::o;40746:988::-;41012:22;41062:1;41037:22;41054:4;41037:16;:22::i;:::-;:26;;;;:::i;:::-;41012:51;;41074:18;41095:17;:26;41113:7;41095:26;;;;;;;;;;;;41074:47;;41242:14;41228:10;:28;41224:328;;41273:19;41295:12;:18;41308:4;41295:18;;;;;;;;;;;;;;;:34;41314:14;41295:34;;;;;;;;;;;;41273:56;;41379:11;41346:12;:18;41359:4;41346:18;;;;;;;;;;;;;;;:30;41365:10;41346:30;;;;;;;;;;;:44;;;;41496:10;41463:17;:30;41481:11;41463:30;;;;;;;;;;;:43;;;;41258:294;41224:328;41648:17;:26;41666:7;41648:26;;;;;;;;;;;41641:33;;;41692:12;:18;41705:4;41692:18;;;;;;;;;;;;;;;:34;41711:14;41692:34;;;;;;;;;;;41685:41;;;40827:907;;40746:988;;:::o;42029:1079::-;42282:22;42327:1;42307:10;:17;;;;:21;;;;:::i;:::-;42282:46;;42339:18;42360:15;:24;42376:7;42360:24;;;;;;;;;;;;42339:45;;42711:19;42733:10;42744:14;42733:26;;;;;;;;:::i;:::-;;;;;;;;;;42711:48;;42797:11;42772:10;42783;42772:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;42908:10;42877:15;:28;42893:11;42877:28;;;;;;;;;;;:41;;;;43049:15;:24;43065:7;43049:24;;;;;;;;;;;43042:31;;;43084:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42100:1008;;;42029:1079;:::o;39533:221::-;39618:14;39635:20;39652:2;39635:16;:20::i;:::-;39618:37;;39693:7;39666:12;:16;39679:2;39666:16;;;;;;;;;;;;;;;:24;39683:6;39666:24;;;;;;;;;;;:34;;;;39740:6;39711:17;:26;39729:7;39711:26;;;;;;;;;;;:35;;;;39607:147;39533:221;;:::o;5953:387::-;6013:4;6221:12;6288:7;6276:20;6268:28;;6331:1;6324:4;:8;6317:15;;;5953:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:155::-;1040:5;1078:6;1065:20;1056:29;;1094:41;1129:5;1094:41;:::i;:::-;986:155;;;;:::o;1164:568::-;1237:8;1247:6;1297:3;1290:4;1282:6;1278:17;1274:27;1264:122;;1305:79;;:::i;:::-;1264:122;1418:6;1405:20;1395:30;;1448:18;1440:6;1437:30;1434:117;;;1470:79;;:::i;:::-;1434:117;1584:4;1576:6;1572:17;1560:29;;1638:3;1630:4;1622:6;1618:17;1608:8;1604:32;1601:41;1598:128;;;1645:79;;:::i;:::-;1598:128;1164:568;;;;;:::o;1738:133::-;1781:5;1819:6;1806:20;1797:29;;1835:30;1859:5;1835:30;:::i;:::-;1738:133;;;;:::o;1877:137::-;1922:5;1960:6;1947:20;1938:29;;1976:32;2002:5;1976:32;:::i;:::-;1877:137;;;;:::o;2020:141::-;2076:5;2107:6;2101:13;2092:22;;2123:32;2149:5;2123:32;:::i;:::-;2020:141;;;;:::o;2180:338::-;2235:5;2284:3;2277:4;2269:6;2265:17;2261:27;2251:122;;2292:79;;:::i;:::-;2251:122;2409:6;2396:20;2434:78;2508:3;2500:6;2493:4;2485:6;2481:17;2434:78;:::i;:::-;2425:87;;2241:277;2180:338;;;;:::o;2538:340::-;2594:5;2643:3;2636:4;2628:6;2624:17;2620:27;2610:122;;2651:79;;:::i;:::-;2610:122;2768:6;2755:20;2793:79;2868:3;2860:6;2853:4;2845:6;2841:17;2793:79;:::i;:::-;2784:88;;2600:278;2538:340;;;;:::o;2884:139::-;2930:5;2968:6;2955:20;2946:29;;2984:33;3011:5;2984:33;:::i;:::-;2884:139;;;;:::o;3029:329::-;3088:6;3137:2;3125:9;3116:7;3112:23;3108:32;3105:119;;;3143:79;;:::i;:::-;3105:119;3263:1;3288:53;3333:7;3324:6;3313:9;3309:22;3288:53;:::i;:::-;3278:63;;3234:117;3029:329;;;;:::o;3364:345::-;3431:6;3480:2;3468:9;3459:7;3455:23;3451:32;3448:119;;;3486:79;;:::i;:::-;3448:119;3606:1;3631:61;3684:7;3675:6;3664:9;3660:22;3631:61;:::i;:::-;3621:71;;3577:125;3364:345;;;;:::o;3715:490::-;3791:6;3799;3848:2;3836:9;3827:7;3823:23;3819:32;3816:119;;;3854:79;;:::i;:::-;3816:119;3974:1;3999:61;4052:7;4043:6;4032:9;4028:22;3999:61;:::i;:::-;3989:71;;3945:125;4109:2;4135:53;4180:7;4171:6;4160:9;4156:22;4135:53;:::i;:::-;4125:63;;4080:118;3715:490;;;;;:::o;4211:474::-;4279:6;4287;4336:2;4324:9;4315:7;4311:23;4307:32;4304:119;;;4342:79;;:::i;:::-;4304:119;4462:1;4487:53;4532:7;4523:6;4512:9;4508:22;4487:53;:::i;:::-;4477:63;;4433:117;4589:2;4615:53;4660:7;4651:6;4640:9;4636:22;4615:53;:::i;:::-;4605:63;;4560:118;4211:474;;;;;:::o;4691:619::-;4768:6;4776;4784;4833:2;4821:9;4812:7;4808:23;4804:32;4801:119;;;4839:79;;:::i;:::-;4801:119;4959:1;4984:53;5029:7;5020:6;5009:9;5005:22;4984:53;:::i;:::-;4974:63;;4930:117;5086:2;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5057:118;5214:2;5240:53;5285:7;5276:6;5265:9;5261:22;5240:53;:::i;:::-;5230:63;;5185:118;4691:619;;;;;:::o;5316:943::-;5411:6;5419;5427;5435;5484:3;5472:9;5463:7;5459:23;5455:33;5452:120;;;5491:79;;:::i;:::-;5452:120;5611:1;5636:53;5681:7;5672:6;5661:9;5657:22;5636:53;:::i;:::-;5626:63;;5582:117;5738:2;5764:53;5809:7;5800:6;5789:9;5785:22;5764:53;:::i;:::-;5754:63;;5709:118;5866:2;5892:53;5937:7;5928:6;5917:9;5913:22;5892:53;:::i;:::-;5882:63;;5837:118;6022:2;6011:9;6007:18;5994:32;6053:18;6045:6;6042:30;6039:117;;;6075:79;;:::i;:::-;6039:117;6180:62;6234:7;6225:6;6214:9;6210:22;6180:62;:::i;:::-;6170:72;;5965:287;5316:943;;;;;;;:::o;6265:468::-;6330:6;6338;6387:2;6375:9;6366:7;6362:23;6358:32;6355:119;;;6393:79;;:::i;:::-;6355:119;6513:1;6538:53;6583:7;6574:6;6563:9;6559:22;6538:53;:::i;:::-;6528:63;;6484:117;6640:2;6666:50;6708:7;6699:6;6688:9;6684:22;6666:50;:::i;:::-;6656:60;;6611:115;6265:468;;;;;:::o;6739:474::-;6807:6;6815;6864:2;6852:9;6843:7;6839:23;6835:32;6832:119;;;6870:79;;:::i;:::-;6832:119;6990:1;7015:53;7060:7;7051:6;7040:9;7036:22;7015:53;:::i;:::-;7005:63;;6961:117;7117:2;7143:53;7188:7;7179:6;7168:9;7164:22;7143:53;:::i;:::-;7133:63;;7088:118;6739:474;;;;;:::o;7219:559::-;7305:6;7313;7362:2;7350:9;7341:7;7337:23;7333:32;7330:119;;;7368:79;;:::i;:::-;7330:119;7516:1;7505:9;7501:17;7488:31;7546:18;7538:6;7535:30;7532:117;;;7568:79;;:::i;:::-;7532:117;7681:80;7753:7;7744:6;7733:9;7729:22;7681:80;:::i;:::-;7663:98;;;;7459:312;7219:559;;;;;:::o;7784:323::-;7840:6;7889:2;7877:9;7868:7;7864:23;7860:32;7857:119;;;7895:79;;:::i;:::-;7857:119;8015:1;8040:50;8082:7;8073:6;8062:9;8058:22;8040:50;:::i;:::-;8030:60;;7986:114;7784:323;;;;:::o;8113:327::-;8171:6;8220:2;8208:9;8199:7;8195:23;8191:32;8188:119;;;8226:79;;:::i;:::-;8188:119;8346:1;8371:52;8415:7;8406:6;8395:9;8391:22;8371:52;:::i;:::-;8361:62;;8317:116;8113:327;;;;:::o;8446:349::-;8515:6;8564:2;8552:9;8543:7;8539:23;8535:32;8532:119;;;8570:79;;:::i;:::-;8532:119;8690:1;8715:63;8770:7;8761:6;8750:9;8746:22;8715:63;:::i;:::-;8705:73;;8661:127;8446:349;;;;:::o;8801:509::-;8870:6;8919:2;8907:9;8898:7;8894:23;8890:32;8887:119;;;8925:79;;:::i;:::-;8887:119;9073:1;9062:9;9058:17;9045:31;9103:18;9095:6;9092:30;9089:117;;;9125:79;;:::i;:::-;9089:117;9230:63;9285:7;9276:6;9265:9;9261:22;9230:63;:::i;:::-;9220:73;;9016:287;8801:509;;;;:::o;9316:329::-;9375:6;9424:2;9412:9;9403:7;9399:23;9395:32;9392:119;;;9430:79;;:::i;:::-;9392:119;9550:1;9575:53;9620:7;9611:6;9600:9;9596:22;9575:53;:::i;:::-;9565:63;;9521:117;9316:329;;;;:::o;9651:118::-;9738:24;9756:5;9738:24;:::i;:::-;9733:3;9726:37;9651:118;;:::o;9775:109::-;9856:21;9871:5;9856:21;:::i;:::-;9851:3;9844:34;9775:109;;:::o;9890:360::-;9976:3;10004:38;10036:5;10004:38;:::i;:::-;10058:70;10121:6;10116:3;10058:70;:::i;:::-;10051:77;;10137:52;10182:6;10177:3;10170:4;10163:5;10159:16;10137:52;:::i;:::-;10214:29;10236:6;10214:29;:::i;:::-;10209:3;10205:39;10198:46;;9980:270;9890:360;;;;:::o;10256:364::-;10344:3;10372:39;10405:5;10372:39;:::i;:::-;10427:71;10491:6;10486:3;10427:71;:::i;:::-;10420:78;;10507:52;10552:6;10547:3;10540:4;10533:5;10529:16;10507:52;:::i;:::-;10584:29;10606:6;10584:29;:::i;:::-;10579:3;10575:39;10568:46;;10348:272;10256:364;;;;:::o;10626:377::-;10732:3;10760:39;10793:5;10760:39;:::i;:::-;10815:89;10897:6;10892:3;10815:89;:::i;:::-;10808:96;;10913:52;10958:6;10953:3;10946:4;10939:5;10935:16;10913:52;:::i;:::-;10990:6;10985:3;10981:16;10974:23;;10736:267;10626:377;;;;:::o;11033:845::-;11136:3;11173:5;11167:12;11202:36;11228:9;11202:36;:::i;:::-;11254:89;11336:6;11331:3;11254:89;:::i;:::-;11247:96;;11374:1;11363:9;11359:17;11390:1;11385:137;;;;11536:1;11531:341;;;;11352:520;;11385:137;11469:4;11465:9;11454;11450:25;11445:3;11438:38;11505:6;11500:3;11496:16;11489:23;;11385:137;;11531:341;11598:38;11630:5;11598:38;:::i;:::-;11658:1;11672:154;11686:6;11683:1;11680:13;11672:154;;;11760:7;11754:14;11750:1;11745:3;11741:11;11734:35;11810:1;11801:7;11797:15;11786:26;;11708:4;11705:1;11701:12;11696:17;;11672:154;;;11855:6;11850:3;11846:16;11839:23;;11538:334;;11352:520;;11140:738;;11033:845;;;;:::o;11884:366::-;12026:3;12047:67;12111:2;12106:3;12047:67;:::i;:::-;12040:74;;12123:93;12212:3;12123:93;:::i;:::-;12241:2;12236:3;12232:12;12225:19;;11884:366;;;:::o;12256:::-;12398:3;12419:67;12483:2;12478:3;12419:67;:::i;:::-;12412:74;;12495:93;12584:3;12495:93;:::i;:::-;12613:2;12608:3;12604:12;12597:19;;12256:366;;;:::o;12628:::-;12770:3;12791:67;12855:2;12850:3;12791:67;:::i;:::-;12784:74;;12867:93;12956:3;12867:93;:::i;:::-;12985:2;12980:3;12976:12;12969:19;;12628:366;;;:::o;13000:::-;13142:3;13163:67;13227:2;13222:3;13163:67;:::i;:::-;13156:74;;13239:93;13328:3;13239:93;:::i;:::-;13357:2;13352:3;13348:12;13341:19;;13000:366;;;:::o;13372:::-;13514:3;13535:67;13599:2;13594:3;13535:67;:::i;:::-;13528:74;;13611:93;13700:3;13611:93;:::i;:::-;13729:2;13724:3;13720:12;13713:19;;13372:366;;;:::o;13744:::-;13886:3;13907:67;13971:2;13966:3;13907:67;:::i;:::-;13900:74;;13983:93;14072:3;13983:93;:::i;:::-;14101:2;14096:3;14092:12;14085:19;;13744:366;;;:::o;14116:::-;14258:3;14279:67;14343:2;14338:3;14279:67;:::i;:::-;14272:74;;14355:93;14444:3;14355:93;:::i;:::-;14473:2;14468:3;14464:12;14457:19;;14116:366;;;:::o;14488:::-;14630:3;14651:67;14715:2;14710:3;14651:67;:::i;:::-;14644:74;;14727:93;14816:3;14727:93;:::i;:::-;14845:2;14840:3;14836:12;14829:19;;14488:366;;;:::o;14860:::-;15002:3;15023:67;15087:2;15082:3;15023:67;:::i;:::-;15016:74;;15099:93;15188:3;15099:93;:::i;:::-;15217:2;15212:3;15208:12;15201:19;;14860:366;;;:::o;15232:::-;15374:3;15395:67;15459:2;15454:3;15395:67;:::i;:::-;15388:74;;15471:93;15560:3;15471:93;:::i;:::-;15589:2;15584:3;15580:12;15573:19;;15232:366;;;:::o;15604:::-;15746:3;15767:67;15831:2;15826:3;15767:67;:::i;:::-;15760:74;;15843:93;15932:3;15843:93;:::i;:::-;15961:2;15956:3;15952:12;15945:19;;15604:366;;;:::o;15976:::-;16118:3;16139:67;16203:2;16198:3;16139:67;:::i;:::-;16132:74;;16215:93;16304:3;16215:93;:::i;:::-;16333:2;16328:3;16324:12;16317:19;;15976:366;;;:::o;16348:::-;16490:3;16511:67;16575:2;16570:3;16511:67;:::i;:::-;16504:74;;16587:93;16676:3;16587:93;:::i;:::-;16705:2;16700:3;16696:12;16689:19;;16348:366;;;:::o;16720:::-;16862:3;16883:67;16947:2;16942:3;16883:67;:::i;:::-;16876:74;;16959:93;17048:3;16959:93;:::i;:::-;17077:2;17072:3;17068:12;17061:19;;16720:366;;;:::o;17092:::-;17234:3;17255:67;17319:2;17314:3;17255:67;:::i;:::-;17248:74;;17331:93;17420:3;17331:93;:::i;:::-;17449:2;17444:3;17440:12;17433:19;;17092:366;;;:::o;17464:::-;17606:3;17627:67;17691:2;17686:3;17627:67;:::i;:::-;17620:74;;17703:93;17792:3;17703:93;:::i;:::-;17821:2;17816:3;17812:12;17805:19;;17464:366;;;:::o;17836:::-;17978:3;17999:67;18063:2;18058:3;17999:67;:::i;:::-;17992:74;;18075:93;18164:3;18075:93;:::i;:::-;18193:2;18188:3;18184:12;18177:19;;17836:366;;;:::o;18208:::-;18350:3;18371:67;18435:2;18430:3;18371:67;:::i;:::-;18364:74;;18447:93;18536:3;18447:93;:::i;:::-;18565:2;18560:3;18556:12;18549:19;;18208:366;;;:::o;18580:::-;18722:3;18743:67;18807:2;18802:3;18743:67;:::i;:::-;18736:74;;18819:93;18908:3;18819:93;:::i;:::-;18937:2;18932:3;18928:12;18921:19;;18580:366;;;:::o;18952:::-;19094:3;19115:67;19179:2;19174:3;19115:67;:::i;:::-;19108:74;;19191:93;19280:3;19191:93;:::i;:::-;19309:2;19304:3;19300:12;19293:19;;18952:366;;;:::o;19324:::-;19466:3;19487:67;19551:2;19546:3;19487:67;:::i;:::-;19480:74;;19563:93;19652:3;19563:93;:::i;:::-;19681:2;19676:3;19672:12;19665:19;;19324:366;;;:::o;19696:::-;19838:3;19859:67;19923:2;19918:3;19859:67;:::i;:::-;19852:74;;19935:93;20024:3;19935:93;:::i;:::-;20053:2;20048:3;20044:12;20037:19;;19696:366;;;:::o;20068:::-;20210:3;20231:67;20295:2;20290:3;20231:67;:::i;:::-;20224:74;;20307:93;20396:3;20307:93;:::i;:::-;20425:2;20420:3;20416:12;20409:19;;20068:366;;;:::o;20440:::-;20582:3;20603:67;20667:2;20662:3;20603:67;:::i;:::-;20596:74;;20679:93;20768:3;20679:93;:::i;:::-;20797:2;20792:3;20788:12;20781:19;;20440:366;;;:::o;20812:::-;20954:3;20975:67;21039:2;21034:3;20975:67;:::i;:::-;20968:74;;21051:93;21140:3;21051:93;:::i;:::-;21169:2;21164:3;21160:12;21153:19;;20812:366;;;:::o;21184:::-;21326:3;21347:67;21411:2;21406:3;21347:67;:::i;:::-;21340:74;;21423:93;21512:3;21423:93;:::i;:::-;21541:2;21536:3;21532:12;21525:19;;21184:366;;;:::o;21556:::-;21698:3;21719:67;21783:2;21778:3;21719:67;:::i;:::-;21712:74;;21795:93;21884:3;21795:93;:::i;:::-;21913:2;21908:3;21904:12;21897:19;;21556:366;;;:::o;21928:::-;22070:3;22091:67;22155:2;22150:3;22091:67;:::i;:::-;22084:74;;22167:93;22256:3;22167:93;:::i;:::-;22285:2;22280:3;22276:12;22269:19;;21928:366;;;:::o;22300:118::-;22387:24;22405:5;22387:24;:::i;:::-;22382:3;22375:37;22300:118;;:::o;22424:429::-;22601:3;22623:92;22711:3;22702:6;22623:92;:::i;:::-;22616:99;;22732:95;22823:3;22814:6;22732:95;:::i;:::-;22725:102;;22844:3;22837:10;;22424:429;;;;;:::o;22859:222::-;22952:4;22990:2;22979:9;22975:18;22967:26;;23003:71;23071:1;23060:9;23056:17;23047:6;23003:71;:::i;:::-;22859:222;;;;:::o;23087:640::-;23282:4;23320:3;23309:9;23305:19;23297:27;;23334:71;23402:1;23391:9;23387:17;23378:6;23334:71;:::i;:::-;23415:72;23483:2;23472:9;23468:18;23459:6;23415:72;:::i;:::-;23497;23565:2;23554:9;23550:18;23541:6;23497:72;:::i;:::-;23616:9;23610:4;23606:20;23601:2;23590:9;23586:18;23579:48;23644:76;23715:4;23706:6;23644:76;:::i;:::-;23636:84;;23087:640;;;;;;;:::o;23733:210::-;23820:4;23858:2;23847:9;23843:18;23835:26;;23871:65;23933:1;23922:9;23918:17;23909:6;23871:65;:::i;:::-;23733:210;;;;:::o;23949:313::-;24062:4;24100:2;24089:9;24085:18;24077:26;;24149:9;24143:4;24139:20;24135:1;24124:9;24120:17;24113:47;24177:78;24250:4;24241:6;24177:78;:::i;:::-;24169:86;;23949:313;;;;:::o;24268:419::-;24434:4;24472:2;24461:9;24457:18;24449:26;;24521:9;24515:4;24511:20;24507:1;24496:9;24492:17;24485:47;24549:131;24675:4;24549:131;:::i;:::-;24541:139;;24268:419;;;:::o;24693:::-;24859:4;24897:2;24886:9;24882:18;24874:26;;24946:9;24940:4;24936:20;24932:1;24921:9;24917:17;24910:47;24974:131;25100:4;24974:131;:::i;:::-;24966:139;;24693:419;;;:::o;25118:::-;25284:4;25322:2;25311:9;25307:18;25299:26;;25371:9;25365:4;25361:20;25357:1;25346:9;25342:17;25335:47;25399:131;25525:4;25399:131;:::i;:::-;25391:139;;25118:419;;;:::o;25543:::-;25709:4;25747:2;25736:9;25732:18;25724:26;;25796:9;25790:4;25786:20;25782:1;25771:9;25767:17;25760:47;25824:131;25950:4;25824:131;:::i;:::-;25816:139;;25543:419;;;:::o;25968:::-;26134:4;26172:2;26161:9;26157:18;26149:26;;26221:9;26215:4;26211:20;26207:1;26196:9;26192:17;26185:47;26249:131;26375:4;26249:131;:::i;:::-;26241:139;;25968:419;;;:::o;26393:::-;26559:4;26597:2;26586:9;26582:18;26574:26;;26646:9;26640:4;26636:20;26632:1;26621:9;26617:17;26610:47;26674:131;26800:4;26674:131;:::i;:::-;26666:139;;26393:419;;;:::o;26818:::-;26984:4;27022:2;27011:9;27007:18;26999:26;;27071:9;27065:4;27061:20;27057:1;27046:9;27042:17;27035:47;27099:131;27225:4;27099:131;:::i;:::-;27091:139;;26818:419;;;:::o;27243:::-;27409:4;27447:2;27436:9;27432:18;27424:26;;27496:9;27490:4;27486:20;27482:1;27471:9;27467:17;27460:47;27524:131;27650:4;27524:131;:::i;:::-;27516:139;;27243:419;;;:::o;27668:::-;27834:4;27872:2;27861:9;27857:18;27849:26;;27921:9;27915:4;27911:20;27907:1;27896:9;27892:17;27885:47;27949:131;28075:4;27949:131;:::i;:::-;27941:139;;27668:419;;;:::o;28093:::-;28259:4;28297:2;28286:9;28282:18;28274:26;;28346:9;28340:4;28336:20;28332:1;28321:9;28317:17;28310:47;28374:131;28500:4;28374:131;:::i;:::-;28366:139;;28093:419;;;:::o;28518:::-;28684:4;28722:2;28711:9;28707:18;28699:26;;28771:9;28765:4;28761:20;28757:1;28746:9;28742:17;28735:47;28799:131;28925:4;28799:131;:::i;:::-;28791:139;;28518:419;;;:::o;28943:::-;29109:4;29147:2;29136:9;29132:18;29124:26;;29196:9;29190:4;29186:20;29182:1;29171:9;29167:17;29160:47;29224:131;29350:4;29224:131;:::i;:::-;29216:139;;28943:419;;;:::o;29368:::-;29534:4;29572:2;29561:9;29557:18;29549:26;;29621:9;29615:4;29611:20;29607:1;29596:9;29592:17;29585:47;29649:131;29775:4;29649:131;:::i;:::-;29641:139;;29368:419;;;:::o;29793:::-;29959:4;29997:2;29986:9;29982:18;29974:26;;30046:9;30040:4;30036:20;30032:1;30021:9;30017:17;30010:47;30074:131;30200:4;30074:131;:::i;:::-;30066:139;;29793:419;;;:::o;30218:::-;30384:4;30422:2;30411:9;30407:18;30399:26;;30471:9;30465:4;30461:20;30457:1;30446:9;30442:17;30435:47;30499:131;30625:4;30499:131;:::i;:::-;30491:139;;30218:419;;;:::o;30643:::-;30809:4;30847:2;30836:9;30832:18;30824:26;;30896:9;30890:4;30886:20;30882:1;30871:9;30867:17;30860:47;30924:131;31050:4;30924:131;:::i;:::-;30916:139;;30643:419;;;:::o;31068:::-;31234:4;31272:2;31261:9;31257:18;31249:26;;31321:9;31315:4;31311:20;31307:1;31296:9;31292:17;31285:47;31349:131;31475:4;31349:131;:::i;:::-;31341:139;;31068:419;;;:::o;31493:::-;31659:4;31697:2;31686:9;31682:18;31674:26;;31746:9;31740:4;31736:20;31732:1;31721:9;31717:17;31710:47;31774:131;31900:4;31774:131;:::i;:::-;31766:139;;31493:419;;;:::o;31918:::-;32084:4;32122:2;32111:9;32107:18;32099:26;;32171:9;32165:4;32161:20;32157:1;32146:9;32142:17;32135:47;32199:131;32325:4;32199:131;:::i;:::-;32191:139;;31918:419;;;:::o;32343:::-;32509:4;32547:2;32536:9;32532:18;32524:26;;32596:9;32590:4;32586:20;32582:1;32571:9;32567:17;32560:47;32624:131;32750:4;32624:131;:::i;:::-;32616:139;;32343:419;;;:::o;32768:::-;32934:4;32972:2;32961:9;32957:18;32949:26;;33021:9;33015:4;33011:20;33007:1;32996:9;32992:17;32985:47;33049:131;33175:4;33049:131;:::i;:::-;33041:139;;32768:419;;;:::o;33193:::-;33359:4;33397:2;33386:9;33382:18;33374:26;;33446:9;33440:4;33436:20;33432:1;33421:9;33417:17;33410:47;33474:131;33600:4;33474:131;:::i;:::-;33466:139;;33193:419;;;:::o;33618:::-;33784:4;33822:2;33811:9;33807:18;33799:26;;33871:9;33865:4;33861:20;33857:1;33846:9;33842:17;33835:47;33899:131;34025:4;33899:131;:::i;:::-;33891:139;;33618:419;;;:::o;34043:::-;34209:4;34247:2;34236:9;34232:18;34224:26;;34296:9;34290:4;34286:20;34282:1;34271:9;34267:17;34260:47;34324:131;34450:4;34324:131;:::i;:::-;34316:139;;34043:419;;;:::o;34468:::-;34634:4;34672:2;34661:9;34657:18;34649:26;;34721:9;34715:4;34711:20;34707:1;34696:9;34692:17;34685:47;34749:131;34875:4;34749:131;:::i;:::-;34741:139;;34468:419;;;:::o;34893:::-;35059:4;35097:2;35086:9;35082:18;35074:26;;35146:9;35140:4;35136:20;35132:1;35121:9;35117:17;35110:47;35174:131;35300:4;35174:131;:::i;:::-;35166:139;;34893:419;;;:::o;35318:::-;35484:4;35522:2;35511:9;35507:18;35499:26;;35571:9;35565:4;35561:20;35557:1;35546:9;35542:17;35535:47;35599:131;35725:4;35599:131;:::i;:::-;35591:139;;35318:419;;;:::o;35743:::-;35909:4;35947:2;35936:9;35932:18;35924:26;;35996:9;35990:4;35986:20;35982:1;35971:9;35967:17;35960:47;36024:131;36150:4;36024:131;:::i;:::-;36016:139;;35743:419;;;:::o;36168:222::-;36261:4;36299:2;36288:9;36284:18;36276:26;;36312:71;36380:1;36369:9;36365:17;36356:6;36312:71;:::i;:::-;36168:222;;;;:::o;36396:129::-;36430:6;36457:20;;:::i;:::-;36447:30;;36486:33;36514:4;36506:6;36486:33;:::i;:::-;36396:129;;;:::o;36531:75::-;36564:6;36597:2;36591:9;36581:19;;36531:75;:::o;36612:307::-;36673:4;36763:18;36755:6;36752:30;36749:56;;;36785:18;;:::i;:::-;36749:56;36823:29;36845:6;36823:29;:::i;:::-;36815:37;;36907:4;36901;36897:15;36889:23;;36612:307;;;:::o;36925:308::-;36987:4;37077:18;37069:6;37066:30;37063:56;;;37099:18;;:::i;:::-;37063:56;37137:29;37159:6;37137:29;:::i;:::-;37129:37;;37221:4;37215;37211:15;37203:23;;36925:308;;;:::o;37239:141::-;37288:4;37311:3;37303:11;;37334:3;37331:1;37324:14;37368:4;37365:1;37355:18;37347:26;;37239:141;;;:::o;37386:98::-;37437:6;37471:5;37465:12;37455:22;;37386:98;;;:::o;37490:99::-;37542:6;37576:5;37570:12;37560:22;;37490:99;;;:::o;37595:168::-;37678:11;37712:6;37707:3;37700:19;37752:4;37747:3;37743:14;37728:29;;37595:168;;;;:::o;37769:169::-;37853:11;37887:6;37882:3;37875:19;37927:4;37922:3;37918:14;37903:29;;37769:169;;;;:::o;37944:148::-;38046:11;38083:3;38068:18;;37944:148;;;;:::o;38098:305::-;38138:3;38157:20;38175:1;38157:20;:::i;:::-;38152:25;;38191:20;38209:1;38191:20;:::i;:::-;38186:25;;38345:1;38277:66;38273:74;38270:1;38267:81;38264:107;;;38351:18;;:::i;:::-;38264:107;38395:1;38392;38388:9;38381:16;;38098:305;;;;:::o;38409:185::-;38449:1;38466:20;38484:1;38466:20;:::i;:::-;38461:25;;38500:20;38518:1;38500:20;:::i;:::-;38495:25;;38539:1;38529:35;;38544:18;;:::i;:::-;38529:35;38586:1;38583;38579:9;38574:14;;38409:185;;;;:::o;38600:348::-;38640:7;38663:20;38681:1;38663:20;:::i;:::-;38658:25;;38697:20;38715:1;38697:20;:::i;:::-;38692:25;;38885:1;38817:66;38813:74;38810:1;38807:81;38802:1;38795:9;38788:17;38784:105;38781:131;;;38892:18;;:::i;:::-;38781:131;38940:1;38937;38933:9;38922:20;;38600:348;;;;:::o;38954:191::-;38994:4;39014:20;39032:1;39014:20;:::i;:::-;39009:25;;39048:20;39066:1;39048:20;:::i;:::-;39043:25;;39087:1;39084;39081:8;39078:34;;;39092:18;;:::i;:::-;39078:34;39137:1;39134;39130:9;39122:17;;38954:191;;;;:::o;39151:96::-;39188:7;39217:24;39235:5;39217:24;:::i;:::-;39206:35;;39151:96;;;:::o;39253:104::-;39298:7;39327:24;39345:5;39327:24;:::i;:::-;39316:35;;39253:104;;;:::o;39363:90::-;39397:7;39440:5;39433:13;39426:21;39415:32;;39363:90;;;:::o;39459:149::-;39495:7;39535:66;39528:5;39524:78;39513:89;;39459:149;;;:::o;39614:126::-;39651:7;39691:42;39684:5;39680:54;39669:65;;39614:126;;;:::o;39746:77::-;39783:7;39812:5;39801:16;;39746:77;;;:::o;39829:154::-;39913:6;39908:3;39903;39890:30;39975:1;39966:6;39961:3;39957:16;39950:27;39829:154;;;:::o;39989:307::-;40057:1;40067:113;40081:6;40078:1;40075:13;40067:113;;;40166:1;40161:3;40157:11;40151:18;40147:1;40142:3;40138:11;40131:39;40103:2;40100:1;40096:10;40091:15;;40067:113;;;40198:6;40195:1;40192:13;40189:101;;;40278:1;40269:6;40264:3;40260:16;40253:27;40189:101;40038:258;39989:307;;;:::o;40302:320::-;40346:6;40383:1;40377:4;40373:12;40363:22;;40430:1;40424:4;40420:12;40451:18;40441:81;;40507:4;40499:6;40495:17;40485:27;;40441:81;40569:2;40561:6;40558:14;40538:18;40535:38;40532:84;;;40588:18;;:::i;:::-;40532:84;40353:269;40302:320;;;:::o;40628:281::-;40711:27;40733:4;40711:27;:::i;:::-;40703:6;40699:40;40841:6;40829:10;40826:22;40805:18;40793:10;40790:34;40787:62;40784:88;;;40852:18;;:::i;:::-;40784:88;40892:10;40888:2;40881:22;40671:238;40628:281;;:::o;40915:233::-;40954:3;40977:24;40995:5;40977:24;:::i;:::-;40968:33;;41023:66;41016:5;41013:77;41010:103;;;41093:18;;:::i;:::-;41010:103;41140:1;41133:5;41129:13;41122:20;;40915:233;;;:::o;41154:176::-;41186:1;41203:20;41221:1;41203:20;:::i;:::-;41198:25;;41237:20;41255:1;41237:20;:::i;:::-;41232:25;;41276:1;41266:35;;41281:18;;:::i;:::-;41266:35;41322:1;41319;41315:9;41310:14;;41154:176;;;;:::o;41336:180::-;41384:77;41381:1;41374:88;41481:4;41478:1;41471:15;41505:4;41502:1;41495:15;41522:180;41570:77;41567:1;41560:88;41667:4;41664:1;41657:15;41691:4;41688:1;41681:15;41708:180;41756:77;41753:1;41746:88;41853:4;41850:1;41843:15;41877:4;41874:1;41867:15;41894:180;41942:77;41939:1;41932:88;42039:4;42036:1;42029:15;42063:4;42060:1;42053:15;42080:180;42128:77;42125:1;42118:88;42225:4;42222:1;42215:15;42249:4;42246:1;42239:15;42266:180;42314:77;42311:1;42304:88;42411:4;42408:1;42401:15;42435:4;42432:1;42425:15;42452:117;42561:1;42558;42551:12;42575:117;42684:1;42681;42674:12;42698:117;42807:1;42804;42797:12;42821:117;42930:1;42927;42920:12;42944:117;43053:1;43050;43043:12;43067:117;43176:1;43173;43166:12;43190:102;43231:6;43282:2;43278:7;43273:2;43266:5;43262:14;43258:28;43248:38;;43190:102;;;:::o;43298:230::-;43438:34;43434:1;43426:6;43422:14;43415:58;43507:13;43502:2;43494:6;43490:15;43483:38;43298:230;:::o;43534:237::-;43674:34;43670:1;43662:6;43658:14;43651:58;43743:20;43738:2;43730:6;43726:15;43719:45;43534:237;:::o;43777:225::-;43917:34;43913:1;43905:6;43901:14;43894:58;43986:8;43981:2;43973:6;43969:15;43962:33;43777:225;:::o;44008:241::-;44148:34;44144:1;44136:6;44132:14;44125:58;44217:24;44212:2;44204:6;44200:15;44193:49;44008:241;:::o;44255:178::-;44395:30;44391:1;44383:6;44379:14;44372:54;44255:178;:::o;44439:223::-;44579:34;44575:1;44567:6;44563:14;44556:58;44648:6;44643:2;44635:6;44631:15;44624:31;44439:223;:::o;44668:175::-;44808:27;44804:1;44796:6;44792:14;44785:51;44668:175;:::o;44849:170::-;44989:22;44985:1;44977:6;44973:14;44966:46;44849:170;:::o;45025:231::-;45165:34;45161:1;45153:6;45149:14;45142:58;45234:14;45229:2;45221:6;45217:15;45210:39;45025:231;:::o;45262:245::-;45402:34;45398:1;45390:6;45386:14;45379:58;45471:28;45466:2;45458:6;45454:15;45447:53;45262:245;:::o;45513:243::-;45653:34;45649:1;45641:6;45637:14;45630:58;45722:26;45717:2;45709:6;45705:15;45698:51;45513:243;:::o;45762:229::-;45902:34;45898:1;45890:6;45886:14;45879:58;45971:12;45966:2;45958:6;45954:15;45947:37;45762:229;:::o;45997:228::-;46137:34;46133:1;46125:6;46121:14;46114:58;46206:11;46201:2;46193:6;46189:15;46182:36;45997:228;:::o;46231:182::-;46371:34;46367:1;46359:6;46355:14;46348:58;46231:182;:::o;46419:231::-;46559:34;46555:1;46547:6;46543:14;46536:58;46628:14;46623:2;46615:6;46611:15;46604:39;46419:231;:::o;46656:182::-;46796:34;46792:1;46784:6;46780:14;46773:58;46656:182;:::o;46844:228::-;46984:34;46980:1;46972:6;46968:14;46961:58;47053:11;47048:2;47040:6;47036:15;47029:36;46844:228;:::o;47078:234::-;47218:34;47214:1;47206:6;47202:14;47195:58;47287:17;47282:2;47274:6;47270:15;47263:42;47078:234;:::o;47318:225::-;47458:34;47454:1;47446:6;47442:14;47435:58;47527:8;47522:2;47514:6;47510:15;47503:33;47318:225;:::o;47549:220::-;47689:34;47685:1;47677:6;47673:14;47666:58;47758:3;47753:2;47745:6;47741:15;47734:28;47549:220;:::o;47775:236::-;47915:34;47911:1;47903:6;47899:14;47892:58;47984:19;47979:2;47971:6;47967:15;47960:44;47775:236;:::o;48017:167::-;48157:19;48153:1;48145:6;48141:14;48134:43;48017:167;:::o;48190:245::-;48330:34;48326:1;48318:6;48314:14;48307:58;48399:28;48394:2;48386:6;48382:15;48375:53;48190:245;:::o;48441:231::-;48581:34;48577:1;48569:6;48565:14;48558:58;48650:14;48645:2;48637:6;48633:15;48626:39;48441:231;:::o;48678:174::-;48818:26;48814:1;48806:6;48802:14;48795:50;48678:174;:::o;48858:176::-;48998:28;48994:1;48986:6;48982:14;48975:52;48858:176;:::o;49040:177::-;49180:29;49176:1;49168:6;49164:14;49157:53;49040:177;:::o;49223:164::-;49363:16;49359:1;49351:6;49347:14;49340:40;49223:164;:::o;49393:122::-;49466:24;49484:5;49466:24;:::i;:::-;49459:5;49456:35;49446:63;;49505:1;49502;49495:12;49446:63;49393:122;:::o;49521:138::-;49602:32;49628:5;49602:32;:::i;:::-;49595:5;49592:43;49582:71;;49649:1;49646;49639:12;49582:71;49521:138;:::o;49665:116::-;49735:21;49750:5;49735:21;:::i;:::-;49728:5;49725:32;49715:60;;49771:1;49768;49761:12;49715:60;49665:116;:::o;49787:120::-;49859:23;49876:5;49859:23;:::i;:::-;49852:5;49849:34;49839:62;;49897:1;49894;49887:12;49839:62;49787:120;:::o;49913:122::-;49986:24;50004:5;49986:24;:::i;:::-;49979:5;49976:35;49966:63;;50025:1;50022;50015:12;49966:63;49913:122;:::o

Swarm Source

ipfs://50a415d375609441b867f8836182e86f176d483998bf5a90a9913324dbf0bd60
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.