ETH Price: $3,306.50 (-3.09%)
Gas: 21 Gwei

Token

Billionaires (BB)
 

Overview

Max Total Supply

0 BB

Holders

4,305

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
romeo0707.eth
Balance
1 BB
0x6efd8cd61f79d06684a70b9b04c9281fd81b7fe7
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Bitcoin Billionaires is a collection of 13,337 unique pixel art NFTs inspired by the hit mobile game with over 10 million downloads. Billionaires are built from 200+ traits across six species, and they inhabit a universe that lends itself to some pretty bizarre worldbuilding.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Billionaires

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-28
*/

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT

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/token/ERC721/[email protected]

/**
 * @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/[email protected]

/**
 * @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/token/ERC721/extensions/[email protected]

/**
 * @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/utils/[email protected]

/**
 * @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/utils/[email protected]

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

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

// File @openzeppelin/contracts/utils/[email protected]

/**
 * @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/introspection/[email protected]

/**
 * @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/[email protected]

/**
 * @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/access/[email protected]

/**
 * @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/security/[email protected]

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File contracts/Billionaire.sol

//                             (@@@@@@@@@@@@@@@@@@@@@@*
//                             (@@@@@@@@@@@@@@@@@@@@@@*
//                  /((((((((((((((((((((((((((((((((((((((((((((*
//                 .&@@@@@@@@@@/                      #@@@@@@@@@@#
//                 .&@@@@@@@@@@/                      #@@@@@@@@@@#
//            #@@@@&.           ......................           *@@@@@/
//            #@@@@&.           ......................           *@@@@@/
//      (@@@@@*     ...........      ,****,     .*****,..........,/////%@@@@@,
//      (@@@@@*     ...........      ,****,     .*****...........,/////%@@@@@,
//      (@@@@@*     ......     .,,,,,******,,,,,,*****,..........,/////%@@@@@,
//      (@@@@@*     ......     ,**********************,..........,/////%@@@@@,
// ,,,,,(%%%%%,     ......     ,*****,,,,,,,,,,,,,,,,,,..........,*****#&&&&&/,,,,,
// @@@@@(      ...........     ,*****...........      ,****,...........*/////&@@@@@
// @@@@@(     ............     ,*****............     ,****,...........*/////&@@@@@
// @@@@@(     ............     ,**********************,................*/////&@@@@@
// @@@@@(     ............     ,**********************,................*/////&@@@@@
// @@@@@(      ...........     ,*****...........      ,****,...........*/////&@@@@@
// @@@@@(     ............     ,*****............     ,****,...........*/////&@@@@@
// @@@@@(     ............     ,*****............     ,****,...........*/////&@@@@@
// @@@@@(     ............     ,*****............     ,****,...........*/////&@@@@@
// @@@@@(      ...........     ,*****...........      ,****,...........*/////&@@@@@
//      (@@@@@*     ......     ,**********************,..........,/////%@@@@@,
//      (@@@@@*     ......     ,**********************,..........,/////%@@@@@,
//      (@@@@@*     ...........      ,****,     .*****,..........,/////%@@@@@,
//      (@@@@@*     ...........      ,****,     .*****...........,/////%@@@@@,
//      .,,,,,#%%%%#/**********,......................***********(&&&&&(,,,,,
//            #@@@@&(//////////,......................*//////////#@@@@@/
//            (%%%%%(((((((((((*,,,,,,,,,,,,,,,,,,,,,,/((((((((((#%%%%%*
//                 .&@@@@@@@@@@#//////////////////////&@@@@@@@@@@#
//                 .&@@@@@@@@@@#//////////////////////&@@@@@@@@@@#
//                             (@@@@@@@@@@@@@@@@@@@@@@*
//                             (@@@@@@@@@@@@@@@@@@@@@@*

