ETH Price: $3,392.88 (-1.26%)
Gas: 2 Gwei

SamuraiCats by Hiro Ando (SCHA)
 

Overview

TokenID

2279

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Created by the Japanese artist Hiro Ando, Crazy Noodles Gang starts with a collection of 4747 Samurai Cats on the Ethereum blockchain. Hold 2 Samurai Cats for more than 30 days and you can win a Samurai Cat sculpture by Hiro Ando

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SamuraiCats

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 5000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-19
*/

// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0 >=0.8.10 <0.9.0;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol

/* pragma solidity ^0.8.0; */

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

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/security/ReentrancyGuard.sol

/* pragma solidity ^0.8.0; */

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

////// lib/openzeppelin-contracts/contracts/utils/introspection/IERC165.sol

/* pragma solidity ^0.8.0; */

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

////// lib/openzeppelin-contracts/contracts/token/ERC721/IERC721.sol

/* pragma solidity ^0.8.0; */

/* import "../../utils/introspection/IERC165.sol"; */

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

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

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

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

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC721/IERC721Receiver.sol

/* pragma solidity ^0.8.0; */

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

////// lib/openzeppelin-contracts/contracts/token/ERC721/extensions/IERC721Metadata.sol

/* pragma solidity ^0.8.0; */

/* import "../IERC721.sol"; */

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

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

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

////// lib/openzeppelin-contracts/contracts/utils/Address.sol

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/utils/Strings.sol

/* pragma solidity ^0.8.0; */

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/utils/introspection/ERC165.sol

/* pragma solidity ^0.8.0; */

/* import "./IERC165.sol"; */

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

////// lib/openzeppelin-contracts/contracts/token/ERC721/ERC721.sol

/* pragma solidity ^0.8.0; */

/* import "./IERC721.sol"; */
/* import "./IERC721Receiver.sol"; */
/* import "./extensions/IERC721Metadata.sol"; */
/* import "../../utils/Address.sol"; */
/* import "../../utils/Context.sol"; */
/* import "../../utils/Strings.sol"; */
/* import "../../utils/introspection/ERC165.sol"; */

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC721/extensions/IERC721Enumerable.sol

/* pragma solidity ^0.8.0; */

/* import "../IERC721.sol"; */

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

////// lib/openzeppelin-contracts/contracts/token/ERC721/extensions/ERC721Enumerable.sol

/* pragma solidity ^0.8.0; */

/* import "../ERC721.sol"; */
/* import "./IERC721Enumerable.sol"; */

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

////// src/SamuraiCats.sol
/* pragma solidity ^0.8.10; */

/* import "@openzeppelin/contracts/access/Ownable.sol"; */
/* import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; */
/* import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; */

