ETH Price: $3,164.78 (+1.43%)
Gas: 1 Gwei

Token

ToastPunk Genesis (TPG)
 

Overview

Max Total Supply

10,000 TPG

Holders

2,018

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
76 TPG
0x30909b5f5810a1474cfef1fdd4300bb4a7986a09
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

This is a true an original ToastPunk Genesis NFT part of a collection based on a new Scrambled Trait Art genre with 10 best friend characters as the base art with rarirty rank.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ToastPunkGenesis

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-04
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

// File: contracts/ToastPunkGenesis.sol



pragma solidity >=0.7.0 <0.9.0;


contract ToastPunkGenesis is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix ;
  string public baseExtension = ".json";
  string public notRevealedUri;
  
  uint256 public cost = 0.05 ether;
  uint256 public maxSupply = 10000;
  
  uint256 public nftPerAddressLimit = 20;

  bool public paused = true;
  bool public revealed = false;

  mapping(address => uint256) public addressMintedBalance;

  constructor() ERC721("ToastPunk Genesis", "TPG") {
    setnotRevealedUri("ipfs://QmcqWNhBgnMTBakEz9viDRbRWrXAXGFWpoqc8CjTR8CCSE/hidden.json");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }


  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _mintLoop(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address[] calldata _receiver) public mintCompliance(_mintAmount) onlyOwner {
      for (uint i = 0; i < _receiver.length; i++) {
    _mintLoop2(_receiver[i], _mintAmount);
      }
  }


  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return notRevealedUri;
    }

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


  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  

  function setnotRevealedUri(string memory _notRevealedUri) public onlyOwner {
    notRevealedUri = _notRevealedUri;
  }



  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setbaseExtension(string memory _baseExtension) public onlyOwner {
    baseExtension = _baseExtension;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }


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

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {

    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
    require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
    
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      addressMintedBalance[msg.sender]++;
      _safeMint(_receiver, supply.current());
    }
  }