contract Billionaires is ERC721, Ownable, ReentrancyGuard {
    uint256 public constant PRICE = 0.09 * 1e18;
    uint256 public constant MAX_SUPPLY = 13337;
    uint256 public constant OWNER_AMOUNT = 337;
    uint8 public constant PRESALE_MAXMINT = 3;

    bool public live;
    uint256 public minted;
    mapping(address => uint8) public earlyAccess;
    string public baseURI;

    constructor(
        string memory name_,
        string memory symbol_,
        string memory baseURI_
    ) ERC721(name_, symbol_) {
        baseURI = baseURI_;
        for (uint256 i = 0; i < OWNER_AMOUNT; i++) {
            _safeMint(msg.sender, ++minted);
        }
    }

    function mint(uint8 amount) public payable nonReentrant {
        require(amount > 0, "Amount must be more than 0");
        require(amount <= 10, "Amount must be 10 or less");
        require(msg.value == PRICE * amount, "Ether value sent is not correct");
        require(
            minted + amount <= MAX_SUPPLY,
            "Sold out, check out OpenSea tho! <3"
        );

        if (!live) {
            uint8 earlyAccessbalance = earlyAccess[msg.sender];
            require(
                earlyAccessbalance > 0,
                "Invalid presale balance - Public sale not live"
            );
            require(
                earlyAccessbalance >= amount,
                "Amount more than your presale limit"
            );
            earlyAccess[msg.sender] -= amount;
        }

        for (uint256 i = 0; i < amount; i++) {
            _safeMint(msg.sender, ++minted);
        }
    }

    function setEarlyAccess(address[] calldata addresses) public onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            earlyAccess[addresses[i]] = PRESALE_MAXMINT;
        }
    }

    function letsGoooooooo() public onlyOwner {
        require(!live, "Public sale is already live");
        live = true;
    }

    function withdraw(address payable recipient) public onlyOwner {
        require(address(this).balance > 0, "No contract balance");
        recipient.transfer(address(this).balance);
    }

    function setBaseURI(string memory baseURI_) public onlyOwner {
        baseURI = baseURI_;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","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":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":[],"name":"OWNER_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MAXMINT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"earlyAccess","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":[],"name":"letsGoooooooo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"live","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setEarlyAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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 payable","name":"recipient","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002b8c38038062002b8c833981016040819052620000349162000554565b8251839083906200004d906000906020850190620003f4565b50805162000063906001906020840190620003f4565b505050620000806200007a620000e960201b60201c565b620000ed565b600160075580516200009a90600b906020840190620003f4565b5060005b610151811015620000df57620000ca33600960008154620000bf9062000780565b91829055506200013f565b80620000d68162000780565b9150506200009e565b50505050620007ca565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001618282604051806020016040528060008152506200016560201b60201c565b5050565b620001718383620001ad565b62000180600084848462000298565b620001a85760405162461bcd60e51b81526004016200019f9062000637565b60405180910390fd5b505050565b6001600160a01b038216620001d65760405162461bcd60e51b81526004016200019f90620006c0565b620001e181620003d1565b15620002015760405162461bcd60e51b81526004016200019f9062000689565b6200020f60008383620001a8565b6001600160a01b03821660009081526003602052604081208054600192906200023a908490620006f5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620002b9846001600160a01b0316620003ee60201b62000f151760201c565b15620003c5576001600160a01b03841663150b7a02620002d8620000e9565b8786866040518563ffffffff1660e01b8152600401620002fc9493929190620005e1565b602060405180830381600087803b1580156200031757600080fd5b505af19250505080156200034a575060408051601f3d908101601f19168201909252620003479181019062000523565b60015b620003aa573d8080156200037b576040519150601f19603f3d011682016040523d82523d6000602084013e62000380565b606091505b508051620003a25760405162461bcd60e51b81526004016200019f9062000637565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620003c9565b5060015b949350505050565b6000908152600260205260409020546001600160a01b0316151590565b3b151590565b828054620004029062000743565b90600052602060002090601f01602090048101928262000426576000855562000471565b82601f106200044157805160ff191683800117855562000471565b8280016001018555821562000471579182015b828111156200047157825182559160200191906001019062000454565b506200047f92915062000483565b5090565b5b808211156200047f576000815560010162000484565b600082601f830112620004ab578081fd5b81516001600160401b0380821115620004c857620004c8620007b4565b604051601f8301601f191681016020018281118282101715620004ef57620004ef620007b4565b60405282815284830160200186101562000507578384fd5b6200051a83602083016020880162000710565b95945050505050565b60006020828403121562000535578081fd5b81516001600160e01b0319811681146200054d578182fd5b9392505050565b60008060006060848603121562000569578182fd5b83516001600160401b038082111562000580578384fd5b6200058e878388016200049a565b94506020860151915080821115620005a4578384fd5b620005b2878388016200049a565b93506040860151915080821115620005c8578283fd5b50620005d7868287016200049a565b9150509250925092565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620006208160a085016020870162000710565b601f01601f19169190910160a00195945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b600082198211156200070b576200070b6200079e565b500190565b60005b838110156200072d57818101518382015260200162000713565b838111156200073d576000848401525b50505050565b6002810460018216806200075857607f821691505b602082108114156200077a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200079757620007976200079e565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6123b280620007da6000396000f3fe6080604052600436106101c25760003560e01c80636ecd2306116100f7578063a22cb46511610095578063f04a67ae11610064578063f04a67ae146104a0578063f2fde38b146104cd578063f44a0c10146104ed578063f79aade01461050d576101c2565b8063a22cb46514610420578063b88d4fde14610440578063c87b56dd14610460578063e985e9c514610480576101c2565b80638d859f3e116100d15780638d859f3e146103cc5780638da5cb5b146103e1578063957aa58c146103f657806395d89b411461040b576101c2565b80636ecd23061461038457806370a0823114610397578063715018a6146103b7576101c2565b806342842e0e1161016457806355f804b31161013e57806355f804b31461031a5780636352211e1461033a57806368be98221461035a5780636c0360eb1461036f576101c2565b806342842e0e146102c55780634f02c420146102e557806351cff8d9146102fa576101c2565b8063081812fc116101a0578063081812fc14610236578063095ea7b31461026357806323b872dd1461028357806332cb6b0c146102a3576101c2565b806301ffc9a7146101c75780630275e556146101fd57806306fdde0314610214575b600080fd5b3480156101d357600080fd5b506101e76101e23660046118ea565b610522565b6040516101f49190611a4c565b60405180910390f35b34801561020957600080fd5b5061021261059c565b005b34801561022057600080fd5b50610229610616565b6040516101f49190611a57565b34801561024257600080fd5b50610256610251366004611968565b6106a8565b6040516101f491906119fc565b34801561026f57600080fd5b5061021261027e366004611850565b6106eb565b34801561028f57600080fd5b5061021261029e366004611762565b610783565b3480156102af57600080fd5b506102b86107bb565b6040516101f491906121dd565b3480156102d157600080fd5b506102126102e0366004611762565b6107c1565b3480156102f157600080fd5b506102b86107dc565b34801561030657600080fd5b5061021261031536600461170e565b6107e2565b34801561032657600080fd5b50610212610335366004611922565b61087a565b34801561034657600080fd5b50610256610355366004611968565b6108cc565b34801561036657600080fd5b506102b8610901565b34801561037b57600080fd5b50610229610907565b610212610392366004611980565b610995565b3480156103a357600080fd5b506102b86103b236600461170e565b610b48565b3480156103c357600080fd5b50610212610b8c565b3480156103d857600080fd5b506102b8610bd7565b3480156103ed57600080fd5b50610256610be3565b34801561040257600080fd5b506101e7610bf2565b34801561041757600080fd5b50610229610bfb565b34801561042c57600080fd5b5061021261043b36600461181f565b610c0a565b34801561044c57600080fd5b5061021261045b3660046117a2565b610cd8565b34801561046c57600080fd5b5061022961047b366004611968565b610d17565b34801561048c57600080fd5b506101e761049b36600461172a565b610d9a565b3480156104ac57600080fd5b506104c06104bb36600461170e565b610dc8565b6040516101f491906121e6565b3480156104d957600080fd5b506102126104e836600461170e565b610ddd565b3480156104f957600080fd5b5061021261050836600461187b565b610e4e565b34801561051957600080fd5b506104c0610f10565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061058557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610594575061059482610f1b565b90505b919050565b6105a4610f4d565b6001600160a01b03166105b5610be3565b6001600160a01b0316146105e45760405162461bcd60e51b81526004016105db90611f32565b60405180910390fd5b60085460ff16156106075760405162461bcd60e51b81526004016105db90611ac7565b6008805460ff19166001179055565b606060008054610625906122a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610651906122a5565b801561069e5780601f106106735761010080835404028352916020019161069e565b820191906000526020600020905b81548152906001019060200180831161068157829003601f168201915b5050505050905090565b60006106b382610f51565b6106cf5760405162461bcd60e51b81526004016105db90611ee6565b506000908152600460205260409020546001600160a01b031690565b60006106f6826108cc565b9050806001600160a01b0316836001600160a01b0316141561072a5760405162461bcd60e51b81526004016105db90612058565b806001600160a01b031661073c610f4d565b6001600160a01b0316148061075857506107588161049b610f4d565b6107745760405162461bcd60e51b81526004016105db90611d3d565b61077e8383610f6e565b505050565b61079461078e610f4d565b82610fe9565b6107b05760405162461bcd60e51b81526004016105db906120b5565b61077e83838361106e565b61341981565b61077e83838360405180602001604052806000815250610cd8565b60095481565b6107ea610f4d565b6001600160a01b03166107fb610be3565b6001600160a01b0316146108215760405162461bcd60e51b81526004016105db90611f32565b600047116108415760405162461bcd60e51b81526004016105db90611f67565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610876573d6000803e3d6000fd5b5050565b610882610f4d565b6001600160a01b0316610893610be3565b6001600160a01b0316146108b95760405162461bcd60e51b81526004016105db90611f32565b805161087690600b906020840190611605565b6000818152600260205260408120546001600160a01b0316806105945760405162461bcd60e51b81526004016105db90611e54565b61015181565b600b8054610914906122a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610940906122a5565b801561098d5780601f106109625761010080835404028352916020019161098d565b820191906000526020600020905b81548152906001019060200180831161097057829003601f168201915b505050505081565b600260075414156109b85760405162461bcd60e51b81526004016105db90612149565b600260075560ff81166109dd5760405162461bcd60e51b81526004016105db90611d06565b600a8160ff161115610a015760405162461bcd60e51b81526004016105db90612112565b610a1660ff821667013fbe85edc90000612220565b3414610a345760405162461bcd60e51b81526004016105db90611c26565b6134198160ff16600954610a4891906121f4565b1115610a665760405162461bcd60e51b81526004016105db90611c5d565b60085460ff16610b0257336000908152600a602052604090205460ff1680610aa05760405162461bcd60e51b81526004016105db90612180565b8160ff168160ff161015610ac65760405162461bcd60e51b81526004016105db90611d9a565b336000908152600a602052604081208054849290610ae890849060ff16612256565b92506101000a81548160ff021916908360ff160217905550505b60005b8160ff16811015610b3f57610b2d33600960008154610b23906122e0565b91829055506111a8565b80610b37816122e0565b915050610b05565b50506001600755565b60006001600160a01b038216610b705760405162461bcd60e51b81526004016105db90611df7565b506001600160a01b031660009081526003602052604090205490565b610b94610f4d565b6001600160a01b0316610ba5610be3565b6001600160a01b031614610bcb5760405162461bcd60e51b81526004016105db90611f32565b610bd560006111c2565b565b67013fbe85edc9000081565b6006546001600160a01b031690565b60085460ff1681565b606060018054610625906122a5565b610c12610f4d565b6001600160a01b0316826001600160a01b03161415610c435760405162461bcd60e51b81526004016105db90611bef565b8060056000610c50610f4d565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610c94610f4d565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ccc9190611a4c565b60405180910390a35050565b610ce9610ce3610f4d565b83610fe9565b610d055760405162461bcd60e51b81526004016105db906120b5565b610d1184848484611221565b50505050565b6060610d2282610f51565b610d3e5760405162461bcd60e51b81526004016105db90611ffb565b6000610d48611254565b90506000815111610d685760405180602001604052806000815250610d93565b80610d7284611263565b604051602001610d839291906119cd565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600a6020526000908152604090205460ff1681565b610de5610f4d565b6001600160a01b0316610df6610be3565b6001600160a01b031614610e1c5760405162461bcd60e51b81526004016105db90611f32565b6001600160a01b038116610e425760405162461bcd60e51b81526004016105db90611afe565b610e4b816111c2565b50565b610e56610f4d565b6001600160a01b0316610e67610be3565b6001600160a01b031614610e8d5760405162461bcd60e51b81526004016105db90611f32565b60005b8181101561077e576003600a6000858585818110610ebe57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610ed3919061170e565b6001600160a01b031681526020810191909152604001600020805460ff191660ff9290921691909117905580610f08816122e0565b915050610e90565b600381565b3b151590565b6001600160e01b031981167f01ffc9a70000000000000000000000000000000000000000000000000000000014919050565b3390565b6000908152600260205260409020546001600160a01b0316151590565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190610fb0826108cc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610ff482610f51565b6110105760405162461bcd60e51b81526004016105db90611cba565b600061101b836108cc565b9050806001600160a01b0316846001600160a01b031614806110565750836001600160a01b031661104b846106a8565b6001600160a01b0316145b8061106657506110668185610d9a565b949350505050565b826001600160a01b0316611081826108cc565b6001600160a01b0316146110a75760405162461bcd60e51b81526004016105db90611f9e565b6001600160a01b0382166110cd5760405162461bcd60e51b81526004016105db90611b92565b6110d883838361077e565b6110e3600082610f6e565b6001600160a01b038316600090815260036020526040812080546001929061110c90849061223f565b90915550506001600160a01b038216600090815260036020526040812080546001929061113a9084906121f4565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6108768282604051806020016040528060008152506113b2565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61122c84848461106e565b611238848484846113e5565b610d115760405162461bcd60e51b81526004016105db90611a6a565b6060600b8054610625906122a5565b6060816112a4575060408051808201909152600181527f30000000000000000000000000000000000000000000000000000000000000006020820152610597565b8160005b81156112ce57806112b8816122e0565b91506112c79050600a8361220c565b91506112a8565b60008167ffffffffffffffff8111156112f757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611321576020820181803683370190505b5090505b84156110665761133660018361223f565b9150611343600a866122fb565b61134e9060306121f4565b60f81b81838151811061137157634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506113ab600a8661220c565b9450611325565b6113bc8383611519565b6113c960008484846113e5565b61077e5760405162461bcd60e51b81526004016105db90611a6a565b60006113f9846001600160a01b0316610f15565b1561150e57836001600160a01b031663150b7a02611415610f4d565b8786866040518563ffffffff1660e01b81526004016114379493929190611a10565b602060405180830381600087803b15801561145157600080fd5b505af1925050508015611481575060408051601f3d908101601f1916820190925261147e91810190611906565b60015b6114db573d8080156114af576040519150601f19603f3d011682016040523d82523d6000602084013e6114b4565b606091505b5080516114d35760405162461bcd60e51b81526004016105db90611a6a565b805181602001fd5b6001600160e01b0319167f150b7a0200000000000000000000000000000000000000000000000000000000149050611066565b506001949350505050565b6001600160a01b03821661153f5760405162461bcd60e51b81526004016105db90611eb1565b61154881610f51565b156115655760405162461bcd60e51b81526004016105db90611b5b565b6115716000838361077e565b6001600160a01b038216600090815260036020526040812080546001929061159a9084906121f4565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611611906122a5565b90600052602060002090601f0160209004810192826116335760008555611679565b82601f1061164c57805160ff1916838001178555611679565b82800160010185558215611679579182015b8281111561167957825182559160200191906001019061165e565b50611685929150611689565b5090565b5b80821115611685576000815560010161168a565b600067ffffffffffffffff808411156116b9576116b961233b565b604051601f8501601f1916810160200182811182821017156116dd576116dd61233b565b6040528481529150818385018610156116f557600080fd5b8484602083013760006020868301015250509392505050565b60006020828403121561171f578081fd5b8135610d9381612351565b6000806040838503121561173c578081fd5b823561174781612351565b9150602083013561175781612351565b809150509250929050565b600080600060608486031215611776578081fd5b833561178181612351565b9250602084013561179181612351565b929592945050506040919091013590565b600080600080608085870312156117b7578081fd5b84356117c281612351565b935060208501356117d281612351565b925060408501359150606085013567ffffffffffffffff8111156117f4578182fd5b8501601f81018713611804578182fd5b6118138782356020840161169e565b91505092959194509250565b60008060408385031215611831578182fd5b823561183c81612351565b915060208301358015158114611757578182fd5b60008060408385031215611862578182fd5b823561186d81612351565b946020939093013593505050565b6000806020838503121561188d578182fd5b823567ffffffffffffffff808211156118a4578384fd5b818501915085601f8301126118b7578384fd5b8135818111156118c5578485fd5b86602080830285010111156118d8578485fd5b60209290920196919550909350505050565b6000602082840312156118fb578081fd5b8135610d9381612366565b600060208284031215611917578081fd5b8151610d9381612366565b600060208284031215611933578081fd5b813567ffffffffffffffff811115611949578182fd5b8201601f81018413611959578182fd5b6110668482356020840161169e565b600060208284031215611979578081fd5b5035919050565b600060208284031215611991578081fd5b813560ff81168114610d93578182fd5b600081518084526119b9816020860160208601612279565b601f01601f19169290920160200192915050565b600083516119df818460208801612279565b8351908301906119f3818360208801612279565b01949350505050565b6001600160a01b0391909116815260200190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611a4260808301846119a1565b9695505050505050565b901515815260200190565b600060208252610d9360208301846119a1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b6020808252601b908201527f5075626c69632073616c6520697320616c7265616479206c6976650000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b60208082526023908201527f536f6c64206f75742c20636865636b206f7574204f70656e5365612074686f2160408201527f203c330000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601a908201527f416d6f756e74206d757374206265206d6f7265207468616e2030000000000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526023908201527f416d6f756e74206d6f7265207468616e20796f75722070726573616c65206c6960408201527f6d69740000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560408201527f726f206164647265737300000000000000000000000000000000000000000000606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526013908201527f4e6f20636f6e74726163742062616c616e636500000000000000000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560408201527f7200000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b60208082526019908201527f416d6f756e74206d757374206265203130206f72206c65737300000000000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602e908201527f496e76616c69642070726573616c652062616c616e6365202d205075626c696360408201527f2073616c65206e6f74206c697665000000000000000000000000000000000000606082015260800190565b90815260200190565b60ff91909116815260200190565b600082198211156122075761220761230f565b500190565b60008261221b5761221b612325565b500490565b600081600019048311821515161561223a5761223a61230f565b500290565b6000828210156122515761225161230f565b500390565b600060ff821660ff8416808210156122705761227061230f565b90039392505050565b60005b8381101561229457818101518382015260200161227c565b83811115610d115750506000910152565b6002810460018216806122b957607f821691505b602082108114156122da57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122f4576122f461230f565b5060010190565b60008261230a5761230a612325565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610e4b57600080fd5b6001600160e01b031981168114610e4b57600080fdfea264697066735822122079e6842b37efe19a3030ced4252f87bf39c6d61b726bf64c398e25583c3b705a64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c42696c6c696f6e6169726573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024242000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005a68747470733a2f2f75732d63656e7472616c312d626974636f696e2d62696c6c696f6e61697265732d39646231342e636c6f756466756e6374696f6e732e6e65742f7765624170692f6170692f62696c6c696f6e61697265732f000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636ecd2306116100f7578063a22cb46511610095578063f04a67ae11610064578063f04a67ae146104a0578063f2fde38b146104cd578063f44a0c10146104ed578063f79aade01461050d576101c2565b8063a22cb46514610420578063b88d4fde14610440578063c87b56dd14610460578063e985e9c514610480576101c2565b80638d859f3e116100d15780638d859f3e146103cc5780638da5cb5b146103e1578063957aa58c146103f657806395d89b411461040b576101c2565b80636ecd23061461038457806370a0823114610397578063715018a6146103b7576101c2565b806342842e0e1161016457806355f804b31161013e57806355f804b31461031a5780636352211e1461033a57806368be98221461035a5780636c0360eb1461036f576101c2565b806342842e0e146102c55780634f02c420146102e557806351cff8d9146102fa576101c2565b8063081812fc116101a0578063081812fc14610236578063095ea7b31461026357806323b872dd1461028357806332cb6b0c146102a3576101c2565b806301ffc9a7146101c75780630275e556146101fd57806306fdde0314610214575b600080fd5b3480156101d357600080fd5b506101e76101e23660046118ea565b610522565b6040516101f49190611a4c565b60405180910390f35b34801561020957600080fd5b5061021261059c565b005b34801561022057600080fd5b50610229610616565b6040516101f49190611a57565b34801561024257600080fd5b50610256610251366004611968565b6106a8565b6040516101f491906119fc565b34801561026f57600080fd5b5061021261027e366004611850565b6106eb565b34801561028f57600080fd5b5061021261029e366004611762565b610783565b3480156102af57600080fd5b506102b86107bb565b6040516101f491906121dd565b3480156102d157600080fd5b506102126102e0366004611762565b6107c1565b3480156102f157600080fd5b506102b86107dc565b34801561030657600080fd5b5061021261031536600461170e565b6107e2565b34801561032657600080fd5b50610212610335366004611922565b61087a565b34801561034657600080fd5b50610256610355366004611968565b6108cc565b34801561036657600080fd5b506102b8610901565b34801561037b57600080fd5b50610229610907565b610212610392366004611980565b610995565b3480156103a357600080fd5b506102b86103b236600461170e565b610b48565b3480156103c357600080fd5b50610212610b8c565b3480156103d857600080fd5b506102b8610bd7565b3480156103ed57600080fd5b50610256610be3565b34801561040257600080fd5b506101e7610bf2565b34801561041757600080fd5b50610229610bfb565b34801561042c57600080fd5b5061021261043b36600461181f565b610c0a565b34801561044c57600080fd5b5061021261045b3660046117a2565b610cd8565b34801561046c57600080fd5b5061022961047b366004611968565b610d17565b34801561048c57600080fd5b506101e761049b36600461172a565b610d9a565b3480156104ac57600080fd5b506104c06104bb36600461170e565b610dc8565b6040516101f491906121e6565b3480156104d957600080fd5b506102126104e836600461170e565b610ddd565b3480156104f957600080fd5b5061021261050836600461187b565b610e4e565b34801561051957600080fd5b506104c0610f10565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061058557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610594575061059482610f1b565b90505b919050565b6105a4610f4d565b6001600160a01b03166105b5610be3565b6001600160a01b0316146105e45760405162461bcd60e51b81526004016105db90611f32565b60405180910390fd5b60085460ff16156106075760405162461bcd60e51b81526004016105db90611ac7565b6008805460ff19166001179055565b606060008054610625906122a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610651906122a5565b801561069e5780601f106106735761010080835404028352916020019161069e565b820191906000526020600020905b81548152906001019060200180831161068157829003601f168201915b5050505050905090565b60006106b382610f51565b6106cf5760405162461bcd60e51b81526004016105db90611ee6565b506000908152600460205260409020546001600160a01b031690565b60006106f6826108cc565b9050806001600160a01b0316836001600160a01b0316141561072a5760405162461bcd60e51b81526004016105db90612058565b806001600160a01b031661073c610f4d565b6001600160a01b0316148061075857506107588161049b610f4d565b6107745760405162461bcd60e51b81526004016105db90611d3d565b61077e8383610f6e565b505050565b61079461078e610f4d565b82610fe9565b6107b05760405162461bcd60e51b81526004016105db906120b5565b61077e83838361106e565b61341981565b61077e83838360405180602001604052806000815250610cd8565b60095481565b6107ea610f4d565b6001600160a01b03166107fb610be3565b6001600160a01b0316146108215760405162461bcd60e51b81526004016105db90611f32565b600047116108415760405162461bcd60e51b81526004016105db90611f67565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610876573d6000803e3d6000fd5b5050565b610882610f4d565b6001600160a01b0316610893610be3565b6001600160a01b0316146108b95760405162461bcd60e51b81526004016105db90611f32565b805161087690600b906020840190611605565b6000818152600260205260408120546001600160a01b0316806105945760405162461bcd60e51b81526004016105db90611e54565b61015181565b600b8054610914906122a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610940906122a5565b801561098d5780601f106109625761010080835404028352916020019161098d565b820191906000526020600020905b81548152906001019060200180831161097057829003601f168201915b505050505081565b600260075414156109b85760405162461bcd60e51b81526004016105db90612149565b600260075560ff81166109dd5760405162461bcd60e51b81526004016105db90611d06565b600a8160ff161115610a015760405162461bcd60e51b81526004016105db90612112565b610a1660ff821667013fbe85edc90000612220565b3414610a345760405162461bcd60e51b81526004016105db90611c26565b6134198160ff16600954610a4891906121f4565b1115610a665760405162461bcd60e51b81526004016105db90611c5d565b60085460ff16610b0257336000908152600a602052604090205460ff1680610aa05760405162461bcd60e51b81526004016105db90612180565b8160ff168160ff161015610ac65760405162461bcd60e51b81526004016105db90611d9a565b336000908152600a602052604081208054849290610ae890849060ff16612256565b92506101000a81548160ff021916908360ff160217905550505b60005b8160ff16811015610b3f57610b2d33600960008154610b23906122e0565b91829055506111a8565b80610b37816122e0565b915050610b05565b50506001600755565b60006001600160a01b038216610b705760405162461bcd60e51b81526004016105db90611df7565b506001600160a01b031660009081526003602052604090205490565b610b94610f4d565b6001600160a01b0316610ba5610be3565b6001600160a01b031614610bcb5760405162461bcd60e51b81526004016105db90611f32565b610bd560006111c2565b565b67013fbe85edc9000081565b6006546001600160a01b031690565b60085460ff1681565b606060018054610625906122a5565b610c12610f4d565b6001600160a01b0316826001600160a01b03161415610c435760405162461bcd60e51b81526004016105db90611bef565b8060056000610c50610f4d565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610c94610f4d565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ccc9190611a4c565b60405180910390a35050565b610ce9610ce3610f4d565b83610fe9565b610d055760405162461bcd60e51b81526004016105db906120b5565b610d1184848484611221565b50505050565b6060610d2282610f51565b610d3e5760405162461bcd60e51b81526004016105db90611ffb565b6000610d48611254565b90506000815111610d685760405180602001604052806000815250610d93565b80610d7284611263565b604051602001610d839291906119cd565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600a6020526000908152604090205460ff1681565b610de5610f4d565b6001600160a01b0316610df6610be3565b6001600160a01b031614610e1c5760405162461bcd60e51b81526004016105db90611f32565b6001600160a01b038116610e425760405162461bcd60e51b81526004016105db90611afe565b610e4b816111c2565b50565b610e56610f4d565b6001600160a01b0316610e67610be3565b6001600160a01b031614610e8d5760405162461bcd60e51b81526004016105db90611f32565b60005b8181101561077e576003600a6000858585818110610ebe57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610ed3919061170e565b6001600160a01b031681526020810191909152604001600020805460ff191660ff9290921691909117905580610f08816122e0565b915050610e90565b600381565b3b151590565b6001600160e01b031981167f01ffc9a70000000000000000000000000000000000000000000000000000000014919050565b3390565b6000908152600260205260409020546001600160a01b0316151590565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190610fb0826108cc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610ff482610f51565b6110105760405162461bcd60e51b81526004016105db90611cba565b600061101b836108cc565b9050806001600160a01b0316846001600160a01b031614806110565750836001600160a01b031661104b846106a8565b6001600160a01b0316145b8061106657506110668185610d9a565b949350505050565b826001600160a01b0316611081826108cc565b6001600160a01b0316146110a75760405162461bcd60e51b81526004016105db90611f9e565b6001600160a01b0382166110cd5760405162461bcd60e51b81526004016105db90611b92565b6110d883838361077e565b6110e3600082610f6e565b6001600160a01b038316600090815260036020526040812080546001929061110c90849061223f565b90915550506001600160a01b038216600090815260036020526040812080546001929061113a9084906121f4565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6108768282604051806020016040528060008152506113b2565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61122c84848461106e565b611238848484846113e5565b610d115760405162461bcd60e51b81526004016105db90611a6a565b6060600b8054610625906122a5565b6060816112a4575060408051808201909152600181527f30000000000000000000000000000000000000000000000000000000000000006020820152610597565b8160005b81156112ce57806112b8816122e0565b91506112c79050600a8361220c565b91506112a8565b60008167ffffffffffffffff8111156112f757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611321576020820181803683370190505b5090505b84156110665761133660018361223f565b9150611343600a866122fb565b61134e9060306121f4565b60f81b81838151811061137157634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506113ab600a8661220c565b9450611325565b6113bc8383611519565b6113c960008484846113e5565b61077e5760405162461bcd60e51b81526004016105db90611a6a565b60006113f9846001600160a01b0316610f15565b1561150e57836001600160a01b031663150b7a02611415610f4d565b8786866040518563ffffffff1660e01b81526004016114379493929190611a10565b602060405180830381600087803b15801561145157600080fd5b505af1925050508015611481575060408051601f3d908101601f1916820190925261147e91810190611906565b60015b6114db573d8080156114af576040519150601f19603f3d011682016040523d82523d6000602084013e6114b4565b606091505b5080516114d35760405162461bcd60e51b81526004016105db90611a6a565b805181602001fd5b6001600160e01b0319167f150b7a0200000000000000000000000000000000000000000000000000000000149050611066565b506001949350505050565b6001600160a01b03821661153f5760405162461bcd60e51b81526004016105db90611eb1565b61154881610f51565b156115655760405162461bcd60e51b81526004016105db90611b5b565b6115716000838361077e565b6001600160a01b038216600090815260036020526040812080546001929061159a9084906121f4565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611611906122a5565b90600052602060002090601f0160209004810192826116335760008555611679565b82601f1061164c57805160ff1916838001178555611679565b82800160010185558215611679579182015b8281111561167957825182559160200191906001019061165e565b50611685929150611689565b5090565b5b80821115611685576000815560010161168a565b600067ffffffffffffffff808411156116b9576116b961233b565b604051601f8501601f1916810160200182811182821017156116dd576116dd61233b565b6040528481529150818385018610156116f557600080fd5b8484602083013760006020868301015250509392505050565b60006020828403121561171f578081fd5b8135610d9381612351565b6000806040838503121561173c578081fd5b823561174781612351565b9150602083013561175781612351565b809150509250929050565b600080600060608486031215611776578081fd5b833561178181612351565b9250602084013561179181612351565b929592945050506040919091013590565b600080600080608085870312156117b7578081fd5b84356117c281612351565b935060208501356117d281612351565b925060408501359150606085013567ffffffffffffffff8111156117f4578182fd5b8501601f81018713611804578182fd5b6118138782356020840161169e565b91505092959194509250565b60008060408385031215611831578182fd5b823561183c81612351565b915060208301358015158114611757578182fd5b60008060408385031215611862578182fd5b823561186d81612351565b946020939093013593505050565b6000806020838503121561188d578182fd5b823567ffffffffffffffff808211156118a4578384fd5b818501915085601f8301126118b7578384fd5b8135818111156118c5578485fd5b86602080830285010111156118d8578485fd5b60209290920196919550909350505050565b6000602082840312156118fb578081fd5b8135610d9381612366565b600060208284031215611917578081fd5b8151610d9381612366565b600060208284031215611933578081fd5b813567ffffffffffffffff811115611949578182fd5b8201601f81018413611959578182fd5b6110668482356020840161169e565b600060208284031215611979578081fd5b5035919050565b600060208284031215611991578081fd5b813560ff81168114610d93578182fd5b600081518084526119b9816020860160208601612279565b601f01601f19169290920160200192915050565b600083516119df818460208801612279565b8351908301906119f3818360208801612279565b01949350505050565b6001600160a01b0391909116815260200190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611a4260808301846119a1565b9695505050505050565b901515815260200190565b600060208252610d9360208301846119a1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b6020808252601b908201527f5075626c69632073616c6520697320616c7265616479206c6976650000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b60208082526023908201527f536f6c64206f75742c20636865636b206f7574204f70656e5365612074686f2160408201527f203c330000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601a908201527f416d6f756e74206d757374206265206d6f7265207468616e2030000000000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526023908201527f416d6f756e74206d6f7265207468616e20796f75722070726573616c65206c6960408201527f6d69740000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560408201527f726f206164647265737300000000000000000000000000000000000000000000606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526013908201527f4e6f20636f6e74726163742062616c616e636500000000000000000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560408201527f7200000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b60208082526019908201527f416d6f756e74206d757374206265203130206f72206c65737300000000000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602e908201527f496e76616c69642070726573616c652062616c616e6365202d205075626c696360408201527f2073616c65206e6f74206c697665000000000000000000000000000000000000606082015260800190565b90815260200190565b60ff91909116815260200190565b600082198211156122075761220761230f565b500190565b60008261221b5761221b612325565b500490565b600081600019048311821515161561223a5761223a61230f565b500290565b6000828210156122515761225161230f565b500390565b600060ff821660ff8416808210156122705761227061230f565b90039392505050565b60005b8381101561229457818101518382015260200161227c565b83811115610d115750506000910152565b6002810460018216806122b957607f821691505b602082108114156122da57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122f4576122f461230f565b5060010190565b60008261230a5761230a612325565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610e4b57600080fd5b6001600160e01b031981168114610e4b57600080fdfea264697066735822122079e6842b37efe19a3030ced4252f87bf39c6d61b726bf64c398e25583c3b705a64736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c42696c6c696f6e6169726573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024242000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005a68747470733a2f2f75732d63656e7472616c312d626974636f696e2d62696c6c696f6e61697265732d39646231342e636c6f756466756e6374696f6e732e6e65742f7765624170692f6170692f62696c6c696f6e61697265732f000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Billionaires
Arg [1] : symbol_ (string): BB
Arg [2] : baseURI_ (string): https://us-central1-bitcoin-billionaires-9db14.cloudfunctions.net/webApi/api/billionaires/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 42696c6c696f6e61697265730000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 4242000000000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000005a
Arg [8] : 68747470733a2f2f75732d63656e7472616c312d626974636f696e2d62696c6c
Arg [9] : 696f6e61697265732d39646231342e636c6f756466756e6374696f6e732e6e65
Arg [10] : 742f7765624170692f6170692f62696c6c696f6e61697265732f000000000000


Deployed Bytecode Sourcemap

41702:2393:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21167:355;;;;;;;;;;-1:-1:-1;21167:355:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43544:128;;;;;;;;;;;;;:::i;:::-;;22336:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24029:308::-;;;;;;;;;;-1:-1:-1;24029:308:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;23552:411::-;;;;;;;;;;-1:-1:-1;23552:411:0;;;;;:::i;:::-;;:::i;25088:376::-;;;;;;;;;;-1:-1:-1;25088:376:0;;;;;:::i;:::-;;:::i;41817:42::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25535:185::-;;;;;;;;;;-1:-1:-1;25535:185:0;;;;;:::i;:::-;;:::i;41988:21::-;;;;;;;;;;;;;:::i;43680:190::-;;;;;;;;;;-1:-1:-1;43680:190:0;;;;;:::i;:::-;;:::i;43878:98::-;;;;;;;;;;-1:-1:-1;43878:98:0;;;;;:::i;:::-;;:::i;21943:326::-;;;;;;;;;;-1:-1:-1;21943:326:0;;;;;:::i;:::-;;:::i;41866:42::-;;;;;;;;;;;;;:::i;42067:21::-;;;;;;;;;;;;;:::i;42390:932::-;;;;;;:::i;:::-;;:::i;21586:295::-;;;;;;;;;;-1:-1:-1;21586:295:0;;;;;:::i;:::-;;:::i;35897:94::-;;;;;;;;;;;;;:::i;41767:43::-;;;;;;;;;;;;;:::i;35246:87::-;;;;;;;;;;;;;:::i;41965:16::-;;;;;;;;;;;;;:::i;22505:104::-;;;;;;;;;;;;;:::i;24409:327::-;;;;;;;;;;-1:-1:-1;24409:327:0;;;;;:::i;:::-;;:::i;25791:365::-;;;;;;;;;;-1:-1:-1;25791:365:0;;;;;:::i;:::-;;:::i;22680:468::-;;;;;;;;;;-1:-1:-1;22680:468:0;;;;;:::i;:::-;;:::i;24807:214::-;;;;;;;;;;-1:-1:-1;24807:214:0;;;;;:::i;:::-;;:::i;42016:44::-;;;;;;;;;;-1:-1:-1;42016:44:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;36146:229::-;;;;;;;;;;-1:-1:-1;36146:229:0;;;;;:::i;:::-;;:::i;43330:206::-;;;;;;;;;;-1:-1:-1;43330:206:0;;;;;:::i;:::-;;:::i;41915:41::-;;;;;;;;;;;;;:::i;21167:355::-;21314:4;-1:-1:-1;;;;;;21356:40:0;;21371:25;21356:40;;:105;;-1:-1:-1;;;;;;;21413:48:0;;21428:33;21413:48;21356:105;:158;;;;21478:36;21502:11;21478:23;:36::i;:::-;21336:178;;21167:355;;;;:::o;43544:128::-;35477:12;:10;:12::i;:::-;-1:-1:-1;;;;;35466:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;35466:23:0;;35458:68;;;;-1:-1:-1;;;35458:68:0;;;;;;;:::i;:::-;;;;;;;;;43606:4:::1;::::0;::::1;;43605:5;43597:45;;;;-1:-1:-1::0;;;43597:45:0::1;;;;;;;:::i;:::-;43653:4;:11:::0;;-1:-1:-1;;43653:11:0::1;43660:4;43653:11;::::0;;43544:128::o;22336:100::-;22390:13;22423:5;22416:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22336:100;:::o;24029:308::-;24150:7;24197:16;24205:7;24197;:16::i;:::-;24175:110;;;;-1:-1:-1;;;24175:110:0;;;;;;;:::i;:::-;-1:-1:-1;24305:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24305:24:0;;24029:308::o;23552:411::-;23633:13;23649:23;23664:7;23649:14;:23::i;:::-;23633:39;;23697:5;-1:-1:-1;;;;;23691:11:0;:2;-1:-1:-1;;;;;23691:11:0;;;23683:57;;;;-1:-1:-1;;;23683:57:0;;;;;;;:::i;:::-;23791:5;-1:-1:-1;;;;;23775:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;23775:21:0;;:62;;;;23800:37;23817:5;23824:12;:10;:12::i;23800:37::-;23753:168;;;;-1:-1:-1;;;23753:168:0;;;;;;;:::i;:::-;23934:21;23943:2;23947:7;23934:8;:21::i;:::-;23552:411;;;:::o;25088:376::-;25297:41;25316:12;:10;:12::i;:::-;25330:7;25297:18;:41::i;:::-;25275:140;;;;-1:-1:-1;;;25275:140:0;;;;;;;:::i;:::-;25428:28;25438:4;25444:2;25448:7;25428:9;:28::i;41817:42::-;41854:5;41817:42;:::o;25535:185::-;25673:39;25690:4;25696:2;25700:7;25673:39;;;;;;;;;;;;:16;:39::i;41988:21::-;;;;:::o;43680:190::-;35477:12;:10;:12::i;:::-;-1:-1:-1;;;;;35466:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;35466:23:0;;35458:68;;;;-1:-1:-1;;;35458:68:0;;;;;;;:::i;:::-;43785:1:::1;43761:21;:25;43753:57;;;;-1:-1:-1::0;;;43753:57:0::1;;;;;;;:::i;:::-;43821:41;::::0;-1:-1:-1;;;;;43821:18:0;::::1;::::0;43840:21:::1;43821:41:::0;::::1;;;::::0;::::1;::::0;;;43840:21;43821:18;:41;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;43680:190:::0;:::o;43878:98::-;35477:12;:10;:12::i;:::-;-1:-1:-1;;;;;35466:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;35466:23:0;;35458:68;;;;-1:-1:-1;;;35458:68:0;;;;;;;:::i;:::-;43950:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;21943:326::-:0;22060:7;22101:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22101:16:0;22150:19;22128:110;;;;-1:-1:-1;;;22128:110:0;;;;;;;:::i;41866:42::-;41905:3;41866:42;:::o;42067:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42390:932::-;38285:1;38881:7;;:19;;38873:63;;;;-1:-1:-1;;;38873:63:0;;;;;;;:::i;:::-;38285:1;39014:7;:18;42465:10:::1;::::0;::::1;42457:49;;;;-1:-1:-1::0;;;42457:49:0::1;;;;;;;:::i;:::-;42535:2;42525:6;:12;;;;42517:50;;;;-1:-1:-1::0;;;42517:50:0::1;;;;;;;:::i;:::-;42599:14;;::::0;::::1;41799:11;42599:14;:::i;:::-;42586:9;:27;42578:71;;;;-1:-1:-1::0;;;42578:71:0::1;;;;;;;:::i;:::-;41854:5;42691:6;42682:15;;:6;;:15;;;;:::i;:::-;:29;;42660:114;;;;-1:-1:-1::0;;;42660:114:0::1;;;;;;;:::i;:::-;42792:4;::::0;::::1;;42787:421;;42852:10;42813:24;42840:23:::0;;;:11:::1;:23;::::0;;;;;::::1;;42904:22:::0;42878:130:::1;;;;-1:-1:-1::0;;;42878:130:0::1;;;;;;;:::i;:::-;43071:6;43049:28;;:18;:28;;;;43023:125;;;;-1:-1:-1::0;;;43023:125:0::1;;;;;;;:::i;:::-;43175:10;43163:23;::::0;;;:11:::1;:23;::::0;;;;:33;;43190:6;;43163:23;:33:::1;::::0;43190:6;;43163:33:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42787:421;;43225:9;43220:95;43244:6;43240:10;;:1;:10;43220:95;;;43272:31;43282:10;43296:6;;43294:8;;;;;:::i;:::-;::::0;;;;-1:-1:-1;43272:9:0::1;:31::i;:::-;43252:3:::0;::::1;::::0;::::1;:::i;:::-;;;;43220:95;;;-1:-1:-1::0;;38241:1:0;39193:7;:22;42390:932::o;21586:295::-;21703:7;-1:-1:-1;;;;;21750:19:0;;21728:111;;;;-1:-1:-1;;;21728:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;21857:16:0;;;;;:9;:16;;;;;;;21586:295::o;35897:94::-;35477:12;:10;:12::i;:::-;-1:-1:-1;;;;;35466:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;35466:23:0;;35458:68;;;;-1:-1:-1;;;35458:68:0;;;;;;;:::i;:::-;35962:21:::1;35980:1;35962:9;:21::i;:::-;35897:94::o:0;41767:43::-;41799:11;41767:43;:::o;35246:87::-;35319:6;;-1:-1:-1;;;;;35319:6:0;35246:87;:::o;41965:16::-;;;;;;:::o;22505:104::-;22561:13;22594:7;22587:14;;;;;:::i;24409:327::-;24556:12;:10;:12::i;:::-;-1:-1:-1;;;;;24544:24:0;:8;-1:-1:-1;;;;;24544:24:0;;;24536:62;;;;-1:-1:-1;;;24536:62:0;;;;;;;:::i;:::-;24656:8;24611:18;:32;24630:12;:10;:12::i;:::-;-1:-1:-1;;;;;24611:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;24611:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;24611:53:0;;;;;;;;;;;24695:12;:10;:12::i;:::-;-1:-1:-1;;;;;24680:48:0;;24719:8;24680:48;;;;;;:::i;:::-;;;;;;;;24409:327;;:::o;25791:365::-;25980:41;25999:12;:10;:12::i;:::-;26013:7;25980:18;:41::i;:::-;25958:140;;;;-1:-1:-1;;;25958:140:0;;;;;;;:::i;:::-;26109:39;26123:4;26129:2;26133:7;26142:5;26109:13;:39::i;:::-;25791:365;;;;:::o;22680:468::-;22798:13;22851:16;22859:7;22851;:16::i;:::-;22829:113;;;;-1:-1:-1;;;22829:113:0;;;;;;;:::i;:::-;22955:21;22979:10;:8;:10::i;:::-;22955:34;;23044:1;23026:7;23020:21;:25;:120;;;;;;;;;;;;;;;;;23089:7;23098:18;:7;:16;:18::i;:::-;23072:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23020:120;23000:140;22680:468;-1:-1:-1;;;22680:468:0:o;24807:214::-;-1:-1:-1;;;;;24978:25:0;;;24949:4;24978:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24807:214::o;42016:44::-;;;;;;;;;;;;;;;:::o;36146:229::-;35477:12;:10;:12::i;:::-;-1:-1:-1;;;;;35466:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;35466:23:0;;35458:68;;;;-1:-1:-1;;;35458:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36249:22:0;::::1;36227:110;;;;-1:-1:-1::0;;;36227:110:0::1;;;;;;;:::i;:::-;36348:19;36358:8;36348:9;:19::i;:::-;36146:229:::0;:::o;43330:206::-;35477:12;:10;:12::i;:::-;-1:-1:-1;;;;;35466:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;35466:23:0;;35458:68;;;;-1:-1:-1;;;35458:68:0;;;;;;;:::i;:::-;43417:9:::1;43412:117;43432:20:::0;;::::1;43412:117;;;41955:1;43474:11;:25;43486:9;;43496:1;43486:12;;;;;-1:-1:-1::0;;;43486:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;43474:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;43474:25:0;:43;;-1:-1:-1;;43474:43:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;43454:3;::::1;::::0;::::1;:::i;:::-;;;;43412:117;;41915:41:::0;41955:1;41915:41;:::o;8200:387::-;8523:20;8571:8;;;8200:387::o;19660:207::-;-1:-1:-1;;;;;;19819:40:0;;19834:25;19819:40;19660:207;;;:::o;16598:98::-;16678:10;16598:98;:::o;27703:127::-;27768:4;27792:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27792:16:0;:30;;;27703:127::o;31826:174::-;31901:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;31901:29:0;-1:-1:-1;;;;;31901:29:0;;;;;;;;:24;;31955:23;31901:24;31955:14;:23::i;:::-;-1:-1:-1;;;;;31946:46:0;;;;;;;;;;;31826:174;;:::o;27997:452::-;28126:4;28170:16;28178:7;28170;:16::i;:::-;28148:110;;;;-1:-1:-1;;;28148:110:0;;;;;;;:::i;:::-;28269:13;28285:23;28300:7;28285:14;:23::i;:::-;28269:39;;28338:5;-1:-1:-1;;;;;28327:16:0;:7;-1:-1:-1;;;;;28327:16:0;;:64;;;;28384:7;-1:-1:-1;;;;;28360:31:0;:20;28372:7;28360:11;:20::i;:::-;-1:-1:-1;;;;;28360:31:0;;28327:64;:113;;;;28408:32;28425:5;28432:7;28408:16;:32::i;:::-;28319:122;27997:452;-1:-1:-1;;;;27997:452:0:o;31093:615::-;31266:4;-1:-1:-1;;;;;31239:31:0;:23;31254:7;31239:14;:23::i;:::-;-1:-1:-1;;;;;31239:31:0;;31217:122;;;;-1:-1:-1;;;31217:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31358:16:0;;31350:65;;;;-1:-1:-1;;;31350:65:0;;;;;;;:::i;:::-;31428:39;31449:4;31455:2;31459:7;31428:20;:39::i;:::-;31532:29;31549:1;31553:7;31532:8;:29::i;:::-;-1:-1:-1;;;;;31574:15:0;;;;;;:9;:15;;;;;:20;;31593:1;;31574:15;:20;;31593:1;;31574:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31605:13:0;;;;;;:9;:13;;;;;:18;;31622:1;;31605:13;:18;;31622:1;;31605:18;:::i;:::-;;;;-1:-1:-1;;31634:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;31634:21:0;-1:-1:-1;;;;;31634:21:0;;;;;;;;;31673:27;;31634:16;;31673:27;;;;;;;31093:615;;;:::o;28791:110::-;28867:26;28877:2;28881:7;28867:26;;;;;;;;;;;;:9;:26::i;36383:173::-;36458:6;;;-1:-1:-1;;;;;36475:17:0;;;-1:-1:-1;;36475:17:0;;;;;;;36508:40;;36458:6;;;36475:17;36458:6;;36508:40;;36439:16;;36508:40;36383:173;;:::o;27038:352::-;27195:28;27205:4;27211:2;27215:7;27195:9;:28::i;:::-;27256:48;27279:4;27285:2;27289:7;27298:5;27256:22;:48::i;:::-;27234:148;;;;-1:-1:-1;;;27234:148:0;;;;;;;:::i;43984:108::-;44044:13;44077:7;44070:14;;;;;:::i;17098:723::-;17154:13;17375:10;17371:53;;-1:-1:-1;17402:10:0;;;;;;;;;;;;;;;;;;;17371:53;17449:5;17434:12;17490:78;17497:9;;17490:78;;17523:8;;;;:::i;:::-;;-1:-1:-1;17546:10:0;;-1:-1:-1;17554:2:0;17546:10;;:::i;:::-;;;17490:78;;;17578:19;17610:6;17600:17;;;;;;-1:-1:-1;;;17600:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17600:17:0;;17578:39;;17628:154;17635:10;;17628:154;;17662:11;17672:1;17662:11;;:::i;:::-;;-1:-1:-1;17731:10:0;17739:2;17731:5;:10;:::i;:::-;17718:24;;:2;:24;:::i;:::-;17705:39;;17688:6;17695;17688:14;;;;;;-1:-1:-1;;;17688:14:0;;;;;;;;;;;;:56;;;;;;;;;;-1:-1:-1;17759:11:0;17768:2;17759:11;;:::i;:::-;;;17628:154;;29128:321;29258:18;29264:2;29268:7;29258:5;:18::i;:::-;29309:54;29340:1;29344:2;29348:7;29357:5;29309:22;:54::i;:::-;29287:154;;;;-1:-1:-1;;;29287:154:0;;;;;;;:::i;32565:980::-;32720:4;32741:15;:2;-1:-1:-1;;;;;32741:13:0;;:15::i;:::-;32737:801;;;32810:2;-1:-1:-1;;;;;32794:36:0;;32853:12;:10;:12::i;:::-;32888:4;32915:7;32945:5;32794:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32794:175:0;;;;;;;;-1:-1:-1;;32794:175:0;;;;;;;;;;;;:::i;:::-;;;32773:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33152:13:0;;33148:320;;33195:108;;-1:-1:-1;;;33195:108:0;;;;;;;:::i;33148:320::-;33418:6;33412:13;33403:6;33399:2;33395:15;33388:38;32773:710;-1:-1:-1;;;;;;33033:51:0;33043:41;33033:51;;-1:-1:-1;33026:58:0;;32737:801;-1:-1:-1;33522:4:0;32565:980;;;;;;:::o;29785:382::-;-1:-1:-1;;;;;29865:16:0;;29857:61;;;;-1:-1:-1;;;29857:61:0;;;;;;;:::i;:::-;29938:16;29946:7;29938;:16::i;:::-;29937:17;29929:58;;;;-1:-1:-1;;;29929:58:0;;;;;;;:::i;:::-;30000:45;30029:1;30033:2;30037:7;30000:20;:45::i;:::-;-1:-1:-1;;;;;30058:13:0;;;;;;:9;:13;;;;;:18;;30075:1;;30058:13;:18;;30075:1;;30058:18;:::i;:::-;;;;-1:-1:-1;;30087:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;30087:21:0;-1:-1:-1;;;;;30087:21:0;;;;;;;;30126:33;;30087:16;;;30126:33;;30087:16;;30126:33;29785:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:259::-;;738:2;726:9;717:7;713:23;709:32;706:2;;;759:6;751;744:22;706:2;803:9;790:23;822:33;849:5;822:33;:::i;1162:402::-;;;1291:2;1279:9;1270:7;1266:23;1262:32;1259:2;;;1312:6;1304;1297:22;1259:2;1356:9;1343:23;1375:33;1402:5;1375:33;:::i;:::-;1427:5;-1:-1:-1;1484:2:1;1469:18;;1456:32;1497:35;1456:32;1497:35;:::i;:::-;1551:7;1541:17;;;1249:315;;;;;:::o;1569:470::-;;;;1715:2;1703:9;1694:7;1690:23;1686:32;1683:2;;;1736:6;1728;1721:22;1683:2;1780:9;1767:23;1799:33;1826:5;1799:33;:::i;:::-;1851:5;-1:-1:-1;1908:2:1;1893:18;;1880:32;1921:35;1880:32;1921:35;:::i;:::-;1673:366;;1975:7;;-1:-1:-1;;;2029:2:1;2014:18;;;;2001:32;;1673:366::o;2044:830::-;;;;;2216:3;2204:9;2195:7;2191:23;2187:33;2184:2;;;2238:6;2230;2223:22;2184:2;2282:9;2269:23;2301:33;2328:5;2301:33;:::i;:::-;2353:5;-1:-1:-1;2410:2:1;2395:18;;2382:32;2423:35;2382:32;2423:35;:::i;:::-;2477:7;-1:-1:-1;2531:2:1;2516:18;;2503:32;;-1:-1:-1;2586:2:1;2571:18;;2558:32;2613:18;2602:30;;2599:2;;;2650:6;2642;2635:22;2599:2;2678:22;;2731:4;2723:13;;2719:27;-1:-1:-1;2709:2:1;;2765:6;2757;2750:22;2709:2;2793:75;2860:7;2855:2;2842:16;2837:2;2833;2829:11;2793:75;:::i;:::-;2783:85;;;2174:700;;;;;;;:::o;2879:438::-;;;3005:2;2993:9;2984:7;2980:23;2976:32;2973:2;;;3026:6;3018;3011:22;2973:2;3070:9;3057:23;3089:33;3116:5;3089:33;:::i;:::-;3141:5;-1:-1:-1;3198:2:1;3183:18;;3170:32;3240:15;;3233:23;3221:36;;3211:2;;3276:6;3268;3261:22;3322:327;;;3451:2;3439:9;3430:7;3426:23;3422:32;3419:2;;;3472:6;3464;3457:22;3419:2;3516:9;3503:23;3535:33;3562:5;3535:33;:::i;:::-;3587:5;3639:2;3624:18;;;;3611:32;;-1:-1:-1;;;3409:240:1:o;3654:666::-;;;3801:2;3789:9;3780:7;3776:23;3772:32;3769:2;;;3822:6;3814;3807:22;3769:2;3867:9;3854:23;3896:18;3937:2;3929:6;3926:14;3923:2;;;3958:6;3950;3943:22;3923:2;4001:6;3990:9;3986:22;3976:32;;4046:7;4039:4;4035:2;4031:13;4027:27;4017:2;;4073:6;4065;4058:22;4017:2;4118;4105:16;4144:2;4136:6;4133:14;4130:2;;;4165:6;4157;4150:22;4130:2;4224:7;4219:2;4213;4205:6;4201:15;4197:2;4193:24;4189:33;4186:46;4183:2;;;4250:6;4242;4235:22;4183:2;4286;4278:11;;;;;4308:6;;-1:-1:-1;3759:561:1;;-1:-1:-1;;;;3759:561:1:o;4325:257::-;;4436:2;4424:9;4415:7;4411:23;4407:32;4404:2;;;4457:6;4449;4442:22;4404:2;4501:9;4488:23;4520:32;4546:5;4520:32;:::i;4587:261::-;;4709:2;4697:9;4688:7;4684:23;4680:32;4677:2;;;4730:6;4722;4715:22;4677:2;4767:9;4761:16;4786:32;4812:5;4786:32;:::i;4853:482::-;;4975:2;4963:9;4954:7;4950:23;4946:32;4943:2;;;4996:6;4988;4981:22;4943:2;5041:9;5028:23;5074:18;5066:6;5063:30;5060:2;;;5111:6;5103;5096:22;5060:2;5139:22;;5192:4;5184:13;;5180:27;-1:-1:-1;5170:2:1;;5226:6;5218;5211:22;5170:2;5254:75;5321:7;5316:2;5303:16;5298:2;5294;5290:11;5254:75;:::i;5340:190::-;;5452:2;5440:9;5431:7;5427:23;5423:32;5420:2;;;5473:6;5465;5458:22;5420:2;-1:-1:-1;5501:23:1;;5410:120;-1:-1:-1;5410:120:1:o;5535:289::-;;5645:2;5633:9;5624:7;5620:23;5616:32;5613:2;;;5666:6;5658;5651:22;5613:2;5710:9;5697:23;5760:4;5753:5;5749:16;5742:5;5739:27;5729:2;;5785:6;5777;5770:22;5829:259;;5910:5;5904:12;5937:6;5932:3;5925:19;5953:63;6009:6;6002:4;5997:3;5993:14;5986:4;5979:5;5975:16;5953:63;:::i;:::-;6070:2;6049:15;-1:-1:-1;;6045:29:1;6036:39;;;;6077:4;6032:50;;5880:208;-1:-1:-1;;5880:208:1:o;6093:470::-;;6310:6;6304:13;6326:53;6372:6;6367:3;6360:4;6352:6;6348:17;6326:53;:::i;:::-;6442:13;;6401:16;;;;6464:57;6442:13;6401:16;6498:4;6486:17;;6464:57;:::i;:::-;6537:20;;6280:283;-1:-1:-1;;;;6280:283:1:o;6568:226::-;-1:-1:-1;;;;;6732:55:1;;;;6714:74;;6702:2;6687:18;;6669:125::o;6799:513::-;;-1:-1:-1;;;;;7103:2:1;7095:6;7091:15;7080:9;7073:34;7155:2;7147:6;7143:15;7138:2;7127:9;7123:18;7116:43;;7195:6;7190:2;7179:9;7175:18;7168:34;7238:3;7233:2;7222:9;7218:18;7211:31;7259:47;7301:3;7290:9;7286:19;7278:6;7259:47;:::i;:::-;7251:55;7002:310;-1:-1:-1;;;;;;7002:310:1:o;7317:187::-;7482:14;;7475:22;7457:41;;7445:2;7430:18;;7412:92::o;7509:221::-;;7658:2;7647:9;7640:21;7678:46;7720:2;7709:9;7705:18;7697:6;7678:46;:::i;7735:414::-;7937:2;7919:21;;;7976:2;7956:18;;;7949:30;8015:34;8010:2;7995:18;;7988:62;8086:20;8081:2;8066:18;;8059:48;8139:3;8124:19;;7909:240::o;8154:351::-;8356:2;8338:21;;;8395:2;8375:18;;;8368:30;8434:29;8429:2;8414:18;;8407:57;8496:2;8481:18;;8328:177::o;8510:402::-;8712:2;8694:21;;;8751:2;8731:18;;;8724:30;8790:34;8785:2;8770:18;;8763:62;8861:8;8856:2;8841:18;;8834:36;8902:3;8887:19;;8684:228::o;8917:352::-;9119:2;9101:21;;;9158:2;9138:18;;;9131:30;9197;9192:2;9177:18;;9170:58;9260:2;9245:18;;9091:178::o;9274:400::-;9476:2;9458:21;;;9515:2;9495:18;;;9488:30;9554:34;9549:2;9534:18;;9527:62;9625:6;9620:2;9605:18;;9598:34;9664:3;9649:19;;9448:226::o;9679:349::-;9881:2;9863:21;;;9920:2;9900:18;;;9893:30;9959:27;9954:2;9939:18;;9932:55;10019:2;10004:18;;9853:175::o;10033:355::-;10235:2;10217:21;;;10274:2;10254:18;;;10247:30;10313:33;10308:2;10293:18;;10286:61;10379:2;10364:18;;10207:181::o;10393:399::-;10595:2;10577:21;;;10634:2;10614:18;;;10607:30;10673:34;10668:2;10653:18;;10646:62;10744:5;10739:2;10724:18;;10717:33;10782:3;10767:19;;10567:225::o;10797:408::-;10999:2;10981:21;;;11038:2;11018:18;;;11011:30;11077:34;11072:2;11057:18;;11050:62;-1:-1:-1;;;11143:2:1;11128:18;;11121:42;11195:3;11180:19;;10971:234::o;11210:350::-;11412:2;11394:21;;;11451:2;11431:18;;;11424:30;11490:28;11485:2;11470:18;;11463:56;11551:2;11536:18;;11384:176::o;11565:420::-;11767:2;11749:21;;;11806:2;11786:18;;;11779:30;11845:34;11840:2;11825:18;;11818:62;11916:26;11911:2;11896:18;;11889:54;11975:3;11960:19;;11739:246::o;11990:399::-;12192:2;12174:21;;;12231:2;12211:18;;;12204:30;12270:34;12265:2;12250:18;;12243:62;12341:5;12336:2;12321:18;;12314:33;12379:3;12364:19;;12164:225::o;12394:406::-;12596:2;12578:21;;;12635:2;12615:18;;;12608:30;12674:34;12669:2;12654:18;;12647:62;12745:12;12740:2;12725:18;;12718:40;12790:3;12775:19;;12568:232::o;12805:405::-;13007:2;12989:21;;;13046:2;13026:18;;;13019:30;13085:34;13080:2;13065:18;;13058:62;13156:11;13151:2;13136:18;;13129:39;13200:3;13185:19;;12979:231::o;13215:356::-;13417:2;13399:21;;;13436:18;;;13429:30;13495:34;13490:2;13475:18;;13468:62;13562:2;13547:18;;13389:182::o;13576:408::-;13778:2;13760:21;;;13817:2;13797:18;;;13790:30;13856:34;13851:2;13836:18;;13829:62;-1:-1:-1;;;13922:2:1;13907:18;;13900:42;13974:3;13959:19;;13750:234::o;13989:356::-;14191:2;14173:21;;;14210:18;;;14203:30;14269:34;14264:2;14249:18;;14242:62;14336:2;14321:18;;14163:182::o;14350:343::-;14552:2;14534:21;;;14591:2;14571:18;;;14564:30;14630:21;14625:2;14610:18;;14603:49;14684:2;14669:18;;14524:169::o;14698:405::-;14900:2;14882:21;;;14939:2;14919:18;;;14912:30;14978:34;14973:2;14958:18;;14951:62;15049:11;15044:2;15029:18;;15022:39;15093:3;15078:19;;14872:231::o;15108:411::-;15310:2;15292:21;;;15349:2;15329:18;;;15322:30;15388:34;15383:2;15368:18;;15361:62;15459:17;15454:2;15439:18;;15432:45;15509:3;15494:19;;15282:237::o;15524:397::-;15726:2;15708:21;;;15765:2;15745:18;;;15738:30;15804:34;15799:2;15784:18;;15777:62;15875:3;15870:2;15855:18;;15848:31;15911:3;15896:19;;15698:223::o;15926:413::-;16128:2;16110:21;;;16167:2;16147:18;;;16140:30;16206:34;16201:2;16186:18;;16179:62;16277:19;16272:2;16257:18;;16250:47;16329:3;16314:19;;16100:239::o;16344:349::-;16546:2;16528:21;;;16585:2;16565:18;;;16558:30;16624:27;16619:2;16604:18;;16597:55;16684:2;16669:18;;16518:175::o;16698:355::-;16900:2;16882:21;;;16939:2;16919:18;;;16912:30;16978:33;16973:2;16958:18;;16951:61;17044:2;17029:18;;16872:181::o;17058:410::-;17260:2;17242:21;;;17299:2;17279:18;;;17272:30;17338:34;17333:2;17318:18;;17311:62;17409:16;17404:2;17389:18;;17382:44;17458:3;17443:19;;17232:236::o;17473:177::-;17619:25;;;17607:2;17592:18;;17574:76::o;17655:184::-;17827:4;17815:17;;;;17797:36;;17785:2;17770:18;;17752:87::o;17844:128::-;;17915:1;17911:6;17908:1;17905:13;17902:2;;;17921:18;;:::i;:::-;-1:-1:-1;17957:9:1;;17892:80::o;17977:120::-;;18043:1;18033:2;;18048:18;;:::i;:::-;-1:-1:-1;18082:9:1;;18023:74::o;18102:168::-;;18208:1;18204;18200:6;18196:14;18193:1;18190:21;18185:1;18178:9;18171:17;18167:45;18164:2;;;18215:18;;:::i;:::-;-1:-1:-1;18255:9:1;;18154:116::o;18275:125::-;;18343:1;18340;18337:8;18334:2;;;18348:18;;:::i;:::-;-1:-1:-1;18385:9:1;;18324:76::o;18405:195::-;;18480:4;18477:1;18473:12;18512:4;18509:1;18505:12;18537:3;18532;18529:12;18526:2;;;18544:18;;:::i;:::-;18581:13;;;18452:148;-1:-1:-1;;;18452:148:1:o;18605:258::-;18677:1;18687:113;18701:6;18698:1;18695:13;18687:113;;;18777:11;;;18771:18;18758:11;;;18751:39;18723:2;18716:10;18687:113;;;18818:6;18815:1;18812:13;18809:2;;;-1:-1:-1;;18853:1:1;18835:16;;18828:27;18658:205::o;18868:437::-;18953:1;18943:12;;19000:1;18990:12;;;19011:2;;19065:4;19057:6;19053:17;19043:27;;19011:2;19118;19110:6;19107:14;19087:18;19084:38;19081:2;;;-1:-1:-1;;;19152:1:1;19145:88;19256:4;19253:1;19246:15;19284:4;19281:1;19274:15;19081:2;;18923:382;;;:::o;19310:135::-;;-1:-1:-1;;19370:17:1;;19367:2;;;19390:18;;:::i;:::-;-1:-1:-1;19437:1:1;19426:13;;19357:88::o;19450:112::-;;19508:1;19498:2;;19513:18;;:::i;:::-;-1:-1:-1;19547:9:1;;19488:74::o;19567:184::-;-1:-1:-1;;;19616:1:1;19609:88;19716:4;19713:1;19706:15;19740:4;19737:1;19730:15;19756:184;-1:-1:-1;;;19805:1:1;19798:88;19905:4;19902:1;19895:15;19929:4;19926:1;19919:15;19945:184;-1:-1:-1;;;19994:1:1;19987:88;20094:4;20091:1;20084:15;20118:4;20115:1;20108:15;20134:156;-1:-1:-1;;;;;20215:5:1;20211:54;20204:5;20201:65;20191:2;;20280:1;20277;20270:12;20295:179;-1:-1:-1;;;;;;20375:5:1;20371:78;20364:5;20361:89;20351:2;;20464:1;20461;20454:12

Swarm Source

ipfs://79e6842b37efe19a3030ced4252f87bf39c6d61b726bf64c398e25583c3b705a
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.