ETH Price: $3,384.75 (-1.54%)
Gas: 1 Gwei

Token

CATGIRL ACADEMIA (CAT)
 

Overview

Max Total Supply

6,969 CAT

Holders

1,163

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
itztenzy.eth
Balance
4 CAT
0x04028198E451f64212c33CA22cB3b1FbA6272459
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

6969 Dreamy catgirls of all types.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CatGirlAcademia

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-21
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

// File: contracts/CatgirlAcademia.sol


pragma solidity >=0.7.0 <0.9.0;




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

  Counters.Counter private supply;
  Counters.Counter private freeMintedCount;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.02 ether;
  uint256 public maxSupply = 6969;
  uint256 public totalFree = 5969;
  uint256 public freeTokensPerAddress = 10;
  uint256 public maxMintAmountPerTx = 10;

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

// Mapping address to free mints claimed
   mapping(address => uint256) public freeMinted;

  constructor() ERC721("CATGIRL ACADEMIA", "CAT") {
    setHiddenMetadataUri("ipfs://QmWG96uXvEcwSzeDmTyxajA5FqJTuiRJSf89UE1gKouvSZ/hidden.json");
    _transferOwnership(0x3593360410D8C694b3D11B7FDC5C0462999D7c4a);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

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

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

    _mintLoop(msg.sender, _mintAmount);
  }

  function freeMint(uint256 _mintAmount) public mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(freeMintedCount.current() + _mintAmount <= totalFree, "Max free tokens exceeded!");
    require(freeMinted[msg.sender] + _mintAmount <= freeTokensPerAddress, "Free mint exceeded");

    freeMinted[msg.sender] += _mintAmount;
    _freeMintLoop(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

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

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

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

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

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

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

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

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

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

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeTokensPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b9160099162000225565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600a9162000225565b5066470de4df820000600c55611b39600d55611751600e55600a600f8190556010556011805461ffff191660011790553480156200008757600080fd5b50604080518082018252601081526f4341544749524c2041434144454d494160801b60208083019182528351808501909452600384526210d05560ea1b908401528151919291620000db9160009162000225565b508051620000f190600190602084019062000225565b5050506200010e620001086200015760201b60201c565b6200015b565b6200013260405180608001604052806041815260200162002d1d60419139620001ad565b62000151733593360410d8c694b3d11b7fdc5c0462999d7c4a6200015b565b62000308565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b031633146200020c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200022190600b90602084019062000225565b5050565b8280546200023390620002cb565b90600052602060002090601f016020900481019282620002575760008555620002a2565b82601f106200027257805160ff1916838001178555620002a2565b82800160010185558215620002a2579182015b82811115620002a257825182559160200191906001019062000285565b50620002b0929150620002b4565b5090565b5b80821115620002b05760008155600101620002b5565b600181811c90821680620002e057607f821691505b602082108114156200030257634e487b7160e01b600052602260045260246000fd5b50919050565b612a0580620003186000396000f3fe6080604052600436106102c65760003560e01c80636352211e11610179578063a22cb465116100d6578063d5abeb011161008a578063e985e9c511610064578063e985e9c514610744578063efbd73f41461078d578063f2fde38b146107ad57600080fd5b8063d5abeb01146106f9578063dad7b5c91461070f578063e0a808531461072457600080fd5b8063b071401b116100bb578063b071401b14610699578063b88d4fde146106b9578063c87b56dd146106d957600080fd5b8063a22cb46514610664578063a45ba8e71461068457600080fd5b80638469a8401161012d57806394354fd01161011257806394354fd01461062657806395d89b411461063c578063a0712d681461065157600080fd5b80638469a840146105f25780638da5cb5b1461060857600080fd5b8063715018a61161015e578063715018a61461059d5780637c928fe9146105b25780637ec4a659146105d257600080fd5b80636352211e1461055d57806370a082311461057d57600080fd5b8063389fcf06116102275780634fdd43cb116101db5780635503a0e8116101c05780635503a0e8146105195780635c975abb1461052e57806362b99ad41461054857600080fd5b80634fdd43cb146104da57806351830227146104fa57600080fd5b806342842e0e1161020c57806342842e0e1461046d578063438b63001461048d57806344a0d68a146104ba57600080fd5b8063389fcf061461042b5780633ccfd60b1461045857600080fd5b806316ba10e01161027e57806318160ddd1161026357806318160ddd146103e057806323b872dd146103f5578063333e44e61461041557600080fd5b806316ba10e0146103a057806316c38b3c146103c057600080fd5b8063081812fc116102af578063081812fc14610322578063095ea7b31461035a57806313faede61461037c57600080fd5b806301ffc9a7146102cb57806306fdde0314610300575b600080fd5b3480156102d757600080fd5b506102eb6102e6366004612607565b6107cd565b60405190151581526020015b60405180910390f35b34801561030c57600080fd5b5061031561086a565b6040516102f79190612836565b34801561032e57600080fd5b5061034261033d36600461268a565b6108fc565b6040516001600160a01b0390911681526020016102f7565b34801561036657600080fd5b5061037a6103753660046125c2565b610996565b005b34801561038857600080fd5b50610392600c5481565b6040519081526020016102f7565b3480156103ac57600080fd5b5061037a6103bb366004612641565b610ac8565b3480156103cc57600080fd5b5061037a6103db3660046125ec565b610b27565b3480156103ec57600080fd5b50610392610b82565b34801561040157600080fd5b5061037a6104103660046124e0565b610b92565b34801561042157600080fd5b50610392600e5481565b34801561043757600080fd5b50610392610446366004612492565b60126020526000908152604090205481565b34801561046457600080fd5b5061037a610c19565b34801561047957600080fd5b5061037a6104883660046124e0565b610cd5565b34801561049957600080fd5b506104ad6104a8366004612492565b610cf0565b6040516102f791906127f2565b3480156104c657600080fd5b5061037a6104d536600461268a565b610dd1565b3480156104e657600080fd5b5061037a6104f5366004612641565b610e1e565b34801561050657600080fd5b506011546102eb90610100900460ff1681565b34801561052557600080fd5b50610315610e79565b34801561053a57600080fd5b506011546102eb9060ff1681565b34801561055457600080fd5b50610315610f07565b34801561056957600080fd5b5061034261057836600461268a565b610f14565b34801561058957600080fd5b50610392610598366004612492565b610f9f565b3480156105a957600080fd5b5061037a611039565b3480156105be57600080fd5b5061037a6105cd36600461268a565b61108d565b3480156105de57600080fd5b5061037a6105ed366004612641565b6112a4565b3480156105fe57600080fd5b50610392600f5481565b34801561061457600080fd5b506006546001600160a01b0316610342565b34801561063257600080fd5b5061039260105481565b34801561064857600080fd5b506103156112ff565b61037a61065f36600461268a565b61130e565b34801561067057600080fd5b5061037a61067f366004612598565b61148c565b34801561069057600080fd5b50610315611497565b3480156106a557600080fd5b5061037a6106b436600461268a565b6114a4565b3480156106c557600080fd5b5061037a6106d436600461251c565b6114f1565b3480156106e557600080fd5b506103156106f436600461268a565b61157f565b34801561070557600080fd5b50610392600d5481565b34801561071b57600080fd5b5061039261170c565b34801561073057600080fd5b5061037a61073f3660046125ec565b611717565b34801561075057600080fd5b506102eb61075f3660046124ad565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561079957600080fd5b5061037a6107a83660046126a3565b611779565b3480156107b957600080fd5b5061037a6107c8366004612492565b61188f565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061083057506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061086457507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b606060008054610879906128d7565b80601f01602080910402602001604051908101604052809291908181526020018280546108a5906128d7565b80156108f25780601f106108c7576101008083540402835291602001916108f2565b820191906000526020600020905b8154815290600101906020018083116108d557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661097a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109a182610f14565b9050806001600160a01b0316836001600160a01b03161415610a2b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610971565b336001600160a01b0382161480610a475750610a47813361075f565b610ab95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610971565b610ac3838361195c565b505050565b6006546001600160a01b03163314610b105760405162461bcd60e51b815260206004820181905260248201526000805160206129b08339815191526044820152606401610971565b8051610b2390600a906020840190612357565b5050565b6006546001600160a01b03163314610b6f5760405162461bcd60e51b815260206004820181905260248201526000805160206129b08339815191526044820152606401610971565b6011805460ff1916911515919091179055565b6000610b8d60075490565b905090565b610b9c33826119d7565b610c0e5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610971565b610ac3838383611ace565b6006546001600160a01b03163314610c615760405162461bcd60e51b815260206004820181905260248201526000805160206129b08339815191526044820152606401610971565b6000610c756006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cbf576040519150601f19603f3d011682016040523d82523d6000602084013e610cc4565b606091505b5050905080610cd257600080fd5b50565b610ac3838383604051806020016040528060008152506114f1565b60606000610cfd83610f9f565b905060008167ffffffffffffffff811115610d1a57610d1a612983565b604051908082528060200260200182016040528015610d43578160200160208202803683370190505b509050600160005b8381108015610d5c5750600d548211155b15610dc7576000610d6c83610f14565b9050866001600160a01b0316816001600160a01b03161415610db45782848381518110610d9b57610d9b61296d565b602090810291909101015281610db081612912565b9250505b82610dbe81612912565b93505050610d4b565b5090949350505050565b6006546001600160a01b03163314610e195760405162461bcd60e51b815260206004820181905260248201526000805160206129b08339815191526044820152606401610971565b600c55565b6006546001600160a01b03163314610e665760405162461bcd60e51b815260206004820181905260248201526000805160206129b08339815191526044820152606401610971565b8051610b2390600b906020840190612357565b600a8054610e86906128d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb2906128d7565b8015610eff5780601f10610ed457610100808354040283529160200191610eff565b820191906000526020600020905b815481529060010190602001808311610ee257829003601f168201915b505050505081565b60098054610e86906128d7565b6000818152600260205260408120546001600160a01b0316806108645760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610971565b60006001600160a01b03821661101d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610971565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146110815760405162461bcd60e51b815260206004820181905260248201526000805160206129b08339815191526044820152606401610971565b61108b6000611ca8565b565b806000811180156110a057506010548111155b6110ec5760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610971565b600d54816110f960075490565b6111039190612849565b11156111515760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610971565b60115460ff16156111a45760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610971565b600e54826111b160085490565b6111bb9190612849565b11156112095760405162461bcd60e51b815260206004820152601960248201527f4d6178206672656520746f6b656e7320657863656564656421000000000000006044820152606401610971565b600f5433600090815260126020526040902054611227908490612849565b11156112755760405162461bcd60e51b815260206004820152601260248201527f46726565206d696e7420657863656564656400000000000000000000000000006044820152606401610971565b3360009081526012602052604081208054849290611294908490612849565b90915550610b2390503383611d07565b6006546001600160a01b031633146112ec5760405162461bcd60e51b815260206004820181905260248201526000805160206129b08339815191526044820152606401610971565b8051610b23906009906020840190612357565b606060018054610879906128d7565b8060008111801561132157506010548111155b61136d5760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610971565b600d548161137a60075490565b6113849190612849565b11156113d25760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610971565b60115460ff16156114255760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610971565b81600c546114339190612875565b3410156114825760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401610971565b610b233383611d52565b610b23338383611d8a565b600b8054610e86906128d7565b6006546001600160a01b031633146114ec5760405162461bcd60e51b815260206004820181905260248201526000805160206129b08339815191526044820152606401610971565b601055565b6114fb33836119d7565b61156d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610971565b61157984848484611e59565b50505050565b6000818152600260205260409020546060906001600160a01b031661160c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610971565b601154610100900460ff166116ad57600b8054611628906128d7565b80601f0160208091040260200160405190810160405280929190818152602001828054611654906128d7565b80156116a15780601f10611676576101008083540402835291602001916116a1565b820191906000526020600020905b81548152906001019060200180831161168457829003601f168201915b50505050509050919050565b60006116b7611ed7565b905060008151116116d75760405180602001604052806000815250611705565b806116e184611ee6565b600a6040516020016116f5939291906126f2565b6040516020818303038152906040525b9392505050565b6000610b8d60085490565b6006546001600160a01b0316331461175f5760405162461bcd60e51b815260206004820181905260248201526000805160206129b08339815191526044820152606401610971565b601180549115156101000261ff0019909216919091179055565b8160008111801561178c57506010548111155b6117d85760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610971565b600d54816117e560075490565b6117ef9190612849565b111561183d5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610971565b6006546001600160a01b031633146118855760405162461bcd60e51b815260206004820181905260248201526000805160206129b08339815191526044820152606401610971565b610ac38284611d52565b6006546001600160a01b031633146118d75760405162461bcd60e51b815260206004820181905260248201526000805160206129b08339815191526044820152606401610971565b6001600160a01b0381166119535760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610971565b610cd281611ca8565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061199e82610f14565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a505760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610971565b6000611a5b83610f14565b9050806001600160a01b0316846001600160a01b03161480611a965750836001600160a01b0316611a8b846108fc565b6001600160a01b0316145b80611ac657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ae182610f14565b6001600160a01b031614611b5d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610971565b6001600160a01b038216611bd85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610971565b611be360008261195c565b6001600160a01b0383166000908152600360205260408120805460019290611c0c908490612894565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c3a908490612849565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610ac357611d20600780546001019055565b611d2e600880546001019055565b611d4083611d3b60075490565b612018565b80611d4a81612912565b915050611d0a565b60005b81811015610ac357611d6b600780546001019055565b611d7883611d3b60075490565b80611d8281612912565b915050611d55565b816001600160a01b0316836001600160a01b03161415611dec5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610971565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e64848484611ace565b611e7084848484612032565b6115795760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610971565b606060098054610879906128d7565b606081611f2657505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611f505780611f3a81612912565b9150611f499050600a83612861565b9150611f2a565b60008167ffffffffffffffff811115611f6b57611f6b612983565b6040519080825280601f01601f191660200182016040528015611f95576020820181803683370190505b5090505b8415611ac657611faa600183612894565b9150611fb7600a8661292d565b611fc2906030612849565b60f81b818381518110611fd757611fd761296d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612011600a86612861565b9450611f99565b610b2382826040518060200160405280600081525061218a565b60006001600160a01b0384163b1561217f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120769033908990889088906004016127b6565b602060405180830381600087803b15801561209057600080fd5b505af19250505080156120c0575060408051601f3d908101601f191682019092526120bd91810190612624565b60015b612165573d8080156120ee576040519150601f19603f3d011682016040523d82523d6000602084013e6120f3565b606091505b50805161215d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610971565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ac6565b506001949350505050565b6121948383612208565b6121a16000848484612032565b610ac35760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610971565b6001600160a01b03821661225e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610971565b6000818152600260205260409020546001600160a01b0316156122c35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610971565b6001600160a01b03821660009081526003602052604081208054600192906122ec908490612849565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612363906128d7565b90600052602060002090601f01602090048101928261238557600085556123cb565b82601f1061239e57805160ff19168380011785556123cb565b828001600101855582156123cb579182015b828111156123cb5782518255916020019190600101906123b0565b506123d79291506123db565b5090565b5b808211156123d757600081556001016123dc565b600067ffffffffffffffff8084111561240b5761240b612983565b604051601f8501601f19908116603f0116810190828211818310171561243357612433612983565b8160405280935085815286868601111561244c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461247d57600080fd5b919050565b8035801515811461247d57600080fd5b6000602082840312156124a457600080fd5b61170582612466565b600080604083850312156124c057600080fd5b6124c983612466565b91506124d760208401612466565b90509250929050565b6000806000606084860312156124f557600080fd5b6124fe84612466565b925061250c60208501612466565b9150604084013590509250925092565b6000806000806080858703121561253257600080fd5b61253b85612466565b935061254960208601612466565b925060408501359150606085013567ffffffffffffffff81111561256c57600080fd5b8501601f8101871361257d57600080fd5b61258c878235602084016123f0565b91505092959194509250565b600080604083850312156125ab57600080fd5b6125b483612466565b91506124d760208401612482565b600080604083850312156125d557600080fd5b6125de83612466565b946020939093013593505050565b6000602082840312156125fe57600080fd5b61170582612482565b60006020828403121561261957600080fd5b813561170581612999565b60006020828403121561263657600080fd5b815161170581612999565b60006020828403121561265357600080fd5b813567ffffffffffffffff81111561266a57600080fd5b8201601f8101841361267b57600080fd5b611ac6848235602084016123f0565b60006020828403121561269c57600080fd5b5035919050565b600080604083850312156126b657600080fd5b823591506124d760208401612466565b600081518084526126de8160208601602086016128ab565b601f01601f19169290920160200192915050565b6000845160206127058285838a016128ab565b8551918401916127188184848a016128ab565b8554920191600090600181811c908083168061273557607f831692505b85831081141561275357634e487b7160e01b85526022600452602485fd5b8080156127675760018114612778576127a5565b60ff198516885283880195506127a5565b60008b81526020902060005b8581101561279d5781548a820152908401908801612784565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526127e860808301846126c6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561282a5783518352928401929184019160010161280e565b50909695505050505050565b60208152600061170560208301846126c6565b6000821982111561285c5761285c612941565b500190565b60008261287057612870612957565b500490565b600081600019048311821515161561288f5761288f612941565b500290565b6000828210156128a6576128a6612941565b500390565b60005b838110156128c65781810151838201526020016128ae565b838111156115795750506000910152565b600181811c908216806128eb57607f821691505b6020821081141561290c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561292657612926612941565b5060010190565b60008261293c5761293c612957565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cd257600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220043e6d2fd3cd28ba5cdf59c175b3b3822de3df9ded40912956afd66f9f31a37364736f6c63430008070033697066733a2f2f516d57473936755876456377537a65446d547978616a413546714a547569524a53663839554531674b6f7576535a2f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102c65760003560e01c80636352211e11610179578063a22cb465116100d6578063d5abeb011161008a578063e985e9c511610064578063e985e9c514610744578063efbd73f41461078d578063f2fde38b146107ad57600080fd5b8063d5abeb01146106f9578063dad7b5c91461070f578063e0a808531461072457600080fd5b8063b071401b116100bb578063b071401b14610699578063b88d4fde146106b9578063c87b56dd146106d957600080fd5b8063a22cb46514610664578063a45ba8e71461068457600080fd5b80638469a8401161012d57806394354fd01161011257806394354fd01461062657806395d89b411461063c578063a0712d681461065157600080fd5b80638469a840146105f25780638da5cb5b1461060857600080fd5b8063715018a61161015e578063715018a61461059d5780637c928fe9146105b25780637ec4a659146105d257600080fd5b80636352211e1461055d57806370a082311461057d57600080fd5b8063389fcf06116102275780634fdd43cb116101db5780635503a0e8116101c05780635503a0e8146105195780635c975abb1461052e57806362b99ad41461054857600080fd5b80634fdd43cb146104da57806351830227146104fa57600080fd5b806342842e0e1161020c57806342842e0e1461046d578063438b63001461048d57806344a0d68a146104ba57600080fd5b8063389fcf061461042b5780633ccfd60b1461045857600080fd5b806316ba10e01161027e57806318160ddd1161026357806318160ddd146103e057806323b872dd146103f5578063333e44e61461041557600080fd5b806316ba10e0146103a057806316c38b3c146103c057600080fd5b8063081812fc116102af578063081812fc14610322578063095ea7b31461035a57806313faede61461037c57600080fd5b806301ffc9a7146102cb57806306fdde0314610300575b600080fd5b3480156102d757600080fd5b506102eb6102e6366004612607565b6107cd565b60405190151581526020015b60405180910390f35b34801561030c57600080fd5b5061031561086a565b6040516102f79190612836565b34801561032e57600080fd5b5061034261033d36600461268a565b6108fc565b6040516001600160a01b0390911681526020016102f7565b34801561036657600080fd5b5061037a6103753660046125c2565b610996565b005b34801561038857600080fd5b50610392600c5481565b6040519081526020016102f7565b3480156103ac57600080fd5b5061037a6103bb366004612641565b610ac8565b3480156103cc57600080fd5b5061037a6103db3660046125ec565b610b27565b3480156103ec57600080fd5b50610392610b82565b34801561040157600080fd5b5061037a6104103660046124e0565b610b92565b34801561042157600080fd5b50610392600e5481565b34801561043757600080fd5b50610392610446366004612492565b60126020526000908152604090205481565b34801561046457600080fd5b5061037a610c19565b34801561047957600080fd5b5061037a6104883660046124e0565b610cd5565b34801561049957600080fd5b506104ad6104a8366004612492565b610cf0565b6040516102f791906127f2565b3480156104c657600080fd5b5061037a6104d536600461268a565b610dd1565b3480156104e657600080fd5b5061037a6104f5366004612641565b610e1e565b34801561050657600080fd5b506011546102eb90610100900460ff1681565b34801561052557600080fd5b50610315610e79565b34801561053a57600080fd5b506011546102eb9060ff1681565b34801561055457600080fd5b50610315610f07565b34801561056957600080fd5b5061034261057836600461268a565b610f14565b34801561058957600080fd5b50610392610598366004612492565b610f9f565b3480156105a957600080fd5b5061037a611039565b3480156105be57600080fd5b5061037a6105cd36600461268a565b61108d565b3480156105de57600080fd5b5061037a6105ed366004612641565b6112a4565b3480156105fe57600080fd5b50610392600f5481565b34801561061457600080fd5b506006546001600160a01b0316610342565b34801561063257600080fd5b5061039260105481565b34801561064857600080fd5b506103156112ff565b61037a61065f36600461268a565b61130e565b34801561067057600080fd5b5061037a61067f366004612598565b61148c565b34801561069057600080fd5b50610315611497565b3480156106a557600080fd5b5061037a6106b436600461268a565b6114a4565b3480156106c557600080fd5b5061037a6106d436600461251c565b6114f1565b3480156106e557600080fd5b506103156106f436600461268a565b61157f565b34801561070557600080fd5b50610392600d5481565b34801561071b57600080fd5b5061039261170c565b34801561073057600080fd5b5061037a61073f3660046125ec565b611717565b34801561075057600080fd5b506102eb61075f3660046124ad565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561079957600080fd5b5061037a6107a83660046126a3565b611779565b3480156107b957600080fd5b5061037a6107c8366004612492565b61188f565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061083057506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061086457507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b606060008054610879906128d7565b80601f01602080910402602001604051908101604052809291908181526020018280546108a5906128d7565b80156108f25780601f106108c7576101008083540402835291602001916108f2565b820191906000526020600020905b8154815290600101906020018083116108d557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661097a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109a182610f14565b9050806001600160a01b0316836001600160a01b03161415610a2b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610971565b336001600160a01b0382161480610a475750610a47813361075f565b610ab95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610971565b610ac3838361195c565b505050565b6006546001600160a01b03163314610b105760405162461bcd60e51b815260206004820181905260248201526000805160206129b08339815191526044820152606401610971565b8051610b2390600a906020840190612357565b5050565b6006546001600160a01b03163314610b6f5760405162461bcd60e51b815260206004820181905260248201526000805160206129b08339815191526044820152606401610971565b6011805460ff1916911515919091179055565b6000610b8d60075490565b905090565b610b9c33826119d7565b610c0e5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610971565b610ac3838383611ace565b6006546001600160a01b03163314610c615760405162461bcd60e51b815260206004820181905260248201526000805160206129b08339815191526044820152606401610971565b6000610c756006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cbf576040519150601f19603f3d011682016040523d82523d6000602084013e610cc4565b606091505b5050905080610cd257600080fd5b50565b610ac3838383604051806020016040528060008152506114f1565b60606000610cfd83610f9f565b905060008167ffffffffffffffff811115610d1a57610d1a612983565b604051908082528060200260200182016040528015610d43578160200160208202803683370190505b509050600160005b8381108015610d5c5750600d548211155b15610dc7576000610d6c83610f14565b9050866001600160a01b0316816001600160a01b03161415610db45782848381518110610d9b57610d9b61296d565b602090810291909101015281610db081612912565b9250505b82610dbe81612912565b93505050610d4b565b5090949350505050565b6006546001600160a01b03163314610e195760405162461bcd60e51b815260206004820181905260248201526000805160206129b08339815191526044820152606401610971565b600c55565b6006546001600160a01b03163314610e665760405162461bcd60e51b815260206004820181905260248201526000805160206129b08339815191526044820152606401610971565b8051610b2390600b906020840190612357565b600a8054610e86906128d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb2906128d7565b8015610eff5780601f10610ed457610100808354040283529160200191610eff565b820191906000526020600020905b815481529060010190602001808311610ee257829003601f168201915b505050505081565b60098054610e86906128d7565b6000818152600260205260408120546001600160a01b0316806108645760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610971565b60006001600160a01b03821661101d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610971565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146110815760405162461bcd60e51b815260206004820181905260248201526000805160206129b08339815191526044820152606401610971565b61108b6000611ca8565b565b806000811180156110a057506010548111155b6110ec5760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610971565b600d54816110f960075490565b6111039190612849565b11156111515760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610971565b60115460ff16156111a45760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610971565b600e54826111b160085490565b6111bb9190612849565b11156112095760405162461bcd60e51b815260206004820152601960248201527f4d6178206672656520746f6b656e7320657863656564656421000000000000006044820152606401610971565b600f5433600090815260126020526040902054611227908490612849565b11156112755760405162461bcd60e51b815260206004820152601260248201527f46726565206d696e7420657863656564656400000000000000000000000000006044820152606401610971565b3360009081526012602052604081208054849290611294908490612849565b90915550610b2390503383611d07565b6006546001600160a01b031633146112ec5760405162461bcd60e51b815260206004820181905260248201526000805160206129b08339815191526044820152606401610971565b8051610b23906009906020840190612357565b606060018054610879906128d7565b8060008111801561132157506010548111155b61136d5760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610971565b600d548161137a60075490565b6113849190612849565b11156113d25760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610971565b60115460ff16156114255760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610971565b81600c546114339190612875565b3410156114825760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401610971565b610b233383611d52565b610b23338383611d8a565b600b8054610e86906128d7565b6006546001600160a01b031633146114ec5760405162461bcd60e51b815260206004820181905260248201526000805160206129b08339815191526044820152606401610971565b601055565b6114fb33836119d7565b61156d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610971565b61157984848484611e59565b50505050565b6000818152600260205260409020546060906001600160a01b031661160c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610971565b601154610100900460ff166116ad57600b8054611628906128d7565b80601f0160208091040260200160405190810160405280929190818152602001828054611654906128d7565b80156116a15780601f10611676576101008083540402835291602001916116a1565b820191906000526020600020905b81548152906001019060200180831161168457829003601f168201915b50505050509050919050565b60006116b7611ed7565b905060008151116116d75760405180602001604052806000815250611705565b806116e184611ee6565b600a6040516020016116f5939291906126f2565b6040516020818303038152906040525b9392505050565b6000610b8d60085490565b6006546001600160a01b0316331461175f5760405162461bcd60e51b815260206004820181905260248201526000805160206129b08339815191526044820152606401610971565b601180549115156101000261ff0019909216919091179055565b8160008111801561178c57506010548111155b6117d85760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610971565b600d54816117e560075490565b6117ef9190612849565b111561183d5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610971565b6006546001600160a01b031633146118855760405162461bcd60e51b815260206004820181905260248201526000805160206129b08339815191526044820152606401610971565b610ac38284611d52565b6006546001600160a01b031633146118d75760405162461bcd60e51b815260206004820181905260248201526000805160206129b08339815191526044820152606401610971565b6001600160a01b0381166119535760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610971565b610cd281611ca8565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061199e82610f14565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a505760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610971565b6000611a5b83610f14565b9050806001600160a01b0316846001600160a01b03161480611a965750836001600160a01b0316611a8b846108fc565b6001600160a01b0316145b80611ac657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ae182610f14565b6001600160a01b031614611b5d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610971565b6001600160a01b038216611bd85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610971565b611be360008261195c565b6001600160a01b0383166000908152600360205260408120805460019290611c0c908490612894565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c3a908490612849565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610ac357611d20600780546001019055565b611d2e600880546001019055565b611d4083611d3b60075490565b612018565b80611d4a81612912565b915050611d0a565b60005b81811015610ac357611d6b600780546001019055565b611d7883611d3b60075490565b80611d8281612912565b915050611d55565b816001600160a01b0316836001600160a01b03161415611dec5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610971565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e64848484611ace565b611e7084848484612032565b6115795760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610971565b606060098054610879906128d7565b606081611f2657505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611f505780611f3a81612912565b9150611f499050600a83612861565b9150611f2a565b60008167ffffffffffffffff811115611f6b57611f6b612983565b6040519080825280601f01601f191660200182016040528015611f95576020820181803683370190505b5090505b8415611ac657611faa600183612894565b9150611fb7600a8661292d565b611fc2906030612849565b60f81b818381518110611fd757611fd761296d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612011600a86612861565b9450611f99565b610b2382826040518060200160405280600081525061218a565b60006001600160a01b0384163b1561217f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120769033908990889088906004016127b6565b602060405180830381600087803b15801561209057600080fd5b505af19250505080156120c0575060408051601f3d908101601f191682019092526120bd91810190612624565b60015b612165573d8080156120ee576040519150601f19603f3d011682016040523d82523d6000602084013e6120f3565b606091505b50805161215d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610971565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ac6565b506001949350505050565b6121948383612208565b6121a16000848484612032565b610ac35760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610971565b6001600160a01b03821661225e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610971565b6000818152600260205260409020546001600160a01b0316156122c35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610971565b6001600160a01b03821660009081526003602052604081208054600192906122ec908490612849565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612363906128d7565b90600052602060002090601f01602090048101928261238557600085556123cb565b82601f1061239e57805160ff19168380011785556123cb565b828001600101855582156123cb579182015b828111156123cb5782518255916020019190600101906123b0565b506123d79291506123db565b5090565b5b808211156123d757600081556001016123dc565b600067ffffffffffffffff8084111561240b5761240b612983565b604051601f8501601f19908116603f0116810190828211818310171561243357612433612983565b8160405280935085815286868601111561244c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461247d57600080fd5b919050565b8035801515811461247d57600080fd5b6000602082840312156124a457600080fd5b61170582612466565b600080604083850312156124c057600080fd5b6124c983612466565b91506124d760208401612466565b90509250929050565b6000806000606084860312156124f557600080fd5b6124fe84612466565b925061250c60208501612466565b9150604084013590509250925092565b6000806000806080858703121561253257600080fd5b61253b85612466565b935061254960208601612466565b925060408501359150606085013567ffffffffffffffff81111561256c57600080fd5b8501601f8101871361257d57600080fd5b61258c878235602084016123f0565b91505092959194509250565b600080604083850312156125ab57600080fd5b6125b483612466565b91506124d760208401612482565b600080604083850312156125d557600080fd5b6125de83612466565b946020939093013593505050565b6000602082840312156125fe57600080fd5b61170582612482565b60006020828403121561261957600080fd5b813561170581612999565b60006020828403121561263657600080fd5b815161170581612999565b60006020828403121561265357600080fd5b813567ffffffffffffffff81111561266a57600080fd5b8201601f8101841361267b57600080fd5b611ac6848235602084016123f0565b60006020828403121561269c57600080fd5b5035919050565b600080604083850312156126b657600080fd5b823591506124d760208401612466565b600081518084526126de8160208601602086016128ab565b601f01601f19169290920160200192915050565b6000845160206127058285838a016128ab565b8551918401916127188184848a016128ab565b8554920191600090600181811c908083168061273557607f831692505b85831081141561275357634e487b7160e01b85526022600452602485fd5b8080156127675760018114612778576127a5565b60ff198516885283880195506127a5565b60008b81526020902060005b8581101561279d5781548a820152908401908801612784565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526127e860808301846126c6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561282a5783518352928401929184019160010161280e565b50909695505050505050565b60208152600061170560208301846126c6565b6000821982111561285c5761285c612941565b500190565b60008261287057612870612957565b500490565b600081600019048311821515161561288f5761288f612941565b500290565b6000828210156128a6576128a6612941565b500390565b60005b838110156128c65781810151838201526020016128ae565b838111156115795750506000910152565b600181811c908216806128eb57607f821691505b6020821081141561290c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561292657612926612941565b5060010190565b60008261293c5761293c612957565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cd257600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220043e6d2fd3cd28ba5cdf59c175b3b3822de3df9ded40912956afd66f9f31a37364736f6c63430008070033

Deployed Bytecode Sourcemap

37765:5088:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25240:305;;;;;;;;;;-1:-1:-1;25240:305:0;;;;;:::i;:::-;;:::i;:::-;;;8192:14:1;;8185:22;8167:41;;8155:2;8140:18;25240:305:0;;;;;;;;26185:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27744:221::-;;;;;;;;;;-1:-1:-1;27744:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6807:55:1;;;6789:74;;6777:2;6762:18;27744:221:0;6643:226:1;27267:411:0;;;;;;;;;;-1:-1:-1;27267:411:0;;;;;:::i;:::-;;:::i;:::-;;38080:32;;;;;;;;;;;;;;;;;;;17070:25:1;;;17058:2;17043:18;38080:32:0;16924:177:1;41631:100:0;;;;;;;;;;-1:-1:-1;41631:100:0;;;;;:::i;:::-;;:::i;41737:77::-;;;;;;;;;;-1:-1:-1;41737:77:0;;;;;:::i;:::-;;:::i;38904:89::-;;;;;;;;;;;;;:::i;28494:339::-;;;;;;;;;;-1:-1:-1;28494:339:0;;;;;:::i;:::-;;:::i;38153:31::-;;;;;;;;;;;;;;;;38387:45;;;;;;;;;;-1:-1:-1;38387:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;41820:462;;;;;;;;;;;;;:::i;28904:185::-;;;;;;;;;;-1:-1:-1;28904:185:0;;;;;:::i;:::-;;:::i;39943:635::-;;;;;;;;;;-1:-1:-1;39943:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41171:74::-;;;;;;;;;;-1:-1:-1;41171:74:0;;;;;:::i;:::-;;:::i;41387:132::-;;;;;;;;;;-1:-1:-1;41387:132:0;;;;;:::i;:::-;;:::i;38309:28::-;;;;;;;;;;-1:-1:-1;38309:28:0;;;;;;;;;;;38002:33;;;;;;;;;;;;;:::i;38279:25::-;;;;;;;;;;-1:-1:-1;38279:25:0;;;;;;;;37969:28;;;;;;;;;;;;;:::i;25879:239::-;;;;;;;;;;-1:-1:-1;25879:239:0;;;;;:::i;:::-;;:::i;25609:208::-;;;;;;;;;;-1:-1:-1;25609:208:0;;;;;:::i;:::-;;:::i;6228:103::-;;;;;;;;;;;;;:::i;39358:416::-;;;;;;;;;;-1:-1:-1;39358:416:0;;;;;:::i;:::-;;:::i;41525:100::-;;;;;;;;;;-1:-1:-1;41525:100:0;;;;;:::i;:::-;;:::i;38189:40::-;;;;;;;;;;;;;;;;5577:87;;;;;;;;;;-1:-1:-1;5650:6:0;;-1:-1:-1;;;;;5650:6:0;5577:87;;38234:38;;;;;;;;;;;;;;;;26354:104;;;;;;;;;;;;;:::i;39105:247::-;;;;;;:::i;:::-;;:::i;28037:155::-;;;;;;;;;;-1:-1:-1;28037:155:0;;;;;:::i;:::-;;:::i;38040:31::-;;;;;;;;;;;;;:::i;41251:130::-;;;;;;;;;;-1:-1:-1;41251:130:0;;;;;:::i;:::-;;:::i;29160:328::-;;;;;;;;;;-1:-1:-1;29160:328:0;;;;;:::i;:::-;;:::i;40584:494::-;;;;;;;;;;-1:-1:-1;40584:494:0;;;;;:::i;:::-;;:::i;38117:31::-;;;;;;;;;;;;;;;;38997:102;;;;;;;;;;;;;:::i;41084:81::-;;;;;;;;;;-1:-1:-1;41084:81:0;;;;;:::i;:::-;;:::i;28263:164::-;;;;;;;;;;-1:-1:-1;28263:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28384:25:0;;;28360:4;28384:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28263:164;39782:155;;;;;;;;;;-1:-1:-1;39782:155:0;;;;;:::i;:::-;;:::i;6486:201::-;;;;;;;;;;-1:-1:-1;6486:201:0;;;;;:::i;:::-;;:::i;25240:305::-;25342:4;-1:-1:-1;;;;;;25379:40:0;;25394:25;25379:40;;:105;;-1:-1:-1;;;;;;;25436:48:0;;25451:33;25436:48;25379:105;:158;;;-1:-1:-1;18133:25:0;-1:-1:-1;;;;;;18118:40:0;;;25501:36;25359:178;25240:305;-1:-1:-1;;25240:305:0:o;26185:100::-;26239:13;26272:5;26265:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26185:100;:::o;27744:221::-;27820:7;31087:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31087:16:0;27840:73;;;;-1:-1:-1;;;27840:73:0;;13657:2:1;27840:73:0;;;13639:21:1;13696:2;13676:18;;;13669:30;13735:34;13715:18;;;13708:62;-1:-1:-1;;;13786:18:1;;;13779:42;13838:19;;27840:73:0;;;;;;;;;-1:-1:-1;27933:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27933:24:0;;27744:221::o;27267:411::-;27348:13;27364:23;27379:7;27364:14;:23::i;:::-;27348:39;;27412:5;-1:-1:-1;;;;;27406:11:0;:2;-1:-1:-1;;;;;27406:11:0;;;27398:57;;;;-1:-1:-1;;;27398:57:0;;15609:2:1;27398:57:0;;;15591:21:1;15648:2;15628:18;;;15621:30;15687:34;15667:18;;;15660:62;15758:3;15738:18;;;15731:31;15779:19;;27398:57:0;15407:397:1;27398:57:0;4381:10;-1:-1:-1;;;;;27490:21:0;;;;:62;;-1:-1:-1;27515:37:0;27532:5;4381:10;28263:164;:::i;27515:37::-;27468:168;;;;-1:-1:-1;;;27468:168:0;;11703:2:1;27468:168:0;;;11685:21:1;11742:2;11722:18;;;11715:30;11781:34;11761:18;;;11754:62;11852:26;11832:18;;;11825:54;11896:19;;27468:168:0;11501:420:1;27468:168:0;27649:21;27658:2;27662:7;27649:8;:21::i;:::-;27337:341;27267:411;;:::o;41631:100::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;14070:2:1;5789:68:0;;;14052:21:1;;;14089:18;;;14082:30;-1:-1:-1;;;;;;;;;;;14128:18:1;;;14121:62;14200:18;;5789:68:0;13868:356:1;5789:68:0;41703:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41631:100:::0;:::o;41737:77::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;14070:2:1;5789:68:0;;;14052:21:1;;;14089:18;;;14082:30;-1:-1:-1;;;;;;;;;;;14128:18:1;;;14121:62;14200:18;;5789:68:0;13868:356:1;5789:68:0;41793:6:::1;:15:::0;;-1:-1:-1;;41793:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41737:77::o;38904:89::-;38948:7;38971:16;:6;997:14;;905:114;38971:16;38964:23;;38904:89;:::o;28494:339::-;28689:41;4381:10;28722:7;28689:18;:41::i;:::-;28681:103;;;;-1:-1:-1;;;28681:103:0;;16360:2:1;28681:103:0;;;16342:21:1;16399:2;16379:18;;;16372:30;16438:34;16418:18;;;16411:62;16509:19;16489:18;;;16482:47;16546:19;;28681:103:0;16158:413:1;28681:103:0;28797:28;28807:4;28813:2;28817:7;28797:9;:28::i;41820:462::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;14070:2:1;5789:68:0;;;14052:21:1;;;14089:18;;;14082:30;-1:-1:-1;;;;;;;;;;;14128:18:1;;;14121:62;14200:18;;5789:68:0;13868:356:1;5789:68:0;42104:7:::1;42125;5650:6:::0;;-1:-1:-1;;;;;5650:6:0;;5577:87;42125:7:::1;-1:-1:-1::0;;;;;42117:21:0::1;42146;42117:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42103:69;;;42187:2;42179:11;;;::::0;::::1;;41857:425;41820:462::o:0;28904:185::-;29042:39;29059:4;29065:2;29069:7;29042:39;;;;;;;;;;;;:16;:39::i;39943:635::-;40018:16;40046:23;40072:17;40082:6;40072:9;:17::i;:::-;40046:43;;40096:30;40143:15;40129:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40129:30:0;-1:-1:-1;40096:63:0;-1:-1:-1;40191:1:0;40166:22;40235:309;40260:15;40242;:33;:64;;;;;40297:9;;40279:14;:27;;40242:64;40235:309;;;40317:25;40345:23;40353:14;40345:7;:23::i;:::-;40317:51;;40404:6;-1:-1:-1;;;;;40383:27:0;:17;-1:-1:-1;;;;;40383:27:0;;40379:131;;;40456:14;40423:13;40437:15;40423:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;40483:17;;;;:::i;:::-;;;;40379:131;40520:16;;;;:::i;:::-;;;;40308:236;40235:309;;;-1:-1:-1;40559:13:0;;39943:635;-1:-1:-1;;;;39943:635:0:o;41171:74::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;14070:2:1;5789:68:0;;;14052:21:1;;;14089:18;;;14082:30;-1:-1:-1;;;;;;;;;;;14128:18:1;;;14121:62;14200:18;;5789:68:0;13868:356:1;5789:68:0;41227:4:::1;:12:::0;41171:74::o;41387:132::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;14070:2:1;5789:68:0;;;14052:21:1;;;14089:18;;;14082:30;-1:-1:-1;;;;;;;;;;;14128:18:1;;;14121:62;14200:18;;5789:68:0;13868:356:1;5789:68:0;41475:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;38002:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37969:28::-;;;;;;;:::i;25879:239::-;25951:7;25987:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25987:16:0;26022:19;26014:73;;;;-1:-1:-1;;;26014:73:0;;12539:2:1;26014:73:0;;;12521:21:1;12578:2;12558:18;;;12551:30;12617:34;12597:18;;;12590:62;12688:11;12668:18;;;12661:39;12717:19;;26014:73:0;12337:405:1;25609:208:0;25681:7;-1:-1:-1;;;;;25709:19:0;;25701:74;;;;-1:-1:-1;;;25701:74:0;;12128:2:1;25701:74:0;;;12110:21:1;12167:2;12147:18;;;12140:30;12206:34;12186:18;;;12179:62;12277:12;12257:18;;;12250:40;12307:19;;25701:74:0;11926:406:1;25701:74:0;-1:-1:-1;;;;;;25793:16:0;;;;;:9;:16;;;;;;;25609:208::o;6228:103::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;14070:2:1;5789:68:0;;;14052:21:1;;;14089:18;;;14082:30;-1:-1:-1;;;;;;;;;;;14128:18:1;;;14121:62;14200:18;;5789:68:0;13868:356:1;5789:68:0;6293:30:::1;6320:1;6293:18;:30::i;:::-;6228:103::o:0;39358:416::-;39419:11;38738:1;38724:11;:15;:52;;;;;38758:18;;38743:11;:33;;38724:52;38716:85;;;;-1:-1:-1;;;38716:85:0;;9828:2:1;38716:85:0;;;9810:21:1;9867:2;9847:18;;;9840:30;9906:22;9886:18;;;9879:50;9946:18;;38716:85:0;9626:344:1;38716:85:0;38850:9;;38835:11;38816:16;:6;997:14;;905:114;38816:16;:30;;;;:::i;:::-;:43;;38808:76;;;;-1:-1:-1;;;38808:76:0;;16011:2:1;38808:76:0;;;15993:21:1;16050:2;16030:18;;;16023:30;16089:22;16069:18;;;16062:50;16129:18;;38808:76:0;15809:344:1;38808:76:0;39448:6:::1;::::0;::::1;;39447:7;39439:43;;;::::0;-1:-1:-1;;;39439:43:0;;14431:2:1;39439:43:0::1;::::0;::::1;14413:21:1::0;14470:2;14450:18;;;14443:30;14509:25;14489:18;;;14482:53;14552:18;;39439:43:0::1;14229:347:1::0;39439:43:0::1;39540:9;;39525:11;39497:25;:15;997:14:::0;;905:114;39497:25:::1;:39;;;;:::i;:::-;:52;;39489:90;;;::::0;-1:-1:-1;;;39489:90:0;;10936:2:1;39489:90:0::1;::::0;::::1;10918:21:1::0;10975:2;10955:18;;;10948:30;11014:27;10994:18;;;10987:55;11059:18;;39489:90:0::1;10734:349:1::0;39489:90:0::1;39634:20;::::0;39605:10:::1;39594:22;::::0;;;:10:::1;:22;::::0;;;;;:36:::1;::::0;39619:11;;39594:36:::1;:::i;:::-;:60;;39586:91;;;::::0;-1:-1:-1;;;39586:91:0;;12949:2:1;39586:91:0::1;::::0;::::1;12931:21:1::0;12988:2;12968:18;;;12961:30;13027:20;13007:18;;;13000:48;13065:18;;39586:91:0::1;12747:342:1::0;39586:91:0::1;39697:10;39686:22;::::0;;;:10:::1;:22;::::0;;;;:37;;39712:11;;39686:22;:37:::1;::::0;39712:11;;39686:37:::1;:::i;:::-;::::0;;;-1:-1:-1;39730:38:0::1;::::0;-1:-1:-1;39744:10:0::1;39756:11:::0;39730:13:::1;:38::i;41525:100::-:0;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;14070:2:1;5789:68:0;;;14052:21:1;;;14089:18;;;14082:30;-1:-1:-1;;;;;;;;;;;14128:18:1;;;14121:62;14200:18;;5789:68:0;13868:356:1;5789:68:0;41597:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;26354:104::-:0;26410:13;26443:7;26436:14;;;;;:::i;39105:247::-;39170:11;38738:1;38724:11;:15;:52;;;;;38758:18;;38743:11;:33;;38724:52;38716:85;;;;-1:-1:-1;;;38716:85:0;;9828:2:1;38716:85:0;;;9810:21:1;9867:2;9847:18;;;9840:30;9906:22;9886:18;;;9879:50;9946:18;;38716:85:0;9626:344:1;38716:85:0;38850:9;;38835:11;38816:16;:6;997:14;;905:114;38816:16;:30;;;;:::i;:::-;:43;;38808:76;;;;-1:-1:-1;;;38808:76:0;;16011:2:1;38808:76:0;;;15993:21:1;16050:2;16030:18;;;16023:30;16089:22;16069:18;;;16062:50;16129:18;;38808:76:0;15809:344:1;38808:76:0;39199:6:::1;::::0;::::1;;39198:7;39190:43;;;::::0;-1:-1:-1;;;39190:43:0;;14431:2:1;39190:43:0::1;::::0;::::1;14413:21:1::0;14470:2;14450:18;;;14443:30;14509:25;14489:18;;;14482:53;14552:18;;39190:43:0::1;14229:347:1::0;39190:43:0::1;39268:11;39261:4;;:18;;;;:::i;:::-;39248:9;:31;;39240:63;;;::::0;-1:-1:-1;;;39240:63:0;;16778:2:1;39240:63:0::1;::::0;::::1;16760:21:1::0;16817:2;16797:18;;;16790:30;16856:21;16836:18;;;16829:49;16895:18;;39240:63:0::1;16576:343:1::0;39240:63:0::1;39312:34;39322:10;39334:11;39312:9;:34::i;28037:155::-:0;28132:52;4381:10;28165:8;28175;28132:18;:52::i;38040:31::-;;;;;;;:::i;41251:130::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;14070:2:1;5789:68:0;;;14052:21:1;;;14089:18;;;14082:30;-1:-1:-1;;;;;;;;;;;14128:18:1;;;14121:62;14200:18;;5789:68:0;13868:356:1;5789:68:0;41335:18:::1;:40:::0;41251:130::o;29160:328::-;29335:41;4381:10;29368:7;29335:18;:41::i;:::-;29327:103;;;;-1:-1:-1;;;29327:103:0;;16360:2:1;29327:103:0;;;16342:21:1;16399:2;16379:18;;;16372:30;16438:34;16418:18;;;16411:62;16509:19;16489:18;;;16482:47;16546:19;;29327:103:0;16158:413:1;29327:103:0;29441:39;29455:4;29461:2;29465:7;29474:5;29441:13;:39::i;:::-;29160:328;;;;:::o;40584:494::-;31063:4;31087:16;;;:7;:16;;;;;;40683:13;;-1:-1:-1;;;;;31087:16:0;40708:98;;;;-1:-1:-1;;;40708:98:0;;15193:2:1;40708:98:0;;;15175:21:1;15232:2;15212:18;;;15205:30;15271:34;15251:18;;;15244:62;15342:17;15322:18;;;15315:45;15377:19;;40708:98:0;14991:411:1;40708:98:0;40819:8;;;;;;;40815:64;;40854:17;40847:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40584:494;;;:::o;40815:64::-;40887:28;40918:10;:8;:10::i;:::-;40887:41;;40973:1;40948:14;40942:28;:32;:130;;;;;;;;;;;;;;;;;41010:14;41026:19;:8;:17;:19::i;:::-;41047:9;40993:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40942:130;40935:137;40584:494;-1:-1:-1;;;40584:494:0:o;38997:102::-;39045:7;39068:25;:15;997:14;;905:114;41084:81;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;14070:2:1;5789:68:0;;;14052:21:1;;;14089:18;;;14082:30;-1:-1:-1;;;;;;;;;;;14128:18:1;;;14121:62;14200:18;;5789:68:0;13868:356:1;5789:68:0;41142:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;41142:17:0;;::::1;::::0;;;::::1;::::0;;41084:81::o;39782:155::-;39868:11;38738:1;38724:11;:15;:52;;;;;38758:18;;38743:11;:33;;38724:52;38716:85;;;;-1:-1:-1;;;38716:85:0;;9828:2:1;38716:85:0;;;9810:21:1;9867:2;9847:18;;;9840:30;9906:22;9886:18;;;9879:50;9946:18;;38716:85:0;9626:344:1;38716:85:0;38850:9;;38835:11;38816:16;:6;997:14;;905:114;38816:16;:30;;;;:::i;:::-;:43;;38808:76;;;;-1:-1:-1;;;38808:76:0;;16011:2:1;38808:76:0;;;15993:21:1;16050:2;16030:18;;;16023:30;16089:22;16069:18;;;16062:50;16129:18;;38808:76:0;15809:344:1;38808:76:0;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23:::1;5789:68;;;::::0;-1:-1:-1;;;5789:68:0;;14070:2:1;5789:68:0::1;::::0;::::1;14052:21:1::0;;;14089:18;;;14082:30;-1:-1:-1;;;;;;;;;;;14128:18:1;;;14121:62;14200:18;;5789:68:0::1;13868:356:1::0;5789:68:0::1;39898:33:::2;39908:9;39919:11;39898:9;:33::i;6486:201::-:0;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;14070:2:1;5789:68:0;;;14052:21:1;;;14089:18;;;14082:30;-1:-1:-1;;;;;;;;;;;14128:18:1;;;14121:62;14200:18;;5789:68:0;13868:356:1;5789:68:0;-1:-1:-1;;;;;6575:22:0;::::1;6567:73;;;::::0;-1:-1:-1;;;6567:73:0;;9064:2:1;6567:73:0::1;::::0;::::1;9046:21:1::0;9103:2;9083:18;;;9076:30;9142:34;9122:18;;;9115:62;9213:8;9193:18;;;9186:36;9239:19;;6567:73:0::1;8862:402:1::0;6567:73:0::1;6651:28;6670:8;6651:18;:28::i;34980:174::-:0;35055:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;35055:29:0;-1:-1:-1;;;;;35055:29:0;;;;;;;;:24;;35109:23;35055:24;35109:14;:23::i;:::-;-1:-1:-1;;;;;35100:46:0;;;;;;;;;;;34980:174;;:::o;31292:348::-;31385:4;31087:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31087:16:0;31402:73;;;;-1:-1:-1;;;31402:73:0;;11290:2:1;31402:73:0;;;11272:21:1;11329:2;11309:18;;;11302:30;11368:34;11348:18;;;11341:62;-1:-1:-1;;;11419:18:1;;;11412:42;11471:19;;31402:73:0;11088:408:1;31402:73:0;31486:13;31502:23;31517:7;31502:14;:23::i;:::-;31486:39;;31555:5;-1:-1:-1;;;;;31544:16:0;:7;-1:-1:-1;;;;;31544:16:0;;:51;;;;31588:7;-1:-1:-1;;;;;31564:31:0;:20;31576:7;31564:11;:20::i;:::-;-1:-1:-1;;;;;31564:31:0;;31544:51;:87;;;-1:-1:-1;;;;;;28384:25:0;;;28360:4;28384:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31599:32;31536:96;31292:348;-1:-1:-1;;;;31292:348:0:o;34284:578::-;34443:4;-1:-1:-1;;;;;34416:31:0;:23;34431:7;34416:14;:23::i;:::-;-1:-1:-1;;;;;34416:31:0;;34408:85;;;;-1:-1:-1;;;34408:85:0;;14783:2:1;34408:85:0;;;14765:21:1;14822:2;14802:18;;;14795:30;14861:34;14841:18;;;14834:62;14932:11;14912:18;;;14905:39;14961:19;;34408:85:0;14581:405:1;34408:85:0;-1:-1:-1;;;;;34512:16:0;;34504:65;;;;-1:-1:-1;;;34504:65:0;;10177:2:1;34504:65:0;;;10159:21:1;10216:2;10196:18;;;10189:30;10255:34;10235:18;;;10228:62;10326:6;10306:18;;;10299:34;10350:19;;34504:65:0;9975:400:1;34504:65:0;34686:29;34703:1;34707:7;34686:8;:29::i;:::-;-1:-1:-1;;;;;34728:15:0;;;;;;:9;:15;;;;;:20;;34747:1;;34728:15;:20;;34747:1;;34728:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34759:13:0;;;;;;:9;:13;;;;;:18;;34776:1;;34759:13;:18;;34776:1;;34759:18;:::i;:::-;;;;-1:-1:-1;;34788:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;34788:21:0;-1:-1:-1;;;;;34788:21:0;;;;;;;;;34827:27;;34788:16;;34827:27;;;;;;;34284:578;;;:::o;6847:191::-;6940:6;;;-1:-1:-1;;;;;6957:17:0;;;-1:-1:-1;;6957:17:0;;;;;;;6990:40;;6940:6;;;6957:17;6940:6;;6990:40;;6921:16;;6990:40;6910:128;6847:191;:::o;42496:244::-;42580:9;42575:160;42599:11;42595:1;:15;42575:160;;;42626:18;:6;1116:19;;1134:1;1116:19;;;1027:127;42626:18;42653:27;:15;1116:19;;1134:1;1116:19;;;1027:127;42653:27;42689:38;42699:9;42710:16;:6;997:14;;905:114;42710:16;42689:9;:38::i;:::-;42612:3;;;;:::i;:::-;;;;42575:160;;42288:204;42368:9;42363:124;42387:11;42383:1;:15;42363:124;;;42414:18;:6;1116:19;;1134:1;1116:19;;;1027:127;42414:18;42441:38;42451:9;42462:16;:6;997:14;;905:114;42441:38;42400:3;;;;:::i;:::-;;;;42363:124;;35296:315;35451:8;-1:-1:-1;;;;;35442:17:0;:5;-1:-1:-1;;;;;35442:17:0;;;35434:55;;;;-1:-1:-1;;;35434:55:0;;10582:2:1;35434:55:0;;;10564:21:1;10621:2;10601:18;;;10594:30;10660:27;10640:18;;;10633:55;10705:18;;35434:55:0;10380:349:1;35434:55:0;-1:-1:-1;;;;;35500:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35500:46:0;;;;;;;;;;35562:41;;8167::1;;;35562::0;;8140:18:1;35562:41:0;;;;;;;35296:315;;;:::o;30370:::-;30527:28;30537:4;30543:2;30547:7;30527:9;:28::i;:::-;30574:48;30597:4;30603:2;30607:7;30616:5;30574:22;:48::i;:::-;30566:111;;;;-1:-1:-1;;;30566:111:0;;8645:2:1;30566:111:0;;;8627:21:1;8684:2;8664:18;;;8657:30;8723:34;8703:18;;;8696:62;-1:-1:-1;;;8774:18:1;;;8767:48;8832:19;;30566:111:0;8443:414:1;42746:104:0;42806:13;42835:9;42828:16;;;;;:::i;1863:723::-;1919:13;2140:10;2136:53;;-1:-1:-1;;2167:10:0;;;;;;;;;;;;;;;;;;1863:723::o;2136:53::-;2214:5;2199:12;2255:78;2262:9;;2255:78;;2288:8;;;;:::i;:::-;;-1:-1:-1;2311:10:0;;-1:-1:-1;2319:2:0;2311:10;;:::i;:::-;;;2255:78;;;2343:19;2375:6;2365:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2365:17:0;;2343:39;;2393:154;2400:10;;2393:154;;2427:11;2437:1;2427:11;;:::i;:::-;;-1:-1:-1;2496:10:0;2504:2;2496:5;:10;:::i;:::-;2483:24;;:2;:24;:::i;:::-;2470:39;;2453:6;2460;2453:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;2524:11:0;2533:2;2524:11;;:::i;:::-;;;2393:154;;31982:110;32058:26;32068:2;32072:7;32058:26;;;;;;;;;;;;:9;:26::i;36176:799::-;36331:4;-1:-1:-1;;;;;36352:13:0;;8188:20;8236:8;36348:620;;36388:72;;-1:-1:-1;;;36388:72:0;;-1:-1:-1;;;;;36388:36:0;;;;;:72;;4381:10;;36439:4;;36445:7;;36454:5;;36388:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36388:72:0;;;;;;;;-1:-1:-1;;36388:72:0;;;;;;;;;;;;:::i;:::-;;;36384:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36630:13:0;;36626:272;;36673:60;;-1:-1:-1;;;36673:60:0;;8645:2:1;36673:60:0;;;8627:21:1;8684:2;8664:18;;;8657:30;8723:34;8703:18;;;8696:62;-1:-1:-1;;;8774:18:1;;;8767:48;8832:19;;36673:60:0;8443:414:1;36626:272:0;36848:6;36842:13;36833:6;36829:2;36825:15;36818:38;36384:529;-1:-1:-1;;;;;;36511:51:0;-1:-1:-1;;;36511:51:0;;-1:-1:-1;36504:58:0;;36348:620;-1:-1:-1;36952:4:0;36176:799;;;;;;:::o;32319:321::-;32449:18;32455:2;32459:7;32449:5;:18::i;:::-;32500:54;32531:1;32535:2;32539:7;32548:5;32500:22;:54::i;:::-;32478:154;;;;-1:-1:-1;;;32478:154:0;;8645:2:1;32478:154:0;;;8627:21:1;8684:2;8664:18;;;8657:30;8723:34;8703:18;;;8696:62;-1:-1:-1;;;8774:18:1;;;8767:48;8832:19;;32478:154:0;8443:414:1;32976:382:0;-1:-1:-1;;;;;33056:16:0;;33048:61;;;;-1:-1:-1;;;33048:61:0;;13296:2:1;33048:61:0;;;13278:21:1;;;13315:18;;;13308:30;13374:34;13354:18;;;13347:62;13426:18;;33048:61:0;13094:356:1;33048:61:0;31063:4;31087:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31087:16:0;:30;33120:58;;;;-1:-1:-1;;;33120:58:0;;9471:2:1;33120:58:0;;;9453:21:1;9510:2;9490:18;;;9483:30;9549;9529:18;;;9522:58;9597:18;;33120:58:0;9269:352:1;33120:58:0;-1:-1:-1;;;;;33249:13:0;;;;;;:9;:13;;;;;:18;;33266:1;;33249:13;:18;;33266:1;;33249:18;:::i;:::-;;;;-1:-1:-1;;33278:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;33278:21:0;-1:-1:-1;;;;;33278:21:0;;;;;;;;33317:33;;33278:16;;;33317:33;;33278:16;;33317:33;32976:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:1;;757:65;;747:93;;836:1;833;826:12;747:93;650:196;;;:::o;851:160::-;916:20;;972:13;;965:21;955:32;;945:60;;1001:1;998;991:12;1016:186;1075:6;1128:2;1116:9;1107:7;1103:23;1099:32;1096:52;;;1144:1;1141;1134:12;1096:52;1167:29;1186:9;1167:29;:::i;1207:260::-;1275:6;1283;1336:2;1324:9;1315:7;1311:23;1307:32;1304:52;;;1352:1;1349;1342:12;1304:52;1375:29;1394:9;1375:29;:::i;:::-;1365:39;;1423:38;1457:2;1446:9;1442:18;1423:38;:::i;:::-;1413:48;;1207:260;;;;;:::o;1472:328::-;1549:6;1557;1565;1618:2;1606:9;1597:7;1593:23;1589:32;1586:52;;;1634:1;1631;1624:12;1586:52;1657:29;1676:9;1657:29;:::i;:::-;1647:39;;1705:38;1739:2;1728:9;1724:18;1705:38;:::i;:::-;1695:48;;1790:2;1779:9;1775:18;1762:32;1752:42;;1472:328;;;;;:::o;1805:666::-;1900:6;1908;1916;1924;1977:3;1965:9;1956:7;1952:23;1948:33;1945:53;;;1994:1;1991;1984:12;1945:53;2017:29;2036:9;2017:29;:::i;:::-;2007:39;;2065:38;2099:2;2088:9;2084:18;2065:38;:::i;:::-;2055:48;;2150:2;2139:9;2135:18;2122:32;2112:42;;2205:2;2194:9;2190:18;2177:32;2232:18;2224:6;2221:30;2218:50;;;2264:1;2261;2254:12;2218:50;2287:22;;2340:4;2332:13;;2328:27;-1:-1:-1;2318:55:1;;2369:1;2366;2359:12;2318:55;2392:73;2457:7;2452:2;2439:16;2434:2;2430;2426:11;2392:73;:::i;:::-;2382:83;;;1805:666;;;;;;;:::o;2476:254::-;2541:6;2549;2602:2;2590:9;2581:7;2577:23;2573:32;2570:52;;;2618:1;2615;2608:12;2570:52;2641:29;2660:9;2641:29;:::i;:::-;2631:39;;2689:35;2720:2;2709:9;2705:18;2689:35;:::i;2735:254::-;2803:6;2811;2864:2;2852:9;2843:7;2839:23;2835:32;2832:52;;;2880:1;2877;2870:12;2832:52;2903:29;2922:9;2903:29;:::i;:::-;2893:39;2979:2;2964:18;;;;2951:32;;-1:-1:-1;;;2735:254:1:o;2994:180::-;3050:6;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3142:26;3158:9;3142:26;:::i;3179:245::-;3237:6;3290:2;3278:9;3269:7;3265:23;3261:32;3258:52;;;3306:1;3303;3296:12;3258:52;3345:9;3332:23;3364:30;3388:5;3364:30;:::i;3429:249::-;3498:6;3551:2;3539:9;3530:7;3526:23;3522:32;3519:52;;;3567:1;3564;3557:12;3519:52;3599:9;3593:16;3618:30;3642:5;3618:30;:::i;3683:450::-;3752:6;3805:2;3793:9;3784:7;3780:23;3776:32;3773:52;;;3821:1;3818;3811:12;3773:52;3861:9;3848:23;3894:18;3886:6;3883:30;3880:50;;;3926:1;3923;3916:12;3880:50;3949:22;;4002:4;3994:13;;3990:27;-1:-1:-1;3980:55:1;;4031:1;4028;4021:12;3980:55;4054:73;4119:7;4114:2;4101:16;4096:2;4092;4088:11;4054:73;:::i;4138:180::-;4197:6;4250:2;4238:9;4229:7;4225:23;4221:32;4218:52;;;4266:1;4263;4256:12;4218:52;-1:-1:-1;4289:23:1;;4138:180;-1:-1:-1;4138:180:1:o;4323:254::-;4391:6;4399;4452:2;4440:9;4431:7;4427:23;4423:32;4420:52;;;4468:1;4465;4458:12;4420:52;4504:9;4491:23;4481:33;;4533:38;4567:2;4556:9;4552:18;4533:38;:::i;4582:257::-;4623:3;4661:5;4655:12;4688:6;4683:3;4676:19;4704:63;4760:6;4753:4;4748:3;4744:14;4737:4;4730:5;4726:16;4704:63;:::i;:::-;4821:2;4800:15;-1:-1:-1;;4796:29:1;4787:39;;;;4828:4;4783:50;;4582:257;-1:-1:-1;;4582:257:1:o;4844:1584::-;5068:3;5106:6;5100:13;5132:4;5145:51;5189:6;5184:3;5179:2;5171:6;5167:15;5145:51;:::i;:::-;5259:13;;5218:16;;;;5281:55;5259:13;5218:16;5303:15;;;5281:55;:::i;:::-;5425:13;;5358:20;;;5398:1;;5485;5507:18;;;;5560;;;;5587:93;;5665:4;5655:8;5651:19;5639:31;;5587:93;5728:2;5718:8;5715:16;5695:18;5692:40;5689:224;;;-1:-1:-1;;;5762:3:1;5755:90;5868:4;5865:1;5858:15;5898:4;5893:3;5886:17;5689:224;5929:18;5956:110;;;;6080:1;6075:328;;;;5922:481;;5956:110;-1:-1:-1;;5991:24:1;;5977:39;;6036:20;;;;-1:-1:-1;5956:110:1;;6075:328;17179:1;17172:14;;;17216:4;17203:18;;6170:1;6184:169;6198:8;6195:1;6192:15;6184:169;;;6280:14;;6265:13;;;6258:37;6323:16;;;;6215:10;;6184:169;;;6188:3;;6384:8;6377:5;6373:20;6366:27;;5922:481;-1:-1:-1;6419:3:1;;4844:1584;-1:-1:-1;;;;;;;;;;;4844:1584:1:o;6874:511::-;7068:4;-1:-1:-1;;;;;7178:2:1;7170:6;7166:15;7155:9;7148:34;7230:2;7222:6;7218:15;7213:2;7202:9;7198:18;7191:43;;7270:6;7265:2;7254:9;7250:18;7243:34;7313:3;7308:2;7297:9;7293:18;7286:31;7334:45;7374:3;7363:9;7359:19;7351:6;7334:45;:::i;:::-;7326:53;6874:511;-1:-1:-1;;;;;;6874:511:1:o;7390:632::-;7561:2;7613:21;;;7683:13;;7586:18;;;7705:22;;;7532:4;;7561:2;7784:15;;;;7758:2;7743:18;;;7532:4;7827:169;7841:6;7838:1;7835:13;7827:169;;;7902:13;;7890:26;;7971:15;;;;7936:12;;;;7863:1;7856:9;7827:169;;;-1:-1:-1;8013:3:1;;7390:632;-1:-1:-1;;;;;;7390:632:1:o;8219:219::-;8368:2;8357:9;8350:21;8331:4;8388:44;8428:2;8417:9;8413:18;8405:6;8388:44;:::i;17232:128::-;17272:3;17303:1;17299:6;17296:1;17293:13;17290:39;;;17309:18;;:::i;:::-;-1:-1:-1;17345:9:1;;17232:128::o;17365:120::-;17405:1;17431;17421:35;;17436:18;;:::i;:::-;-1:-1:-1;17470:9:1;;17365:120::o;17490:168::-;17530:7;17596:1;17592;17588:6;17584:14;17581:1;17578:21;17573:1;17566:9;17559:17;17555:45;17552:71;;;17603:18;;:::i;:::-;-1:-1:-1;17643:9:1;;17490:168::o;17663:125::-;17703:4;17731:1;17728;17725:8;17722:34;;;17736:18;;:::i;:::-;-1:-1:-1;17773:9:1;;17663:125::o;17793:258::-;17865:1;17875:113;17889:6;17886:1;17883:13;17875:113;;;17965:11;;;17959:18;17946:11;;;17939:39;17911:2;17904:10;17875:113;;;18006:6;18003:1;18000:13;17997:48;;;-1:-1:-1;;18041:1:1;18023:16;;18016:27;17793:258::o;18056:437::-;18135:1;18131:12;;;;18178;;;18199:61;;18253:4;18245:6;18241:17;18231:27;;18199:61;18306:2;18298:6;18295:14;18275:18;18272:38;18269:218;;;-1:-1:-1;;;18340:1:1;18333:88;18444:4;18441:1;18434:15;18472:4;18469:1;18462:15;18269:218;;18056:437;;;:::o;18498:135::-;18537:3;-1:-1:-1;;18558:17:1;;18555:43;;;18578:18;;:::i;:::-;-1:-1:-1;18625:1:1;18614:13;;18498:135::o;18638:112::-;18670:1;18696;18686:35;;18701:18;;:::i;:::-;-1:-1:-1;18735:9:1;;18638:112::o;18755:184::-;-1:-1:-1;;;18804:1:1;18797:88;18904:4;18901:1;18894:15;18928:4;18925:1;18918:15;18944:184;-1:-1:-1;;;18993:1:1;18986:88;19093:4;19090:1;19083:15;19117:4;19114:1;19107:15;19133:184;-1:-1:-1;;;19182:1:1;19175:88;19282:4;19279:1;19272:15;19306:4;19303:1;19296:15;19322:184;-1:-1:-1;;;19371:1:1;19364:88;19471:4;19468:1;19461:15;19495:4;19492:1;19485:15;19511:177;-1:-1:-1;;;;;;19589:5:1;19585:78;19578:5;19575:89;19565:117;;19678:1;19675;19668:12

Swarm Source

ipfs://043e6d2fd3cd28ba5cdf59c175b3b3822de3df9ded40912956afd66f9f31a373
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.