ETH Price: $3,358.78 (-0.74%)
Gas: 1 Gwei

Token

Wrapped Number Board (WNB)
 

Overview

Max Total Supply

378 WNB

Holders

140

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
theyieldfather.eth
Balance
1 WNB
0x21bC7fBf89B07E318dcE55676BfF0c3FF5EDB948
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Recently rediscovered NFT project launched on Ethereum November 16, 2017. Each NFT has built-in rarities, stores on-chain messages, and when combined with a virtually unlimited supply, makes Number Board a unique historic NFT project.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WrappedNumberBoard

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// Sources flattened with hardhat v2.6.4 https://hardhat.org

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

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

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

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


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



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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



pragma solidity ^0.8.0;

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

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


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



pragma solidity ^0.8.0;

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

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

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

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

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


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



pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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


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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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



pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


// File contracts/numberboard-wrapped.sol


pragma solidity 0.8.9;
interface NumberBoard {
    function ownership(uint256 theNum) external view returns (
        address         owner,
        uint            lookupIdx,
        string memory   theMessage,
        bool            buyNowActive,
        uint            buyNowPrice,
        address         currentBidder,
        uint            currentBid
    );
    function acceptBuyNowOffer(uint256 theNum) external payable;
    function placeBuyNowOffer(uint256 theNum, uint256 price) external;
    function withdrawEarnings() external;
    function updateMessage(uint256 theNum, string calldata aMessage) external;
    function takeNumber(uint256 theNum) external;
    function ownedNumbers(address addr) external view returns (uint256[] memory);
}

/// @author numberboard73, based on the original wrapper by William Entriken
contract WrappedNumberBoard is ERC721Enumerable, Ownable, Pausable {
    NumberBoard public NUMBERBOARD;
    uint256 public constant MIN_PRICE = 1e15; // 1 finney
    string private _baseURIStorage = "https://api.numberboard73.com/";
    mapping(uint256 => bytes) private _userdata;

    constructor(address originalContractAddress) ERC721("Wrapped Number Board", "WNB") {
        NUMBERBOARD = NumberBoard(originalContractAddress);
    }

    function wrap(uint256 theNum) payable external whenNotPaused {
        // must be the last non-corrupt number
        (address owner, uint lookupIdx,,,,,) = NUMBERBOARD.ownership(theNum);
        uint256[] memory ownedNumbersLookup = NUMBERBOARD.ownedNumbers(owner);
        for (uint i = ownedNumbersLookup.length - 1; i >= 0; i--) {
            uint256 currentNum = ownedNumbersLookup[i];
            if (currentNum == theNum) {
                // safe
                break;
            } else {
                // last one is not ours, but there's a chance that the last one is corrupt
                (, lookupIdx,,,,,) = NUMBERBOARD.ownership(currentNum);
                if (lookupIdx != i) {
                    // it is corrupt, skip
                    continue;
                }
            }
            revert("Only the last number in the ownership lookup can be wrapped.");
        }

        NUMBERBOARD.acceptBuyNowOffer{value: msg.value}(theNum);
        _safeMint(msg.sender, theNum);
    }

    // wrap any owned number, potentially making on of remaining ones untransferrable
    function wrapUnsafe(uint256 theNum) payable external whenNotPaused {
        NUMBERBOARD.acceptBuyNowOffer{value: msg.value}(theNum);
        _safeMint(msg.sender, theNum);
    }

    // To unwrap you must do these in immediate succession:
    //  1. Call unwrap
    //  2. Execute acceptBuyNowOffer on underlying contract to take Number Board card
    //  3. Collect remaining funds here with withdrawEarnings (optional)
    //  4. Revent if anything didn't work
    // Because processing multiple orders in immediate succession is not possible with externally-owned accounts (e.g.
    // MetaMask), and because all other unwraps are at risk of sniping, unwrapping is restricted to smart contracts.
    function unwrap(uint256 theNum) external whenNotPaused {
        require(ownerOf(theNum) == msg.sender, "Only the owner can unwrap.");
        require(tx.origin != msg.sender, "Only a smart contract can unwrap, due to sniping risk");

        // check if number can be sold, and if not, take the dummy number to allow it
        (address owner, uint lookupIdx,,,,,) = NUMBERBOARD.ownership(theNum);
        uint256[] memory ownedNumbersLookup = NUMBERBOARD.ownedNumbers(owner);
        if(lookupIdx > ownedNumbersLookup.length - 1) {
            uint256 countNeeded = lookupIdx - ownedNumbersLookup.length + 1;
            for (uint256 i = 0; i < countNeeded; i++)
            {
                NUMBERBOARD.takeNumber(getDummyNumber());
            }
        }

        NUMBERBOARD.placeBuyNowOffer(theNum, MIN_PRICE);
        _burn(theNum);
    }

    // Yes, intentionally open access, see notes in unwrap
    function withdrawEarnings() external {
        NUMBERBOARD.withdrawEarnings();
        payable(msg.sender).transfer(address(this).balance);
    }

    function updateMessage(uint256 theNum, string calldata aMessage) external whenNotPaused {
        require(ownerOf(theNum) == msg.sender);
        NUMBERBOARD.updateMessage(theNum, aMessage);
    }

    function setBaseURI(string calldata newBaseURI) onlyOwner external {
        _baseURIStorage = newBaseURI;
    }

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

    function getDummyNumber() internal view returns (uint256) {
        // higher 128 bits of blockhash
        return ~uint256(2**128 - 1) & uint256(blockhash(block.number - 1));
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }

    function setUserData(uint number, bytes calldata data) external whenNotPaused {
        require(_isApprovedOrOwner(_msgSender(), number),
            "setUserData caller is not owner nor approved");
        _userdata[number] = data;
    }

    function getUserData(uint number) external view returns (bytes memory) {
        return _userdata[number];
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"originalContractAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MIN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUMBERBOARD","outputs":[{"internalType":"contract NumberBoard","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"getUserData","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"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":"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"setUserData","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"theNum","type":"uint256"}],"name":"unwrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"theNum","type":"uint256"},{"internalType":"string","name":"aMessage","type":"string"}],"name":"updateMessage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEarnings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"theNum","type":"uint256"}],"name":"wrap","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"theNum","type":"uint256"}],"name":"wrapUnsafe","outputs":[],"stateMutability":"payable","type":"function"}]

