ETH Price: $3,401.58 (+6.71%)
Gas: 15 Gwei

Token

Ethereum Mail Service 0x1 (EMS 0x1)
 

Overview

Max Total Supply

0 EMS 0x1

Holders

465

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 EMS 0x1
0x06BE72D7b49915D10A7768A7F44e97D042D8291e
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:
EthereumMailService0x1

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

pragma solidity >=0.8.0;

//created by lailaibtc
//twitter:@lailaibtc
//change the world together
//Thanks everyone

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

/**
 * @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;
}

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

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @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;
    }
}

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

/**
 * @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(to).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 {}
}

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI)
        internal
        virtual
    {
        require(
            _exists(tokenId),
            "ERC721URIStorage: URI set of nonexistent token"
        );
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. 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;
        }
    }
}

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

contract ProxyRegistry {
    /* Authenticated proxies by user. */
    mapping(address => address) public proxies;
}

contract EthereumMailService0x1 is ERC721URIStorage, Ownable {
    using Strings for uint256;

    uint256 id = 1;

    uint256 ownerId = 1;

    mapping(uint256 => uint256) public levels;

    mapping(address => bool) public claimed;

    ProxyRegistry proxyRegistry;

    mapping(address => bool) whiteList;

    function getImage(uint256 tokenId) internal view returns (string memory) {
        string[5] memory parts;
        parts[
            0
        ] = unicode'<svg version="1.1" viewBox="0.0 0.0 699.0288713910761 700.005249343832" fill="none" stroke="none" stroke-linecap="square" stroke-miterlimit="10" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><style>.base { fill: white; font-family: san-serif; font-size: 50px;  animation: animate ';
        parts[1] = getShake(tokenId);
        parts[
            2
        ] = unicode's linear infinite;} @keyframes animate {	0%, 100% {	text-shadow: -2px -2px 0 #0ff, 2px 2px 0 #f00;	}	25% {	text-shadow: 2px 2px 0 #0ff, -2px -2px 0 #f00;	}	50% {	text-shadow: 2px -2px 0 #0ff, 2px -2px 0 #f00;	}	75% {	text-shadow: -2px 2px 0 #0ff, -2px 2px 0 #f00;	}}</style><clipPath id="p.0"><path d="m0 0l699.0289 0l0 700.00525l-699.0289 0l0 -700.00525z" clip-rule="nonzero"/></clipPath><g clip-path="url(#p.0)"><path fill="#000000" fill-opacity="0.0" d="m0 0l699.0289 0l0 700.00525l-699.0289 0z" fill-rule="evenodd"/><path fill="#000000" d="m0.96587926 1.9422572l699.0236 0l0 700.0l-699.0236 0z" fill-rule="evenodd"/><path stroke="#000000" stroke-width="1.0" stroke-linejoin="round" stroke-linecap="butt" d="m0.96587926 1.9422572l699.0236 0l0 700.0l-699.0236 0z" fill-rule="evenodd"/><path fill="#000000" d="m138.13255 351.94226l84.93805 -191.35434l254.81416 0l84.93805 191.35434l-84.93805 191.35431l-254.81416 0z" fill-rule="evenodd"/><path stroke="#ffffff" stroke-width="4.0" stroke-linejoin="round" stroke-linecap="butt" d="m138.13255 351.94226l84.93805 -191.35434l254.81416 0l84.93805 191.35434l-84.93805 191.35431l-254.81416 0z" fill-rule="evenodd"/><text x="260" y="360" class="base">level ';
        parts[3] = levels[tokenId].toString();
        parts[4] = "</text></g></svg>";
        return
            string(
                abi.encodePacked(
                    parts[0],
                    parts[1],
                    parts[2],
                    parts[3],
                    parts[4]
                )
            );
    }

    function getShake(uint256 tokenId) internal view returns (string memory) {
        if (levels[tokenId] == 0) return "0";
        if (levels[tokenId] >= 100) return "1";
        return (10 - levels[tokenId] / 10).toString();
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        string memory base64Json = Base64.encode(
            bytes(
                string(
                    abi.encodePacked(
                        '{"name": "EMS 0x1 #',
                        tokenId.toString(),
                        '", "description": "EMS 0x1 is a kind of NFT that evolves with secondary sales. Other data are omitted for explanation by others.Thanks to everyone who helped ems", "image": "data:image/svg+xml;base64,',
                        Base64.encode(bytes(getImage(tokenId))),
                        '","attributes": [{"trait_type": "Level", "value": "',
                        levels[tokenId].toString(),
                        '"}]}'
                    )
                )
            )
        );

        return
            string(
                abi.encodePacked("data:application/json;base64,", base64Json)
            );
    }

    function compound(uint256[] memory tokenIds) public {
        require(
            tokenIds.length > 1,
            "Ethereum Mail Service 0x1:tokenIds length must gt 1"
        );
        uint256 sumLevel = 0;
        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(
                ownerOf(tokenIds[i]) == msg.sender,
                string(
                    abi.encodePacked(
                        "Ethereum Mail Service 0x1: must ownerOf tokenId ",
                        tokenIds[i].toString()
                    )
                )
            );
            sumLevel += levels[tokenIds[i]];
            _burn(tokenIds[i]);
        }
        levels[id] = sumLevel;
        _safeMint(_msgSender(), id);
        id++;
    }

    /**
     * @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"
        );
        levelUp(from, tokenId);

        _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"
        );
        levelUp(from, tokenId);
        _safeTransfer(from, to, tokenId, _data);
    }

    function levelUp(address from, uint256 tokenId) private {
        address proxy = proxyRegistry.proxies(from);
        if (proxy == msg.sender && msg.sender != address(0)) {
            levels[tokenId] += 1;
            return;
        }
    }

    function claim() public {
        require(
            id < 3188 || whiteList[msg.sender],
            "Ethereum Mail Service 0x: no stock"
        );
        require(
            !claimed[msg.sender],
            "Ethereum Mail Service 0x: already claimed"
        );
        _safeMint(_msgSender(), id);
        id++;
        claimed[msg.sender] = true;
    }

    function claimOwner() public onlyOwner{
        require(
            ownerId < 88 ,
            "Ethereum Mail Service 0x: no stock"
        ); 
        _safeMint(_msgSender(), id);               
        id++;
        ownerId++;
    }

    function addWhiteList(address[] memory _addrs) public onlyOwner {
        for (uint256 i = 0; i < _addrs.length; i++) {
            whiteList[_addrs[i]]=true;
        }
    }

    constructor(ProxyRegistry _proxyRegistry)
        public
        ERC721("Ethereum Mail Service 0x1", "EMS 0x1")
    {
        proxyRegistry = _proxyRegistry;
    }
}

/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
    bytes internal constant TABLE =
        "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)
                )
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)
                )
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)
                )
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract ProxyRegistry","name":"_proxyRegistry","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_addrs","type":"address[]"}],"name":"addWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"compound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"levels","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600160085560016009553480156200001b57600080fd5b5060405162002c0338038062002c038339810160408190526200003e91620001eb565b604080518082018252601981527f457468657265756d204d61696c20536572766963652030783100000000000000602080830191825283518085019094526007845266454d532030783160c81b908401528151919291620000a29160009162000145565b508051620000b890600190602084019062000145565b5050506000620000cd6200014160201b60201c565b600780546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c80546001600160a01b0319166001600160a01b03929092169190911790556200025a565b3390565b82805462000153906200021d565b90600052602060002090601f016020900481019282620001775760008555620001c2565b82601f106200019257805160ff1916838001178555620001c2565b82800160010185558215620001c2579182015b82811115620001c2578251825591602001919060010190620001a5565b50620001d0929150620001d4565b5090565b5b80821115620001d05760008155600101620001d5565b600060208284031215620001fe57600080fd5b81516001600160a01b03811681146200021657600080fd5b9392505050565b600181811c908216806200023257607f821691505b602082108114156200025457634e487b7160e01b600052602260045260246000fd5b50919050565b612999806200026a6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063b2596a671161007c578063b2596a6714610288578063b88d4fde146102a8578063c87b56dd146102bb578063c884ef83146102ce578063e985e9c5146102f1578063f2fde38b1461032d57600080fd5b806370a0823114610233578063715018a6146102545780638da5cb5b1461025c57806395d89b411461026d578063a22cb4651461027557600080fd5b8063335ce7a91161010a578063335ce7a9146101d75780633bd1adec146101ea57806342842e0e146101f25780634e71d92d146102055780635e1045ec1461020d5780636352211e1461022057600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806323b872dd146101c4575b600080fd5b61015a610155366004611ca9565b610340565b60405190151581526020015b60405180910390f35b610177610392565b604051610166919061203f565b610197610192366004611ce3565b610424565b6040516001600160a01b039091168152602001610166565b6101c26101bd366004611b4b565b6104be565b005b6101c26101d2366004611a13565b6105d4565b6101c26101e5366004611c1d565b61060f565b6101c26107c8565b6101c2610200366004611a13565b610849565b6101c2610864565b6101c261021b366004611b77565b61094d565b61019761022e366004611ce3565b6109e3565b610246610241366004611999565b610a5a565b604051908152602001610166565b6101c2610ae1565b6007546001600160a01b0316610197565b610177610b55565b6101c2610283366004611b18565b610b64565b610246610296366004611ce3565b600a6020526000908152604090205481565b6101c26102b6366004611a54565b610c29565b6101776102c9366004611ce3565b610c6b565b61015a6102dc366004611999565b600b6020526000908152604090205460ff1681565b61015a6102ff3660046119da565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101c261033b366004611999565b610cf4565b60006001600160e01b031982166380ac58cd60e01b148061037157506001600160e01b03198216635b5e139f60e01b145b8061038c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546103a19061224f565b80601f01602080910402602001604051908101604052809291908181526020018280546103cd9061224f565b801561041a5780601f106103ef5761010080835404028352916020019161041a565b820191906000526020600020905b8154815290600101906020018083116103fd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104a25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104c9826109e3565b9050806001600160a01b0316836001600160a01b031614156105375760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610499565b336001600160a01b0382161480610553575061055381336102ff565b6105c55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610499565b6105cf8383610ddf565b505050565b6105de3382610e4d565b6105fa5760405162461bcd60e51b81526004016104999061211b565b6106048382610f44565b6105cf838383611009565b600181511161067c5760405162461bcd60e51b815260206004820152603360248201527f457468657265756d204d61696c2053657276696365203078313a746f6b656e496044820152726473206c656e677468206d757374206774203160681b6064820152608401610499565b6000805b825181101561078d57336001600160a01b03166106b58483815181106106a8576106a86122e5565b60200260200101516109e3565b6001600160a01b0316146106e18483815181106106d4576106d46122e5565b60200260200101516111a9565b6040516020016106f19190611fa4565b6040516020818303038152906040529061071e5760405162461bcd60e51b8152600401610499919061203f565b50600a6000848381518110610735576107356122e5565b60200260200101518152602001908152602001600020548261075791906121c1565b915061077b83828151811061076e5761076e6122e5565b60200260200101516112a7565b806107858161228a565b915050610680565b506008546000908152600a602052604090208190556107af335b6008546112ea565b600880549060006107bf8361228a565b91905055505050565b6007546001600160a01b031633146107f25760405162461bcd60e51b8152600401610499906120e6565b6058600954106108145760405162461bcd60e51b8152600401610499906120a4565b61081d336107a7565b6008805490600061082d8361228a565b9091555050600980549060006108428361228a565b9190505550565b6105cf83838360405180602001604052806000815250610c29565b610c7460085410806108855750336000908152600d602052604090205460ff165b6108a15760405162461bcd60e51b8152600401610499906120a4565b336000908152600b602052604090205460ff16156109135760405162461bcd60e51b815260206004820152602960248201527f457468657265756d204d61696c20536572766963652030783a20616c726561646044820152681e4818db185a5b595960ba1b6064820152608401610499565b61091c336107a7565b6008805490600061092c8361228a565b9091555050336000908152600b60205260409020805460ff19166001179055565b6007546001600160a01b031633146109775760405162461bcd60e51b8152600401610499906120e6565b60005b81518110156109df576001600d600084848151811061099b5761099b6122e5565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806109d78161228a565b91505061097a565b5050565b6000818152600260205260408120546001600160a01b03168061038c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610499565b60006001600160a01b038216610ac55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610499565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314610b0b5760405162461bcd60e51b8152600401610499906120e6565b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b6060600180546103a19061224f565b6001600160a01b038216331415610bbd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610499565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c333383610e4d565b610c4f5760405162461bcd60e51b81526004016104999061211b565b610c598483610f44565b610c6584848484611304565b50505050565b60606000610cca610c7b846111a9565b610c8c610c8786611337565b611407565b6000868152600a6020526040902054610ca4906111a9565b604051602001610cb693929190611daf565b604051602081830303815290604052611407565b905080604051602001610cdd9190611f5f565b604051602081830303815290604052915050919050565b6007546001600160a01b03163314610d1e5760405162461bcd60e51b8152600401610499906120e6565b6001600160a01b038116610d835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610499565b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e14826109e3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610ec65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610499565b6000610ed1836109e3565b9050806001600160a01b0316846001600160a01b03161480610f0c5750836001600160a01b0316610f0184610424565b6001600160a01b0316145b80610f3c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b600c5460405163c455279160e01b81526001600160a01b038481166004830152600092169063c45527919060240160206040518083038186803b158015610f8a57600080fd5b505afa158015610f9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc291906119bd565b90506001600160a01b03811633148015610fdb57503315155b156105cf576000828152600a60205260408120805460019290610fff9084906121c1565b9091555050505050565b826001600160a01b031661101c826109e3565b6001600160a01b0316146110845760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610499565b6001600160a01b0382166110e65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610499565b6110f1600082610ddf565b6001600160a01b038316600090815260036020526040812080546001929061111a90849061220c565b90915550506001600160a01b03821660009081526003602052604081208054600192906111489084906121c1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6060816111cd5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111f757806111e18161228a565b91506111f09050600a836121d9565b91506111d1565b60008167ffffffffffffffff811115611212576112126122fb565b6040519080825280601f01601f19166020018201604052801561123c576020820181803683370190505b5090505b8415610f3c5761125160018361220c565b915061125e600a866122a5565b6112699060306121c1565b60f81b81838151811061127e5761127e6122e5565b60200101906001600160f81b031916908160001a9053506112a0600a866121d9565b9450611240565b6112b08161156d565b600081815260066020526040902080546112c99061224f565b1590506112e75760008181526006602052604081206112e79161191f565b50565b6109df828260405180602001604052806000815250611608565b61130f848484611009565b61131b8484848461163b565b610c655760405162461bcd60e51b815260040161049990612052565b6060611341611959565b60405180610160016040528061013881526020016127ec6101389139815261136883611748565b8160016020020181905250604051806104e001604052806104af815260200161233d6104af91396040808301919091526000848152600a60205220546113ad906111a9565b6060820190815260408051808201825260118152701e17ba32bc3a1f1e17b39f1e17b9bb339f60791b602080830191909152608085018290528451818601518487015195519451610cdd9692959194929391929101611d44565b805160609080611427575050604080516020810190915260008152919050565b600060036114368360026121c1565b61144091906121d9565b61144b9060046121ed565b9050600061145a8260206121c1565b67ffffffffffffffff811115611472576114726122fb565b6040519080825280601f01601f19166020018201604052801561149c576020820181803683370190505b5090506000604051806060016040528060408152602001612924604091399050600181016020830160005b86811015611528576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b8352600490920191016114c7565b50600386066001811461154257600281146115535761155f565b613d3d60f01b60011983015261155f565b603d60f81b6000198301525b505050918152949350505050565b6000611578826109e3565b9050611585600083610ddf565b6001600160a01b03811660009081526003602052604081208054600192906115ae90849061220c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61161283836117dd565b61161f600084848461163b565b6105cf5760405162461bcd60e51b815260040161049990612052565b60006001600160a01b0384163b1561173d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061167f903390899088908890600401612002565b602060405180830381600087803b15801561169957600080fd5b505af19250505080156116c9575060408051601f3d908101601f191682019092526116c691810190611cc6565b60015b611723573d8080156116f7576040519150601f19603f3d011682016040523d82523d6000602084013e6116fc565b606091505b50805161171b5760405162461bcd60e51b815260040161049990612052565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f3c565b506001949350505050565b6000818152600a602052604090205460609061177b5750506040805180820190915260018152600360fc1b602082015290565b6000828152600a60205260409020546064116117ae5750506040805180820190915260018152603160f81b602082015290565b6000828152600a602081905260409091205461038c916117cd916121d9565b6117d890600a61220c565b6111a9565b6001600160a01b0382166118335760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610499565b6000818152600260205260409020546001600160a01b0316156118985760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610499565b6001600160a01b03821660009081526003602052604081208054600192906118c19084906121c1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b50805461192b9061224f565b6000825580601f1061193b575050565b601f0160209004906000526020600020908101906112e79190611980565b6040518060a001604052806005905b60608152602001906001900390816119685790505090565b5b808211156119955760008155600101611981565b5090565b6000602082840312156119ab57600080fd5b81356119b681612311565b9392505050565b6000602082840312156119cf57600080fd5b81516119b681612311565b600080604083850312156119ed57600080fd5b82356119f881612311565b91506020830135611a0881612311565b809150509250929050565b600080600060608486031215611a2857600080fd5b8335611a3381612311565b92506020840135611a4381612311565b929592945050506040919091013590565b60008060008060808587031215611a6a57600080fd5b8435611a7581612311565b9350602085810135611a8681612311565b935060408601359250606086013567ffffffffffffffff80821115611aaa57600080fd5b818801915088601f830112611abe57600080fd5b813581811115611ad057611ad06122fb565b611ae2601f8201601f1916850161216c565b91508082528984828501011115611af857600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215611b2b57600080fd5b8235611b3681612311565b915060208301358015158114611a0857600080fd5b60008060408385031215611b5e57600080fd5b8235611b6981612311565b946020939093013593505050565b60006020808385031215611b8a57600080fd5b823567ffffffffffffffff811115611ba157600080fd5b8301601f81018513611bb257600080fd5b8035611bc5611bc08261219d565b61216c565b80828252848201915084840188868560051b8701011115611be557600080fd5b600094505b83851015611c11578035611bfd81612311565b835260019490940193918501918501611bea565b50979650505050505050565b60006020808385031215611c3057600080fd5b823567ffffffffffffffff811115611c4757600080fd5b8301601f81018513611c5857600080fd5b8035611c66611bc08261219d565b80828252848201915084840188868560051b8701011115611c8657600080fd5b600094505b83851015611c11578035835260019490940193918501918501611c8b565b600060208284031215611cbb57600080fd5b81356119b681612326565b600060208284031215611cd857600080fd5b81516119b681612326565b600060208284031215611cf557600080fd5b5035919050565b60008151808452611d14816020860160208601612223565b601f01601f19169290920160200192915050565b60008151611d3a818560208601612223565b9290920192915050565b60008651611d56818460208b01612223565b865190830190611d6a818360208b01612223565b8651910190611d7d818360208a01612223565b8551910190611d90818360208901612223565b8451910190611da3818360208801612223565b01979650505050505050565b727b226e616d65223a2022454d5320307831202360681b81528351600090611dde816013850160208901612223565b7f222c20226465736372697074696f6e223a2022454d53203078312069732061206013918401918201527f6b696e64206f66204e465420746861742065766f6c766573207769746820736560338201527f636f6e646172792073616c65732e204f74686572206461746120617265206f6d60538201527f697474656420666f72206578706c616e6174696f6e206279206f74686572732e60738201527f5468616e6b7320746f2065766572796f6e652077686f2068656c70656420656d60938201527f73222c2022696d616765223a2022646174613a696d6167652f7376672b786d6c60b3820152670ed8985cd94d8d0b60c21b60d38201528451611eea8160db840160208901612223565b611f54611f44611f3e60db848601017f222c2261747472696275746573223a205b7b2274726169745f74797065223a20815272112632bb32b6111610113b30b63ab2911d101160691b602082015260330190565b87611d28565b63227d5d7d60e01b815260040190565b979650505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251611f9781601d850160208701612223565b91909101601d0192915050565b7f457468657265756d204d61696c2053657276696365203078313a206d7573742081526f037bbb732b927b3103a37b5b2b724b2160851b602082015260008251611ff5816030850160208701612223565b9190910160300192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061203590830184611cfc565b9695505050505050565b6020815260006119b66020830184611cfc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526022908201527f457468657265756d204d61696c20536572766963652030783a206e6f2073746f604082015261636b60f01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612195576121956122fb565b604052919050565b600067ffffffffffffffff8211156121b7576121b76122fb565b5060051b60200190565b600082198211156121d4576121d46122b9565b500190565b6000826121e8576121e86122cf565b500490565b6000816000190483118215151615612207576122076122b9565b500290565b60008282101561221e5761221e6122b9565b500390565b60005b8381101561223e578181015183820152602001612226565b83811115610c655750506000910152565b600181811c9082168061226357607f821691505b6020821081141561228457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561229e5761229e6122b9565b5060010190565b6000826122b4576122b46122cf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146112e757600080fd5b6001600160e01b0319811681146112e757600080fdfe73206c696e65617220696e66696e6974653b7d20406b65796672616d657320616e696d617465207b0930252c2031303025207b09746578742d736861646f773a202d327078202d327078203020233066662c2032707820327078203020236630303b097d09323525207b09746578742d736861646f773a2032707820327078203020233066662c202d327078202d327078203020236630303b097d09353025207b09746578742d736861646f773a20327078202d327078203020233066662c20327078202d327078203020236630303b097d09373525207b09746578742d736861646f773a202d32707820327078203020233066662c202d32707820327078203020236630303b097d7d3c2f7374796c653e3c636c6970506174682069643d22702e30223e3c7061746820643d226d3020306c3639392e3032383920306c30203730302e30303532356c2d3639392e3032383920306c30202d3730302e30303532357a2220636c69702d72756c653d226e6f6e7a65726f222f3e3c2f636c6970506174683e3c6720636c69702d706174683d2275726c2823702e3029223e3c706174682066696c6c3d2223303030303030222066696c6c2d6f7061636974793d22302e302220643d226d3020306c3639392e3032383920306c30203730302e30303532356c2d3639392e3032383920307a222066696c6c2d72756c653d226576656e6f6464222f3e3c706174682066696c6c3d22233030303030302220643d226d302e393635383739323620312e393432323537326c3639392e3032333620306c30203730302e306c2d3639392e3032333620307a222066696c6c2d72756c653d226576656e6f6464222f3e3c70617468207374726f6b653d222330303030303022207374726f6b652d77696474683d22312e3022207374726f6b652d6c696e656a6f696e3d22726f756e6422207374726f6b652d6c696e656361703d22627574742220643d226d302e393635383739323620312e393432323537326c3639392e3032333620306c30203730302e306c2d3639392e3032333620307a222066696c6c2d72756c653d226576656e6f6464222f3e3c706174682066696c6c3d22233030303030302220643d226d3133382e3133323535203335312e39343232366c38342e3933383035202d3139312e33353433346c3235342e383134313620306c38342e3933383035203139312e33353433346c2d38342e3933383035203139312e33353433316c2d3235342e383134313620307a222066696c6c2d72756c653d226576656e6f6464222f3e3c70617468207374726f6b653d222366666666666622207374726f6b652d77696474683d22342e3022207374726f6b652d6c696e656a6f696e3d22726f756e6422207374726f6b652d6c696e656361703d22627574742220643d226d3133382e3133323535203335312e39343232366c38342e3933383035202d3139312e33353433346c3235342e383134313620306c38342e3933383035203139312e33353433346c2d38342e3933383035203139312e33353433316c2d3235342e383134313620307a222066696c6c2d72756c653d226576656e6f6464222f3e3c7465787420783d223236302220793d223336302220636c6173733d2262617365223e6c6576656c203c7376672076657273696f6e3d22312e31222076696577426f783d22302e3020302e30203639392e30323838373133393130373631203730302e303035323439333433383332222066696c6c3d226e6f6e6522207374726f6b653d226e6f6e6522207374726f6b652d6c696e656361703d2273717561726522207374726f6b652d6d697465726c696d69743d2231302220786d6c6e733a786c696e6b3d22687474703a2f2f7777772e77332e6f72672f313939392f786c696e6b2220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073616e2d73657269663b20666f6e742d73697a653a20353070783b2020616e696d6174696f6e3a20616e696d617465204142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220be612b979251eb1abdd8f871c6f331018e49dd75114596bb4e6c09fab3abf04664736f6c63430008070033000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063b2596a671161007c578063b2596a6714610288578063b88d4fde146102a8578063c87b56dd146102bb578063c884ef83146102ce578063e985e9c5146102f1578063f2fde38b1461032d57600080fd5b806370a0823114610233578063715018a6146102545780638da5cb5b1461025c57806395d89b411461026d578063a22cb4651461027557600080fd5b8063335ce7a91161010a578063335ce7a9146101d75780633bd1adec146101ea57806342842e0e146101f25780634e71d92d146102055780635e1045ec1461020d5780636352211e1461022057600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806323b872dd146101c4575b600080fd5b61015a610155366004611ca9565b610340565b60405190151581526020015b60405180910390f35b610177610392565b604051610166919061203f565b610197610192366004611ce3565b610424565b6040516001600160a01b039091168152602001610166565b6101c26101bd366004611b4b565b6104be565b005b6101c26101d2366004611a13565b6105d4565b6101c26101e5366004611c1d565b61060f565b6101c26107c8565b6101c2610200366004611a13565b610849565b6101c2610864565b6101c261021b366004611b77565b61094d565b61019761022e366004611ce3565b6109e3565b610246610241366004611999565b610a5a565b604051908152602001610166565b6101c2610ae1565b6007546001600160a01b0316610197565b610177610b55565b6101c2610283366004611b18565b610b64565b610246610296366004611ce3565b600a6020526000908152604090205481565b6101c26102b6366004611a54565b610c29565b6101776102c9366004611ce3565b610c6b565b61015a6102dc366004611999565b600b6020526000908152604090205460ff1681565b61015a6102ff3660046119da565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101c261033b366004611999565b610cf4565b60006001600160e01b031982166380ac58cd60e01b148061037157506001600160e01b03198216635b5e139f60e01b145b8061038c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546103a19061224f565b80601f01602080910402602001604051908101604052809291908181526020018280546103cd9061224f565b801561041a5780601f106103ef5761010080835404028352916020019161041a565b820191906000526020600020905b8154815290600101906020018083116103fd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104a25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104c9826109e3565b9050806001600160a01b0316836001600160a01b031614156105375760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610499565b336001600160a01b0382161480610553575061055381336102ff565b6105c55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610499565b6105cf8383610ddf565b505050565b6105de3382610e4d565b6105fa5760405162461bcd60e51b81526004016104999061211b565b6106048382610f44565b6105cf838383611009565b600181511161067c5760405162461bcd60e51b815260206004820152603360248201527f457468657265756d204d61696c2053657276696365203078313a746f6b656e496044820152726473206c656e677468206d757374206774203160681b6064820152608401610499565b6000805b825181101561078d57336001600160a01b03166106b58483815181106106a8576106a86122e5565b60200260200101516109e3565b6001600160a01b0316146106e18483815181106106d4576106d46122e5565b60200260200101516111a9565b6040516020016106f19190611fa4565b6040516020818303038152906040529061071e5760405162461bcd60e51b8152600401610499919061203f565b50600a6000848381518110610735576107356122e5565b60200260200101518152602001908152602001600020548261075791906121c1565b915061077b83828151811061076e5761076e6122e5565b60200260200101516112a7565b806107858161228a565b915050610680565b506008546000908152600a602052604090208190556107af335b6008546112ea565b600880549060006107bf8361228a565b91905055505050565b6007546001600160a01b031633146107f25760405162461bcd60e51b8152600401610499906120e6565b6058600954106108145760405162461bcd60e51b8152600401610499906120a4565b61081d336107a7565b6008805490600061082d8361228a565b9091555050600980549060006108428361228a565b9190505550565b6105cf83838360405180602001604052806000815250610c29565b610c7460085410806108855750336000908152600d602052604090205460ff165b6108a15760405162461bcd60e51b8152600401610499906120a4565b336000908152600b602052604090205460ff16156109135760405162461bcd60e51b815260206004820152602960248201527f457468657265756d204d61696c20536572766963652030783a20616c726561646044820152681e4818db185a5b595960ba1b6064820152608401610499565b61091c336107a7565b6008805490600061092c8361228a565b9091555050336000908152600b60205260409020805460ff19166001179055565b6007546001600160a01b031633146109775760405162461bcd60e51b8152600401610499906120e6565b60005b81518110156109df576001600d600084848151811061099b5761099b6122e5565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806109d78161228a565b91505061097a565b5050565b6000818152600260205260408120546001600160a01b03168061038c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610499565b60006001600160a01b038216610ac55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610499565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314610b0b5760405162461bcd60e51b8152600401610499906120e6565b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b6060600180546103a19061224f565b6001600160a01b038216331415610bbd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610499565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c333383610e4d565b610c4f5760405162461bcd60e51b81526004016104999061211b565b610c598483610f44565b610c6584848484611304565b50505050565b60606000610cca610c7b846111a9565b610c8c610c8786611337565b611407565b6000868152600a6020526040902054610ca4906111a9565b604051602001610cb693929190611daf565b604051602081830303815290604052611407565b905080604051602001610cdd9190611f5f565b604051602081830303815290604052915050919050565b6007546001600160a01b03163314610d1e5760405162461bcd60e51b8152600401610499906120e6565b6001600160a01b038116610d835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610499565b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e14826109e3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610ec65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610499565b6000610ed1836109e3565b9050806001600160a01b0316846001600160a01b03161480610f0c5750836001600160a01b0316610f0184610424565b6001600160a01b0316145b80610f3c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b600c5460405163c455279160e01b81526001600160a01b038481166004830152600092169063c45527919060240160206040518083038186803b158015610f8a57600080fd5b505afa158015610f9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc291906119bd565b90506001600160a01b03811633148015610fdb57503315155b156105cf576000828152600a60205260408120805460019290610fff9084906121c1565b9091555050505050565b826001600160a01b031661101c826109e3565b6001600160a01b0316146110845760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610499565b6001600160a01b0382166110e65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610499565b6110f1600082610ddf565b6001600160a01b038316600090815260036020526040812080546001929061111a90849061220c565b90915550506001600160a01b03821660009081526003602052604081208054600192906111489084906121c1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6060816111cd5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111f757806111e18161228a565b91506111f09050600a836121d9565b91506111d1565b60008167ffffffffffffffff811115611212576112126122fb565b6040519080825280601f01601f19166020018201604052801561123c576020820181803683370190505b5090505b8415610f3c5761125160018361220c565b915061125e600a866122a5565b6112699060306121c1565b60f81b81838151811061127e5761127e6122e5565b60200101906001600160f81b031916908160001a9053506112a0600a866121d9565b9450611240565b6112b08161156d565b600081815260066020526040902080546112c99061224f565b1590506112e75760008181526006602052604081206112e79161191f565b50565b6109df828260405180602001604052806000815250611608565b61130f848484611009565b61131b8484848461163b565b610c655760405162461bcd60e51b815260040161049990612052565b6060611341611959565b60405180610160016040528061013881526020016127ec6101389139815261136883611748565b8160016020020181905250604051806104e001604052806104af815260200161233d6104af91396040808301919091526000848152600a60205220546113ad906111a9565b6060820190815260408051808201825260118152701e17ba32bc3a1f1e17b39f1e17b9bb339f60791b602080830191909152608085018290528451818601518487015195519451610cdd9692959194929391929101611d44565b805160609080611427575050604080516020810190915260008152919050565b600060036114368360026121c1565b61144091906121d9565b61144b9060046121ed565b9050600061145a8260206121c1565b67ffffffffffffffff811115611472576114726122fb565b6040519080825280601f01601f19166020018201604052801561149c576020820181803683370190505b5090506000604051806060016040528060408152602001612924604091399050600181016020830160005b86811015611528576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b8352600490920191016114c7565b50600386066001811461154257600281146115535761155f565b613d3d60f01b60011983015261155f565b603d60f81b6000198301525b505050918152949350505050565b6000611578826109e3565b9050611585600083610ddf565b6001600160a01b03811660009081526003602052604081208054600192906115ae90849061220c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61161283836117dd565b61161f600084848461163b565b6105cf5760405162461bcd60e51b815260040161049990612052565b60006001600160a01b0384163b1561173d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061167f903390899088908890600401612002565b602060405180830381600087803b15801561169957600080fd5b505af19250505080156116c9575060408051601f3d908101601f191682019092526116c691810190611cc6565b60015b611723573d8080156116f7576040519150601f19603f3d011682016040523d82523d6000602084013e6116fc565b606091505b50805161171b5760405162461bcd60e51b815260040161049990612052565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f3c565b506001949350505050565b6000818152600a602052604090205460609061177b5750506040805180820190915260018152600360fc1b602082015290565b6000828152600a60205260409020546064116117ae5750506040805180820190915260018152603160f81b602082015290565b6000828152600a602081905260409091205461038c916117cd916121d9565b6117d890600a61220c565b6111a9565b6001600160a01b0382166118335760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610499565b6000818152600260205260409020546001600160a01b0316156118985760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610499565b6001600160a01b03821660009081526003602052604081208054600192906118c19084906121c1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b50805461192b9061224f565b6000825580601f1061193b575050565b601f0160209004906000526020600020908101906112e79190611980565b6040518060a001604052806005905b60608152602001906001900390816119685790505090565b5b808211156119955760008155600101611981565b5090565b6000602082840312156119ab57600080fd5b81356119b681612311565b9392505050565b6000602082840312156119cf57600080fd5b81516119b681612311565b600080604083850312156119ed57600080fd5b82356119f881612311565b91506020830135611a0881612311565b809150509250929050565b600080600060608486031215611a2857600080fd5b8335611a3381612311565b92506020840135611a4381612311565b929592945050506040919091013590565b60008060008060808587031215611a6a57600080fd5b8435611a7581612311565b9350602085810135611a8681612311565b935060408601359250606086013567ffffffffffffffff80821115611aaa57600080fd5b818801915088601f830112611abe57600080fd5b813581811115611ad057611ad06122fb565b611ae2601f8201601f1916850161216c565b91508082528984828501011115611af857600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215611b2b57600080fd5b8235611b3681612311565b915060208301358015158114611a0857600080fd5b60008060408385031215611b5e57600080fd5b8235611b6981612311565b946020939093013593505050565b60006020808385031215611b8a57600080fd5b823567ffffffffffffffff811115611ba157600080fd5b8301601f81018513611bb257600080fd5b8035611bc5611bc08261219d565b61216c565b80828252848201915084840188868560051b8701011115611be557600080fd5b600094505b83851015611c11578035611bfd81612311565b835260019490940193918501918501611bea565b50979650505050505050565b60006020808385031215611c3057600080fd5b823567ffffffffffffffff811115611c4757600080fd5b8301601f81018513611c5857600080fd5b8035611c66611bc08261219d565b80828252848201915084840188868560051b8701011115611c8657600080fd5b600094505b83851015611c11578035835260019490940193918501918501611c8b565b600060208284031215611cbb57600080fd5b81356119b681612326565b600060208284031215611cd857600080fd5b81516119b681612326565b600060208284031215611cf557600080fd5b5035919050565b60008151808452611d14816020860160208601612223565b601f01601f19169290920160200192915050565b60008151611d3a818560208601612223565b9290920192915050565b60008651611d56818460208b01612223565b865190830190611d6a818360208b01612223565b8651910190611d7d818360208a01612223565b8551910190611d90818360208901612223565b8451910190611da3818360208801612223565b01979650505050505050565b727b226e616d65223a2022454d5320307831202360681b81528351600090611dde816013850160208901612223565b7f222c20226465736372697074696f6e223a2022454d53203078312069732061206013918401918201527f6b696e64206f66204e465420746861742065766f6c766573207769746820736560338201527f636f6e646172792073616c65732e204f74686572206461746120617265206f6d60538201527f697474656420666f72206578706c616e6174696f6e206279206f74686572732e60738201527f5468616e6b7320746f2065766572796f6e652077686f2068656c70656420656d60938201527f73222c2022696d616765223a2022646174613a696d6167652f7376672b786d6c60b3820152670ed8985cd94d8d0b60c21b60d38201528451611eea8160db840160208901612223565b611f54611f44611f3e60db848601017f222c2261747472696275746573223a205b7b2274726169745f74797065223a20815272112632bb32b6111610113b30b63ab2911d101160691b602082015260330190565b87611d28565b63227d5d7d60e01b815260040190565b979650505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251611f9781601d850160208701612223565b91909101601d0192915050565b7f457468657265756d204d61696c2053657276696365203078313a206d7573742081526f037bbb732b927b3103a37b5b2b724b2160851b602082015260008251611ff5816030850160208701612223565b9190910160300192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061203590830184611cfc565b9695505050505050565b6020815260006119b66020830184611cfc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526022908201527f457468657265756d204d61696c20536572766963652030783a206e6f2073746f604082015261636b60f01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612195576121956122fb565b604052919050565b600067ffffffffffffffff8211156121b7576121b76122fb565b5060051b60200190565b600082198211156121d4576121d46122b9565b500190565b6000826121e8576121e86122cf565b500490565b6000816000190483118215151615612207576122076122b9565b500290565b60008282101561221e5761221e6122b9565b500390565b60005b8381101561223e578181015183820152602001612226565b83811115610c655750506000910152565b600181811c9082168061226357607f821691505b6020821081141561228457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561229e5761229e6122b9565b5060010190565b6000826122b4576122b46122cf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146112e757600080fd5b6001600160e01b0319811681146112e757600080fdfe73206c696e65617220696e66696e6974653b7d20406b65796672616d657320616e696d617465207b0930252c2031303025207b09746578742d736861646f773a202d327078202d327078203020233066662c2032707820327078203020236630303b097d09323525207b09746578742d736861646f773a2032707820327078203020233066662c202d327078202d327078203020236630303b097d09353025207b09746578742d736861646f773a20327078202d327078203020233066662c20327078202d327078203020236630303b097d09373525207b09746578742d736861646f773a202d32707820327078203020233066662c202d32707820327078203020236630303b097d7d3c2f7374796c653e3c636c6970506174682069643d22702e30223e3c7061746820643d226d3020306c3639392e3032383920306c30203730302e30303532356c2d3639392e3032383920306c30202d3730302e30303532357a2220636c69702d72756c653d226e6f6e7a65726f222f3e3c2f636c6970506174683e3c6720636c69702d706174683d2275726c2823702e3029223e3c706174682066696c6c3d2223303030303030222066696c6c2d6f7061636974793d22302e302220643d226d3020306c3639392e3032383920306c30203730302e30303532356c2d3639392e3032383920307a222066696c6c2d72756c653d226576656e6f6464222f3e3c706174682066696c6c3d22233030303030302220643d226d302e393635383739323620312e393432323537326c3639392e3032333620306c30203730302e306c2d3639392e3032333620307a222066696c6c2d72756c653d226576656e6f6464222f3e3c70617468207374726f6b653d222330303030303022207374726f6b652d77696474683d22312e3022207374726f6b652d6c696e656a6f696e3d22726f756e6422207374726f6b652d6c696e656361703d22627574742220643d226d302e393635383739323620312e393432323537326c3639392e3032333620306c30203730302e306c2d3639392e3032333620307a222066696c6c2d72756c653d226576656e6f6464222f3e3c706174682066696c6c3d22233030303030302220643d226d3133382e3133323535203335312e39343232366c38342e3933383035202d3139312e33353433346c3235342e383134313620306c38342e3933383035203139312e33353433346c2d38342e3933383035203139312e33353433316c2d3235342e383134313620307a222066696c6c2d72756c653d226576656e6f6464222f3e3c70617468207374726f6b653d222366666666666622207374726f6b652d77696474683d22342e3022207374726f6b652d6c696e656a6f696e3d22726f756e6422207374726f6b652d6c696e656361703d22627574742220643d226d3133382e3133323535203335312e39343232366c38342e3933383035202d3139312e33353433346c3235342e383134313620306c38342e3933383035203139312e33353433346c2d38342e3933383035203139312e33353433316c2d3235342e383134313620307a222066696c6c2d72756c653d226576656e6f6464222f3e3c7465787420783d223236302220793d223336302220636c6173733d2262617365223e6c6576656c203c7376672076657273696f6e3d22312e31222076696577426f783d22302e3020302e30203639392e30323838373133393130373631203730302e303035323439333433383332222066696c6c3d226e6f6e6522207374726f6b653d226e6f6e6522207374726f6b652d6c696e656361703d2273717561726522207374726f6b652d6d697465726c696d69743d2231302220786d6c6e733a786c696e6b3d22687474703a2f2f7777772e77332e6f72672f313939392f786c696e6b2220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073616e2d73657269663b20666f6e742d73697a653a20353070783b2020616e696d6174696f6e3a20616e696d617465204142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220be612b979251eb1abdd8f871c6f331018e49dd75114596bb4e6c09fab3abf04664736f6c63430008070033

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

-----Decoded View---------------
Arg [0] : _proxyRegistry (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1


Deployed Bytecode Sourcemap

39187:6962:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20517:355;;;;;;:::i;:::-;;:::i;:::-;;;11139:14:1;;11132:22;11114:41;;11102:2;11087:18;20517:355:0;;;;;;;;21686:100;;;:::i;:::-;;;;;;;:::i;23379:308::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10437:32:1;;;10419:51;;10407:2;10392:18;23379:308:0;10273:203:1;22902:411:0;;;;;;:::i;:::-;;:::i;:::-;;43761:409;;;;;;:::i;:::-;;:::i;42918:776::-;;;;;;:::i;:::-;;:::i;45541:243::-;;;:::i;44241:185::-;;;;;;:::i;:::-;;:::i;45160:373::-;;;:::i;45792:178::-;;;;;;:::i;:::-;;:::i;21293:326::-;;;;;;:::i;:::-;;:::i;20936:295::-;;;;;;:::i;:::-;;:::i;:::-;;;18735:25:1;;;18723:2;18708:18;20936:295:0;18589:177:1;38474:148:0;;;:::i;37823:87::-;37896:6;;-1:-1:-1;;;;;37896:6:0;37823:87;;21855:104;;;:::i;23759:327::-;;;;;;:::i;:::-;;:::i;39340:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;44497:398;;;;;;:::i;:::-;;:::i;41890:1020::-;;;;;;:::i;:::-;;:::i;39390:39::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;24157:214;;;;;;:::i;:::-;-1:-1:-1;;;;;24328:25:0;;;24299:4;24328:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24157:214;38777:281;;;;;;:::i;:::-;;:::i;20517:355::-;20664:4;-1:-1:-1;;;;;;20706:40:0;;-1:-1:-1;;;20706:40:0;;:105;;-1:-1:-1;;;;;;;20763:48:0;;-1:-1:-1;;;20763:48:0;20706:105;:158;;;-1:-1:-1;;;;;;;;;;18373:40:0;;;20828:36;20686:178;20517:355;-1:-1:-1;;20517:355:0:o;21686:100::-;21740:13;21773:5;21766:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21686:100;:::o;23379:308::-;23500:7;27142:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27142:16:0;23525:110;;;;-1:-1:-1;;;23525:110:0;;15957:2:1;23525:110:0;;;15939:21:1;15996:2;15976:18;;;15969:30;16035:34;16015:18;;;16008:62;-1:-1:-1;;;16086:18:1;;;16079:42;16138:19;;23525:110:0;;;;;;;;;-1:-1:-1;23655:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23655:24:0;;23379:308::o;22902:411::-;22983:13;22999:23;23014:7;22999:14;:23::i;:::-;22983:39;;23047:5;-1:-1:-1;;;;;23041:11:0;:2;-1:-1:-1;;;;;23041:11:0;;;23033:57;;;;-1:-1:-1;;;23033:57:0;;17561:2:1;23033:57:0;;;17543:21:1;17600:2;17580:18;;;17573:30;17639:34;17619:18;;;17612:62;-1:-1:-1;;;17690:18:1;;;17683:31;17731:19;;23033:57:0;17359:397:1;23033:57:0;17248:10;-1:-1:-1;;;;;23125:21:0;;;;:62;;-1:-1:-1;23150:37:0;23167:5;17248:10;24157:214;:::i;23150:37::-;23103:168;;;;-1:-1:-1;;;23103:168:0;;13947:2:1;23103:168:0;;;13929:21:1;13986:2;13966:18;;;13959:30;14025:34;14005:18;;;13998:62;14096:26;14076:18;;;14069:54;14140:19;;23103:168:0;13745:420:1;23103:168:0;23284:21;23293:2;23297:7;23284:8;:21::i;:::-;22972:341;22902:411;;:::o;43761:409::-;43970:41;17248:10;44003:7;43970:18;:41::i;:::-;43948:140;;;;-1:-1:-1;;;43948:140:0;;;;;;;:::i;:::-;44099:22;44107:4;44113:7;44099;:22::i;:::-;44134:28;44144:4;44150:2;44154:7;44134:9;:28::i;42918:776::-;43021:1;43003:8;:15;:19;42981:120;;;;-1:-1:-1;;;42981:120:0;;16731:2:1;42981:120:0;;;16713:21:1;16770:2;16750:18;;;16743:30;16809:34;16789:18;;;16782:62;-1:-1:-1;;;16860:18:1;;;16853:49;16919:19;;42981:120:0;16529:415:1;42981:120:0;43112:16;43148:9;43143:459;43167:8;:15;43163:1;:19;43143:459;;;43254:10;-1:-1:-1;;;;;43230:34:0;:20;43238:8;43247:1;43238:11;;;;;;;;:::i;:::-;;;;;;;43230:7;:20::i;:::-;-1:-1:-1;;;;;43230:34:0;;43432:22;:8;43441:1;43432:11;;;;;;;;:::i;:::-;;;;;;;:20;:22::i;:::-;43312:165;;;;;;;;:::i;:::-;;;;;;;;;;;;;43204:307;;;;;-1:-1:-1;;;43204:307:0;;;;;;;;:::i;:::-;;43538:6;:19;43545:8;43554:1;43545:11;;;;;;;;:::i;:::-;;;;;;;43538:19;;;;;;;;;;;;43526:31;;;;;:::i;:::-;;;43572:18;43578:8;43587:1;43578:11;;;;;;;;:::i;:::-;;;;;;;43572:5;:18::i;:::-;43184:3;;;;:::i;:::-;;;;43143:459;;;-1:-1:-1;43619:2:0;;43612:10;;;;:6;:10;;;;;:21;;;43644:27;17248:10;43654:12;43668:2;;43644:9;:27::i;:::-;43682:2;:4;;;:2;:4;;;:::i;:::-;;;;;;42970:724;42918:776;:::o;45541:243::-;37896:6;;-1:-1:-1;;;;;37896:6:0;17248:10;38043:23;38035:68;;;;-1:-1:-1;;;38035:68:0;;;;;;;:::i;:::-;45622:2:::1;45612:7;;:12;45590:97;;;;-1:-1:-1::0;;;45590:97:0::1;;;;;;;:::i;:::-;45699:27;17248:10:::0;45709:12:::1;17168:98:::0;45699:27:::1;45752:2;:4:::0;;;:2:::1;:4;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;45767:7:0::1;:9:::0;;;:7:::1;:9;::::0;::::1;:::i;:::-;;;;;;45541:243::o:0;44241:185::-;44379:39;44396:4;44402:2;44406:7;44379:39;;;;;;;;;;;;:16;:39::i;45160:373::-;45222:4;45217:2;;:9;:34;;;-1:-1:-1;45240:10:0;45230:21;;;;:9;:21;;;;;;;;45217:34;45195:118;;;;-1:-1:-1;;;45195:118:0;;;;;;;:::i;:::-;45355:10;45347:19;;;;:7;:19;;;;;;;;45346:20;45324:111;;;;-1:-1:-1;;;45324:111:0;;18381:2:1;45324:111:0;;;18363:21:1;18420:2;18400:18;;;18393:30;18459:34;18439:18;;;18432:62;-1:-1:-1;;;18510:18:1;;;18503:39;18559:19;;45324:111:0;18179:405:1;45324:111:0;45446:27;17248:10;45456:12;17168:98;45446:27;45484:2;:4;;;:2;:4;;;:::i;:::-;;;;-1:-1:-1;;45507:10:0;45499:19;;;;:7;:19;;;;;:26;;-1:-1:-1;;45499:26:0;45521:4;45499:26;;;45160:373::o;45792:178::-;37896:6;;-1:-1:-1;;;;;37896:6:0;17248:10;38043:23;38035:68;;;;-1:-1:-1;;;38035:68:0;;;;;;;:::i;:::-;45872:9:::1;45867:96;45891:6;:13;45887:1;:17;45867:96;;;45947:4;45926:9;:20;45936:6;45943:1;45936:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;45926:20:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;45926:20:0;:25;;-1:-1:-1;;45926:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45906:3;::::1;::::0;::::1;:::i;:::-;;;;45867:96;;;;45792:178:::0;:::o;21293:326::-;21410:7;21451:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21451:16:0;21500:19;21478:110;;;;-1:-1:-1;;;21478:110:0;;15186:2:1;21478:110:0;;;15168:21:1;15225:2;15205:18;;;15198:30;15264:34;15244:18;;;15237:62;-1:-1:-1;;;15315:18:1;;;15308:39;15364:19;;21478:110:0;14984:405:1;20936:295:0;21053:7;-1:-1:-1;;;;;21100:19:0;;21078:111;;;;-1:-1:-1;;;21078:111:0;;14775:2:1;21078:111:0;;;14757:21:1;14814:2;14794:18;;;14787:30;14853:34;14833:18;;;14826:62;-1:-1:-1;;;14904:18:1;;;14897:40;14954:19;;21078:111:0;14573:406:1;21078:111:0;-1:-1:-1;;;;;;21207:16:0;;;;;:9;:16;;;;;;;20936:295::o;38474:148::-;37896:6;;-1:-1:-1;;;;;37896:6:0;17248:10;38043:23;38035:68;;;;-1:-1:-1;;;38035:68:0;;;;;;;:::i;:::-;38565:6:::1;::::0;38544:40:::1;::::0;38581:1:::1;::::0;-1:-1:-1;;;;;38565:6:0::1;::::0;38544:40:::1;::::0;38581:1;;38544:40:::1;38595:6;:19:::0;;-1:-1:-1;;;;;;38595:19:0::1;::::0;;38474:148::o;21855:104::-;21911:13;21944:7;21937:14;;;;;:::i;23759:327::-;-1:-1:-1;;;;;23894:24:0;;17248:10;23894:24;;23886:62;;;;-1:-1:-1;;;23886:62:0;;13180:2:1;23886:62:0;;;13162:21:1;13219:2;13199:18;;;13192:30;13258:27;13238:18;;;13231:55;13303:18;;23886:62:0;12978:349:1;23886:62:0;17248:10;23961:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23961:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23961:53:0;;;;;;;;;;24030:48;;11114:41:1;;;23961:42:0;;17248:10;24030:48;;11087:18:1;24030:48:0;;;;;;;23759:327;;:::o;44497:398::-;44686:41;17248:10;44719:7;44686:18;:41::i;:::-;44664:140;;;;-1:-1:-1;;;44664:140:0;;;;;;;:::i;:::-;44815:22;44823:4;44829:7;44815;:22::i;:::-;44848:39;44862:4;44868:2;44872:7;44881:5;44848:13;:39::i;:::-;44497:398;;;;:::o;41890:1020::-;41991:13;42022:24;42049:719;42221:18;:7;:16;:18::i;:::-;42495:39;42515:17;42524:7;42515:8;:17::i;:::-;42495:13;:39::i;:::-;42641:15;;;;:6;:15;;;;;;:26;;:24;:26::i;:::-;42130:593;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42049:13;:719::i;:::-;42022:746;;42876:10;42826:61;;;;;;;;:::i;:::-;;;;;;;;;;;;;42781:121;;;41890:1020;;;:::o;38777:281::-;37896:6;;-1:-1:-1;;;;;37896:6:0;17248:10;38043:23;38035:68;;;;-1:-1:-1;;;38035:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38880:22:0;::::1;38858:110;;;::::0;-1:-1:-1;;;38858:110:0;;12011:2:1;38858:110:0::1;::::0;::::1;11993:21:1::0;12050:2;12030:18;;;12023:30;12089:34;12069:18;;;12062:62;-1:-1:-1;;;12140:18:1;;;12133:36;12186:19;;38858:110:0::1;11809:402:1::0;38858:110:0::1;39005:6;::::0;38984:38:::1;::::0;-1:-1:-1;;;;;38984:38:0;;::::1;::::0;39005:6:::1;::::0;38984:38:::1;::::0;39005:6:::1;::::0;38984:38:::1;39033:6;:17:::0;;-1:-1:-1;;;;;;39033:17:0::1;-1:-1:-1::0;;;;;39033:17:0;;;::::1;::::0;;;::::1;::::0;;38777:281::o;31176:174::-;31251:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31251:29:0;-1:-1:-1;;;;;31251:29:0;;;;;;;;:24;;31305:23;31251:24;31305:14;:23::i;:::-;-1:-1:-1;;;;;31296:46:0;;;;;;;;;;;31176:174;;:::o;27347:452::-;27476:4;27142:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27142:16:0;27498:110;;;;-1:-1:-1;;;27498:110:0;;13534:2:1;27498:110:0;;;13516:21:1;13573:2;13553:18;;;13546:30;13612:34;13592:18;;;13585:62;-1:-1:-1;;;13663:18:1;;;13656:42;13715:19;;27498:110:0;13332:408:1;27498:110:0;27619:13;27635:23;27650:7;27635:14;:23::i;:::-;27619:39;;27688:5;-1:-1:-1;;;;;27677:16:0;:7;-1:-1:-1;;;;;27677:16:0;;:64;;;;27734:7;-1:-1:-1;;;;;27710:31:0;:20;27722:7;27710:11;:20::i;:::-;-1:-1:-1;;;;;27710:31:0;;27677:64;:113;;;-1:-1:-1;;;;;;24328:25:0;;;24299:4;24328:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27758:32;27669:122;27347:452;-1:-1:-1;;;;27347:452:0:o;44903:249::-;44986:13;;:27;;-1:-1:-1;;;44986:27:0;;-1:-1:-1;;;;;10437:32:1;;;44986:27:0;;;10419:51:1;44970:13:0;;44986;;:21;;10392:18:1;;44986:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44970:43;-1:-1:-1;;;;;;45028:19:0;;45037:10;45028:19;:47;;;;-1:-1:-1;45051:10:0;:24;;45028:47;45024:121;;;45092:15;;;;:6;:15;;;;;:20;;45111:1;;45092:15;:20;;45111:1;;45092:20;:::i;:::-;;;;-1:-1:-1;;;;;44903:249:0:o;30443:615::-;30616:4;-1:-1:-1;;;;;30589:31:0;:23;30604:7;30589:14;:23::i;:::-;-1:-1:-1;;;;;30589:31:0;;30567:122;;;;-1:-1:-1;;;30567:122:0;;17151:2:1;30567:122:0;;;17133:21:1;17190:2;17170:18;;;17163:30;17229:34;17209:18;;;17202:62;-1:-1:-1;;;17280:18:1;;;17273:39;17329:19;;30567:122:0;16949:405:1;30567:122:0;-1:-1:-1;;;;;30708:16:0;;30700:65;;;;-1:-1:-1;;;30700:65:0;;12775:2:1;30700:65:0;;;12757:21:1;12814:2;12794:18;;;12787:30;12853:34;12833:18;;;12826:62;-1:-1:-1;;;12904:18:1;;;12897:34;12948:19;;30700:65:0;12573:400:1;30700:65:0;30882:29;30899:1;30903:7;30882:8;:29::i;:::-;-1:-1:-1;;;;;30924:15:0;;;;;;:9;:15;;;;;:20;;30943:1;;30924:15;:20;;30943:1;;30924:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30955:13:0;;;;;;:9;:13;;;;;:18;;30972:1;;30955:13;:18;;30972:1;;30955:18;:::i;:::-;;;;-1:-1:-1;;30984:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30984:21:0;-1:-1:-1;;;;;30984:21:0;;;;;;;;;31023:27;;30984:16;;31023:27;;;;;;;30443:615;;;:::o;347:723::-;403:13;624:10;620:53;;-1:-1:-1;;651:10:0;;;;;;;;;;;;-1:-1:-1;;;651:10:0;;;;;347:723::o;620:53::-;698:5;683:12;739:78;746:9;;739:78;;772:8;;;;:::i;:::-;;-1:-1:-1;795:10:0;;-1:-1:-1;803:2:0;795:10;;:::i;:::-;;;739:78;;;827:19;859:6;849:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;849:17:0;;827:39;;877:154;884:10;;877:154;;911:11;921:1;911:11;;:::i;:::-;;-1:-1:-1;980:10:0;988:2;980:5;:10;:::i;:::-;967:24;;:2;:24;:::i;:::-;954:39;;937:6;944;937:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;937:56:0;;;;;;;;-1:-1:-1;1008:11:0;1017:2;1008:11;;:::i;:::-;;;877:154;;35348:206;35417:20;35429:7;35417:11;:20::i;:::-;35460:19;;;;:10;:19;;;;;35454:33;;;;;:::i;:::-;:38;;-1:-1:-1;35450:97:0;;35516:19;;;;:10;:19;;;;;35509:26;;;:::i;:::-;35348:206;:::o;28141:110::-;28217:26;28227:2;28231:7;28217:26;;;;;;;;;;;;:9;:26::i;26388:352::-;26545:28;26555:4;26561:2;26565:7;26545:9;:28::i;:::-;26606:48;26629:4;26635:2;26639:7;26648:5;26606:22;:48::i;:::-;26584:148;;;;-1:-1:-1;;;26584:148:0;;;;;;;:::i;39517:2124::-;39575:13;39601:22;;:::i;:::-;39634:356;;;;;;;;;;;;;;;;;;;40012:17;40021:7;40012:8;:17::i;:::-;40001:5;40007:1;40001:8;;;:28;;;;40040:1243;;;;;;;;;;;;;;;;;:32;;;;:1243;;;;41305:15;;;;:6;40040:32;41305:15;;;:26;;:24;:26::i;:::-;41294:8;;;:37;;;41342:30;;;;;;;;;;;-1:-1:-1;;;;41342:30:0;;;;;;;:8;;;:30;;;41467:8;;-1:-1:-1;;;41498:8:0;41529;;;;41560;;41428:190;;;;41467:8;;41498;;41529;;41560;;41342:30;41428:190;;:::i;46509:1790::-;46607:11;;46567:13;;46633:8;46629:23;;-1:-1:-1;;46643:9:0;;;;;;;;;-1:-1:-1;46643:9:0;;;46509:1790;-1:-1:-1;46509:1790:0:o;46629:23::-;46704:18;46742:1;46731:7;:3;46737:1;46731:7;:::i;:::-;46730:13;;;;:::i;:::-;46725:19;;:1;:19;:::i;:::-;46704:40;-1:-1:-1;46802:19:0;46834:15;46704:40;46847:2;46834:15;:::i;:::-;46824:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46824:26:0;;46802:48;;46863:18;46884:5;;;;;;;;;;;;;;;;;46863:26;;46953:1;46946:5;46942:13;46998:2;46990:6;46986:15;47049:1;47017:960;47072:3;47069:1;47066:10;47017:960;;;47127:1;47170:12;;;;;47164:19;47265:4;47253:2;47249:14;;;;;47231:40;;47225:47;47417:2;47413:14;;;47409:25;;47395:40;;47389:47;47607:1;47603:13;;;47599:24;;47585:39;;47579:46;47788:16;;;;47774:31;;47768:38;47301:1;47297:11;;;47438:4;47385:58;;;47333:129;47487:11;;47575:57;;;47523:128;;;;47676:11;;47764:49;;47712:120;47861:3;47857:13;47890:22;;47960:1;47945:17;;;;47120:9;47017:960;;;47021:44;48009:1;48004:3;48000:11;48030:1;48025:84;;;;48128:1;48123:82;;;;47993:212;;48025:84;-1:-1:-1;;;;;48058:17:0;;48051:43;48025:84;;48123:82;-1:-1:-1;;;;;48156:17:0;;48149:41;47993:212;-1:-1:-1;;;48221:26:0;;;48228:6;46509:1790;-1:-1:-1;;;;46509:1790:0:o;29746:360::-;29806:13;29822:23;29837:7;29822:14;:23::i;:::-;29806:39;;29947:29;29964:1;29968:7;29947:8;:29::i;:::-;-1:-1:-1;;;;;29989:16:0;;;;;;:9;:16;;;;;:21;;30009:1;;29989:16;:21;;30009:1;;29989:21;:::i;:::-;;;;-1:-1:-1;;30028:16:0;;;;:7;:16;;;;;;30021:23;;-1:-1:-1;;;;;;30021:23:0;;;30062:36;30036:7;;30028:16;-1:-1:-1;;;;;30062:36:0;;;;;30028:16;;30062:36;29795:311;29746:360;:::o;28478:321::-;28608:18;28614:2;28618:7;28608:5;:18::i;:::-;28659:54;28690:1;28694:2;28698:7;28707:5;28659:22;:54::i;:::-;28637:154;;;;-1:-1:-1;;;28637:154:0;;;;;;;:::i;31915:984::-;32070:4;-1:-1:-1;;;;;32091:13:0;;3139:20;3187:8;32087:805;;32144:175;;-1:-1:-1;;;32144:175:0;;-1:-1:-1;;;;;32144:36:0;;;;;:175;;17248:10;;32238:4;;32265:7;;32295:5;;32144:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32144:175:0;;;;;;;;-1:-1:-1;;32144:175:0;;;;;;;;;;;;:::i;:::-;;;32123:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32506:13:0;;32502:320;;32549:108;;-1:-1:-1;;;32549:108:0;;;;;;;:::i;32502:320::-;32772:6;32766:13;32757:6;32753:2;32749:15;32742:38;32123:714;-1:-1:-1;;;;;;32383:55:0;-1:-1:-1;;;32383:55:0;;-1:-1:-1;32376:62:0;;32087:805;-1:-1:-1;32876:4:0;31915:984;;;;;;:::o;41649:233::-;41737:15;;;;:6;:15;;;;;;41707:13;;41733:36;;-1:-1:-1;;41759:10:0;;;;;;;;;;;;-1:-1:-1;;;41759:10:0;;;;;41649:233::o;41733:36::-;41784:15;;;;:6;:15;;;;;;41803:3;-1:-1:-1;41780:38:0;;-1:-1:-1;;41808:10:0;;;;;;;;;;;;-1:-1:-1;;;41808:10:0;;;;;41649:233::o;41780:38::-;41842:15;;;;41860:2;41842:15;;;;;;;;;41836:38;;41842:20;;;:::i;:::-;41837:25;;:2;:25;:::i;:::-;41836:36;:38::i;29135:382::-;-1:-1:-1;;;;;29215:16:0;;29207:61;;;;-1:-1:-1;;;29207:61:0;;15596:2:1;29207:61:0;;;15578:21:1;;;15615:18;;;15608:30;15674:34;15654:18;;;15647:62;15726:18;;29207:61:0;15394:356:1;29207:61:0;27118:4;27142:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27142:16:0;:30;29279:58;;;;-1:-1:-1;;;29279:58:0;;12418:2:1;29279:58:0;;;12400:21:1;12457:2;12437:18;;;12430:30;12496;12476:18;;;12469:58;12544:18;;29279:58:0;12216:352:1;29279:58:0;-1:-1:-1;;;;;29408:13:0;;;;;;:9;:13;;;;;:18;;29425:1;;29408:13;:18;;29425:1;;29408:18;:::i;:::-;;;;-1:-1:-1;;29437:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29437:21:0;-1:-1:-1;;;;;29437:21:0;;;;;;;;29476:33;;29437:16;;;29476:33;;29437:16;;29476:33;29135:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;:::o;14:247:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;200:31;225:5;200:31;:::i;:::-;250:5;14:247;-1:-1:-1;;;14:247:1:o;266:251::-;336:6;389:2;377:9;368:7;364:23;360:32;357:52;;;405:1;402;395:12;357:52;437:9;431:16;456:31;481:5;456:31;:::i;522:388::-;590:6;598;651:2;639:9;630:7;626:23;622:32;619:52;;;667:1;664;657:12;619:52;706:9;693:23;725:31;750:5;725:31;:::i;:::-;775:5;-1:-1:-1;832:2:1;817:18;;804:32;845:33;804:32;845:33;:::i;:::-;897:7;887:17;;;522:388;;;;;:::o;915:456::-;992:6;1000;1008;1061:2;1049:9;1040:7;1036:23;1032:32;1029:52;;;1077:1;1074;1067:12;1029:52;1116:9;1103:23;1135:31;1160:5;1135:31;:::i;:::-;1185:5;-1:-1:-1;1242:2:1;1227:18;;1214:32;1255:33;1214:32;1255:33;:::i;:::-;915:456;;1307:7;;-1:-1:-1;;;1361:2:1;1346:18;;;;1333:32;;915:456::o;1376:1108::-;1471:6;1479;1487;1495;1548:3;1536:9;1527:7;1523:23;1519:33;1516:53;;;1565:1;1562;1555:12;1516:53;1604:9;1591:23;1623:31;1648:5;1623:31;:::i;:::-;1673:5;-1:-1:-1;1697:2:1;1736:18;;;1723:32;1764:33;1723:32;1764:33;:::i;:::-;1816:7;-1:-1:-1;1870:2:1;1855:18;;1842:32;;-1:-1:-1;1925:2:1;1910:18;;1897:32;1948:18;1978:14;;;1975:34;;;2005:1;2002;1995:12;1975:34;2043:6;2032:9;2028:22;2018:32;;2088:7;2081:4;2077:2;2073:13;2069:27;2059:55;;2110:1;2107;2100:12;2059:55;2146:2;2133:16;2168:2;2164;2161:10;2158:36;;;2174:18;;:::i;:::-;2216:53;2259:2;2240:13;;-1:-1:-1;;2236:27:1;2232:36;;2216:53;:::i;:::-;2203:66;;2292:2;2285:5;2278:17;2332:7;2327:2;2322;2318;2314:11;2310:20;2307:33;2304:53;;;2353:1;2350;2343:12;2304:53;2408:2;2403;2399;2395:11;2390:2;2383:5;2379:14;2366:45;2452:1;2447:2;2442;2435:5;2431:14;2427:23;2420:34;;2473:5;2463:15;;;;;1376:1108;;;;;;;:::o;2489:416::-;2554:6;2562;2615:2;2603:9;2594:7;2590:23;2586:32;2583:52;;;2631:1;2628;2621:12;2583:52;2670:9;2657:23;2689:31;2714:5;2689:31;:::i;:::-;2739:5;-1:-1:-1;2796:2:1;2781:18;;2768:32;2838:15;;2831:23;2819:36;;2809:64;;2869:1;2866;2859:12;2910:315;2978:6;2986;3039:2;3027:9;3018:7;3014:23;3010:32;3007:52;;;3055:1;3052;3045:12;3007:52;3094:9;3081:23;3113:31;3138:5;3113:31;:::i;:::-;3163:5;3215:2;3200:18;;;;3187:32;;-1:-1:-1;;;2910:315:1:o;3230:977::-;3314:6;3345:2;3388;3376:9;3367:7;3363:23;3359:32;3356:52;;;3404:1;3401;3394:12;3356:52;3444:9;3431:23;3477:18;3469:6;3466:30;3463:50;;;3509:1;3506;3499:12;3463:50;3532:22;;3585:4;3577:13;;3573:27;-1:-1:-1;3563:55:1;;3614:1;3611;3604:12;3563:55;3650:2;3637:16;3673:60;3689:43;3729:2;3689:43;:::i;:::-;3673:60;:::i;:::-;3755:3;3779:2;3774:3;3767:15;3807:2;3802:3;3798:12;3791:19;;3838:2;3834;3830:11;3886:7;3881:2;3875;3872:1;3868:10;3864:2;3860:19;3856:28;3853:41;3850:61;;;3907:1;3904;3897:12;3850:61;3929:1;3920:10;;3939:238;3953:2;3950:1;3947:9;3939:238;;;4024:3;4011:17;4041:31;4066:5;4041:31;:::i;:::-;4085:18;;3971:1;3964:9;;;;;4123:12;;;;4155;;3939:238;;;-1:-1:-1;4196:5:1;3230:977;-1:-1:-1;;;;;;;3230:977:1:o;4212:902::-;4296:6;4327:2;4370;4358:9;4349:7;4345:23;4341:32;4338:52;;;4386:1;4383;4376:12;4338:52;4426:9;4413:23;4459:18;4451:6;4448:30;4445:50;;;4491:1;4488;4481:12;4445:50;4514:22;;4567:4;4559:13;;4555:27;-1:-1:-1;4545:55:1;;4596:1;4593;4586:12;4545:55;4632:2;4619:16;4655:60;4671:43;4711:2;4671:43;:::i;4655:60::-;4737:3;4761:2;4756:3;4749:15;4789:2;4784:3;4780:12;4773:19;;4820:2;4816;4812:11;4868:7;4863:2;4857;4854:1;4850:10;4846:2;4842:19;4838:28;4835:41;4832:61;;;4889:1;4886;4879:12;4832:61;4911:1;4902:10;;4921:163;4935:2;4932:1;4929:9;4921:163;;;4992:17;;4980:30;;4953:1;4946:9;;;;;5030:12;;;;5062;;4921:163;;5119:245;5177:6;5230:2;5218:9;5209:7;5205:23;5201:32;5198:52;;;5246:1;5243;5236:12;5198:52;5285:9;5272:23;5304:30;5328:5;5304:30;:::i;5369:249::-;5438:6;5491:2;5479:9;5470:7;5466:23;5462:32;5459:52;;;5507:1;5504;5497:12;5459:52;5539:9;5533:16;5558:30;5582:5;5558:30;:::i;5623:180::-;5682:6;5735:2;5723:9;5714:7;5710:23;5706:32;5703:52;;;5751:1;5748;5741:12;5703:52;-1:-1:-1;5774:23:1;;5623:180;-1:-1:-1;5623:180:1:o;5808:257::-;5849:3;5887:5;5881:12;5914:6;5909:3;5902:19;5930:63;5986:6;5979:4;5974:3;5970:14;5963:4;5956:5;5952:16;5930:63;:::i;:::-;6047:2;6026:15;-1:-1:-1;;6022:29:1;6013:39;;;;6054:4;6009:50;;5808:257;-1:-1:-1;;5808:257:1:o;6070:185::-;6112:3;6150:5;6144:12;6165:52;6210:6;6205:3;6198:4;6191:5;6187:16;6165:52;:::i;:::-;6233:16;;;;;6070:185;-1:-1:-1;;6070:185:1:o;6660:1052::-;6983:3;7021:6;7015:13;7037:53;7083:6;7078:3;7071:4;7063:6;7059:17;7037:53;:::i;:::-;7153:13;;7112:16;;;;7175:57;7153:13;7112:16;7209:4;7197:17;;7175:57;:::i;:::-;7299:13;;7254:20;;;7321:57;7299:13;7254:20;7355:4;7343:17;;7321:57;:::i;:::-;7445:13;;7400:20;;;7467:57;7445:13;7400:20;7501:4;7489:17;;7467:57;:::i;:::-;7591:13;;7546:20;;;7613:57;7591:13;7546:20;7647:4;7635:17;;7613:57;:::i;:::-;7686:20;;6660:1052;-1:-1:-1;;;;;;;6660:1052:1:o;7717:1595::-;-1:-1:-1;;;8366:63:1;;8452:13;;8348:3;;8474:62;8452:13;8524:2;8515:12;;8508:4;8496:17;;8474:62;:::i;:::-;8600:66;8595:2;8555:16;;;8587:11;;;8580:87;8696:34;8691:2;8683:11;;8676:55;8760:34;8755:2;8747:11;;8740:55;8825:34;8819:3;8811:12;;8804:56;8890:34;8884:3;8876:12;;8869:56;8955:66;8949:3;8941:12;;8934:88;-1:-1:-1;;;9046:3:1;9038:12;;9031:32;9088:13;;9110:64;9088:13;9159:3;9151:12;;9144:4;9132:17;;9110:64;:::i;:::-;9190:116;9220:85;9246:58;9299:3;9288:8;9284:2;9280:17;9276:27;6337:66;6325:79;;-1:-1:-1;;;6429:2:1;6420:12;;6413:72;6510:2;6501:12;;6260:259;9246:58;9238:6;9220:85;:::i;:::-;-1:-1:-1;;;6589:33:1;;6647:1;6638:11;;6524:131;9190:116;9183:123;7717:1595;-1:-1:-1;;;;;;;7717:1595:1:o;9317:448::-;9579:31;9574:3;9567:44;9549:3;9640:6;9634:13;9656:62;9711:6;9706:2;9701:3;9697:12;9690:4;9682:6;9678:17;9656:62;:::i;:::-;9738:16;;;;9756:2;9734:25;;9317:448;-1:-1:-1;;9317:448:1:o;9770:498::-;10032:34;10027:3;10020:47;-1:-1:-1;;;10092:2:1;10087:3;10083:12;10076:40;10002:3;10145:6;10139:13;10161:60;10214:6;10209:2;10204:3;10200:12;10195:2;10187:6;10183:15;10161:60;:::i;:::-;10241:16;;;;10259:2;10237:25;;9770:498;-1:-1:-1;;9770:498:1:o;10481:488::-;-1:-1:-1;;;;;10750:15:1;;;10732:34;;10802:15;;10797:2;10782:18;;10775:43;10849:2;10834:18;;10827:34;;;10897:3;10892:2;10877:18;;10870:31;;;10675:4;;10918:45;;10943:19;;10935:6;10918:45;:::i;:::-;10910:53;10481:488;-1:-1:-1;;;;;;10481:488:1:o;11166:219::-;11315:2;11304:9;11297:21;11278:4;11335:44;11375:2;11364:9;11360:18;11352:6;11335:44;:::i;11390:414::-;11592:2;11574:21;;;11631:2;11611:18;;;11604:30;11670:34;11665:2;11650:18;;11643:62;-1:-1:-1;;;11736:2:1;11721:18;;11714:48;11794:3;11779:19;;11390:414::o;14170:398::-;14372:2;14354:21;;;14411:2;14391:18;;;14384:30;14450:34;14445:2;14430:18;;14423:62;-1:-1:-1;;;14516:2:1;14501:18;;14494:32;14558:3;14543:19;;14170:398::o;16168:356::-;16370:2;16352:21;;;16389:18;;;16382:30;16448:34;16443:2;16428:18;;16421:62;16515:2;16500:18;;16168:356::o;17761:413::-;17963:2;17945:21;;;18002:2;17982:18;;;17975:30;18041:34;18036:2;18021:18;;18014:62;-1:-1:-1;;;18107:2:1;18092:18;;18085:47;18164:3;18149:19;;17761:413::o;18771:275::-;18842:2;18836:9;18907:2;18888:13;;-1:-1:-1;;18884:27:1;18872:40;;18942:18;18927:34;;18963:22;;;18924:62;18921:88;;;18989:18;;:::i;:::-;19025:2;19018:22;18771:275;;-1:-1:-1;18771:275:1:o;19051:183::-;19111:4;19144:18;19136:6;19133:30;19130:56;;;19166:18;;:::i;:::-;-1:-1:-1;19211:1:1;19207:14;19223:4;19203:25;;19051:183::o;19239:128::-;19279:3;19310:1;19306:6;19303:1;19300:13;19297:39;;;19316:18;;:::i;:::-;-1:-1:-1;19352:9:1;;19239:128::o;19372:120::-;19412:1;19438;19428:35;;19443:18;;:::i;:::-;-1:-1:-1;19477:9:1;;19372:120::o;19497:168::-;19537:7;19603:1;19599;19595:6;19591:14;19588:1;19585:21;19580:1;19573:9;19566:17;19562:45;19559:71;;;19610:18;;:::i;:::-;-1:-1:-1;19650:9:1;;19497:168::o;19670:125::-;19710:4;19738:1;19735;19732:8;19729:34;;;19743:18;;:::i;:::-;-1:-1:-1;19780:9:1;;19670:125::o;19800:258::-;19872:1;19882:113;19896:6;19893:1;19890:13;19882:113;;;19972:11;;;19966:18;19953:11;;;19946:39;19918:2;19911:10;19882:113;;;20013:6;20010:1;20007:13;20004:48;;;-1:-1:-1;;20048:1:1;20030:16;;20023:27;19800:258::o;20063:380::-;20142:1;20138:12;;;;20185;;;20206:61;;20260:4;20252:6;20248:17;20238:27;;20206:61;20313:2;20305:6;20302:14;20282:18;20279:38;20276:161;;;20359:10;20354:3;20350:20;20347:1;20340:31;20394:4;20391:1;20384:15;20422:4;20419:1;20412:15;20276:161;;20063:380;;;:::o;20448:135::-;20487:3;-1:-1:-1;;20508:17:1;;20505:43;;;20528:18;;:::i;:::-;-1:-1:-1;20575:1:1;20564:13;;20448:135::o;20588:112::-;20620:1;20646;20636:35;;20651:18;;:::i;:::-;-1:-1:-1;20685:9:1;;20588:112::o;20705:127::-;20766:10;20761:3;20757:20;20754:1;20747:31;20797:4;20794:1;20787:15;20821:4;20818:1;20811:15;20837:127;20898:10;20893:3;20889:20;20886:1;20879:31;20929:4;20926:1;20919:15;20953:4;20950:1;20943:15;20969:127;21030:10;21025:3;21021:20;21018:1;21011:31;21061:4;21058:1;21051:15;21085:4;21082:1;21075:15;21101:127;21162:10;21157:3;21153:20;21150:1;21143:31;21193:4;21190:1;21183:15;21217:4;21214:1;21207:15;21233:131;-1:-1:-1;;;;;21308:31:1;;21298:42;;21288:70;;21354:1;21351;21344:12;21369:131;-1:-1:-1;;;;;;21443:32:1;;21433:43;;21423:71;;21490:1;21487;21480:12

Swarm Source

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