ETH Price: $2,456.41 (+2.56%)
Gas: 3.1 Gwei

Token

The Merge Panda (PANDA)
 

Overview

Max Total Supply

100 PANDA

Holders

98

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
bujinmei.eth
Balance
1 PANDA
0xb8832d516D0f3094b4BDc5400E36a2A6984233Ea
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
The_Merge_Panda

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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



pragma solidity ^0.8.0;

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


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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


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



pragma solidity ^0.8.0;

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


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



pragma solidity ^0.8.0;

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

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

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


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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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



pragma solidity ^0.8.0;

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

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


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



pragma solidity ^0.8.0;

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

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

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

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

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


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



pragma solidity ^0.8.0;

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


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



pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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



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 contracts/panda.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;



contract The_Merge_Panda is ERC721, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private tokenCounter;


    string private __baseUri;

    mapping (address => bool) internal userMinted;

    uint256 constant private MAX_AMOUNT = 100;

    constructor (string memory baseUri) ERC721("The Merge Panda", "PANDA") {
        __baseUri = baseUri;
    }

    /** ========== public view functions ========== */
    function getBaseUri() public view returns (string memory) {
        return __baseUri;
    }

    function totalSupply() public pure returns (uint256) {
        return MAX_AMOUNT;
    }

    function currentPandaId() public view returns (uint256) {
        return tokenCounter.current();
    }

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

        string memory base = _baseURI();
        return string(abi.encodePacked(base, tokenId.toString(), ".json"));

    }

    /** ========== external mutative functions ========== */
    function setBaseUri(string memory newBaseUri) external onlyOwner {
        __baseUri = newBaseUri;
    }

    function mint() external {
        require(!userMinted[_msgSender()], "mint: you have minted");
        tokenCounter.increment();
        uint256 currentTokenId = tokenCounter.current();
        require(currentTokenId <= MAX_AMOUNT, "mint: all tokens have been minted");

        // update minting status
        userMinted[_msgSender()] = true;
        

        // mint panda
        _safeMint(_msgSender(), currentTokenId);
        
        emit minted(_msgSender(), currentTokenId);
    }

    /** ========== internal view functions ========== */

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

    /** ========== event ========== */
    event minted(address indexed account, uint256 tokenId);

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"minted","type":"event"},{"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":"currentPandaId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseUri","type":"string"}],"name":"setBaseUri","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":"pure","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"}]

