ETH Price: $3,317.62 (-2.74%)
Gas: 13 Gwei

Token

Yakuza (YAKUZA)
 

Overview

Max Total Supply

5,545 YAKUZA

Holders

3,091

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 YAKUZA
0xefc75499021007690828fa16967339c3ef4cf3f4
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:
Yakuza

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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


library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

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

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


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


abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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



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


 
 
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;
    
    // metadata api after reveal
    string baseUri = "ipfs://QmYKi3WpfxQrq54EBXSYA3YvmtkfnhFJ54HaFeBy1cHSny/"; 

    // metadata api before reveal
    string notRevealedUri = "ipfs://QmPcVgQAbYaygXz2amZhCfUFbFzgqEPJKXqEF2jEHQdob9/"; 

    bool public revealed = false; // for reveal NFT

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

        if(revealed == false){
          // string memory baseURI = _baseURI();
            return bytes(notRevealedUri).length > 0 ? string(abi.encodePacked(notRevealedUri)) : "";
        }
        else{
            return bytes(baseUri).length > 0 ? string(abi.encodePacked(baseUri, tokenId.toString(),".json")) : "";
        }  
    }

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

        _balances[to] += 1;
        _owners[tokenId] = to;
    
        emit Transfer(address(0), to, tokenId);
    }

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }
    
    

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

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

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