60c0604052601e60808190527f68747470733a2f2f6170692e6e756d626572626f61726437332e636f6d2f000060a09081526200004091600c91906200018d565b503480156200004e57600080fd5b5060405162002f6538038062002f65833981016040819052620000719162000233565b604080518082018252601481527f57726170706564204e756d62657220426f6172640000000000000000000000006020808301918252835180850190945260038452622ba72160e91b908401528151919291620000d1916000916200018d565b508051620000e79060019060208401906200018d565b50505062000104620000fe6200013760201b60201c565b6200013b565b600a805460ff60a01b19169055600b80546001600160a01b0319166001600160a01b0392909216919091179055620002a2565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200019b9062000265565b90600052602060002090601f016020900481019282620001bf57600085556200020a565b82601f10620001da57805160ff19168380011785556200020a565b828001600101855582156200020a579182015b828111156200020a578251825591602001919060010190620001ed565b50620002189291506200021c565b5090565b5b808211156200021857600081556001016200021d565b6000602082840312156200024657600080fd5b81516001600160a01b03811681146200025e57600080fd5b9392505050565b600181811c908216806200027a57607f821691505b602082108114156200029c57634e487b7160e01b600052602260045260246000fd5b50919050565b612cb380620002b26000396000f3fe6080604052600436106101e35760003560e01c8063786628b711610102578063ad9f20a611610095578063de0e9a3e11610064578063de0e9a3e1461054c578063e985e9c51461056c578063ea598cb0146105b5578063f2fde38b146105c857600080fd5b8063ad9f20a6146104dc578063b73c6ce9146104f7578063b88d4fde1461050c578063c87b56dd1461052c57600080fd5b80638456cb59116100d15780638456cb59146104745780638da5cb5b1461048957806395d89b41146104a7578063a22cb465146104bc57600080fd5b8063786628b7146104015780637899ded4146104215780637c268271146104345780637f9493861461045457600080fd5b80633f4ba83a1161017a5780635c975abb116101495780635c975abb1461038d5780636352211e146103ac57806370a08231146103cc578063715018a6146103ec57600080fd5b80633f4ba83a1461031857806342842e0e1461032d5780634f6ccce71461034d57806355f804b31461036d57600080fd5b806318160ddd116101b657806318160ddd146102995780631fef580c146102b857806323b872dd146102d85780632f745c59146102f857600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b5061020861020336600461246b565b6105e8565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610613565b60405161021491906124e0565b34801561024b57600080fd5b5061025f61025a3660046124f3565b6106a5565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004612521565b61073f565b005b3480156102a557600080fd5b506008545b604051908152602001610214565b3480156102c457600080fd5b506102326102d33660046124f3565b610855565b3480156102e457600080fd5b506102976102f336600461254d565b6108f7565b34801561030457600080fd5b506102aa610313366004612521565b610928565b34801561032457600080fd5b506102976109be565b34801561033957600080fd5b5061029761034836600461254d565b6109f2565b34801561035957600080fd5b506102aa6103683660046124f3565b610a0d565b34801561037957600080fd5b506102976103883660046125d7565b610aa0565b34801561039957600080fd5b50600a54600160a01b900460ff16610208565b3480156103b857600080fd5b5061025f6103c73660046124f3565b610ad6565b3480156103d857600080fd5b506102aa6103e7366004612619565b610b4d565b3480156103f857600080fd5b50610297610bd4565b34801561040d57600080fd5b5061029761041c366004612636565b610c08565b61029761042f3660046124f3565b610cbc565b34801561044057600080fd5b50600b5461025f906001600160a01b031681565b34801561046057600080fd5b5061029761046f366004612636565b610d53565b34801561048057600080fd5b50610297610e05565b34801561049557600080fd5b50600a546001600160a01b031661025f565b3480156104b357600080fd5b50610232610e37565b3480156104c857600080fd5b506102976104d7366004612690565b610e46565b3480156104e857600080fd5b506102aa66038d7ea4c6800081565b34801561050357600080fd5b50610297610f0b565b34801561051857600080fd5b50610297610527366004612738565b610fa0565b34801561053857600080fd5b506102326105473660046124f3565b610fd2565b34801561055857600080fd5b506102976105673660046124f3565b6110ad565b34801561057857600080fd5b506102086105873660046127e7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102976105c33660046124f3565b6113ef565b3480156105d457600080fd5b506102976105e3366004612619565b6116f6565b60006001600160e01b0319821663780e9d6360e01b148061060d575061060d8261178e565b92915050565b60606000805461062290612815565b80601f016020809104026020016040519081016040528092919081815260200182805461064e90612815565b801561069b5780601f106106705761010080835404028352916020019161069b565b820191906000526020600020905b81548152906001019060200180831161067e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107235760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061074a82610ad6565b9050806001600160a01b0316836001600160a01b031614156107b85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161071a565b336001600160a01b03821614806107d457506107d48133610587565b6108465760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161071a565b61085083836117de565b505050565b6000818152600d6020526040902080546060919061087290612815565b80601f016020809104026020016040519081016040528092919081815260200182805461089e90612815565b80156108eb5780601f106108c0576101008083540402835291602001916108eb565b820191906000526020600020905b8154815290600101906020018083116108ce57829003601f168201915b50505050509050919050565b610901338261184c565b61091d5760405162461bcd60e51b815260040161071a90612850565b610850838383611943565b600061093383610b4d565b82106109955760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161071a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109e85760405162461bcd60e51b815260040161071a906128a1565b6109f0611aee565b565b61085083838360405180602001604052806000815250610fa0565b6000610a1860085490565b8210610a7b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161071a565b60088281548110610a8e57610a8e6128d6565b90600052602060002001549050919050565b600a546001600160a01b03163314610aca5760405162461bcd60e51b815260040161071a906128a1565b610850600c83836123bc565b6000818152600260205260408120546001600160a01b03168061060d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161071a565b60006001600160a01b038216610bb85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161071a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610bfe5760405162461bcd60e51b815260040161071a906128a1565b6109f06000611b8b565b600a54600160a01b900460ff1615610c325760405162461bcd60e51b815260040161071a906128ec565b610c3c338461184c565b610c9d5760405162461bcd60e51b815260206004820152602c60248201527f73657455736572446174612063616c6c6572206973206e6f74206f776e65722060448201526b1b9bdc88185c1c1c9bdd995960a21b606482015260840161071a565b6000838152600d60205260409020610cb69083836123bc565b50505050565b600a54600160a01b900460ff1615610ce65760405162461bcd60e51b815260040161071a906128ec565b600b5460405163c7daceb160e01b8152600481018390526001600160a01b039091169063c7daceb19034906024016000604051808303818588803b158015610d2d57600080fd5b505af1158015610d41573d6000803e3d6000fd5b5050505050610d503382611bdd565b50565b600a54600160a01b900460ff1615610d7d5760405162461bcd60e51b815260040161071a906128ec565b33610d8784610ad6565b6001600160a01b031614610d9a57600080fd5b600b54604051633fca49c360e11b81526001600160a01b0390911690637f94938690610dce90869086908690600401612916565b600060405180830381600087803b158015610de857600080fd5b505af1158015610dfc573d6000803e3d6000fd5b50505050505050565b600a546001600160a01b03163314610e2f5760405162461bcd60e51b815260040161071a906128a1565b6109f0611bfb565b60606001805461062290612815565b6001600160a01b038216331415610e9f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161071a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b60009054906101000a90046001600160a01b03166001600160a01b031663b73c6ce96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610f5b57600080fd5b505af1158015610f6f573d6000803e3d6000fd5b50506040513392504780156108fc029250906000818181858888f19350505050158015610d50573d6000803e3d6000fd5b610faa338361184c565b610fc65760405162461bcd60e51b815260040161071a90612850565b610cb684848484611c60565b6000818152600260205260409020546060906001600160a01b03166110515760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161071a565b600061105b611c93565b9050600081511161107b57604051806020016040528060008152506110a6565b8061108584611ca2565b60405160200161109692919061294c565b6040516020818303038152906040525b9392505050565b600a54600160a01b900460ff16156110d75760405162461bcd60e51b815260040161071a906128ec565b336110e182610ad6565b6001600160a01b0316146111375760405162461bcd60e51b815260206004820152601a60248201527f4f6e6c7920746865206f776e65722063616e20756e777261702e000000000000604482015260640161071a565b323314156111a55760405162461bcd60e51b815260206004820152603560248201527f4f6e6c79206120736d61727420636f6e74726163742063616e20756e777261706044820152742c2064756520746f20736e6970696e67207269736b60581b606482015260840161071a565b600b5460405163a0f45b6960e01b81526004810183905260009182916001600160a01b039091169063a0f45b699060240160006040518083038186803b1580156111ee57600080fd5b505afa158015611202573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261122a9190810190612996565b5050600b546040516302fc1f8560e01b81526001600160a01b03808816600483015296985094965060009516936302fc1f859350602401915061126a9050565b60006040518083038186803b15801561128257600080fd5b505afa158015611296573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526112be9190810190612a60565b9050600181516112ce9190612b1c565b82111561137b5760008151836112e49190612b1c565b6112ef906001612b33565b905060005b8181101561137857600b546001600160a01b03166330ef3d56611315611da0565b6040518263ffffffff1660e01b815260040161133391815260200190565b600060405180830381600087803b15801561134d57600080fd5b505af1158015611361573d6000803e3d6000fd5b50505050808061137090612b4b565b9150506112f4565b50505b600b546040516316f649e760e21b81526004810186905266038d7ea4c6800060248201526001600160a01b0390911690635bd9279c90604401600060405180830381600087803b1580156113ce57600080fd5b505af11580156113e2573d6000803e3d6000fd5b50505050610cb684611dc6565b600a54600160a01b900460ff16156114195760405162461bcd60e51b815260040161071a906128ec565b600b5460405163a0f45b6960e01b81526004810183905260009182916001600160a01b039091169063a0f45b699060240160006040518083038186803b15801561146257600080fd5b505afa158015611476573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261149e9190810190612996565b5050600b546040516302fc1f8560e01b81526001600160a01b03808816600483015296985094965060009516936302fc1f85935060240191506114de9050565b60006040518083038186803b1580156114f657600080fd5b505afa15801561150a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526115329190810190612a60565b90506000600182516115449190612b1c565b90505b600082828151811061155b5761155b6128d6565b6020026020010151905085811415611573575061168b565b600b5460405163a0f45b6960e01b8152600481018390526001600160a01b039091169063a0f45b699060240160006040518083038186803b1580156115b757600080fd5b505afa1580156115cb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526115f39190810190612996565b509398505050848714925061160b9150505750611679565b60405162461bcd60e51b815260206004820152603c60248201527f4f6e6c7920746865206c617374206e756d62657220696e20746865206f776e6560448201527f7273686970206c6f6f6b75702063616e20626520777261707065642e00000000606482015260840161071a565b8061168381612b66565b915050611547565b50600b5460405163c7daceb160e01b8152600481018690526001600160a01b039091169063c7daceb19034906024016000604051808303818588803b1580156116d357600080fd5b505af11580156116e7573d6000803e3d6000fd5b5050505050610cb63385611bdd565b600a546001600160a01b031633146117205760405162461bcd60e51b815260040161071a906128a1565b6001600160a01b0381166117855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161071a565b610d5081611b8b565b60006001600160e01b031982166380ac58cd60e01b14806117bf57506001600160e01b03198216635b5e139f60e01b145b8061060d57506301ffc9a760e01b6001600160e01b031983161461060d565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061181382610ad6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118c55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161071a565b60006118d083610ad6565b9050806001600160a01b0316846001600160a01b0316148061190b5750836001600160a01b0316611900846106a5565b6001600160a01b0316145b8061193b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661195682610ad6565b6001600160a01b0316146119be5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161071a565b6001600160a01b038216611a205760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161071a565b611a2b838383611e6d565b611a366000826117de565b6001600160a01b0383166000908152600360205260408120805460019290611a5f908490612b1c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a8d908490612b33565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a54600160a01b900460ff16611b3e5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161071a565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611bf7828260405180602001604052806000815250611ee6565b5050565b600a54600160a01b900460ff1615611c255760405162461bcd60e51b815260040161071a906128ec565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b6e3390565b611c6b848484611943565b611c7784848484611f19565b610cb65760405162461bcd60e51b815260040161071a90612b7d565b6060600c805461062290612815565b606081611cc65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cf05780611cda81612b4b565b9150611ce99050600a83612be5565b9150611cca565b60008167ffffffffffffffff811115611d0b57611d0b6126c9565b6040519080825280601f01601f191660200182016040528015611d35576020820181803683370190505b5090505b841561193b57611d4a600183612b1c565b9150611d57600a86612bf9565b611d62906030612b33565b60f81b818381518110611d7757611d776128d6565b60200101906001600160f81b031916908160001a905350611d99600a86612be5565b9450611d39565b6000611dad600143612b1c565b406fffffffffffffffffffffffffffffffff1916919050565b6000611dd182610ad6565b9050611ddf81600084611e6d565b611dea6000836117de565b6001600160a01b0381166000908152600360205260408120805460019290611e13908490612b1c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611e78838383612026565b600a54600160a01b900460ff16156108505760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b606482015260840161071a565b611ef083836120de565b611efd6000848484611f19565b6108505760405162461bcd60e51b815260040161071a90612b7d565b60006001600160a01b0384163b1561201b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f5d903390899088908890600401612c0d565b602060405180830381600087803b158015611f7757600080fd5b505af1925050508015611fa7575060408051601f3d908101601f19168201909252611fa491810190612c4a565b60015b612001573d808015611fd5576040519150601f19603f3d011682016040523d82523d6000602084013e611fda565b606091505b508051611ff95760405162461bcd60e51b815260040161071a90612b7d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061193b565b506001949350505050565b6001600160a01b0383166120815761207c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6120a4565b816001600160a01b0316836001600160a01b0316146120a4576120a4838261222c565b6001600160a01b0382166120bb57610850816122c9565b826001600160a01b0316826001600160a01b031614610850576108508282612378565b6001600160a01b0382166121345760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161071a565b6000818152600260205260409020546001600160a01b0316156121995760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161071a565b6121a560008383611e6d565b6001600160a01b03821660009081526003602052604081208054600192906121ce908490612b33565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161223984610b4d565b6122439190612b1c565b600083815260076020526040902054909150808214612296576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906122db90600190612b1c565b60008381526009602052604081205460088054939450909284908110612303576123036128d6565b906000526020600020015490508060088381548110612324576123246128d6565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061235c5761235c612c67565b6001900381819060005260206000200160009055905550505050565b600061238383610b4d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546123c890612815565b90600052602060002090601f0160209004810192826123ea5760008555612430565b82601f106124035782800160ff19823516178555612430565b82800160010185558215612430579182015b82811115612430578235825591602001919060010190612415565b5061243c929150612440565b5090565b5b8082111561243c5760008155600101612441565b6001600160e01b031981168114610d5057600080fd5b60006020828403121561247d57600080fd5b81356110a681612455565b60005b838110156124a357818101518382015260200161248b565b83811115610cb65750506000910152565b600081518084526124cc816020860160208601612488565b601f01601f19169290920160200192915050565b6020815260006110a660208301846124b4565b60006020828403121561250557600080fd5b5035919050565b6001600160a01b0381168114610d5057600080fd5b6000806040838503121561253457600080fd5b823561253f8161250c565b946020939093013593505050565b60008060006060848603121561256257600080fd5b833561256d8161250c565b9250602084013561257d8161250c565b929592945050506040919091013590565b60008083601f8401126125a057600080fd5b50813567ffffffffffffffff8111156125b857600080fd5b6020830191508360208285010111156125d057600080fd5b9250929050565b600080602083850312156125ea57600080fd5b823567ffffffffffffffff81111561260157600080fd5b61260d8582860161258e565b90969095509350505050565b60006020828403121561262b57600080fd5b81356110a68161250c565b60008060006040848603121561264b57600080fd5b83359250602084013567ffffffffffffffff81111561266957600080fd5b6126758682870161258e565b9497909650939450505050565b8015158114610d5057600080fd5b600080604083850312156126a357600080fd5b82356126ae8161250c565b915060208301356126be81612682565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612708576127086126c9565b604052919050565b600067ffffffffffffffff82111561272a5761272a6126c9565b50601f01601f191660200190565b6000806000806080858703121561274e57600080fd5b84356127598161250c565b935060208501356127698161250c565b925060408501359150606085013567ffffffffffffffff81111561278c57600080fd5b8501601f8101871361279d57600080fd5b80356127b06127ab82612710565b6126df565b8181528860208385010111156127c557600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b600080604083850312156127fa57600080fd5b82356128058161250c565b915060208301356126be8161250c565b600181811c9082168061282957607f821691505b6020821081141561284a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b83815260406020820152816040820152818360608301376000818301606090810191909152601f909201601f1916010192915050565b6000835161295e818460208801612488565b835190830190612972818360208801612488565b01949350505050565b80516129868161250c565b919050565b805161298681612682565b600080600080600080600060e0888a0312156129b157600080fd5b87516129bc8161250c565b602089015160408a0151919850965067ffffffffffffffff8111156129e057600080fd5b8801601f81018a136129f157600080fd5b80516129ff6127ab82612710565b8181528b6020838501011115612a1457600080fd5b612a25826020830160208601612488565b9650612a369150506060890161298b565b935060808801519250612a4b60a0890161297b565b915060c0880151905092959891949750929550565b60006020808385031215612a7357600080fd5b825167ffffffffffffffff80821115612a8b57600080fd5b818501915085601f830112612a9f57600080fd5b815181811115612ab157612ab16126c9565b8060051b9150612ac28483016126df565b8181529183018401918481019088841115612adc57600080fd5b938501935b83851015612afa57845182529385019390850190612ae1565b98975050505050505050565b634e487b7160e01b600052601160045260246000fd5b600082821015612b2e57612b2e612b06565b500390565b60008219821115612b4657612b46612b06565b500190565b6000600019821415612b5f57612b5f612b06565b5060010190565b600081612b7557612b75612b06565b506000190190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612bf457612bf4612bcf565b500490565b600082612c0857612c08612bcf565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c40908301846124b4565b9695505050505050565b600060208284031215612c5c57600080fd5b81516110a681612455565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220953f5bef93a47390730a3aba12e8e7dbdb3b9be44ae29119c4dcef5ba0b02e5364736f6c634300080900330000000000000000000000009249133819102b2ed31680468c8c67f6fe9e7505

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063786628b711610102578063ad9f20a611610095578063de0e9a3e11610064578063de0e9a3e1461054c578063e985e9c51461056c578063ea598cb0146105b5578063f2fde38b146105c857600080fd5b8063ad9f20a6146104dc578063b73c6ce9146104f7578063b88d4fde1461050c578063c87b56dd1461052c57600080fd5b80638456cb59116100d15780638456cb59146104745780638da5cb5b1461048957806395d89b41146104a7578063a22cb465146104bc57600080fd5b8063786628b7146104015780637899ded4146104215780637c268271146104345780637f9493861461045457600080fd5b80633f4ba83a1161017a5780635c975abb116101495780635c975abb1461038d5780636352211e146103ac57806370a08231146103cc578063715018a6146103ec57600080fd5b80633f4ba83a1461031857806342842e0e1461032d5780634f6ccce71461034d57806355f804b31461036d57600080fd5b806318160ddd116101b657806318160ddd146102995780631fef580c146102b857806323b872dd146102d85780632f745c59146102f857600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b5061020861020336600461246b565b6105e8565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610613565b60405161021491906124e0565b34801561024b57600080fd5b5061025f61025a3660046124f3565b6106a5565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004612521565b61073f565b005b3480156102a557600080fd5b506008545b604051908152602001610214565b3480156102c457600080fd5b506102326102d33660046124f3565b610855565b3480156102e457600080fd5b506102976102f336600461254d565b6108f7565b34801561030457600080fd5b506102aa610313366004612521565b610928565b34801561032457600080fd5b506102976109be565b34801561033957600080fd5b5061029761034836600461254d565b6109f2565b34801561035957600080fd5b506102aa6103683660046124f3565b610a0d565b34801561037957600080fd5b506102976103883660046125d7565b610aa0565b34801561039957600080fd5b50600a54600160a01b900460ff16610208565b3480156103b857600080fd5b5061025f6103c73660046124f3565b610ad6565b3480156103d857600080fd5b506102aa6103e7366004612619565b610b4d565b3480156103f857600080fd5b50610297610bd4565b34801561040d57600080fd5b5061029761041c366004612636565b610c08565b61029761042f3660046124f3565b610cbc565b34801561044057600080fd5b50600b5461025f906001600160a01b031681565b34801561046057600080fd5b5061029761046f366004612636565b610d53565b34801561048057600080fd5b50610297610e05565b34801561049557600080fd5b50600a546001600160a01b031661025f565b3480156104b357600080fd5b50610232610e37565b3480156104c857600080fd5b506102976104d7366004612690565b610e46565b3480156104e857600080fd5b506102aa66038d7ea4c6800081565b34801561050357600080fd5b50610297610f0b565b34801561051857600080fd5b50610297610527366004612738565b610fa0565b34801561053857600080fd5b506102326105473660046124f3565b610fd2565b34801561055857600080fd5b506102976105673660046124f3565b6110ad565b34801561057857600080fd5b506102086105873660046127e7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102976105c33660046124f3565b6113ef565b3480156105d457600080fd5b506102976105e3366004612619565b6116f6565b60006001600160e01b0319821663780e9d6360e01b148061060d575061060d8261178e565b92915050565b60606000805461062290612815565b80601f016020809104026020016040519081016040528092919081815260200182805461064e90612815565b801561069b5780601f106106705761010080835404028352916020019161069b565b820191906000526020600020905b81548152906001019060200180831161067e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107235760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061074a82610ad6565b9050806001600160a01b0316836001600160a01b031614156107b85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161071a565b336001600160a01b03821614806107d457506107d48133610587565b6108465760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161071a565b61085083836117de565b505050565b6000818152600d6020526040902080546060919061087290612815565b80601f016020809104026020016040519081016040528092919081815260200182805461089e90612815565b80156108eb5780601f106108c0576101008083540402835291602001916108eb565b820191906000526020600020905b8154815290600101906020018083116108ce57829003601f168201915b50505050509050919050565b610901338261184c565b61091d5760405162461bcd60e51b815260040161071a90612850565b610850838383611943565b600061093383610b4d565b82106109955760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161071a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109e85760405162461bcd60e51b815260040161071a906128a1565b6109f0611aee565b565b61085083838360405180602001604052806000815250610fa0565b6000610a1860085490565b8210610a7b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161071a565b60088281548110610a8e57610a8e6128d6565b90600052602060002001549050919050565b600a546001600160a01b03163314610aca5760405162461bcd60e51b815260040161071a906128a1565b610850600c83836123bc565b6000818152600260205260408120546001600160a01b03168061060d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161071a565b60006001600160a01b038216610bb85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161071a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610bfe5760405162461bcd60e51b815260040161071a906128a1565b6109f06000611b8b565b600a54600160a01b900460ff1615610c325760405162461bcd60e51b815260040161071a906128ec565b610c3c338461184c565b610c9d5760405162461bcd60e51b815260206004820152602c60248201527f73657455736572446174612063616c6c6572206973206e6f74206f776e65722060448201526b1b9bdc88185c1c1c9bdd995960a21b606482015260840161071a565b6000838152600d60205260409020610cb69083836123bc565b50505050565b600a54600160a01b900460ff1615610ce65760405162461bcd60e51b815260040161071a906128ec565b600b5460405163c7daceb160e01b8152600481018390526001600160a01b039091169063c7daceb19034906024016000604051808303818588803b158015610d2d57600080fd5b505af1158015610d41573d6000803e3d6000fd5b5050505050610d503382611bdd565b50565b600a54600160a01b900460ff1615610d7d5760405162461bcd60e51b815260040161071a906128ec565b33610d8784610ad6565b6001600160a01b031614610d9a57600080fd5b600b54604051633fca49c360e11b81526001600160a01b0390911690637f94938690610dce90869086908690600401612916565b600060405180830381600087803b158015610de857600080fd5b505af1158015610dfc573d6000803e3d6000fd5b50505050505050565b600a546001600160a01b03163314610e2f5760405162461bcd60e51b815260040161071a906128a1565b6109f0611bfb565b60606001805461062290612815565b6001600160a01b038216331415610e9f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161071a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b60009054906101000a90046001600160a01b03166001600160a01b031663b73c6ce96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610f5b57600080fd5b505af1158015610f6f573d6000803e3d6000fd5b50506040513392504780156108fc029250906000818181858888f19350505050158015610d50573d6000803e3d6000fd5b610faa338361184c565b610fc65760405162461bcd60e51b815260040161071a90612850565b610cb684848484611c60565b6000818152600260205260409020546060906001600160a01b03166110515760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161071a565b600061105b611c93565b9050600081511161107b57604051806020016040528060008152506110a6565b8061108584611ca2565b60405160200161109692919061294c565b6040516020818303038152906040525b9392505050565b600a54600160a01b900460ff16156110d75760405162461bcd60e51b815260040161071a906128ec565b336110e182610ad6565b6001600160a01b0316146111375760405162461bcd60e51b815260206004820152601a60248201527f4f6e6c7920746865206f776e65722063616e20756e777261702e000000000000604482015260640161071a565b323314156111a55760405162461bcd60e51b815260206004820152603560248201527f4f6e6c79206120736d61727420636f6e74726163742063616e20756e777261706044820152742c2064756520746f20736e6970696e67207269736b60581b606482015260840161071a565b600b5460405163a0f45b6960e01b81526004810183905260009182916001600160a01b039091169063a0f45b699060240160006040518083038186803b1580156111ee57600080fd5b505afa158015611202573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261122a9190810190612996565b5050600b546040516302fc1f8560e01b81526001600160a01b03808816600483015296985094965060009516936302fc1f859350602401915061126a9050565b60006040518083038186803b15801561128257600080fd5b505afa158015611296573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526112be9190810190612a60565b9050600181516112ce9190612b1c565b82111561137b5760008151836112e49190612b1c565b6112ef906001612b33565b905060005b8181101561137857600b546001600160a01b03166330ef3d56611315611da0565b6040518263ffffffff1660e01b815260040161133391815260200190565b600060405180830381600087803b15801561134d57600080fd5b505af1158015611361573d6000803e3d6000fd5b50505050808061137090612b4b565b9150506112f4565b50505b600b546040516316f649e760e21b81526004810186905266038d7ea4c6800060248201526001600160a01b0390911690635bd9279c90604401600060405180830381600087803b1580156113ce57600080fd5b505af11580156113e2573d6000803e3d6000fd5b50505050610cb684611dc6565b600a54600160a01b900460ff16156114195760405162461bcd60e51b815260040161071a906128ec565b600b5460405163a0f45b6960e01b81526004810183905260009182916001600160a01b039091169063a0f45b699060240160006040518083038186803b15801561146257600080fd5b505afa158015611476573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261149e9190810190612996565b5050600b546040516302fc1f8560e01b81526001600160a01b03808816600483015296985094965060009516936302fc1f85935060240191506114de9050565b60006040518083038186803b1580156114f657600080fd5b505afa15801561150a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526115329190810190612a60565b90506000600182516115449190612b1c565b90505b600082828151811061155b5761155b6128d6565b6020026020010151905085811415611573575061168b565b600b5460405163a0f45b6960e01b8152600481018390526001600160a01b039091169063a0f45b699060240160006040518083038186803b1580156115b757600080fd5b505afa1580156115cb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526115f39190810190612996565b509398505050848714925061160b9150505750611679565b60405162461bcd60e51b815260206004820152603c60248201527f4f6e6c7920746865206c617374206e756d62657220696e20746865206f776e6560448201527f7273686970206c6f6f6b75702063616e20626520777261707065642e00000000606482015260840161071a565b8061168381612b66565b915050611547565b50600b5460405163c7daceb160e01b8152600481018690526001600160a01b039091169063c7daceb19034906024016000604051808303818588803b1580156116d357600080fd5b505af11580156116e7573d6000803e3d6000fd5b5050505050610cb63385611bdd565b600a546001600160a01b031633146117205760405162461bcd60e51b815260040161071a906128a1565b6001600160a01b0381166117855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161071a565b610d5081611b8b565b60006001600160e01b031982166380ac58cd60e01b14806117bf57506001600160e01b03198216635b5e139f60e01b145b8061060d57506301ffc9a760e01b6001600160e01b031983161461060d565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061181382610ad6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118c55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161071a565b60006118d083610ad6565b9050806001600160a01b0316846001600160a01b0316148061190b5750836001600160a01b0316611900846106a5565b6001600160a01b0316145b8061193b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661195682610ad6565b6001600160a01b0316146119be5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161071a565b6001600160a01b038216611a205760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161071a565b611a2b838383611e6d565b611a366000826117de565b6001600160a01b0383166000908152600360205260408120805460019290611a5f908490612b1c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a8d908490612b33565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a54600160a01b900460ff16611b3e5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161071a565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611bf7828260405180602001604052806000815250611ee6565b5050565b600a54600160a01b900460ff1615611c255760405162461bcd60e51b815260040161071a906128ec565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b6e3390565b611c6b848484611943565b611c7784848484611f19565b610cb65760405162461bcd60e51b815260040161071a90612b7d565b6060600c805461062290612815565b606081611cc65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cf05780611cda81612b4b565b9150611ce99050600a83612be5565b9150611cca565b60008167ffffffffffffffff811115611d0b57611d0b6126c9565b6040519080825280601f01601f191660200182016040528015611d35576020820181803683370190505b5090505b841561193b57611d4a600183612b1c565b9150611d57600a86612bf9565b611d62906030612b33565b60f81b818381518110611d7757611d776128d6565b60200101906001600160f81b031916908160001a905350611d99600a86612be5565b9450611d39565b6000611dad600143612b1c565b406fffffffffffffffffffffffffffffffff1916919050565b6000611dd182610ad6565b9050611ddf81600084611e6d565b611dea6000836117de565b6001600160a01b0381166000908152600360205260408120805460019290611e13908490612b1c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611e78838383612026565b600a54600160a01b900460ff16156108505760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b606482015260840161071a565b611ef083836120de565b611efd6000848484611f19565b6108505760405162461bcd60e51b815260040161071a90612b7d565b60006001600160a01b0384163b1561201b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f5d903390899088908890600401612c0d565b602060405180830381600087803b158015611f7757600080fd5b505af1925050508015611fa7575060408051601f3d908101601f19168201909252611fa491810190612c4a565b60015b612001573d808015611fd5576040519150601f19603f3d011682016040523d82523d6000602084013e611fda565b606091505b508051611ff95760405162461bcd60e51b815260040161071a90612b7d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061193b565b506001949350505050565b6001600160a01b0383166120815761207c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6120a4565b816001600160a01b0316836001600160a01b0316146120a4576120a4838261222c565b6001600160a01b0382166120bb57610850816122c9565b826001600160a01b0316826001600160a01b031614610850576108508282612378565b6001600160a01b0382166121345760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161071a565b6000818152600260205260409020546001600160a01b0316156121995760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161071a565b6121a560008383611e6d565b6001600160a01b03821660009081526003602052604081208054600192906121ce908490612b33565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161223984610b4d565b6122439190612b1c565b600083815260076020526040902054909150808214612296576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906122db90600190612b1c565b60008381526009602052604081205460088054939450909284908110612303576123036128d6565b906000526020600020015490508060088381548110612324576123246128d6565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061235c5761235c612c67565b6001900381819060005260206000200160009055905550505050565b600061238383610b4d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546123c890612815565b90600052602060002090601f0160209004810192826123ea5760008555612430565b82601f106124035782800160ff19823516178555612430565b82800160010185558215612430579182015b82811115612430578235825591602001919060010190612415565b5061243c929150612440565b5090565b5b8082111561243c5760008155600101612441565b6001600160e01b031981168114610d5057600080fd5b60006020828403121561247d57600080fd5b81356110a681612455565b60005b838110156124a357818101518382015260200161248b565b83811115610cb65750506000910152565b600081518084526124cc816020860160208601612488565b601f01601f19169290920160200192915050565b6020815260006110a660208301846124b4565b60006020828403121561250557600080fd5b5035919050565b6001600160a01b0381168114610d5057600080fd5b6000806040838503121561253457600080fd5b823561253f8161250c565b946020939093013593505050565b60008060006060848603121561256257600080fd5b833561256d8161250c565b9250602084013561257d8161250c565b929592945050506040919091013590565b60008083601f8401126125a057600080fd5b50813567ffffffffffffffff8111156125b857600080fd5b6020830191508360208285010111156125d057600080fd5b9250929050565b600080602083850312156125ea57600080fd5b823567ffffffffffffffff81111561260157600080fd5b61260d8582860161258e565b90969095509350505050565b60006020828403121561262b57600080fd5b81356110a68161250c565b60008060006040848603121561264b57600080fd5b83359250602084013567ffffffffffffffff81111561266957600080fd5b6126758682870161258e565b9497909650939450505050565b8015158114610d5057600080fd5b600080604083850312156126a357600080fd5b82356126ae8161250c565b915060208301356126be81612682565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612708576127086126c9565b604052919050565b600067ffffffffffffffff82111561272a5761272a6126c9565b50601f01601f191660200190565b6000806000806080858703121561274e57600080fd5b84356127598161250c565b935060208501356127698161250c565b925060408501359150606085013567ffffffffffffffff81111561278c57600080fd5b8501601f8101871361279d57600080fd5b80356127b06127ab82612710565b6126df565b8181528860208385010111156127c557600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b600080604083850312156127fa57600080fd5b82356128058161250c565b915060208301356126be8161250c565b600181811c9082168061282957607f821691505b6020821081141561284a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b83815260406020820152816040820152818360608301376000818301606090810191909152601f909201601f1916010192915050565b6000835161295e818460208801612488565b835190830190612972818360208801612488565b01949350505050565b80516129868161250c565b919050565b805161298681612682565b600080600080600080600060e0888a0312156129b157600080fd5b87516129bc8161250c565b602089015160408a0151919850965067ffffffffffffffff8111156129e057600080fd5b8801601f81018a136129f157600080fd5b80516129ff6127ab82612710565b8181528b6020838501011115612a1457600080fd5b612a25826020830160208601612488565b9650612a369150506060890161298b565b935060808801519250612a4b60a0890161297b565b915060c0880151905092959891949750929550565b60006020808385031215612a7357600080fd5b825167ffffffffffffffff80821115612a8b57600080fd5b818501915085601f830112612a9f57600080fd5b815181811115612ab157612ab16126c9565b8060051b9150612ac28483016126df565b8181529183018401918481019088841115612adc57600080fd5b938501935b83851015612afa57845182529385019390850190612ae1565b98975050505050505050565b634e487b7160e01b600052601160045260246000fd5b600082821015612b2e57612b2e612b06565b500390565b60008219821115612b4657612b46612b06565b500190565b6000600019821415612b5f57612b5f612b06565b5060010190565b600081612b7557612b75612b06565b506000190190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612bf457612bf4612bcf565b500490565b600082612c0857612c08612bcf565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c40908301846124b4565b9695505050505050565b600060208284031215612c5c57600080fd5b81516110a681612455565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220953f5bef93a47390730a3aba12e8e7dbdb3b9be44ae29119c4dcef5ba0b02e5364736f6c63430008090033

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