function _mintLoop2(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address[]","name":"_receiver","type":"address[]"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseExtension","type":"string"}],"name":"setbaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedUri","type":"string"}],"name":"setnotRevealedUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a0908152620000289160099190620001df565b5066b1a2bc2ec50000600b55612710600c556014600d55600e805461ff001960ff199091166001171690553480156200006057600080fd5b506040805180820182526011815270546f61737450756e6b2047656e6573697360781b60208083019182528351808501909452600384526254504760e81b908401528151919291620000b591600091620001df565b508051620000cb906001906020840190620001df565b505050620000e8620000e26200011260201b60201c565b62000116565b6200010c604051806080016040528060418152602001620028256041913962000168565b620002f7565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200017262000112565b6001600160a01b031662000185620001d0565b6001600160a01b031614620001b75760405162461bcd60e51b8152600401620001ae9062000285565b60405180910390fd5b8051620001cc90600a906020840190620001df565b5050565b6006546001600160a01b031690565b828054620001ed90620002ba565b90600052602060002090601f0160209004810192826200021157600085556200025c565b82601f106200022c57805160ff19168380011785556200025c565b828001600101855582156200025c579182015b828111156200025c5782518255916020019190600101906200023f565b506200026a9291506200026e565b5090565b5b808211156200026a57600081556001016200026f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600281046001821680620002cf57607f821691505b60208210811415620002f157634e487b7160e01b600052602260045260246000fd5b50919050565b61251e80620003076000396000f3fe60806040526004361061020f5760003560e01c80636352211e11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146105a4578063d5abeb01146105c4578063e0a80853146105d9578063e985e9c5146105f9578063f2fde38b146106195761020f565b8063a22cb4651461053a578063b88d4fde1461055a578063ba7d2c761461057a578063c66828621461058f5761020f565b80637ec4a659116100e75780637ec4a659146104bd5780638da5cb5b146104dd57806395d89b41146104f2578063962e0f5a14610507578063a0712d68146105275761020f565b80636352211e146104485780636b9d3e411461046857806370a0823114610488578063715018a6146104a85761020f565b806318cae2691161019b578063438b63001161016a578063438b6300146103bc57806344a0d68a146103e957806351830227146104095780635c975abb1461041e57806362b99ad4146104335761020f565b806318cae2691461034757806323b872dd146103675780633ccfd60b1461038757806342842e0e1461039c5761020f565b8063081c8c44116101e2578063081c8c44146102bb578063095ea7b3146102d057806313faede6146102f057806316c38b3c1461031257806318160ddd146103325761020f565b80630188541d1461021457806301ffc9a71461023657806306fdde031461026c578063081812fc1461028e575b600080fd5b34801561022057600080fd5b5061023461022f366004611bd9565b610639565b005b34801561024257600080fd5b50610256610251366004611ba1565b610698565b6040516102639190611e36565b60405180910390f35b34801561027857600080fd5b506102816106e0565b6040516102639190611e41565b34801561029a57600080fd5b506102ae6102a9366004611c1f565b610772565b6040516102639190611da1565b3480156102c757600080fd5b506102816107b5565b3480156102dc57600080fd5b506102346102eb366004611b5e565b610843565b3480156102fc57600080fd5b506103056108db565b6040516102639190612383565b34801561031e57600080fd5b5061023461032d366004611b87565b6108e1565b34801561033e57600080fd5b50610305610933565b34801561035357600080fd5b50610305610362366004611a35565b610944565b34801561037357600080fd5b50610234610382366004611a81565b610956565b34801561039357600080fd5b5061023461098e565b3480156103a857600080fd5b506102346103b7366004611a81565b610a40565b3480156103c857600080fd5b506103dc6103d7366004611a35565b610a5b565b6040516102639190611df2565b3480156103f557600080fd5b50610234610404366004611c1f565b610b58565b34801561041557600080fd5b50610256610b9c565b34801561042a57600080fd5b50610256610baa565b34801561043f57600080fd5b50610281610bb3565b34801561045457600080fd5b506102ae610463366004611c1f565b610bc0565b34801561047457600080fd5b50610234610483366004611bd9565b610bf5565b34801561049457600080fd5b506103056104a3366004611a35565b610c47565b3480156104b457600080fd5b50610234610c8b565b3480156104c957600080fd5b506102346104d8366004611bd9565b610cd6565b3480156104e957600080fd5b506102ae610d28565b3480156104fe57600080fd5b50610281610d37565b34801561051357600080fd5b50610234610522366004611c37565b610d46565b610234610535366004611c1f565b610e1e565b34801561054657600080fd5b50610234610555366004611b35565b610eaf565b34801561056657600080fd5b50610234610575366004611abc565b610ec1565b34801561058657600080fd5b50610305610f00565b34801561059b57600080fd5b50610281610f06565b3480156105b057600080fd5b506102816105bf366004611c1f565b610f13565b3480156105d057600080fd5b5061030561103a565b3480156105e557600080fd5b506102346105f4366004611b87565b611040565b34801561060557600080fd5b50610256610614366004611a4f565b611099565b34801561062557600080fd5b50610234610634366004611a35565b6110c7565b610641611135565b6001600160a01b0316610652610d28565b6001600160a01b0316146106815760405162461bcd60e51b815260040161067890612192565b60405180910390fd5b805161069490600a906020840190611905565b5050565b60006001600160e01b031982166380ac58cd60e01b14806106c957506001600160e01b03198216635b5e139f60e01b145b806106d857506106d882611139565b90505b919050565b6060600080546106ef90612426565b80601f016020809104026020016040519081016040528092919081815260200182805461071b90612426565b80156107685780601f1061073d57610100808354040283529160200191610768565b820191906000526020600020905b81548152906001019060200180831161074b57829003601f168201915b5050505050905090565b600061077d82611152565b6107995760405162461bcd60e51b815260040161067890612146565b506000908152600460205260409020546001600160a01b031690565b600a80546107c290612426565b80601f01602080910402602001604051908101604052809291908181526020018280546107ee90612426565b801561083b5780601f106108105761010080835404028352916020019161083b565b820191906000526020600020905b81548152906001019060200180831161081e57829003601f168201915b505050505081565b600061084e82610bc0565b9050806001600160a01b0316836001600160a01b031614156108825760405162461bcd60e51b815260040161067890612296565b806001600160a01b0316610894611135565b6001600160a01b031614806108b057506108b081610614611135565b6108cc5760405162461bcd60e51b815260040161067890612021565b6108d6838361116f565b505050565b600b5481565b6108e9611135565b6001600160a01b03166108fa610d28565b6001600160a01b0316146109205760405162461bcd60e51b815260040161067890612192565b600e805460ff1916911515919091179055565b600061093f60076111dd565b905090565b600f6020526000908152604090205481565b610967610961611135565b826111e1565b6109835760405162461bcd60e51b815260040161067890612305565b6108d6838383611266565b610996611135565b6001600160a01b03166109a7610d28565b6001600160a01b0316146109cd5760405162461bcd60e51b815260040161067890612192565b60006109d7610d28565b6001600160a01b0316476040516109ed90611d9e565b60006040518083038185875af1925050503d8060008114610a2a576040519150601f19603f3d011682016040523d82523d6000602084013e610a2f565b606091505b5050905080610a3d57600080fd5b50565b6108d683838360405180602001604052806000815250610ec1565b60606000610a6883610c47565b905060008167ffffffffffffffff811115610a9357634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610abc578160200160208202803683370190505b509050600160005b8381108015610ad55750600c548211155b15610b4e576000610ae583610bc0565b9050866001600160a01b0316816001600160a01b03161415610b3b5782848381518110610b2257634e487b7160e01b600052603260045260246000fd5b602090810291909101015281610b3781612461565b9250505b82610b4581612461565b93505050610ac4565b5090949350505050565b610b60611135565b6001600160a01b0316610b71610d28565b6001600160a01b031614610b975760405162461bcd60e51b815260040161067890612192565b600b55565b600e54610100900460ff1681565b600e5460ff1681565b600880546107c290612426565b6000818152600260205260408120546001600160a01b0316806106d85760405162461bcd60e51b8152600401610678906120c8565b610bfd611135565b6001600160a01b0316610c0e610d28565b6001600160a01b031614610c345760405162461bcd60e51b815260040161067890612192565b8051610694906009906020840190611905565b60006001600160a01b038216610c6f5760405162461bcd60e51b81526004016106789061207e565b506001600160a01b031660009081526003602052604090205490565b610c93611135565b6001600160a01b0316610ca4610d28565b6001600160a01b031614610cca5760405162461bcd60e51b815260040161067890612192565b610cd46000611393565b565b610cde611135565b6001600160a01b0316610cef610d28565b6001600160a01b031614610d155760405162461bcd60e51b815260040161067890612192565b8051610694906008906020840190611905565b6006546001600160a01b031690565b6060600180546106ef90612426565b82600c5481610d5560076111dd565b610d5f9190612398565b1115610d7d5760405162461bcd60e51b8152600401610678906122d7565b610d85611135565b6001600160a01b0316610d96610d28565b6001600160a01b031614610dbc5760405162461bcd60e51b815260040161067890612192565b60005b82811015610e1757610e05848483818110610dea57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610dff9190611a35565b866113e5565b80610e0f81612461565b915050610dbf565b5050505050565b80600c5481610e2d60076111dd565b610e379190612398565b1115610e555760405162461bcd60e51b8152600401610678906122d7565b600e5460ff1615610e785760405162461bcd60e51b8152600401610678906121c7565b81600b54610e8691906123c4565b341015610ea55760405162461bcd60e51b815260040161067890612356565b610694338361141f565b610694610eba611135565b83836114af565b610ed2610ecc611135565b836111e1565b610eee5760405162461bcd60e51b815260040161067890612305565b610efa84848484611552565b50505050565b600d5481565b600980546107c290612426565b6060610f1e82611152565b610f3a5760405162461bcd60e51b815260040161067890612247565b600e54610100900460ff16610fdb57600a8054610f5690612426565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8290612426565b8015610fcf5780601f10610fa457610100808354040283529160200191610fcf565b820191906000526020600020905b815481529060010190602001808311610fb257829003601f168201915b505050505090506106db565b6000610fe5611585565b905060008151116110055760405180602001604052806000815250611033565b8061100f84611594565b600960405160200161102393929190611cdc565b6040516020818303038152906040525b9392505050565b600c5481565b611048611135565b6001600160a01b0316611059610d28565b6001600160a01b03161461107f5760405162461bcd60e51b815260040161067890612192565b600e80549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6110cf611135565b6001600160a01b03166110e0610d28565b6001600160a01b0316146111065760405162461bcd60e51b815260040161067890612192565b6001600160a01b03811661112c5760405162461bcd60e51b815260040161067890611ea6565b610a3d81611393565b3390565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111a482610bc0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b60006111ec82611152565b6112085760405162461bcd60e51b815260040161067890611fd5565b600061121383610bc0565b9050806001600160a01b0316846001600160a01b0316148061124e5750836001600160a01b031661124384610772565b6001600160a01b0316145b8061125e575061125e8185611099565b949350505050565b826001600160a01b031661127982610bc0565b6001600160a01b03161461129f5760405162461bcd60e51b8152600401610678906121fe565b6001600160a01b0382166112c55760405162461bcd60e51b815260040161067890611f5a565b6112d08383836108d6565b6112db60008261116f565b6001600160a01b03831660009081526003602052604081208054600192906113049084906123e3565b90915550506001600160a01b0382166000908152600360205260408120805460019290611332908490612398565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b818110156108d6576113fa60076116af565b61140d8361140860076111dd565b6116b8565b8061141781612461565b9150506113e8565b336000908152600f6020526040902054600d5461143c8383612398565b111561145a5760405162461bcd60e51b815260040161067890611f23565b60005b82811015610efa5761146f60076116af565b336000908152600f6020526040812080549161148a83612461565b919050555061149d8461140860076111dd565b806114a781612461565b91505061145d565b816001600160a01b0316836001600160a01b031614156114e15760405162461bcd60e51b815260040161067890611f9e565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611545908590611e36565b60405180910390a3505050565b61155d848484611266565b611569848484846116d2565b610efa5760405162461bcd60e51b815260040161067890611e54565b6060600880546106ef90612426565b6060816115b957506040805180820190915260018152600360fc1b60208201526106db565b8160005b81156115e357806115cd81612461565b91506115dc9050600a836123b0565b91506115bd565b60008167ffffffffffffffff81111561160c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611636576020820181803683370190505b5090505b841561125e5761164b6001836123e3565b9150611658600a8661247c565b611663906030612398565b60f81b81838151811061168657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506116a8600a866123b0565b945061163a565b80546001019055565b6106948282604051806020016040528060008152506117ed565b60006116e6846001600160a01b0316611820565b156117e257836001600160a01b031663150b7a02611702611135565b8786866040518563ffffffff1660e01b81526004016117249493929190611db5565b602060405180830381600087803b15801561173e57600080fd5b505af192505050801561176e575060408051601f3d908101601f1916820190925261176b91810190611bbd565b60015b6117c8573d80801561179c576040519150601f19603f3d011682016040523d82523d6000602084013e6117a1565b606091505b5080516117c05760405162461bcd60e51b815260040161067890611e54565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061125e565b506001949350505050565b6117f78383611826565b61180460008484846116d2565b6108d65760405162461bcd60e51b815260040161067890611e54565b3b151590565b6001600160a01b03821661184c5760405162461bcd60e51b815260040161067890612111565b61185581611152565b156118725760405162461bcd60e51b815260040161067890611eec565b61187e600083836108d6565b6001600160a01b03821660009081526003602052604081208054600192906118a7908490612398565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461191190612426565b90600052602060002090601f0160209004810192826119335760008555611979565b82601f1061194c57805160ff1916838001178555611979565b82800160010185558215611979579182015b8281111561197957825182559160200191906001019061195e565b50611985929150611989565b5090565b5b80821115611985576000815560010161198a565b600067ffffffffffffffff808411156119b9576119b96124bc565b604051601f8501601f1916810160200182811182821017156119dd576119dd6124bc565b6040528481529150818385018610156119f557600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106db57600080fd5b803580151581146106db57600080fd5b600060208284031215611a46578081fd5b61103382611a0e565b60008060408385031215611a61578081fd5b611a6a83611a0e565b9150611a7860208401611a0e565b90509250929050565b600080600060608486031215611a95578081fd5b611a9e84611a0e565b9250611aac60208501611a0e565b9150604084013590509250925092565b60008060008060808587031215611ad1578081fd5b611ada85611a0e565b9350611ae860208601611a0e565b925060408501359150606085013567ffffffffffffffff811115611b0a578182fd5b8501601f81018713611b1a578182fd5b611b298782356020840161199e565b91505092959194509250565b60008060408385031215611b47578182fd5b611b5083611a0e565b9150611a7860208401611a25565b60008060408385031215611b70578182fd5b611b7983611a0e565b946020939093013593505050565b600060208284031215611b98578081fd5b61103382611a25565b600060208284031215611bb2578081fd5b8135611033816124d2565b600060208284031215611bce578081fd5b8151611033816124d2565b600060208284031215611bea578081fd5b813567ffffffffffffffff811115611c00578182fd5b8201601f81018413611c10578182fd5b61125e8482356020840161199e565b600060208284031215611c30578081fd5b5035919050565b600080600060408486031215611c4b578283fd5b83359250602084013567ffffffffffffffff80821115611c69578384fd5b818601915086601f830112611c7c578384fd5b813581811115611c8a578485fd5b8760208083028501011115611c9d578485fd5b6020830194508093505050509250925092565b60008151808452611cc88160208601602086016123fa565b601f01601f19169290920160200192915050565b600084516020611cef8285838a016123fa565b855191840191611d028184848a016123fa565b8554920191839060028104600180831680611d1e57607f831692505b858310811415611d3c57634e487b7160e01b88526022600452602488fd5b808015611d505760018114611d6157611d8d565b60ff19851688528388019550611d8d565b611d6a8b61238c565b895b85811015611d855781548a820152908401908801611d6c565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611de890830184611cb0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611e2a57835183529284019291840191600101611e0e565b50909695505050505050565b901515815260200190565b6000602082526110336020830184611cb0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601c908201527f6d6178204e465420706572206164647265737320657863656564656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b90815260200190565b60009081526020902090565b600082198211156123ab576123ab612490565b500190565b6000826123bf576123bf6124a6565b500490565b60008160001904831182151516156123de576123de612490565b500290565b6000828210156123f5576123f5612490565b500390565b60005b838110156124155781810151838201526020016123fd565b83811115610efa5750506000910152565b60028104600182168061243a57607f821691505b6020821081141561245b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561247557612475612490565b5060010190565b60008261248b5761248b6124a6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a3d57600080fdfea2646970667358221220fd2f13c2005ff5ff9c2d4a1a76954f2397be005793016cd5a9f51bb06a71b95464736f6c63430008000033697066733a2f2f516d6371574e6842676e4d5442616b457a397669445262525772584158474657706f716338436a545238434353452f68696464656e2e6a736f6e

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636352211e11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146105a4578063d5abeb01146105c4578063e0a80853146105d9578063e985e9c5146105f9578063f2fde38b146106195761020f565b8063a22cb4651461053a578063b88d4fde1461055a578063ba7d2c761461057a578063c66828621461058f5761020f565b80637ec4a659116100e75780637ec4a659146104bd5780638da5cb5b146104dd57806395d89b41146104f2578063962e0f5a14610507578063a0712d68146105275761020f565b80636352211e146104485780636b9d3e411461046857806370a0823114610488578063715018a6146104a85761020f565b806318cae2691161019b578063438b63001161016a578063438b6300146103bc57806344a0d68a146103e957806351830227146104095780635c975abb1461041e57806362b99ad4146104335761020f565b806318cae2691461034757806323b872dd146103675780633ccfd60b1461038757806342842e0e1461039c5761020f565b8063081c8c44116101e2578063081c8c44146102bb578063095ea7b3146102d057806313faede6146102f057806316c38b3c1461031257806318160ddd146103325761020f565b80630188541d1461021457806301ffc9a71461023657806306fdde031461026c578063081812fc1461028e575b600080fd5b34801561022057600080fd5b5061023461022f366004611bd9565b610639565b005b34801561024257600080fd5b50610256610251366004611ba1565b610698565b6040516102639190611e36565b60405180910390f35b34801561027857600080fd5b506102816106e0565b6040516102639190611e41565b34801561029a57600080fd5b506102ae6102a9366004611c1f565b610772565b6040516102639190611da1565b3480156102c757600080fd5b506102816107b5565b3480156102dc57600080fd5b506102346102eb366004611b5e565b610843565b3480156102fc57600080fd5b506103056108db565b6040516102639190612383565b34801561031e57600080fd5b5061023461032d366004611b87565b6108e1565b34801561033e57600080fd5b50610305610933565b34801561035357600080fd5b50610305610362366004611a35565b610944565b34801561037357600080fd5b50610234610382366004611a81565b610956565b34801561039357600080fd5b5061023461098e565b3480156103a857600080fd5b506102346103b7366004611a81565b610a40565b3480156103c857600080fd5b506103dc6103d7366004611a35565b610a5b565b6040516102639190611df2565b3480156103f557600080fd5b50610234610404366004611c1f565b610b58565b34801561041557600080fd5b50610256610b9c565b34801561042a57600080fd5b50610256610baa565b34801561043f57600080fd5b50610281610bb3565b34801561045457600080fd5b506102ae610463366004611c1f565b610bc0565b34801561047457600080fd5b50610234610483366004611bd9565b610bf5565b34801561049457600080fd5b506103056104a3366004611a35565b610c47565b3480156104b457600080fd5b50610234610c8b565b3480156104c957600080fd5b506102346104d8366004611bd9565b610cd6565b3480156104e957600080fd5b506102ae610d28565b3480156104fe57600080fd5b50610281610d37565b34801561051357600080fd5b50610234610522366004611c37565b610d46565b610234610535366004611c1f565b610e1e565b34801561054657600080fd5b50610234610555366004611b35565b610eaf565b34801561056657600080fd5b50610234610575366004611abc565b610ec1565b34801561058657600080fd5b50610305610f00565b34801561059b57600080fd5b50610281610f06565b3480156105b057600080fd5b506102816105bf366004611c1f565b610f13565b3480156105d057600080fd5b5061030561103a565b3480156105e557600080fd5b506102346105f4366004611b87565b611040565b34801561060557600080fd5b50610256610614366004611a4f565b611099565b34801561062557600080fd5b50610234610634366004611a35565b6110c7565b610641611135565b6001600160a01b0316610652610d28565b6001600160a01b0316146106815760405162461bcd60e51b815260040161067890612192565b60405180910390fd5b805161069490600a906020840190611905565b5050565b60006001600160e01b031982166380ac58cd60e01b14806106c957506001600160e01b03198216635b5e139f60e01b145b806106d857506106d882611139565b90505b919050565b6060600080546106ef90612426565b80601f016020809104026020016040519081016040528092919081815260200182805461071b90612426565b80156107685780601f1061073d57610100808354040283529160200191610768565b820191906000526020600020905b81548152906001019060200180831161074b57829003601f168201915b5050505050905090565b600061077d82611152565b6107995760405162461bcd60e51b815260040161067890612146565b506000908152600460205260409020546001600160a01b031690565b600a80546107c290612426565b80601f01602080910402602001604051908101604052809291908181526020018280546107ee90612426565b801561083b5780601f106108105761010080835404028352916020019161083b565b820191906000526020600020905b81548152906001019060200180831161081e57829003601f168201915b505050505081565b600061084e82610bc0565b9050806001600160a01b0316836001600160a01b031614156108825760405162461bcd60e51b815260040161067890612296565b806001600160a01b0316610894611135565b6001600160a01b031614806108b057506108b081610614611135565b6108cc5760405162461bcd60e51b815260040161067890612021565b6108d6838361116f565b505050565b600b5481565b6108e9611135565b6001600160a01b03166108fa610d28565b6001600160a01b0316146109205760405162461bcd60e51b815260040161067890612192565b600e805460ff1916911515919091179055565b600061093f60076111dd565b905090565b600f6020526000908152604090205481565b610967610961611135565b826111e1565b6109835760405162461bcd60e51b815260040161067890612305565b6108d6838383611266565b610996611135565b6001600160a01b03166109a7610d28565b6001600160a01b0316146109cd5760405162461bcd60e51b815260040161067890612192565b60006109d7610d28565b6001600160a01b0316476040516109ed90611d9e565b60006040518083038185875af1925050503d8060008114610a2a576040519150601f19603f3d011682016040523d82523d6000602084013e610a2f565b606091505b5050905080610a3d57600080fd5b50565b6108d683838360405180602001604052806000815250610ec1565b60606000610a6883610c47565b905060008167ffffffffffffffff811115610a9357634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610abc578160200160208202803683370190505b509050600160005b8381108015610ad55750600c548211155b15610b4e576000610ae583610bc0565b9050866001600160a01b0316816001600160a01b03161415610b3b5782848381518110610b2257634e487b7160e01b600052603260045260246000fd5b602090810291909101015281610b3781612461565b9250505b82610b4581612461565b93505050610ac4565b5090949350505050565b610b60611135565b6001600160a01b0316610b71610d28565b6001600160a01b031614610b975760405162461bcd60e51b815260040161067890612192565b600b55565b600e54610100900460ff1681565b600e5460ff1681565b600880546107c290612426565b6000818152600260205260408120546001600160a01b0316806106d85760405162461bcd60e51b8152600401610678906120c8565b610bfd611135565b6001600160a01b0316610c0e610d28565b6001600160a01b031614610c345760405162461bcd60e51b815260040161067890612192565b8051610694906009906020840190611905565b60006001600160a01b038216610c6f5760405162461bcd60e51b81526004016106789061207e565b506001600160a01b031660009081526003602052604090205490565b610c93611135565b6001600160a01b0316610ca4610d28565b6001600160a01b031614610cca5760405162461bcd60e51b815260040161067890612192565b610cd46000611393565b565b610cde611135565b6001600160a01b0316610cef610d28565b6001600160a01b031614610d155760405162461bcd60e51b815260040161067890612192565b8051610694906008906020840190611905565b6006546001600160a01b031690565b6060600180546106ef90612426565b82600c5481610d5560076111dd565b610d5f9190612398565b1115610d7d5760405162461bcd60e51b8152600401610678906122d7565b610d85611135565b6001600160a01b0316610d96610d28565b6001600160a01b031614610dbc5760405162461bcd60e51b815260040161067890612192565b60005b82811015610e1757610e05848483818110610dea57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610dff9190611a35565b866113e5565b80610e0f81612461565b915050610dbf565b5050505050565b80600c5481610e2d60076111dd565b610e379190612398565b1115610e555760405162461bcd60e51b8152600401610678906122d7565b600e5460ff1615610e785760405162461bcd60e51b8152600401610678906121c7565b81600b54610e8691906123c4565b341015610ea55760405162461bcd60e51b815260040161067890612356565b610694338361141f565b610694610eba611135565b83836114af565b610ed2610ecc611135565b836111e1565b610eee5760405162461bcd60e51b815260040161067890612305565b610efa84848484611552565b50505050565b600d5481565b600980546107c290612426565b6060610f1e82611152565b610f3a5760405162461bcd60e51b815260040161067890612247565b600e54610100900460ff16610fdb57600a8054610f5690612426565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8290612426565b8015610fcf5780601f10610fa457610100808354040283529160200191610fcf565b820191906000526020600020905b815481529060010190602001808311610fb257829003601f168201915b505050505090506106db565b6000610fe5611585565b905060008151116110055760405180602001604052806000815250611033565b8061100f84611594565b600960405160200161102393929190611cdc565b6040516020818303038152906040525b9392505050565b600c5481565b611048611135565b6001600160a01b0316611059610d28565b6001600160a01b03161461107f5760405162461bcd60e51b815260040161067890612192565b600e80549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6110cf611135565b6001600160a01b03166110e0610d28565b6001600160a01b0316146111065760405162461bcd60e51b815260040161067890612192565b6001600160a01b03811661112c5760405162461bcd60e51b815260040161067890611ea6565b610a3d81611393565b3390565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111a482610bc0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b60006111ec82611152565b6112085760405162461bcd60e51b815260040161067890611fd5565b600061121383610bc0565b9050806001600160a01b0316846001600160a01b0316148061124e5750836001600160a01b031661124384610772565b6001600160a01b0316145b8061125e575061125e8185611099565b949350505050565b826001600160a01b031661127982610bc0565b6001600160a01b03161461129f5760405162461bcd60e51b8152600401610678906121fe565b6001600160a01b0382166112c55760405162461bcd60e51b815260040161067890611f5a565b6112d08383836108d6565b6112db60008261116f565b6001600160a01b03831660009081526003602052604081208054600192906113049084906123e3565b90915550506001600160a01b0382166000908152600360205260408120805460019290611332908490612398565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b818110156108d6576113fa60076116af565b61140d8361140860076111dd565b6116b8565b8061141781612461565b9150506113e8565b336000908152600f6020526040902054600d5461143c8383612398565b111561145a5760405162461bcd60e51b815260040161067890611f23565b60005b82811015610efa5761146f60076116af565b336000908152600f6020526040812080549161148a83612461565b919050555061149d8461140860076111dd565b806114a781612461565b91505061145d565b816001600160a01b0316836001600160a01b031614156114e15760405162461bcd60e51b815260040161067890611f9e565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611545908590611e36565b60405180910390a3505050565b61155d848484611266565b611569848484846116d2565b610efa5760405162461bcd60e51b815260040161067890611e54565b6060600880546106ef90612426565b6060816115b957506040805180820190915260018152600360fc1b60208201526106db565b8160005b81156115e357806115cd81612461565b91506115dc9050600a836123b0565b91506115bd565b60008167ffffffffffffffff81111561160c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611636576020820181803683370190505b5090505b841561125e5761164b6001836123e3565b9150611658600a8661247c565b611663906030612398565b60f81b81838151811061168657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506116a8600a866123b0565b945061163a565b80546001019055565b6106948282604051806020016040528060008152506117ed565b60006116e6846001600160a01b0316611820565b156117e257836001600160a01b031663150b7a02611702611135565b8786866040518563ffffffff1660e01b81526004016117249493929190611db5565b602060405180830381600087803b15801561173e57600080fd5b505af192505050801561176e575060408051601f3d908101601f1916820190925261176b91810190611bbd565b60015b6117c8573d80801561179c576040519150601f19603f3d011682016040523d82523d6000602084013e6117a1565b606091505b5080516117c05760405162461bcd60e51b815260040161067890611e54565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061125e565b506001949350505050565b6117f78383611826565b61180460008484846116d2565b6108d65760405162461bcd60e51b815260040161067890611e54565b3b151590565b6001600160a01b03821661184c5760405162461bcd60e51b815260040161067890612111565b61185581611152565b156118725760405162461bcd60e51b815260040161067890611eec565b61187e600083836108d6565b6001600160a01b03821660009081526003602052604081208054600192906118a7908490612398565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461191190612426565b90600052602060002090601f0160209004810192826119335760008555611979565b82601f1061194c57805160ff1916838001178555611979565b82800160010185558215611979579182015b8281111561197957825182559160200191906001019061195e565b50611985929150611989565b5090565b5b80821115611985576000815560010161198a565b600067ffffffffffffffff808411156119b9576119b96124bc565b604051601f8501601f1916810160200182811182821017156119dd576119dd6124bc565b6040528481529150818385018610156119f557600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106db57600080fd5b803580151581146106db57600080fd5b600060208284031215611a46578081fd5b61103382611a0e565b60008060408385031215611a61578081fd5b611a6a83611a0e565b9150611a7860208401611a0e565b90509250929050565b600080600060608486031215611a95578081fd5b611a9e84611a0e565b9250611aac60208501611a0e565b9150604084013590509250925092565b60008060008060808587031215611ad1578081fd5b611ada85611a0e565b9350611ae860208601611a0e565b925060408501359150606085013567ffffffffffffffff811115611b0a578182fd5b8501601f81018713611b1a578182fd5b611b298782356020840161199e565b91505092959194509250565b60008060408385031215611b47578182fd5b611b5083611a0e565b9150611a7860208401611a25565b60008060408385031215611b70578182fd5b611b7983611a0e565b946020939093013593505050565b600060208284031215611b98578081fd5b61103382611a25565b600060208284031215611bb2578081fd5b8135611033816124d2565b600060208284031215611bce578081fd5b8151611033816124d2565b600060208284031215611bea578081fd5b813567ffffffffffffffff811115611c00578182fd5b8201601f81018413611c10578182fd5b61125e8482356020840161199e565b600060208284031215611c30578081fd5b5035919050565b600080600060408486031215611c4b578283fd5b83359250602084013567ffffffffffffffff80821115611c69578384fd5b818601915086601f830112611c7c578384fd5b813581811115611c8a578485fd5b8760208083028501011115611c9d578485fd5b6020830194508093505050509250925092565b60008151808452611cc88160208601602086016123fa565b601f01601f19169290920160200192915050565b600084516020611cef8285838a016123fa565b855191840191611d028184848a016123fa565b8554920191839060028104600180831680611d1e57607f831692505b858310811415611d3c57634e487b7160e01b88526022600452602488fd5b808015611d505760018114611d6157611d8d565b60ff19851688528388019550611d8d565b611d6a8b61238c565b895b85811015611d855781548a820152908401908801611d6c565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611de890830184611cb0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611e2a57835183529284019291840191600101611e0e565b50909695505050505050565b901515815260200190565b6000602082526110336020830184611cb0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601c908201527f6d6178204e465420706572206164647265737320657863656564656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b90815260200190565b60009081526020902090565b600082198211156123ab576123ab612490565b500190565b6000826123bf576123bf6124a6565b500490565b60008160001904831182151516156123de576123de612490565b500290565b6000828210156123f5576123f5612490565b500390565b60005b838110156124155781810151838201526020016123fd565b83811115610efa5750506000910152565b60028104600182168061243a57607f821691505b6020821081141561245b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561247557612475612490565b5060010190565b60008261248b5761248b6124a6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a3d57600080fdfea2646970667358221220fd2f13c2005ff5ff9c2d4a1a76954f2397be005793016cd5a9f51bb06a71b95464736f6c63430008000033