60806040523480156200001157600080fd5b506040516200367638038062003676833981810160405281019062000037919062000307565b6040518060400160405280600f81526020017f546865204d657267652050616e646100000000000000000000000000000000008152506040518060400160405280600581526020017f50414e44410000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb929190620001e5565b508060019080519060200190620000d4929190620001e5565b505050620000f7620000eb6200011760201b60201c565b6200011f60201b60201c565b80600890805190602001906200010f929190620001e5565b5050620004bc565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001f390620003e1565b90600052602060002090601f01602090048101928262000217576000855562000263565b82601f106200023257805160ff191683800117855562000263565b8280016001018555821562000263579182015b828111156200026257825182559160200191906001019062000245565b5b50905062000272919062000276565b5090565b5b808211156200029157600081600090555060010162000277565b5090565b6000620002ac620002a68462000375565b6200034c565b905082815260208101848484011115620002c557600080fd5b620002d2848285620003ab565b509392505050565b600082601f830112620002ec57600080fd5b8151620002fe84826020860162000295565b91505092915050565b6000602082840312156200031a57600080fd5b600082015167ffffffffffffffff8111156200033557600080fd5b6200034384828501620002da565b91505092915050565b6000620003586200036b565b905062000366828262000417565b919050565b6000604051905090565b600067ffffffffffffffff8211156200039357620003926200047c565b5b6200039e82620004ab565b9050602081019050919050565b60005b83811015620003cb578082015181840152602081019050620003ae565b83811115620003db576000848401525b50505050565b60006002820490506001821680620003fa57607f821691505b602082108114156200041157620004106200044d565b5b50919050565b6200042282620004ab565b810181811067ffffffffffffffff821117156200044457620004436200047c565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6131aa80620004cc6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063a0bcfc7f1161007c578063a0bcfc7f14610318578063a22cb46514610334578063b88d4fde14610350578063c87b56dd1461036c578063e985e9c51461039c578063f2fde38b146103cc57610137565b806370a0823114610284578063715018a6146102b4578063824e6cc6146102be5780638da5cb5b146102dc57806395d89b41146102fa57610137565b80631249c58b116100ff5780631249c58b146101f457806318160ddd146101fe57806323b872dd1461021c57806342842e0e146102385780636352211e1461025457610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba5780630cac36b2146101d6575b600080fd5b610156600480360381019061015191906120e7565b6103e8565b60405161016391906125a2565b60405180910390f35b6101746104ca565b60405161018191906125bd565b60405180910390f35b6101a4600480360381019061019f919061217a565b61055c565b6040516101b1919061253b565b60405180910390f35b6101d460048036038101906101cf91906120ab565b6105e1565b005b6101de6106f9565b6040516101eb91906125bd565b60405180910390f35b6101fc61078b565b005b610206610943565b604051610213919061281f565b60405180910390f35b61023660048036038101906102319190611fa5565b61094c565b005b610252600480360381019061024d9190611fa5565b6109ac565b005b61026e6004803603810190610269919061217a565b6109cc565b60405161027b919061253b565b60405180910390f35b61029e60048036038101906102999190611f40565b610a7e565b6040516102ab919061281f565b60405180910390f35b6102bc610b36565b005b6102c6610bbe565b6040516102d3919061281f565b60405180910390f35b6102e4610bcf565b6040516102f1919061253b565b60405180910390f35b610302610bf9565b60405161030f91906125bd565b60405180910390f35b610332600480360381019061032d9190612139565b610c8b565b005b61034e6004803603810190610349919061206f565b610d21565b005b61036a60048036038101906103659190611ff4565b610ea2565b005b6103866004803603810190610381919061217a565b610f04565b60405161039391906125bd565b60405180910390f35b6103b660048036038101906103b19190611f69565b610f8c565b6040516103c391906125a2565b60405180910390f35b6103e660048036038101906103e19190611f40565b611020565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104b357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104c357506104c282611118565b5b9050919050565b6060600080546104d990612a75565b80601f016020809104026020016040519081016040528092919081815260200182805461050590612a75565b80156105525780601f1061052757610100808354040283529160200191610552565b820191906000526020600020905b81548152906001019060200180831161053557829003601f168201915b5050505050905090565b600061056782611182565b6105a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059d9061273f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105ec826109cc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561065d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610654906127bf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661067c6111ee565b73ffffffffffffffffffffffffffffffffffffffff1614806106ab57506106aa816106a56111ee565b610f8c565b5b6106ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e1906126bf565b60405180910390fd5b6106f483836111f6565b505050565b60606008805461070890612a75565b80601f016020809104026020016040519081016040528092919081815260200182805461073490612a75565b80156107815780601f1061075657610100808354040283529160200191610781565b820191906000526020600020905b81548152906001019060200180831161076457829003601f168201915b5050505050905090565b600960006107976111ee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561081f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610816906127ff565b60405180910390fd5b61082960076112af565b600061083560076112c5565b9050606481111561087b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108729061275f565b60405180910390fd5b6001600960006108896111ee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506108eb6108e56111ee565b826112d3565b6108f36111ee565b73ffffffffffffffffffffffffffffffffffffffff167fb7656808f0e04b4af7a20f7ef1caa7669f0d781f1ca4cba31a3ba467880766c982604051610938919061281f565b60405180910390a250565b60006064905090565b61095d6109576111ee565b826112f1565b61099c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610993906127df565b60405180910390fd5b6109a78383836113cf565b505050565b6109c783838360405180602001604052806000815250610ea2565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c906126ff565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae6906126df565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b3e6111ee565b73ffffffffffffffffffffffffffffffffffffffff16610b5c610bcf565b73ffffffffffffffffffffffffffffffffffffffff1614610bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba99061277f565b60405180910390fd5b610bbc600061162b565b565b6000610bca60076112c5565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610c0890612a75565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3490612a75565b8015610c815780601f10610c5657610100808354040283529160200191610c81565b820191906000526020600020905b815481529060010190602001808311610c6457829003601f168201915b5050505050905090565b610c936111ee565b73ffffffffffffffffffffffffffffffffffffffff16610cb1610bcf565b73ffffffffffffffffffffffffffffffffffffffff1614610d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfe9061277f565b60405180910390fd5b8060089080519060200190610d1d929190611d64565b5050565b610d296111ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e9061265f565b60405180910390fd5b8060056000610da46111ee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e516111ee565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e9691906125a2565b60405180910390a35050565b610eb3610ead6111ee565b836112f1565b610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee9906127df565b60405180910390fd5b610efe848484846116f1565b50505050565b6060610f0f82611182565b610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f459061269f565b60405180910390fd5b6000610f5861174d565b905080610f64846117df565b604051602001610f7592919061250c565b604051602081830303815290604052915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110286111ee565b73ffffffffffffffffffffffffffffffffffffffff16611046610bcf565b73ffffffffffffffffffffffffffffffffffffffff161461109c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110939061277f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561110c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611103906125ff565b60405180910390fd5b6111158161162b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611269836109cc565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6112ed82826040518060200160405280600081525061198c565b5050565b60006112fc82611182565b61133b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113329061267f565b60405180910390fd5b6000611346836109cc565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113b557508373ffffffffffffffffffffffffffffffffffffffff1661139d8461055c565b73ffffffffffffffffffffffffffffffffffffffff16145b806113c657506113c58185610f8c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166113ef826109cc565b73ffffffffffffffffffffffffffffffffffffffff1614611445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143c9061279f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac9061263f565b60405180910390fd5b6114c08383836119e7565b6114cb6000826111f6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461151b919061298b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115729190612904565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6116fc8484846113cf565b611708848484846119ec565b611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e906125df565b60405180910390fd5b50505050565b60606008805461175c90612a75565b80601f016020809104026020016040519081016040528092919081815260200182805461178890612a75565b80156117d55780601f106117aa576101008083540402835291602001916117d5565b820191906000526020600020905b8154815290600101906020018083116117b857829003601f168201915b5050505050905090565b60606000821415611827576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611987565b600082905060005b6000821461185957808061184290612ad8565b915050600a82611852919061295a565b915061182f565b60008167ffffffffffffffff81111561189b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118cd5781602001600182028036833780820191505090505b5090505b60008514611980576001826118e6919061298b565b9150600a856118f59190612b21565b60306119019190612904565b60f81b81838151811061193d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611979919061295a565b94506118d1565b8093505050505b919050565b6119968383611b83565b6119a360008484846119ec565b6119e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d9906125df565b60405180910390fd5b505050565b505050565b6000611a0d8473ffffffffffffffffffffffffffffffffffffffff16611d51565b15611b76578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a366111ee565b8786866040518563ffffffff1660e01b8152600401611a589493929190612556565b602060405180830381600087803b158015611a7257600080fd5b505af1925050508015611aa357506040513d601f19601f82011682018060405250810190611aa09190612110565b60015b611b26573d8060008114611ad3576040519150601f19603f3d011682016040523d82523d6000602084013e611ad8565b606091505b50600081511415611b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b15906125df565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611b7b565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bea9061271f565b60405180910390fd5b611bfc81611182565b15611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c339061261f565b60405180910390fd5b611c48600083836119e7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c989190612904565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054611d7090612a75565b90600052602060002090601f016020900481019282611d925760008555611dd9565b82601f10611dab57805160ff1916838001178555611dd9565b82800160010185558215611dd9579182015b82811115611dd8578251825591602001919060010190611dbd565b5b509050611de69190611dea565b5090565b5b80821115611e03576000816000905550600101611deb565b5090565b6000611e1a611e158461285f565b61283a565b905082815260208101848484011115611e3257600080fd5b611e3d848285612a33565b509392505050565b6000611e58611e5384612890565b61283a565b905082815260208101848484011115611e7057600080fd5b611e7b848285612a33565b509392505050565b600081359050611e9281613118565b92915050565b600081359050611ea78161312f565b92915050565b600081359050611ebc81613146565b92915050565b600081519050611ed181613146565b92915050565b600082601f830112611ee857600080fd5b8135611ef8848260208601611e07565b91505092915050565b600082601f830112611f1257600080fd5b8135611f22848260208601611e45565b91505092915050565b600081359050611f3a8161315d565b92915050565b600060208284031215611f5257600080fd5b6000611f6084828501611e83565b91505092915050565b60008060408385031215611f7c57600080fd5b6000611f8a85828601611e83565b9250506020611f9b85828601611e83565b9150509250929050565b600080600060608486031215611fba57600080fd5b6000611fc886828701611e83565b9350506020611fd986828701611e83565b9250506040611fea86828701611f2b565b9150509250925092565b6000806000806080858703121561200a57600080fd5b600061201887828801611e83565b945050602061202987828801611e83565b935050604061203a87828801611f2b565b925050606085013567ffffffffffffffff81111561205757600080fd5b61206387828801611ed7565b91505092959194509250565b6000806040838503121561208257600080fd5b600061209085828601611e83565b92505060206120a185828601611e98565b9150509250929050565b600080604083850312156120be57600080fd5b60006120cc85828601611e83565b92505060206120dd85828601611f2b565b9150509250929050565b6000602082840312156120f957600080fd5b600061210784828501611ead565b91505092915050565b60006020828403121561212257600080fd5b600061213084828501611ec2565b91505092915050565b60006020828403121561214b57600080fd5b600082013567ffffffffffffffff81111561216557600080fd5b61217184828501611f01565b91505092915050565b60006020828403121561218c57600080fd5b600061219a84828501611f2b565b91505092915050565b6121ac816129bf565b82525050565b6121bb816129d1565b82525050565b60006121cc826128c1565b6121d681856128d7565b93506121e6818560208601612a42565b6121ef81612c0e565b840191505092915050565b6000612205826128cc565b61220f81856128e8565b935061221f818560208601612a42565b61222881612c0e565b840191505092915050565b600061223e826128cc565b61224881856128f9565b9350612258818560208601612a42565b80840191505092915050565b60006122716032836128e8565b915061227c82612c1f565b604082019050919050565b60006122946026836128e8565b915061229f82612c6e565b604082019050919050565b60006122b7601c836128e8565b91506122c282612cbd565b602082019050919050565b60006122da6024836128e8565b91506122e582612ce6565b604082019050919050565b60006122fd6019836128e8565b915061230882612d35565b602082019050919050565b6000612320602c836128e8565b915061232b82612d5e565b604082019050919050565b60006123436025836128e8565b915061234e82612dad565b604082019050919050565b60006123666038836128e8565b915061237182612dfc565b604082019050919050565b6000612389602a836128e8565b915061239482612e4b565b604082019050919050565b60006123ac6029836128e8565b91506123b782612e9a565b604082019050919050565b60006123cf6020836128e8565b91506123da82612ee9565b602082019050919050565b60006123f2602c836128e8565b91506123fd82612f12565b604082019050919050565b60006124156005836128f9565b915061242082612f61565b600582019050919050565b60006124386021836128e8565b915061244382612f8a565b604082019050919050565b600061245b6020836128e8565b915061246682612fd9565b602082019050919050565b600061247e6029836128e8565b915061248982613002565b604082019050919050565b60006124a16021836128e8565b91506124ac82613051565b604082019050919050565b60006124c46031836128e8565b91506124cf826130a0565b604082019050919050565b60006124e76015836128e8565b91506124f2826130ef565b602082019050919050565b61250681612a29565b82525050565b60006125188285612233565b91506125248284612233565b915061252f82612408565b91508190509392505050565b600060208201905061255060008301846121a3565b92915050565b600060808201905061256b60008301876121a3565b61257860208301866121a3565b61258560408301856124fd565b818103606083015261259781846121c1565b905095945050505050565b60006020820190506125b760008301846121b2565b92915050565b600060208201905081810360008301526125d781846121fa565b905092915050565b600060208201905081810360008301526125f881612264565b9050919050565b6000602082019050818103600083015261261881612287565b9050919050565b60006020820190508181036000830152612638816122aa565b9050919050565b60006020820190508181036000830152612658816122cd565b9050919050565b60006020820190508181036000830152612678816122f0565b9050919050565b6000602082019050818103600083015261269881612313565b9050919050565b600060208201905081810360008301526126b881612336565b9050919050565b600060208201905081810360008301526126d881612359565b9050919050565b600060208201905081810360008301526126f88161237c565b9050919050565b600060208201905081810360008301526127188161239f565b9050919050565b60006020820190508181036000830152612738816123c2565b9050919050565b60006020820190508181036000830152612758816123e5565b9050919050565b600060208201905081810360008301526127788161242b565b9050919050565b600060208201905081810360008301526127988161244e565b9050919050565b600060208201905081810360008301526127b881612471565b9050919050565b600060208201905081810360008301526127d881612494565b9050919050565b600060208201905081810360008301526127f8816124b7565b9050919050565b60006020820190508181036000830152612818816124da565b9050919050565b600060208201905061283460008301846124fd565b92915050565b6000612844612855565b90506128508282612aa7565b919050565b6000604051905090565b600067ffffffffffffffff82111561287a57612879612bdf565b5b61288382612c0e565b9050602081019050919050565b600067ffffffffffffffff8211156128ab576128aa612bdf565b5b6128b482612c0e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061290f82612a29565b915061291a83612a29565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561294f5761294e612b52565b5b828201905092915050565b600061296582612a29565b915061297083612a29565b9250826129805761297f612b81565b5b828204905092915050565b600061299682612a29565b91506129a183612a29565b9250828210156129b4576129b3612b52565b5b828203905092915050565b60006129ca82612a09565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612a60578082015181840152602081019050612a45565b83811115612a6f576000848401525b50505050565b60006002820490506001821680612a8d57607f821691505b60208210811415612aa157612aa0612bb0565b5b50919050565b612ab082612c0e565b810181811067ffffffffffffffff82111715612acf57612ace612bdf565b5b80604052505050565b6000612ae382612a29565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b1657612b15612b52565b5b600182019050919050565b6000612b2c82612a29565b9150612b3783612a29565b925082612b4757612b46612b81565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f746f6b656e5552493a20717565727920666f72206e6f6e6578697374656e742060008201527f746f6b656e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f6d696e743a20616c6c20746f6b656e732068617665206265656e206d696e746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e743a20796f752068617665206d696e7465640000000000000000000000600082015250565b613121816129bf565b811461312c57600080fd5b50565b613138816129d1565b811461314357600080fd5b50565b61314f816129dd565b811461315a57600080fd5b50565b61316681612a29565b811461317157600080fd5b5056fea264697066735822122046417bbcc7456a9d48a18a4a912c8744465fa081f46cbcb2e14ea751e3548a4764736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5161673855674b416b746d6b783862373675786b6a336b44364b566e6d7850473477726173335279456238442f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063a0bcfc7f1161007c578063a0bcfc7f14610318578063a22cb46514610334578063b88d4fde14610350578063c87b56dd1461036c578063e985e9c51461039c578063f2fde38b146103cc57610137565b806370a0823114610284578063715018a6146102b4578063824e6cc6146102be5780638da5cb5b146102dc57806395d89b41146102fa57610137565b80631249c58b116100ff5780631249c58b146101f457806318160ddd146101fe57806323b872dd1461021c57806342842e0e146102385780636352211e1461025457610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba5780630cac36b2146101d6575b600080fd5b610156600480360381019061015191906120e7565b6103e8565b60405161016391906125a2565b60405180910390f35b6101746104ca565b60405161018191906125bd565b60405180910390f35b6101a4600480360381019061019f919061217a565b61055c565b6040516101b1919061253b565b60405180910390f35b6101d460048036038101906101cf91906120ab565b6105e1565b005b6101de6106f9565b6040516101eb91906125bd565b60405180910390f35b6101fc61078b565b005b610206610943565b604051610213919061281f565b60405180910390f35b61023660048036038101906102319190611fa5565b61094c565b005b610252600480360381019061024d9190611fa5565b6109ac565b005b61026e6004803603810190610269919061217a565b6109cc565b60405161027b919061253b565b60405180910390f35b61029e60048036038101906102999190611f40565b610a7e565b6040516102ab919061281f565b60405180910390f35b6102bc610b36565b005b6102c6610bbe565b6040516102d3919061281f565b60405180910390f35b6102e4610bcf565b6040516102f1919061253b565b60405180910390f35b610302610bf9565b60405161030f91906125bd565b60405180910390f35b610332600480360381019061032d9190612139565b610c8b565b005b61034e6004803603810190610349919061206f565b610d21565b005b61036a60048036038101906103659190611ff4565b610ea2565b005b6103866004803603810190610381919061217a565b610f04565b60405161039391906125bd565b60405180910390f35b6103b660048036038101906103b19190611f69565b610f8c565b6040516103c391906125a2565b60405180910390f35b6103e660048036038101906103e19190611f40565b611020565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104b357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104c357506104c282611118565b5b9050919050565b6060600080546104d990612a75565b80601f016020809104026020016040519081016040528092919081815260200182805461050590612a75565b80156105525780601f1061052757610100808354040283529160200191610552565b820191906000526020600020905b81548152906001019060200180831161053557829003601f168201915b5050505050905090565b600061056782611182565b6105a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059d9061273f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105ec826109cc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561065d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610654906127bf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661067c6111ee565b73ffffffffffffffffffffffffffffffffffffffff1614806106ab57506106aa816106a56111ee565b610f8c565b5b6106ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e1906126bf565b60405180910390fd5b6106f483836111f6565b505050565b60606008805461070890612a75565b80601f016020809104026020016040519081016040528092919081815260200182805461073490612a75565b80156107815780601f1061075657610100808354040283529160200191610781565b820191906000526020600020905b81548152906001019060200180831161076457829003601f168201915b5050505050905090565b600960006107976111ee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561081f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610816906127ff565b60405180910390fd5b61082960076112af565b600061083560076112c5565b9050606481111561087b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108729061275f565b60405180910390fd5b6001600960006108896111ee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506108eb6108e56111ee565b826112d3565b6108f36111ee565b73ffffffffffffffffffffffffffffffffffffffff167fb7656808f0e04b4af7a20f7ef1caa7669f0d781f1ca4cba31a3ba467880766c982604051610938919061281f565b60405180910390a250565b60006064905090565b61095d6109576111ee565b826112f1565b61099c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610993906127df565b60405180910390fd5b6109a78383836113cf565b505050565b6109c783838360405180602001604052806000815250610ea2565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c906126ff565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae6906126df565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b3e6111ee565b73ffffffffffffffffffffffffffffffffffffffff16610b5c610bcf565b73ffffffffffffffffffffffffffffffffffffffff1614610bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba99061277f565b60405180910390fd5b610bbc600061162b565b565b6000610bca60076112c5565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610c0890612a75565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3490612a75565b8015610c815780601f10610c5657610100808354040283529160200191610c81565b820191906000526020600020905b815481529060010190602001808311610c6457829003601f168201915b5050505050905090565b610c936111ee565b73ffffffffffffffffffffffffffffffffffffffff16610cb1610bcf565b73ffffffffffffffffffffffffffffffffffffffff1614610d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfe9061277f565b60405180910390fd5b8060089080519060200190610d1d929190611d64565b5050565b610d296111ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e9061265f565b60405180910390fd5b8060056000610da46111ee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e516111ee565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e9691906125a2565b60405180910390a35050565b610eb3610ead6111ee565b836112f1565b610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee9906127df565b60405180910390fd5b610efe848484846116f1565b50505050565b6060610f0f82611182565b610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f459061269f565b60405180910390fd5b6000610f5861174d565b905080610f64846117df565b604051602001610f7592919061250c565b604051602081830303815290604052915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110286111ee565b73ffffffffffffffffffffffffffffffffffffffff16611046610bcf565b73ffffffffffffffffffffffffffffffffffffffff161461109c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110939061277f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561110c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611103906125ff565b60405180910390fd5b6111158161162b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611269836109cc565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6112ed82826040518060200160405280600081525061198c565b5050565b60006112fc82611182565b61133b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113329061267f565b60405180910390fd5b6000611346836109cc565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113b557508373ffffffffffffffffffffffffffffffffffffffff1661139d8461055c565b73ffffffffffffffffffffffffffffffffffffffff16145b806113c657506113c58185610f8c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166113ef826109cc565b73ffffffffffffffffffffffffffffffffffffffff1614611445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143c9061279f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac9061263f565b60405180910390fd5b6114c08383836119e7565b6114cb6000826111f6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461151b919061298b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115729190612904565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6116fc8484846113cf565b611708848484846119ec565b611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e906125df565b60405180910390fd5b50505050565b60606008805461175c90612a75565b80601f016020809104026020016040519081016040528092919081815260200182805461178890612a75565b80156117d55780601f106117aa576101008083540402835291602001916117d5565b820191906000526020600020905b8154815290600101906020018083116117b857829003601f168201915b5050505050905090565b60606000821415611827576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611987565b600082905060005b6000821461185957808061184290612ad8565b915050600a82611852919061295a565b915061182f565b60008167ffffffffffffffff81111561189b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118cd5781602001600182028036833780820191505090505b5090505b60008514611980576001826118e6919061298b565b9150600a856118f59190612b21565b60306119019190612904565b60f81b81838151811061193d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611979919061295a565b94506118d1565b8093505050505b919050565b6119968383611b83565b6119a360008484846119ec565b6119e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d9906125df565b60405180910390fd5b505050565b505050565b6000611a0d8473ffffffffffffffffffffffffffffffffffffffff16611d51565b15611b76578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a366111ee565b8786866040518563ffffffff1660e01b8152600401611a589493929190612556565b602060405180830381600087803b158015611a7257600080fd5b505af1925050508015611aa357506040513d601f19601f82011682018060405250810190611aa09190612110565b60015b611b26573d8060008114611ad3576040519150601f19603f3d011682016040523d82523d6000602084013e611ad8565b606091505b50600081511415611b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b15906125df565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611b7b565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bea9061271f565b60405180910390fd5b611bfc81611182565b15611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c339061261f565b60405180910390fd5b611c48600083836119e7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c989190612904565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054611d7090612a75565b90600052602060002090601f016020900481019282611d925760008555611dd9565b82601f10611dab57805160ff1916838001178555611dd9565b82800160010185558215611dd9579182015b82811115611dd8578251825591602001919060010190611dbd565b5b509050611de69190611dea565b5090565b5b80821115611e03576000816000905550600101611deb565b5090565b6000611e1a611e158461285f565b61283a565b905082815260208101848484011115611e3257600080fd5b611e3d848285612a33565b509392505050565b6000611e58611e5384612890565b61283a565b905082815260208101848484011115611e7057600080fd5b611e7b848285612a33565b509392505050565b600081359050611e9281613118565b92915050565b600081359050611ea78161312f565b92915050565b600081359050611ebc81613146565b92915050565b600081519050611ed181613146565b92915050565b600082601f830112611ee857600080fd5b8135611ef8848260208601611e07565b91505092915050565b600082601f830112611f1257600080fd5b8135611f22848260208601611e45565b91505092915050565b600081359050611f3a8161315d565b92915050565b600060208284031215611f5257600080fd5b6000611f6084828501611e83565b91505092915050565b60008060408385031215611f7c57600080fd5b6000611f8a85828601611e83565b9250506020611f9b85828601611e83565b9150509250929050565b600080600060608486031215611fba57600080fd5b6000611fc886828701611e83565b9350506020611fd986828701611e83565b9250506040611fea86828701611f2b565b9150509250925092565b6000806000806080858703121561200a57600080fd5b600061201887828801611e83565b945050602061202987828801611e83565b935050604061203a87828801611f2b565b925050606085013567ffffffffffffffff81111561205757600080fd5b61206387828801611ed7565b91505092959194509250565b6000806040838503121561208257600080fd5b600061209085828601611e83565b92505060206120a185828601611e98565b9150509250929050565b600080604083850312156120be57600080fd5b60006120cc85828601611e83565b92505060206120dd85828601611f2b565b9150509250929050565b6000602082840312156120f957600080fd5b600061210784828501611ead565b91505092915050565b60006020828403121561212257600080fd5b600061213084828501611ec2565b91505092915050565b60006020828403121561214b57600080fd5b600082013567ffffffffffffffff81111561216557600080fd5b61217184828501611f01565b91505092915050565b60006020828403121561218c57600080fd5b600061219a84828501611f2b565b91505092915050565b6121ac816129bf565b82525050565b6121bb816129d1565b82525050565b60006121cc826128c1565b6121d681856128d7565b93506121e6818560208601612a42565b6121ef81612c0e565b840191505092915050565b6000612205826128cc565b61220f81856128e8565b935061221f818560208601612a42565b61222881612c0e565b840191505092915050565b600061223e826128cc565b61224881856128f9565b9350612258818560208601612a42565b80840191505092915050565b60006122716032836128e8565b915061227c82612c1f565b604082019050919050565b60006122946026836128e8565b915061229f82612c6e565b604082019050919050565b60006122b7601c836128e8565b91506122c282612cbd565b602082019050919050565b60006122da6024836128e8565b91506122e582612ce6565b604082019050919050565b60006122fd6019836128e8565b915061230882612d35565b602082019050919050565b6000612320602c836128e8565b915061232b82612d5e565b604082019050919050565b60006123436025836128e8565b915061234e82612dad565b604082019050919050565b60006123666038836128e8565b915061237182612dfc565b604082019050919050565b6000612389602a836128e8565b915061239482612e4b565b604082019050919050565b60006123ac6029836128e8565b91506123b782612e9a565b604082019050919050565b60006123cf6020836128e8565b91506123da82612ee9565b602082019050919050565b60006123f2602c836128e8565b91506123fd82612f12565b604082019050919050565b60006124156005836128f9565b915061242082612f61565b600582019050919050565b60006124386021836128e8565b915061244382612f8a565b604082019050919050565b600061245b6020836128e8565b915061246682612fd9565b602082019050919050565b600061247e6029836128e8565b915061248982613002565b604082019050919050565b60006124a16021836128e8565b91506124ac82613051565b604082019050919050565b60006124c46031836128e8565b91506124cf826130a0565b604082019050919050565b60006124e76015836128e8565b91506124f2826130ef565b602082019050919050565b61250681612a29565b82525050565b60006125188285612233565b91506125248284612233565b915061252f82612408565b91508190509392505050565b600060208201905061255060008301846121a3565b92915050565b600060808201905061256b60008301876121a3565b61257860208301866121a3565b61258560408301856124fd565b818103606083015261259781846121c1565b905095945050505050565b60006020820190506125b760008301846121b2565b92915050565b600060208201905081810360008301526125d781846121fa565b905092915050565b600060208201905081810360008301526125f881612264565b9050919050565b6000602082019050818103600083015261261881612287565b9050919050565b60006020820190508181036000830152612638816122aa565b9050919050565b60006020820190508181036000830152612658816122cd565b9050919050565b60006020820190508181036000830152612678816122f0565b9050919050565b6000602082019050818103600083015261269881612313565b9050919050565b600060208201905081810360008301526126b881612336565b9050919050565b600060208201905081810360008301526126d881612359565b9050919050565b600060208201905081810360008301526126f88161237c565b9050919050565b600060208201905081810360008301526127188161239f565b9050919050565b60006020820190508181036000830152612738816123c2565b9050919050565b60006020820190508181036000830152612758816123e5565b9050919050565b600060208201905081810360008301526127788161242b565b9050919050565b600060208201905081810360008301526127988161244e565b9050919050565b600060208201905081810360008301526127b881612471565b9050919050565b600060208201905081810360008301526127d881612494565b9050919050565b600060208201905081810360008301526127f8816124b7565b9050919050565b60006020820190508181036000830152612818816124da565b9050919050565b600060208201905061283460008301846124fd565b92915050565b6000612844612855565b90506128508282612aa7565b919050565b6000604051905090565b600067ffffffffffffffff82111561287a57612879612bdf565b5b61288382612c0e565b9050602081019050919050565b600067ffffffffffffffff8211156128ab576128aa612bdf565b5b6128b482612c0e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061290f82612a29565b915061291a83612a29565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561294f5761294e612b52565b5b828201905092915050565b600061296582612a29565b915061297083612a29565b9250826129805761297f612b81565b5b828204905092915050565b600061299682612a29565b91506129a183612a29565b9250828210156129b4576129b3612b52565b5b828203905092915050565b60006129ca82612a09565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612a60578082015181840152602081019050612a45565b83811115612a6f576000848401525b50505050565b60006002820490506001821680612a8d57607f821691505b60208210811415612aa157612aa0612bb0565b5b50919050565b612ab082612c0e565b810181811067ffffffffffffffff82111715612acf57612ace612bdf565b5b80604052505050565b6000612ae382612a29565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b1657612b15612b52565b5b600182019050919050565b6000612b2c82612a29565b9150612b3783612a29565b925082612b4757612b46612b81565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f746f6b656e5552493a20717565727920666f72206e6f6e6578697374656e742060008201527f746f6b656e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f6d696e743a20616c6c20746f6b656e732068617665206265656e206d696e746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e743a20796f752068617665206d696e7465640000000000000000000000600082015250565b613121816129bf565b811461312c57600080fd5b50565b613138816129d1565b811461314357600080fd5b50565b61314f816129dd565b811461315a57600080fd5b50565b61316681612a29565b811461317157600080fd5b5056fea264697066735822122046417bbcc7456a9d48a18a4a912c8744465fa081f46cbcb2e14ea751e3548a4764736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5161673855674b416b746d6b783862373675786b6a336b44364b566e6d7850473477726173335279456238442f00000000000000000000