0000000000000000000000009249133819102b2ed31680468c8c67f6fe9e7505

-----Decoded View---------------
Arg [0] : originalContractAddress (address): 0x9249133819102b2ed31680468c8c67F6Fe9E7505

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009249133819102b2ed31680468c8c67f6fe9e7505


Deployed Bytecode Sourcemap

46462:4813:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34858:224;;;;;;;;;;-1:-1:-1;34858:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34858:224:0;;;;;;;;21747:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23306:221::-;;;;;;;;;;-1:-1:-1;23306:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;23306:221:0;1528:203:1;22829:411:0;;;;;;;;;;-1:-1:-1;22829:411:0;;;;;:::i;:::-;;:::i;:::-;;35498:113;;;;;;;;;;-1:-1:-1;35586:10:0;:17;35498:113;;;2338:25:1;;;2326:2;2311:18;35498:113:0;2192:177:1;51016:114:0;;;;;;;;;;-1:-1:-1;51016:114:0;;;;;:::i;:::-;;:::i;24196:339::-;;;;;;;;;;-1:-1:-1;24196:339:0;;;;;:::i;:::-;;:::i;35166:256::-;;;;;;;;;;-1:-1:-1;35166:256:0;;;;;:::i;:::-;;:::i;51207:65::-;;;;;;;;;;;;;:::i;24606:185::-;;;;;;;;;;-1:-1:-1;24606:185:0;;;;;:::i;:::-;;:::i;35688:233::-;;;;;;;;;;-1:-1:-1;35688:233:0;;;;;:::i;:::-;;:::i;50053:114::-;;;;;;;;;;-1:-1:-1;50053:114:0;;;;;:::i;:::-;;:::i;44370:86::-;;;;;;;;;;-1:-1:-1;44441:7:0;;-1:-1:-1;;;44441:7:0;;;;44370:86;;21441:239;;;;;;;;;;-1:-1:-1;21441:239:0;;;;;:::i;:::-;;:::i;21171:208::-;;;;;;;;;;-1:-1:-1;21171:208:0;;;;;:::i;:::-;;:::i;42661:94::-;;;;;;;;;;;;;:::i;50766:242::-;;;;;;;;;;-1:-1:-1;50766:242:0;;;;;:::i;:::-;;:::i;48042:181::-;;;;;;:::i;:::-;;:::i;46536:30::-;;;;;;;;;;-1:-1:-1;46536:30:0;;;;-1:-1:-1;;;;;46536:30:0;;;49846:199;;;;;;;;;;-1:-1:-1;49846:199:0;;;;;:::i;:::-;;:::i;51138:61::-;;;;;;;;;;;;;:::i;42010:87::-;;;;;;;;;;-1:-1:-1;42083:6:0;;-1:-1:-1;;;;;42083:6:0;42010:87;;21916:104;;;;;;;;;;;;;:::i;23599:295::-;;;;;;;;;;-1:-1:-1;23599:295:0;;;;;:::i;:::-;;:::i;46573:40::-;;;;;;;;;;;;46609:4;46573:40;;49690:148;;;;;;;;;;;;;:::i;24862:328::-;;;;;;;;;;-1:-1:-1;24862:328:0;;;;;:::i;:::-;;:::i;22091:334::-;;;;;;;;;;-1:-1:-1;22091:334:0;;;;;:::i;:::-;;:::i;48758:864::-;;;;;;;;;;-1:-1:-1;48758:864:0;;;;;:::i;:::-;;:::i;23965:164::-;;;;;;;;;;-1:-1:-1;23965:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24086:25:0;;;24062:4;24086:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23965:164;46916:1031;;;;;;:::i;:::-;;:::i;42910:192::-;;;;;;;;;;-1:-1:-1;42910:192:0;;;;;:::i;:::-;;:::i;34858:224::-;34960:4;-1:-1:-1;;;;;;34984:50:0;;-1:-1:-1;;;34984:50:0;;:90;;;35038:36;35062:11;35038:23;:36::i;:::-;34977:97;34858:224;-1:-1:-1;;34858:224:0:o;21747:100::-;21801:13;21834:5;21827:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21747:100;:::o;23306:221::-;23382:7;26789:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26789:16:0;23402:73;;;;-1:-1:-1;;;23402:73:0;;8388:2:1;23402:73:0;;;8370:21:1;8427:2;8407:18;;;8400:30;8466:34;8446:18;;;8439:62;-1:-1:-1;;;8517:18:1;;;8510:42;8569:19;;23402:73:0;;;;;;;;;-1:-1:-1;23495:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23495:24:0;;23306:221::o;22829:411::-;22910:13;22926:23;22941:7;22926:14;:23::i;:::-;22910:39;;22974:5;-1:-1:-1;;;;;22968:11:0;:2;-1:-1:-1;;;;;22968:11:0;;;22960:57;;;;-1:-1:-1;;;22960:57:0;;8801:2:1;22960:57:0;;;8783:21:1;8840:2;8820:18;;;8813:30;8879:34;8859:18;;;8852:62;-1:-1:-1;;;8930:18:1;;;8923:31;8971:19;;22960:57:0;8599:397:1;22960:57:0;16284:10;-1:-1:-1;;;;;23052:21:0;;;;:62;;-1:-1:-1;23077:37:0;23094:5;16284:10;23965:164;:::i;23077:37::-;23030:168;;;;-1:-1:-1;;;23030:168:0;;9203:2:1;23030:168:0;;;9185:21:1;9242:2;9222:18;;;9215:30;9281:34;9261:18;;;9254:62;9352:26;9332:18;;;9325:54;9396:19;;23030:168:0;9001:420:1;23030:168:0;23211:21;23220:2;23224:7;23211:8;:21::i;:::-;22899:341;22829:411;;:::o;51016:114::-;51105:17;;;;:9;:17;;;;;51098:24;;51073:12;;51105:17;51098:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51016:114;;;:::o;24196:339::-;24391:41;16284:10;24424:7;24391:18;:41::i;:::-;24383:103;;;;-1:-1:-1;;;24383:103:0;;;;;;;:::i;:::-;24499:28;24509:4;24515:2;24519:7;24499:9;:28::i;35166:256::-;35263:7;35299:23;35316:5;35299:16;:23::i;:::-;35291:5;:31;35283:87;;;;-1:-1:-1;;;35283:87:0;;10046:2:1;35283:87:0;;;10028:21:1;10085:2;10065:18;;;10058:30;10124:34;10104:18;;;10097:62;-1:-1:-1;;;10175:18:1;;;10168:41;10226:19;;35283:87:0;9844:407:1;35283:87:0;-1:-1:-1;;;;;;35388:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35166:256::o;51207:65::-;42083:6;;-1:-1:-1;;;;;42083:6:0;16284:10;42230:23;42222:68;;;;-1:-1:-1;;;42222:68:0;;;;;;;:::i;:::-;51254:10:::1;:8;:10::i;:::-;51207:65::o:0;24606:185::-;24744:39;24761:4;24767:2;24771:7;24744:39;;;;;;;;;;;;:16;:39::i;35688:233::-;35763:7;35799:30;35586:10;:17;;35498:113;35799:30;35791:5;:38;35783:95;;;;-1:-1:-1;;;35783:95:0;;10819:2:1;35783:95:0;;;10801:21:1;10858:2;10838:18;;;10831:30;10897:34;10877:18;;;10870:62;-1:-1:-1;;;10948:18:1;;;10941:42;11000:19;;35783:95:0;10617:408:1;35783:95:0;35896:10;35907:5;35896:17;;;;;;;;:::i;:::-;;;;;;;;;35889:24;;35688:233;;;:::o;50053:114::-;42083:6;;-1:-1:-1;;;;;42083:6:0;16284:10;42230:23;42222:68;;;;-1:-1:-1;;;42222:68:0;;;;;;;:::i;:::-;50131:28:::1;:15;50149:10:::0;;50131:28:::1;:::i;21441:239::-:0;21513:7;21549:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21549:16:0;21584:19;21576:73;;;;-1:-1:-1;;;21576:73:0;;11364:2:1;21576:73:0;;;11346:21:1;11403:2;11383:18;;;11376:30;11442:34;11422:18;;;11415:62;-1:-1:-1;;;11493:18:1;;;11486:39;11542:19;;21576:73:0;11162:405:1;21171:208:0;21243:7;-1:-1:-1;;;;;21271:19:0;;21263:74;;;;-1:-1:-1;;;21263:74:0;;11774:2:1;21263:74:0;;;11756:21:1;11813:2;11793:18;;;11786:30;11852:34;11832:18;;;11825:62;-1:-1:-1;;;11903:18:1;;;11896:40;11953:19;;21263:74:0;11572:406:1;21263:74:0;-1:-1:-1;;;;;;21355:16:0;;;;;:9;:16;;;;;;;21171:208::o;42661:94::-;42083:6;;-1:-1:-1;;;;;42083:6:0;16284:10;42230:23;42222:68;;;;-1:-1:-1;;;42222:68:0;;;;;;;:::i;:::-;42726:21:::1;42744:1;42726:9;:21::i;50766:242::-:0;44441:7;;-1:-1:-1;;;44441:7:0;;;;44695:9;44687:38;;;;-1:-1:-1;;;44687:38:0;;;;;;;:::i;:::-;50863:40:::1;16284:10:::0;50896:6:::1;50863:18;:40::i;:::-;50855:110;;;::::0;-1:-1:-1;;;50855:110:0;;12530:2:1;50855:110:0::1;::::0;::::1;12512:21:1::0;12569:2;12549:18;;;12542:30;12608:34;12588:18;;;12581:62;-1:-1:-1;;;12659:18:1;;;12652:42;12711:19;;50855:110:0::1;12328:408:1::0;50855:110:0::1;50976:17;::::0;;;:9:::1;:17;::::0;;;;:24:::1;::::0;50996:4;;50976:24:::1;:::i;:::-;;50766:242:::0;;;:::o;48042:181::-;44441:7;;-1:-1:-1;;;44441:7:0;;;;44695:9;44687:38;;;;-1:-1:-1;;;44687:38:0;;;;;;;:::i;:::-;48120:11:::1;::::0;:55:::1;::::0;-1:-1:-1;;;48120:55:0;;::::1;::::0;::::1;2338:25:1::0;;;-1:-1:-1;;;;;48120:11:0;;::::1;::::0;:29:::1;::::0;48157:9:::1;::::0;2311:18:1;;48120:55:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;48186:29;48196:10;48208:6;48186:9;:29::i;:::-;48042:181:::0;:::o;49846:199::-;44441:7;;-1:-1:-1;;;44441:7:0;;;;44695:9;44687:38;;;;-1:-1:-1;;;44687:38:0;;;;;;;:::i;:::-;49972:10:::1;49953:15;49961:6:::0;49953:7:::1;:15::i;:::-;-1:-1:-1::0;;;;;49953:29:0::1;;49945:38;;;::::0;::::1;;49994:11;::::0;:43:::1;::::0;-1:-1:-1;;;49994:43:0;;-1:-1:-1;;;;;49994:11:0;;::::1;::::0;:25:::1;::::0;:43:::1;::::0;50020:6;;50028:8;;;;49994:43:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;49846:199:::0;;;:::o;51138:61::-;42083:6;;-1:-1:-1;;;;;42083:6:0;16284:10;42230:23;42222:68;;;;-1:-1:-1;;;42222:68:0;;;;;;;:::i;:::-;51183:8:::1;:6;:8::i;21916:104::-:0;21972:13;22005:7;21998:14;;;;;:::i;23599:295::-;-1:-1:-1;;;;;23702:24:0;;16284:10;23702:24;;23694:62;;;;-1:-1:-1;;;23694:62:0;;13409:2:1;23694:62:0;;;13391:21:1;13448:2;13428:18;;;13421:30;13487:27;13467:18;;;13460:55;13532:18;;23694:62:0;13207:349:1;23694:62:0;16284:10;23769:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23769:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23769:53:0;;;;;;;;;;23838:48;;540:41:1;;;23769:42:0;;16284:10;23838:48;;513:18:1;23838:48:0;;;;;;;23599:295;;:::o;49690:148::-;49738:11;;;;;;;;;-1:-1:-1;;;;;49738:11:0;-1:-1:-1;;;;;49738:28:0;;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49779:51:0;;49787:10;;-1:-1:-1;49808:21:0;49779:51;;;;;-1:-1:-1;49808:21:0;49779:51;;;;49808:21;49787:10;49779:51;;;;;;;;;;;;;;;;;;;24862:328;25037:41;16284:10;25070:7;25037:18;:41::i;:::-;25029:103;;;;-1:-1:-1;;;25029:103:0;;;;;;;:::i;:::-;25143:39;25157:4;25163:2;25167:7;25176:5;25143:13;:39::i;22091:334::-;26765:4;26789:16;;;:7;:16;;;;;;22164:13;;-1:-1:-1;;;;;26789:16:0;22190:76;;;;-1:-1:-1;;;22190:76:0;;13763:2:1;22190:76:0;;;13745:21:1;13802:2;13782:18;;;13775:30;13841:34;13821:18;;;13814:62;-1:-1:-1;;;13892:18:1;;;13885:45;13947:19;;22190:76:0;13561:411:1;22190:76:0;22279:21;22303:10;:8;:10::i;:::-;22279:34;;22355:1;22337:7;22331:21;:25;:86;;;;;;;;;;;;;;;;;22383:7;22392:18;:7;:16;:18::i;:::-;22366:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22331:86;22324:93;22091:334;-1:-1:-1;;;22091:334:0:o;48758:864::-;44441:7;;-1:-1:-1;;;44441:7:0;;;;44695:9;44687:38;;;;-1:-1:-1;;;44687:38:0;;;;;;;:::i;:::-;48851:10:::1;48832:15;48840:6:::0;48832:7:::1;:15::i;:::-;-1:-1:-1::0;;;;;48832:29:0::1;;48824:68;;;::::0;-1:-1:-1;;;48824:68:0;;14654:2:1;48824:68:0::1;::::0;::::1;14636:21:1::0;14693:2;14673:18;;;14666:30;14732:28;14712:18;;;14705:56;14778:18;;48824:68:0::1;14452:350:1::0;48824:68:0::1;48911:9;48924:10;48911:23;;48903:89;;;::::0;-1:-1:-1;;;48903:89:0;;15009:2:1;48903:89:0::1;::::0;::::1;14991:21:1::0;15048:2;15028:18;;;15021:30;15087:34;15067:18;;;15060:62;-1:-1:-1;;;15138:18:1;;;15131:51;15199:19;;48903:89:0::1;14807:417:1::0;48903:89:0::1;49131:11;::::0;:29:::1;::::0;-1:-1:-1;;;49131:29:0;;::::1;::::0;::::1;2338:25:1::0;;;49093:13:0::1;::::0;;;-1:-1:-1;;;;;49131:11:0;;::::1;::::0;:21:::1;::::0;2311:18:1;;49131:29:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;49131:29:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;49209:11:0::1;::::0;:31:::1;::::0;-1:-1:-1;;;49209:31:0;;-1:-1:-1;;;;;1692:32:1;;;49209:31:0::1;::::0;::::1;1674:51:1::0;49092:68:0;;-1:-1:-1;49092:68:0;;-1:-1:-1;49171:35:0::1;::::0;49209:11:::1;::::0;:24:::1;::::0;-1:-1:-1;1647:18:1;;;-1:-1:-1;49209:31:0::1;::::0;-1:-1:-1;1528:203:1;49209:31:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;49209:31:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;49171:69;;49294:1;49266:18;:25;:29;;;;:::i;:::-;49254:9;:41;49251:280;;;49312:19;49346:18;:25;49334:9;:37;;;;:::i;:::-;:41;::::0;49374:1:::1;49334:41;:::i;:::-;49312:63;;49395:9;49390:130;49414:11;49410:1;:15;49390:130;;;49464:11;::::0;-1:-1:-1;;;;;49464:11:0::1;:22;49487:16;:14;:16::i;:::-;49464:40;;;;;;;;;;;;;2338:25:1::0;;2326:2;2311:18;;2192:177;49464:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;49427:3;;;;;:::i;:::-;;;;49390:130;;;;49297:234;49251:280;49543:11;::::0;:47:::1;::::0;-1:-1:-1;;;49543:47:0;;::::1;::::0;::::1;18278:25:1::0;;;46609:4:0::1;18319:18:1::0;;;18312:34;-1:-1:-1;;;;;49543:11:0;;::::1;::::0;:28:::1;::::0;18251:18:1;;49543:47:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;49601:13;49607:6;49601:5;:13::i;46916:1031::-:0;44441:7;;-1:-1:-1;;;44441:7:0;;;;44695:9;44687:38;;;;-1:-1:-1;;;44687:38:0;;;;;;;:::i;:::-;47075:11:::1;::::0;:29:::1;::::0;-1:-1:-1;;;47075:29:0;;::::1;::::0;::::1;2338:25:1::0;;;47037:13:0::1;::::0;;;-1:-1:-1;;;;;47075:11:0;;::::1;::::0;:21:::1;::::0;2311:18:1;;47075:29:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;47075:29:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;47153:11:0::1;::::0;:31:::1;::::0;-1:-1:-1;;;47153:31:0;;-1:-1:-1;;;;;1692:32:1;;;47153:31:0::1;::::0;::::1;1674:51:1::0;47036:68:0;;-1:-1:-1;47036:68:0;;-1:-1:-1;47115:35:0::1;::::0;47153:11:::1;::::0;:24:::1;::::0;-1:-1:-1;1647:18:1;;;-1:-1:-1;47153:31:0::1;::::0;-1:-1:-1;1528:203:1;47153:31:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;47153:31:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;47115:69;;47200:6;47237:1;47209:18;:25;:29;;;;:::i;:::-;47200:38;;47195:637;47268:18;47289;47308:1;47289:21;;;;;;;;:::i;:::-;;;;;;;47268:42;;47343:6;47329:10;:20;47325:411;;;47395:5;;;47325:411;47554:11;::::0;:33:::1;::::0;-1:-1:-1;;;47554:33:0;;::::1;::::0;::::1;2338:25:1::0;;;-1:-1:-1;;;;;47554:11:0;;::::1;::::0;:21:::1;::::0;2311:18:1;;47554:33:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;47554:33:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;47533:54:0;;-1:-1:-1;;;47610:14:0;;::::1;::::0;-1:-1:-1;47606:115:0::1;::::0;-1:-1:-1;;47606:115:0::1;47693:8;;;47606:115;47750:70;::::0;-1:-1:-1;;;47750:70:0;;18559:2:1;47750:70:0::1;::::0;::::1;18541:21:1::0;18598:2;18578:18;;;18571:30;18637:34;18617:18;;;18610:62;18708:30;18688:18;;;18681:58;18756:19;;47750:70:0::1;18357:424:1::0;47195:637:0::1;47248:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47195:637;;;-1:-1:-1::0;47844:11:0::1;::::0;:55:::1;::::0;-1:-1:-1;;;47844:55:0;;::::1;::::0;::::1;2338:25:1::0;;;-1:-1:-1;;;;;47844:11:0;;::::1;::::0;:29:::1;::::0;47881:9:::1;::::0;2311:18:1;;47844:55:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;47910:29;47920:10;47932:6;47910:9;:29::i;42910:192::-:0;42083:6;;-1:-1:-1;;;;;42083:6:0;16284:10;42230:23;42222:68;;;;-1:-1:-1;;;42222:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42999:22:0;::::1;42991:73;;;::::0;-1:-1:-1;;;42991:73:0;;19129:2:1;42991:73:0::1;::::0;::::1;19111:21:1::0;19168:2;19148:18;;;19141:30;19207:34;19187:18;;;19180:62;-1:-1:-1;;;19258:18:1;;;19251:36;19304:19;;42991:73:0::1;18927:402:1::0;42991:73:0::1;43075:19;43085:8;43075:9;:19::i;20802:305::-:0;20904:4;-1:-1:-1;;;;;;20941:40:0;;-1:-1:-1;;;20941:40:0;;:105;;-1:-1:-1;;;;;;;20998:48:0;;-1:-1:-1;;;20998:48:0;20941:105;:158;;;-1:-1:-1;;;;;;;;;;19409:40:0;;;21063:36;19300:157;30682:174;30757:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30757:29:0;-1:-1:-1;;;;;30757:29:0;;;;;;;;:24;;30811:23;30757:24;30811:14;:23::i;:::-;-1:-1:-1;;;;;30802:46:0;;;;;;;;;;;30682:174;;:::o;26994:348::-;27087:4;26789:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26789:16:0;27104:73;;;;-1:-1:-1;;;27104:73:0;;19536:2:1;27104:73:0;;;19518:21:1;19575:2;19555:18;;;19548:30;19614:34;19594:18;;;19587:62;-1:-1:-1;;;19665:18:1;;;19658:42;19717:19;;27104:73:0;19334:408:1;27104:73:0;27188:13;27204:23;27219:7;27204:14;:23::i;:::-;27188:39;;27257:5;-1:-1:-1;;;;;27246:16:0;:7;-1:-1:-1;;;;;27246:16:0;;:51;;;;27290:7;-1:-1:-1;;;;;27266:31:0;:20;27278:7;27266:11;:20::i;:::-;-1:-1:-1;;;;;27266:31:0;;27246:51;:87;;;-1:-1:-1;;;;;;24086:25:0;;;24062:4;24086:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27301:32;27238:96;26994:348;-1:-1:-1;;;;26994:348:0:o;29986:578::-;30145:4;-1:-1:-1;;;;;30118:31:0;:23;30133:7;30118:14;:23::i;:::-;-1:-1:-1;;;;;30118:31:0;;30110:85;;;;-1:-1:-1;;;30110:85:0;;19949:2:1;30110:85:0;;;19931:21:1;19988:2;19968:18;;;19961:30;20027:34;20007:18;;;20000:62;-1:-1:-1;;;20078:18:1;;;20071:39;20127:19;;30110:85:0;19747:405:1;30110:85:0;-1:-1:-1;;;;;30214:16:0;;30206:65;;;;-1:-1:-1;;;30206:65:0;;20359:2:1;30206:65:0;;;20341:21:1;20398:2;20378:18;;;20371:30;20437:34;20417:18;;;20410:62;-1:-1:-1;;;20488:18:1;;;20481:34;20532:19;;30206:65:0;20157:400:1;30206:65:0;30284:39;30305:4;30311:2;30315:7;30284:20;:39::i;:::-;30388:29;30405:1;30409:7;30388:8;:29::i;:::-;-1:-1:-1;;;;;30430:15:0;;;;;;:9;:15;;;;;:20;;30449:1;;30430:15;:20;;30449:1;;30430:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30461:13:0;;;;;;:9;:13;;;;;:18;;30478:1;;30461:13;:18;;30478:1;;30461:18;:::i;:::-;;;;-1:-1:-1;;30490:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30490:21:0;-1:-1:-1;;;;;30490:21:0;;;;;;;;;30529:27;;30490:16;;30529:27;;;;;;;29986:578;;;:::o;45429:120::-;44441:7;;-1:-1:-1;;;44441:7:0;;;;44965:41;;;;-1:-1:-1;;;44965:41:0;;20764:2:1;44965:41:0;;;20746:21:1;20803:2;20783:18;;;20776:30;-1:-1:-1;;;20822:18:1;;;20815:50;20882:18;;44965:41:0;20562:344:1;44965:41:0;45488:7:::1;:15:::0;;-1:-1:-1;;;;45488:15:0::1;::::0;;45519:22:::1;16284:10:::0;45528:12:::1;45519:22;::::0;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;45519:22:0::1;;;;;;;45429:120::o:0;43110:173::-;43185:6;;;-1:-1:-1;;;;;43202:17:0;;;-1:-1:-1;;;;;;43202:17:0;;;;;;;43235:40;;43185:6;;;43202:17;43185:6;;43235:40;;43166:16;;43235:40;43155:128;43110:173;:::o;27684:110::-;27760:26;27770:2;27774:7;27760:26;;;;;;;;;;;;:9;:26::i;:::-;27684:110;;:::o;45170:118::-;44441:7;;-1:-1:-1;;;44441:7:0;;;;44695:9;44687:38;;;;-1:-1:-1;;;44687:38:0;;;;;;;:::i;:::-;45230:7:::1;:14:::0;;-1:-1:-1;;;;45230:14:0::1;-1:-1:-1::0;;;45230:14:0::1;::::0;;45260:20:::1;45267:12;16284:10:::0;;16204:98;26072:315;26229:28;26239:4;26245:2;26249:7;26229:9;:28::i;:::-;26276:48;26299:4;26305:2;26309:7;26318:5;26276:22;:48::i;:::-;26268:111;;;;-1:-1:-1;;;26268:111:0;;;;;;;:::i;50175:108::-;50227:13;50260:15;50253:22;;;;;:::i;16737:723::-;16793:13;17014:10;17010:53;;-1:-1:-1;;17041:10:0;;;;;;;;;;;;-1:-1:-1;;;17041:10:0;;;;;16737:723::o;17010:53::-;17088:5;17073:12;17129:78;17136:9;;17129:78;;17162:8;;;;:::i;:::-;;-1:-1:-1;17185:10:0;;-1:-1:-1;17193:2:0;17185:10;;:::i;:::-;;;17129:78;;;17217:19;17249:6;17239:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17239:17:0;;17217:39;;17267:154;17274:10;;17267:154;;17301:11;17311:1;17301:11;;:::i;:::-;;-1:-1:-1;17370:10:0;17378:2;17370:5;:10;:::i;:::-;17357:24;;:2;:24;:::i;:::-;17344:39;;17327:6;17334;17327:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17327:56:0;;;;;;;;-1:-1:-1;17398:11:0;17407:2;17398:11;;:::i;:::-;;;17267:154;;50291:184;50340:7;50449:16;50464:1;50449:12;:16;:::i;:::-;50439:27;-1:-1:-1;;50408:59:0;;;-1:-1:-1;50291:184:0:o;29289:360::-;29349:13;29365:23;29380:7;29365:14;:23::i;:::-;29349:39;;29401:48;29422:5;29437:1;29441:7;29401:20;:48::i;:::-;29490:29;29507:1;29511:7;29490:8;:29::i;:::-;-1:-1:-1;;;;;29532:16:0;;;;;;:9;:16;;;;;:21;;29552:1;;29532:16;:21;;29552:1;;29532:21;:::i;:::-;;;;-1:-1:-1;;29571:16:0;;;;:7;:16;;;;;;29564:23;;-1:-1:-1;;;;;;29564:23:0;;;29605:36;29579:7;;29571:16;-1:-1:-1;;;;;29605:36:0;;;;;29571:16;;29605:36;29338:311;29289:360;:::o;50483:275::-;50627:45;50654:4;50660:2;50664:7;50627:26;:45::i;:::-;44441:7;;-1:-1:-1;;;44441:7:0;;;;50693:9;50685:65;;;;-1:-1:-1;;;50685:65:0;;21906:2:1;50685:65:0;;;21888:21:1;21945:2;21925:18;;;21918:30;21984:34;21964:18;;;21957:62;-1:-1:-1;;;22035:18:1;;;22028:41;22086:19;;50685:65:0;21704:407:1;28021:321:0;28151:18;28157:2;28161:7;28151:5;:18::i;:::-;28202:54;28233:1;28237:2;28241:7;28250:5;28202:22;:54::i;:::-;28180:154;;;;-1:-1:-1;;;28180:154:0;;;;;;;:::i;31421:799::-;31576:4;-1:-1:-1;;;;;31597:13:0;;8563:20;8611:8;31593:620;;31633:72;;-1:-1:-1;;;31633:72:0;;-1:-1:-1;;;;;31633:36:0;;;;;:72;;16284:10;;31684:4;;31690:7;;31699:5;;31633:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31633:72:0;;;;;;;;-1:-1:-1;;31633:72:0;;;;;;;;;;;;:::i;:::-;;;31629:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31875:13:0;;31871:272;;31918:60;;-1:-1:-1;;;31918:60:0;;;;;;;:::i;31871:272::-;32093:6;32087:13;32078:6;32074:2;32070:15;32063:38;31629:529;-1:-1:-1;;;;;;31756:51:0;-1:-1:-1;;;31756:51:0;;-1:-1:-1;31749:58:0;;31593:620;-1:-1:-1;32197:4:0;31421:799;;;;;;:::o;36534:589::-;-1:-1:-1;;;;;36740:18:0;;36736:187;;36775:40;36807:7;37950:10;:17;;37923:24;;;;:15;:24;;;;;:44;;;37978:24;;;;;;;;;;;;37846:164;36775:40;36736:187;;;36845:2;-1:-1:-1;;;;;36837:10:0;:4;-1:-1:-1;;;;;36837:10:0;;36833:90;;36864:47;36897:4;36903:7;36864:32;:47::i;:::-;-1:-1:-1;;;;;36937:16:0;;36933:183;;36970:45;37007:7;36970:36;:45::i;36933:183::-;37043:4;-1:-1:-1;;;;;37037:10:0;:2;-1:-1:-1;;;;;37037:10:0;;37033:83;;37064:40;37092:2;37096:7;37064:27;:40::i;28678:382::-;-1:-1:-1;;;;;28758:16:0;;28750:61;;;;-1:-1:-1;;;28750:61:0;;23066:2:1;28750:61:0;;;23048:21:1;;;23085:18;;;23078:30;23144:34;23124:18;;;23117:62;23196:18;;28750:61:0;22864:356:1;28750:61:0;26765:4;26789:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26789:16:0;:30;28822:58;;;;-1:-1:-1;;;28822:58:0;;23427:2:1;28822:58:0;;;23409:21:1;23466:2;23446:18;;;23439:30;23505;23485:18;;;23478:58;23553:18;;28822:58:0;23225:352:1;28822:58:0;28893:45;28922:1;28926:2;28930:7;28893:20;:45::i;:::-;-1:-1:-1;;;;;28951:13:0;;;;;;:9;:13;;;;;:18;;28968:1;;28951:13;:18;;28968:1;;28951:18;:::i;:::-;;;;-1:-1:-1;;28980:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28980:21:0;-1:-1:-1;;;;;28980:21:0;;;;;;;;29019:33;;28980:16;;;29019:33;;28980:16;;29019:33;28678:382;;:::o;38637:988::-;38903:22;38953:1;38928:22;38945:4;38928:16;:22::i;:::-;:26;;;;:::i;:::-;38965:18;38986:26;;;:17;:26;;;;;;38903:51;;-1:-1:-1;39119:28:0;;;39115:328;;-1:-1:-1;;;;;39186:18:0;;39164:19;39186:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39237:30;;;;;;:44;;;39354:30;;:17;:30;;;;;:43;;;39115:328;-1:-1:-1;39539:26:0;;;;:17;:26;;;;;;;;39532:33;;;-1:-1:-1;;;;;39583:18:0;;;;;:12;:18;;;;;:34;;;;;;;39576:41;38637:988::o;39920:1079::-;40198:10;:17;40173:22;;40198:21;;40218:1;;40198:21;:::i;:::-;40230:18;40251:24;;;:15;:24;;;;;;40624:10;:26;;40173:46;;-1:-1:-1;40251:24:0;;40173:46;;40624:26;;;;;;:::i;:::-;;;;;;;;;40602:48;;40688:11;40663:10;40674;40663:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40768:28;;;:15;:28;;;;;;;:41;;;40940:24;;;;;40933:31;40975:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39991:1008;;;39920:1079;:::o;37424:221::-;37509:14;37526:20;37543:2;37526:16;:20::i;:::-;-1:-1:-1;;;;;37557:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37602:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37424:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2597:456::-;2674:6;2682;2690;2743:2;2731:9;2722:7;2718:23;2714:32;2711:52;;;2759:1;2756;2749:12;2711:52;2798:9;2785:23;2817:31;2842:5;2817:31;:::i;:::-;2867:5;-1:-1:-1;2924:2:1;2909:18;;2896:32;2937:33;2896:32;2937:33;:::i;:::-;2597:456;;2989:7;;-1:-1:-1;;;3043:2:1;3028:18;;;;3015:32;;2597:456::o;3058:348::-;3110:8;3120:6;3174:3;3167:4;3159:6;3155:17;3151:27;3141:55;;3192:1;3189;3182:12;3141:55;-1:-1:-1;3215:20:1;;3258:18;3247:30;;3244:50;;;3290:1;3287;3280:12;3244:50;3327:4;3319:6;3315:17;3303:29;;3379:3;3372:4;3363:6;3355;3351:19;3347:30;3344:39;3341:59;;;3396:1;3393;3386:12;3341:59;3058:348;;;;;:::o;3411:411::-;3482:6;3490;3543:2;3531:9;3522:7;3518:23;3514:32;3511:52;;;3559:1;3556;3549:12;3511:52;3599:9;3586:23;3632:18;3624:6;3621:30;3618:50;;;3664:1;3661;3654:12;3618:50;3703:59;3754:7;3745:6;3734:9;3730:22;3703:59;:::i;:::-;3781:8;;3677:85;;-1:-1:-1;3411:411:1;-1:-1:-1;;;;3411:411:1:o;3827:247::-;3886:6;3939:2;3927:9;3918:7;3914:23;3910:32;3907:52;;;3955:1;3952;3945:12;3907:52;3994:9;3981:23;4013:31;4038:5;4013:31;:::i;4079:478::-;4158:6;4166;4174;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;4279:9;4266:23;4256:33;;4340:2;4329:9;4325:18;4312:32;4367:18;4359:6;4356:30;4353:50;;;4399:1;4396;4389:12;4353:50;4438:59;4489:7;4480:6;4469:9;4465:22;4438:59;:::i;:::-;4079:478;;4516:8;;-1:-1:-1;4412:85:1;;-1:-1:-1;;;;4079:478:1:o;5274:118::-;5360:5;5353:13;5346:21;5339:5;5336:32;5326:60;;5382:1;5379;5372:12;5397:382;5462:6;5470;5523:2;5511:9;5502:7;5498:23;5494:32;5491:52;;;5539:1;5536;5529:12;5491:52;5578:9;5565:23;5597:31;5622:5;5597:31;:::i;:::-;5647:5;-1:-1:-1;5704:2:1;5689:18;;5676:32;5717:30;5676:32;5717:30;:::i;:::-;5766:7;5756:17;;;5397:382;;;;;:::o;5784:127::-;5845:10;5840:3;5836:20;5833:1;5826:31;5876:4;5873:1;5866:15;5900:4;5897:1;5890:15;5916:275;5987:2;5981:9;6052:2;6033:13;;-1:-1:-1;;6029:27:1;6017:40;;6087:18;6072:34;;6108:22;;;6069:62;6066:88;;;6134:18;;:::i;:::-;6170:2;6163:22;5916:275;;-1:-1:-1;5916:275:1:o;6196:186::-;6244:4;6277:18;6269:6;6266:30;6263:56;;;6299:18;;:::i;:::-;-1:-1:-1;6365:2:1;6344:15;-1:-1:-1;;6340:29:1;6371:4;6336:40;;6196:186::o;6387:1016::-;6482:6;6490;6498;6506;6559:3;6547:9;6538:7;6534:23;6530:33;6527:53;;;6576:1;6573;6566:12;6527:53;6615:9;6602:23;6634:31;6659:5;6634:31;:::i;:::-;6684:5;-1:-1:-1;6741:2:1;6726:18;;6713:32;6754:33;6713:32;6754:33;:::i;:::-;6806:7;-1:-1:-1;6860:2:1;6845:18;;6832:32;;-1:-1:-1;6915:2:1;6900:18;;6887:32;6942:18;6931:30;;6928:50;;;6974:1;6971;6964:12;6928:50;6997:22;;7050:4;7042:13;;7038:27;-1:-1:-1;7028:55:1;;7079:1;7076;7069:12;7028:55;7115:2;7102:16;7140:48;7156:31;7184:2;7156:31;:::i;:::-;7140:48;:::i;:::-;7211:2;7204:5;7197:17;7251:7;7246:2;7241;7237;7233:11;7229:20;7226:33;7223:53;;;7272:1;7269;7262:12;7223:53;7327:2;7322;7318;7314:11;7309:2;7302:5;7298:14;7285:45;7371:1;7366:2;7361;7354:5;7350:14;7346:23;7339:34;7392:5;7382:15;;;;;6387:1016;;;;;;;:::o;7408:388::-;7476:6;7484;7537:2;7525:9;7516:7;7512:23;7508:32;7505:52;;;7553:1;7550;7543:12;7505:52;7592:9;7579:23;7611:31;7636:5;7611:31;:::i;:::-;7661:5;-1:-1:-1;7718:2:1;7703:18;;7690:32;7731:33;7690:32;7731:33;:::i;7801:380::-;7880:1;7876:12;;;;7923;;;7944:61;;7998:4;7990:6;7986:17;7976:27;;7944:61;8051:2;8043:6;8040:14;8020:18;8017:38;8014:161;;;8097:10;8092:3;8088:20;8085:1;8078:31;8132:4;8129:1;8122:15;8160:4;8157:1;8150:15;8014:161;;7801:380;;;:::o;9426:413::-;9628:2;9610:21;;;9667:2;9647:18;;;9640:30;9706:34;9701:2;9686:18;;9679:62;-1:-1:-1;;;9772:2:1;9757:18;;9750:47;9829:3;9814:19;;9426:413::o;10256:356::-;10458:2;10440:21;;;10477:18;;;10470:30;10536:34;10531:2;10516:18;;10509:62;10603:2;10588:18;;10256:356::o;11030:127::-;11091:10;11086:3;11082:20;11079:1;11072:31;11122:4;11119:1;11112:15;11146:4;11143:1;11136:15;11983:340;12185:2;12167:21;;;12224:2;12204:18;;;12197:30;-1:-1:-1;;;12258:2:1;12243:18;;12236:46;12314:2;12299:18;;11983:340::o;12741:461::-;12928:6;12917:9;12910:25;12971:2;12966;12955:9;12951:18;12944:30;13010:6;13005:2;12994:9;12990:18;12983:34;13067:6;13059;13054:2;13043:9;13039:18;13026:48;13123:1;13094:22;;;13118:2;13090:31;;;13083:42;;;;13186:2;13165:15;;;-1:-1:-1;;13161:29:1;13146:45;13142:54;;12741:461;-1:-1:-1;;12741:461:1:o;13977:470::-;14156:3;14194:6;14188:13;14210:53;14256:6;14251:3;14244:4;14236:6;14232:17;14210:53;:::i;:::-;14326:13;;14285:16;;;;14348:57;14326:13;14285:16;14382:4;14370:17;;14348:57;:::i;:::-;14421:20;;13977:470;-1:-1:-1;;;;13977:470:1:o;15229:138::-;15308:13;;15330:31;15308:13;15330:31;:::i;:::-;15229:138;;;:::o;15372:132::-;15448:13;;15470:28;15448:13;15470:28;:::i;15509:1114::-;15640:6;15648;15656;15664;15672;15680;15688;15741:3;15729:9;15720:7;15716:23;15712:33;15709:53;;;15758:1;15755;15748:12;15709:53;15790:9;15784:16;15809:31;15834:5;15809:31;:::i;:::-;15904:2;15889:18;;15883:25;15952:2;15937:18;;15931:25;15859:5;;-1:-1:-1;15883:25:1;-1:-1:-1;15979:18:1;15968:30;;15965:50;;;16011:1;16008;16001:12;15965:50;16034:22;;16087:4;16079:13;;16075:27;-1:-1:-1;16065:55:1;;16116:1;16113;16106:12;16065:55;16145:2;16139:9;16170:48;16186:31;16214:2;16186:31;:::i;16170:48::-;16241:2;16234:5;16227:17;16281:7;16276:2;16271;16267;16263:11;16259:20;16256:33;16253:53;;;16302:1;16299;16292:12;16253:53;16315:54;16366:2;16361;16354:5;16350:14;16345:2;16341;16337:11;16315:54;:::i;:::-;16388:5;-1:-1:-1;16412:46:1;;-1:-1:-1;;16454:2:1;16439:18;;16412:46;:::i;:::-;16402:56;;16498:3;16487:9;16483:19;16477:26;16467:36;;16522:50;16567:3;16556:9;16552:19;16522:50;:::i;:::-;16512:60;;16612:3;16601:9;16597:19;16591:26;16581:36;;15509:1114;;;;;;;;;;:::o;16628:936::-;16723:6;16754:2;16797;16785:9;16776:7;16772:23;16768:32;16765:52;;;16813:1;16810;16803:12;16765:52;16846:9;16840:16;16875:18;16916:2;16908:6;16905:14;16902:34;;;16932:1;16929;16922:12;16902:34;16970:6;16959:9;16955:22;16945:32;;17015:7;17008:4;17004:2;17000:13;16996:27;16986:55;;17037:1;17034;17027:12;16986:55;17066:2;17060:9;17088:2;17084;17081:10;17078:36;;;17094:18;;:::i;:::-;17140:2;17137:1;17133:10;17123:20;;17163:28;17187:2;17183;17179:11;17163:28;:::i;:::-;17225:15;;;17295:11;;;17291:20;;;17256:12;;;;17323:19;;;17320:39;;;17355:1;17352;17345:12;17320:39;17379:11;;;;17399:135;17415:6;17410:3;17407:15;17399:135;;;17481:10;;17469:23;;17432:12;;;;17512;;;;17399:135;;;17553:5;16628:936;-1:-1:-1;;;;;;;;16628:936:1:o;17569:127::-;17630:10;17625:3;17621:20;17618:1;17611:31;17661:4;17658:1;17651:15;17685:4;17682:1;17675:15;17701:125;17741:4;17769:1;17766;17763:8;17760:34;;;17774:18;;:::i;:::-;-1:-1:-1;17811:9:1;;17701:125::o;17831:128::-;17871:3;17902:1;17898:6;17895:1;17892:13;17889:39;;;17908:18;;:::i;:::-;-1:-1:-1;17944:9:1;;17831:128::o;17964:135::-;18003:3;-1:-1:-1;;18024:17:1;;18021:43;;;18044:18;;:::i;:::-;-1:-1:-1;18091:1:1;18080:13;;17964:135::o;18786:136::-;18825:3;18853:5;18843:39;;18862:18;;:::i;:::-;-1:-1:-1;;;18898:18:1;;18786:136::o;20911:414::-;21113:2;21095:21;;;21152:2;21132:18;;;21125:30;21191:34;21186:2;21171:18;;21164:62;-1:-1:-1;;;21257:2:1;21242:18;;21235:48;21315:3;21300:19;;20911:414::o;21330:127::-;21391:10;21386:3;21382:20;21379:1;21372:31;21422:4;21419:1;21412:15;21446:4;21443:1;21436:15;21462:120;21502:1;21528;21518:35;;21533:18;;:::i;:::-;-1:-1:-1;21567:9:1;;21462:120::o;21587:112::-;21619:1;21645;21635:35;;21650:18;;:::i;:::-;-1:-1:-1;21684:9:1;;21587:112::o;22116:489::-;-1:-1:-1;;;;;22385:15:1;;;22367:34;;22437:15;;22432:2;22417:18;;22410:43;22484:2;22469:18;;22462:34;;;22532:3;22527:2;22512:18;;22505:31;;;22310:4;;22553:46;;22579:19;;22571:6;22553:46;:::i;:::-;22545:54;22116:489;-1:-1:-1;;;;;;22116:489:1:o;22610:249::-;22679:6;22732:2;22720:9;22711:7;22707:23;22703:32;22700:52;;;22748:1;22745;22738:12;22700:52;22780:9;22774:16;22799:30;22823:5;22799:30;:::i;23582:127::-;23643:10;23638:3;23634:20;23631:1;23624:31;23674:4;23671:1;23664:15;23698:4;23695:1;23688:15

Swarm Source

ipfs://953f5bef93a47390730a3aba12e8e7dbdb3b9be44ae29119c4dcef5ba0b02e53
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.