contract SamuraiCats is ERC721Enumerable, Ownable, ReentrancyGuard {
    uint256 public constant maxSupply = 4747;
    uint256 public privateSalePrice = 0.12 ether;
    uint256 public preSalePrice = 0.17 ether;
    uint256 public publicSalePrice = 0.17 ether;
    uint256 public maxTokensPerPrivateSaleTx = 20;
    uint256 public maxTokensPerPresaleTx = 4;
    uint256 public maxTokensPerPublicSaleTx = 5;

    /*
     *  Mint max supply :
     * -> Private sale : From 1 to 790
     * -> Pre-sale : From 791 to 1970
     * -> Public sale : From 1971 to 4747
     */
    uint256 public maxSupplyPrivateSale = 790;
    uint256 public maxSupplyPresale = 1970;

    string public baseUri;
    string public unrevealedTokenUri =
        "https://samuraicats.mypinata.cloud/ipfs/QmeXn7JZdyLzTud6qgGcDYFjMChJFqLG896yKswGxSBacM";
    string public contractUri =
        "https://samuraicats.mypinata.cloud/ipfs/QmQsDPxJZYoFFgtGqKgAxrJcDPnWkxQikKxxMPTudoFgGc";

    bool public isRevealed;

    enum SaleStatus {
        NotSale,
        PrivateSale,
        PreSale,
        FreeMint,
        PublicSale
    }
    SaleStatus public currentSaleStatus;

    mapping(address => bool) public privateSaleList;
    mapping(address => uint256) public freeMintList;
    mapping(address => bool) public privateSaleWalletTxStatus;

    /*///////////////////////////////////////////////////////////////
                            CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor() ERC721("SamuraiCats by Hiro Ando", "SCHA") {}

    /*///////////////////////////////////////////////////////////////
                            MINT FUNCTIONS
    //////////////////////////////////////////////////////////////*/

    function mintPrivateSale(uint256 numOfToken) external payable nonReentrant {
        require(privateSaleList[msg.sender], "not in private list");
        require(
            currentSaleStatus == SaleStatus.PrivateSale,
            "MINT: not in private sale"
        );
        require(
            !privateSaleWalletTxStatus[msg.sender],
            "MINT: you already done the private sale"
        );
        require(
            numOfToken <= maxTokensPerPrivateSaleTx,
            "MINT: exceed presale limit per transaction"
        );
        require(
            privateSalePrice * numOfToken <= msg.value,
            "MINT: insufficient ether"
        );
        require(
            totalSupply() + numOfToken <= maxSupplyPrivateSale,
            "MINT: reach limit"
        );

        _mintToken(msg.sender, numOfToken);
        privateSaleWalletTxStatus[msg.sender] = true;
    }

    function mintPreSale(uint256 numOfToken) external payable nonReentrant {
        require(
            currentSaleStatus == SaleStatus.PreSale,
            "MINT: not in pre-sale"
        );
        require(
            numOfToken <= maxTokensPerPresaleTx,
            "MINT: exceed presale limit per transaction"
        );
        require(
            preSalePrice * numOfToken <= msg.value,
            "MINT: insufficient ether"
        );

        // Bonus token (+ 1)
        if (numOfToken == maxTokensPerPresaleTx) {
            unchecked {
                numOfToken++;
            }
        }

        require(
            totalSupply() + numOfToken <= maxSupplyPresale,
            "MINT: reach limit"
        );

        _mintToken(msg.sender, numOfToken);
    }

    function freeMint(uint256 numOfToken) external nonReentrant {
        require(
            currentSaleStatus == SaleStatus.FreeMint,
            "MINT: not in free mint"
        );
        require(
            numOfToken <= freeMintList[msg.sender],
            "MINT: exceed free mint allocation"
        );
        require(totalSupply() + numOfToken <= maxSupply, "MINT: reach limit");
        _mintToken(msg.sender, numOfToken);

        freeMintList[msg.sender] -= numOfToken;
    }

    function mintToken(uint256 numOfToken) external payable nonReentrant {
        require(
            currentSaleStatus == SaleStatus.PublicSale,
            "MINT: not in public sale"
        );
        require(
            publicSalePrice * numOfToken <= msg.value,
            "MINT: insufficient ether"
        );
        require(
            numOfToken <= maxTokensPerPublicSaleTx,
            "MINT: exceed presale limit per transaction"
        );
        require(totalSupply() + numOfToken <= maxSupply, "MINT: reach limit");
        _mintToken(msg.sender, numOfToken);
    }

    function mintOwner(address to, uint256 numOfToken) external onlyOwner {
        require(totalSupply() + numOfToken <= maxSupply, "MINT: reach limit");
        _mintToken(to, numOfToken);
    }

    function _mintToken(address to, uint256 numOfToken) internal {
        for (uint256 i = 0; i < numOfToken; i++) {
            uint256 tokenId = totalSupply() + 1;
            _safeMint(to, tokenId);
        }
    }

    /*///////////////////////////////////////////////////////////////
                        FUNCTIONS SALE STATUS
    //////////////////////////////////////////////////////////////*/

    function setCurrentSaleStatus(SaleStatus _status) external onlyOwner {
        currentSaleStatus = _status;
    }

    /*///////////////////////////////////////////////////////////////
                      FUNCTIONS SALE LISTS
    //////////////////////////////////////////////////////////////*/

    function addToPrivateSaleList(address addr) external onlyOwner {
        privateSaleList[addr] = true;
    }

    function batchAddToPrivateSaleList(address[] memory addrs)
        external
        onlyOwner
    {
        uint256 length = addrs.length;
        for (uint256 i; i < length; ) {
            privateSaleList[addrs[i]] = true;
            unchecked {
                i++;
            }
        }
    }

    function addToFreeMintList(address addr, uint256 amount)
        external
        onlyOwner
    {
        freeMintList[addr] = amount;
    }

    function batchAddToFreeMintList(
        address[] memory addrs,
        uint256[] memory amounts
    ) external onlyOwner {
        require(addrs.length == amounts.length, "Length error");
        uint256 length = addrs.length;
        for (uint256 i; i < length; ) {
            freeMintList[addrs[i]] = amounts[i];
            unchecked {
                i++;
            }
        }
    }

    /*///////////////////////////////////////////////////////////////
                Max Tokens Per TX & Sale Price & Max Supply
    //////////////////////////////////////////////////////////////*/

    function setMaxTokensPerPresaleTx(uint256 _limit) external onlyOwner {
        maxTokensPerPresaleTx = _limit;
    }

    function setMaxTokensPerPrivateSaleTx(uint256 _limit) external onlyOwner {
        maxTokensPerPrivateSaleTx = _limit;
    }

    function setMaxTokensPerPublicSaleTx(uint256 _limit) external onlyOwner {
        maxTokensPerPublicSaleTx = _limit;
    }

    function setPrivateSalePrice(uint256 _price) external onlyOwner {
        privateSalePrice = _price;
    }

    function setPreSalePrice(uint256 _price) external onlyOwner {
        preSalePrice = _price;
    }

    function setPublicSalePrice(uint256 _price) external onlyOwner {
        publicSalePrice = _price;
    }

    function setMaxSupplyPrivateSale(uint256 _maxSupplyPrivateSale)
        external
        onlyOwner
    {
        maxSupplyPrivateSale = _maxSupplyPrivateSale;
    }

    function setMaxSupplyPresale(uint256 _maxSupplyPresale) external onlyOwner {
        maxSupplyPresale = _maxSupplyPresale;
    }

    /*///////////////////////////////////////////////////////////////
                          URI/REVEAL FUNCTIONS
    //////////////////////////////////////////////////////////////*/

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (isRevealed) {
            return super.tokenURI(tokenId);
        } else {
            return unrevealedTokenUri;
        }
    }

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

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

    function reveal(string memory _baseUri) external onlyOwner {
        require(bytes(_baseUri).length != 0, "reveal: cant set empty baseUri");
        isRevealed = true;
        baseUri = _baseUri;
    }

    function setUnrevealedTokenURI(string memory _newUri) external onlyOwner {
        unrevealedTokenUri = _newUri;
    }

    function setContractURI(string memory _newUri) external onlyOwner {
        contractUri = _newUri;
    }

    /*///////////////////////////////////////////////////////////////
                             WITHDRAW
    //////////////////////////////////////////////////////////////*/

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addToFreeMintList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addToPrivateSaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"batchAddToFreeMintList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"batchAddToPrivateSaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSaleStatus","outputs":[{"internalType":"enum SamuraiCats.SaleStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numOfToken","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyPrivateSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerPresaleTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerPrivateSaleTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerPublicSaleTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numOfToken","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numOfToken","type":"uint256"}],"name":"mintPreSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numOfToken","type":"uint256"}],"name":"mintPrivateSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numOfToken","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"privateSaleList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"privateSaleWalletTxStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum SamuraiCats.SaleStatus","name":"_status","type":"uint8"}],"name":"setCurrentSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupplyPresale","type":"uint256"}],"name":"setMaxSupplyPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupplyPrivateSale","type":"uint256"}],"name":"setMaxSupplyPrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxTokensPerPresaleTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxTokensPerPrivateSaleTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxTokensPerPublicSaleTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrivateSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUri","type":"string"}],"name":"setUnrevealedTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealedTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6701aa535d3d0c0000600c5567025bf6196bd10000600d819055600e556014600f55600460105560056011556103166012556107b2601355610100604052605660808181529062003f6f60a0398051620000629160159160209091019062000197565b5060405180608001604052806056815260200162003f19605691398051620000939160169160209091019062000197565b50348015620000a157600080fd5b50604080518082018252601881527f53616d7572616943617473206279204869726f20416e646f00000000000000006020808301918252835180850190945260048452635343484160e01b908401528151919291620001039160009162000197565b5080516200011990600190602084019062000197565b50505062000136620001306200014160201b60201c565b62000145565b6001600b556200027a565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a5906200023d565b90600052602060002090601f016020900481019282620001c9576000855562000214565b82601f10620001e457805160ff191683800117855562000214565b8280016001018555821562000214579182015b8281111562000214578251825591602001919060010190620001f7565b506200022292915062000226565b5090565b5b8082111562000222576000815560010162000227565b600181811c908216806200025257607f821691505b602082108114156200027457634e487b7160e01b600052602260045260246000fd5b50919050565b613c8f806200028a6000396000f3fe60806040526004361061038c5760003560e01c80637bc36e04116101dc578063a532409311610102578063c0e24d5e116100a0578063e757c17d1161006f578063e757c17d14610a27578063e985e9c514610a3d578063f2fde38b14610a86578063f560d41514610aa657600080fd5b8063c0e24d5e146109c9578063c634d032146109de578063c87b56dd146109f1578063d5abeb0114610a1157600080fd5b8063b88d4fde116100dc578063b88d4fde14610960578063b988477214610980578063bc3415a214610993578063bce93fcb146109a957600080fd5b8063a5324093146108f3578063a56f5b1914610920578063b0490f611461094057600080fd5b80638da5cb5b1161017a5780639abc8320116101495780639abc8320146108925780639b6860c8146108a75780639ed36d67146108bd578063a22cb465146108d357600080fd5b80638da5cb5b1461081f5780638f10d94d1461083d578063938e3d7b1461085d57806395d89b411461087d57600080fd5b80637d7eee42116101b65780637d7eee421461079f5780637f4c8ca2146107bf578063820de0c5146107df57806382910481146107ff57600080fd5b80637bc36e041461073f5780637bddc97c1461075f5780637c928fe91461077f57600080fd5b806342842e0e116102c15780635e50689d1161025f57806370a082311161022e57806370a08231146106d4578063715018a6146106f4578063736e901014610709578063791a25191461071f57600080fd5b80635e50689d146106555780636352211e146106755780636dd478e3146106955780636ed09aae146106a857600080fd5b80634c2612471161029b5780634c261247146105db5780634f6ccce7146105fb57806354214f691461061b57806355f804b31461063557600080fd5b806342842e0e1461055b57806342f566301461057b5780634334b479146105ab57600080fd5b8063130789481161032e57806323b872dd1161030857806323b872dd146104e65780632f745c59146105065780633ccfd60b14610526578063408cbf941461053b57600080fd5b8063130789481461049b57806318160ddd146104b157806321b86dd0146104c657600080fd5b806306fdde031161036a57806306fdde031461040a578063075c79231461041f578063081812fc14610443578063095ea7b31461047b57600080fd5b80630157ad2d1461039157806301ffc9a7146103b357806306c536ab146103e8575b600080fd5b34801561039d57600080fd5b506103b16103ac366004613552565b610abc565b005b3480156103bf57600080fd5b506103d36103ce366004613599565b610b20565b60405190151581526020015b60405180910390f35b3480156103f457600080fd5b506103fd610b7c565b6040516103df919061360e565b34801561041657600080fd5b506103fd610c0a565b34801561042b57600080fd5b5061043560125481565b6040519081526020016103df565b34801561044f57600080fd5b5061046361045e366004613552565b610c9c565b6040516001600160a01b0390911681526020016103df565b34801561048757600080fd5b506103b1610496366004613638565b610d42565b3480156104a757600080fd5b5061043560135481565b3480156104bd57600080fd5b50600854610435565b3480156104d257600080fd5b506103b16104e1366004613662565b610e74565b3480156104f257600080fd5b506103b161050136600461367d565b610ef2565b34801561051257600080fd5b50610435610521366004613638565b610f79565b34801561053257600080fd5b506103b1611021565b34801561054757600080fd5b506103b1610556366004613638565b6110ae565b34801561056757600080fd5b506103b161057636600461367d565b611177565b34801561058757600080fd5b506103d3610596366004613662565b601a6020526000908152604090205460ff1681565b3480156105b757600080fd5b506103d36105c6366004613662565b60186020526000908152604090205460ff1681565b3480156105e757600080fd5b506103b16105f6366004613758565b611192565b34801561060757600080fd5b50610435610616366004613552565b61125a565b34801561062757600080fd5b506017546103d39060ff1681565b34801561064157600080fd5b506103b1610650366004613758565b6112fe565b34801561066157600080fd5b506103b1610670366004613552565b61136b565b34801561068157600080fd5b50610463610690366004613552565b6113ca565b6103b16106a3366004613552565b611455565b3480156106b457600080fd5b506017546106c790610100900460ff1681565b6040516103df91906137b7565b3480156106e057600080fd5b506104356106ef366004613662565b611764565b34801561070057600080fd5b506103b16117fe565b34801561071557600080fd5b5061043560105481565b34801561072b57600080fd5b506103b161073a366004613552565b611864565b34801561074b57600080fd5b506103b161075a366004613552565b6118c3565b34801561076b57600080fd5b506103b161077a3660046137df565b611922565b34801561078b57600080fd5b506103b161079a366004613552565b6119c2565b3480156107ab57600080fd5b506103b16107ba366004613552565b611ba5565b3480156107cb57600080fd5b506103b16107da366004613896565b611c04565b3480156107eb57600080fd5b506103b16107fa366004613758565b611d1e565b34801561080b57600080fd5b506103b161081a366004613552565b611d8b565b34801561082b57600080fd5b50600a546001600160a01b0316610463565b34801561084957600080fd5b506103b1610858366004613552565b611dea565b34801561086957600080fd5b506103b1610878366004613758565b611e49565b34801561088957600080fd5b506103fd611eb6565b34801561089e57600080fd5b506103fd611ec5565b3480156108b357600080fd5b50610435600e5481565b3480156108c957600080fd5b5061043560115481565b3480156108df57600080fd5b506103b16108ee366004613951565b611ed2565b3480156108ff57600080fd5b5061043561090e366004613662565b60196020526000908152604090205481565b34801561092c57600080fd5b506103b161093b366004613638565b611f97565b34801561094c57600080fd5b506103b161095b36600461398d565b61200d565b34801561096c57600080fd5b506103b161097b3660046139c2565b6120c6565b6103b161098e366004613552565b61214e565b34801561099f57600080fd5b50610435600f5481565b3480156109b557600080fd5b506103b16109c4366004613552565b61236b565b3480156109d557600080fd5b506103fd6123ca565b6103b16109ec366004613552565b6123d7565b3480156109fd57600080fd5b506103fd610a0c366004613552565b61257c565b348015610a1d57600080fd5b5061043561128b81565b348015610a3357600080fd5b50610435600d5481565b348015610a4957600080fd5b506103d3610a58366004613a3e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a9257600080fd5b506103b1610aa1366004613662565b61262a565b348015610ab257600080fd5b50610435600c5481565b600a546001600160a01b03163314610b1b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b601055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610b765750610b768261270c565b92915050565b60158054610b8990613a71565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb590613a71565b8015610c025780601f10610bd757610100808354040283529160200191610c02565b820191906000526020600020905b815481529060010190602001808311610be557829003601f168201915b505050505081565b606060008054610c1990613a71565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4590613a71565b8015610c925780601f10610c6757610100808354040283529160200191610c92565b820191906000526020600020905b815481529060010190602001808311610c7557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610d265760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610b12565b506000908152600460205260409020546001600160a01b031690565b6000610d4d826113ca565b9050806001600160a01b0316836001600160a01b03161415610dd75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610b12565b336001600160a01b0382161480610df35750610df38133610a58565b610e655760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b12565b610e6f83836127ef565b505050565b600a546001600160a01b03163314610ece5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b6001600160a01b03166000908152601860205260409020805460ff19166001179055565b610efc3382612875565b610f6e5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b12565b610e6f83838361297d565b6000610f8483611764565b8210610ff85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610b12565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461107b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b6040514790339082156108fc029083906000818181858888f193505050501580156110aa573d6000803e3d6000fd5b5050565b600a546001600160a01b031633146111085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b61128b8161111560085490565b61111f9190613ac2565b111561116d5760405162461bcd60e51b815260206004820152601160248201527f4d494e543a207265616368206c696d69740000000000000000000000000000006044820152606401610b12565b6110aa8282612b6d565b610e6f838383604051806020016040528060008152506120c6565b600a546001600160a01b031633146111ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b805161123a5760405162461bcd60e51b815260206004820152601e60248201527f72657665616c3a2063616e742073657420656d707479206261736555726900006044820152606401610b12565b6017805460ff1916600117905580516110aa9060149060208401906134b9565b600061126560085490565b82106112d95760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610b12565b600882815481106112ec576112ec613ada565b90600052602060002001549050919050565b600a546001600160a01b031633146113585760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b80516110aa9060149060208401906134b9565b600a546001600160a01b031633146113c55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b601155565b6000818152600260205260408120546001600160a01b031680610b765760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610b12565b6002600b5414156114a85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b12565b6002600b553360009081526018602052604090205460ff1661150c5760405162461bcd60e51b815260206004820152601360248201527f6e6f7420696e2070726976617465206c697374000000000000000000000000006044820152606401610b12565b6001601754610100900460ff16600481111561152a5761152a6137a1565b146115775760405162461bcd60e51b815260206004820152601960248201527f4d494e543a206e6f7420696e20707269766174652073616c65000000000000006044820152606401610b12565b336000908152601a602052604090205460ff16156115fd5760405162461bcd60e51b815260206004820152602760248201527f4d494e543a20796f7520616c726561647920646f6e652074686520707269766160448201527f74652073616c65000000000000000000000000000000000000000000000000006064820152608401610b12565b600f548111156116755760405162461bcd60e51b815260206004820152602a60248201527f4d494e543a206578636565642070726573616c65206c696d697420706572207460448201527f72616e73616374696f6e000000000000000000000000000000000000000000006064820152608401610b12565b3481600c546116849190613af0565b11156116d25760405162461bcd60e51b815260206004820152601860248201527f4d494e543a20696e73756666696369656e7420657468657200000000000000006044820152606401610b12565b601254816116df60085490565b6116e99190613ac2565b11156117375760405162461bcd60e51b815260206004820152601160248201527f4d494e543a207265616368206c696d69740000000000000000000000000000006044820152606401610b12565b6117413382612b6d565b50336000908152601a60205260409020805460ff19166001908117909155600b55565b60006001600160a01b0382166117e25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610b12565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146118585760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b6118626000612bad565b565b600a546001600160a01b031633146118be5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b600e55565b600a546001600160a01b0316331461191d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b600c55565b600a546001600160a01b0316331461197c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b601780548291907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101008360048111156119ba576119ba6137a1565b021790555050565b6002600b541415611a155760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b12565b6002600b556003601754610100900460ff166004811115611a3857611a386137a1565b14611a855760405162461bcd60e51b815260206004820152601660248201527f4d494e543a206e6f7420696e2066726565206d696e74000000000000000000006044820152606401610b12565b33600090815260196020526040902054811115611b0a5760405162461bcd60e51b815260206004820152602160248201527f4d494e543a206578636565642066726565206d696e7420616c6c6f636174696f60448201527f6e000000000000000000000000000000000000000000000000000000000000006064820152608401610b12565b61128b81611b1760085490565b611b219190613ac2565b1115611b6f5760405162461bcd60e51b815260206004820152601160248201527f4d494e543a207265616368206c696d69740000000000000000000000000000006044820152606401610b12565b611b793382612b6d565b3360009081526019602052604081208054839290611b98908490613b2d565b90915550506001600b5550565b600a546001600160a01b03163314611bff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b600d55565b600a546001600160a01b03163314611c5e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b8051825114611caf5760405162461bcd60e51b815260206004820152600c60248201527f4c656e677468206572726f7200000000000000000000000000000000000000006044820152606401610b12565b815160005b81811015611d1857828181518110611cce57611cce613ada565b602002602001015160196000868481518110611cec57611cec613ada565b6020908102919091018101516001600160a01b0316825281019190915260400160002055600101611cb4565b50505050565b600a546001600160a01b03163314611d785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b80516110aa9060159060208401906134b9565b600a546001600160a01b03163314611de55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b600f55565b600a546001600160a01b03163314611e445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b601355565b600a546001600160a01b03163314611ea35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b80516110aa9060169060208401906134b9565b606060018054610c1990613a71565b60148054610b8990613a71565b6001600160a01b038216331415611f2b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b12565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611ff15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b6001600160a01b03909116600090815260196020526040902055565b600a546001600160a01b031633146120675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b805160005b81811015610e6f5760016018600085848151811061208c5761208c613ada565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905560010161206c565b6120d03383612875565b6121425760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b12565b611d1884848484612c17565b6002600b5414156121a15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b12565b6002600b819055601754610100900460ff1660048111156121c4576121c46137a1565b146122115760405162461bcd60e51b815260206004820152601560248201527f4d494e543a206e6f7420696e207072652d73616c6500000000000000000000006044820152606401610b12565b6010548111156122895760405162461bcd60e51b815260206004820152602a60248201527f4d494e543a206578636565642070726573616c65206c696d697420706572207460448201527f72616e73616374696f6e000000000000000000000000000000000000000000006064820152608401610b12565b3481600d546122989190613af0565b11156122e65760405162461bcd60e51b815260206004820152601860248201527f4d494e543a20696e73756666696369656e7420657468657200000000000000006044820152606401610b12565b6010548114156122f4576001015b6013548161230160085490565b61230b9190613ac2565b11156123595760405162461bcd60e51b815260206004820152601160248201527f4d494e543a207265616368206c696d69740000000000000000000000000000006044820152606401610b12565b6123633382612b6d565b506001600b55565b600a546001600160a01b031633146123c55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b601255565b60168054610b8990613a71565b6002600b54141561242a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b12565b6002600b556004601754610100900460ff16600481111561244d5761244d6137a1565b1461249a5760405162461bcd60e51b815260206004820152601860248201527f4d494e543a206e6f7420696e207075626c69632073616c6500000000000000006044820152606401610b12565b3481600e546124a99190613af0565b11156124f75760405162461bcd60e51b815260206004820152601860248201527f4d494e543a20696e73756666696369656e7420657468657200000000000000006044820152606401610b12565b60115481111561256f5760405162461bcd60e51b815260206004820152602a60248201527f4d494e543a206578636565642070726573616c65206c696d697420706572207460448201527f72616e73616374696f6e000000000000000000000000000000000000000000006064820152608401610b12565b61128b8161230160085490565b60175460609060ff161561259357610b7682612ca0565b601580546125a090613a71565b80601f01602080910402602001604051908101604052809291908181526020018280546125cc90613a71565b80156126195780601f106125ee57610100808354040283529160200191612619565b820191906000526020600020905b8154815290600101906020018083116125fc57829003601f168201915b50505050509050919050565b919050565b600a546001600160a01b031633146126845760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b6001600160a01b0381166127005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b12565b61270981612bad565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061279f57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610b7657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610b76565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061283c826113ca565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166128ff5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610b12565b600061290a836113ca565b9050806001600160a01b0316846001600160a01b031614806129455750836001600160a01b031661293a84610c9c565b6001600160a01b0316145b8061297557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612990826113ca565b6001600160a01b031614612a0c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610b12565b6001600160a01b038216612a875760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610b12565b612a92838383612d89565b612a9d6000826127ef565b6001600160a01b0383166000908152600360205260408120805460019290612ac6908490613b2d565b90915550506001600160a01b0382166000908152600360205260408120805460019290612af4908490613ac2565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b81811015610e6f576000612b8360085490565b612b8e906001613ac2565b9050612b9a8482612e41565b5080612ba581613b44565b915050612b70565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612c2284848461297d565b612c2e84848484612e5b565b611d185760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b12565b6000818152600260205260409020546060906001600160a01b0316612d2d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610b12565b6000612d37612ff9565b90506000815111612d575760405180602001604052806000815250612d82565b80612d6184613008565b604051602001612d72929190613b7d565b6040516020818303038152906040525b9392505050565b6001600160a01b038316612de457612ddf81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612e07565b816001600160a01b0316836001600160a01b031614612e0757612e07838261313a565b6001600160a01b038216612e1e57610e6f816131d7565b826001600160a01b0316826001600160a01b031614610e6f57610e6f8282613286565b6110aa8282604051806020016040528060008152506132ca565b60006001600160a01b0384163b15612fee576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290612eb8903390899088908890600401613bac565b6020604051808303816000875af1925050508015612ef3575060408051601f3d908101601f19168201909252612ef091810190613be8565b60015b612fa3573d808015612f21576040519150601f19603f3d011682016040523d82523d6000602084013e612f26565b606091505b508051612f9b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b12565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612975565b506001949350505050565b606060148054610c1990613a71565b60608161304857505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115613072578061305c81613b44565b915061306b9050600a83613c1b565b915061304c565b60008167ffffffffffffffff81111561308d5761308d6136b9565b6040519080825280601f01601f1916602001820160405280156130b7576020820181803683370190505b5090505b8415612975576130cc600183613b2d565b91506130d9600a86613c2f565b6130e4906030613ac2565b60f81b8183815181106130f9576130f9613ada565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613133600a86613c1b565b94506130bb565b6000600161314784611764565b6131519190613b2d565b6000838152600760205260409020549091508082146131a4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906131e990600190613b2d565b6000838152600960205260408120546008805493945090928490811061321157613211613ada565b90600052602060002001549050806008838154811061323257613232613ada565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061326a5761326a613c43565b6001900381819060005260206000200160009055905550505050565b600061329183611764565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6132d48383613353565b6132e16000848484612e5b565b610e6f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b12565b6001600160a01b0382166133a95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b12565b6000818152600260205260409020546001600160a01b03161561340e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b12565b61341a60008383612d89565b6001600160a01b0382166000908152600360205260408120805460019290613443908490613ac2565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546134c590613a71565b90600052602060002090601f0160209004810192826134e7576000855561352d565b82601f1061350057805160ff191683800117855561352d565b8280016001018555821561352d579182015b8281111561352d578251825591602001919060010190613512565b5061353992915061353d565b5090565b5b80821115613539576000815560010161353e565b60006020828403121561356457600080fd5b5035919050565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461270957600080fd5b6000602082840312156135ab57600080fd5b8135612d828161356b565b60005b838110156135d15781810151838201526020016135b9565b83811115611d185750506000910152565b600081518084526135fa8160208601602086016135b6565b601f01601f19169290920160200192915050565b602081526000612d8260208301846135e2565b80356001600160a01b038116811461262557600080fd5b6000806040838503121561364b57600080fd5b61365483613621565b946020939093013593505050565b60006020828403121561367457600080fd5b612d8282613621565b60008060006060848603121561369257600080fd5b61369b84613621565b92506136a960208501613621565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156136f8576136f86136b9565b604052919050565b600067ffffffffffffffff83111561371a5761371a6136b9565b61372d6020601f19601f860116016136cf565b905082815283838301111561374157600080fd5b828260208301376000602084830101529392505050565b60006020828403121561376a57600080fd5b813567ffffffffffffffff81111561378157600080fd5b8201601f8101841361379257600080fd5b61297584823560208401613700565b634e487b7160e01b600052602160045260246000fd5b60208101600583106137d957634e487b7160e01b600052602160045260246000fd5b91905290565b6000602082840312156137f157600080fd5b813560058110612d8257600080fd5b600067ffffffffffffffff82111561381a5761381a6136b9565b5060051b60200190565b600082601f83011261383557600080fd5b8135602061384a61384583613800565b6136cf565b82815260059290921b8401810191818101908684111561386957600080fd5b8286015b8481101561388b5761387e81613621565b835291830191830161386d565b509695505050505050565b600080604083850312156138a957600080fd5b823567ffffffffffffffff808211156138c157600080fd5b6138cd86838701613824565b93506020915081850135818111156138e457600080fd5b85019050601f810186136138f757600080fd5b803561390561384582613800565b81815260059190911b8201830190838101908883111561392457600080fd5b928401925b8284101561394257833582529284019290840190613929565b80955050505050509250929050565b6000806040838503121561396457600080fd5b61396d83613621565b91506020830135801515811461398257600080fd5b809150509250929050565b60006020828403121561399f57600080fd5b813567ffffffffffffffff8111156139b657600080fd5b61297584828501613824565b600080600080608085870312156139d857600080fd5b6139e185613621565b93506139ef60208601613621565b925060408501359150606085013567ffffffffffffffff811115613a1257600080fd5b8501601f81018713613a2357600080fd5b613a3287823560208401613700565b91505092959194509250565b60008060408385031215613a5157600080fd5b613a5a83613621565b9150613a6860208401613621565b90509250929050565b600181811c90821680613a8557607f821691505b60208210811415613aa657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115613ad557613ad5613aac565b500190565b634e487b7160e01b600052603260045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2857613b28613aac565b500290565b600082821015613b3f57613b3f613aac565b500390565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b7657613b76613aac565b5060010190565b60008351613b8f8184602088016135b6565b835190830190613ba38183602088016135b6565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613bde60808301846135e2565b9695505050505050565b600060208284031215613bfa57600080fd5b8151612d828161356b565b634e487b7160e01b600052601260045260246000fd5b600082613c2a57613c2a613c05565b500490565b600082613c3e57613c3e613c05565b500690565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220aace62c662de5f4dcb3dde5429499b4a0c22d83ea82897f8a7d3da82f0218e3364736f6c634300080a003368747470733a2f2f73616d75726169636174732e6d7970696e6174612e636c6f75642f697066732f516d51734450784a5a596f4646677447714b674178724a6344506e576b7851696b4b78784d505475646f4667476368747470733a2f2f73616d75726169636174732e6d7970696e6174612e636c6f75642f697066732f516d65586e374a5a64794c7a54756436716747634459466a4d43684a46714c47383936794b73774778534261634d

