ETH Price: $3,283.91 (-0.87%)
Gas: 8 Gwei

Token

Dyno (DYNO)
 

Overview

Max Total Supply

143 DYNO

Holders

72

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 DYNO
0xaccdcb7cf862cb517c2051fb9b51f62e446dec95
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Dyno

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2021-08-18
*/

/**
 *Submitted for verification at Etherscan.io on 2021-07-30
*/

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

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

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


pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}



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);
}

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);
}



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);
}

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();
        string memory json = ".json";
        return bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, tokenId.toString(), json))
            : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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 { }
}

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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();
    }
}

pragma solidity ^0.8.0;

contract Dyno is ERC721Enumerable, Ownable {

    using Strings for uint256;

    string _baseTokenURI;
    uint256 private _reserved = 61;
    uint256 private _price = 0.06 ether;
    bool public _paused = false;
    uint8 public _maxNFTPerWallet = 2;

    // withdraw addresses
    address t1 = 0xcD6b295E37564C09Edf0ab93604023AB422c029B;

    // 721 in total 
    constructor(string memory baseURI) ERC721("Dyno", "DYNO")  {
        setBaseURI(baseURI);
    }

    function mint(uint256 num) public payable {
        uint256 supply = totalSupply();
        require( !_paused,                              "Sale paused" );
        require( num < _maxNFTPerWallet + 1,        "Exceeds maxNFTPerWallet" );
        require( supply + num < 722 - _reserved,      "Exceeds maximum token supply" );
        require( msg.value >= _price * num,             "Ether sent is not correct" );

        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    // Just in case Eth does some crazy stuff
    function setPrice(uint256 _newPrice) public onlyOwner() {
        _price = _newPrice;
    }
    
    function setMNPW(uint8 _newMaxNFTPerWallet) public onlyOwner() {
        _maxNFTPerWallet = _newMaxNFTPerWallet;
    }

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

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

    function getPrice() public view returns (uint256){
        return _price;
    }

    function giveAway(address _to, uint256 _amount) external onlyOwner() {
        require( _amount <= _reserved, "Exceeds reserved Token supply" );

        uint256 supply = totalSupply();
        for(uint256 i; i < _amount; i++){
            _safeMint( _to, supply + i );
        }

        _reserved -= _amount;
    }

    function pause(bool val) public onlyOwner {
        _paused = val;
    }

    function withdrawAll() public payable onlyOwner {
        uint256 _each = address(this).balance;
        require(payable(t1).send(_each));
    }
    
    fallback() external payable { }
    
    receive() external payable { }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"_maxNFTPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_newMaxNFTPerWallet","type":"uint8"}],"name":"setMNPW","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052603d600c5566d529ae9e860000600d55600e80546001600160b01b03191675cd6b295e37564c09edf0ab93604023ab422c029b02001790553480156200004957600080fd5b50604051620026c3380380620026c38339810160408190526200006c916200026b565b6040518060400160405280600481526020016344796e6f60e01b8152506040518060400160405280600481526020016344594e4f60e01b8152508160009080519060200190620000be929190620001c5565b508051620000d4906001906020840190620001c5565b5050506000620000e96200014960201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000142816200014d565b506200039a565b3390565b600a546001600160a01b03163314620001ac5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001c190600b906020840190620001c5565b5050565b828054620001d39062000347565b90600052602060002090601f016020900481019282620001f7576000855562000242565b82601f106200021257805160ff191683800117855562000242565b8280016001018555821562000242579182015b828111156200024257825182559160200191906001019062000225565b506200025092915062000254565b5090565b5b8082111562000250576000815560010162000255565b600060208083850312156200027f57600080fd5b82516001600160401b03808211156200029757600080fd5b818501915085601f830112620002ac57600080fd5b815181811115620002c157620002c162000384565b604051601f8201601f19908116603f01168101908382118183101715620002ec57620002ec62000384565b8160405282815288868487010111156200030557600080fd5b600093505b828410156200032957848401860151818501870152928501926200030a565b828411156200033b5760008684830101525b98975050505050505050565b600181811c908216806200035c57607f821691505b602082108114156200037e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61231980620003aa6000396000f3fe6080604052600436106101b95760003560e01c806370a08231116100eb578063a0712d681161008f578063ca80014411610061578063ca800144146104ef578063e01643dc1461050f578063e985e9c514610540578063f2fde38b1461058957005b8063a0712d681461047c578063a22cb4651461048f578063b88d4fde146104af578063c87b56dd146104cf57005b80638da5cb5b116100c85780638da5cb5b1461041457806391b7f5ed1461043257806395d89b411461045257806398d5fdca1461046757005b806370a08231146103d7578063715018a6146103f7578063853828b61461040c57005b80631ad35e6f1161015d578063438b63001161012f578063438b63001461034a5780634f6ccce71461037757806355f804b3146103975780636352211e146103b757005b80631ad35e6f146102ca57806323b872dd146102ea5780632f745c591461030a57806342842e0e1461032a57005b8063081812fc11610196578063081812fc14610239578063095ea7b31461027157806316c61ccc1461029157806318160ddd146102ab57005b806301ffc9a7146101c257806302329a29146101f757806306fdde031461021757005b366101c057005b005b3480156101ce57600080fd5b506101e26101dd366004611ea8565b6105a9565b60405190151581526020015b60405180910390f35b34801561020357600080fd5b506101c0610212366004611e8d565b6105d4565b34801561022357600080fd5b5061022c61061a565b6040516101ee9190612057565b34801561024557600080fd5b50610259610254366004611f2b565b6106ac565b6040516001600160a01b0390911681526020016101ee565b34801561027d57600080fd5b506101c061028c366004611e63565b610741565b34801561029d57600080fd5b50600e546101e29060ff1681565b3480156102b757600080fd5b506008545b6040519081526020016101ee565b3480156102d657600080fd5b506101c06102e5366004611f44565b610857565b3480156102f657600080fd5b506101c0610305366004611d81565b61089d565b34801561031657600080fd5b506102bc610325366004611e63565b6108ce565b34801561033657600080fd5b506101c0610345366004611d81565b610964565b34801561035657600080fd5b5061036a610365366004611d2c565b61097f565b6040516101ee9190612013565b34801561038357600080fd5b506102bc610392366004611f2b565b610a21565b3480156103a357600080fd5b506101c06103b2366004611ee2565b610ab4565b3480156103c357600080fd5b506102596103d2366004611f2b565b610af5565b3480156103e357600080fd5b506102bc6103f2366004611d2c565b610b6c565b34801561040357600080fd5b506101c0610bf3565b6101c0610c67565b34801561042057600080fd5b50600a546001600160a01b0316610259565b34801561043e57600080fd5b506101c061044d366004611f2b565b610ccc565b34801561045e57600080fd5b5061022c610cfb565b34801561047357600080fd5b50600d546102bc565b6101c061048a366004611f2b565b610d0a565b34801561049b57600080fd5b506101c06104aa366004611e39565b610eb3565b3480156104bb57600080fd5b506101c06104ca366004611dbd565b610f78565b3480156104db57600080fd5b5061022c6104ea366004611f2b565b610fb0565b3480156104fb57600080fd5b506101c061050a366004611e63565b6110a9565b34801561051b57600080fd5b50600e5461052e90610100900460ff1681565b60405160ff90911681526020016101ee565b34801561054c57600080fd5b506101e261055b366004611d4e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561059557600080fd5b506101c06105a4366004611d2c565b61117a565b60006001600160e01b0319821663780e9d6360e01b14806105ce57506105ce82611265565b92915050565b600a546001600160a01b031633146106075760405162461bcd60e51b81526004016105fe906120bc565b60405180910390fd5b600e805460ff1916911515919091179055565b606060008054610629906121f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610655906121f5565b80156106a25780601f10610677576101008083540402835291602001916106a2565b820191906000526020600020905b81548152906001019060200180831161068557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105fe565b506000908152600460205260409020546001600160a01b031690565b600061074c82610af5565b9050806001600160a01b0316836001600160a01b031614156107ba5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105fe565b336001600160a01b03821614806107d657506107d6813361055b565b6108485760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105fe565b61085283836112b5565b505050565b600a546001600160a01b031633146108815760405162461bcd60e51b81526004016105fe906120bc565b600e805460ff9092166101000261ff0019909216919091179055565b6108a73382611323565b6108c35760405162461bcd60e51b81526004016105fe906120f1565b610852838383611416565b60006108d983610b6c565b821061093b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105fe565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61085283838360405180602001604052806000815250610f78565b6060600061098c83610b6c565b905060008167ffffffffffffffff8111156109a9576109a96122b7565b6040519080825280602002602001820160405280156109d2578160200160208202803683370190505b50905060005b82811015610a19576109ea85826108ce565b8282815181106109fc576109fc6122a1565b602090810291909101015280610a1181612230565b9150506109d8565b509392505050565b6000610a2c60085490565b8210610a8f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105fe565b60088281548110610aa257610aa26122a1565b90600052602060002001549050919050565b600a546001600160a01b03163314610ade5760405162461bcd60e51b81526004016105fe906120bc565b8051610af190600b906020840190611bf1565b5050565b6000818152600260205260408120546001600160a01b0316806105ce5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105fe565b60006001600160a01b038216610bd75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105fe565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c1d5760405162461bcd60e51b81526004016105fe906120bc565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b03163314610c915760405162461bcd60e51b81526004016105fe906120bc565b600e5460405147916201000090046001600160a01b0316906108fc8315029083906000818181858888f19350505050610cc957600080fd5b50565b600a546001600160a01b03163314610cf65760405162461bcd60e51b81526004016105fe906120bc565b600d55565b606060018054610629906121f5565b6000610d1560085490565b600e5490915060ff1615610d595760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b60448201526064016105fe565b600e54610d6f90610100900460ff16600161215a565b60ff168210610dc05760405162461bcd60e51b815260206004820152601760248201527f45786365656473206d61784e465450657257616c6c657400000000000000000060448201526064016105fe565b600c54610dcf906102d26121b2565b610dd98383612142565b10610e265760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d6178696d756d20746f6b656e20737570706c790000000060448201526064016105fe565b81600d54610e349190612193565b341015610e835760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f72726563740000000000000060448201526064016105fe565b60005b8281101561085257610ea133610e9c8385612142565b6115c1565b80610eab81612230565b915050610e86565b6001600160a01b038216331415610f0c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105fe565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f823383611323565b610f9e5760405162461bcd60e51b81526004016105fe906120f1565b610faa848484846115db565b50505050565b6000818152600260205260409020546060906001600160a01b031661102f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105fe565b600061103961160e565b604080518082019091526005815264173539b7b760d91b602082015281519192509061107457604051806020016040528060008152506110a1565b8161107e8561161d565b8260405160200161109193929190611f93565b6040516020818303038152906040525b949350505050565b600a546001600160a01b031633146110d35760405162461bcd60e51b81526004016105fe906120bc565b600c548111156111255760405162461bcd60e51b815260206004820152601d60248201527f4578636565647320726573657276656420546f6b656e20737570706c7900000060448201526064016105fe565b600061113060085490565b905060005b8281101561115d5761114b84610e9c8385612142565b8061115581612230565b915050611135565b5081600c600082825461117091906121b2565b9091555050505050565b600a546001600160a01b031633146111a45760405162461bcd60e51b81526004016105fe906120bc565b6001600160a01b0381166112095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105fe565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061129657506001600160e01b03198216635b5e139f60e01b145b806105ce57506301ffc9a760e01b6001600160e01b03198316146105ce565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112ea82610af5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661139c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105fe565b60006113a783610af5565b9050806001600160a01b0316846001600160a01b031614806113e25750836001600160a01b03166113d7846106ac565b6001600160a01b0316145b806110a157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166110a1565b826001600160a01b031661142982610af5565b6001600160a01b0316146114915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105fe565b6001600160a01b0382166114f35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105fe565b6114fe83838361171b565b6115096000826112b5565b6001600160a01b03831660009081526003602052604081208054600192906115329084906121b2565b90915550506001600160a01b0382166000908152600360205260408120805460019290611560908490612142565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610af18282604051806020016040528060008152506117d3565b6115e6848484611416565b6115f284848484611806565b610faa5760405162461bcd60e51b81526004016105fe9061206a565b6060600b8054610629906121f5565b6060816116415750506040805180820190915260018152600360fc1b602082015290565b8160005b811561166b578061165581612230565b91506116649050600a8361217f565b9150611645565b60008167ffffffffffffffff811115611686576116866122b7565b6040519080825280601f01601f1916602001820160405280156116b0576020820181803683370190505b5090505b84156110a1576116c56001836121b2565b91506116d2600a8661224b565b6116dd906030612142565b60f81b8183815181106116f2576116f26122a1565b60200101906001600160f81b031916908160001a905350611714600a8661217f565b94506116b4565b6001600160a01b0383166117765761177181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611799565b816001600160a01b0316836001600160a01b031614611799576117998382611913565b6001600160a01b0382166117b057610852816119b0565b826001600160a01b0316826001600160a01b031614610852576108528282611a5f565b6117dd8383611aa3565b6117ea6000848484611806565b6108525760405162461bcd60e51b81526004016105fe9061206a565b60006001600160a01b0384163b1561190857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061184a903390899088908890600401611fd6565b602060405180830381600087803b15801561186457600080fd5b505af1925050508015611894575060408051601f3d908101601f1916820190925261189191810190611ec5565b60015b6118ee573d8080156118c2576040519150601f19603f3d011682016040523d82523d6000602084013e6118c7565b606091505b5080516118e65760405162461bcd60e51b81526004016105fe9061206a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110a1565b506001949350505050565b6000600161192084610b6c565b61192a91906121b2565b60008381526007602052604090205490915080821461197d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119c2906001906121b2565b600083815260096020526040812054600880549394509092849081106119ea576119ea6122a1565b906000526020600020015490508060088381548110611a0b57611a0b6122a1565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a4357611a4361228b565b6001900381819060005260206000200160009055905550505050565b6000611a6a83610b6c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611af95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105fe565b6000818152600260205260409020546001600160a01b031615611b5e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105fe565b611b6a6000838361171b565b6001600160a01b0382166000908152600360205260408120805460019290611b93908490612142565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611bfd906121f5565b90600052602060002090601f016020900481019282611c1f5760008555611c65565b82601f10611c3857805160ff1916838001178555611c65565b82800160010185558215611c65579182015b82811115611c65578251825591602001919060010190611c4a565b50611c71929150611c75565b5090565b5b80821115611c715760008155600101611c76565b600067ffffffffffffffff80841115611ca557611ca56122b7565b604051601f8501601f19908116603f01168101908282118183101715611ccd57611ccd6122b7565b81604052809350858152868686011115611ce657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d1757600080fd5b919050565b80358015158114611d1757600080fd5b600060208284031215611d3e57600080fd5b611d4782611d00565b9392505050565b60008060408385031215611d6157600080fd5b611d6a83611d00565b9150611d7860208401611d00565b90509250929050565b600080600060608486031215611d9657600080fd5b611d9f84611d00565b9250611dad60208501611d00565b9150604084013590509250925092565b60008060008060808587031215611dd357600080fd5b611ddc85611d00565b9350611dea60208601611d00565b925060408501359150606085013567ffffffffffffffff811115611e0d57600080fd5b8501601f81018713611e1e57600080fd5b611e2d87823560208401611c8a565b91505092959194509250565b60008060408385031215611e4c57600080fd5b611e5583611d00565b9150611d7860208401611d1c565b60008060408385031215611e7657600080fd5b611e7f83611d00565b946020939093013593505050565b600060208284031215611e9f57600080fd5b611d4782611d1c565b600060208284031215611eba57600080fd5b8135611d47816122cd565b600060208284031215611ed757600080fd5b8151611d47816122cd565b600060208284031215611ef457600080fd5b813567ffffffffffffffff811115611f0b57600080fd5b8201601f81018413611f1c57600080fd5b6110a184823560208401611c8a565b600060208284031215611f3d57600080fd5b5035919050565b600060208284031215611f5657600080fd5b813560ff81168114611d4757600080fd5b60008151808452611f7f8160208601602086016121c9565b601f01601f19169290920160200192915050565b60008451611fa58184602089016121c9565b845190830190611fb98183602089016121c9565b8451910190611fcc8183602088016121c9565b0195945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061200990830184611f67565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561204b5783518352928401929184019160010161202f565b50909695505050505050565b602081526000611d476020830184611f67565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156121555761215561225f565b500190565b600060ff821660ff84168060ff038211156121775761217761225f565b019392505050565b60008261218e5761218e612275565b500490565b60008160001904831182151516156121ad576121ad61225f565b500290565b6000828210156121c4576121c461225f565b500390565b60005b838110156121e45781810151838201526020016121cc565b83811115610faa5750506000910152565b600181811c9082168061220957607f821691505b6020821081141561222a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122445761224461225f565b5060010190565b60008261225a5761225a612275565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cc957600080fdfea2646970667358221220622e71353c4bada1afe7bc40643d693b6545d29a9498ceb91e8a659a2235544064736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000b636f6d696e672d736f6f6e000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b95760003560e01c806370a08231116100eb578063a0712d681161008f578063ca80014411610061578063ca800144146104ef578063e01643dc1461050f578063e985e9c514610540578063f2fde38b1461058957005b8063a0712d681461047c578063a22cb4651461048f578063b88d4fde146104af578063c87b56dd146104cf57005b80638da5cb5b116100c85780638da5cb5b1461041457806391b7f5ed1461043257806395d89b411461045257806398d5fdca1461046757005b806370a08231146103d7578063715018a6146103f7578063853828b61461040c57005b80631ad35e6f1161015d578063438b63001161012f578063438b63001461034a5780634f6ccce71461037757806355f804b3146103975780636352211e146103b757005b80631ad35e6f146102ca57806323b872dd146102ea5780632f745c591461030a57806342842e0e1461032a57005b8063081812fc11610196578063081812fc14610239578063095ea7b31461027157806316c61ccc1461029157806318160ddd146102ab57005b806301ffc9a7146101c257806302329a29146101f757806306fdde031461021757005b366101c057005b005b3480156101ce57600080fd5b506101e26101dd366004611ea8565b6105a9565b60405190151581526020015b60405180910390f35b34801561020357600080fd5b506101c0610212366004611e8d565b6105d4565b34801561022357600080fd5b5061022c61061a565b6040516101ee9190612057565b34801561024557600080fd5b50610259610254366004611f2b565b6106ac565b6040516001600160a01b0390911681526020016101ee565b34801561027d57600080fd5b506101c061028c366004611e63565b610741565b34801561029d57600080fd5b50600e546101e29060ff1681565b3480156102b757600080fd5b506008545b6040519081526020016101ee565b3480156102d657600080fd5b506101c06102e5366004611f44565b610857565b3480156102f657600080fd5b506101c0610305366004611d81565b61089d565b34801561031657600080fd5b506102bc610325366004611e63565b6108ce565b34801561033657600080fd5b506101c0610345366004611d81565b610964565b34801561035657600080fd5b5061036a610365366004611d2c565b61097f565b6040516101ee9190612013565b34801561038357600080fd5b506102bc610392366004611f2b565b610a21565b3480156103a357600080fd5b506101c06103b2366004611ee2565b610ab4565b3480156103c357600080fd5b506102596103d2366004611f2b565b610af5565b3480156103e357600080fd5b506102bc6103f2366004611d2c565b610b6c565b34801561040357600080fd5b506101c0610bf3565b6101c0610c67565b34801561042057600080fd5b50600a546001600160a01b0316610259565b34801561043e57600080fd5b506101c061044d366004611f2b565b610ccc565b34801561045e57600080fd5b5061022c610cfb565b34801561047357600080fd5b50600d546102bc565b6101c061048a366004611f2b565b610d0a565b34801561049b57600080fd5b506101c06104aa366004611e39565b610eb3565b3480156104bb57600080fd5b506101c06104ca366004611dbd565b610f78565b3480156104db57600080fd5b5061022c6104ea366004611f2b565b610fb0565b3480156104fb57600080fd5b506101c061050a366004611e63565b6110a9565b34801561051b57600080fd5b50600e5461052e90610100900460ff1681565b60405160ff90911681526020016101ee565b34801561054c57600080fd5b506101e261055b366004611d4e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561059557600080fd5b506101c06105a4366004611d2c565b61117a565b60006001600160e01b0319821663780e9d6360e01b14806105ce57506105ce82611265565b92915050565b600a546001600160a01b031633146106075760405162461bcd60e51b81526004016105fe906120bc565b60405180910390fd5b600e805460ff1916911515919091179055565b606060008054610629906121f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610655906121f5565b80156106a25780601f10610677576101008083540402835291602001916106a2565b820191906000526020600020905b81548152906001019060200180831161068557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105fe565b506000908152600460205260409020546001600160a01b031690565b600061074c82610af5565b9050806001600160a01b0316836001600160a01b031614156107ba5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105fe565b336001600160a01b03821614806107d657506107d6813361055b565b6108485760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105fe565b61085283836112b5565b505050565b600a546001600160a01b031633146108815760405162461bcd60e51b81526004016105fe906120bc565b600e805460ff9092166101000261ff0019909216919091179055565b6108a73382611323565b6108c35760405162461bcd60e51b81526004016105fe906120f1565b610852838383611416565b60006108d983610b6c565b821061093b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105fe565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61085283838360405180602001604052806000815250610f78565b6060600061098c83610b6c565b905060008167ffffffffffffffff8111156109a9576109a96122b7565b6040519080825280602002602001820160405280156109d2578160200160208202803683370190505b50905060005b82811015610a19576109ea85826108ce565b8282815181106109fc576109fc6122a1565b602090810291909101015280610a1181612230565b9150506109d8565b509392505050565b6000610a2c60085490565b8210610a8f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105fe565b60088281548110610aa257610aa26122a1565b90600052602060002001549050919050565b600a546001600160a01b03163314610ade5760405162461bcd60e51b81526004016105fe906120bc565b8051610af190600b906020840190611bf1565b5050565b6000818152600260205260408120546001600160a01b0316806105ce5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105fe565b60006001600160a01b038216610bd75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105fe565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c1d5760405162461bcd60e51b81526004016105fe906120bc565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b03163314610c915760405162461bcd60e51b81526004016105fe906120bc565b600e5460405147916201000090046001600160a01b0316906108fc8315029083906000818181858888f19350505050610cc957600080fd5b50565b600a546001600160a01b03163314610cf65760405162461bcd60e51b81526004016105fe906120bc565b600d55565b606060018054610629906121f5565b6000610d1560085490565b600e5490915060ff1615610d595760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b60448201526064016105fe565b600e54610d6f90610100900460ff16600161215a565b60ff168210610dc05760405162461bcd60e51b815260206004820152601760248201527f45786365656473206d61784e465450657257616c6c657400000000000000000060448201526064016105fe565b600c54610dcf906102d26121b2565b610dd98383612142565b10610e265760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d6178696d756d20746f6b656e20737570706c790000000060448201526064016105fe565b81600d54610e349190612193565b341015610e835760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f72726563740000000000000060448201526064016105fe565b60005b8281101561085257610ea133610e9c8385612142565b6115c1565b80610eab81612230565b915050610e86565b6001600160a01b038216331415610f0c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105fe565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f823383611323565b610f9e5760405162461bcd60e51b81526004016105fe906120f1565b610faa848484846115db565b50505050565b6000818152600260205260409020546060906001600160a01b031661102f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105fe565b600061103961160e565b604080518082019091526005815264173539b7b760d91b602082015281519192509061107457604051806020016040528060008152506110a1565b8161107e8561161d565b8260405160200161109193929190611f93565b6040516020818303038152906040525b949350505050565b600a546001600160a01b031633146110d35760405162461bcd60e51b81526004016105fe906120bc565b600c548111156111255760405162461bcd60e51b815260206004820152601d60248201527f4578636565647320726573657276656420546f6b656e20737570706c7900000060448201526064016105fe565b600061113060085490565b905060005b8281101561115d5761114b84610e9c8385612142565b8061115581612230565b915050611135565b5081600c600082825461117091906121b2565b9091555050505050565b600a546001600160a01b031633146111a45760405162461bcd60e51b81526004016105fe906120bc565b6001600160a01b0381166112095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105fe565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061129657506001600160e01b03198216635b5e139f60e01b145b806105ce57506301ffc9a760e01b6001600160e01b03198316146105ce565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112ea82610af5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661139c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105fe565b60006113a783610af5565b9050806001600160a01b0316846001600160a01b031614806113e25750836001600160a01b03166113d7846106ac565b6001600160a01b0316145b806110a157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166110a1565b826001600160a01b031661142982610af5565b6001600160a01b0316146114915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105fe565b6001600160a01b0382166114f35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105fe565b6114fe83838361171b565b6115096000826112b5565b6001600160a01b03831660009081526003602052604081208054600192906115329084906121b2565b90915550506001600160a01b0382166000908152600360205260408120805460019290611560908490612142565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610af18282604051806020016040528060008152506117d3565b6115e6848484611416565b6115f284848484611806565b610faa5760405162461bcd60e51b81526004016105fe9061206a565b6060600b8054610629906121f5565b6060816116415750506040805180820190915260018152600360fc1b602082015290565b8160005b811561166b578061165581612230565b91506116649050600a8361217f565b9150611645565b60008167ffffffffffffffff811115611686576116866122b7565b6040519080825280601f01601f1916602001820160405280156116b0576020820181803683370190505b5090505b84156110a1576116c56001836121b2565b91506116d2600a8661224b565b6116dd906030612142565b60f81b8183815181106116f2576116f26122a1565b60200101906001600160f81b031916908160001a905350611714600a8661217f565b94506116b4565b6001600160a01b0383166117765761177181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611799565b816001600160a01b0316836001600160a01b031614611799576117998382611913565b6001600160a01b0382166117b057610852816119b0565b826001600160a01b0316826001600160a01b031614610852576108528282611a5f565b6117dd8383611aa3565b6117ea6000848484611806565b6108525760405162461bcd60e51b81526004016105fe9061206a565b60006001600160a01b0384163b1561190857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061184a903390899088908890600401611fd6565b602060405180830381600087803b15801561186457600080fd5b505af1925050508015611894575060408051601f3d908101601f1916820190925261189191810190611ec5565b60015b6118ee573d8080156118c2576040519150601f19603f3d011682016040523d82523d6000602084013e6118c7565b606091505b5080516118e65760405162461bcd60e51b81526004016105fe9061206a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110a1565b506001949350505050565b6000600161192084610b6c565b61192a91906121b2565b60008381526007602052604090205490915080821461197d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119c2906001906121b2565b600083815260096020526040812054600880549394509092849081106119ea576119ea6122a1565b906000526020600020015490508060088381548110611a0b57611a0b6122a1565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a4357611a4361228b565b6001900381819060005260206000200160009055905550505050565b6000611a6a83610b6c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611af95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105fe565b6000818152600260205260409020546001600160a01b031615611b5e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105fe565b611b6a6000838361171b565b6001600160a01b0382166000908152600360205260408120805460019290611b93908490612142565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611bfd906121f5565b90600052602060002090601f016020900481019282611c1f5760008555611c65565b82601f10611c3857805160ff1916838001178555611c65565b82800160010185558215611c65579182015b82811115611c65578251825591602001919060010190611c4a565b50611c71929150611c75565b5090565b5b80821115611c715760008155600101611c76565b600067ffffffffffffffff80841115611ca557611ca56122b7565b604051601f8501601f19908116603f01168101908282118183101715611ccd57611ccd6122b7565b81604052809350858152868686011115611ce657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d1757600080fd5b919050565b80358015158114611d1757600080fd5b600060208284031215611d3e57600080fd5b611d4782611d00565b9392505050565b60008060408385031215611d6157600080fd5b611d6a83611d00565b9150611d7860208401611d00565b90509250929050565b600080600060608486031215611d9657600080fd5b611d9f84611d00565b9250611dad60208501611d00565b9150604084013590509250925092565b60008060008060808587031215611dd357600080fd5b611ddc85611d00565b9350611dea60208601611d00565b925060408501359150606085013567ffffffffffffffff811115611e0d57600080fd5b8501601f81018713611e1e57600080fd5b611e2d87823560208401611c8a565b91505092959194509250565b60008060408385031215611e4c57600080fd5b611e5583611d00565b9150611d7860208401611d1c565b60008060408385031215611e7657600080fd5b611e7f83611d00565b946020939093013593505050565b600060208284031215611e9f57600080fd5b611d4782611d1c565b600060208284031215611eba57600080fd5b8135611d47816122cd565b600060208284031215611ed757600080fd5b8151611d47816122cd565b600060208284031215611ef457600080fd5b813567ffffffffffffffff811115611f0b57600080fd5b8201601f81018413611f1c57600080fd5b6110a184823560208401611c8a565b600060208284031215611f3d57600080fd5b5035919050565b600060208284031215611f5657600080fd5b813560ff81168114611d4757600080fd5b60008151808452611f7f8160208601602086016121c9565b601f01601f19169290920160200192915050565b60008451611fa58184602089016121c9565b845190830190611fb98183602089016121c9565b8451910190611fcc8183602088016121c9565b0195945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061200990830184611f67565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561204b5783518352928401929184019160010161202f565b50909695505050505050565b602081526000611d476020830184611f67565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156121555761215561225f565b500190565b600060ff821660ff84168060ff038211156121775761217761225f565b019392505050565b60008261218e5761218e612275565b500490565b60008160001904831182151516156121ad576121ad61225f565b500290565b6000828210156121c4576121c461225f565b500390565b60005b838110156121e45781810151838201526020016121cc565b83811115610faa5750506000910152565b600181811c9082168061220957607f821691505b6020821081141561222a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122445761224461225f565b5060010190565b60008261225a5761225a612275565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cc957600080fdfea2646970667358221220622e71353c4bada1afe7bc40643d693b6545d29a9498ceb91e8a659a2235544064736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000b636f6d696e672d736f6f6e000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): coming-soon

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [2] : 636f6d696e672d736f6f6e000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42218:2621:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36064:237;;;;;;;;;;-1:-1:-1;36064:237:0;;;;;:::i;:::-;;:::i;:::-;;;7008:14:1;;7001:22;6983:41;;6971:2;6956:18;36064:237:0;;;;;;;;44522:74;;;;;;;;;;-1:-1:-1;44522:74:0;;;;;:::i;:::-;;:::i;22066:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23571:221::-;;;;;;;;;;-1:-1:-1;23571:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5669:32:1;;;5651:51;;5639:2;5624:18;23571:221:0;5505:203:1;23108:397:0;;;;;;;;;;-1:-1:-1;23108:397:0;;;;;:::i;:::-;;:::i;42410:27::-;;;;;;;;;;-1:-1:-1;42410:27:0;;;;;;;;36717:113;;;;;;;;;;-1:-1:-1;36805:10:0;:17;36717:113;;;16373:25:1;;;16361:2;16346:18;36717:113:0;16227:177:1;43740:120:0;;;;;;;;;;-1:-1:-1;43740:120:0;;;;;:::i;:::-;;:::i;24461:305::-;;;;;;;;;;-1:-1:-1;24461:305:0;;;;;:::i;:::-;;:::i;36385:256::-;;;;;;;;;;-1:-1:-1;36385:256:0;;;;;:::i;:::-;;:::i;24837:151::-;;;;;;;;;;-1:-1:-1;24837:151:0;;;;;:::i;:::-;;:::i;43238:342::-;;;;;;;;;;-1:-1:-1;43238:342:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;36907:233::-;;;;;;;;;;-1:-1:-1;36907:233:0;;;;;:::i;:::-;;:::i;43990:102::-;;;;;;;;;;-1:-1:-1;43990:102:0;;;;;:::i;:::-;;:::i;21760:239::-;;;;;;;;;;-1:-1:-1;21760:239:0;;;;;:::i;:::-;;:::i;21490:208::-;;;;;;;;;;-1:-1:-1;21490:208:0;;;;;:::i;:::-;;:::i;34669:148::-;;;;;;;;;;;;;:::i;44604:147::-;;;:::i;34018:87::-;;;;;;;;;;-1:-1:-1;34091:6:0;;-1:-1:-1;;;;;34091:6:0;34018:87;;43635:93;;;;;;;;;;-1:-1:-1;43635:93:0;;;;;:::i;:::-;;:::i;22235:104::-;;;;;;;;;;;;;:::i;44100:81::-;;;;;;;;;;-1:-1:-1;44167:6:0;;44100:81;;42704:526;;;;;;:::i;:::-;;:::i;23864:295::-;;;;;;;;;;-1:-1:-1;23864:295:0;;;;;:::i;:::-;;:::i;25059:285::-;;;;;;;;;;-1:-1:-1;25059:285:0;;;;;:::i;:::-;;:::i;22410:405::-;;;;;;;;;;-1:-1:-1;22410:405:0;;;;;:::i;:::-;;:::i;44189:325::-;;;;;;;;;;-1:-1:-1;44189:325:0;;;;;:::i;:::-;;:::i;42444:33::-;;;;;;;;;;-1:-1:-1;42444:33:0;;;;;;;;;;;;;;16581:4:1;16569:17;;;16551:36;;16539:2;16524:18;42444:33:0;16409:184:1;24230:164:0;;;;;;;;;;-1:-1:-1;24230:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24351:25:0;;;24327:4;24351:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24230:164;34972:244;;;;;;;;;;-1:-1:-1;34972:244:0;;;;;:::i;:::-;;:::i;36064:237::-;36166:4;-1:-1:-1;;;;;;36190:50:0;;-1:-1:-1;;;36190:50:0;;:103;;;36257:36;36281:11;36257:23;:36::i;:::-;36183:110;36064:237;-1:-1:-1;;36064:237:0:o;44522:74::-;34091:6;;-1:-1:-1;;;;;34091:6:0;9231:10;34238:23;34230:68;;;;-1:-1:-1;;;34230:68:0;;;;;;;:::i;:::-;;;;;;;;;44575:7:::1;:13:::0;;-1:-1:-1;;44575:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44522:74::o;22066:100::-;22120:13;22153:5;22146:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22066:100;:::o;23571:221::-;23647:7;26900:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26900:16:0;23667:73;;;;-1:-1:-1;;;23667:73:0;;13242:2:1;23667:73:0;;;13224:21:1;13281:2;13261:18;;;13254:30;13320:34;13300:18;;;13293:62;-1:-1:-1;;;13371:18:1;;;13364:42;13423:19;;23667:73:0;13040:408:1;23667:73:0;-1:-1:-1;23760:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23760:24:0;;23571:221::o;23108:397::-;23189:13;23205:23;23220:7;23205:14;:23::i;:::-;23189:39;;23253:5;-1:-1:-1;;;;;23247:11:0;:2;-1:-1:-1;;;;;23247:11:0;;;23239:57;;;;-1:-1:-1;;;23239:57:0;;14842:2:1;23239:57:0;;;14824:21:1;14881:2;14861:18;;;14854:30;14920:34;14900:18;;;14893:62;-1:-1:-1;;;14971:18:1;;;14964:31;15012:19;;23239:57:0;14640:397:1;23239:57:0;9231:10;-1:-1:-1;;;;;23317:21:0;;;;:62;;-1:-1:-1;23342:37:0;23359:5;9231:10;24230:164;:::i;23342:37::-;23309:154;;;;-1:-1:-1;;;23309:154:0;;11635:2:1;23309:154:0;;;11617:21:1;11674:2;11654:18;;;11647:30;11713:34;11693:18;;;11686:62;11784:26;11764:18;;;11757:54;11828:19;;23309:154:0;11433:420:1;23309:154:0;23476:21;23485:2;23489:7;23476:8;:21::i;:::-;23178:327;23108:397;;:::o;43740:120::-;34091:6;;-1:-1:-1;;;;;34091:6:0;9231:10;34238:23;34230:68;;;;-1:-1:-1;;;34230:68:0;;;;;;;:::i;:::-;43814:16:::1;:38:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;43814:38:0;;::::1;::::0;;;::::1;::::0;;43740:120::o;24461:305::-;24622:41;9231:10;24655:7;24622:18;:41::i;:::-;24614:103;;;;-1:-1:-1;;;24614:103:0;;;;;;;:::i;:::-;24730:28;24740:4;24746:2;24750:7;24730:9;:28::i;36385:256::-;36482:7;36518:23;36535:5;36518:16;:23::i;:::-;36510:5;:31;36502:87;;;;-1:-1:-1;;;36502:87:0;;8516:2:1;36502:87:0;;;8498:21:1;8555:2;8535:18;;;8528:30;8594:34;8574:18;;;8567:62;-1:-1:-1;;;8645:18:1;;;8638:41;8696:19;;36502:87:0;8314:407:1;36502:87:0;-1:-1:-1;;;;;;36607:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36385:256::o;24837:151::-;24941:39;24958:4;24964:2;24968:7;24941:39;;;;;;;;;;;;:16;:39::i;43238:342::-;43297:16;43326:18;43347:17;43357:6;43347:9;:17::i;:::-;43326:38;;43377:25;43419:10;43405:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43405:25:0;;43377:53;;43445:9;43441:106;43460:10;43456:1;:14;43441:106;;;43505:30;43525:6;43533:1;43505:19;:30::i;:::-;43491:8;43500:1;43491:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;43472:3;;;;:::i;:::-;;;;43441:106;;;-1:-1:-1;43564:8:0;43238:342;-1:-1:-1;;;43238:342:0:o;36907:233::-;36982:7;37018:30;36805:10;:17;;36717:113;37018:30;37010:5;:38;37002:95;;;;-1:-1:-1;;;37002:95:0;;16016:2:1;37002:95:0;;;15998:21:1;16055:2;16035:18;;;16028:30;16094:34;16074:18;;;16067:62;-1:-1:-1;;;16145:18:1;;;16138:42;16197:19;;37002:95:0;15814:408:1;37002:95:0;37115:10;37126:5;37115:17;;;;;;;;:::i;:::-;;;;;;;;;37108:24;;36907:233;;;:::o;43990:102::-;34091:6;;-1:-1:-1;;;;;34091:6:0;9231:10;34238:23;34230:68;;;;-1:-1:-1;;;34230:68:0;;;;;;;:::i;:::-;44061:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43990:102:::0;:::o;21760:239::-;21832:7;21868:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21868:16:0;21903:19;21895:73;;;;-1:-1:-1;;;21895:73:0;;12471:2:1;21895:73:0;;;12453:21:1;12510:2;12490:18;;;12483:30;12549:34;12529:18;;;12522:62;-1:-1:-1;;;12600:18:1;;;12593:39;12649:19;;21895:73:0;12269:405:1;21490:208:0;21562:7;-1:-1:-1;;;;;21590:19:0;;21582:74;;;;-1:-1:-1;;;21582:74:0;;12060:2:1;21582:74:0;;;12042:21:1;12099:2;12079:18;;;12072:30;12138:34;12118:18;;;12111:62;-1:-1:-1;;;12189:18:1;;;12182:40;12239:19;;21582:74:0;11858:406:1;21582:74:0;-1:-1:-1;;;;;;21674:16:0;;;;;:9;:16;;;;;;;21490:208::o;34669:148::-;34091:6;;-1:-1:-1;;;;;34091:6:0;9231:10;34238:23;34230:68;;;;-1:-1:-1;;;34230:68:0;;;;;;;:::i;:::-;34760:6:::1;::::0;34739:40:::1;::::0;34776:1:::1;::::0;-1:-1:-1;;;;;34760:6:0::1;::::0;34739:40:::1;::::0;34776:1;;34739:40:::1;34790:6;:19:::0;;-1:-1:-1;;;;;;34790:19:0::1;::::0;;34669:148::o;44604:147::-;34091:6;;-1:-1:-1;;;;;34091:6:0;9231:10;34238:23;34230:68;;;;-1:-1:-1;;;34230:68:0;;;;;;;:::i;:::-;44727:2:::1;::::0;44719:23:::1;::::0;44679:21:::1;::::0;44727:2;;::::1;-1:-1:-1::0;;;;;44727:2:0::1;::::0;44719:23:::1;::::0;::::1;;::::0;44679:21;;44663:13:::1;44719:23:::0;44663:13;44719:23;44679:21;44727:2;44719:23;::::1;;;;;;44711:32;;;::::0;::::1;;44652:99;44604:147::o:0;43635:93::-;34091:6;;-1:-1:-1;;;;;34091:6:0;9231:10;34238:23;34230:68;;;;-1:-1:-1;;;34230:68:0;;;;;;;:::i;:::-;43702:6:::1;:18:::0;43635:93::o;22235:104::-;22291:13;22324:7;22317:14;;;;;:::i;42704:526::-;42757:14;42774:13;36805:10;:17;;36717:113;42774:13;42808:7;;42757:30;;-1:-1:-1;42808:7:0;;42807:8;42798:63;;;;-1:-1:-1;;;42798:63:0;;7461:2:1;42798:63:0;;;7443:21:1;7500:2;7480:18;;;7473:30;-1:-1:-1;;;7519:18:1;;;7512:41;7570:18;;42798:63:0;7259:335:1;42798:63:0;42887:16;;:20;;:16;;;;;;:20;:::i;:::-;42881:26;;:3;:26;42872:71;;;;-1:-1:-1;;;42872:71:0;;9347:2:1;42872:71:0;;;9329:21:1;9386:2;9366:18;;;9359:30;9425:25;9405:18;;;9398:53;9468:18;;42872:71:0;9145:347:1;42872:71:0;42984:9;;42978:15;;:3;:15;:::i;:::-;42963:12;42972:3;42963:6;:12;:::i;:::-;:30;42954:78;;;;-1:-1:-1;;;42954:78:0;;8159:2:1;42954:78:0;;;8141:21:1;8198:2;8178:18;;;8171:30;8237;8217:18;;;8210:58;8285:18;;42954:78:0;7957:352:1;42954:78:0;43074:3;43065:6;;:12;;;;:::i;:::-;43052:9;:25;;43043:77;;;;-1:-1:-1;;;43043:77:0;;15244:2:1;43043:77:0;;;15226:21:1;15283:2;15263:18;;;15256:30;15322:27;15302:18;;;15295:55;15367:18;;43043:77:0;15042:349:1;43043:77:0;43137:9;43133:90;43152:3;43148:1;:7;43133:90;;;43176:35;43187:10;43199;43208:1;43199:6;:10;:::i;:::-;43176:9;:35::i;:::-;43157:3;;;;:::i;:::-;;;;43133:90;;23864:295;-1:-1:-1;;;;;23967:24:0;;9231:10;23967:24;;23959:62;;;;-1:-1:-1;;;23959:62:0;;10868:2:1;23959:62:0;;;10850:21:1;10907:2;10887:18;;;10880:30;10946:27;10926:18;;;10919:55;10991:18;;23959:62:0;10666:349:1;23959:62:0;9231:10;24034:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24034:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24034:53:0;;;;;;;;;;24103:48;;6983:41:1;;;24034:42:0;;9231:10;24103:48;;6956:18:1;24103:48:0;;;;;;;23864:295;;:::o;25059:285::-;25191:41;9231:10;25224:7;25191:18;:41::i;:::-;25183:103;;;;-1:-1:-1;;;25183:103:0;;;;;;;:::i;:::-;25297:39;25311:4;25317:2;25321:7;25330:5;25297:13;:39::i;:::-;25059:285;;;;:::o;22410:405::-;26876:4;26900:16;;;:7;:16;;;;;;22483:13;;-1:-1:-1;;;;;26900:16:0;22509:76;;;;-1:-1:-1;;;22509:76:0;;14426:2:1;22509:76:0;;;14408:21:1;14465:2;14445:18;;;14438:30;14504:34;14484:18;;;14477:62;-1:-1:-1;;;14555:18:1;;;14548:45;14610:19;;22509:76:0;14224:411:1;22509:76:0;22598:21;22622:10;:8;:10::i;:::-;22643:28;;;;;;;;;;;;-1:-1:-1;;;22643:28:0;;;;22689:21;;22598:34;;-1:-1:-1;22643:28:0;22689:118;;;;;;;;;;;;;;;;;22754:7;22763:18;:7;:16;:18::i;:::-;22783:4;22737:51;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22689:118;22682:125;22410:405;-1:-1:-1;;;;22410:405:0:o;44189:325::-;34091:6;;-1:-1:-1;;;;;34091:6:0;9231:10;34238:23;34230:68;;;;-1:-1:-1;;;34230:68:0;;;;;;;:::i;:::-;44289:9:::1;;44278:7;:20;;44269:64;;;::::0;-1:-1:-1;;;44269:64:0;;7801:2:1;44269:64:0::1;::::0;::::1;7783:21:1::0;7840:2;7820:18;;;7813:30;7879:31;7859:18;;;7852:59;7928:18;;44269:64:0::1;7599:353:1::0;44269:64:0::1;44346:14;44363:13;36805:10:::0;:17;;36717:113;44363:13:::1;44346:30;;44391:9;44387:87;44406:7;44402:1;:11;44387:87;;;44434:28;44445:3:::0;44450:10:::1;44459:1:::0;44450:6;:10:::1;:::i;44434:28::-;44415:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44387:87;;;;44499:7;44486:9;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;44189:325:0:o;34972:244::-;34091:6;;-1:-1:-1;;;;;34091:6:0;9231:10;34238:23;34230:68;;;;-1:-1:-1;;;34230:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35061:22:0;::::1;35053:73;;;::::0;-1:-1:-1;;;35053:73:0;;9699:2:1;35053:73:0::1;::::0;::::1;9681:21:1::0;9738:2;9718:18;;;9711:30;9777:34;9757:18;;;9750:62;-1:-1:-1;;;9828:18:1;;;9821:36;9874:19;;35053:73:0::1;9497:402:1::0;35053:73:0::1;35163:6;::::0;35142:38:::1;::::0;-1:-1:-1;;;;;35142:38:0;;::::1;::::0;35163:6:::1;::::0;35142:38:::1;::::0;35163:6:::1;::::0;35142:38:::1;35191:6;:17:::0;;-1:-1:-1;;;;;;35191:17:0::1;-1:-1:-1::0;;;;;35191:17:0;;;::::1;::::0;;;::::1;::::0;;34972:244::o;21134:292::-;21236:4;-1:-1:-1;;;;;;21260:40:0;;-1:-1:-1;;;21260:40:0;;:105;;-1:-1:-1;;;;;;;21317:48:0;;-1:-1:-1;;;21317:48:0;21260:105;:158;;;-1:-1:-1;;;;;;;;;;1788:40:0;;;21382:36;1679:157;30688:174;30763:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30763:29:0;-1:-1:-1;;;;;30763:29:0;;;;;;;;:24;;30817:23;30763:24;30817:14;:23::i;:::-;-1:-1:-1;;;;;30808:46:0;;;;;;;;;;;30688:174;;:::o;27105:348::-;27198:4;26900:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26900:16:0;27215:73;;;;-1:-1:-1;;;27215:73:0;;11222:2:1;27215:73:0;;;11204:21:1;11261:2;11241:18;;;11234:30;11300:34;11280:18;;;11273:62;-1:-1:-1;;;11351:18:1;;;11344:42;11403:19;;27215:73:0;11020:408:1;27215:73:0;27299:13;27315:23;27330:7;27315:14;:23::i;:::-;27299:39;;27368:5;-1:-1:-1;;;;;27357:16:0;:7;-1:-1:-1;;;;;27357:16:0;;:51;;;;27401:7;-1:-1:-1;;;;;27377:31:0;:20;27389:7;27377:11;:20::i;:::-;-1:-1:-1;;;;;27377:31:0;;27357:51;:87;;;-1:-1:-1;;;;;;24351:25:0;;;24327:4;24351:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27412:32;24230:164;30026:544;30151:4;-1:-1:-1;;;;;30124:31:0;:23;30139:7;30124:14;:23::i;:::-;-1:-1:-1;;;;;30124:31:0;;30116:85;;;;-1:-1:-1;;;30116:85:0;;14016:2:1;30116:85:0;;;13998:21:1;14055:2;14035:18;;;14028:30;14094:34;14074:18;;;14067:62;-1:-1:-1;;;14145:18:1;;;14138:39;14194:19;;30116:85:0;13814:405:1;30116:85:0;-1:-1:-1;;;;;30220:16:0;;30212:65;;;;-1:-1:-1;;;30212:65:0;;10463:2:1;30212:65:0;;;10445:21:1;10502:2;10482:18;;;10475:30;10541:34;10521:18;;;10514:62;-1:-1:-1;;;10592:18:1;;;10585:34;10636:19;;30212:65:0;10261:400:1;30212:65:0;30290:39;30311:4;30317:2;30321:7;30290:20;:39::i;:::-;30394:29;30411:1;30415:7;30394:8;:29::i;:::-;-1:-1:-1;;;;;30436:15:0;;;;;;:9;:15;;;;;:20;;30455:1;;30436:15;:20;;30455:1;;30436:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30467:13:0;;;;;;:9;:13;;;;;:18;;30484:1;;30467:13;:18;;30484:1;;30467:18;:::i;:::-;;;;-1:-1:-1;;30496:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30496:21:0;-1:-1:-1;;;;;30496:21:0;;;;;;;;;30535:27;;30496:16;;30535:27;;;;;;;30026:544;;;:::o;27795:110::-;27871:26;27881:2;27885:7;27871:26;;;;;;;;;;;;:9;:26::i;26226:272::-;26340:28;26350:4;26356:2;26360:7;26340:9;:28::i;:::-;26387:48;26410:4;26416:2;26420:7;26429:5;26387:22;:48::i;:::-;26379:111;;;;-1:-1:-1;;;26379:111:0;;;;;;;:::i;43868:114::-;43928:13;43961;43954:20;;;;;:::i;6828:723::-;6884:13;7105:10;7101:53;;-1:-1:-1;;7132:10:0;;;;;;;;;;;;-1:-1:-1;;;7132:10:0;;;;;6828:723::o;7101:53::-;7179:5;7164:12;7220:78;7227:9;;7220:78;;7253:8;;;;:::i;:::-;;-1:-1:-1;7276:10:0;;-1:-1:-1;7284:2:0;7276:10;;:::i;:::-;;;7220:78;;;7308:19;7340:6;7330:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7330:17:0;;7308:39;;7358:154;7365:10;;7358:154;;7392:11;7402:1;7392:11;;:::i;:::-;;-1:-1:-1;7461:10:0;7469:2;7461:5;:10;:::i;:::-;7448:24;;:2;:24;:::i;:::-;7435:39;;7418:6;7425;7418:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7418:56:0;;;;;;;;-1:-1:-1;7489:11:0;7498:2;7489:11;;:::i;:::-;;;7358:154;;37753:555;-1:-1:-1;;;;;37925:18:0;;37921:187;;37960:40;37992:7;39135:10;:17;;39108:24;;;;:15;:24;;;;;:44;;;39163:24;;;;;;;;;;;;39031:164;37960:40;37921:187;;;38030:2;-1:-1:-1;;;;;38022:10:0;:4;-1:-1:-1;;;;;38022:10:0;;38018:90;;38049:47;38082:4;38088:7;38049:32;:47::i;:::-;-1:-1:-1;;;;;38122:16:0;;38118:183;;38155:45;38192:7;38155:36;:45::i;38118:183::-;38228:4;-1:-1:-1;;;;;38222:10:0;:2;-1:-1:-1;;;;;38222:10:0;;38218:83;;38249:40;38277:2;38281:7;38249:27;:40::i;28132:250::-;28228:18;28234:2;28238:7;28228:5;:18::i;:::-;28265:54;28296:1;28300:2;28304:7;28313:5;28265:22;:54::i;:::-;28257:117;;;;-1:-1:-1;;;28257:117:0;;;;;;;:::i;31427:843::-;31548:4;-1:-1:-1;;;;;31574:13:0;;10574:20;10613:8;31570:693;;31610:72;;-1:-1:-1;;;31610:72:0;;-1:-1:-1;;;;;31610:36:0;;;;;:72;;9231:10;;31661:4;;31667:7;;31676:5;;31610:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31610:72:0;;;;;;;;-1:-1:-1;;31610:72:0;;;;;;;;;;;;:::i;:::-;;;31606:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31856:13:0;;31852:341;;31899:60;;-1:-1:-1;;;31899:60:0;;;;;;;:::i;31852:341::-;32143:6;32137:13;32128:6;32124:2;32120:15;32113:38;31606:602;-1:-1:-1;;;;;;31733:55:0;-1:-1:-1;;;31733:55:0;;-1:-1:-1;31726:62:0;;31570:693;-1:-1:-1;32247:4:0;31427:843;;;;;;:::o;39822:988::-;40088:22;40138:1;40113:22;40130:4;40113:16;:22::i;:::-;:26;;;;:::i;:::-;40150:18;40171:26;;;:17;:26;;;;;;40088:51;;-1:-1:-1;40304:28:0;;;40300:328;;-1:-1:-1;;;;;40371:18:0;;40349:19;40371:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40422:30;;;;;;:44;;;40539:30;;:17;:30;;;;;:43;;;40300:328;-1:-1:-1;40724:26:0;;;;:17;:26;;;;;;;;40717:33;;;-1:-1:-1;;;;;40768:18:0;;;;;:12;:18;;;;;:34;;;;;;;40761:41;39822:988::o;41105:1079::-;41383:10;:17;41358:22;;41383:21;;41403:1;;41383:21;:::i;:::-;41415:18;41436:24;;;:15;:24;;;;;;41809:10;:26;;41358:46;;-1:-1:-1;41436:24:0;;41358:46;;41809:26;;;;;;:::i;:::-;;;;;;;;;41787:48;;41873:11;41848:10;41859;41848:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41953:28;;;:15;:28;;;;;;;:41;;;42125:24;;;;;42118:31;42160:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41176:1008;;;41105:1079;:::o;38609:221::-;38694:14;38711:20;38728:2;38711:16;:20::i;:::-;-1:-1:-1;;;;;38742:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38787:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38609:221:0:o;28718:382::-;-1:-1:-1;;;;;28798:16:0;;28790:61;;;;-1:-1:-1;;;28790:61:0;;12881:2:1;28790:61:0;;;12863:21:1;;;12900:18;;;12893:30;12959:34;12939:18;;;12932:62;13011:18;;28790:61:0;12679:356:1;28790:61:0;26876:4;26900:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26900:16:0;:30;28862:58;;;;-1:-1:-1;;;28862:58:0;;10106:2:1;28862:58:0;;;10088:21:1;10145:2;10125:18;;;10118:30;10184;10164:18;;;10157:58;10232:18;;28862:58:0;9904:352:1;28862:58:0;28933:45;28962:1;28966:2;28970:7;28933:20;:45::i;:::-;-1:-1:-1;;;;;28991:13:0;;;;;;:9;:13;;;;;:18;;29008:1;;28991:13;:18;;29008:1;;28991:18;:::i;:::-;;;;-1:-1:-1;;29020:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29020:21:0;-1:-1:-1;;;;;29020:21:0;;;;;;;;29059:33;;29020:16;;;29059:33;;29020:16;;29059:33;28718:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;:::-;1134:39;993:186;-1:-1:-1;;;993:186:1:o;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:269::-;4357:6;4410:2;4398:9;4389:7;4385:23;4381:32;4378:52;;;4426:1;4423;4416:12;4378:52;4465:9;4452:23;4515:4;4508:5;4504:16;4497:5;4494:27;4484:55;;4535:1;4532;4525:12;4574:257;4615:3;4653:5;4647:12;4680:6;4675:3;4668:19;4696:63;4752:6;4745:4;4740:3;4736:14;4729:4;4722:5;4718:16;4696:63;:::i;:::-;4813:2;4792:15;-1:-1:-1;;4788:29:1;4779:39;;;;4820:4;4775:50;;4574:257;-1:-1:-1;;4574:257:1:o;4836:664::-;5063:3;5101:6;5095:13;5117:53;5163:6;5158:3;5151:4;5143:6;5139:17;5117:53;:::i;:::-;5233:13;;5192:16;;;;5255:57;5233:13;5192:16;5289:4;5277:17;;5255:57;:::i;:::-;5379:13;;5334:20;;;5401:57;5379:13;5334:20;5435:4;5423:17;;5401:57;:::i;:::-;5474:20;;4836:664;-1:-1:-1;;;;;4836:664:1:o;5713:488::-;-1:-1:-1;;;;;5982:15:1;;;5964:34;;6034:15;;6029:2;6014:18;;6007:43;6081:2;6066:18;;6059:34;;;6129:3;6124:2;6109:18;;6102:31;;;5907:4;;6150:45;;6175:19;;6167:6;6150:45;:::i;:::-;6142:53;5713:488;-1:-1:-1;;;;;;5713:488:1:o;6206:632::-;6377:2;6429:21;;;6499:13;;6402:18;;;6521:22;;;6348:4;;6377:2;6600:15;;;;6574:2;6559:18;;;6348:4;6643:169;6657:6;6654:1;6651:13;6643:169;;;6718:13;;6706:26;;6787:15;;;;6752:12;;;;6679:1;6672:9;6643:169;;;-1:-1:-1;6829:3:1;;6206:632;-1:-1:-1;;;;;;6206:632:1:o;7035:219::-;7184:2;7173:9;7166:21;7147:4;7204:44;7244:2;7233:9;7229:18;7221:6;7204:44;:::i;8726:414::-;8928:2;8910:21;;;8967:2;8947:18;;;8940:30;9006:34;9001:2;8986:18;;8979:62;-1:-1:-1;;;9072:2:1;9057:18;;9050:48;9130:3;9115:19;;8726:414::o;13453:356::-;13655:2;13637:21;;;13674:18;;;13667:30;13733:34;13728:2;13713:18;;13706:62;13800:2;13785:18;;13453:356::o;15396:413::-;15598:2;15580:21;;;15637:2;15617:18;;;15610:30;15676:34;15671:2;15656:18;;15649:62;-1:-1:-1;;;15742:2:1;15727:18;;15720:47;15799:3;15784:19;;15396:413::o;16598:128::-;16638:3;16669:1;16665:6;16662:1;16659:13;16656:39;;;16675:18;;:::i;:::-;-1:-1:-1;16711:9:1;;16598:128::o;16731:204::-;16769:3;16805:4;16802:1;16798:12;16837:4;16834:1;16830:12;16872:3;16866:4;16862:14;16857:3;16854:23;16851:49;;;16880:18;;:::i;:::-;16916:13;;16731:204;-1:-1:-1;;;16731:204:1:o;16940:120::-;16980:1;17006;16996:35;;17011:18;;:::i;:::-;-1:-1:-1;17045:9:1;;16940:120::o;17065:168::-;17105:7;17171:1;17167;17163:6;17159:14;17156:1;17153:21;17148:1;17141:9;17134:17;17130:45;17127:71;;;17178:18;;:::i;:::-;-1:-1:-1;17218:9:1;;17065:168::o;17238:125::-;17278:4;17306:1;17303;17300:8;17297:34;;;17311:18;;:::i;:::-;-1:-1:-1;17348:9:1;;17238:125::o;17368:258::-;17440:1;17450:113;17464:6;17461:1;17458:13;17450:113;;;17540:11;;;17534:18;17521:11;;;17514:39;17486:2;17479:10;17450:113;;;17581:6;17578:1;17575:13;17572:48;;;-1:-1:-1;;17616:1:1;17598:16;;17591:27;17368:258::o;17631:380::-;17710:1;17706:12;;;;17753;;;17774:61;;17828:4;17820:6;17816:17;17806:27;;17774:61;17881:2;17873:6;17870:14;17850:18;17847:38;17844:161;;;17927:10;17922:3;17918:20;17915:1;17908:31;17962:4;17959:1;17952:15;17990:4;17987:1;17980:15;17844:161;;17631:380;;;:::o;18016:135::-;18055:3;-1:-1:-1;;18076:17:1;;18073:43;;;18096:18;;:::i;:::-;-1:-1:-1;18143:1:1;18132:13;;18016:135::o;18156:112::-;18188:1;18214;18204:35;;18219:18;;:::i;:::-;-1:-1:-1;18253:9:1;;18156:112::o;18273:127::-;18334:10;18329:3;18325:20;18322:1;18315:31;18365:4;18362:1;18355:15;18389:4;18386:1;18379:15;18405:127;18466:10;18461:3;18457:20;18454:1;18447:31;18497:4;18494:1;18487:15;18521:4;18518:1;18511:15;18537:127;18598:10;18593:3;18589:20;18586:1;18579:31;18629:4;18626:1;18619:15;18653:4;18650:1;18643:15;18669:127;18730:10;18725:3;18721:20;18718:1;18711:31;18761:4;18758:1;18751:15;18785:4;18782:1;18775:15;18801:127;18862:10;18857:3;18853:20;18850:1;18843:31;18893:4;18890:1;18883:15;18917:4;18914:1;18907:15;18933:131;-1:-1:-1;;;;;;19007:32:1;;18997:43;;18987:71;;19054:1;19051;19044:12

Swarm Source

ipfs://622e71353c4bada1afe7bc40643d693b6545d29a9498ceb91e8a659a22355440
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.