contract Yakuza is ERC721, Ownable{
    uint256 public totalSupply = 0; 
    uint256 private constant totalSale = 5555; 
    uint256 public constant reserved = 50;  
    uint256 public admin_mint = 0;          
    uint256 public user_mint = 0;
    bool public publicSaleIsActive = false; 
    
    mapping(address => uint256) private userMinted;

    modifier checkPublicSaleIsActive {
        require ( publicSaleIsActive == true, "Public Sale is not Started");
        _;
    }
     
    constructor() ERC721("Yakuza", "YAKUZA"){}
    
    
    function mintByUser() public checkPublicSaleIsActive{
        require(user_mint < totalSale - reserved, "Minting End");
        require(user_mint + 1 <= totalSale - reserved, "Max Limit To Total Sale");
        require(userMinted[msg.sender] < 2, "You can mint two one NFT.");
        
        totalSupply++;
        user_mint++;
        userMinted[msg.sender] += 1;
        _safeMint(msg.sender, totalSupply);
    } 
    
    
    function setPublicSaleStatus() external onlyOwner {
        publicSaleIsActive = !publicSaleIsActive;
    }

    function reveal() public onlyOwner {
       revealed = !revealed;
    }

    function _setbaseURI(string memory _baseUri) external onlyOwner{
        baseUri = _baseUri;
    }

    function mintByOwner(address _to, uint256 quantity) internal onlyOwner {
        require(admin_mint < reserved, "Admin Minting Limit is Exceed");
        require(admin_mint + quantity <= reserved, "Max Limit To Admin Mint");

        for (uint256 i=0; i<quantity; i++) {
            totalSupply++;
            admin_mint++;    
            _safeMint(_to,totalSupply);
        }
    }
    
    function batchMintByOwner(address[] memory mintAddressList,uint256[] memory quantityList) external onlyOwner {
        require (mintAddressList.length == quantityList.length, "The length should be same");

        for (uint256 i=0; i<mintAddressList.length; i++) {
            mintByOwner(mintAddressList[i], quantityList[i]);
        }
    }
     
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"_setbaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"admin_mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"mintAddressList","type":"address[]"},{"internalType":"uint256[]","name":"quantityList","type":"uint256[]"}],"name":"batchMintByOwner","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":[],"name":"mintByUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"user_mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60e06040526036608081815290620022c760a039805162000029916006916020909101906200017b565b50604051806060016040528060368152602001620022fd6036913980516200005a916007916020909101906200017b565b506008805460ff1990811690915560006009819055600a819055600b55600c805490911690553480156200008d57600080fd5b506040518060400160405280600681526020016559616b757a6160d01b8152506040518060400160405280600681526020016559414b555a4160d01b8152508160009080519060200190620000e49291906200017b565b508051620000fa9060019060208401906200017b565b50505062000117620001116200011d60201b60201c565b62000121565b6200025e565b3390565b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001899062000221565b90600052602060002090601f016020900481019282620001ad5760008555620001f8565b82601f10620001c857805160ff1916838001178555620001f8565b82800160010185558215620001f8579182015b82811115620001f8578251825591602001919060010190620001db565b50620002069291506200020a565b5090565b5b808211156200020657600081556001016200020b565b6002810460018216806200023657607f821691505b602082108114156200025857634e487b7160e01b600052602260045260246000fd5b50919050565b612059806200026e6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80637dfed9fe116100f9578063b88d4fde11610097578063db8ff1fd11610071578063db8ff1fd1461031e578063e985e9c514610331578063f2fde38b14610344578063fe60d12c14610357576101a9565b8063b88d4fde146102f0578063bf22225a14610303578063c87b56dd1461030b576101a9565b8063a22cb465116100d3578063a22cb465146102c5578063a475b5dd146102d8578063a8d81cca146102e0578063b1386078146102e8576101a9565b80637dfed9fe146102ad5780638da5cb5b146102b557806395d89b41146102bd576101a9565b806323b872dd11610166578063518302271161014057806351830227146102775780636352211e1461027f57806370a0823114610292578063715018a6146102a5576101a9565b806323b872dd1461023e57806342842e0e146102515780634985fb5b14610264576101a9565b806301ffc9a7146101ae57806306fdde03146101d7578063081812fc146101ec578063095ea7b31461020c5780630fcf2e751461022157806318160ddd14610229575b600080fd5b6101c16101bc3660046116b0565b61035f565b6040516101ce919061189c565b60405180910390f35b6101df6103a7565b6040516101ce91906118a7565b6101ff6101fa36600461172e565b610439565b6040516101ce919061184b565b61021f61021a3660046115c9565b610485565b005b6101c161051d565b610231610526565b6040516101ce9190611e8f565b61021f61024c3660046114db565b61052c565b61021f61025f3660046114db565b610564565b61021f6102723660046116e8565b61057f565b6101c16105d5565b6101ff61028d36600461172e565b6105de565b6102316102a0366004611488565b610613565b61021f610657565b61021f6106a2565b6101ff6106f5565b6101df610709565b61021f6102d336600461158f565b610718565b61021f6107e6565b610231610839565b61021f61083f565b61021f6102fe366004611516565b610958565b610231610997565b6101df61031936600461172e565b61099d565b61021f61032c3660046115f2565b610a69565b6101c161033f3660046114a9565b610b3f565b61021f610352366004611488565b610b6d565b610231610bde565b60006001600160e01b031982166380ac58cd60e01b148061039057506001600160e01b03198216635b5e139f60e01b145b8061039f575061039f82610be3565b90505b919050565b6060600080546103b690611f61565b80601f01602080910402602001604051908101604052809291908181526020018280546103e290611f61565b801561042f5780601f106104045761010080835404028352916020019161042f565b820191906000526020600020905b81548152906001019060200180831161041257829003601f168201915b5050505050905090565b600061044482610bfc565b6104695760405162461bcd60e51b815260040161046090611c1a565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610490826105de565b9050806001600160a01b0316836001600160a01b031614156104c45760405162461bcd60e51b815260040161046090611d6a565b806001600160a01b03166104d6610c19565b6001600160a01b031614806104f257506104f28161033f610c19565b61050e5760405162461bcd60e51b815260040161046090611abe565b6105188383610c1d565b505050565b600c5460ff1681565b60095481565b61053d610537610c19565b82610c8b565b6105595760405162461bcd60e51b815260040161046090611dab565b610518838383610d10565b61051883838360405180602001604052806000815250610958565b610587610c19565b6001600160a01b03166105986106f5565b6001600160a01b0316146105be5760405162461bcd60e51b815260040161046090611c66565b80516105d1906006906020840190611314565b5050565b60085460ff1681565b6000818152600260205260408120546001600160a01b03168061039f5760405162461bcd60e51b815260040161046090611b65565b60006001600160a01b03821661063b5760405162461bcd60e51b815260040161046090611b1b565b506001600160a01b031660009081526003602052604090205490565b61065f610c19565b6001600160a01b03166106706106f5565b6001600160a01b0316146106965760405162461bcd60e51b815260040161046090611c66565b6106a06000610e3d565b565b6106aa610c19565b6001600160a01b03166106bb6106f5565b6001600160a01b0316146106e15760405162461bcd60e51b815260040161046090611c66565b600c805460ff19811660ff90911615179055565b60085461010090046001600160a01b031690565b6060600180546103b690611f61565b610720610c19565b6001600160a01b0316826001600160a01b031614156107515760405162461bcd60e51b815260040161046090611a04565b806005600061075e610c19565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556107a2610c19565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516107da919061189c565b60405180910390a35050565b6107ee610c19565b6001600160a01b03166107ff6106f5565b6001600160a01b0316146108255760405162461bcd60e51b815260040161046090611c66565b6008805460ff19811660ff90911615179055565b600b5481565b600c5460ff1615156001146108665760405162461bcd60e51b815260040161046090611e21565b61087360326115b3611f1e565b600b54106108935760405162461bcd60e51b815260040161046090611dfc565b6108a060326115b3611f1e565b600b546108ae906001611ef2565b11156108cc5760405162461bcd60e51b815260040161046090611c9b565b336000908152600d60205260409020546002116108fb5760405162461bcd60e51b815260040161046090611e58565b6009805490600061090b83611f9c565b9091555050600b805490600061092083611f9c565b9091555050336000908152600d60205260408120805460019290610945908490611ef2565b925050819055506106a033600954610e97565b610969610963610c19565b83610c8b565b6109855760405162461bcd60e51b815260040161046090611dab565b61099184848484610eb1565b50505050565b600a5481565b60606109a882610bfc565b6109c45760405162461bcd60e51b815260040161046090611d1b565b60085460ff16610a22576000600780546109dd90611f61565b9050116109f95760405180602001604052806000815250610a1b565b6007604051602001610a0b919061180a565b6040516020818303038152906040525b90506103a2565b600060068054610a3190611f61565b905011610a4d5760405180602001604052806000815250610a1b565b6006610a5883610ee4565b604051602001610a0b929190611816565b610a71610c19565b6001600160a01b0316610a826106f5565b6001600160a01b031614610aa85760405162461bcd60e51b815260040161046090611c66565b8051825114610ac95760405162461bcd60e51b815260040161046090611bae565b60005b825181101561051857610b2d838281518110610af857634e487b7160e01b600052603260045260246000fd5b6020026020010151838381518110610b2057634e487b7160e01b600052603260045260246000fd5b6020026020010151610fff565b80610b3781611f9c565b915050610acc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610b75610c19565b6001600160a01b0316610b866106f5565b6001600160a01b031614610bac5760405162461bcd60e51b815260040161046090611c66565b6001600160a01b038116610bd25760405162461bcd60e51b815260040161046090611943565b610bdb81610e3d565b50565b603281565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c52826105de565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610c9682610bfc565b610cb25760405162461bcd60e51b815260040161046090611a72565b6000610cbd836105de565b9050806001600160a01b0316846001600160a01b03161480610cf85750836001600160a01b0316610ced84610439565b6001600160a01b0316145b80610d085750610d088185610b3f565b949350505050565b826001600160a01b0316610d23826105de565b6001600160a01b031614610d495760405162461bcd60e51b815260040161046090611cd2565b6001600160a01b038216610d6f5760405162461bcd60e51b8152600401610460906119c0565b610d7a838383610518565b610d85600082610c1d565b6001600160a01b0383166000908152600360205260408120805460019290610dae908490611f1e565b90915550506001600160a01b0382166000908152600360205260408120805460019290610ddc908490611ef2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6105d18282604051806020016040528060008152506110e1565b610ebc848484610d10565b610ec884848484611114565b6109915760405162461bcd60e51b8152600401610460906118f1565b606081610f0957506040805180820190915260018152600360fc1b60208201526103a2565b8160005b8115610f335780610f1d81611f9c565b9150610f2c9050600a83611f0a565b9150610f0d565b60008167ffffffffffffffff811115610f5c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610f86576020820181803683370190505b5090505b8415610d0857610f9b600183611f1e565b9150610fa8600a86611fb7565b610fb3906030611ef2565b60f81b818381518110610fd657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350610ff8600a86611f0a565b9450610f8a565b611007610c19565b6001600160a01b03166110186106f5565b6001600160a01b03161461103e5760405162461bcd60e51b815260040161046090611c66565b6032600a54106110605760405162461bcd60e51b815260040161046090611a3b565b603281600a546110709190611ef2565b111561108e5760405162461bcd60e51b8152600401610460906118ba565b60005b8181101561051857600980549060006110a983611f9c565b9091555050600a80549060006110be83611f9c565b91905055506110cf83600954610e97565b806110d981611f9c565b915050611091565b6110eb838361122f565b6110f86000848484611114565b6105185760405162461bcd60e51b8152600401610460906118f1565b6000611128846001600160a01b031661130e565b1561122457836001600160a01b031663150b7a02611144610c19565b8786866040518563ffffffff1660e01b8152600401611166949392919061185f565b602060405180830381600087803b15801561118057600080fd5b505af19250505080156111b0575060408051601f3d908101601f191682019092526111ad918101906116cc565b60015b61120a573d8080156111de576040519150601f19603f3d011682016040523d82523d6000602084013e6111e3565b606091505b5080516112025760405162461bcd60e51b8152600401610460906118f1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d08565b506001949350505050565b6001600160a01b0382166112555760405162461bcd60e51b815260040161046090611be5565b61125e81610bfc565b1561127b5760405162461bcd60e51b815260040161046090611989565b61128760008383610518565b6001600160a01b03821660009081526003602052604081208054600192906112b0908490611ef2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b82805461132090611f61565b90600052602060002090601f0160209004810192826113425760008555611388565b82601f1061135b57805160ff1916838001178555611388565b82800160010185558215611388579182015b8281111561138857825182559160200191906001019061136d565b50611394929150611398565b5090565b5b808211156113945760008155600101611399565b600067ffffffffffffffff8311156113c7576113c7611ff7565b6113da601f8401601f1916602001611e98565b90508281528383830111156113ee57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146103a257600080fd5b600082601f83011261142c578081fd5b8135602061144161143c83611ec2565b611e98565b828152818101908583018385028701840188101561145d578586fd5b855b8581101561147b5781358452928401929084019060010161145f565b5090979650505050505050565b600060208284031215611499578081fd5b6114a282611405565b9392505050565b600080604083850312156114bb578081fd5b6114c483611405565b91506114d260208401611405565b90509250929050565b6000806000606084860312156114ef578081fd5b6114f884611405565b925061150660208501611405565b9150604084013590509250925092565b6000806000806080858703121561152b578081fd5b61153485611405565b935061154260208601611405565b925060408501359150606085013567ffffffffffffffff811115611564578182fd5b8501601f81018713611574578182fd5b611583878235602084016113ad565b91505092959194509250565b600080604083850312156115a1578182fd5b6115aa83611405565b9150602083013580151581146115be578182fd5b809150509250929050565b600080604083850312156115db578182fd5b6115e483611405565b946020939093013593505050565b60008060408385031215611604578182fd5b823567ffffffffffffffff8082111561161b578384fd5b818501915085601f83011261162e578384fd5b8135602061163e61143c83611ec2565b82815281810190858301838502870184018b101561165a578889fd5b8896505b848710156116835761166f81611405565b83526001969096019591830191830161165e565b5096505086013592505080821115611699578283fd5b506116a68582860161141c565b9150509250929050565b6000602082840312156116c1578081fd5b81356114a28161200d565b6000602082840312156116dd578081fd5b81516114a28161200d565b6000602082840312156116f9578081fd5b813567ffffffffffffffff81111561170f578182fd5b8201601f8101841361171f578182fd5b610d08848235602084016113ad565b60006020828403121561173f578081fd5b5035919050565b6000815180845261175e816020860160208601611f35565b601f01601f19169290920160200192915050565b80546000906002810460018083168061178c57607f831692505b60208084108214156117ac57634e487b7160e01b86526022600452602486fd5b8180156117c057600181146117d1576117fe565b60ff198616895284890196506117fe565b6117da88611ee6565b60005b868110156117f65781548b8201529085019083016117dd565b505084890196505b50505050505092915050565b60006114a28284611772565b60006118228285611772565b8351611832818360208801611f35565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061189290830184611746565b9695505050505050565b901515815260200190565b6000602082526114a26020830184611746565b60208082526017908201527f4d6178204c696d697420546f2041646d696e204d696e74000000000000000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601d908201527f41646d696e204d696e74696e67204c696d697420697320457863656564000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526019908201527f546865206c656e6774682073686f756c642062652073616d6500000000000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f4d6178204c696d697420546f20546f74616c2053616c65000000000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600b908201526a135a5b9d1a5b99c8115b9960aa1b604082015260600190565b6020808252601a908201527f5075626c69632053616c65206973206e6f742053746172746564000000000000604082015260600190565b60208082526019908201527f596f752063616e206d696e742074776f206f6e65204e46542e00000000000000604082015260600190565b90815260200190565b60405181810167ffffffffffffffff81118282101715611eba57611eba611ff7565b604052919050565b600067ffffffffffffffff821115611edc57611edc611ff7565b5060209081020190565b60009081526020902090565b60008219821115611f0557611f05611fcb565b500190565b600082611f1957611f19611fe1565b500490565b600082821015611f3057611f30611fcb565b500390565b60005b83811015611f50578181015183820152602001611f38565b838111156109915750506000910152565b600281046001821680611f7557607f821691505b60208210811415611f9657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fb057611fb0611fcb565b5060010190565b600082611fc657611fc6611fe1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bdb57600080fdfea26469706673582212202e3b00816a64ab2e6989b8a0b42ede72c619ce0a80daf4eb37464709d2bb397164736f6c63430008000033697066733a2f2f516d594b69335770667851727135344542585359413359766d746b666e68464a3534486146654279316348536e792f697066733a2f2f516d5063566751416259617967587a32616d5a684366554662467a677145504a4b58714546326a454851646f62392f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80637dfed9fe116100f9578063b88d4fde11610097578063db8ff1fd11610071578063db8ff1fd1461031e578063e985e9c514610331578063f2fde38b14610344578063fe60d12c14610357576101a9565b8063b88d4fde146102f0578063bf22225a14610303578063c87b56dd1461030b576101a9565b8063a22cb465116100d3578063a22cb465146102c5578063a475b5dd146102d8578063a8d81cca146102e0578063b1386078146102e8576101a9565b80637dfed9fe146102ad5780638da5cb5b146102b557806395d89b41146102bd576101a9565b806323b872dd11610166578063518302271161014057806351830227146102775780636352211e1461027f57806370a0823114610292578063715018a6146102a5576101a9565b806323b872dd1461023e57806342842e0e146102515780634985fb5b14610264576101a9565b806301ffc9a7146101ae57806306fdde03146101d7578063081812fc146101ec578063095ea7b31461020c5780630fcf2e751461022157806318160ddd14610229575b600080fd5b6101c16101bc3660046116b0565b61035f565b6040516101ce919061189c565b60405180910390f35b6101df6103a7565b6040516101ce91906118a7565b6101ff6101fa36600461172e565b610439565b6040516101ce919061184b565b61021f61021a3660046115c9565b610485565b005b6101c161051d565b610231610526565b6040516101ce9190611e8f565b61021f61024c3660046114db565b61052c565b61021f61025f3660046114db565b610564565b61021f6102723660046116e8565b61057f565b6101c16105d5565b6101ff61028d36600461172e565b6105de565b6102316102a0366004611488565b610613565b61021f610657565b61021f6106a2565b6101ff6106f5565b6101df610709565b61021f6102d336600461158f565b610718565b61021f6107e6565b610231610839565b61021f61083f565b61021f6102fe366004611516565b610958565b610231610997565b6101df61031936600461172e565b61099d565b61021f61032c3660046115f2565b610a69565b6101c161033f3660046114a9565b610b3f565b61021f610352366004611488565b610b6d565b610231610bde565b60006001600160e01b031982166380ac58cd60e01b148061039057506001600160e01b03198216635b5e139f60e01b145b8061039f575061039f82610be3565b90505b919050565b6060600080546103b690611f61565b80601f01602080910402602001604051908101604052809291908181526020018280546103e290611f61565b801561042f5780601f106104045761010080835404028352916020019161042f565b820191906000526020600020905b81548152906001019060200180831161041257829003601f168201915b5050505050905090565b600061044482610bfc565b6104695760405162461bcd60e51b815260040161046090611c1a565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610490826105de565b9050806001600160a01b0316836001600160a01b031614156104c45760405162461bcd60e51b815260040161046090611d6a565b806001600160a01b03166104d6610c19565b6001600160a01b031614806104f257506104f28161033f610c19565b61050e5760405162461bcd60e51b815260040161046090611abe565b6105188383610c1d565b505050565b600c5460ff1681565b60095481565b61053d610537610c19565b82610c8b565b6105595760405162461bcd60e51b815260040161046090611dab565b610518838383610d10565b61051883838360405180602001604052806000815250610958565b610587610c19565b6001600160a01b03166105986106f5565b6001600160a01b0316146105be5760405162461bcd60e51b815260040161046090611c66565b80516105d1906006906020840190611314565b5050565b60085460ff1681565b6000818152600260205260408120546001600160a01b03168061039f5760405162461bcd60e51b815260040161046090611b65565b60006001600160a01b03821661063b5760405162461bcd60e51b815260040161046090611b1b565b506001600160a01b031660009081526003602052604090205490565b61065f610c19565b6001600160a01b03166106706106f5565b6001600160a01b0316146106965760405162461bcd60e51b815260040161046090611c66565b6106a06000610e3d565b565b6106aa610c19565b6001600160a01b03166106bb6106f5565b6001600160a01b0316146106e15760405162461bcd60e51b815260040161046090611c66565b600c805460ff19811660ff90911615179055565b60085461010090046001600160a01b031690565b6060600180546103b690611f61565b610720610c19565b6001600160a01b0316826001600160a01b031614156107515760405162461bcd60e51b815260040161046090611a04565b806005600061075e610c19565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556107a2610c19565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516107da919061189c565b60405180910390a35050565b6107ee610c19565b6001600160a01b03166107ff6106f5565b6001600160a01b0316146108255760405162461bcd60e51b815260040161046090611c66565b6008805460ff19811660ff90911615179055565b600b5481565b600c5460ff1615156001146108665760405162461bcd60e51b815260040161046090611e21565b61087360326115b3611f1e565b600b54106108935760405162461bcd60e51b815260040161046090611dfc565b6108a060326115b3611f1e565b600b546108ae906001611ef2565b11156108cc5760405162461bcd60e51b815260040161046090611c9b565b336000908152600d60205260409020546002116108fb5760405162461bcd60e51b815260040161046090611e58565b6009805490600061090b83611f9c565b9091555050600b805490600061092083611f9c565b9091555050336000908152600d60205260408120805460019290610945908490611ef2565b925050819055506106a033600954610e97565b610969610963610c19565b83610c8b565b6109855760405162461bcd60e51b815260040161046090611dab565b61099184848484610eb1565b50505050565b600a5481565b60606109a882610bfc565b6109c45760405162461bcd60e51b815260040161046090611d1b565b60085460ff16610a22576000600780546109dd90611f61565b9050116109f95760405180602001604052806000815250610a1b565b6007604051602001610a0b919061180a565b6040516020818303038152906040525b90506103a2565b600060068054610a3190611f61565b905011610a4d5760405180602001604052806000815250610a1b565b6006610a5883610ee4565b604051602001610a0b929190611816565b610a71610c19565b6001600160a01b0316610a826106f5565b6001600160a01b031614610aa85760405162461bcd60e51b815260040161046090611c66565b8051825114610ac95760405162461bcd60e51b815260040161046090611bae565b60005b825181101561051857610b2d838281518110610af857634e487b7160e01b600052603260045260246000fd5b6020026020010151838381518110610b2057634e487b7160e01b600052603260045260246000fd5b6020026020010151610fff565b80610b3781611f9c565b915050610acc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610b75610c19565b6001600160a01b0316610b866106f5565b6001600160a01b031614610bac5760405162461bcd60e51b815260040161046090611c66565b6001600160a01b038116610bd25760405162461bcd60e51b815260040161046090611943565b610bdb81610e3d565b50565b603281565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c52826105de565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610c9682610bfc565b610cb25760405162461bcd60e51b815260040161046090611a72565b6000610cbd836105de565b9050806001600160a01b0316846001600160a01b03161480610cf85750836001600160a01b0316610ced84610439565b6001600160a01b0316145b80610d085750610d088185610b3f565b949350505050565b826001600160a01b0316610d23826105de565b6001600160a01b031614610d495760405162461bcd60e51b815260040161046090611cd2565b6001600160a01b038216610d6f5760405162461bcd60e51b8152600401610460906119c0565b610d7a838383610518565b610d85600082610c1d565b6001600160a01b0383166000908152600360205260408120805460019290610dae908490611f1e565b90915550506001600160a01b0382166000908152600360205260408120805460019290610ddc908490611ef2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6105d18282604051806020016040528060008152506110e1565b610ebc848484610d10565b610ec884848484611114565b6109915760405162461bcd60e51b8152600401610460906118f1565b606081610f0957506040805180820190915260018152600360fc1b60208201526103a2565b8160005b8115610f335780610f1d81611f9c565b9150610f2c9050600a83611f0a565b9150610f0d565b60008167ffffffffffffffff811115610f5c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610f86576020820181803683370190505b5090505b8415610d0857610f9b600183611f1e565b9150610fa8600a86611fb7565b610fb3906030611ef2565b60f81b818381518110610fd657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350610ff8600a86611f0a565b9450610f8a565b611007610c19565b6001600160a01b03166110186106f5565b6001600160a01b03161461103e5760405162461bcd60e51b815260040161046090611c66565b6032600a54106110605760405162461bcd60e51b815260040161046090611a3b565b603281600a546110709190611ef2565b111561108e5760405162461bcd60e51b8152600401610460906118ba565b60005b8181101561051857600980549060006110a983611f9c565b9091555050600a80549060006110be83611f9c565b91905055506110cf83600954610e97565b806110d981611f9c565b915050611091565b6110eb838361122f565b6110f86000848484611114565b6105185760405162461bcd60e51b8152600401610460906118f1565b6000611128846001600160a01b031661130e565b1561122457836001600160a01b031663150b7a02611144610c19565b8786866040518563ffffffff1660e01b8152600401611166949392919061185f565b602060405180830381600087803b15801561118057600080fd5b505af19250505080156111b0575060408051601f3d908101601f191682019092526111ad918101906116cc565b60015b61120a573d8080156111de576040519150601f19603f3d011682016040523d82523d6000602084013e6111e3565b606091505b5080516112025760405162461bcd60e51b8152600401610460906118f1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d08565b506001949350505050565b6001600160a01b0382166112555760405162461bcd60e51b815260040161046090611be5565b61125e81610bfc565b1561127b5760405162461bcd60e51b815260040161046090611989565b61128760008383610518565b6001600160a01b03821660009081526003602052604081208054600192906112b0908490611ef2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b82805461132090611f61565b90600052602060002090601f0160209004810192826113425760008555611388565b82601f1061135b57805160ff1916838001178555611388565b82800160010185558215611388579182015b8281111561138857825182559160200191906001019061136d565b50611394929150611398565b5090565b5b808211156113945760008155600101611399565b600067ffffffffffffffff8311156113c7576113c7611ff7565b6113da601f8401601f1916602001611e98565b90508281528383830111156113ee57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146103a257600080fd5b600082601f83011261142c578081fd5b8135602061144161143c83611ec2565b611e98565b828152818101908583018385028701840188101561145d578586fd5b855b8581101561147b5781358452928401929084019060010161145f565b5090979650505050505050565b600060208284031215611499578081fd5b6114a282611405565b9392505050565b600080604083850312156114bb578081fd5b6114c483611405565b91506114d260208401611405565b90509250929050565b6000806000606084860312156114ef578081fd5b6114f884611405565b925061150660208501611405565b9150604084013590509250925092565b6000806000806080858703121561152b578081fd5b61153485611405565b935061154260208601611405565b925060408501359150606085013567ffffffffffffffff811115611564578182fd5b8501601f81018713611574578182fd5b611583878235602084016113ad565b91505092959194509250565b600080604083850312156115a1578182fd5b6115aa83611405565b9150602083013580151581146115be578182fd5b809150509250929050565b600080604083850312156115db578182fd5b6115e483611405565b946020939093013593505050565b60008060408385031215611604578182fd5b823567ffffffffffffffff8082111561161b578384fd5b818501915085601f83011261162e578384fd5b8135602061163e61143c83611ec2565b82815281810190858301838502870184018b101561165a578889fd5b8896505b848710156116835761166f81611405565b83526001969096019591830191830161165e565b5096505086013592505080821115611699578283fd5b506116a68582860161141c565b9150509250929050565b6000602082840312156116c1578081fd5b81356114a28161200d565b6000602082840312156116dd578081fd5b81516114a28161200d565b6000602082840312156116f9578081fd5b813567ffffffffffffffff81111561170f578182fd5b8201601f8101841361171f578182fd5b610d08848235602084016113ad565b60006020828403121561173f578081fd5b5035919050565b6000815180845261175e816020860160208601611f35565b601f01601f19169290920160200192915050565b80546000906002810460018083168061178c57607f831692505b60208084108214156117ac57634e487b7160e01b86526022600452602486fd5b8180156117c057600181146117d1576117fe565b60ff198616895284890196506117fe565b6117da88611ee6565b60005b868110156117f65781548b8201529085019083016117dd565b505084890196505b50505050505092915050565b60006114a28284611772565b60006118228285611772565b8351611832818360208801611f35565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061189290830184611746565b9695505050505050565b901515815260200190565b6000602082526114a26020830184611746565b60208082526017908201527f4d6178204c696d697420546f2041646d696e204d696e74000000000000000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601d908201527f41646d696e204d696e74696e67204c696d697420697320457863656564000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526019908201527f546865206c656e6774682073686f756c642062652073616d6500000000000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f4d6178204c696d697420546f20546f74616c2053616c65000000000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600b908201526a135a5b9d1a5b99c8115b9960aa1b604082015260600190565b6020808252601a908201527f5075626c69632053616c65206973206e6f742053746172746564000000000000604082015260600190565b60208082526019908201527f596f752063616e206d696e742074776f206f6e65204e46542e00000000000000604082015260600190565b90815260200190565b60405181810167ffffffffffffffff81118282101715611eba57611eba611ff7565b604052919050565b600067ffffffffffffffff821115611edc57611edc611ff7565b5060209081020190565b60009081526020902090565b60008219821115611f0557611f05611fcb565b500190565b600082611f1957611f19611fe1565b500490565b600082821015611f3057611f30611fcb565b500390565b60005b83811015611f50578181015183820152602001611f38565b838111156109915750506000910152565b600281046001821680611f7557607f821691505b60208210811415611f9657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fb057611fb0611fcb565b5060010190565b600082611fc657611fc6611fe1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bdb57600080fdfea26469706673582212202e3b00816a64ab2e6989b8a0b42ede72c619ce0a80daf4eb37464709d2bb397164736f6c63430008000033