Deployed Bytecode

0x60806040526004361061038c5760003560e01c80637bc36e04116101dc578063a532409311610102578063c0e24d5e116100a0578063e757c17d1161006f578063e757c17d14610a27578063e985e9c514610a3d578063f2fde38b14610a86578063f560d41514610aa657600080fd5b8063c0e24d5e146109c9578063c634d032146109de578063c87b56dd146109f1578063d5abeb0114610a1157600080fd5b8063b88d4fde116100dc578063b88d4fde14610960578063b988477214610980578063bc3415a214610993578063bce93fcb146109a957600080fd5b8063a5324093146108f3578063a56f5b1914610920578063b0490f611461094057600080fd5b80638da5cb5b1161017a5780639abc8320116101495780639abc8320146108925780639b6860c8146108a75780639ed36d67146108bd578063a22cb465146108d357600080fd5b80638da5cb5b1461081f5780638f10d94d1461083d578063938e3d7b1461085d57806395d89b411461087d57600080fd5b80637d7eee42116101b65780637d7eee421461079f5780637f4c8ca2146107bf578063820de0c5146107df57806382910481146107ff57600080fd5b80637bc36e041461073f5780637bddc97c1461075f5780637c928fe91461077f57600080fd5b806342842e0e116102c15780635e50689d1161025f57806370a082311161022e57806370a08231146106d4578063715018a6146106f4578063736e901014610709578063791a25191461071f57600080fd5b80635e50689d146106555780636352211e146106755780636dd478e3146106955780636ed09aae146106a857600080fd5b80634c2612471161029b5780634c261247146105db5780634f6ccce7146105fb57806354214f691461061b57806355f804b31461063557600080fd5b806342842e0e1461055b57806342f566301461057b5780634334b479146105ab57600080fd5b8063130789481161032e57806323b872dd1161030857806323b872dd146104e65780632f745c59146105065780633ccfd60b14610526578063408cbf941461053b57600080fd5b8063130789481461049b57806318160ddd146104b157806321b86dd0146104c657600080fd5b806306fdde031161036a57806306fdde031461040a578063075c79231461041f578063081812fc14610443578063095ea7b31461047b57600080fd5b80630157ad2d1461039157806301ffc9a7146103b357806306c536ab146103e8575b600080fd5b34801561039d57600080fd5b506103b16103ac366004613552565b610abc565b005b3480156103bf57600080fd5b506103d36103ce366004613599565b610b20565b60405190151581526020015b60405180910390f35b3480156103f457600080fd5b506103fd610b7c565b6040516103df919061360e565b34801561041657600080fd5b506103fd610c0a565b34801561042b57600080fd5b5061043560125481565b6040519081526020016103df565b34801561044f57600080fd5b5061046361045e366004613552565b610c9c565b6040516001600160a01b0390911681526020016103df565b34801561048757600080fd5b506103b1610496366004613638565b610d42565b3480156104a757600080fd5b5061043560135481565b3480156104bd57600080fd5b50600854610435565b3480156104d257600080fd5b506103b16104e1366004613662565b610e74565b3480156104f257600080fd5b506103b161050136600461367d565b610ef2565b34801561051257600080fd5b50610435610521366004613638565b610f79565b34801561053257600080fd5b506103b1611021565b34801561054757600080fd5b506103b1610556366004613638565b6110ae565b34801561056757600080fd5b506103b161057636600461367d565b611177565b34801561058757600080fd5b506103d3610596366004613662565b601a6020526000908152604090205460ff1681565b3480156105b757600080fd5b506103d36105c6366004613662565b60186020526000908152604090205460ff1681565b3480156105e757600080fd5b506103b16105f6366004613758565b611192565b34801561060757600080fd5b50610435610616366004613552565b61125a565b34801561062757600080fd5b506017546103d39060ff1681565b34801561064157600080fd5b506103b1610650366004613758565b6112fe565b34801561066157600080fd5b506103b1610670366004613552565b61136b565b34801561068157600080fd5b50610463610690366004613552565b6113ca565b6103b16106a3366004613552565b611455565b3480156106b457600080fd5b506017546106c790610100900460ff1681565b6040516103df91906137b7565b3480156106e057600080fd5b506104356106ef366004613662565b611764565b34801561070057600080fd5b506103b16117fe565b34801561071557600080fd5b5061043560105481565b34801561072b57600080fd5b506103b161073a366004613552565b611864565b34801561074b57600080fd5b506103b161075a366004613552565b6118c3565b34801561076b57600080fd5b506103b161077a3660046137df565b611922565b34801561078b57600080fd5b506103b161079a366004613552565b6119c2565b3480156107ab57600080fd5b506103b16107ba366004613552565b611ba5565b3480156107cb57600080fd5b506103b16107da366004613896565b611c04565b3480156107eb57600080fd5b506103b16107fa366004613758565b611d1e565b34801561080b57600080fd5b506103b161081a366004613552565b611d8b565b34801561082b57600080fd5b50600a546001600160a01b0316610463565b34801561084957600080fd5b506103b1610858366004613552565b611dea565b34801561086957600080fd5b506103b1610878366004613758565b611e49565b34801561088957600080fd5b506103fd611eb6565b34801561089e57600080fd5b506103fd611ec5565b3480156108b357600080fd5b50610435600e5481565b3480156108c957600080fd5b5061043560115481565b3480156108df57600080fd5b506103b16108ee366004613951565b611ed2565b3480156108ff57600080fd5b5061043561090e366004613662565b60196020526000908152604090205481565b34801561092c57600080fd5b506103b161093b366004613638565b611f97565b34801561094c57600080fd5b506103b161095b36600461398d565b61200d565b34801561096c57600080fd5b506103b161097b3660046139c2565b6120c6565b6103b161098e366004613552565b61214e565b34801561099f57600080fd5b50610435600f5481565b3480156109b557600080fd5b506103b16109c4366004613552565b61236b565b3480156109d557600080fd5b506103fd6123ca565b6103b16109ec366004613552565b6123d7565b3480156109fd57600080fd5b506103fd610a0c366004613552565b61257c565b348015610a1d57600080fd5b5061043561128b81565b348015610a3357600080fd5b50610435600d5481565b348015610a4957600080fd5b506103d3610a58366004613a3e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a9257600080fd5b506103b1610aa1366004613662565b61262a565b348015610ab257600080fd5b50610435600c5481565b600a546001600160a01b03163314610b1b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b601055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610b765750610b768261270c565b92915050565b60158054610b8990613a71565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb590613a71565b8015610c025780601f10610bd757610100808354040283529160200191610c02565b820191906000526020600020905b815481529060010190602001808311610be557829003601f168201915b505050505081565b606060008054610c1990613a71565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4590613a71565b8015610c925780601f10610c6757610100808354040283529160200191610c92565b820191906000526020600020905b815481529060010190602001808311610c7557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610d265760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610b12565b506000908152600460205260409020546001600160a01b031690565b6000610d4d826113ca565b9050806001600160a01b0316836001600160a01b03161415610dd75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610b12565b336001600160a01b0382161480610df35750610df38133610a58565b610e655760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b12565b610e6f83836127ef565b505050565b600a546001600160a01b03163314610ece5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b6001600160a01b03166000908152601860205260409020805460ff19166001179055565b610efc3382612875565b610f6e5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b12565b610e6f83838361297d565b6000610f8483611764565b8210610ff85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610b12565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461107b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b6040514790339082156108fc029083906000818181858888f193505050501580156110aa573d6000803e3d6000fd5b5050565b600a546001600160a01b031633146111085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b61128b8161111560085490565b61111f9190613ac2565b111561116d5760405162461bcd60e51b815260206004820152601160248201527f4d494e543a207265616368206c696d69740000000000000000000000000000006044820152606401610b12565b6110aa8282612b6d565b610e6f838383604051806020016040528060008152506120c6565b600a546001600160a01b031633146111ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b805161123a5760405162461bcd60e51b815260206004820152601e60248201527f72657665616c3a2063616e742073657420656d707479206261736555726900006044820152606401610b12565b6017805460ff1916600117905580516110aa9060149060208401906134b9565b600061126560085490565b82106112d95760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610b12565b600882815481106112ec576112ec613ada565b90600052602060002001549050919050565b600a546001600160a01b031633146113585760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b80516110aa9060149060208401906134b9565b600a546001600160a01b031633146113c55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b601155565b6000818152600260205260408120546001600160a01b031680610b765760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610b12565b6002600b5414156114a85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b12565b6002600b553360009081526018602052604090205460ff1661150c5760405162461bcd60e51b815260206004820152601360248201527f6e6f7420696e2070726976617465206c697374000000000000000000000000006044820152606401610b12565b6001601754610100900460ff16600481111561152a5761152a6137a1565b146115775760405162461bcd60e51b815260206004820152601960248201527f4d494e543a206e6f7420696e20707269766174652073616c65000000000000006044820152606401610b12565b336000908152601a602052604090205460ff16156115fd5760405162461bcd60e51b815260206004820152602760248201527f4d494e543a20796f7520616c726561647920646f6e652074686520707269766160448201527f74652073616c65000000000000000000000000000000000000000000000000006064820152608401610b12565b600f548111156116755760405162461bcd60e51b815260206004820152602a60248201527f4d494e543a206578636565642070726573616c65206c696d697420706572207460448201527f72616e73616374696f6e000000000000000000000000000000000000000000006064820152608401610b12565b3481600c546116849190613af0565b11156116d25760405162461bcd60e51b815260206004820152601860248201527f4d494e543a20696e73756666696369656e7420657468657200000000000000006044820152606401610b12565b601254816116df60085490565b6116e99190613ac2565b11156117375760405162461bcd60e51b815260206004820152601160248201527f4d494e543a207265616368206c696d69740000000000000000000000000000006044820152606401610b12565b6117413382612b6d565b50336000908152601a60205260409020805460ff19166001908117909155600b55565b60006001600160a01b0382166117e25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610b12565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146118585760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b6118626000612bad565b565b600a546001600160a01b031633146118be5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b600e55565b600a546001600160a01b0316331461191d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b600c55565b600a546001600160a01b0316331461197c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b601780548291907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101008360048111156119ba576119ba6137a1565b021790555050565b6002600b541415611a155760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b12565b6002600b556003601754610100900460ff166004811115611a3857611a386137a1565b14611a855760405162461bcd60e51b815260206004820152601660248201527f4d494e543a206e6f7420696e2066726565206d696e74000000000000000000006044820152606401610b12565b33600090815260196020526040902054811115611b0a5760405162461bcd60e51b815260206004820152602160248201527f4d494e543a206578636565642066726565206d696e7420616c6c6f636174696f60448201527f6e000000000000000000000000000000000000000000000000000000000000006064820152608401610b12565b61128b81611b1760085490565b611b219190613ac2565b1115611b6f5760405162461bcd60e51b815260206004820152601160248201527f4d494e543a207265616368206c696d69740000000000000000000000000000006044820152606401610b12565b611b793382612b6d565b3360009081526019602052604081208054839290611b98908490613b2d565b90915550506001600b5550565b600a546001600160a01b03163314611bff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b600d55565b600a546001600160a01b03163314611c5e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b8051825114611caf5760405162461bcd60e51b815260206004820152600c60248201527f4c656e677468206572726f7200000000000000000000000000000000000000006044820152606401610b12565b815160005b81811015611d1857828181518110611cce57611cce613ada565b602002602001015160196000868481518110611cec57611cec613ada565b6020908102919091018101516001600160a01b0316825281019190915260400160002055600101611cb4565b50505050565b600a546001600160a01b03163314611d785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b80516110aa9060159060208401906134b9565b600a546001600160a01b03163314611de55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b600f55565b600a546001600160a01b03163314611e445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b601355565b600a546001600160a01b03163314611ea35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b80516110aa9060169060208401906134b9565b606060018054610c1990613a71565b60148054610b8990613a71565b6001600160a01b038216331415611f2b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b12565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611ff15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b6001600160a01b03909116600090815260196020526040902055565b600a546001600160a01b031633146120675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b805160005b81811015610e6f5760016018600085848151811061208c5761208c613ada565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905560010161206c565b6120d03383612875565b6121425760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b12565b611d1884848484612c17565b6002600b5414156121a15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b12565b6002600b819055601754610100900460ff1660048111156121c4576121c46137a1565b146122115760405162461bcd60e51b815260206004820152601560248201527f4d494e543a206e6f7420696e207072652d73616c6500000000000000000000006044820152606401610b12565b6010548111156122895760405162461bcd60e51b815260206004820152602a60248201527f4d494e543a206578636565642070726573616c65206c696d697420706572207460448201527f72616e73616374696f6e000000000000000000000000000000000000000000006064820152608401610b12565b3481600d546122989190613af0565b11156122e65760405162461bcd60e51b815260206004820152601860248201527f4d494e543a20696e73756666696369656e7420657468657200000000000000006044820152606401610b12565b6010548114156122f4576001015b6013548161230160085490565b61230b9190613ac2565b11156123595760405162461bcd60e51b815260206004820152601160248201527f4d494e543a207265616368206c696d69740000000000000000000000000000006044820152606401610b12565b6123633382612b6d565b506001600b55565b600a546001600160a01b031633146123c55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b601255565b60168054610b8990613a71565b6002600b54141561242a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b12565b6002600b556004601754610100900460ff16600481111561244d5761244d6137a1565b1461249a5760405162461bcd60e51b815260206004820152601860248201527f4d494e543a206e6f7420696e207075626c69632073616c6500000000000000006044820152606401610b12565b3481600e546124a99190613af0565b11156124f75760405162461bcd60e51b815260206004820152601860248201527f4d494e543a20696e73756666696369656e7420657468657200000000000000006044820152606401610b12565b60115481111561256f5760405162461bcd60e51b815260206004820152602a60248201527f4d494e543a206578636565642070726573616c65206c696d697420706572207460448201527f72616e73616374696f6e000000000000000000000000000000000000000000006064820152608401610b12565b61128b8161230160085490565b60175460609060ff161561259357610b7682612ca0565b601580546125a090613a71565b80601f01602080910402602001604051908101604052809291908181526020018280546125cc90613a71565b80156126195780601f106125ee57610100808354040283529160200191612619565b820191906000526020600020905b8154815290600101906020018083116125fc57829003601f168201915b50505050509050919050565b919050565b600a546001600160a01b031633146126845760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b12565b6001600160a01b0381166127005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b12565b61270981612bad565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061279f57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610b7657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610b76565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061283c826113ca565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166128ff5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610b12565b600061290a836113ca565b9050806001600160a01b0316846001600160a01b031614806129455750836001600160a01b031661293a84610c9c565b6001600160a01b0316145b8061297557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612990826113ca565b6001600160a01b031614612a0c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610b12565b6001600160a01b038216612a875760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610b12565b612a92838383612d89565b612a9d6000826127ef565b6001600160a01b0383166000908152600360205260408120805460019290612ac6908490613b2d565b90915550506001600160a01b0382166000908152600360205260408120805460019290612af4908490613ac2565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b81811015610e6f576000612b8360085490565b612b8e906001613ac2565b9050612b9a8482612e41565b5080612ba581613b44565b915050612b70565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612c2284848461297d565b612c2e84848484612e5b565b611d185760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b12565b6000818152600260205260409020546060906001600160a01b0316612d2d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610b12565b6000612d37612ff9565b90506000815111612d575760405180602001604052806000815250612d82565b80612d6184613008565b604051602001612d72929190613b7d565b6040516020818303038152906040525b9392505050565b6001600160a01b038316612de457612ddf81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612e07565b816001600160a01b0316836001600160a01b031614612e0757612e07838261313a565b6001600160a01b038216612e1e57610e6f816131d7565b826001600160a01b0316826001600160a01b031614610e6f57610e6f8282613286565b6110aa8282604051806020016040528060008152506132ca565b60006001600160a01b0384163b15612fee576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290612eb8903390899088908890600401613bac565b6020604051808303816000875af1925050508015612ef3575060408051601f3d908101601f19168201909252612ef091810190613be8565b60015b612fa3573d808015612f21576040519150601f19603f3d011682016040523d82523d6000602084013e612f26565b606091505b508051612f9b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b12565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612975565b506001949350505050565b606060148054610c1990613a71565b60608161304857505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115613072578061305c81613b44565b915061306b9050600a83613c1b565b915061304c565b60008167ffffffffffffffff81111561308d5761308d6136b9565b6040519080825280601f01601f1916602001820160405280156130b7576020820181803683370190505b5090505b8415612975576130cc600183613b2d565b91506130d9600a86613c2f565b6130e4906030613ac2565b60f81b8183815181106130f9576130f9613ada565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613133600a86613c1b565b94506130bb565b6000600161314784611764565b6131519190613b2d565b6000838152600760205260409020549091508082146131a4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906131e990600190613b2d565b6000838152600960205260408120546008805493945090928490811061321157613211613ada565b90600052602060002001549050806008838154811061323257613232613ada565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061326a5761326a613c43565b6001900381819060005260206000200160009055905550505050565b600061329183611764565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6132d48383613353565b6132e16000848484612e5b565b610e6f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b12565b6001600160a01b0382166133a95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b12565b6000818152600260205260409020546001600160a01b03161561340e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b12565b61341a60008383612d89565b6001600160a01b0382166000908152600360205260408120805460019290613443908490613ac2565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546134c590613a71565b90600052602060002090601f0160209004810192826134e7576000855561352d565b82601f1061350057805160ff191683800117855561352d565b8280016001018555821561352d579182015b8281111561352d578251825591602001919060010190613512565b5061353992915061353d565b5090565b5b80821115613539576000815560010161353e565b60006020828403121561356457600080fd5b5035919050565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461270957600080fd5b6000602082840312156135ab57600080fd5b8135612d828161356b565b60005b838110156135d15781810151838201526020016135b9565b83811115611d185750506000910152565b600081518084526135fa8160208601602086016135b6565b601f01601f19169290920160200192915050565b602081526000612d8260208301846135e2565b80356001600160a01b038116811461262557600080fd5b6000806040838503121561364b57600080fd5b61365483613621565b946020939093013593505050565b60006020828403121561367457600080fd5b612d8282613621565b60008060006060848603121561369257600080fd5b61369b84613621565b92506136a960208501613621565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156136f8576136f86136b9565b604052919050565b600067ffffffffffffffff83111561371a5761371a6136b9565b61372d6020601f19601f860116016136cf565b905082815283838301111561374157600080fd5b828260208301376000602084830101529392505050565b60006020828403121561376a57600080fd5b813567ffffffffffffffff81111561378157600080fd5b8201601f8101841361379257600080fd5b61297584823560208401613700565b634e487b7160e01b600052602160045260246000fd5b60208101600583106137d957634e487b7160e01b600052602160045260246000fd5b91905290565b6000602082840312156137f157600080fd5b813560058110612d8257600080fd5b600067ffffffffffffffff82111561381a5761381a6136b9565b5060051b60200190565b600082601f83011261383557600080fd5b8135602061384a61384583613800565b6136cf565b82815260059290921b8401810191818101908684111561386957600080fd5b8286015b8481101561388b5761387e81613621565b835291830191830161386d565b509695505050505050565b600080604083850312156138a957600080fd5b823567ffffffffffffffff808211156138c157600080fd5b6138cd86838701613824565b93506020915081850135818111156138e457600080fd5b85019050601f810186136138f757600080fd5b803561390561384582613800565b81815260059190911b8201830190838101908883111561392457600080fd5b928401925b8284101561394257833582529284019290840190613929565b80955050505050509250929050565b6000806040838503121561396457600080fd5b61396d83613621565b91506020830135801515811461398257600080fd5b809150509250929050565b60006020828403121561399f57600080fd5b813567ffffffffffffffff8111156139b657600080fd5b61297584828501613824565b600080600080608085870312156139d857600080fd5b6139e185613621565b93506139ef60208601613621565b925060408501359150606085013567ffffffffffffffff811115613a1257600080fd5b8501601f81018713613a2357600080fd5b613a3287823560208401613700565b91505092959194509250565b60008060408385031215613a5157600080fd5b613a5a83613621565b9150613a6860208401613621565b90509250929050565b600181811c90821680613a8557607f821691505b60208210811415613aa657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115613ad557613ad5613aac565b500190565b634e487b7160e01b600052603260045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2857613b28613aac565b500290565b600082821015613b3f57613b3f613aac565b500390565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b7657613b76613aac565b5060010190565b60008351613b8f8184602088016135b6565b835190830190613ba38183602088016135b6565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613bde60808301846135e2565b9695505050505050565b600060208284031215613bfa57600080fd5b8151612d828161356b565b634e487b7160e01b600052601260045260246000fd5b600082613c2a57613c2a613c05565b500490565b600082613c3e57613c3e613c05565b500690565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220aace62c662de5f4dcb3dde5429499b4a0c22d83ea82897f8a7d3da82f0218e3364736f6c634300080a0033