Deployed Bytecode Sourcemap

37764:4383:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40493:120;;;;;;;;;;-1:-1:-1;40493:120:0;;;;;:::i;:::-;;:::i;:::-;;25240:305;;;;;;;;;;-1:-1:-1;25240:305:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26185:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27744:221::-;;;;;;;;;;-1:-1:-1;27744:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;37995:28::-;;;;;;;;;;;;;:::i;27267:411::-;;;;;;;;;;-1:-1:-1;27267:411:0;;;;;:::i;:::-;;:::i;38032:32::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40851:77::-;;;;;;;;;;-1:-1:-1;40851:77:0;;;;;:::i;:::-;;:::i;38586:89::-;;;;;;;;;;;;;:::i;38220:55::-;;;;;;;;;;-1:-1:-1;38220:55:0;;;;;:::i;:::-;;:::i;28494:339::-;;;;;;;;;;-1:-1:-1;28494:339:0;;;;;:::i;:::-;;:::i;40936:462::-;;;;;;;;;;;;;:::i;28904:185::-;;;;;;;;;;-1:-1:-1;28904:185:0;;;;;:::i;:::-;;:::i;39176:635::-;;;;;;;;;;-1:-1:-1;39176:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40407:74::-;;;;;;;;;;-1:-1:-1;40407:74:0;;;;;:::i;:::-;;:::i;38185:28::-;;;;;;;;;;;;;:::i;38155:25::-;;;;;;;;;;;;;:::i;37924:23::-;;;;;;;;;;;;;:::i;25879:239::-;;;;;;;;;;-1:-1:-1;25879:239:0;;;;;:::i;:::-;;:::i;40729:116::-;;;;;;;;;;-1:-1:-1;40729:116:0;;;;;:::i;:::-;;:::i;25609:208::-;;;;;;;;;;-1:-1:-1;25609:208:0;;;;;:::i;:::-;;:::i;6228:103::-;;;;;;;;;;;;;:::i;40623:100::-;;;;;;;;;;-1:-1:-1;40623:100:0;;;;;:::i;:::-;;:::i;5577:87::-;;;;;;;;;;;;;:::i;26354:104::-;;;;;;;;;;;;;:::i;38936:232::-;;;;;;;;;;-1:-1:-1;38936:232:0;;;;;:::i;:::-;;:::i;38681:247::-;;;;;;:::i;:::-;;:::i;28037:155::-;;;;;;;;;;-1:-1:-1;28037:155:0;;;;;:::i;:::-;;:::i;29160:328::-;;;;;;;;;;-1:-1:-1;29160:328:0;;;;;:::i;:::-;;:::i;38110:38::-;;;;;;;;;;;;;:::i;37953:37::-;;;;;;;;;;;;;:::i;39817:495::-;;;;;;;;;;-1:-1:-1;39817:495:0;;;;;:::i;:::-;;:::i;38069:32::-;;;;;;;;;;;;;:::i;40320:81::-;;;;;;;;;;-1:-1:-1;40320:81:0;;;;;:::i;:::-;;:::i;28263:164::-;;;;;;;;;;-1:-1:-1;28263:164:0;;;;;:::i;:::-;;:::i;6486:201::-;;;;;;;;;;-1:-1:-1;6486:201:0;;;;;:::i;:::-;;:::i;40493:120::-;5808:12;:10;:12::i;:::-;-1:-1:-1;;;;;5797:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5797:23:0;;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;;;;;;;;;40575:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40493:120:::0;:::o;25240:305::-;25342:4;-1:-1:-1;;;;;;25379:40:0;;-1:-1:-1;;;25379:40:0;;:105;;-1:-1:-1;;;;;;;25436:48:0;;-1:-1:-1;;;25436:48:0;25379:105;:158;;;;25501:36;25525:11;25501:23;:36::i;:::-;25359:178;;25240:305;;;;:::o;26185:100::-;26239:13;26272:5;26265:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26185:100;:::o;27744:221::-;27820:7;27848:16;27856:7;27848;:16::i;:::-;27840:73;;;;-1:-1:-1;;;27840:73:0;;;;;;;:::i;:::-;-1:-1:-1;27933:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27933:24:0;;27744:221::o;37995:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27267:411::-;27348:13;27364:23;27379:7;27364:14;:23::i;:::-;27348:39;;27412:5;-1:-1:-1;;;;;27406:11:0;:2;-1:-1:-1;;;;;27406:11:0;;;27398:57;;;;-1:-1:-1;;;27398:57:0;;;;;;;:::i;:::-;27506:5;-1:-1:-1;;;;;27490:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;27490:21:0;;:62;;;;27515:37;27532:5;27539:12;:10;:12::i;27515:37::-;27468:168;;;;-1:-1:-1;;;27468:168:0;;;;;;;:::i;:::-;27649:21;27658:2;27662:7;27649:8;:21::i;:::-;27267:411;;;:::o;38032:32::-;;;;:::o;40851:77::-;5808:12;:10;:12::i;:::-;-1:-1:-1;;;;;5797:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5797:23:0;;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;40907:6:::1;:15:::0;;-1:-1:-1;;40907:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40851:77::o;38586:89::-;38630:7;38653:16;:6;:14;:16::i;:::-;38646:23;;38586:89;:::o;38220:55::-;;;;;;;;;;;;;:::o;28494:339::-;28689:41;28708:12;:10;:12::i;:::-;28722:7;28689:18;:41::i;:::-;28681:103;;;;-1:-1:-1;;;28681:103:0;;;;;;;:::i;:::-;28797:28;28807:4;28813:2;28817:7;28797:9;:28::i;40936:462::-;5808:12;:10;:12::i;:::-;-1:-1:-1;;;;;5797:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5797:23:0;;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;41220:7:::1;41241;:5;:7::i;:::-;-1:-1:-1::0;;;;;41233:21:0::1;41262;41233:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41219:69;;;41303:2;41295:11;;;::::0;::::1;;5868:1;40936:462::o:0;28904:185::-;29042:39;29059:4;29065:2;29069:7;29042:39;;;;;;;;;;;;:16;:39::i;39176:635::-;39251:16;39279:23;39305:17;39315:6;39305:9;:17::i;:::-;39279:43;;39329:30;39376:15;39362:30;;;;;;-1:-1:-1;;;39362:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39362:30:0;-1:-1:-1;39329:63:0;-1:-1:-1;39424:1:0;39399:22;39468:309;39493:15;39475;:33;:64;;;;;39530:9;;39512:14;:27;;39475:64;39468:309;;;39550:25;39578:23;39586:14;39578:7;:23::i;:::-;39550:51;;39637:6;-1:-1:-1;;;;;39616:27:0;:17;-1:-1:-1;;;;;39616:27:0;;39612:131;;;39689:14;39656:13;39670:15;39656:30;;;;;;-1:-1:-1;;;39656:30:0;;;;;;;;;;;;;;;;;;:47;39716:17;;;;:::i;:::-;;;;39612:131;39753:16;;;;:::i;:::-;;;;39468:309;;;;-1:-1:-1;39792:13:0;;39176:635;-1:-1:-1;;;;39176:635:0:o;40407:74::-;5808:12;:10;:12::i;:::-;-1:-1:-1;;;;;5797:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5797:23:0;;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;40463:4:::1;:12:::0;40407:74::o;38185:28::-;;;;;;;;;:::o;38155:25::-;;;;;;:::o;37924:23::-;;;;;;;:::i;25879:239::-;25951:7;25987:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25987:16:0;26022:19;26014:73;;;;-1:-1:-1;;;26014:73:0;;;;;;;:::i;40729:116::-;5808:12;:10;:12::i;:::-;-1:-1:-1;;;;;5797:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5797:23:0;;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;40809:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;25609:208::-:0;25681:7;-1:-1:-1;;;;;25709:19:0;;25701:74;;;;-1:-1:-1;;;25701:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;25793:16:0;;;;;:9;:16;;;;;;;25609:208::o;6228:103::-;5808:12;:10;:12::i;:::-;-1:-1:-1;;;;;5797:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5797:23:0;;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;6293:30:::1;6320:1;6293:18;:30::i;:::-;6228:103::o:0;40623:100::-;5808:12;:10;:12::i;:::-;-1:-1:-1;;;;;5797:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5797:23:0;;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;40695:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;5577:87::-:0;5650:6;;-1:-1:-1;;;;;5650:6:0;5577:87;:::o;26354:104::-;26410:13;26443:7;26436:14;;;;;:::i;38936:232::-;39033:11;38530:9;;38515:11;38496:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;38488:76;;;;-1:-1:-1;;;38488:76:0;;;;;;;:::i;:::-;5808:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;5797:23:0::1;:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;5797:23:0::1;;5789:68;;;;-1:-1:-1::0;;;5789:68:0::1;;;;;;;:::i;:::-;39070:6:::2;39065:98;39082:20:::0;;::::2;39065:98;;;39116:37;39127:9;;39137:1;39127:12;;;;;-1:-1:-1::0;;;39127:12:0::2;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39141:11;39116:10;:37::i;:::-;39104:3:::0;::::2;::::0;::::2;:::i;:::-;;;;39065:98;;;;38936:232:::0;;;;:::o;38681:247::-;38746:11;38530:9;;38515:11;38496:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;38488:76;;;;-1:-1:-1;;;38488:76:0;;;;;;;:::i;:::-;38775:6:::1;::::0;::::1;;38774:7;38766:43;;;;-1:-1:-1::0;;;38766:43:0::1;;;;;;;:::i;:::-;38844:11;38837:4;;:18;;;;:::i;:::-;38824:9;:31;;38816:63;;;;-1:-1:-1::0;;;38816:63:0::1;;;;;;;:::i;:::-;38888:34;38898:10;38910:11;38888:9;:34::i;28037:155::-:0;28132:52;28151:12;:10;:12::i;:::-;28165:8;28175;28132:18;:52::i;29160:328::-;29335:41;29354:12;:10;:12::i;:::-;29368:7;29335:18;:41::i;:::-;29327:103;;;;-1:-1:-1;;;29327:103:0;;;;;;;:::i;:::-;29441:39;29455:4;29461:2;29465:7;29474:5;29441:13;:39::i;:::-;29160:328;;;;:::o;38110:38::-;;;;:::o;37953:37::-;;;;;;;:::i;39817:495::-;39916:13;39957:17;39965:8;39957:7;:17::i;:::-;39941:98;;;;-1:-1:-1;;;39941:98:0;;;;;;;:::i;:::-;40052:8;;;;;;;40048:61;;40087:14;40080:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40048:61;40117:28;40148:10;:8;:10::i;:::-;40117:41;;40203:1;40178:14;40172:28;:32;:134;;;;;;;;;;;;;;;;;40240:14;40256:19;:8;:17;:19::i;:::-;40277:13;40223:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40172:134;40165:141;39817:495;-1:-1:-1;;;39817:495:0:o;38069:32::-;;;;:::o;40320:81::-;5808:12;:10;:12::i;:::-;-1:-1:-1;;;;;5797:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5797:23:0;;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;40378:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;40378:17:0;;::::1;::::0;;;::::1;::::0;;40320:81::o;28263:164::-;-1:-1:-1;;;;;28384:25:0;;;28360:4;28384:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28263:164::o;6486:201::-;5808:12;:10;:12::i;:::-;-1:-1:-1;;;;;5797:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5797:23:0;;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6575:22:0;::::1;6567:73;;;;-1:-1:-1::0;;;6567:73:0::1;;;;;;;:::i;:::-;6651:28;6670:8;6651:18;:28::i;4301:98::-:0;4381:10;4301:98;:::o;18009:157::-;-1:-1:-1;;;;;;18118:40:0;;-1:-1:-1;;;18118:40:0;18009:157;;;:::o;30998:127::-;31063:4;31087:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31087:16:0;:30;;;30998:127::o;34980:174::-;35055:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35055:29:0;-1:-1:-1;;;;;35055:29:0;;;;;;;;:24;;35109:23;35055:24;35109:14;:23::i;:::-;-1:-1:-1;;;;;35100:46:0;;;;;;;;;;;34980:174;;:::o;905:114::-;997:14;;905:114::o;31292:348::-;31385:4;31410:16;31418:7;31410;:16::i;:::-;31402:73;;;;-1:-1:-1;;;31402:73:0;;;;;;;:::i;:::-;31486:13;31502:23;31517:7;31502:14;:23::i;:::-;31486:39;;31555:5;-1:-1:-1;;;;;31544:16:0;:7;-1:-1:-1;;;;;31544:16:0;;:51;;;;31588:7;-1:-1:-1;;;;;31564:31:0;:20;31576:7;31564:11;:20::i;:::-;-1:-1:-1;;;;;31564:31:0;;31544:51;:87;;;;31599:32;31616:5;31623:7;31599:16;:32::i;:::-;31536:96;31292:348;-1:-1:-1;;;;31292:348:0:o;34284:578::-;34443:4;-1:-1:-1;;;;;34416:31:0;:23;34431:7;34416:14;:23::i;:::-;-1:-1:-1;;;;;34416:31:0;;34408:85;;;;-1:-1:-1;;;34408:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34512:16:0;;34504:65;;;;-1:-1:-1;;;34504:65:0;;;;;;;:::i;:::-;34582:39;34603:4;34609:2;34613:7;34582:20;:39::i;:::-;34686:29;34703:1;34707:7;34686:8;:29::i;:::-;-1:-1:-1;;;;;34728:15:0;;;;;;:9;:15;;;;;:20;;34747:1;;34728:15;:20;;34747:1;;34728:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34759:13:0;;;;;;:9;:13;;;;;:18;;34776:1;;34759:13;:18;;34776:1;;34759:18;:::i;:::-;;;;-1:-1:-1;;34788:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34788:21:0;-1:-1:-1;;;;;34788:21:0;;;;;;;;;34827:27;;34788:16;;34827:27;;;;;;;34284:578;;;:::o;6847:191::-;6940:6;;;-1:-1:-1;;;;;6957:17:0;;;-1:-1:-1;;;;;;6957:17:0;;;;;;;6990:40;;6940:6;;;6957:17;6940:6;;6990:40;;6921:16;;6990:40;6847:191;;:::o;41829:205::-;41910:9;41905:124;41929:11;41925:1;:15;41905:124;;;41956:18;:6;:16;:18::i;:::-;41983:38;41993:9;42004:16;:6;:14;:16::i;:::-;41983:9;:38::i;:::-;41942:3;;;;:::i;:::-;;;;41905:124;;41404:421;41529:10;41481:24;41508:32;;;:20;:32;;;;;;41589:18;;41555:30;41574:11;41508:32;41555:30;:::i;:::-;:52;;41547:93;;;;-1:-1:-1;;;41547:93:0;;;;;;;:::i;:::-;41658:9;41653:167;41677:11;41673:1;:15;41653:167;;;41704:18;:6;:16;:18::i;:::-;41752:10;41731:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;;;41774:38;41784:9;41795:16;:6;:14;:16::i;41774:38::-;41690:3;;;;:::i;:::-;;;;41653:167;;35296:315;35451:8;-1:-1:-1;;;;;35442:17:0;:5;-1:-1:-1;;;;;35442:17:0;;;35434:55;;;;-1:-1:-1;;;35434:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35500:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;35500:46:0;;;;;;;35562:41;;;;;35500:46;;35562:41;:::i;:::-;;;;;;;;35296:315;;;:::o;30370:::-;30527:28;30537:4;30543:2;30547:7;30527:9;:28::i;:::-;30574:48;30597:4;30603:2;30607:7;30616:5;30574:22;:48::i;:::-;30566:111;;;;-1:-1:-1;;;30566:111:0;;;;;;;:::i;42040:104::-;42100:13;42129:9;42122:16;;;;;:::i;1863:723::-;1919:13;2140:10;2136:53;;-1:-1:-1;2167:10:0;;;;;;;;;;;;-1:-1:-1;;;2167:10:0;;;;;;2136:53;2214:5;2199:12;2255:78;2262:9;;2255:78;;2288:8;;;;:::i;:::-;;-1:-1:-1;2311:10:0;;-1:-1:-1;2319:2:0;2311:10;;:::i;:::-;;;2255:78;;;2343:19;2375:6;2365:17;;;;;;-1:-1:-1;;;2365:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2365:17:0;;2343:39;;2393:154;2400:10;;2393:154;;2427:11;2437:1;2427:11;;:::i;:::-;;-1:-1:-1;2496:10:0;2504:2;2496:5;:10;:::i;:::-;2483:24;;:2;:24;:::i;:::-;2470:39;;2453:6;2460;2453:14;;;;;;-1:-1:-1;;;2453:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;2453:56:0;;;;;;;;-1:-1:-1;2524:11:0;2533:2;2524:11;;:::i;:::-;;;2393:154;;1027:127;1116:19;;1134:1;1116:19;;;1027:127::o;31982:110::-;32058:26;32068:2;32072:7;32058:26;;;;;;;;;;;;:9;:26::i;36176:799::-;36331:4;36352:15;:2;-1:-1:-1;;;;;36352:13:0;;:15::i;:::-;36348:620;;;36404:2;-1:-1:-1;;;;;36388:36:0;;36425:12;:10;:12::i;:::-;36439:4;36445:7;36454:5;36388:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36388:72:0;;;;;;;;-1:-1:-1;;36388:72:0;;;;;;;;;;;;:::i;:::-;;;36384:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36630:13:0;;36626:272;;36673:60;;-1:-1:-1;;;36673:60:0;;;;;;;:::i;36626:272::-;36848:6;36842:13;36833:6;36829:2;36825:15;36818:38;36384:529;-1:-1:-1;;;;;;36511:51:0;-1:-1:-1;;;36511:51:0;;-1:-1:-1;36504:58:0;;36348:620;-1:-1:-1;36952:4:0;36176:799;;;;;;:::o;32319:321::-;32449:18;32455:2;32459:7;32449:5;:18::i;:::-;32500:54;32531:1;32535:2;32539:7;32548:5;32500:22;:54::i;:::-;32478:154;;;;-1:-1:-1;;;32478:154:0;;;;;;;:::i;7865:387::-;8188:20;8236:8;;;7865:387::o;32976:382::-;-1:-1:-1;;;;;33056:16:0;;33048:61;;;;-1:-1:-1;;;33048:61:0;;;;;;;:::i;:::-;33129:16;33137:7;33129;:16::i;:::-;33128:17;33120:58;;;;-1:-1:-1;;;33120:58:0;;;;;;;:::i;:::-;33191:45;33220:1;33224:2;33228:7;33191:20;:45::i;:::-;-1:-1:-1;;;;;33249:13:0;;;;;;:9;:13;;;;;:18;;33266:1;;33249:13;:18;;33266:1;;33249:18;:::i;:::-;;;;-1:-1:-1;;33278:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33278:21:0;-1:-1:-1;;;;;33278:21:0;;;;;;;;33317:33;;33278:16;;;33317:33;;33278:16;;33317:33;32976:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:1;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:1;;4335:120;-1:-1:-1;4335:120:1:o;4460:734::-;;;;4624:2;4612:9;4603:7;4599:23;4595:32;4592:2;;;4645:6;4637;4630:22;4592:2;4686:9;4673:23;4663:33;;4747:2;4736:9;4732:18;4719:32;4770:18;4811:2;4803:6;4800:14;4797:2;;;4832:6;4824;4817:22;4797:2;4875:6;4864:9;4860:22;4850:32;;4920:7;4913:4;4909:2;4905:13;4901:27;4891:2;;4947:6;4939;4932:22;4891:2;4992;4979:16;5018:2;5010:6;5007:14;5004:2;;;5039:6;5031;5024:22;5004:2;5098:7;5093:2;5087;5079:6;5075:15;5071:2;5067:24;5063:33;5060:46;5057:2;;;5124:6;5116;5109:22;5057:2;5160;5156;5152:11;5142:21;;5182:6;5172:16;;;;;4582:612;;;;;:::o;5199:259::-;;5280:5;5274:12;5307:6;5302:3;5295:19;5323:63;5379:6;5372:4;5367:3;5363:14;5356:4;5349:5;5345:16;5323:63;:::i;:::-;5440:2;5419:15;-1:-1:-1;;5415:29:1;5406:39;;;;5447:4;5402:50;;5250:208;-1:-1:-1;;5250:208:1:o;5463:1532::-;;5725:6;5719:13;5751:4;5764:51;5808:6;5803:3;5798:2;5790:6;5786:15;5764:51;:::i;:::-;5878:13;;5837:16;;;;5900:55;5878:13;5837:16;5922:15;;;5900:55;:::i;:::-;6046:13;;5977:20;;;6017:3;;6123:1;6108:17;;6144:1;6180:18;;;;6207:2;;6285:4;6275:8;6271:19;6259:31;;6207:2;6348;6338:8;6335:16;6315:18;6312:40;6309:2;;;-1:-1:-1;;;6375:33:1;;6431:4;6428:1;6421:15;6461:4;6382:3;6449:17;6309:2;6492:18;6519:110;;;;6643:1;6638:332;;;;6485:485;;6519:110;-1:-1:-1;;6554:24:1;;6540:39;;6599:20;;;;-1:-1:-1;6519:110:1;;6638:332;6674:39;6706:6;6674:39;:::i;:::-;6735:3;6751:169;6765:8;6762:1;6759:15;6751:169;;;6847:14;;6832:13;;;6825:37;6890:16;;;;6782:10;;6751:169;;;6755:3;;6951:8;6944:5;6940:20;6933:27;;6485:485;-1:-1:-1;6986:3:1;;5695:1300;-1:-1:-1;;;;;;;;;;;5695:1300:1:o;7000:205::-;7200:3;7191:14::o;7210:203::-;-1:-1:-1;;;;;7374:32:1;;;;7356:51;;7344:2;7329:18;;7311:102::o;7418:490::-;-1:-1:-1;;;;;7687:15:1;;;7669:34;;7739:15;;7734:2;7719:18;;7712:43;7786:2;7771:18;;7764:34;;;7834:3;7829:2;7814:18;;7807:31;;;7418:490;;7855:47;;7882:19;;7874:6;7855:47;:::i;:::-;7847:55;7621:287;-1:-1:-1;;;;;;7621:287:1:o;7913:635::-;8084:2;8136:21;;;8206:13;;8109:18;;;8228:22;;;7913:635;;8084:2;8307:15;;;;8281:2;8266:18;;;7913:635;8353:169;8367:6;8364:1;8361:13;8353:169;;;8428:13;;8416:26;;8497:15;;;;8462:12;;;;8389:1;8382:9;8353:169;;;-1:-1:-1;8539:3:1;;8064:484;-1:-1:-1;;;;;;8064:484:1:o;8553:187::-;8718:14;;8711:22;8693:41;;8681:2;8666:18;;8648:92::o;8745:221::-;;8894:2;8883:9;8876:21;8914:46;8956:2;8945:9;8941:18;8933:6;8914:46;:::i;8971:414::-;9173:2;9155:21;;;9212:2;9192:18;;;9185:30;9251:34;9246:2;9231:18;;9224:62;-1:-1:-1;;;9317:2:1;9302:18;;9295:48;9375:3;9360:19;;9145:240::o;9390:402::-;9592:2;9574:21;;;9631:2;9611:18;;;9604:30;9670:34;9665:2;9650:18;;9643:62;-1:-1:-1;;;9736:2:1;9721:18;;9714:36;9782:3;9767:19;;9564:228::o;9797:352::-;9999:2;9981:21;;;10038:2;10018:18;;;10011:30;10077;10072:2;10057:18;;10050:58;10140:2;10125:18;;9971:178::o;10154:352::-;10356:2;10338:21;;;10395:2;10375:18;;;10368:30;10434;10429:2;10414:18;;10407:58;10497:2;10482:18;;10328:178::o;10511:400::-;10713:2;10695:21;;;10752:2;10732:18;;;10725:30;10791:34;10786:2;10771:18;;10764:62;-1:-1:-1;;;10857:2:1;10842:18;;10835:34;10901:3;10886:19;;10685:226::o;10916:349::-;11118:2;11100:21;;;11157:2;11137:18;;;11130:30;11196:27;11191:2;11176:18;;11169:55;11256:2;11241:18;;11090:175::o;11270:408::-;11472:2;11454:21;;;11511:2;11491:18;;;11484:30;11550:34;11545:2;11530:18;;11523:62;-1:-1:-1;;;11616:2:1;11601:18;;11594:42;11668:3;11653:19;;11444:234::o;11683:420::-;11885:2;11867:21;;;11924:2;11904:18;;;11897:30;11963:34;11958:2;11943:18;;11936:62;12034:26;12029:2;12014:18;;12007:54;12093:3;12078:19;;11857:246::o;12108:406::-;12310:2;12292:21;;;12349:2;12329:18;;;12322:30;12388:34;12383:2;12368:18;;12361:62;-1:-1:-1;;;12454:2:1;12439:18;;12432:40;12504:3;12489:19;;12282:232::o;12519:405::-;12721:2;12703:21;;;12760:2;12740:18;;;12733:30;12799:34;12794:2;12779:18;;12772:62;-1:-1:-1;;;12865:2:1;12850:18;;12843:39;12914:3;12899:19;;12693:231::o;12929:356::-;13131:2;13113:21;;;13150:18;;;13143:30;13209:34;13204:2;13189:18;;13182:62;13276:2;13261:18;;13103:182::o;13290:408::-;13492:2;13474:21;;;13531:2;13511:18;;;13504:30;13570:34;13565:2;13550:18;;13543:62;-1:-1:-1;;;13636:2:1;13621:18;;13614:42;13688:3;13673:19;;13464:234::o;13703:356::-;13905:2;13887:21;;;13924:18;;;13917:30;13983:34;13978:2;13963:18;;13956:62;14050:2;14035:18;;13877:182::o;14064:347::-;14266:2;14248:21;;;14305:2;14285:18;;;14278:30;14344:25;14339:2;14324:18;;14317:53;14402:2;14387:18;;14238:173::o;14416:405::-;14618:2;14600:21;;;14657:2;14637:18;;;14630:30;14696:34;14691:2;14676:18;;14669:62;-1:-1:-1;;;14762:2:1;14747:18;;14740:39;14811:3;14796:19;;14590:231::o;14826:411::-;15028:2;15010:21;;;15067:2;15047:18;;;15040:30;15106:34;15101:2;15086:18;;15079:62;-1:-1:-1;;;15172:2:1;15157:18;;15150:45;15227:3;15212:19;;15000:237::o;15242:397::-;15444:2;15426:21;;;15483:2;15463:18;;;15456:30;15522:34;15517:2;15502:18;;15495:62;-1:-1:-1;;;15588:2:1;15573:18;;15566:31;15629:3;15614:19;;15416:223::o;15644:344::-;15846:2;15828:21;;;15885:2;15865:18;;;15858:30;-1:-1:-1;;;15919:2:1;15904:18;;15897:50;15979:2;15964:18;;15818:170::o;15993:413::-;16195:2;16177:21;;;16234:2;16214:18;;;16207:30;16273:34;16268:2;16253:18;;16246:62;-1:-1:-1;;;16339:2:1;16324:18;;16317:47;16396:3;16381:19;;16167:239::o;16411:343::-;16613:2;16595:21;;;16652:2;16632:18;;;16625:30;-1:-1:-1;;;16686:2:1;16671:18;;16664:49;16745:2;16730:18;;16585:169::o;16759:177::-;16905:25;;;16893:2;16878:18;;16860:76::o;16941:129::-;;17009:17;;;17059:4;17043:21;;;16999:71::o;17075:128::-;;17146:1;17142:6;17139:1;17136:13;17133:2;;;17152:18;;:::i;:::-;-1:-1:-1;17188:9:1;;17123:80::o;17208:120::-;;17274:1;17264:2;;17279:18;;:::i;:::-;-1:-1:-1;17313:9:1;;17254:74::o;17333:168::-;;17439:1;17435;17431:6;17427:14;17424:1;17421:21;17416:1;17409:9;17402:17;17398:45;17395:2;;;17446:18;;:::i;:::-;-1:-1:-1;17486:9:1;;17385:116::o;17506:125::-;;17574:1;17571;17568:8;17565:2;;;17579:18;;:::i;:::-;-1:-1:-1;17616:9:1;;17555:76::o;17636:258::-;17708:1;17718:113;17732:6;17729:1;17726:13;17718:113;;;17808:11;;;17802:18;17789:11;;;17782:39;17754:2;17747:10;17718:113;;;17849:6;17846:1;17843:13;17840:2;;;-1:-1:-1;;17884:1:1;17866:16;;17859:27;17689:205::o;17899:380::-;17984:1;17974:12;;18031:1;18021:12;;;18042:2;;18096:4;18088:6;18084:17;18074:27;;18042:2;18149;18141:6;18138:14;18118:18;18115:38;18112:2;;;18195:10;18190:3;18186:20;18183:1;18176:31;18230:4;18227:1;18220:15;18258:4;18255:1;18248:15;18112:2;;17954:325;;;:::o;18284:135::-;;-1:-1:-1;;18344:17:1;;18341:2;;;18364:18;;:::i;:::-;-1:-1:-1;18411:1:1;18400:13;;18331:88::o;18424:112::-;;18482:1;18472:2;;18487:18;;:::i;:::-;-1:-1:-1;18521:9:1;;18462:74::o;18541:127::-;18602:10;18597:3;18593:20;18590:1;18583:31;18633:4;18630:1;18623:15;18657:4;18654:1;18647:15;18673:127;18734:10;18729:3;18725:20;18722:1;18715:31;18765:4;18762:1;18755:15;18789:4;18786:1;18779:15;18805:127;18866:10;18861:3;18857:20;18854:1;18847:31;18897:4;18894:1;18887:15;18921:4;18918:1;18911:15;18937:133;-1:-1:-1;;;;;;19013:32:1;;19003:43;;18993:2;;19060:1;19057;19050:12

Swarm Source

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