-----Decoded View---------------
Arg [0] : baseUri (string): ipfs://QmQag8UgKAktmkx8b76uxkj3kD6KVnmxPG4wras3RyEb8D/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5161673855674b416b746d6b783862373675786b6a336b
Arg [3] : 44364b566e6d7850473477726173335279456238442f00000000000000000000


Deployed Bytecode Sourcemap

36692:2057:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20771:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21716:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23275:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22798:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37175:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37965:506;;;:::i;:::-;;37276:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24165:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24575:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21410:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21140:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34549:94;;;:::i;:::-;;37373:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33898:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21885:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37851:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23568:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24831:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37485:296;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23934:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34798:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20771:305;20873:4;20925:25;20910:40;;;:11;:40;;;;:105;;;;20982:33;20967:48;;;:11;:48;;;;20910:105;:158;;;;21032:36;21056:11;21032:23;:36::i;:::-;20910:158;20890:178;;20771:305;;;:::o;21716:100::-;21770:13;21803:5;21796:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21716:100;:::o;23275:221::-;23351:7;23379:16;23387:7;23379;:16::i;:::-;23371:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23464:15;:24;23480:7;23464:24;;;;;;;;;;;;;;;;;;;;;23457:31;;23275:221;;;:::o;22798:411::-;22879:13;22895:23;22910:7;22895:14;:23::i;:::-;22879:39;;22943:5;22937:11;;:2;:11;;;;22929:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23037:5;23021:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23046:37;23063:5;23070:12;:10;:12::i;:::-;23046:16;:37::i;:::-;23021:62;22999:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23180:21;23189:2;23193:7;23180:8;:21::i;:::-;22798:411;;;:::o;37175:93::-;37218:13;37251:9;37244:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37175:93;:::o;37965:506::-;38010:10;:24;38021:12;:10;:12::i;:::-;38010:24;;;;;;;;;;;;;;;;;;;;;;;;;38009:25;38001:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;38071:24;:12;:22;:24::i;:::-;38106:22;38131;:12;:20;:22::i;:::-;38106:47;;36990:3;38172:14;:28;;38164:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;38312:4;38285:10;:24;38296:12;:10;:12::i;:::-;38285:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;38362:39;38372:12;:10;:12::i;:::-;38386:14;38362:9;:39::i;:::-;38434:12;:10;:12::i;:::-;38427:36;;;38448:14;38427:36;;;;;;:::i;:::-;;;;;;;;37965:506;:::o;37276:89::-;37320:7;36990:3;37340:17;;37276:89;:::o;24165:339::-;24360:41;24379:12;:10;:12::i;:::-;24393:7;24360:18;:41::i;:::-;24352:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24468:28;24478:4;24484:2;24488:7;24468:9;:28::i;:::-;24165:339;;;:::o;24575:185::-;24713:39;24730:4;24736:2;24740:7;24713:39;;;;;;;;;;;;:16;:39::i;:::-;24575:185;;;:::o;21410:239::-;21482:7;21502:13;21518:7;:16;21526:7;21518:16;;;;;;;;;;;;;;;;;;;;;21502:32;;21570:1;21553:19;;:5;:19;;;;21545:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21636:5;21629:12;;;21410:239;;;:::o;21140:208::-;21212:7;21257:1;21240:19;;:5;:19;;;;21232:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21324:9;:16;21334:5;21324:16;;;;;;;;;;;;;;;;21317:23;;21140:208;;;:::o;34549:94::-;34129:12;:10;:12::i;:::-;34118:23;;:7;:5;:7::i;:::-;:23;;;34110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34614:21:::1;34632:1;34614:9;:21::i;:::-;34549:94::o:0;37373:104::-;37420:7;37447:22;:12;:20;:22::i;:::-;37440:29;;37373:104;:::o;33898:87::-;33944:7;33971:6;;;;;;;;;;;33964:13;;33898:87;:::o;21885:104::-;21941:13;21974:7;21967:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21885:104;:::o;37851:106::-;34129:12;:10;:12::i;:::-;34118:23;;:7;:5;:7::i;:::-;:23;;;34110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37939:10:::1;37927:9;:22;;;;;;;;;;;;:::i;:::-;;37851:106:::0;:::o;23568:295::-;23683:12;:10;:12::i;:::-;23671:24;;:8;:24;;;;23663:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23783:8;23738:18;:32;23757:12;:10;:12::i;:::-;23738:32;;;;;;;;;;;;;;;:42;23771:8;23738:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23836:8;23807:48;;23822:12;:10;:12::i;:::-;23807:48;;;23846:8;23807:48;;;;;;:::i;:::-;;;;;;;;23568:295;;:::o;24831:328::-;25006:41;25025:12;:10;:12::i;:::-;25039:7;25006:18;:41::i;:::-;24998:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25112:39;25126:4;25132:2;25136:7;25145:5;25112:13;:39::i;:::-;24831:328;;;;:::o;37485:296::-;37558:13;37592:16;37600:7;37592;:16::i;:::-;37584:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;37663:18;37684:10;:8;:10::i;:::-;37663:31;;37736:4;37742:18;:7;:16;:18::i;:::-;37719:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37705:66;;;37485:296;;;:::o;23934:164::-;24031:4;24055:18;:25;24074:5;24055:25;;;;;;;;;;;;;;;:35;24081:8;24055:35;;;;;;;;;;;;;;;;;;;;;;;;;24048:42;;23934:164;;;;:::o;34798:192::-;34129:12;:10;:12::i;:::-;34118:23;;:7;:5;:7::i;:::-;:23;;;34110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34907:1:::1;34887:22;;:8;:22;;;;34879:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34963:19;34973:8;34963:9;:19::i;:::-;34798:192:::0;:::o;19269:157::-;19354:4;19393:25;19378:40;;;:11;:40;;;;19371:47;;19269:157;;;:::o;26669:127::-;26734:4;26786:1;26758:30;;:7;:16;26766:7;26758:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26751:37;;26669:127;;;:::o;16173:98::-;16226:7;16253:10;16246:17;;16173:98;:::o;30651:174::-;30753:2;30726:15;:24;30742:7;30726:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30809:7;30805:2;30771:46;;30780:23;30795:7;30780:14;:23::i;:::-;30771:46;;;;;;;;;;;;30651:174;;:::o;36125:127::-;36232:1;36214:7;:14;;;:19;;;;;;;;;;;36125:127;:::o;36003:114::-;36068:7;36095;:14;;;36088:21;;36003:114;;;:::o;27653:110::-;27729:26;27739:2;27743:7;27729:26;;;;;;;;;;;;:9;:26::i;:::-;27653:110;;:::o;26963:348::-;27056:4;27081:16;27089:7;27081;:16::i;:::-;27073:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27157:13;27173:23;27188:7;27173:14;:23::i;:::-;27157:39;;27226:5;27215:16;;:7;:16;;;:51;;;;27259:7;27235:31;;:20;27247:7;27235:11;:20::i;:::-;:31;;;27215:51;:87;;;;27270:32;27287:5;27294:7;27270:16;:32::i;:::-;27215:87;27207:96;;;26963:348;;;;:::o;29955:578::-;30114:4;30087:31;;:23;30102:7;30087:14;:23::i;:::-;:31;;;30079:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30197:1;30183:16;;:2;:16;;;;30175:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30253:39;30274:4;30280:2;30284:7;30253:20;:39::i;:::-;30357:29;30374:1;30378:7;30357:8;:29::i;:::-;30418:1;30399:9;:15;30409:4;30399:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30447:1;30430:9;:13;30440:2;30430:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30478:2;30459:7;:16;30467:7;30459:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30517:7;30513:2;30498:27;;30507:4;30498:27;;;;;;;;;;;;29955:578;;;:::o;34998:173::-;35054:16;35073:6;;;;;;;;;;;35054:25;;35099:8;35090:6;;:17;;;;;;;;;;;;;;;;;;35154:8;35123:40;;35144:8;35123:40;;;;;;;;;;;;34998:173;;:::o;26041:315::-;26198:28;26208:4;26214:2;26218:7;26198:9;:28::i;:::-;26245:48;26268:4;26274:2;26278:7;26287:5;26245:22;:48::i;:::-;26237:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26041:315;;;;:::o;38539:102::-;38591:13;38624:9;38617:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38539:102;:::o;16706:723::-;16762:13;16992:1;16983:5;:10;16979:53;;;17010:10;;;;;;;;;;;;;;;;;;;;;16979:53;17042:12;17057:5;17042:20;;17073:14;17098:78;17113:1;17105:4;:9;17098:78;;17131:8;;;;;:::i;:::-;;;;17162:2;17154:10;;;;;:::i;:::-;;;17098:78;;;17186:19;17218:6;17208:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17186:39;;17236:154;17252:1;17243:5;:10;17236:154;;17280:1;17270:11;;;;;:::i;:::-;;;17347:2;17339:5;:10;;;;:::i;:::-;17326:2;:24;;;;:::i;:::-;17313:39;;17296:6;17303;17296:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17376:2;17367:11;;;;;:::i;:::-;;;17236:154;;;17414:6;17400:21;;;;;16706:723;;;;:::o;27990:321::-;28120:18;28126:2;28130:7;28120:5;:18::i;:::-;28171:54;28202:1;28206:2;28210:7;28219:5;28171:22;:54::i;:::-;28149:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27990:321;;;:::o;32761:126::-;;;;:::o;31390:799::-;31545:4;31566:15;:2;:13;;;:15::i;:::-;31562:620;;;31618:2;31602:36;;;31639:12;:10;:12::i;:::-;31653:4;31659:7;31668:5;31602:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31598:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31861:1;31844:6;:13;:18;31840:272;;;31887:60;;;;;;;;;;:::i;:::-;;;;;;;;31840:272;32062:6;32056:13;32047:6;32043:2;32039:15;32032:38;31598:529;31735:41;;;31725:51;;;:6;:51;;;;31718:58;;;;;31562:620;32166:4;32159:11;;31390:799;;;;;;;:::o;28647:382::-;28741:1;28727:16;;:2;:16;;;;28719:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28800:16;28808:7;28800;:16::i;:::-;28799:17;28791:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28862:45;28891:1;28895:2;28899:7;28862:20;:45::i;:::-;28937:1;28920:9;:13;28930:2;28920:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28968:2;28949:7;:16;28957:7;28949:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29013:7;29009:2;28988:33;;29005:1;28988:33;;;;;;;;;;;;28647:382;;:::o;8209:387::-;8269:4;8477:12;8544:7;8532:20;8524:28;;8587:1;8580:4;:8;8573:15;;;8209:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;4941:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;5506:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;5877:6;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:118::-;6173:24;6191:5;6173:24;:::i;:::-;6168:3;6161:37;6151:53;;:::o;6210:109::-;6291:21;6306:5;6291:21;:::i;:::-;6286:3;6279:34;6269:50;;:::o;6325:360::-;6411:3;6439:38;6471:5;6439:38;:::i;:::-;6493:70;6556:6;6551:3;6493:70;:::i;:::-;6486:77;;6572:52;6617:6;6612:3;6605:4;6598:5;6594:16;6572:52;:::i;:::-;6649:29;6671:6;6649:29;:::i;:::-;6644:3;6640:39;6633:46;;6415:270;;;;;:::o;6691:364::-;6779:3;6807:39;6840:5;6807:39;:::i;:::-;6862:71;6926:6;6921:3;6862:71;:::i;:::-;6855:78;;6942:52;6987:6;6982:3;6975:4;6968:5;6964:16;6942:52;:::i;:::-;7019:29;7041:6;7019:29;:::i;:::-;7014:3;7010:39;7003:46;;6783:272;;;;;:::o;7061:377::-;7167:3;7195:39;7228:5;7195:39;:::i;:::-;7250:89;7332:6;7327:3;7250:89;:::i;:::-;7243:96;;7348:52;7393:6;7388:3;7381:4;7374:5;7370:16;7348:52;:::i;:::-;7425:6;7420:3;7416:16;7409:23;;7171:267;;;;;:::o;7444:366::-;7586:3;7607:67;7671:2;7666:3;7607:67;:::i;:::-;7600:74;;7683:93;7772:3;7683:93;:::i;:::-;7801:2;7796:3;7792:12;7785:19;;7590:220;;;:::o;7816:366::-;7958:3;7979:67;8043:2;8038:3;7979:67;:::i;:::-;7972:74;;8055:93;8144:3;8055:93;:::i;:::-;8173:2;8168:3;8164:12;8157:19;;7962:220;;;:::o;8188:366::-;8330:3;8351:67;8415:2;8410:3;8351:67;:::i;:::-;8344:74;;8427:93;8516:3;8427:93;:::i;:::-;8545:2;8540:3;8536:12;8529:19;;8334:220;;;:::o;8560:366::-;8702:3;8723:67;8787:2;8782:3;8723:67;:::i;:::-;8716:74;;8799:93;8888:3;8799:93;:::i;:::-;8917:2;8912:3;8908:12;8901:19;;8706:220;;;:::o;8932:366::-;9074:3;9095:67;9159:2;9154:3;9095:67;:::i;:::-;9088:74;;9171:93;9260:3;9171:93;:::i;:::-;9289:2;9284:3;9280:12;9273:19;;9078:220;;;:::o;9304:366::-;9446:3;9467:67;9531:2;9526:3;9467:67;:::i;:::-;9460:74;;9543:93;9632:3;9543:93;:::i;:::-;9661:2;9656:3;9652:12;9645:19;;9450:220;;;:::o;9676:366::-;9818:3;9839:67;9903:2;9898:3;9839:67;:::i;:::-;9832:74;;9915:93;10004:3;9915:93;:::i;:::-;10033:2;10028:3;10024:12;10017:19;;9822:220;;;:::o;10048:366::-;10190:3;10211:67;10275:2;10270:3;10211:67;:::i;:::-;10204:74;;10287:93;10376:3;10287:93;:::i;:::-;10405:2;10400:3;10396:12;10389:19;;10194:220;;;:::o;10420:366::-;10562:3;10583:67;10647:2;10642:3;10583:67;:::i;:::-;10576:74;;10659:93;10748:3;10659:93;:::i;:::-;10777:2;10772:3;10768:12;10761:19;;10566:220;;;:::o;10792:366::-;10934:3;10955:67;11019:2;11014:3;10955:67;:::i;:::-;10948:74;;11031:93;11120:3;11031:93;:::i;:::-;11149:2;11144:3;11140:12;11133:19;;10938:220;;;:::o;11164:366::-;11306:3;11327:67;11391:2;11386:3;11327:67;:::i;:::-;11320:74;;11403:93;11492:3;11403:93;:::i;:::-;11521:2;11516:3;11512:12;11505:19;;11310:220;;;:::o;11536:366::-;11678:3;11699:67;11763:2;11758:3;11699:67;:::i;:::-;11692:74;;11775:93;11864:3;11775:93;:::i;:::-;11893:2;11888:3;11884:12;11877:19;;11682:220;;;:::o;11908:400::-;12068:3;12089:84;12171:1;12166:3;12089:84;:::i;:::-;12082:91;;12182:93;12271:3;12182:93;:::i;:::-;12300:1;12295:3;12291:11;12284:18;;12072:236;;;:::o;12314:366::-;12456:3;12477:67;12541:2;12536:3;12477:67;:::i;:::-;12470:74;;12553:93;12642:3;12553:93;:::i;:::-;12671:2;12666:3;12662:12;12655:19;;12460:220;;;:::o;12686:366::-;12828:3;12849:67;12913:2;12908:3;12849:67;:::i;:::-;12842:74;;12925:93;13014:3;12925:93;:::i;:::-;13043:2;13038:3;13034:12;13027:19;;12832:220;;;:::o;13058:366::-;13200:3;13221:67;13285:2;13280:3;13221:67;:::i;:::-;13214:74;;13297:93;13386:3;13297:93;:::i;:::-;13415:2;13410:3;13406:12;13399:19;;13204:220;;;:::o;13430:366::-;13572:3;13593:67;13657:2;13652:3;13593:67;:::i;:::-;13586:74;;13669:93;13758:3;13669:93;:::i;:::-;13787:2;13782:3;13778:12;13771:19;;13576:220;;;:::o;13802:366::-;13944:3;13965:67;14029:2;14024:3;13965:67;:::i;:::-;13958:74;;14041:93;14130:3;14041:93;:::i;:::-;14159:2;14154:3;14150:12;14143:19;;13948:220;;;:::o;14174:366::-;14316:3;14337:67;14401:2;14396:3;14337:67;:::i;:::-;14330:74;;14413:93;14502:3;14413:93;:::i;:::-;14531:2;14526:3;14522:12;14515:19;;14320:220;;;:::o;14546:118::-;14633:24;14651:5;14633:24;:::i;:::-;14628:3;14621:37;14611:53;;:::o;14670:701::-;14951:3;14973:95;15064:3;15055:6;14973:95;:::i;:::-;14966:102;;15085:95;15176:3;15167:6;15085:95;:::i;:::-;15078:102;;15197:148;15341:3;15197:148;:::i;:::-;15190:155;;15362:3;15355:10;;14955:416;;;;;:::o;15377:222::-;15470:4;15508:2;15497:9;15493:18;15485:26;;15521:71;15589:1;15578:9;15574:17;15565:6;15521:71;:::i;:::-;15475:124;;;;:::o;15605:640::-;15800:4;15838:3;15827:9;15823:19;15815:27;;15852:71;15920:1;15909:9;15905:17;15896:6;15852:71;:::i;:::-;15933:72;16001:2;15990:9;15986:18;15977:6;15933:72;:::i;:::-;16015;16083:2;16072:9;16068:18;16059:6;16015:72;:::i;:::-;16134:9;16128:4;16124:20;16119:2;16108:9;16104:18;16097:48;16162:76;16233:4;16224:6;16162:76;:::i;:::-;16154:84;;15805:440;;;;;;;:::o;16251:210::-;16338:4;16376:2;16365:9;16361:18;16353:26;;16389:65;16451:1;16440:9;16436:17;16427:6;16389:65;:::i;:::-;16343:118;;;;:::o;16467:313::-;16580:4;16618:2;16607:9;16603:18;16595:26;;16667:9;16661:4;16657:20;16653:1;16642:9;16638:17;16631:47;16695:78;16768:4;16759:6;16695:78;:::i;:::-;16687:86;;16585:195;;;;:::o;16786:419::-;16952:4;16990:2;16979:9;16975:18;16967:26;;17039:9;17033:4;17029:20;17025:1;17014:9;17010:17;17003:47;17067:131;17193:4;17067:131;:::i;:::-;17059:139;;16957:248;;;:::o;17211:419::-;17377:4;17415:2;17404:9;17400:18;17392:26;;17464:9;17458:4;17454:20;17450:1;17439:9;17435:17;17428:47;17492:131;17618:4;17492:131;:::i;:::-;17484:139;;17382:248;;;:::o;17636:419::-;17802:4;17840:2;17829:9;17825:18;17817:26;;17889:9;17883:4;17879:20;17875:1;17864:9;17860:17;17853:47;17917:131;18043:4;17917:131;:::i;:::-;17909:139;;17807:248;;;:::o;18061:419::-;18227:4;18265:2;18254:9;18250:18;18242:26;;18314:9;18308:4;18304:20;18300:1;18289:9;18285:17;18278:47;18342:131;18468:4;18342:131;:::i;:::-;18334:139;;18232:248;;;:::o;18486:419::-;18652:4;18690:2;18679:9;18675:18;18667:26;;18739:9;18733:4;18729:20;18725:1;18714:9;18710:17;18703:47;18767:131;18893:4;18767:131;:::i;:::-;18759:139;;18657:248;;;:::o;18911:419::-;19077:4;19115:2;19104:9;19100:18;19092:26;;19164:9;19158:4;19154:20;19150:1;19139:9;19135:17;19128:47;19192:131;19318:4;19192:131;:::i;:::-;19184:139;;19082:248;;;:::o;19336:419::-;19502:4;19540:2;19529:9;19525:18;19517:26;;19589:9;19583:4;19579:20;19575:1;19564:9;19560:17;19553:47;19617:131;19743:4;19617:131;:::i;:::-;19609:139;;19507:248;;;:::o;19761:419::-;19927:4;19965:2;19954:9;19950:18;19942:26;;20014:9;20008:4;20004:20;20000:1;19989:9;19985:17;19978:47;20042:131;20168:4;20042:131;:::i;:::-;20034:139;;19932:248;;;:::o;20186:419::-;20352:4;20390:2;20379:9;20375:18;20367:26;;20439:9;20433:4;20429:20;20425:1;20414:9;20410:17;20403:47;20467:131;20593:4;20467:131;:::i;:::-;20459:139;;20357:248;;;:::o;20611:419::-;20777:4;20815:2;20804:9;20800:18;20792:26;;20864:9;20858:4;20854:20;20850:1;20839:9;20835:17;20828:47;20892:131;21018:4;20892:131;:::i;:::-;20884:139;;20782:248;;;:::o;21036:419::-;21202:4;21240:2;21229:9;21225:18;21217:26;;21289:9;21283:4;21279:20;21275:1;21264:9;21260:17;21253:47;21317:131;21443:4;21317:131;:::i;:::-;21309:139;;21207:248;;;:::o;21461:419::-;21627:4;21665:2;21654:9;21650:18;21642:26;;21714:9;21708:4;21704:20;21700:1;21689:9;21685:17;21678:47;21742:131;21868:4;21742:131;:::i;:::-;21734:139;;21632:248;;;:::o;21886:419::-;22052:4;22090:2;22079:9;22075:18;22067:26;;22139:9;22133:4;22129:20;22125:1;22114:9;22110:17;22103:47;22167:131;22293:4;22167:131;:::i;:::-;22159:139;;22057:248;;;:::o;22311:419::-;22477:4;22515:2;22504:9;22500:18;22492:26;;22564:9;22558:4;22554:20;22550:1;22539:9;22535:17;22528:47;22592:131;22718:4;22592:131;:::i;:::-;22584:139;;22482:248;;;:::o;22736:419::-;22902:4;22940:2;22929:9;22925:18;22917:26;;22989:9;22983:4;22979:20;22975:1;22964:9;22960:17;22953:47;23017:131;23143:4;23017:131;:::i;:::-;23009:139;;22907:248;;;:::o;23161:419::-;23327:4;23365:2;23354:9;23350:18;23342:26;;23414:9;23408:4;23404:20;23400:1;23389:9;23385:17;23378:47;23442:131;23568:4;23442:131;:::i;:::-;23434:139;;23332:248;;;:::o;23586:419::-;23752:4;23790:2;23779:9;23775:18;23767:26;;23839:9;23833:4;23829:20;23825:1;23814:9;23810:17;23803:47;23867:131;23993:4;23867:131;:::i;:::-;23859:139;;23757:248;;;:::o;24011:419::-;24177:4;24215:2;24204:9;24200:18;24192:26;;24264:9;24258:4;24254:20;24250:1;24239:9;24235:17;24228:47;24292:131;24418:4;24292:131;:::i;:::-;24284:139;;24182:248;;;:::o;24436:222::-;24529:4;24567:2;24556:9;24552:18;24544:26;;24580:71;24648:1;24637:9;24633:17;24624:6;24580:71;:::i;:::-;24534:124;;;;:::o;24664:129::-;24698:6;24725:20;;:::i;:::-;24715:30;;24754:33;24782:4;24774:6;24754:33;:::i;:::-;24705:88;;;:::o;24799:75::-;24832:6;24865:2;24859:9;24849:19;;24839:35;:::o;24880:307::-;24941:4;25031:18;25023:6;25020:30;25017:2;;;25053:18;;:::i;:::-;25017:2;25091:29;25113:6;25091:29;:::i;:::-;25083:37;;25175:4;25169;25165:15;25157:23;;24946:241;;;:::o;25193:308::-;25255:4;25345:18;25337:6;25334:30;25331:2;;;25367:18;;:::i;:::-;25331:2;25405:29;25427:6;25405:29;:::i;:::-;25397:37;;25489:4;25483;25479:15;25471:23;;25260:241;;;:::o;25507:98::-;25558:6;25592:5;25586:12;25576:22;;25565:40;;;:::o;25611:99::-;25663:6;25697:5;25691:12;25681:22;;25670:40;;;:::o;25716:168::-;25799:11;25833:6;25828:3;25821:19;25873:4;25868:3;25864:14;25849:29;;25811:73;;;;:::o;25890:169::-;25974:11;26008:6;26003:3;25996:19;26048:4;26043:3;26039:14;26024:29;;25986:73;;;;:::o;26065:148::-;26167:11;26204:3;26189:18;;26179:34;;;;:::o;26219:305::-;26259:3;26278:20;26296:1;26278:20;:::i;:::-;26273:25;;26312:20;26330:1;26312:20;:::i;:::-;26307:25;;26466:1;26398:66;26394:74;26391:1;26388:81;26385:2;;;26472:18;;:::i;:::-;26385:2;26516:1;26513;26509:9;26502:16;;26263:261;;;;:::o;26530:185::-;26570:1;26587:20;26605:1;26587:20;:::i;:::-;26582:25;;26621:20;26639:1;26621:20;:::i;:::-;26616:25;;26660:1;26650:2;;26665:18;;:::i;:::-;26650:2;26707:1;26704;26700:9;26695:14;;26572:143;;;;:::o;26721:191::-;26761:4;26781:20;26799:1;26781:20;:::i;:::-;26776:25;;26815:20;26833:1;26815:20;:::i;:::-;26810:25;;26854:1;26851;26848:8;26845:2;;;26859:18;;:::i;:::-;26845:2;26904:1;26901;26897:9;26889:17;;26766:146;;;;:::o;26918:96::-;26955:7;26984:24;27002:5;26984:24;:::i;:::-;26973:35;;26963:51;;;:::o;27020:90::-;27054:7;27097:5;27090:13;27083:21;27072:32;;27062:48;;;:::o;27116:149::-;27152:7;27192:66;27185:5;27181:78;27170:89;;27160:105;;;:::o;27271:126::-;27308:7;27348:42;27341:5;27337:54;27326:65;;27316:81;;;:::o;27403:77::-;27440:7;27469:5;27458:16;;27448:32;;;:::o;27486:154::-;27570:6;27565:3;27560;27547:30;27632:1;27623:6;27618:3;27614:16;27607:27;27537:103;;;:::o;27646:307::-;27714:1;27724:113;27738:6;27735:1;27732:13;27724:113;;;27823:1;27818:3;27814:11;27808:18;27804:1;27799:3;27795:11;27788:39;27760:2;27757:1;27753:10;27748:15;;27724:113;;;27855:6;27852:1;27849:13;27846:2;;;27935:1;27926:6;27921:3;27917:16;27910:27;27846:2;27695:258;;;;:::o;27959:320::-;28003:6;28040:1;28034:4;28030:12;28020:22;;28087:1;28081:4;28077:12;28108:18;28098:2;;28164:4;28156:6;28152:17;28142:27;;28098:2;28226;28218:6;28215:14;28195:18;28192:38;28189:2;;;28245:18;;:::i;:::-;28189:2;28010:269;;;;:::o;28285:281::-;28368:27;28390:4;28368:27;:::i;:::-;28360:6;28356:40;28498:6;28486:10;28483:22;28462:18;28450:10;28447:34;28444:62;28441:2;;;28509:18;;:::i;:::-;28441:2;28549:10;28545:2;28538:22;28328:238;;;:::o;28572:233::-;28611:3;28634:24;28652:5;28634:24;:::i;:::-;28625:33;;28680:66;28673:5;28670:77;28667:2;;;28750:18;;:::i;:::-;28667:2;28797:1;28790:5;28786:13;28779:20;;28615:190;;;:::o;28811:176::-;28843:1;28860:20;28878:1;28860:20;:::i;:::-;28855:25;;28894:20;28912:1;28894:20;:::i;:::-;28889:25;;28933:1;28923:2;;28938:18;;:::i;:::-;28923:2;28979:1;28976;28972:9;28967:14;;28845:142;;;;:::o;28993:180::-;29041:77;29038:1;29031:88;29138:4;29135:1;29128:15;29162:4;29159:1;29152:15;29179:180;29227:77;29224:1;29217:88;29324:4;29321:1;29314:15;29348:4;29345:1;29338:15;29365:180;29413:77;29410:1;29403:88;29510:4;29507:1;29500:15;29534:4;29531:1;29524:15;29551:180;29599:77;29596:1;29589:88;29696:4;29693:1;29686:15;29720:4;29717:1;29710:15;29737:102;29778:6;29829:2;29825:7;29820:2;29813:5;29809:14;29805:28;29795:38;;29785:54;;;:::o;29845:237::-;29985:34;29981:1;29973:6;29969:14;29962:58;30054:20;30049:2;30041:6;30037:15;30030:45;29951:131;:::o;30088:225::-;30228:34;30224:1;30216:6;30212:14;30205:58;30297:8;30292:2;30284:6;30280:15;30273:33;30194:119;:::o;30319:178::-;30459:30;30455:1;30447:6;30443:14;30436:54;30425:72;:::o;30503:223::-;30643:34;30639:1;30631:6;30627:14;30620:58;30712:6;30707:2;30699:6;30695:15;30688:31;30609:117;:::o;30732:175::-;30872:27;30868:1;30860:6;30856:14;30849:51;30838:69;:::o;30913:231::-;31053:34;31049:1;31041:6;31037:14;31030:58;31122:14;31117:2;31109:6;31105:15;31098:39;31019:125;:::o;31150:224::-;31290:34;31286:1;31278:6;31274:14;31267:58;31359:7;31354:2;31346:6;31342:15;31335:32;31256:118;:::o;31380:243::-;31520:34;31516:1;31508:6;31504:14;31497:58;31589:26;31584:2;31576:6;31572:15;31565:51;31486:137;:::o;31629:229::-;31769:34;31765:1;31757:6;31753:14;31746:58;31838:12;31833:2;31825:6;31821:15;31814:37;31735:123;:::o;31864:228::-;32004:34;32000:1;31992:6;31988:14;31981:58;32073:11;32068:2;32060:6;32056:15;32049:36;31970:122;:::o;32098:182::-;32238:34;32234:1;32226:6;32222:14;32215:58;32204:76;:::o;32286:231::-;32426:34;32422:1;32414:6;32410:14;32403:58;32495:14;32490:2;32482:6;32478:15;32471:39;32392:125;:::o;32523:155::-;32663:7;32659:1;32651:6;32647:14;32640:31;32629:49;:::o;32684:220::-;32824:34;32820:1;32812:6;32808:14;32801:58;32893:3;32888:2;32880:6;32876:15;32869:28;32790:114;:::o;32910:182::-;33050:34;33046:1;33038:6;33034:14;33027:58;33016:76;:::o;33098:228::-;33238:34;33234:1;33226:6;33222:14;33215:58;33307:11;33302:2;33294:6;33290:15;33283:36;33204:122;:::o;33332:220::-;33472:34;33468:1;33460:6;33456:14;33449:58;33541:3;33536:2;33528:6;33524:15;33517:28;33438:114;:::o;33558:236::-;33698:34;33694:1;33686:6;33682:14;33675:58;33767:19;33762:2;33754:6;33750:15;33743:44;33664:130;:::o;33800:171::-;33940:23;33936:1;33928:6;33924:14;33917:47;33906:65;:::o;33977:122::-;34050:24;34068:5;34050:24;:::i;:::-;34043:5;34040:35;34030:2;;34089:1;34086;34079:12;34030:2;34020:79;:::o;34105:116::-;34175:21;34190:5;34175:21;:::i;:::-;34168:5;34165:32;34155:2;;34211:1;34208;34201:12;34155:2;34145:76;:::o;34227:120::-;34299:23;34316:5;34299:23;:::i;:::-;34292:5;34289:34;34279:2;;34337:1;34334;34327:12;34279:2;34269:78;:::o;34353:122::-;34426:24;34444:5;34426:24;:::i;:::-;34419:5;34416:35;34406:2;;34465:1;34462;34455:12;34406:2;34396:79;:::o

Swarm Source

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