Deployed Bytecode Sourcemap

32555:2078:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20192:305;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21137:100;;;:::i;:::-;;;;;;;:::i;22914:221::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22437:411::-;;;;;;:::i;:::-;;:::i;:::-;;32810:38;;;:::i;32596:30::-;;;:::i;:::-;;;;;;;:::i;23804:339::-;;;;;;:::i;:::-;;:::i;24214:185::-;;;;;;:::i;:::-;;:::i;33763:100::-;;;;;;:::i;:::-;;:::i;19833:28::-;;;:::i;20831:239::-;;;;;;:::i;:::-;;:::i;20561:208::-;;;;;;:::i;:::-;;:::i;10279:103::-;;;:::i;33565:109::-;;;:::i;9628:87::-;;;:::i;21306:104::-;;;:::i;23207:295::-;;;;;;:::i;:::-;;:::i;33682:73::-;;;:::i;32775:28::-;;;:::i;33121:425::-;;;:::i;24470:328::-;;;;;;:::i;:::-;;:::i;32729:29::-;;;:::i;21487:524::-;;;;;;:::i;:::-;;:::i;34275:348::-;;;;;;:::i;:::-;;:::i;23573:164::-;;;;;;:::i;:::-;;:::i;10537:201::-;;;;;;:::i;:::-;;:::i;32683:37::-;;;:::i;20192:305::-;20294:4;-1:-1:-1;;;;;;20331:40:0;;-1:-1:-1;;;20331:40:0;;:105;;-1:-1:-1;;;;;;;20388:48:0;;-1:-1:-1;;;20388:48:0;20331:105;:158;;;;20453:36;20477:11;20453:23;:36::i;:::-;20311:178;;20192:305;;;;:::o;21137:100::-;21191:13;21224:5;21217:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21137:100;:::o;22914:221::-;22990:7;23018:16;23026:7;23018;:16::i;:::-;23010:73;;;;-1:-1:-1;;;23010:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;23103:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23103:24:0;;22914:221::o;22437:411::-;22518:13;22534:23;22549:7;22534:14;:23::i;:::-;22518:39;;22582:5;-1:-1:-1;;;;;22576:11:0;:2;-1:-1:-1;;;;;22576:11:0;;;22568:57;;;;-1:-1:-1;;;22568:57:0;;;;;;;:::i;:::-;22676:5;-1:-1:-1;;;;;22660:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22660:21:0;;:62;;;;22685:37;22702:5;22709:12;:10;:12::i;22685:37::-;22638:168;;;;-1:-1:-1;;;22638:168:0;;;;;;;:::i;:::-;22819:21;22828:2;22832:7;22819:8;:21::i;:::-;22437:411;;;:::o;32810:38::-;;;;;;:::o;32596:30::-;;;;:::o;23804:339::-;23999:41;24018:12;:10;:12::i;:::-;24032:7;23999:18;:41::i;:::-;23991:103;;;;-1:-1:-1;;;23991:103:0;;;;;;;:::i;:::-;24107:28;24117:4;24123:2;24127:7;24107:9;:28::i;24214:185::-;24352:39;24369:4;24375:2;24379:7;24352:39;;;;;;;;;;;;:16;:39::i;33763:100::-;9859:12;:10;:12::i;:::-;-1:-1:-1;;;;;9848:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9848:23:0;;9840:68;;;;-1:-1:-1;;;9840:68:0;;;;;;;:::i;:::-;33837:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;33763:100:::0;:::o;19833:28::-;;;;;;:::o;20831:239::-;20903:7;20939:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20939:16:0;20974:19;20966:73;;;;-1:-1:-1;;;20966:73:0;;;;;;;:::i;20561:208::-;20633:7;-1:-1:-1;;;;;20661:19:0;;20653:74;;;;-1:-1:-1;;;20653:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;20745:16:0;;;;;:9;:16;;;;;;;20561:208::o;10279:103::-;9859:12;:10;:12::i;:::-;-1:-1:-1;;;;;9848:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9848:23:0;;9840:68;;;;-1:-1:-1;;;9840:68:0;;;;;;;:::i;:::-;10344:30:::1;10371:1;10344:18;:30::i;:::-;10279:103::o:0;33565:109::-;9859:12;:10;:12::i;:::-;-1:-1:-1;;;;;9848:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9848:23:0;;9840:68;;;;-1:-1:-1;;;9840:68:0;;;;;;;:::i;:::-;33648:18:::1;::::0;;-1:-1:-1;;33626:40:0;::::1;33648:18;::::0;;::::1;33647:19;33626:40;::::0;;33565:109::o;9628:87::-;9701:6;;;;;-1:-1:-1;;;;;9701:6:0;;9628:87::o;21306:104::-;21362:13;21395:7;21388:14;;;;;:::i;23207:295::-;23322:12;:10;:12::i;:::-;-1:-1:-1;;;;;23310:24:0;:8;-1:-1:-1;;;;;23310:24:0;;;23302:62;;;;-1:-1:-1;;;23302:62:0;;;;;;;:::i;:::-;23422:8;23377:18;:32;23396:12;:10;:12::i;:::-;-1:-1:-1;;;;;23377:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23377:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23377:53:0;;;;;;;;;;;23461:12;:10;:12::i;:::-;-1:-1:-1;;;;;23446:48:0;;23485:8;23446:48;;;;;;:::i;:::-;;;;;;;;23207:295;;:::o;33682:73::-;9859:12;:10;:12::i;:::-;-1:-1:-1;;;;;9848:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9848:23:0;;9840:68;;;;-1:-1:-1;;;9840:68:0;;;;;;;:::i;:::-;33739:8:::1;::::0;;-1:-1:-1;;33727:20:0;::::1;33739:8;::::0;;::::1;33738:9;33727:20;::::0;;33682:73::o;32775:28::-;;;;:::o;33121:425::-;32971:18;;;;:26;;:18;:26;32961:67;;;;-1:-1:-1;;;32961:67:0;;;;;;;:::i;:::-;33204:20:::1;32718:2;32671:4;33204:20;:::i;:::-;33192:9;;:32;33184:56;;;;-1:-1:-1::0;;;33184:56:0::1;;;;;;;:::i;:::-;33276:20;32718:2;32671:4;33276:20;:::i;:::-;33259:9;::::0;:13:::1;::::0;33271:1:::1;33259:13;:::i;:::-;:37;;33251:73;;;;-1:-1:-1::0;;;33251:73:0::1;;;;;;;:::i;:::-;33354:10;33343:22;::::0;;;:10:::1;:22;::::0;;;;;33368:1:::1;-1:-1:-1::0;33335:64:0::1;;;;-1:-1:-1::0;;;33335:64:0::1;;;;;;;:::i;:::-;33420:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;33444:9:0::1;:11:::0;;;:9:::1;:11;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;33477:10:0::1;33466:22;::::0;;;:10:::1;:22;::::0;;;;:27;;33492:1:::1;::::0;33466:22;:27:::1;::::0;33492:1;;33466:27:::1;:::i;:::-;;;;;;;;33504:34;33514:10;33526:11;;33504:9;:34::i;24470:328::-:0;24645:41;24664:12;:10;:12::i;:::-;24678:7;24645:18;:41::i;:::-;24637:103;;;;-1:-1:-1;;;24637:103:0;;;;;;;:::i;:::-;24751:39;24765:4;24771:2;24775:7;24784:5;24751:13;:39::i;:::-;24470:328;;;;:::o;32729:29::-;;;;:::o;21487:524::-;21560:13;21594:16;21602:7;21594;:16::i;:::-;21586:76;;;;-1:-1:-1;;;21586:76:0;;;;;;;:::i;:::-;21678:8;;;;21675:327;;21799:1;21774:14;21768:28;;;;;:::i;:::-;;;:32;:80;;;;;;;;;;;;;;;;;21827:14;21810:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;21768:80;21761:87;;;;21675:327;21920:1;21902:7;21896:21;;;;;:::i;:::-;;;:25;:94;;;;;;;;;;;;;;;;;21948:7;21957:18;:7;:16;:18::i;:::-;21931:53;;;;;;;;;:::i;34275:348::-;9859:12;:10;:12::i;:::-;-1:-1:-1;;;;;9848:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9848:23:0;;9840:68;;;;-1:-1:-1;;;9840:68:0;;;;;;;:::i;:::-;34430:12:::1;:19;34404:15;:22;:45;34395:84;;;;-1:-1:-1::0;;;34395:84:0::1;;;;;;;:::i;:::-;34497:9;34492:124;34512:15;:22;34510:1;:24;34492:124;;;34556:48;34568:15;34584:1;34568:18;;;;;;-1:-1:-1::0;;;34568:18:0::1;;;;;;;;;;;;;;;34588:12;34601:1;34588:15;;;;;;-1:-1:-1::0;;;34588:15:0::1;;;;;;;;;;;;;;;34556:11;:48::i;:::-;34536:3:::0;::::1;::::0;::::1;:::i;:::-;;;;34492:124;;23573:164:::0;-1:-1:-1;;;;;23694:25:0;;;23670:4;23694:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23573:164::o;10537:201::-;9859:12;:10;:12::i;:::-;-1:-1:-1;;;;;9848:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9848:23:0;;9840:68;;;;-1:-1:-1;;;9840:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10626:22:0;::::1;10618:73;;;;-1:-1:-1::0;;;10618:73:0::1;;;;;;;:::i;:::-;10702:28;10721:8;10702:18;:28::i;:::-;10537:201:::0;:::o;32683:37::-;32718:2;32683:37;:::o;13617:157::-;-1:-1:-1;;;;;;13726:40:0;;-1:-1:-1;;;13726:40:0;13617:157;;;:::o;26308:127::-;26373:4;26397:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26397:16:0;:30;;;26308:127::o;9000:98::-;9080:10;9000:98;:::o;30306:174::-;30381:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30381:29:0;-1:-1:-1;;;;;30381:29:0;;;;;;;;:24;;30435:23;30381:24;30435:14;:23::i;:::-;-1:-1:-1;;;;;30426:46:0;;;;;;;;;;;30306:174;;:::o;26602:348::-;26695:4;26720:16;26728:7;26720;:16::i;:::-;26712:73;;;;-1:-1:-1;;;26712:73:0;;;;;;;:::i;:::-;26796:13;26812:23;26827:7;26812:14;:23::i;:::-;26796:39;;26865:5;-1:-1:-1;;;;;26854:16:0;:7;-1:-1:-1;;;;;26854:16:0;;:51;;;;26898:7;-1:-1:-1;;;;;26874:31:0;:20;26886:7;26874:11;:20::i;:::-;-1:-1:-1;;;;;26874:31:0;;26854:51;:87;;;;26909:32;26926:5;26933:7;26909:16;:32::i;:::-;26846:96;26602:348;-1:-1:-1;;;;26602:348:0:o;29598:578::-;29757:4;-1:-1:-1;;;;;29730:31:0;:23;29745:7;29730:14;:23::i;:::-;-1:-1:-1;;;;;29730:31:0;;29722:85;;;;-1:-1:-1;;;29722:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29826:16:0;;29818:65;;;;-1:-1:-1;;;29818:65:0;;;;;;;:::i;:::-;29896:39;29917:4;29923:2;29927:7;29896:20;:39::i;:::-;30000:29;30017:1;30021:7;30000:8;:29::i;:::-;-1:-1:-1;;;;;30042:15:0;;;;;;:9;:15;;;;;:20;;30061:1;;30042:15;:20;;30061:1;;30042:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30073:13:0;;;;;;:9;:13;;;;;:18;;30090:1;;30073:13;:18;;30090:1;;30073:18;:::i;:::-;;;;-1:-1:-1;;30102:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30102:21:0;-1:-1:-1;;;;;30102:21:0;;;;;;;;;30141:27;;30102:16;;30141:27;;;;;;;29598:578;;;:::o;10898:191::-;10991:6;;;-1:-1:-1;;;;;11008:17:0;;;10991:6;11008:17;;;-1:-1:-1;;;;;;11008:17:0;;;;;;11041:40;;10991:6;;;;;;;;11041:40;;10972:16;;11041:40;10898:191;;:::o;27292:110::-;27368:26;27378:2;27382:7;27368:26;;;;;;;;;;;;:9;:26::i;25680:315::-;25837:28;25847:4;25853:2;25857:7;25837:9;:28::i;:::-;25884:48;25907:4;25913:2;25917:7;25926:5;25884:22;:48::i;:::-;25876:111;;;;-1:-1:-1;;;25876:111:0;;;;;;;:::i;11286:723::-;11342:13;11563:10;11559:53;;-1:-1:-1;11590:10:0;;;;;;;;;;;;-1:-1:-1;;;11590:10:0;;;;;;11559:53;11637:5;11622:12;11678:78;11685:9;;11678:78;;11711:8;;;;:::i;:::-;;-1:-1:-1;11734:10:0;;-1:-1:-1;11742:2:0;11734:10;;:::i;:::-;;;11678:78;;;11766:19;11798:6;11788:17;;;;;;-1:-1:-1;;;11788:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11788:17:0;;11766:39;;11816:154;11823:10;;11816:154;;11850:11;11860:1;11850:11;;:::i;:::-;;-1:-1:-1;11919:10:0;11927:2;11919:5;:10;:::i;:::-;11906:24;;:2;:24;:::i;:::-;11893:39;;11876:6;11883;11876:14;;;;;;-1:-1:-1;;;11876:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;11876:56:0;;;;;;;;-1:-1:-1;11947:11:0;11956:2;11947:11;;:::i;:::-;;;11816:154;;33871:392;9859:12;:10;:12::i;:::-;-1:-1:-1;;;;;9848:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9848:23:0;;9840:68;;;;-1:-1:-1;;;9840:68:0;;;;;;;:::i;:::-;32718:2:::1;33961:10;;:21;33953:63;;;;-1:-1:-1::0;;;33953:63:0::1;;;;;;;:::i;:::-;32718:2;34048:8;34035:10;;:21;;;;:::i;:::-;:33;;34027:69;;;;-1:-1:-1::0;;;34027:69:0::1;;;;;;;:::i;:::-;34114:9;34109:147;34129:8;34127:1;:10;34109:147;;;34159:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;34187:10:0::1;:12:::0;;;:10:::1;:12;::::0;::::1;:::i;:::-;;;;;;34218:26;34228:3;34232:11;;34218:9;:26::i;:::-;34139:3:::0;::::1;::::0;::::1;:::i;:::-;;;;34109:147;;27629:321:::0;27759:18;27765:2;27769:7;27759:5;:18::i;:::-;27810:54;27841:1;27845:2;27849:7;27858:5;27810:22;:54::i;:::-;27788:154;;;;-1:-1:-1;;;27788:154:0;;;;;;;:::i;31045:799::-;31200:4;31221:15;:2;-1:-1:-1;;;;;31221:13:0;;:15::i;:::-;31217:620;;;31273:2;-1:-1:-1;;;;;31257:36:0;;31294:12;:10;:12::i;:::-;31308:4;31314:7;31323:5;31257:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31257:72:0;;;;;;;;-1:-1:-1;;31257:72:0;;;;;;;;;;;;:::i;:::-;;;31253:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31499:13:0;;31495:272;;31542:60;;-1:-1:-1;;;31542:60:0;;;;;;;:::i;31495:272::-;31717:6;31711:13;31702:6;31698:2;31694:15;31687:38;31253:529;-1:-1:-1;;;;;;31380:51:0;-1:-1:-1;;;31380:51:0;;-1:-1:-1;31373:58:0;;31217:620;-1:-1:-1;31821:4:0;31045:799;;;;;;:::o;28286:386::-;-1:-1:-1;;;;;28366:16:0;;28358:61;;;;-1:-1:-1;;;28358:61:0;;;;;;;:::i;:::-;28439:16;28447:7;28439;:16::i;:::-;28438:17;28430:58;;;;-1:-1:-1;;;28430:58:0;;;;;;;:::i;:::-;28501:45;28530:1;28534:2;28538:7;28501:20;:45::i;:::-;-1:-1:-1;;;;;28559:13:0;;;;;;:9;:13;;;;;:18;;28576:1;;28559:13;:18;;28576:1;;28559:18;:::i;:::-;;;;-1:-1:-1;;28588:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28588:21:0;-1:-1:-1;;;;;28588:21:0;;;;;;;;28631:33;;28588:16;;;28631:33;;28588:16;;28631:33;28286:386;;:::o;1634:387::-;1957:20;2005:8;;;1634:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:409:1;;114:18;106:6;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:1;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:175::-;498:20;;-1:-1:-1;;;;;547:31:1;;537:42;;527:2;;593:1;590;583:12;608:705;;721:3;714:4;706:6;702:17;698:27;688:2;;743:5;736;729:20;688:2;783:6;770:20;809:4;833:65;848:49;894:2;848:49;:::i;:::-;833:65;:::i;:::-;932:15;;;963:12;;;;995:15;;;1041:11;;;1029:24;;1025:33;;1022:42;-1:-1:-1;1019:2:1;;;1081:5;1074;1067:20;1019:2;1107:5;1121:163;1135:2;1132:1;1129:9;1121:163;;;1192:17;;1180:30;;1230:12;;;;1262;;;;1153:1;1146:9;1121:163;;;-1:-1:-1;1302:5:1;;678:635;-1:-1:-1;;;;;;;678:635:1:o;1318:198::-;;1430:2;1418:9;1409:7;1405:23;1401:32;1398:2;;;1451:6;1443;1436:22;1398:2;1479:31;1500:9;1479:31;:::i;:::-;1469:41;1388:128;-1:-1:-1;;;1388:128:1:o;1521:274::-;;;1650:2;1638:9;1629:7;1625:23;1621:32;1618:2;;;1671:6;1663;1656:22;1618:2;1699:31;1720:9;1699:31;:::i;:::-;1689:41;;1749:40;1785:2;1774:9;1770:18;1749:40;:::i;:::-;1739:50;;1608:187;;;;;:::o;1800:342::-;;;;1946:2;1934:9;1925:7;1921:23;1917:32;1914:2;;;1967:6;1959;1952:22;1914:2;1995:31;2016:9;1995:31;:::i;:::-;1985:41;;2045:40;2081:2;2070:9;2066:18;2045:40;:::i;:::-;2035:50;;2132:2;2121:9;2117:18;2104:32;2094:42;;1904:238;;;;;:::o;2147:702::-;;;;;2319:3;2307:9;2298:7;2294:23;2290:33;2287:2;;;2341:6;2333;2326:22;2287:2;2369:31;2390:9;2369:31;:::i;:::-;2359:41;;2419:40;2455:2;2444:9;2440:18;2419:40;:::i;:::-;2409:50;;2506:2;2495:9;2491:18;2478:32;2468:42;;2561:2;2550:9;2546:18;2533:32;2588:18;2580:6;2577:30;2574:2;;;2625:6;2617;2610:22;2574:2;2653:22;;2706:4;2698:13;;2694:27;-1:-1:-1;2684:2:1;;2740:6;2732;2725:22;2684:2;2768:75;2835:7;2830:2;2817:16;2812:2;2808;2804:11;2768:75;:::i;:::-;2758:85;;;2277:572;;;;;;;:::o;2854:369::-;;;2980:2;2968:9;2959:7;2955:23;2951:32;2948:2;;;3001:6;2993;2986:22;2948:2;3029:31;3050:9;3029:31;:::i;:::-;3019:41;;3110:2;3099:9;3095:18;3082:32;3157:5;3150:13;3143:21;3136:5;3133:32;3123:2;;3184:6;3176;3169:22;3123:2;3212:5;3202:15;;;2938:285;;;;;:::o;3228:266::-;;;3357:2;3345:9;3336:7;3332:23;3328:32;3325:2;;;3378:6;3370;3363:22;3325:2;3406:31;3427:9;3406:31;:::i;:::-;3396:41;3484:2;3469:18;;;;3456:32;;-1:-1:-1;;;3315:179:1:o;3499:1226::-;;;3678:2;3666:9;3657:7;3653:23;3649:32;3646:2;;;3699:6;3691;3684:22;3646:2;3744:9;3731:23;3773:18;3814:2;3806:6;3803:14;3800:2;;;3835:6;3827;3820:22;3800:2;3878:6;3867:9;3863:22;3853:32;;3923:7;3916:4;3912:2;3908:13;3904:27;3894:2;;3950:6;3942;3935:22;3894:2;3991;3978:16;4013:4;4037:65;4052:49;4098:2;4052:49;:::i;4037:65::-;4136:15;;;4167:12;;;;4199:11;;;4237;;;4229:20;;4225:29;;4222:42;-1:-1:-1;4219:2:1;;;4282:6;4274;4267:22;4219:2;4309:6;4300:15;;4324:171;4338:2;4335:1;4332:9;4324:171;;;4395:25;4416:3;4395:25;:::i;:::-;4383:38;;4356:1;4349:9;;;;;4441:12;;;;4473;;4324:171;;;-1:-1:-1;4514:5:1;-1:-1:-1;;4557:18:1;;4544:32;;-1:-1:-1;;4588:16:1;;;4585:2;;;4622:6;4614;4607:22;4585:2;;4650:69;4711:7;4700:8;4689:9;4685:24;4650:69;:::i;:::-;4640:79;;;3636:1089;;;;;:::o;4730:257::-;;4841:2;4829:9;4820:7;4816:23;4812:32;4809:2;;;4862:6;4854;4847:22;4809:2;4906:9;4893:23;4925:32;4951:5;4925:32;:::i;4992:261::-;;5114:2;5102:9;5093:7;5089:23;5085:32;5082:2;;;5135:6;5127;5120:22;5082:2;5172:9;5166:16;5191:32;5217:5;5191:32;:::i;5258:482::-;;5380:2;5368:9;5359:7;5355:23;5351:32;5348:2;;;5401:6;5393;5386:22;5348:2;5446:9;5433:23;5479:18;5471:6;5468:30;5465:2;;;5516:6;5508;5501:22;5465:2;5544:22;;5597:4;5589:13;;5585:27;-1:-1:-1;5575:2:1;;5631:6;5623;5616:22;5575:2;5659:75;5726:7;5721:2;5708:16;5703:2;5699;5695:11;5659:75;:::i;5745:190::-;;5857:2;5845:9;5836:7;5832:23;5828:32;5825:2;;;5878:6;5870;5863:22;5825:2;-1:-1:-1;5906:23:1;;5815:120;-1:-1:-1;5815:120:1:o;5940:259::-;;6021:5;6015:12;6048:6;6043:3;6036:19;6064:63;6120:6;6113:4;6108:3;6104:14;6097:4;6090:5;6086:16;6064:63;:::i;:::-;6181:2;6160:15;-1:-1:-1;;6156:29:1;6147:39;;;;6188:4;6143:50;;5991:208;-1:-1:-1;;5991:208:1:o;6204:982::-;6291:12;;6204:982;;6363:1;6348:17;;6384:1;6420:18;;;;6447:2;;6501:4;6493:6;6489:17;6479:27;;6447:2;6527;6575;6567:6;6564:14;6544:18;6541:38;6538:2;;;-1:-1:-1;;;6602:33:1;;6658:4;6655:1;6648:15;6688:4;6609:3;6676:17;6538:2;6719:18;6746:104;;;;6864:1;6859:321;;;;6712:468;;6746:104;-1:-1:-1;;6779:24:1;;6767:37;;6824:16;;;;-1:-1:-1;6746:104:1;;6859:321;6895:38;6927:5;6895:38;:::i;:::-;6955:1;6969:165;6983:6;6980:1;6977:13;6969:165;;;7061:14;;7048:11;;;7041:35;7104:16;;;;6998:10;;6969:165;;;6973:3;;7163:6;7158:3;7154:16;7147:23;;6712:468;;;;;;;6264:922;;;;:::o;7191:199::-;;7344:40;7380:3;7372:6;7344:40;:::i;7395:545::-;;7700:40;7736:3;7728:6;7700:40;:::i;:::-;7769:6;7763:13;7785:52;7830:6;7826:2;7819:4;7811:6;7807:17;7785:52;:::i;:::-;-1:-1:-1;;;7859:15:1;;7883:22;;;7932:1;7921:13;;7680:260;-1:-1:-1;;;;7680:260:1:o;7945:203::-;-1:-1:-1;;;;;8109:32:1;;;;8091:51;;8079:2;8064:18;;8046:102::o;8153:490::-;-1:-1:-1;;;;;8422:15:1;;;8404:34;;8474:15;;8469:2;8454:18;;8447:43;8521:2;8506:18;;8499:34;;;8569:3;8564:2;8549:18;;8542:31;;;8153:490;;8590:47;;8617:19;;8609:6;8590:47;:::i;:::-;8582:55;8356:287;-1:-1:-1;;;;;;8356:287:1:o;8648:187::-;8813:14;;8806:22;8788:41;;8776:2;8761:18;;8743:92::o;8840:221::-;;8989:2;8978:9;8971:21;9009:46;9051:2;9040:9;9036:18;9028:6;9009:46;:::i;9066:347::-;9268:2;9250:21;;;9307:2;9287:18;;;9280:30;9346:25;9341:2;9326:18;;9319:53;9404:2;9389:18;;9240:173::o;9418:414::-;9620:2;9602:21;;;9659:2;9639:18;;;9632:30;9698:34;9693:2;9678:18;;9671:62;-1:-1:-1;;;9764:2:1;9749:18;;9742:48;9822:3;9807:19;;9592:240::o;9837:402::-;10039:2;10021:21;;;10078:2;10058:18;;;10051:30;10117:34;10112:2;10097:18;;10090:62;-1:-1:-1;;;10183:2:1;10168:18;;10161:36;10229:3;10214:19;;10011:228::o;10244:352::-;10446:2;10428:21;;;10485:2;10465:18;;;10458:30;10524;10519:2;10504:18;;10497:58;10587:2;10572:18;;10418:178::o;10601:400::-;10803:2;10785:21;;;10842:2;10822:18;;;10815:30;10881:34;10876:2;10861:18;;10854:62;-1:-1:-1;;;10947:2:1;10932:18;;10925:34;10991:3;10976:19;;10775:226::o;11006:349::-;11208:2;11190:21;;;11247:2;11227:18;;;11220:30;11286:27;11281:2;11266:18;;11259:55;11346:2;11331:18;;11180:175::o;11360:353::-;11562:2;11544:21;;;11601:2;11581:18;;;11574:30;11640:31;11635:2;11620:18;;11613:59;11704:2;11689:18;;11534:179::o;11718:408::-;11920:2;11902:21;;;11959:2;11939:18;;;11932:30;11998:34;11993:2;11978:18;;11971:62;-1:-1:-1;;;12064:2:1;12049:18;;12042:42;12116:3;12101:19;;11892:234::o;12131:420::-;12333:2;12315:21;;;12372:2;12352:18;;;12345:30;12411:34;12406:2;12391:18;;12384:62;12482:26;12477:2;12462:18;;12455:54;12541:3;12526:19;;12305:246::o;12556:406::-;12758:2;12740:21;;;12797:2;12777:18;;;12770:30;12836:34;12831:2;12816:18;;12809:62;-1:-1:-1;;;12902:2:1;12887:18;;12880:40;12952:3;12937:19;;12730:232::o;12967:405::-;13169:2;13151:21;;;13208:2;13188:18;;;13181:30;13247:34;13242:2;13227:18;;13220:62;-1:-1:-1;;;13313:2:1;13298:18;;13291:39;13362:3;13347:19;;13141:231::o;13377:349::-;13579:2;13561:21;;;13618:2;13598:18;;;13591:30;13657:27;13652:2;13637:18;;13630:55;13717:2;13702:18;;13551:175::o;13731:356::-;13933:2;13915:21;;;13952:18;;;13945:30;14011:34;14006:2;13991:18;;13984:62;14078:2;14063:18;;13905:182::o;14092:408::-;14294:2;14276:21;;;14333:2;14313:18;;;14306:30;14372:34;14367:2;14352:18;;14345:62;-1:-1:-1;;;14438:2:1;14423:18;;14416:42;14490:3;14475:19;;14266:234::o;14505:356::-;14707:2;14689:21;;;14726:18;;;14719:30;14785:34;14780:2;14765:18;;14758:62;14852:2;14837:18;;14679:182::o;14866:347::-;15068:2;15050:21;;;15107:2;15087:18;;;15080:30;15146:25;15141:2;15126:18;;15119:53;15204:2;15189:18;;15040:173::o;15218:405::-;15420:2;15402:21;;;15459:2;15439:18;;;15432:30;15498:34;15493:2;15478:18;;15471:62;-1:-1:-1;;;15564:2:1;15549:18;;15542:39;15613:3;15598:19;;15392:231::o;15628:411::-;15830:2;15812:21;;;15869:2;15849:18;;;15842:30;15908:34;15903:2;15888:18;;15881:62;-1:-1:-1;;;15974:2:1;15959:18;;15952:45;16029:3;16014:19;;15802:237::o;16044:397::-;16246:2;16228:21;;;16285:2;16265:18;;;16258:30;16324:34;16319:2;16304:18;;16297:62;-1:-1:-1;;;16390:2:1;16375:18;;16368:31;16431:3;16416:19;;16218:223::o;16446:413::-;16648:2;16630:21;;;16687:2;16667:18;;;16660:30;16726:34;16721:2;16706:18;;16699:62;-1:-1:-1;;;16792:2:1;16777:18;;16770:47;16849:3;16834:19;;16620:239::o;16864:335::-;17066:2;17048:21;;;17105:2;17085:18;;;17078:30;-1:-1:-1;;;17139:2:1;17124:18;;17117:41;17190:2;17175:18;;17038:161::o;17204:350::-;17406:2;17388:21;;;17445:2;17425:18;;;17418:30;17484:28;17479:2;17464:18;;17457:56;17545:2;17530:18;;17378:176::o;17559:349::-;17761:2;17743:21;;;17800:2;17780:18;;;17773:30;17839:27;17834:2;17819:18;;17812:55;17899:2;17884:18;;17733:175::o;17913:177::-;18059:25;;;18047:2;18032:18;;18014:76::o;18095:251::-;18165:2;18159:9;18195:17;;;18242:18;18227:34;;18263:22;;;18224:62;18221:2;;;18289:18;;:::i;:::-;18325:2;18318:22;18139:207;;-1:-1:-1;18139:207:1:o;18351:192::-;;18450:18;18442:6;18439:30;18436:2;;;18472:18;;:::i;:::-;-1:-1:-1;18532:4:1;18513:17;;;18509:28;;18426:117::o;18548:129::-;;18616:17;;;18666:4;18650:21;;;18606:71::o;18682:128::-;;18753:1;18749:6;18746:1;18743:13;18740:2;;;18759:18;;:::i;:::-;-1:-1:-1;18795:9:1;;18730:80::o;18815:120::-;;18881:1;18871:2;;18886:18;;:::i;:::-;-1:-1:-1;18920:9:1;;18861:74::o;18940:125::-;;19008:1;19005;19002:8;18999:2;;;19013:18;;:::i;:::-;-1:-1:-1;19050:9:1;;18989:76::o;19070:258::-;19142:1;19152:113;19166:6;19163:1;19160:13;19152:113;;;19242:11;;;19236:18;19223:11;;;19216:39;19188:2;19181:10;19152:113;;;19283:6;19280:1;19277:13;19274:2;;;-1:-1:-1;;19318:1:1;19300:16;;19293:27;19123:205::o;19333:380::-;19418:1;19408:12;;19465:1;19455:12;;;19476:2;;19530:4;19522:6;19518:17;19508:27;;19476:2;19583;19575:6;19572:14;19552:18;19549:38;19546:2;;;19629:10;19624:3;19620:20;19617:1;19610:31;19664:4;19661:1;19654:15;19692:4;19689:1;19682:15;19546:2;;19388:325;;;:::o;19718:135::-;;-1:-1:-1;;19778:17:1;;19775:2;;;19798:18;;:::i;:::-;-1:-1:-1;19845:1:1;19834:13;;19765:88::o;19858:112::-;;19916:1;19906:2;;19921:18;;:::i;:::-;-1:-1:-1;19955:9:1;;19896:74::o;19975:127::-;20036:10;20031:3;20027:20;20024:1;20017:31;20067:4;20064:1;20057:15;20091:4;20088:1;20081:15;20107:127;20168:10;20163:3;20159:20;20156:1;20149:31;20199:4;20196:1;20189:15;20223:4;20220:1;20213:15;20239:127;20300:10;20295:3;20291:20;20288:1;20281:31;20331:4;20328:1;20321:15;20355:4;20352:1;20345:15;20371:133;-1:-1:-1;;;;;;20447:32:1;;20437:43;;20427:2;;20494:1;20491;20484:12

Swarm Source

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