Deployed Bytecode Sourcemap

46885:9307:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53662:118;;;;;;;;;;-1:-1:-1;53662:118:0;;;;;:::i;:::-;;:::i;:::-;;40457:224;;;;;;;;;;-1:-1:-1;40457:224:0;;;;;:::i;:::-;;:::i;:::-;;;796:14:1;;789:22;771:41;;759:2;744:18;40457:224:0;;;;;;;;47594:132;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27230:100::-;;;;;;;;;;;;;:::i;47471:41::-;;;;;;;;;;;;;;;;;;;1779:25:1;;;1767:2;1752:18;47471:41:0;1633:177:1;28789:221:0;;;;;;;;;;-1:-1:-1;28789:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1979:55:1;;;1961:74;;1949:2;1934:18;28789:221:0;1815:226:1;28312:411:0;;;;;;;;;;-1:-1:-1;28312:411:0;;;;;:::i;:::-;;:::i;47519:38::-;;;;;;;;;;;;;;;;41097:113;;;;;;;;;;-1:-1:-1;41185:10:0;:17;41097:113;;52457:110;;;;;;;;;;-1:-1:-1;52457:110:0;;;;;:::i;:::-;;:::i;29679:339::-;;;;;;;;;;-1:-1:-1;29679:339:0;;;;;:::i;:::-;;:::i;40765:256::-;;;;;;;;;;-1:-1:-1;40765:256:0;;;;;:::i;:::-;;:::i;56046:143::-;;;;;;;;;;;;;:::i;51527:195::-;;;;;;;;;;-1:-1:-1;51527:195:0;;;;;:::i;:::-;;:::i;30089:185::-;;;;;;;;;;-1:-1:-1;30089:185:0;;;;;:::i;:::-;;:::i;48177:57::-;;;;;;;;;;-1:-1:-1;48177:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;48069:47;;;;;;;;;;-1:-1:-1;48069:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;55409:205;;;;;;;;;;-1:-1:-1;55409:205:0;;;;;:::i;:::-;;:::i;41287:233::-;;;;;;;;;;-1:-1:-1;41287:233:0;;;;;:::i;:::-;;:::i;47867:22::-;;;;;;;;;;-1:-1:-1;47867:22:0;;;;;;;;55301:100;;;;;;;;;;-1:-1:-1;55301:100:0;;;;;:::i;:::-;;:::i;53922:124::-;;;;;;;;;;-1:-1:-1;53922:124:0;;;;;:::i;:::-;;:::i;26924:239::-;;;;;;;;;;-1:-1:-1;26924:239:0;;;;;:::i;:::-;;:::i;48681:919::-;;;;;;:::i;:::-;;:::i;48025:35::-;;;;;;;;;;-1:-1:-1;48025:35:0;;;;;;;;;;;;;;;;;;:::i;26654:208::-;;;;;;;;;;-1:-1:-1;26654:208:0;;;;;:::i;:::-;;:::i;2636:94::-;;;;;;;;;;;;;:::i;47206:40::-;;;;;;;;;;;;;;;;54278:106;;;;;;;;;;-1:-1:-1;54278:106:0;;;;;:::i;:::-;;:::i;54054:108::-;;;;;;;;;;-1:-1:-1;54054:108:0;;;;;:::i;:::-;;:::i;52147:115::-;;;;;;;;;;-1:-1:-1;52147:115:0;;;;;:::i;:::-;;:::i;50416:499::-;;;;;;;;;;-1:-1:-1;50416:499:0;;;;;:::i;:::-;;:::i;54170:100::-;;;;;;;;;;-1:-1:-1;54170:100:0;;;;;:::i;:::-;;:::i;53046:404::-;;;;;;;;;;-1:-1:-1;53046:404:0;;;;;:::i;:::-;;:::i;55622:120::-;;;;;;;;;;-1:-1:-1;55622:120:0;;;;;:::i;:::-;;:::i;53788:126::-;;;;;;;;;;-1:-1:-1;53788:126:0;;;;;:::i;:::-;;:::i;1985:87::-;;;;;;;;;;-1:-1:-1;2058:6:0;;-1:-1:-1;;;;;2058:6:0;1985:87;;54569:130;;;;;;;;;;-1:-1:-1;54569:130:0;;;;;:::i;:::-;;:::i;55750:106::-;;;;;;;;;;-1:-1:-1;55750:106:0;;;;;:::i;:::-;;:::i;27399:104::-;;;;;;;;;;;;;:::i;47566:21::-;;;;;;;;;;;;;:::i;47104:43::-;;;;;;;;;;;;;;;;47253;;;;;;;;;;;;;;;;29082:295;;;;;;;;;;-1:-1:-1;29082:295:0;;;;;:::i;:::-;;:::i;48123:47::-;;;;;;;;;;-1:-1:-1;48123:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;52893:145;;;;;;;;;;-1:-1:-1;52893:145:0;;;;;:::i;:::-;;:::i;52575:310::-;;;;;;;;;;-1:-1:-1;52575:310:0;;;;;:::i;:::-;;:::i;30345:328::-;;;;;;;;;;-1:-1:-1;30345:328:0;;;;;:::i;:::-;;:::i;49608:800::-;;;;;;:::i;:::-;;:::i;47154:45::-;;;;;;;;;;;;;;;;54392:169;;;;;;;;;;-1:-1:-1;54392:169:0;;;;;:::i;:::-;;:::i;47733:125::-;;;;;;;;;;;;;:::i;50923:596::-;;;;;;:::i;:::-;;:::i;54898:287::-;;;;;;;;;;-1:-1:-1;54898:287:0;;;;;:::i;:::-;;:::i;46959:40::-;;;;;;;;;;;;46995:4;46959:40;;47057;;;;;;;;;;;;;;;;29448:164;;;;;;;;;;-1:-1:-1;29448:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29569:25:0;;;29545:4;29569:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29448:164;2885:192;;;;;;;;;;-1:-1:-1;2885:192:0;;;;;:::i;:::-;;:::i;47006:44::-;;;;;;;;;;;;;;;;53662:118;2058:6;;-1:-1:-1;;;;;2058:6:0;802:10;2205:23;2197:68;;;;-1:-1:-1;;;2197:68:0;;9203:2:1;2197:68:0;;;9185:21:1;;;9222:18;;;9215:30;9281:34;9261:18;;;9254:62;9333:18;;2197:68:0;;;;;;;;;53742:21:::1;:30:::0;53662:118::o;40457:224::-;40559:4;40583:50;;;40598:35;40583:50;;:90;;;40637:36;40661:11;40637:23;:36::i;:::-;40576:97;40457:224;-1:-1:-1;;40457:224:0:o;47594:132::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27230:100::-;27284:13;27317:5;27310:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27230:100;:::o;28789:221::-;28865:7;32272:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32272:16:0;28885:73;;;;-1:-1:-1;;;28885:73:0;;10006:2:1;28885:73:0;;;9988:21:1;10045:2;10025:18;;;10018:30;10084:34;10064:18;;;10057:62;10155:14;10135:18;;;10128:42;10187:19;;28885:73:0;9804:408:1;28885:73:0;-1:-1:-1;28978:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28978:24:0;;28789:221::o;28312:411::-;28393:13;28409:23;28424:7;28409:14;:23::i;:::-;28393:39;;28457:5;-1:-1:-1;;;;;28451:11:0;:2;-1:-1:-1;;;;;28451:11:0;;;28443:57;;;;-1:-1:-1;;;28443:57:0;;10419:2:1;28443:57:0;;;10401:21:1;10458:2;10438:18;;;10431:30;10497:34;10477:18;;;10470:62;10568:3;10548:18;;;10541:31;10589:19;;28443:57:0;10217:397:1;28443:57:0;802:10;-1:-1:-1;;;;;28535:21:0;;;;:62;;-1:-1:-1;28560:37:0;28577:5;802:10;29448:164;:::i;28560:37::-;28513:168;;;;-1:-1:-1;;;28513:168:0;;10821:2:1;28513:168:0;;;10803:21:1;10860:2;10840:18;;;10833:30;10899:34;10879:18;;;10872:62;10970:26;10950:18;;;10943:54;11014:19;;28513:168:0;10619:420:1;28513:168:0;28694:21;28703:2;28707:7;28694:8;:21::i;:::-;28382:341;28312:411;;:::o;52457:110::-;2058:6;;-1:-1:-1;;;;;2058:6:0;802:10;2205:23;2197:68;;;;-1:-1:-1;;;2197:68:0;;9203:2:1;2197:68:0;;;9185:21:1;;;9222:18;;;9215:30;9281:34;9261:18;;;9254:62;9333:18;;2197:68:0;9001:356:1;2197:68:0;-1:-1:-1;;;;;52531:21:0::1;;::::0;;;:15:::1;:21;::::0;;;;:28;;-1:-1:-1;;52531:28:0::1;52555:4;52531:28;::::0;;52457:110::o;29679:339::-;29874:41;802:10;29907:7;29874:18;:41::i;:::-;29866:103;;;;-1:-1:-1;;;29866:103:0;;11246:2:1;29866:103:0;;;11228:21:1;11285:2;11265:18;;;11258:30;11324:34;11304:18;;;11297:62;11395:19;11375:18;;;11368:47;11432:19;;29866:103:0;11044:413:1;29866:103:0;29982:28;29992:4;29998:2;30002:7;29982:9;:28::i;40765:256::-;40862:7;40898:23;40915:5;40898:16;:23::i;:::-;40890:5;:31;40882:87;;;;-1:-1:-1;;;40882:87:0;;11664:2:1;40882:87:0;;;11646:21:1;11703:2;11683:18;;;11676:30;11742:34;11722:18;;;11715:62;11813:13;11793:18;;;11786:41;11844:19;;40882:87:0;11462:407:1;40882:87:0;-1:-1:-1;;;;;;40987:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40765:256::o;56046:143::-;2058:6;;-1:-1:-1;;;;;2058:6:0;802:10;2205:23;2197:68;;;;-1:-1:-1;;;2197:68:0;;9203:2:1;2197:68:0;;;9185:21:1;;;9222:18;;;9215:30;9281:34;9261:18;;;9254:62;9333:18;;2197:68:0;9001:356:1;2197:68:0;56144:37:::1;::::0;56112:21:::1;::::0;56152:10:::1;::::0;56144:37;::::1;;;::::0;56112:21;;56094:15:::1;56144:37:::0;56094:15;56144:37;56112:21;56152:10;56144:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;56083:106;56046:143::o:0;51527:195::-;2058:6;;-1:-1:-1;;;;;2058:6:0;802:10;2205:23;2197:68;;;;-1:-1:-1;;;2197:68:0;;9203:2:1;2197:68:0;;;9185:21:1;;;9222:18;;;9215:30;9281:34;9261:18;;;9254:62;9333:18;;2197:68:0;9001:356:1;2197:68:0;46995:4:::1;51632:10;51616:13;41185:10:::0;:17;;41097:113;51616:13:::1;:26;;;;:::i;:::-;:39;;51608:69;;;::::0;-1:-1:-1;;;51608:69:0;;12398:2:1;51608:69:0::1;::::0;::::1;12380:21:1::0;12437:2;12417:18;;;12410:30;12476:19;12456:18;;;12449:47;12513:18;;51608:69:0::1;12196:341:1::0;51608:69:0::1;51688:26;51699:2;51703:10;51688;:26::i;30089:185::-:0;30227:39;30244:4;30250:2;30254:7;30227:39;;;;;;;;;;;;:16;:39::i;55409:205::-;2058:6;;-1:-1:-1;;;;;2058:6:0;802:10;2205:23;2197:68;;;;-1:-1:-1;;;2197:68:0;;9203:2:1;2197:68:0;;;9185:21:1;;;9222:18;;;9215:30;9281:34;9261:18;;;9254:62;9333:18;;2197:68:0;9001:356:1;2197:68:0;55487:22;;55479:70:::1;;;::::0;-1:-1:-1;;;55479:70:0;;12744:2:1;55479:70:0::1;::::0;::::1;12726:21:1::0;12783:2;12763:18;;;12756:30;12822:32;12802:18;;;12795:60;12872:18;;55479:70:0::1;12542:354:1::0;55479:70:0::1;55560:10;:17:::0;;-1:-1:-1;;55560:17:0::1;55573:4;55560:17;::::0;;55588:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;41287:233::-:0;41362:7;41398:30;41185:10;:17;;41097:113;41398:30;41390:5;:38;41382:95;;;;-1:-1:-1;;;41382:95:0;;13103:2:1;41382:95:0;;;13085:21:1;13142:2;13122:18;;;13115:30;13181:34;13161:18;;;13154:62;13252:14;13232:18;;;13225:42;13284:19;;41382:95:0;12901:408:1;41382:95:0;41495:10;41506:5;41495:17;;;;;;;;:::i;:::-;;;;;;;;;41488:24;;41287:233;;;:::o;55301:100::-;2058:6;;-1:-1:-1;;;;;2058:6:0;802:10;2205:23;2197:68;;;;-1:-1:-1;;;2197:68:0;;9203:2:1;2197:68:0;;;9185:21:1;;;9222:18;;;9215:30;9281:34;9261:18;;;9254:62;9333:18;;2197:68:0;9001:356:1;2197:68:0;55375:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;53922:124::-:0;2058:6;;-1:-1:-1;;;;;2058:6:0;802:10;2205:23;2197:68;;;;-1:-1:-1;;;2197:68:0;;9203:2:1;2197:68:0;;;9185:21:1;;;9222:18;;;9215:30;9281:34;9261:18;;;9254:62;9333:18;;2197:68:0;9001:356:1;2197:68:0;54005:24:::1;:33:::0;53922:124::o;26924:239::-;26996:7;27032:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27032:16:0;27067:19;27059:73;;;;-1:-1:-1;;;27059:73:0;;13705:2:1;27059:73:0;;;13687:21:1;13744:2;13724:18;;;13717:30;13783:34;13763:18;;;13756:62;13854:11;13834:18;;;13827:39;13883:19;;27059:73:0;13503:405:1;48681:919:0;5025:1;5623:7;;:19;;5615:63;;;;-1:-1:-1;;;5615:63:0;;14115:2:1;5615:63:0;;;14097:21:1;14154:2;14134:18;;;14127:30;14193:33;14173:18;;;14166:61;14244:18;;5615:63:0;13913:355:1;5615:63:0;5025:1;5756:7;:18;48791:10:::1;48775:27;::::0;;;:15:::1;:27;::::0;;;;;::::1;;48767:59;;;::::0;-1:-1:-1;;;48767:59:0;;14475:2:1;48767:59:0::1;::::0;::::1;14457:21:1::0;14514:2;14494:18;;;14487:30;14553:21;14533:18;;;14526:49;14592:18;;48767:59:0::1;14273:343:1::0;48767:59:0::1;48880:22;48859:17;::::0;::::1;::::0;::::1;;;:43;::::0;::::1;;;;;;:::i;:::-;;48837:118;;;::::0;-1:-1:-1;;;48837:118:0;;14823:2:1;48837:118:0::1;::::0;::::1;14805:21:1::0;14862:2;14842:18;;;14835:30;14901:27;14881:18;;;14874:55;14946:18;;48837:118:0::1;14621:349:1::0;48837:118:0::1;49015:10;48989:37;::::0;;;:25:::1;:37;::::0;;;;;::::1;;48988:38;48966:127;;;::::0;-1:-1:-1;;;48966:127:0;;15177:2:1;48966:127:0::1;::::0;::::1;15159:21:1::0;15216:2;15196:18;;;15189:30;15255:34;15235:18;;;15228:62;15326:9;15306:18;;;15299:37;15353:19;;48966:127:0::1;14975:403:1::0;48966:127:0::1;49140:25;;49126:10;:39;;49104:131;;;::::0;-1:-1:-1;;;49104:131:0;;15585:2:1;49104:131:0::1;::::0;::::1;15567:21:1::0;15624:2;15604:18;;;15597:30;15663:34;15643:18;;;15636:62;15734:12;15714:18;;;15707:40;15764:19;;49104:131:0::1;15383:406:1::0;49104:131:0::1;49301:9;49287:10;49268:16;;:29;;;;:::i;:::-;:42;;49246:116;;;::::0;-1:-1:-1;;;49246:116:0;;16229:2:1;49246:116:0::1;::::0;::::1;16211:21:1::0;16268:2;16248:18;;;16241:30;16307:26;16287:18;;;16280:54;16351:18;;49246:116:0::1;16027:348:1::0;49246:116:0::1;49425:20;;49411:10;49395:13;41185:10:::0;:17;;41097:113;49395:13:::1;:26;;;;:::i;:::-;:50;;49373:117;;;::::0;-1:-1:-1;;;49373:117:0;;12398:2:1;49373:117:0::1;::::0;::::1;12380:21:1::0;12437:2;12417:18;;;12410:30;12476:19;12456:18;;;12449:47;12513:18;;49373:117:0::1;12196:341:1::0;49373:117:0::1;49503:34;49514:10;49526;49503;:34::i;:::-;-1:-1:-1::0;49574:10:0::1;49548:37;::::0;;;:25:::1;:37;::::0;;;;:44;;-1:-1:-1;;49548:44:0::1;49588:4;49548:44:::0;;::::1;::::0;;;5935:7;:22;48681:919::o;26654:208::-;26726:7;-1:-1:-1;;;;;26754:19:0;;26746:74;;;;-1:-1:-1;;;26746:74:0;;16582:2:1;26746:74:0;;;16564:21:1;16621:2;16601:18;;;16594:30;16660:34;16640:18;;;16633:62;16731:12;16711:18;;;16704:40;16761:19;;26746:74:0;16380:406:1;26746:74:0;-1:-1:-1;;;;;;26838:16:0;;;;;:9;:16;;;;;;;26654:208::o;2636:94::-;2058:6;;-1:-1:-1;;;;;2058:6:0;802:10;2205:23;2197:68;;;;-1:-1:-1;;;2197:68:0;;9203:2:1;2197:68:0;;;9185:21:1;;;9222:18;;;9215:30;9281:34;9261:18;;;9254:62;9333:18;;2197:68:0;9001:356:1;2197:68:0;2701:21:::1;2719:1;2701:9;:21::i;:::-;2636:94::o:0;54278:106::-;2058:6;;-1:-1:-1;;;;;2058:6:0;802:10;2205:23;2197:68;;;;-1:-1:-1;;;2197:68:0;;9203:2:1;2197:68:0;;;9185:21:1;;;9222:18;;;9215:30;9281:34;9261:18;;;9254:62;9333:18;;2197:68:0;9001:356:1;2197:68:0;54352:15:::1;:24:::0;54278:106::o;54054:108::-;2058:6;;-1:-1:-1;;;;;2058:6:0;802:10;2205:23;2197:68;;;;-1:-1:-1;;;2197:68:0;;9203:2:1;2197:68:0;;;9185:21:1;;;9222:18;;;9215:30;9281:34;9261:18;;;9254:62;9333:18;;2197:68:0;9001:356:1;2197:68:0;54129:16:::1;:25:::0;54054:108::o;52147:115::-;2058:6;;-1:-1:-1;;;;;2058:6:0;802:10;2205:23;2197:68;;;;-1:-1:-1;;;2197:68:0;;9203:2:1;2197:68:0;;;9185:21:1;;;9222:18;;;9215:30;9281:34;9261:18;;;9254:62;9333:18;;2197:68:0;9001:356:1;2197:68:0;52227:17:::1;:27:::0;;52247:7;;52227:17;:27;::::1;;52247:7:::0;52227:27:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;52147:115:::0;:::o;50416:499::-;5025:1;5623:7;;:19;;5615:63;;;;-1:-1:-1;;;5615:63:0;;14115:2:1;5615:63:0;;;14097:21:1;14154:2;14134:18;;;14127:30;14193:33;14173:18;;;14166:61;14244:18;;5615:63:0;13913:355:1;5615:63:0;5025:1;5756:7;:18;50530:19:::1;50509:17;::::0;::::1;::::0;::::1;;;:40;::::0;::::1;;;;;;:::i;:::-;;50487:112;;;::::0;-1:-1:-1;;;50487:112:0;;16993:2:1;50487:112:0::1;::::0;::::1;16975:21:1::0;17032:2;17012:18;;;17005:30;17071:24;17051:18;;;17044:52;17113:18;;50487:112:0::1;16791:346:1::0;50487:112:0::1;50659:10;50646:24;::::0;;;:12:::1;:24;::::0;;;;;50632:38;::::1;;50610:121;;;::::0;-1:-1:-1;;;50610:121:0;;17344:2:1;50610:121:0::1;::::0;::::1;17326:21:1::0;17383:2;17363:18;;;17356:30;17422:34;17402:18;;;17395:62;17493:3;17473:18;;;17466:31;17514:19;;50610:121:0::1;17142:397:1::0;50610:121:0::1;46995:4;50766:10;50750:13;41185:10:::0;:17;;41097:113;50750:13:::1;:26;;;;:::i;:::-;:39;;50742:69;;;::::0;-1:-1:-1;;;50742:69:0;;12398:2:1;50742:69:0::1;::::0;::::1;12380:21:1::0;12437:2;12417:18;;;12410:30;12476:19;12456:18;;;12449:47;12513:18;;50742:69:0::1;12196:341:1::0;50742:69:0::1;50822:34;50833:10;50845;50822;:34::i;:::-;50882:10;50869:24;::::0;;;:12:::1;:24;::::0;;;;:38;;50897:10;;50869:24;:38:::1;::::0;50897:10;;50869:38:::1;:::i;:::-;::::0;;;-1:-1:-1;;4981:1:0;5935:7;:22;-1:-1:-1;50416:499:0:o;54170:100::-;2058:6;;-1:-1:-1;;;;;2058:6:0;802:10;2205:23;2197:68;;;;-1:-1:-1;;;2197:68:0;;9203:2:1;2197:68:0;;;9185:21:1;;;9222:18;;;9215:30;9281:34;9261:18;;;9254:62;9333:18;;2197:68:0;9001:356:1;2197:68:0;54241:12:::1;:21:::0;54170:100::o;53046:404::-;2058:6;;-1:-1:-1;;;;;2058:6:0;802:10;2205:23;2197:68;;;;-1:-1:-1;;;2197:68:0;;9203:2:1;2197:68:0;;;9185:21:1;;;9222:18;;;9215:30;9281:34;9261:18;;;9254:62;9333:18;;2197:68:0;9001:356:1;2197:68:0;53207:7:::1;:14;53191:5;:12;:30;53183:55;;;::::0;-1:-1:-1;;;53183:55:0;;17876:2:1;53183:55:0::1;::::0;::::1;17858:21:1::0;17915:2;17895:18;;;17888:30;17954:14;17934:18;;;17927:42;17986:18;;53183:55:0::1;17674:336:1::0;53183:55:0::1;53266:12:::0;;53249:14:::1;53289:154;53309:6;53305:1;:10;53289:154;;;53359:7;53367:1;53359:10;;;;;;;;:::i;:::-;;;;;;;53334:12;:22;53347:5;53353:1;53347:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;53334:22:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;53334:22:0;:35;53413:3:::1;;53289:154;;;;53172:278;53046:404:::0;;:::o;55622:120::-;2058:6;;-1:-1:-1;;;;;2058:6:0;802:10;2205:23;2197:68;;;;-1:-1:-1;;;2197:68:0;;9203:2:1;2197:68:0;;;9185:21:1;;;9222:18;;;9215:30;9281:34;9261:18;;;9254:62;9333:18;;2197:68:0;9001:356:1;2197:68:0;55706:28;;::::1;::::0;:18:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;53788:126::-:0;2058:6;;-1:-1:-1;;;;;2058:6:0;802:10;2205:23;2197:68;;;;-1:-1:-1;;;2197:68:0;;9203:2:1;2197:68:0;;;9185:21:1;;;9222:18;;;9215:30;9281:34;9261:18;;;9254:62;9333:18;;2197:68:0;9001:356:1;2197:68:0;53872:25:::1;:34:::0;53788:126::o;54569:130::-;2058:6;;-1:-1:-1;;;;;2058:6:0;802:10;2205:23;2197:68;;;;-1:-1:-1;;;2197:68:0;;9203:2:1;2197:68:0;;;9185:21:1;;;9222:18;;;9215:30;9281:34;9261:18;;;9254:62;9333:18;;2197:68:0;9001:356:1;2197:68:0;54655:16:::1;:36:::0;54569:130::o;55750:106::-;2058:6;;-1:-1:-1;;;;;2058:6:0;802:10;2205:23;2197:68;;;;-1:-1:-1;;;2197:68:0;;9203:2:1;2197:68:0;;;9185:21:1;;;9222:18;;;9215:30;9281:34;9261:18;;;9254:62;9333:18;;2197:68:0;9001:356:1;2197:68:0;55827:21;;::::1;::::0;:11:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;27399:104::-:0;27455:13;27488:7;27481:14;;;;;:::i;47566:21::-;;;;;;;:::i;29082:295::-;-1:-1:-1;;;;;29185:24:0;;802:10;29185:24;;29177:62;;;;-1:-1:-1;;;29177:62:0;;18217:2:1;29177:62:0;;;18199:21:1;18256:2;18236:18;;;18229:30;18295:27;18275:18;;;18268:55;18340:18;;29177:62:0;18015:349:1;29177:62:0;802:10;29252:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29252:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29252:53:0;;;;;;;;;;29321:48;;771:41:1;;;29252:42:0;;802:10;29321:48;;744:18:1;29321:48:0;;;;;;;29082:295;;:::o;52893:145::-;2058:6;;-1:-1:-1;;;;;2058:6:0;802:10;2205:23;2197:68;;;;-1:-1:-1;;;2197:68:0;;9203:2:1;2197:68:0;;;9185:21:1;;;9222:18;;;9215:30;9281:34;9261:18;;;9254:62;9333:18;;2197:68:0;9001:356:1;2197:68:0;-1:-1:-1;;;;;53003:18:0;;::::1;;::::0;;;:12:::1;:18;::::0;;;;:27;52893:145::o;52575:310::-;2058:6;;-1:-1:-1;;;;;2058:6:0;802:10;2205:23;2197:68;;;;-1:-1:-1;;;2197:68:0;;9203:2:1;2197:68:0;;;9185:21:1;;;9222:18;;;9215:30;9281:34;9261:18;;;9254:62;9333:18;;2197:68:0;9001:356:1;2197:68:0;52704:12;;52687:14:::1;52727:151;52747:6;52743:1;:10;52727:151;;;52800:4;52772:15;:25;52788:5;52794:1;52788:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;52772:25:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;52772:25:0;:32;;-1:-1:-1;;52772:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;52848:3:0::1;52727:151;;30345:328:::0;30520:41;802:10;30553:7;30520:18;:41::i;:::-;30512:103;;;;-1:-1:-1;;;30512:103:0;;11246:2:1;30512:103:0;;;11228:21:1;11285:2;11265:18;;;11258:30;11324:34;11304:18;;;11297:62;11395:19;11375:18;;;11368:47;11432:19;;30512:103:0;11044:413:1;30512:103:0;30626:39;30640:4;30646:2;30650:7;30659:5;30626:13;:39::i;49608:800::-;5025:1;5623:7;;:19;;5615:63;;;;-1:-1:-1;;;5615:63:0;;14115:2:1;5615:63:0;;;14097:21:1;14154:2;14134:18;;;14127:30;14193:33;14173:18;;;14166:61;14244:18;;5615:63:0;13913:355:1;5615:63:0;5025:1;5756:7;:18;;;49712:17:::1;::::0;::::1;::::0;::::1;;;:39;::::0;::::1;;;;;;:::i;:::-;;49690:110;;;::::0;-1:-1:-1;;;49690:110:0;;18571:2:1;49690:110:0::1;::::0;::::1;18553:21:1::0;18610:2;18590:18;;;18583:30;18649:23;18629:18;;;18622:51;18690:18;;49690:110:0::1;18369:345:1::0;49690:110:0::1;49847:21;;49833:10;:35;;49811:127;;;::::0;-1:-1:-1;;;49811:127:0;;15585:2:1;49811:127:0::1;::::0;::::1;15567:21:1::0;15624:2;15604:18;;;15597:30;15663:34;15643:18;;;15636:62;15734:12;15714:18;;;15707:40;15764:19;;49811:127:0::1;15383:406:1::0;49811:127:0::1;50000:9;49986:10;49971:12;;:25;;;;:::i;:::-;:38;;49949:112;;;::::0;-1:-1:-1;;;49949:112:0;;16229:2:1;49949:112:0::1;::::0;::::1;16211:21:1::0;16268:2;16248:18;;;16241:30;16307:26;16287:18;;;16280:54;16351:18;;49949:112:0::1;16027:348:1::0;49949:112:0::1;50122:21;;50108:10;:35;50104:124;;;50189:12;;50104:124;50292:16;;50278:10;50262:13;41185:10:::0;:17;;41097:113;50262:13:::1;:26;;;;:::i;:::-;:46;;50240:113;;;::::0;-1:-1:-1;;;50240:113:0;;12398:2:1;50240:113:0::1;::::0;::::1;12380:21:1::0;12437:2;12417:18;;;12410:30;12476:19;12456:18;;;12449:47;12513:18;;50240:113:0::1;12196:341:1::0;50240:113:0::1;50366:34;50377:10;50389;50366;:34::i;:::-;-1:-1:-1::0;4981:1:0;5935:7;:22;49608:800::o;54392:169::-;2058:6;;-1:-1:-1;;;;;2058:6:0;802:10;2205:23;2197:68;;;;-1:-1:-1;;;2197:68:0;;9203:2:1;2197:68:0;;;9185:21:1;;;9222:18;;;9215:30;9281:34;9261:18;;;9254:62;9333:18;;2197:68:0;9001:356:1;2197:68:0;54509:20:::1;:44:::0;54392:169::o;47733:125::-;;;;;;;:::i;50923:596::-;5025:1;5623:7;;:19;;5615:63;;;;-1:-1:-1;;;5615:63:0;;14115:2:1;5615:63:0;;;14097:21:1;14154:2;14134:18;;;14127:30;14193:33;14173:18;;;14166:61;14244:18;;5615:63:0;13913:355:1;5615:63:0;5025:1;5756:7;:18;51046:21:::1;51025:17;::::0;::::1;::::0;::::1;;;:42;::::0;::::1;;;;;;:::i;:::-;;51003:116;;;::::0;-1:-1:-1;;;51003:116:0;;18921:2:1;51003:116:0::1;::::0;::::1;18903:21:1::0;18960:2;18940:18;;;18933:30;18999:26;18979:18;;;18972:54;19043:18;;51003:116:0::1;18719:348:1::0;51003:116:0::1;51184:9;51170:10;51152:15;;:28;;;;:::i;:::-;:41;;51130:115;;;::::0;-1:-1:-1;;;51130:115:0;;16229:2:1;51130:115:0::1;::::0;::::1;16211:21:1::0;16268:2;16248:18;;;16241:30;16307:26;16287:18;;;16280:54;16351:18;;51130:115:0::1;16027:348:1::0;51130:115:0::1;51292:24;;51278:10;:38;;51256:130;;;::::0;-1:-1:-1;;;51256:130:0;;15585:2:1;51256:130:0::1;::::0;::::1;15567:21:1::0;15624:2;15604:18;;;15597:30;15663:34;15643:18;;;15636:62;15734:12;15714:18;;;15707:40;15764:19;;51256:130:0::1;15383:406:1::0;51256:130:0::1;46995:4;51421:10;51405:13;41185:10:::0;:17;;41097:113;54898:287;55051:10;;55016:13;;55051:10;;55047:131;;;55085:23;55100:7;55085:14;:23::i;55047:131::-;55148:18;55141:25;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54898:287;;;:::o;55047:131::-;54898:287;;;:::o;2885:192::-;2058:6;;-1:-1:-1;;;;;2058:6:0;802:10;2205:23;2197:68;;;;-1:-1:-1;;;2197:68:0;;9203:2:1;2197:68:0;;;9185:21:1;;;9222:18;;;9215:30;9281:34;9261:18;;;9254:62;9333:18;;2197:68:0;9001:356:1;2197:68:0;-1:-1:-1;;;;;2974:22:0;::::1;2966:73;;;::::0;-1:-1:-1;;;2966:73:0;;19274:2:1;2966:73:0::1;::::0;::::1;19256:21:1::0;19313:2;19293:18;;;19286:30;19352:34;19332:18;;;19325:62;19423:8;19403:18;;;19396:36;19449:19;;2966:73:0::1;19072:402:1::0;2966:73:0::1;3050:19;3060:8;3050:9;:19::i;:::-;2885:192:::0;:::o;26285:305::-;26387:4;26424:40;;;26439:25;26424:40;;:105;;-1:-1:-1;26481:48:0;;;26496:33;26481:48;26424:105;:158;;;-1:-1:-1;24615:25:0;24600:40;;;;26546:36;24491:157;36165:174;36240:24;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;36240:29:0;;;;;;;;:24;;36294:23;36240:24;36294:14;:23::i;:::-;-1:-1:-1;;;;;36285:46:0;;;;;;;;;;;36165:174;;:::o;32477:348::-;32570:4;32272:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32272:16:0;32587:73;;;;-1:-1:-1;;;32587:73:0;;19681:2:1;32587:73:0;;;19663:21:1;19720:2;19700:18;;;19693:30;19759:34;19739:18;;;19732:62;19830:14;19810:18;;;19803:42;19862:19;;32587:73:0;19479:408:1;32587:73:0;32671:13;32687:23;32702:7;32687:14;:23::i;:::-;32671:39;;32740:5;-1:-1:-1;;;;;32729:16:0;:7;-1:-1:-1;;;;;32729:16:0;;:51;;;;32773:7;-1:-1:-1;;;;;32749:31:0;:20;32761:7;32749:11;:20::i;:::-;-1:-1:-1;;;;;32749:31:0;;32729:51;:87;;;-1:-1:-1;;;;;;29569:25:0;;;29545:4;29569:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32784:32;32721:96;32477:348;-1:-1:-1;;;;32477:348:0:o;35469:578::-;35628:4;-1:-1:-1;;;;;35601:31:0;:23;35616:7;35601:14;:23::i;:::-;-1:-1:-1;;;;;35601:31:0;;35593:85;;;;-1:-1:-1;;;35593:85:0;;20094:2:1;35593:85:0;;;20076:21:1;20133:2;20113:18;;;20106:30;20172:34;20152:18;;;20145:62;20243:11;20223:18;;;20216:39;20272:19;;35593:85:0;19892:405:1;35593:85:0;-1:-1:-1;;;;;35697:16:0;;35689:65;;;;-1:-1:-1;;;35689:65:0;;20504:2:1;35689:65:0;;;20486:21:1;20543:2;20523:18;;;20516:30;20582:34;20562:18;;;20555:62;20653:6;20633:18;;;20626:34;20677:19;;35689:65:0;20302:400:1;35689:65:0;35767:39;35788:4;35794:2;35798:7;35767:20;:39::i;:::-;35871:29;35888:1;35892:7;35871:8;:29::i;:::-;-1:-1:-1;;;;;35913:15:0;;;;;;:9;:15;;;;;:20;;35932:1;;35913:15;:20;;35932:1;;35913:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35944:13:0;;;;;;:9;:13;;;;;:18;;35961:1;;35944:13;:18;;35961:1;;35944:18;:::i;:::-;;;;-1:-1:-1;;35973:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;35973:21:0;;;;;;;;;36012:27;;35973:16;;36012:27;;;;;;;35469:578;;;:::o;51730:219::-;51807:9;51802:140;51826:10;51822:1;:14;51802:140;;;51858:15;51876:13;41185:10;:17;;41097:113;51876:13;:17;;51892:1;51876:17;:::i;:::-;51858:35;;51908:22;51918:2;51922:7;51908:9;:22::i;:::-;-1:-1:-1;51838:3:0;;;;:::i;:::-;;;;51802:140;;3085:173;3160:6;;;-1:-1:-1;;;;;3177:17:0;;;;;;;;;;;3210:40;;3160:6;;;3177:17;3160:6;;3210:40;;3141:16;;3210:40;3130:128;3085:173;:::o;31555:315::-;31712:28;31722:4;31728:2;31732:7;31712:9;:28::i;:::-;31759:48;31782:4;31788:2;31792:7;31801:5;31759:22;:48::i;:::-;31751:111;;;;-1:-1:-1;;;31751:111:0;;21109:2:1;31751:111:0;;;21091:21:1;21148:2;21128:18;;;21121:30;21187:34;21167:18;;;21160:62;21258:20;21238:18;;;21231:48;21296:19;;31751:111:0;20907:414:1;27574:334:0;32248:4;32272:16;;;:7;:16;;;;;;27647:13;;-1:-1:-1;;;;;32272:16:0;27673:76;;;;-1:-1:-1;;;27673:76:0;;21528:2:1;27673:76:0;;;21510:21:1;21567:2;21547:18;;;21540:30;21606:34;21586:18;;;21579:62;21677:17;21657:18;;;21650:45;21712:19;;27673:76:0;21326:411:1;27673:76:0;27762:21;27786:10;:8;:10::i;:::-;27762:34;;27838:1;27820:7;27814:21;:25;:86;;;;;;;;;;;;;;;;;27866:7;27875:18;:7;:16;:18::i;:::-;27849:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27814:86;27807:93;27574:334;-1:-1:-1;;;27574:334:0:o;42133:589::-;-1:-1:-1;;;;;42339:18:0;;42335:187;;42374:40;42406:7;43549:10;:17;;43522:24;;;;:15;:24;;;;;:44;;;43577:24;;;;;;;;;;;;43445:164;42374:40;42335:187;;;42444:2;-1:-1:-1;;;;;42436:10:0;:4;-1:-1:-1;;;;;42436:10:0;;42432:90;;42463:47;42496:4;42502:7;42463:32;:47::i;:::-;-1:-1:-1;;;;;42536:16:0;;42532:183;;42569:45;42606:7;42569:36;:45::i;42532:183::-;42642:4;-1:-1:-1;;;;;42636:10:0;:2;-1:-1:-1;;;;;42636:10:0;;42632:83;;42663:40;42691:2;42695:7;42663:27;:40::i;33167:110::-;33243:26;33253:2;33257:7;33243:26;;;;;;;;;;;;:9;:26::i;36904:799::-;37059:4;-1:-1:-1;;;;;37080:13:0;;14558:20;14606:8;37076:620;;37116:72;;;;;-1:-1:-1;;;;;37116:36:0;;;;;:72;;802:10;;37167:4;;37173:7;;37182:5;;37116:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37116:72:0;;;;;;;;-1:-1:-1;;37116:72:0;;;;;;;;;;;;:::i;:::-;;;37112:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37358:13:0;;37354:272;;37401:60;;-1:-1:-1;;;37401:60:0;;21109:2:1;37401:60:0;;;21091:21:1;21148:2;21128:18;;;21121:30;21187:34;21167:18;;;21160:62;21258:20;21238:18;;;21231:48;21296:19;;37401:60:0;20907:414:1;37354:272:0;37576:6;37570:13;37561:6;37557:2;37553:15;37546:38;37112:529;37239:51;;37249:41;37239:51;;-1:-1:-1;37232:58:0;;37076:620;-1:-1:-1;37680:4:0;36904:799;;;;;;:::o;55193:100::-;55245:13;55278:7;55271:14;;;;;:::i;21890:723::-;21946:13;22167:10;22163:53;;-1:-1:-1;;22194:10:0;;;;;;;;;;;;;;;;;;21890:723::o;22163:53::-;22241:5;22226:12;22282:78;22289:9;;22282:78;;22315:8;;;;:::i;:::-;;-1:-1:-1;22338:10:0;;-1:-1:-1;22346:2:0;22338:10;;:::i;:::-;;;22282:78;;;22370:19;22402:6;22392:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22392:17:0;;22370:39;;22420:154;22427:10;;22420:154;;22454:11;22464:1;22454:11;;:::i;:::-;;-1:-1:-1;22523:10:0;22531:2;22523:5;:10;:::i;:::-;22510:24;;:2;:24;:::i;:::-;22497:39;;22480:6;22487;22480:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;22551:11:0;22560:2;22551:11;;:::i;:::-;;;22420:154;;44236:988;44502:22;44552:1;44527:22;44544:4;44527:16;:22::i;:::-;:26;;;;:::i;:::-;44564:18;44585:26;;;:17;:26;;;;;;44502:51;;-1:-1:-1;44718:28:0;;;44714:328;;-1:-1:-1;;;;;44785:18:0;;44763:19;44785:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44836:30;;;;;;:44;;;44953:30;;:17;:30;;;;;:43;;;44714:328;-1:-1:-1;45138:26:0;;;;:17;:26;;;;;;;;45131:33;;;-1:-1:-1;;;;;45182:18:0;;;;;:12;:18;;;;;:34;;;;;;;45175:41;44236:988::o;45519:1079::-;45797:10;:17;45772:22;;45797:21;;45817:1;;45797:21;:::i;:::-;45829:18;45850:24;;;:15;:24;;;;;;46223:10;:26;;45772:46;;-1:-1:-1;45850:24:0;;45772:46;;46223:26;;;;;;:::i;:::-;;;;;;;;;46201:48;;46287:11;46262:10;46273;46262:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46367:28;;;:15;:28;;;;;;;:41;;;46539:24;;;;;46532:31;46574:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45590:1008;;;45519:1079;:::o;43023:221::-;43108:14;43125:20;43142:2;43125:16;:20::i;:::-;-1:-1:-1;;;;;43156:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43201:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43023:221:0:o;33504:321::-;33634:18;33640:2;33644:7;33634:5;:18::i;:::-;33685:54;33716:1;33720:2;33724:7;33733:5;33685:22;:54::i;:::-;33663:154;;;;-1:-1:-1;;;33663:154:0;;21109:2:1;33663:154:0;;;21091:21:1;21148:2;21128:18;;;21121:30;21187:34;21167:18;;;21160:62;21258:20;21238:18;;;21231:48;21296:19;;33663:154:0;20907:414:1;34161:382:0;-1:-1:-1;;;;;34241:16:0;;34233:61;;;;-1:-1:-1;;;34233:61:0;;23810:2:1;34233:61:0;;;23792:21:1;;;23829:18;;;23822:30;23888:34;23868:18;;;23861:62;23940:18;;34233:61:0;23608:356:1;34233:61:0;32248:4;32272:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32272:16:0;:30;34305:58;;;;-1:-1:-1;;;34305:58:0;;24171:2:1;34305:58:0;;;24153:21:1;24210:2;24190:18;;;24183:30;24249;24229:18;;;24222:58;24297:18;;34305:58:0;23969:352:1;34305:58:0;34376:45;34405:1;34409:2;34413:7;34376:20;:45::i;:::-;-1:-1:-1;;;;;34434:13:0;;;;;;:9;:13;;;;;:18;;34451:1;;34434:13;:18;;34451:1;;34434:18;:::i;:::-;;;;-1:-1:-1;;34463:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;34463:21:0;;;;;;;;34502:33;;34463:16;;;34502:33;;34463:16;;34502:33;34161:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:180:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:177::-;284:66;277:5;273:78;266:5;263:89;253:117;;366:1;363;356:12;381:245;439:6;492:2;480:9;471:7;467:23;463:32;460:52;;;508:1;505;498:12;460:52;547:9;534:23;566:30;590:5;566:30;:::i;823:258::-;895:1;905:113;919:6;916:1;913:13;905:113;;;995:11;;;989:18;976:11;;;969:39;941:2;934:10;905:113;;;1036:6;1033:1;1030:13;1027:48;;;-1:-1:-1;;1071:1:1;1053:16;;1046:27;823:258::o;1086:317::-;1128:3;1166:5;1160:12;1193:6;1188:3;1181:19;1209:63;1265:6;1258:4;1253:3;1249:14;1242:4;1235:5;1231:16;1209:63;:::i;:::-;1317:2;1305:15;-1:-1:-1;;1301:88:1;1292:98;;;;1392:4;1288:109;;1086:317;-1:-1:-1;;1086:317:1:o;1408:220::-;1557:2;1546:9;1539:21;1520:4;1577:45;1618:2;1607:9;1603:18;1595:6;1577:45;:::i;2046:196::-;2114:20;;-1:-1:-1;;;;;2163:54:1;;2153:65;;2143:93;;2232:1;2229;2222:12;2247:254;2315:6;2323;2376:2;2364:9;2355:7;2351:23;2347:32;2344:52;;;2392:1;2389;2382:12;2344:52;2415:29;2434:9;2415:29;:::i;:::-;2405:39;2491:2;2476:18;;;;2463:32;;-1:-1:-1;;;2247:254:1:o;2506:186::-;2565:6;2618:2;2606:9;2597:7;2593:23;2589:32;2586:52;;;2634:1;2631;2624:12;2586:52;2657:29;2676:9;2657:29;:::i;2697:328::-;2774:6;2782;2790;2843:2;2831:9;2822:7;2818:23;2814:32;2811:52;;;2859:1;2856;2849:12;2811:52;2882:29;2901:9;2882:29;:::i;:::-;2872:39;;2930:38;2964:2;2953:9;2949:18;2930:38;:::i;:::-;2920:48;;3015:2;3004:9;3000:18;2987:32;2977:42;;2697:328;;;;;:::o;3030:184::-;-1:-1:-1;;;3079:1:1;3072:88;3179:4;3176:1;3169:15;3203:4;3200:1;3193:15;3219:334;3290:2;3284:9;3346:2;3336:13;;-1:-1:-1;;3332:86:1;3320:99;;3449:18;3434:34;;3470:22;;;3431:62;3428:88;;;3496:18;;:::i;:::-;3532:2;3525:22;3219:334;;-1:-1:-1;3219:334:1:o;3558:466::-;3623:5;3657:18;3649:6;3646:30;3643:56;;;3679:18;;:::i;:::-;3717:116;3827:4;-1:-1:-1;;3753:2:1;3745:6;3741:15;3737:88;3733:99;3717:116;:::i;:::-;3708:125;;3856:6;3849:5;3842:21;3896:3;3887:6;3882:3;3878:16;3875:25;3872:45;;;3913:1;3910;3903:12;3872:45;3962:6;3957:3;3950:4;3943:5;3939:16;3926:43;4016:1;4009:4;4000:6;3993:5;3989:18;3985:29;3978:40;3558:466;;;;;:::o;4029:451::-;4098:6;4151:2;4139:9;4130:7;4126:23;4122:32;4119:52;;;4167:1;4164;4157:12;4119:52;4207:9;4194:23;4240:18;4232:6;4229:30;4226:50;;;4272:1;4269;4262:12;4226:50;4295:22;;4348:4;4340:13;;4336:27;-1:-1:-1;4326:55:1;;4377:1;4374;4367:12;4326:55;4400:74;4466:7;4461:2;4448:16;4443:2;4439;4435:11;4400:74;:::i;4485:184::-;-1:-1:-1;;;4534:1:1;4527:88;4634:4;4631:1;4624:15;4658:4;4655:1;4648:15;4674:400;4821:2;4806:18;;4854:1;4843:13;;4833:201;;-1:-1:-1;;;4887:1:1;4880:88;4991:4;4988:1;4981:15;5019:4;5016:1;5009:15;4833:201;5043:25;;;4674:400;:::o;5079:271::-;5153:6;5206:2;5194:9;5185:7;5181:23;5177:32;5174:52;;;5222:1;5219;5212:12;5174:52;5261:9;5248:23;5300:1;5293:5;5290:12;5280:40;;5316:1;5313;5306:12;5355:183;5415:4;5448:18;5440:6;5437:30;5434:56;;;5470:18;;:::i;:::-;-1:-1:-1;5515:1:1;5511:14;5527:4;5507:25;;5355:183::o;5543:668::-;5597:5;5650:3;5643:4;5635:6;5631:17;5627:27;5617:55;;5668:1;5665;5658:12;5617:55;5704:6;5691:20;5730:4;5754:60;5770:43;5810:2;5770:43;:::i;:::-;5754:60;:::i;:::-;5848:15;;;5934:1;5930:10;;;;5918:23;;5914:32;;;5879:12;;;;5958:15;;;5955:35;;;5986:1;5983;5976:12;5955:35;6022:2;6014:6;6010:15;6034:148;6050:6;6045:3;6042:15;6034:148;;;6116:23;6135:3;6116:23;:::i;:::-;6104:36;;6160:12;;;;6067;;6034:148;;;-1:-1:-1;6200:5:1;5543:668;-1:-1:-1;;;;;;5543:668:1:o;6216:1138::-;6334:6;6342;6395:2;6383:9;6374:7;6370:23;6366:32;6363:52;;;6411:1;6408;6401:12;6363:52;6451:9;6438:23;6480:18;6521:2;6513:6;6510:14;6507:34;;;6537:1;6534;6527:12;6507:34;6560:61;6613:7;6604:6;6593:9;6589:22;6560:61;:::i;:::-;6550:71;;6640:2;6630:12;;6695:2;6684:9;6680:18;6667:32;6724:2;6714:8;6711:16;6708:36;;;6740:1;6737;6730:12;6708:36;6763:24;;;-1:-1:-1;6818:4:1;6810:13;;6806:27;-1:-1:-1;6796:55:1;;6847:1;6844;6837:12;6796:55;6883:2;6870:16;6906:60;6922:43;6962:2;6922:43;:::i;6906:60::-;7000:15;;;7082:1;7078:10;;;;7070:19;;7066:28;;;7031:12;;;;7106:19;;;7103:39;;;7138:1;7135;7128:12;7103:39;7162:11;;;;7182:142;7198:6;7193:3;7190:15;7182:142;;;7264:17;;7252:30;;7215:12;;;;7302;;;;7182:142;;;7343:5;7333:15;;;;;;;6216:1138;;;;;:::o;7359:347::-;7424:6;7432;7485:2;7473:9;7464:7;7460:23;7456:32;7453:52;;;7501:1;7498;7491:12;7453:52;7524:29;7543:9;7524:29;:::i;:::-;7514:39;;7603:2;7592:9;7588:18;7575:32;7650:5;7643:13;7636:21;7629:5;7626:32;7616:60;;7672:1;7669;7662:12;7616:60;7695:5;7685:15;;;7359:347;;;;;:::o;7711:348::-;7795:6;7848:2;7836:9;7827:7;7823:23;7819:32;7816:52;;;7864:1;7861;7854:12;7816:52;7904:9;7891:23;7937:18;7929:6;7926:30;7923:50;;;7969:1;7966;7959:12;7923:50;7992:61;8045:7;8036:6;8025:9;8021:22;7992:61;:::i;8064:667::-;8159:6;8167;8175;8183;8236:3;8224:9;8215:7;8211:23;8207:33;8204:53;;;8253:1;8250;8243:12;8204:53;8276:29;8295:9;8276:29;:::i;:::-;8266:39;;8324:38;8358:2;8347:9;8343:18;8324:38;:::i;:::-;8314:48;;8409:2;8398:9;8394:18;8381:32;8371:42;;8464:2;8453:9;8449:18;8436:32;8491:18;8483:6;8480:30;8477:50;;;8523:1;8520;8513:12;8477:50;8546:22;;8599:4;8591:13;;8587:27;-1:-1:-1;8577:55:1;;8628:1;8625;8618:12;8577:55;8651:74;8717:7;8712:2;8699:16;8694:2;8690;8686:11;8651:74;:::i;:::-;8641:84;;;8064:667;;;;;;;:::o;8736:260::-;8804:6;8812;8865:2;8853:9;8844:7;8840:23;8836:32;8833:52;;;8881:1;8878;8871:12;8833:52;8904:29;8923:9;8904:29;:::i;:::-;8894:39;;8952:38;8986:2;8975:9;8971:18;8952:38;:::i;:::-;8942:48;;8736:260;;;;;:::o;9362:437::-;9441:1;9437:12;;;;9484;;;9505:61;;9559:4;9551:6;9547:17;9537:27;;9505:61;9612:2;9604:6;9601:14;9581:18;9578:38;9575:218;;;-1:-1:-1;;;9646:1:1;9639:88;9750:4;9747:1;9740:15;9778:4;9775:1;9768:15;9575:218;;9362:437;;;:::o;11874:184::-;-1:-1:-1;;;11923:1:1;11916:88;12023:4;12020:1;12013:15;12047:4;12044:1;12037:15;12063:128;12103:3;12134:1;12130:6;12127:1;12124:13;12121:39;;;12140:18;;:::i;:::-;-1:-1:-1;12176:9:1;;12063:128::o;13314:184::-;-1:-1:-1;;;13363:1:1;13356:88;13463:4;13460:1;13453:15;13487:4;13484:1;13477:15;15794:228;15834:7;15960:1;15892:66;15888:74;15885:1;15882:81;15877:1;15870:9;15863:17;15859:105;15856:131;;;15967:18;;:::i;:::-;-1:-1:-1;16007:9:1;;15794:228::o;17544:125::-;17584:4;17612:1;17609;17606:8;17603:34;;;17617:18;;:::i;:::-;-1:-1:-1;17654:9:1;;17544:125::o;20707:195::-;20746:3;20777:66;20770:5;20767:77;20764:103;;;20847:18;;:::i;:::-;-1:-1:-1;20894:1:1;20883:13;;20707:195::o;21742:470::-;21921:3;21959:6;21953:13;21975:53;22021:6;22016:3;22009:4;22001:6;21997:17;21975:53;:::i;:::-;22091:13;;22050:16;;;;22113:57;22091:13;22050:16;22147:4;22135:17;;22113:57;:::i;:::-;22186:20;;21742:470;-1:-1:-1;;;;21742:470:1:o;22217:512::-;22411:4;-1:-1:-1;;;;;22521:2:1;22513:6;22509:15;22498:9;22491:34;22573:2;22565:6;22561:15;22556:2;22545:9;22541:18;22534:43;;22613:6;22608:2;22597:9;22593:18;22586:34;22656:3;22651:2;22640:9;22636:18;22629:31;22677:46;22718:3;22707:9;22703:19;22695:6;22677:46;:::i;:::-;22669:54;22217:512;-1:-1:-1;;;;;;22217:512:1:o;22734:249::-;22803:6;22856:2;22844:9;22835:7;22831:23;22827:32;22824:52;;;22872:1;22869;22862:12;22824:52;22904:9;22898:16;22923:30;22947:5;22923:30;:::i;22988:184::-;-1:-1:-1;;;23037:1:1;23030:88;23137:4;23134:1;23127:15;23161:4;23158:1;23151:15;23177:120;23217:1;23243;23233:35;;23248:18;;:::i;:::-;-1:-1:-1;23282:9:1;;23177:120::o;23302:112::-;23334:1;23360;23350:35;;23365:18;;:::i;:::-;-1:-1:-1;23399:9:1;;23302:112::o;23419:184::-;-1:-1:-1;;;23468:1:1;23461:88;23568:4;23565:1;23558:15;23592:4;23589:1;23582:15

Swarm Source

ipfs://aace62c662de5f4dcb3dde5429499b4a0c22d83ea82897f8a7d3da82f0218e33
Loading...
Loading
Loading...
Loading
[ 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.