ETH Price: $3,274.28 (+0.88%)
Gas: 1 Gwei

Token

Chibi (CHIBI)
 

Overview

Max Total Supply

0 CHIBI

Holders

129

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
smilenft.eth
Balance
1 CHIBI
0xDd69c8B49873D6b9Bf0E4fd90A5bfCb819Cc2456
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Home to futuristic 3D Metaverse NFT collectibles. Chibi Labs is the NFT studio behind the sold-out Chibi Genesis, Apes, and Galaxy 3D avatar collections.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Chibis

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-07
*/

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

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

// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.0;

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


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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


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


pragma solidity ^0.8.0;

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


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


pragma solidity ^0.8.0;

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

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

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


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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


pragma solidity ^0.8.0;

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

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


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


pragma solidity ^0.8.0;

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

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

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

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

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


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


pragma solidity ^0.8.0;

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


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


pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File contracts/Chibis.sol

pragma solidity ^0.8.7;


contract Chibis is ERC721, Ownable {

    uint public _maxItems = 200;
    uint public _totalSupply = 0;

    string public _baseTokenURI;

    event Mint(address indexed owner, uint indexed tokenId);

    constructor() ERC721("Chibi", "CHIBI") {}

    function mint(address to) public onlyOwner {
        require(_totalSupply + 1 <= _maxItems, "mint: Surpasses cap");
        _totalSupply += 1;
        _mint(to, _totalSupply);
        emit Mint(to, _totalSupply);
    }

    function setBaseURI(string memory __baseTokenURI) public onlyOwner {
        _baseTokenURI = __baseTokenURI;
    }

    function baseURI() public view returns (string memory) {
        return _baseTokenURI;
    }
    
    // The following functions are overrides required by Solidity.
    /**
      * @dev Returns a URI for a given token ID's metadata
      */
    function tokenURI(uint256 _tokenId) public view override(ERC721) returns (string memory) {
        return string(abi.encodePacked(baseURI(), Strings.toString(_tokenId)));
    }
}

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":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","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":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxItems","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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]

608060405260c860075560006008553480156200001b57600080fd5b506040518060400160405280600581526020017f43686962690000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f43484942490000000000000000000000000000000000000000000000000000008152508160009080519060200190620000a0929190620001b0565b508060019080519060200190620000b9929190620001b0565b505050620000dc620000d0620000e260201b60201c565b620000ea60201b60201c565b620002c5565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001be9062000260565b90600052602060002090601f016020900481019282620001e257600085556200022e565b82601f10620001fd57805160ff19168380011785556200022e565b828001600101855582156200022e579182015b828111156200022d57825182559160200191906001019062000210565b5b5090506200023d919062000241565b5090565b5b808211156200025c57600081600090555060010162000242565b5090565b600060028204905060018216806200027957607f821691505b6020821081141562000290576200028f62000296565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612f2a80620002d56000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80636c0360eb116100b8578063a22cb4651161007c578063a22cb46514610351578063b88d4fde1461036d578063c87b56dd14610389578063cfc86f7b146103b9578063e985e9c5146103d7578063f2fde38b1461040757610142565b80636c0360eb146102bd57806370a08231146102db578063715018a61461030b5780638da5cb5b1461031557806395d89b411461033357610142565b80633eaaf86b1161010a5780633eaaf86b146101fd57806342842e0e1461021b57806355f804b3146102375780636352211e14610253578063683a30ed146102835780636a627842146102a157610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806323b872dd146101e1575b600080fd5b610161600480360381019061015c9190611f8b565b610423565b60405161016e91906123e6565b60405180910390f35b61017f610505565b60405161018c9190612401565b60405180910390f35b6101af60048036038101906101aa919061202e565b610597565b6040516101bc919061237f565b60405180910390f35b6101df60048036038101906101da9190611f4b565b61061c565b005b6101fb60048036038101906101f69190611e35565b610734565b005b610205610794565b6040516102129190612623565b60405180910390f35b61023560048036038101906102309190611e35565b61079a565b005b610251600480360381019061024c9190611fe5565b6107ba565b005b61026d6004803603810190610268919061202e565b610850565b60405161027a919061237f565b60405180910390f35b61028b610902565b6040516102989190612623565b60405180910390f35b6102bb60048036038101906102b69190611dc8565b610908565b005b6102c5610a46565b6040516102d29190612401565b60405180910390f35b6102f560048036038101906102f09190611dc8565b610ad8565b6040516103029190612623565b60405180910390f35b610313610b90565b005b61031d610c18565b60405161032a919061237f565b60405180910390f35b61033b610c42565b6040516103489190612401565b60405180910390f35b61036b60048036038101906103669190611f0b565b610cd4565b005b61038760048036038101906103829190611e88565b610e55565b005b6103a3600480360381019061039e919061202e565b610eb7565b6040516103b09190612401565b60405180910390f35b6103c1610ef1565b6040516103ce9190612401565b60405180910390f35b6103f160048036038101906103ec9190611df5565b610f7f565b6040516103fe91906123e6565b60405180910390f35b610421600480360381019061041c9190611dc8565b611013565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ee57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104fe57506104fd8261110b565b5b9050919050565b60606000805461051490612879565b80601f016020809104026020016040519081016040528092919081815260200182805461054090612879565b801561058d5780601f106105625761010080835404028352916020019161058d565b820191906000526020600020905b81548152906001019060200180831161057057829003601f168201915b5050505050905090565b60006105a282611175565b6105e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d890612583565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061062782610850565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068f906125e3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106b76111e1565b73ffffffffffffffffffffffffffffffffffffffff1614806106e657506106e5816106e06111e1565b610f7f565b5b610725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071c90612503565b60405180910390fd5b61072f83836111e9565b505050565b61074561073f6111e1565b826112a2565b610784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077b90612603565b60405180910390fd5b61078f838383611380565b505050565b60085481565b6107b583838360405180602001604052806000815250610e55565b505050565b6107c26111e1565b73ffffffffffffffffffffffffffffffffffffffff166107e0610c18565b73ffffffffffffffffffffffffffffffffffffffff1614610836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d906125a3565b60405180910390fd5b806009908051906020019061084c929190611bdc565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f090612543565b60405180910390fd5b80915050919050565b60075481565b6109106111e1565b73ffffffffffffffffffffffffffffffffffffffff1661092e610c18565b73ffffffffffffffffffffffffffffffffffffffff1614610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b906125a3565b60405180910390fd5b60075460016008546109969190612708565b11156109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce90612423565b60405180910390fd5b6001600860008282546109ea9190612708565b925050819055506109fd816008546115dc565b6008548173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688560405160405180910390a350565b606060098054610a5590612879565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8190612879565b8015610ace5780601f10610aa357610100808354040283529160200191610ace565b820191906000526020600020905b815481529060010190602001808311610ab157829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090612523565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b986111e1565b73ffffffffffffffffffffffffffffffffffffffff16610bb6610c18565b73ffffffffffffffffffffffffffffffffffffffff1614610c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c03906125a3565b60405180910390fd5b610c1660006117aa565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610c5190612879565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7d90612879565b8015610cca5780601f10610c9f57610100808354040283529160200191610cca565b820191906000526020600020905b815481529060010190602001808311610cad57829003601f168201915b5050505050905090565b610cdc6111e1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d41906124c3565b60405180910390fd5b8060056000610d576111e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e046111e1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e4991906123e6565b60405180910390a35050565b610e66610e606111e1565b836112a2565b610ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9c90612603565b60405180910390fd5b610eb184848484611870565b50505050565b6060610ec1610a46565b610eca836118cc565b604051602001610edb92919061235b565b6040516020818303038152906040529050919050565b60098054610efe90612879565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2a90612879565b8015610f775780601f10610f4c57610100808354040283529160200191610f77565b820191906000526020600020905b815481529060010190602001808311610f5a57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61101b6111e1565b73ffffffffffffffffffffffffffffffffffffffff16611039610c18565b73ffffffffffffffffffffffffffffffffffffffff161461108f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611086906125a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f690612463565b60405180910390fd5b611108816117aa565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661125c83610850565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006112ad82611175565b6112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e3906124e3565b60405180910390fd5b60006112f783610850565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061136657508373ffffffffffffffffffffffffffffffffffffffff1661134e84610597565b73ffffffffffffffffffffffffffffffffffffffff16145b8061137757506113768185610f7f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166113a082610850565b73ffffffffffffffffffffffffffffffffffffffff16146113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed906125c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d906124a3565b60405180910390fd5b611471838383611a2d565b61147c6000826111e9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114cc919061278f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115239190612708565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561164c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164390612563565b60405180910390fd5b61165581611175565b15611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c90612483565b60405180910390fd5b6116a160008383611a2d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116f19190612708565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61187b848484611380565b61188784848484611a32565b6118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90612443565b60405180910390fd5b50505050565b60606000821415611914576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611a28565b600082905060005b6000821461194657808061192f906128dc565b915050600a8261193f919061275e565b915061191c565b60008167ffffffffffffffff81111561196257611961612a12565b5b6040519080825280601f01601f1916602001820160405280156119945781602001600182028036833780820191505090505b5090505b60008514611a21576001826119ad919061278f565b9150600a856119bc9190612925565b60306119c89190612708565b60f81b8183815181106119de576119dd6129e3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611a1a919061275e565b9450611998565b8093505050505b919050565b505050565b6000611a538473ffffffffffffffffffffffffffffffffffffffff16611bc9565b15611bbc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a7c6111e1565b8786866040518563ffffffff1660e01b8152600401611a9e949392919061239a565b602060405180830381600087803b158015611ab857600080fd5b505af1925050508015611ae957506040513d601f19601f82011682018060405250810190611ae69190611fb8565b60015b611b6c573d8060008114611b19576040519150601f19603f3d011682016040523d82523d6000602084013e611b1e565b606091505b50600081511415611b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5b90612443565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611bc1565b600190505b949350505050565b600080823b905060008111915050919050565b828054611be890612879565b90600052602060002090601f016020900481019282611c0a5760008555611c51565b82601f10611c2357805160ff1916838001178555611c51565b82800160010185558215611c51579182015b82811115611c50578251825591602001919060010190611c35565b5b509050611c5e9190611c62565b5090565b5b80821115611c7b576000816000905550600101611c63565b5090565b6000611c92611c8d84612663565b61263e565b905082815260208101848484011115611cae57611cad612a46565b5b611cb9848285612837565b509392505050565b6000611cd4611ccf84612694565b61263e565b905082815260208101848484011115611cf057611cef612a46565b5b611cfb848285612837565b509392505050565b600081359050611d1281612e98565b92915050565b600081359050611d2781612eaf565b92915050565b600081359050611d3c81612ec6565b92915050565b600081519050611d5181612ec6565b92915050565b600082601f830112611d6c57611d6b612a41565b5b8135611d7c848260208601611c7f565b91505092915050565b600082601f830112611d9a57611d99612a41565b5b8135611daa848260208601611cc1565b91505092915050565b600081359050611dc281612edd565b92915050565b600060208284031215611dde57611ddd612a50565b5b6000611dec84828501611d03565b91505092915050565b60008060408385031215611e0c57611e0b612a50565b5b6000611e1a85828601611d03565b9250506020611e2b85828601611d03565b9150509250929050565b600080600060608486031215611e4e57611e4d612a50565b5b6000611e5c86828701611d03565b9350506020611e6d86828701611d03565b9250506040611e7e86828701611db3565b9150509250925092565b60008060008060808587031215611ea257611ea1612a50565b5b6000611eb087828801611d03565b9450506020611ec187828801611d03565b9350506040611ed287828801611db3565b925050606085013567ffffffffffffffff811115611ef357611ef2612a4b565b5b611eff87828801611d57565b91505092959194509250565b60008060408385031215611f2257611f21612a50565b5b6000611f3085828601611d03565b9250506020611f4185828601611d18565b9150509250929050565b60008060408385031215611f6257611f61612a50565b5b6000611f7085828601611d03565b9250506020611f8185828601611db3565b9150509250929050565b600060208284031215611fa157611fa0612a50565b5b6000611faf84828501611d2d565b91505092915050565b600060208284031215611fce57611fcd612a50565b5b6000611fdc84828501611d42565b91505092915050565b600060208284031215611ffb57611ffa612a50565b5b600082013567ffffffffffffffff81111561201957612018612a4b565b5b61202584828501611d85565b91505092915050565b60006020828403121561204457612043612a50565b5b600061205284828501611db3565b91505092915050565b612064816127c3565b82525050565b612073816127d5565b82525050565b6000612084826126c5565b61208e81856126db565b935061209e818560208601612846565b6120a781612a55565b840191505092915050565b60006120bd826126d0565b6120c781856126ec565b93506120d7818560208601612846565b6120e081612a55565b840191505092915050565b60006120f6826126d0565b61210081856126fd565b9350612110818560208601612846565b80840191505092915050565b60006121296013836126ec565b915061213482612a66565b602082019050919050565b600061214c6032836126ec565b915061215782612a8f565b604082019050919050565b600061216f6026836126ec565b915061217a82612ade565b604082019050919050565b6000612192601c836126ec565b915061219d82612b2d565b602082019050919050565b60006121b56024836126ec565b91506121c082612b56565b604082019050919050565b60006121d86019836126ec565b91506121e382612ba5565b602082019050919050565b60006121fb602c836126ec565b915061220682612bce565b604082019050919050565b600061221e6038836126ec565b915061222982612c1d565b604082019050919050565b6000612241602a836126ec565b915061224c82612c6c565b604082019050919050565b60006122646029836126ec565b915061226f82612cbb565b604082019050919050565b60006122876020836126ec565b915061229282612d0a565b602082019050919050565b60006122aa602c836126ec565b91506122b582612d33565b604082019050919050565b60006122cd6020836126ec565b91506122d882612d82565b602082019050919050565b60006122f06029836126ec565b91506122fb82612dab565b604082019050919050565b60006123136021836126ec565b915061231e82612dfa565b604082019050919050565b60006123366031836126ec565b915061234182612e49565b604082019050919050565b6123558161282d565b82525050565b600061236782856120eb565b915061237382846120eb565b91508190509392505050565b6000602082019050612394600083018461205b565b92915050565b60006080820190506123af600083018761205b565b6123bc602083018661205b565b6123c9604083018561234c565b81810360608301526123db8184612079565b905095945050505050565b60006020820190506123fb600083018461206a565b92915050565b6000602082019050818103600083015261241b81846120b2565b905092915050565b6000602082019050818103600083015261243c8161211c565b9050919050565b6000602082019050818103600083015261245c8161213f565b9050919050565b6000602082019050818103600083015261247c81612162565b9050919050565b6000602082019050818103600083015261249c81612185565b9050919050565b600060208201905081810360008301526124bc816121a8565b9050919050565b600060208201905081810360008301526124dc816121cb565b9050919050565b600060208201905081810360008301526124fc816121ee565b9050919050565b6000602082019050818103600083015261251c81612211565b9050919050565b6000602082019050818103600083015261253c81612234565b9050919050565b6000602082019050818103600083015261255c81612257565b9050919050565b6000602082019050818103600083015261257c8161227a565b9050919050565b6000602082019050818103600083015261259c8161229d565b9050919050565b600060208201905081810360008301526125bc816122c0565b9050919050565b600060208201905081810360008301526125dc816122e3565b9050919050565b600060208201905081810360008301526125fc81612306565b9050919050565b6000602082019050818103600083015261261c81612329565b9050919050565b6000602082019050612638600083018461234c565b92915050565b6000612648612659565b905061265482826128ab565b919050565b6000604051905090565b600067ffffffffffffffff82111561267e5761267d612a12565b5b61268782612a55565b9050602081019050919050565b600067ffffffffffffffff8211156126af576126ae612a12565b5b6126b882612a55565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006127138261282d565b915061271e8361282d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561275357612752612956565b5b828201905092915050565b60006127698261282d565b91506127748361282d565b92508261278457612783612985565b5b828204905092915050565b600061279a8261282d565b91506127a58361282d565b9250828210156127b8576127b7612956565b5b828203905092915050565b60006127ce8261280d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612864578082015181840152602081019050612849565b83811115612873576000848401525b50505050565b6000600282049050600182168061289157607f821691505b602082108114156128a5576128a46129b4565b5b50919050565b6128b482612a55565b810181811067ffffffffffffffff821117156128d3576128d2612a12565b5b80604052505050565b60006128e78261282d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561291a57612919612956565b5b600182019050919050565b60006129308261282d565b915061293b8361282d565b92508261294b5761294a612985565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f6d696e743a205375727061737365732063617000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b612ea1816127c3565b8114612eac57600080fd5b50565b612eb8816127d5565b8114612ec357600080fd5b50565b612ecf816127e1565b8114612eda57600080fd5b50565b612ee68161282d565b8114612ef157600080fd5b5056fea2646970667358221220d09d5203071c405cb0f7f75f62da179926a395794da5ebf7ae38036c68c81d1064736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80636c0360eb116100b8578063a22cb4651161007c578063a22cb46514610351578063b88d4fde1461036d578063c87b56dd14610389578063cfc86f7b146103b9578063e985e9c5146103d7578063f2fde38b1461040757610142565b80636c0360eb146102bd57806370a08231146102db578063715018a61461030b5780638da5cb5b1461031557806395d89b411461033357610142565b80633eaaf86b1161010a5780633eaaf86b146101fd57806342842e0e1461021b57806355f804b3146102375780636352211e14610253578063683a30ed146102835780636a627842146102a157610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806323b872dd146101e1575b600080fd5b610161600480360381019061015c9190611f8b565b610423565b60405161016e91906123e6565b60405180910390f35b61017f610505565b60405161018c9190612401565b60405180910390f35b6101af60048036038101906101aa919061202e565b610597565b6040516101bc919061237f565b60405180910390f35b6101df60048036038101906101da9190611f4b565b61061c565b005b6101fb60048036038101906101f69190611e35565b610734565b005b610205610794565b6040516102129190612623565b60405180910390f35b61023560048036038101906102309190611e35565b61079a565b005b610251600480360381019061024c9190611fe5565b6107ba565b005b61026d6004803603810190610268919061202e565b610850565b60405161027a919061237f565b60405180910390f35b61028b610902565b6040516102989190612623565b60405180910390f35b6102bb60048036038101906102b69190611dc8565b610908565b005b6102c5610a46565b6040516102d29190612401565b60405180910390f35b6102f560048036038101906102f09190611dc8565b610ad8565b6040516103029190612623565b60405180910390f35b610313610b90565b005b61031d610c18565b60405161032a919061237f565b60405180910390f35b61033b610c42565b6040516103489190612401565b60405180910390f35b61036b60048036038101906103669190611f0b565b610cd4565b005b61038760048036038101906103829190611e88565b610e55565b005b6103a3600480360381019061039e919061202e565b610eb7565b6040516103b09190612401565b60405180910390f35b6103c1610ef1565b6040516103ce9190612401565b60405180910390f35b6103f160048036038101906103ec9190611df5565b610f7f565b6040516103fe91906123e6565b60405180910390f35b610421600480360381019061041c9190611dc8565b611013565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ee57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104fe57506104fd8261110b565b5b9050919050565b60606000805461051490612879565b80601f016020809104026020016040519081016040528092919081815260200182805461054090612879565b801561058d5780601f106105625761010080835404028352916020019161058d565b820191906000526020600020905b81548152906001019060200180831161057057829003601f168201915b5050505050905090565b60006105a282611175565b6105e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d890612583565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061062782610850565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068f906125e3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106b76111e1565b73ffffffffffffffffffffffffffffffffffffffff1614806106e657506106e5816106e06111e1565b610f7f565b5b610725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071c90612503565b60405180910390fd5b61072f83836111e9565b505050565b61074561073f6111e1565b826112a2565b610784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077b90612603565b60405180910390fd5b61078f838383611380565b505050565b60085481565b6107b583838360405180602001604052806000815250610e55565b505050565b6107c26111e1565b73ffffffffffffffffffffffffffffffffffffffff166107e0610c18565b73ffffffffffffffffffffffffffffffffffffffff1614610836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d906125a3565b60405180910390fd5b806009908051906020019061084c929190611bdc565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f090612543565b60405180910390fd5b80915050919050565b60075481565b6109106111e1565b73ffffffffffffffffffffffffffffffffffffffff1661092e610c18565b73ffffffffffffffffffffffffffffffffffffffff1614610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b906125a3565b60405180910390fd5b60075460016008546109969190612708565b11156109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce90612423565b60405180910390fd5b6001600860008282546109ea9190612708565b925050819055506109fd816008546115dc565b6008548173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688560405160405180910390a350565b606060098054610a5590612879565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8190612879565b8015610ace5780601f10610aa357610100808354040283529160200191610ace565b820191906000526020600020905b815481529060010190602001808311610ab157829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090612523565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b986111e1565b73ffffffffffffffffffffffffffffffffffffffff16610bb6610c18565b73ffffffffffffffffffffffffffffffffffffffff1614610c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c03906125a3565b60405180910390fd5b610c1660006117aa565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610c5190612879565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7d90612879565b8015610cca5780601f10610c9f57610100808354040283529160200191610cca565b820191906000526020600020905b815481529060010190602001808311610cad57829003601f168201915b5050505050905090565b610cdc6111e1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d41906124c3565b60405180910390fd5b8060056000610d576111e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e046111e1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e4991906123e6565b60405180910390a35050565b610e66610e606111e1565b836112a2565b610ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9c90612603565b60405180910390fd5b610eb184848484611870565b50505050565b6060610ec1610a46565b610eca836118cc565b604051602001610edb92919061235b565b6040516020818303038152906040529050919050565b60098054610efe90612879565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2a90612879565b8015610f775780601f10610f4c57610100808354040283529160200191610f77565b820191906000526020600020905b815481529060010190602001808311610f5a57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61101b6111e1565b73ffffffffffffffffffffffffffffffffffffffff16611039610c18565b73ffffffffffffffffffffffffffffffffffffffff161461108f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611086906125a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f690612463565b60405180910390fd5b611108816117aa565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661125c83610850565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006112ad82611175565b6112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e3906124e3565b60405180910390fd5b60006112f783610850565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061136657508373ffffffffffffffffffffffffffffffffffffffff1661134e84610597565b73ffffffffffffffffffffffffffffffffffffffff16145b8061137757506113768185610f7f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166113a082610850565b73ffffffffffffffffffffffffffffffffffffffff16146113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed906125c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d906124a3565b60405180910390fd5b611471838383611a2d565b61147c6000826111e9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114cc919061278f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115239190612708565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561164c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164390612563565b60405180910390fd5b61165581611175565b15611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c90612483565b60405180910390fd5b6116a160008383611a2d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116f19190612708565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61187b848484611380565b61188784848484611a32565b6118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90612443565b60405180910390fd5b50505050565b60606000821415611914576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611a28565b600082905060005b6000821461194657808061192f906128dc565b915050600a8261193f919061275e565b915061191c565b60008167ffffffffffffffff81111561196257611961612a12565b5b6040519080825280601f01601f1916602001820160405280156119945781602001600182028036833780820191505090505b5090505b60008514611a21576001826119ad919061278f565b9150600a856119bc9190612925565b60306119c89190612708565b60f81b8183815181106119de576119dd6129e3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611a1a919061275e565b9450611998565b8093505050505b919050565b505050565b6000611a538473ffffffffffffffffffffffffffffffffffffffff16611bc9565b15611bbc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a7c6111e1565b8786866040518563ffffffff1660e01b8152600401611a9e949392919061239a565b602060405180830381600087803b158015611ab857600080fd5b505af1925050508015611ae957506040513d601f19601f82011682018060405250810190611ae69190611fb8565b60015b611b6c573d8060008114611b19576040519150601f19603f3d011682016040523d82523d6000602084013e611b1e565b606091505b50600081511415611b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5b90612443565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611bc1565b600190505b949350505050565b600080823b905060008111915050919050565b828054611be890612879565b90600052602060002090601f016020900481019282611c0a5760008555611c51565b82601f10611c2357805160ff1916838001178555611c51565b82800160010185558215611c51579182015b82811115611c50578251825591602001919060010190611c35565b5b509050611c5e9190611c62565b5090565b5b80821115611c7b576000816000905550600101611c63565b5090565b6000611c92611c8d84612663565b61263e565b905082815260208101848484011115611cae57611cad612a46565b5b611cb9848285612837565b509392505050565b6000611cd4611ccf84612694565b61263e565b905082815260208101848484011115611cf057611cef612a46565b5b611cfb848285612837565b509392505050565b600081359050611d1281612e98565b92915050565b600081359050611d2781612eaf565b92915050565b600081359050611d3c81612ec6565b92915050565b600081519050611d5181612ec6565b92915050565b600082601f830112611d6c57611d6b612a41565b5b8135611d7c848260208601611c7f565b91505092915050565b600082601f830112611d9a57611d99612a41565b5b8135611daa848260208601611cc1565b91505092915050565b600081359050611dc281612edd565b92915050565b600060208284031215611dde57611ddd612a50565b5b6000611dec84828501611d03565b91505092915050565b60008060408385031215611e0c57611e0b612a50565b5b6000611e1a85828601611d03565b9250506020611e2b85828601611d03565b9150509250929050565b600080600060608486031215611e4e57611e4d612a50565b5b6000611e5c86828701611d03565b9350506020611e6d86828701611d03565b9250506040611e7e86828701611db3565b9150509250925092565b60008060008060808587031215611ea257611ea1612a50565b5b6000611eb087828801611d03565b9450506020611ec187828801611d03565b9350506040611ed287828801611db3565b925050606085013567ffffffffffffffff811115611ef357611ef2612a4b565b5b611eff87828801611d57565b91505092959194509250565b60008060408385031215611f2257611f21612a50565b5b6000611f3085828601611d03565b9250506020611f4185828601611d18565b9150509250929050565b60008060408385031215611f6257611f61612a50565b5b6000611f7085828601611d03565b9250506020611f8185828601611db3565b9150509250929050565b600060208284031215611fa157611fa0612a50565b5b6000611faf84828501611d2d565b91505092915050565b600060208284031215611fce57611fcd612a50565b5b6000611fdc84828501611d42565b91505092915050565b600060208284031215611ffb57611ffa612a50565b5b600082013567ffffffffffffffff81111561201957612018612a4b565b5b61202584828501611d85565b91505092915050565b60006020828403121561204457612043612a50565b5b600061205284828501611db3565b91505092915050565b612064816127c3565b82525050565b612073816127d5565b82525050565b6000612084826126c5565b61208e81856126db565b935061209e818560208601612846565b6120a781612a55565b840191505092915050565b60006120bd826126d0565b6120c781856126ec565b93506120d7818560208601612846565b6120e081612a55565b840191505092915050565b60006120f6826126d0565b61210081856126fd565b9350612110818560208601612846565b80840191505092915050565b60006121296013836126ec565b915061213482612a66565b602082019050919050565b600061214c6032836126ec565b915061215782612a8f565b604082019050919050565b600061216f6026836126ec565b915061217a82612ade565b604082019050919050565b6000612192601c836126ec565b915061219d82612b2d565b602082019050919050565b60006121b56024836126ec565b91506121c082612b56565b604082019050919050565b60006121d86019836126ec565b91506121e382612ba5565b602082019050919050565b60006121fb602c836126ec565b915061220682612bce565b604082019050919050565b600061221e6038836126ec565b915061222982612c1d565b604082019050919050565b6000612241602a836126ec565b915061224c82612c6c565b604082019050919050565b60006122646029836126ec565b915061226f82612cbb565b604082019050919050565b60006122876020836126ec565b915061229282612d0a565b602082019050919050565b60006122aa602c836126ec565b91506122b582612d33565b604082019050919050565b60006122cd6020836126ec565b91506122d882612d82565b602082019050919050565b60006122f06029836126ec565b91506122fb82612dab565b604082019050919050565b60006123136021836126ec565b915061231e82612dfa565b604082019050919050565b60006123366031836126ec565b915061234182612e49565b604082019050919050565b6123558161282d565b82525050565b600061236782856120eb565b915061237382846120eb565b91508190509392505050565b6000602082019050612394600083018461205b565b92915050565b60006080820190506123af600083018761205b565b6123bc602083018661205b565b6123c9604083018561234c565b81810360608301526123db8184612079565b905095945050505050565b60006020820190506123fb600083018461206a565b92915050565b6000602082019050818103600083015261241b81846120b2565b905092915050565b6000602082019050818103600083015261243c8161211c565b9050919050565b6000602082019050818103600083015261245c8161213f565b9050919050565b6000602082019050818103600083015261247c81612162565b9050919050565b6000602082019050818103600083015261249c81612185565b9050919050565b600060208201905081810360008301526124bc816121a8565b9050919050565b600060208201905081810360008301526124dc816121cb565b9050919050565b600060208201905081810360008301526124fc816121ee565b9050919050565b6000602082019050818103600083015261251c81612211565b9050919050565b6000602082019050818103600083015261253c81612234565b9050919050565b6000602082019050818103600083015261255c81612257565b9050919050565b6000602082019050818103600083015261257c8161227a565b9050919050565b6000602082019050818103600083015261259c8161229d565b9050919050565b600060208201905081810360008301526125bc816122c0565b9050919050565b600060208201905081810360008301526125dc816122e3565b9050919050565b600060208201905081810360008301526125fc81612306565b9050919050565b6000602082019050818103600083015261261c81612329565b9050919050565b6000602082019050612638600083018461234c565b92915050565b6000612648612659565b905061265482826128ab565b919050565b6000604051905090565b600067ffffffffffffffff82111561267e5761267d612a12565b5b61268782612a55565b9050602081019050919050565b600067ffffffffffffffff8211156126af576126ae612a12565b5b6126b882612a55565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006127138261282d565b915061271e8361282d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561275357612752612956565b5b828201905092915050565b60006127698261282d565b91506127748361282d565b92508261278457612783612985565b5b828204905092915050565b600061279a8261282d565b91506127a58361282d565b9250828210156127b8576127b7612956565b5b828203905092915050565b60006127ce8261280d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612864578082015181840152602081019050612849565b83811115612873576000848401525b50505050565b6000600282049050600182168061289157607f821691505b602082108114156128a5576128a46129b4565b5b50919050565b6128b482612a55565b810181811067ffffffffffffffff821117156128d3576128d2612a12565b5b80604052505050565b60006128e78261282d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561291a57612919612956565b5b600182019050919050565b60006129308261282d565b915061293b8361282d565b92508261294b5761294a612985565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f6d696e743a205375727061737365732063617000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b612ea1816127c3565b8114612eac57600080fd5b50565b612eb8816127d5565b8114612ec357600080fd5b50565b612ecf816127e1565b8114612eda57600080fd5b50565b612ee68161282d565b8114612ef157600080fd5b5056fea2646970667358221220d09d5203071c405cb0f7f75f62da179926a395794da5ebf7ae38036c68c81d1064736f6c63430008070033

Deployed Bytecode Sourcemap

35261:1053:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20793:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21738:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23297:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22820:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24187:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35339:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24597:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35756:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21432:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35305:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35525:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35880:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21162:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34569:94;;;:::i;:::-;;33918:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21907:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23590:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24853:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36133:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35376:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23956:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34818:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20793:305;20895:4;20947:25;20932:40;;;:11;:40;;;;:105;;;;21004:33;20989:48;;;:11;:48;;;;20932:105;:158;;;;21054:36;21078:11;21054:23;:36::i;:::-;20932:158;20912:178;;20793:305;;;:::o;21738:100::-;21792:13;21825:5;21818:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21738:100;:::o;23297:221::-;23373:7;23401:16;23409:7;23401;:16::i;:::-;23393:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23486:15;:24;23502:7;23486:24;;;;;;;;;;;;;;;;;;;;;23479:31;;23297:221;;;:::o;22820:411::-;22901:13;22917:23;22932:7;22917:14;:23::i;:::-;22901:39;;22965:5;22959:11;;:2;:11;;;;22951:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23059:5;23043:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23068:37;23085:5;23092:12;:10;:12::i;:::-;23068:16;:37::i;:::-;23043:62;23021:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23202:21;23211:2;23215:7;23202:8;:21::i;:::-;22890:341;22820:411;;:::o;24187:339::-;24382:41;24401:12;:10;:12::i;:::-;24415:7;24382:18;:41::i;:::-;24374:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24490:28;24500:4;24506:2;24510:7;24490:9;:28::i;:::-;24187:339;;;:::o;35339:28::-;;;;:::o;24597:185::-;24735:39;24752:4;24758:2;24762:7;24735:39;;;;;;;;;;;;:16;:39::i;:::-;24597:185;;;:::o;35756:116::-;34149:12;:10;:12::i;:::-;34138:23;;:7;:5;:7::i;:::-;:23;;;34130:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35850:14:::1;35834:13;:30;;;;;;;;;;;;:::i;:::-;;35756:116:::0;:::o;21432:239::-;21504:7;21524:13;21540:7;:16;21548:7;21540:16;;;;;;;;;;;;;;;;;;;;;21524:32;;21592:1;21575:19;;:5;:19;;;;21567:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21658:5;21651:12;;;21432:239;;;:::o;35305:27::-;;;;:::o;35525:223::-;34149:12;:10;:12::i;:::-;34138:23;;:7;:5;:7::i;:::-;:23;;;34130:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35607:9:::1;;35602:1;35587:12;;:16;;;;:::i;:::-;:29;;35579:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35667:1;35651:12;;:17;;;;;;;:::i;:::-;;;;;;;;35679:23;35685:2;35689:12;;35679:5;:23::i;:::-;35727:12;;35723:2;35718:22;;;;;;;;;;;;35525:223:::0;:::o;35880:94::-;35920:13;35953;35946:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35880:94;:::o;21162:208::-;21234:7;21279:1;21262:19;;:5;:19;;;;21254:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21346:9;:16;21356:5;21346:16;;;;;;;;;;;;;;;;21339:23;;21162:208;;;:::o;34569:94::-;34149:12;:10;:12::i;:::-;34138:23;;:7;:5;:7::i;:::-;:23;;;34130:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34634:21:::1;34652:1;34634:9;:21::i;:::-;34569:94::o:0;33918:87::-;33964:7;33991:6;;;;;;;;;;;33984:13;;33918:87;:::o;21907:104::-;21963:13;21996:7;21989:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21907:104;:::o;23590:295::-;23705:12;:10;:12::i;:::-;23693:24;;:8;:24;;;;23685:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23805:8;23760:18;:32;23779:12;:10;:12::i;:::-;23760:32;;;;;;;;;;;;;;;:42;23793:8;23760:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23858:8;23829:48;;23844:12;:10;:12::i;:::-;23829:48;;;23868:8;23829:48;;;;;;:::i;:::-;;;;;;;;23590:295;;:::o;24853:328::-;25028:41;25047:12;:10;:12::i;:::-;25061:7;25028:18;:41::i;:::-;25020:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25134:39;25148:4;25154:2;25158:7;25167:5;25134:13;:39::i;:::-;24853:328;;;;:::o;36133:178::-;36207:13;36264:9;:7;:9::i;:::-;36275:26;36292:8;36275:16;:26::i;:::-;36247:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36233:70;;36133:178;;;:::o;35376:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23956:164::-;24053:4;24077:18;:25;24096:5;24077:25;;;;;;;;;;;;;;;:35;24103:8;24077:35;;;;;;;;;;;;;;;;;;;;;;;;;24070:42;;23956:164;;;;:::o;34818:192::-;34149:12;:10;:12::i;:::-;34138:23;;:7;:5;:7::i;:::-;:23;;;34130:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34927:1:::1;34907:22;;:8;:22;;;;34899:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34983:19;34993:8;34983:9;:19::i;:::-;34818:192:::0;:::o;19293:157::-;19378:4;19417:25;19402:40;;;:11;:40;;;;19395:47;;19293:157;;;:::o;26691:127::-;26756:4;26808:1;26780:30;;:7;:16;26788:7;26780:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26773:37;;26691:127;;;:::o;16201:98::-;16254:7;16281:10;16274:17;;16201:98;:::o;30673:174::-;30775:2;30748:15;:24;30764:7;30748:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30831:7;30827:2;30793:46;;30802:23;30817:7;30802:14;:23::i;:::-;30793:46;;;;;;;;;;;;30673:174;;:::o;26985:348::-;27078:4;27103:16;27111:7;27103;:16::i;:::-;27095:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27179:13;27195:23;27210:7;27195:14;:23::i;:::-;27179:39;;27248:5;27237:16;;:7;:16;;;:51;;;;27281:7;27257:31;;:20;27269:7;27257:11;:20::i;:::-;:31;;;27237:51;:87;;;;27292:32;27309:5;27316:7;27292:16;:32::i;:::-;27237:87;27229:96;;;26985:348;;;;:::o;29977:578::-;30136:4;30109:31;;:23;30124:7;30109:14;:23::i;:::-;:31;;;30101:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30219:1;30205:16;;:2;:16;;;;30197:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30275:39;30296:4;30302:2;30306:7;30275:20;:39::i;:::-;30379:29;30396:1;30400:7;30379:8;:29::i;:::-;30440:1;30421:9;:15;30431:4;30421:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30469:1;30452:9;:13;30462:2;30452:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30500:2;30481:7;:16;30489:7;30481:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30539:7;30535:2;30520:27;;30529:4;30520:27;;;;;;;;;;;;29977:578;;;:::o;28669:382::-;28763:1;28749:16;;:2;:16;;;;28741:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28822:16;28830:7;28822;:16::i;:::-;28821:17;28813:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28884:45;28913:1;28917:2;28921:7;28884:20;:45::i;:::-;28959:1;28942:9;:13;28952:2;28942:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28990:2;28971:7;:16;28979:7;28971:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29035:7;29031:2;29010:33;;29027:1;29010:33;;;;;;;;;;;;28669:382;;:::o;35018:173::-;35074:16;35093:6;;;;;;;;;;;35074:25;;35119:8;35110:6;;:17;;;;;;;;;;;;;;;;;;35174:8;35143:40;;35164:8;35143:40;;;;;;;;;;;;35063:128;35018:173;:::o;26063:315::-;26220:28;26230:4;26236:2;26240:7;26220:9;:28::i;:::-;26267:48;26290:4;26296:2;26300:7;26309:5;26267:22;:48::i;:::-;26259:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26063:315;;;;:::o;16732:723::-;16788:13;17018:1;17009:5;:10;17005:53;;;17036:10;;;;;;;;;;;;;;;;;;;;;17005:53;17068:12;17083:5;17068:20;;17099:14;17124:78;17139:1;17131:4;:9;17124:78;;17157:8;;;;;:::i;:::-;;;;17188:2;17180:10;;;;;:::i;:::-;;;17124:78;;;17212:19;17244:6;17234:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17212:39;;17262:154;17278:1;17269:5;:10;17262:154;;17306:1;17296:11;;;;;:::i;:::-;;;17373:2;17365:5;:10;;;;:::i;:::-;17352:2;:24;;;;:::i;:::-;17339:39;;17322:6;17329;17322:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;17402:2;17393:11;;;;;:::i;:::-;;;17262:154;;;17440:6;17426:21;;;;;16732:723;;;;:::o;32783:126::-;;;;:::o;31412:799::-;31567:4;31588:15;:2;:13;;;:15::i;:::-;31584:620;;;31640:2;31624:36;;;31661:12;:10;:12::i;:::-;31675:4;31681:7;31690:5;31624:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31620:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31883:1;31866:6;:13;:18;31862:272;;;31909:60;;;;;;;;;;:::i;:::-;;;;;;;;31862:272;32084:6;32078:13;32069:6;32065:2;32061:15;32054:38;31620:529;31757:41;;;31747:51;;;:6;:51;;;;31740:58;;;;;31584:620;32188:4;32181:11;;31412:799;;;;;;;:::o;8239:387::-;8299:4;8507:12;8574:7;8562:20;8554:28;;8617:1;8610:4;:8;8603:15;;;8239:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11120:366;;;:::o;11492:::-;11634:3;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11731:93;11820:3;11731:93;:::i;:::-;11849:2;11844:3;11840:12;11833:19;;11492:366;;;:::o;11864:::-;12006:3;12027:67;12091:2;12086:3;12027:67;:::i;:::-;12020:74;;12103:93;12192:3;12103:93;:::i;:::-;12221:2;12216:3;12212:12;12205:19;;11864:366;;;:::o;12236:::-;12378:3;12399:67;12463:2;12458:3;12399:67;:::i;:::-;12392:74;;12475:93;12564:3;12475:93;:::i;:::-;12593:2;12588:3;12584:12;12577:19;;12236:366;;;:::o;12608:::-;12750:3;12771:67;12835:2;12830:3;12771:67;:::i;:::-;12764:74;;12847:93;12936:3;12847:93;:::i;:::-;12965:2;12960:3;12956:12;12949:19;;12608:366;;;:::o;12980:::-;13122:3;13143:67;13207:2;13202:3;13143:67;:::i;:::-;13136:74;;13219:93;13308:3;13219:93;:::i;:::-;13337:2;13332:3;13328:12;13321:19;;12980:366;;;:::o;13352:::-;13494:3;13515:67;13579:2;13574:3;13515:67;:::i;:::-;13508:74;;13591:93;13680:3;13591:93;:::i;:::-;13709:2;13704:3;13700:12;13693:19;;13352:366;;;:::o;13724:::-;13866:3;13887:67;13951:2;13946:3;13887:67;:::i;:::-;13880:74;;13963:93;14052:3;13963:93;:::i;:::-;14081:2;14076:3;14072:12;14065:19;;13724:366;;;:::o;14096:::-;14238:3;14259:67;14323:2;14318:3;14259:67;:::i;:::-;14252:74;;14335:93;14424:3;14335:93;:::i;:::-;14453:2;14448:3;14444:12;14437:19;;14096:366;;;:::o;14468:118::-;14555:24;14573:5;14555:24;:::i;:::-;14550:3;14543:37;14468:118;;:::o;14592:435::-;14772:3;14794:95;14885:3;14876:6;14794:95;:::i;:::-;14787:102;;14906:95;14997:3;14988:6;14906:95;:::i;:::-;14899:102;;15018:3;15011:10;;14592:435;;;;;:::o;15033:222::-;15126:4;15164:2;15153:9;15149:18;15141:26;;15177:71;15245:1;15234:9;15230:17;15221:6;15177:71;:::i;:::-;15033:222;;;;:::o;15261:640::-;15456:4;15494:3;15483:9;15479:19;15471:27;;15508:71;15576:1;15565:9;15561:17;15552:6;15508:71;:::i;:::-;15589:72;15657:2;15646:9;15642:18;15633:6;15589:72;:::i;:::-;15671;15739:2;15728:9;15724:18;15715:6;15671:72;:::i;:::-;15790:9;15784:4;15780:20;15775:2;15764:9;15760:18;15753:48;15818:76;15889:4;15880:6;15818:76;:::i;:::-;15810:84;;15261:640;;;;;;;:::o;15907:210::-;15994:4;16032:2;16021:9;16017:18;16009:26;;16045:65;16107:1;16096:9;16092:17;16083:6;16045:65;:::i;:::-;15907:210;;;;:::o;16123:313::-;16236:4;16274:2;16263:9;16259:18;16251:26;;16323:9;16317:4;16313:20;16309:1;16298:9;16294:17;16287:47;16351:78;16424:4;16415:6;16351:78;:::i;:::-;16343:86;;16123:313;;;;:::o;16442:419::-;16608:4;16646:2;16635:9;16631:18;16623:26;;16695:9;16689:4;16685:20;16681:1;16670:9;16666:17;16659:47;16723:131;16849:4;16723:131;:::i;:::-;16715:139;;16442:419;;;:::o;16867:::-;17033:4;17071:2;17060:9;17056:18;17048:26;;17120:9;17114:4;17110:20;17106:1;17095:9;17091:17;17084:47;17148:131;17274:4;17148:131;:::i;:::-;17140:139;;16867:419;;;:::o;17292:::-;17458:4;17496:2;17485:9;17481:18;17473:26;;17545:9;17539:4;17535:20;17531:1;17520:9;17516:17;17509:47;17573:131;17699:4;17573:131;:::i;:::-;17565:139;;17292:419;;;:::o;17717:::-;17883:4;17921:2;17910:9;17906:18;17898:26;;17970:9;17964:4;17960:20;17956:1;17945:9;17941:17;17934:47;17998:131;18124:4;17998:131;:::i;:::-;17990:139;;17717:419;;;:::o;18142:::-;18308:4;18346:2;18335:9;18331:18;18323:26;;18395:9;18389:4;18385:20;18381:1;18370:9;18366:17;18359:47;18423:131;18549:4;18423:131;:::i;:::-;18415:139;;18142:419;;;:::o;18567:::-;18733:4;18771:2;18760:9;18756:18;18748:26;;18820:9;18814:4;18810:20;18806:1;18795:9;18791:17;18784:47;18848:131;18974:4;18848:131;:::i;:::-;18840:139;;18567:419;;;:::o;18992:::-;19158:4;19196:2;19185:9;19181:18;19173:26;;19245:9;19239:4;19235:20;19231:1;19220:9;19216:17;19209:47;19273:131;19399:4;19273:131;:::i;:::-;19265:139;;18992:419;;;:::o;19417:::-;19583:4;19621:2;19610:9;19606:18;19598:26;;19670:9;19664:4;19660:20;19656:1;19645:9;19641:17;19634:47;19698:131;19824:4;19698:131;:::i;:::-;19690:139;;19417:419;;;:::o;19842:::-;20008:4;20046:2;20035:9;20031:18;20023:26;;20095:9;20089:4;20085:20;20081:1;20070:9;20066:17;20059:47;20123:131;20249:4;20123:131;:::i;:::-;20115:139;;19842:419;;;:::o;20267:::-;20433:4;20471:2;20460:9;20456:18;20448:26;;20520:9;20514:4;20510:20;20506:1;20495:9;20491:17;20484:47;20548:131;20674:4;20548:131;:::i;:::-;20540:139;;20267:419;;;:::o;20692:::-;20858:4;20896:2;20885:9;20881:18;20873:26;;20945:9;20939:4;20935:20;20931:1;20920:9;20916:17;20909:47;20973:131;21099:4;20973:131;:::i;:::-;20965:139;;20692:419;;;:::o;21117:::-;21283:4;21321:2;21310:9;21306:18;21298:26;;21370:9;21364:4;21360:20;21356:1;21345:9;21341:17;21334:47;21398:131;21524:4;21398:131;:::i;:::-;21390:139;;21117:419;;;:::o;21542:::-;21708:4;21746:2;21735:9;21731:18;21723:26;;21795:9;21789:4;21785:20;21781:1;21770:9;21766:17;21759:47;21823:131;21949:4;21823:131;:::i;:::-;21815:139;;21542:419;;;:::o;21967:::-;22133:4;22171:2;22160:9;22156:18;22148:26;;22220:9;22214:4;22210:20;22206:1;22195:9;22191:17;22184:47;22248:131;22374:4;22248:131;:::i;:::-;22240:139;;21967:419;;;:::o;22392:::-;22558:4;22596:2;22585:9;22581:18;22573:26;;22645:9;22639:4;22635:20;22631:1;22620:9;22616:17;22609:47;22673:131;22799:4;22673:131;:::i;:::-;22665:139;;22392:419;;;:::o;22817:::-;22983:4;23021:2;23010:9;23006:18;22998:26;;23070:9;23064:4;23060:20;23056:1;23045:9;23041:17;23034:47;23098:131;23224:4;23098:131;:::i;:::-;23090:139;;22817:419;;;:::o;23242:222::-;23335:4;23373:2;23362:9;23358:18;23350:26;;23386:71;23454:1;23443:9;23439:17;23430:6;23386:71;:::i;:::-;23242:222;;;;:::o;23470:129::-;23504:6;23531:20;;:::i;:::-;23521:30;;23560:33;23588:4;23580:6;23560:33;:::i;:::-;23470:129;;;:::o;23605:75::-;23638:6;23671:2;23665:9;23655:19;;23605:75;:::o;23686:307::-;23747:4;23837:18;23829:6;23826:30;23823:56;;;23859:18;;:::i;:::-;23823:56;23897:29;23919:6;23897:29;:::i;:::-;23889:37;;23981:4;23975;23971:15;23963:23;;23686:307;;;:::o;23999:308::-;24061:4;24151:18;24143:6;24140:30;24137:56;;;24173:18;;:::i;:::-;24137:56;24211:29;24233:6;24211:29;:::i;:::-;24203:37;;24295:4;24289;24285:15;24277:23;;23999:308;;;:::o;24313:98::-;24364:6;24398:5;24392:12;24382:22;;24313:98;;;:::o;24417:99::-;24469:6;24503:5;24497:12;24487:22;;24417:99;;;:::o;24522:168::-;24605:11;24639:6;24634:3;24627:19;24679:4;24674:3;24670:14;24655:29;;24522:168;;;;:::o;24696:169::-;24780:11;24814:6;24809:3;24802:19;24854:4;24849:3;24845:14;24830:29;;24696:169;;;;:::o;24871:148::-;24973:11;25010:3;24995:18;;24871:148;;;;:::o;25025:305::-;25065:3;25084:20;25102:1;25084:20;:::i;:::-;25079:25;;25118:20;25136:1;25118:20;:::i;:::-;25113:25;;25272:1;25204:66;25200:74;25197:1;25194:81;25191:107;;;25278:18;;:::i;:::-;25191:107;25322:1;25319;25315:9;25308:16;;25025:305;;;;:::o;25336:185::-;25376:1;25393:20;25411:1;25393:20;:::i;:::-;25388:25;;25427:20;25445:1;25427:20;:::i;:::-;25422:25;;25466:1;25456:35;;25471:18;;:::i;:::-;25456:35;25513:1;25510;25506:9;25501:14;;25336:185;;;;:::o;25527:191::-;25567:4;25587:20;25605:1;25587:20;:::i;:::-;25582:25;;25621:20;25639:1;25621:20;:::i;:::-;25616:25;;25660:1;25657;25654:8;25651:34;;;25665:18;;:::i;:::-;25651:34;25710:1;25707;25703:9;25695:17;;25527:191;;;;:::o;25724:96::-;25761:7;25790:24;25808:5;25790:24;:::i;:::-;25779:35;;25724:96;;;:::o;25826:90::-;25860:7;25903:5;25896:13;25889:21;25878:32;;25826:90;;;:::o;25922:149::-;25958:7;25998:66;25991:5;25987:78;25976:89;;25922:149;;;:::o;26077:126::-;26114:7;26154:42;26147:5;26143:54;26132:65;;26077:126;;;:::o;26209:77::-;26246:7;26275:5;26264:16;;26209:77;;;:::o;26292:154::-;26376:6;26371:3;26366;26353:30;26438:1;26429:6;26424:3;26420:16;26413:27;26292:154;;;:::o;26452:307::-;26520:1;26530:113;26544:6;26541:1;26538:13;26530:113;;;26629:1;26624:3;26620:11;26614:18;26610:1;26605:3;26601:11;26594:39;26566:2;26563:1;26559:10;26554:15;;26530:113;;;26661:6;26658:1;26655:13;26652:101;;;26741:1;26732:6;26727:3;26723:16;26716:27;26652:101;26501:258;26452:307;;;:::o;26765:320::-;26809:6;26846:1;26840:4;26836:12;26826:22;;26893:1;26887:4;26883:12;26914:18;26904:81;;26970:4;26962:6;26958:17;26948:27;;26904:81;27032:2;27024:6;27021:14;27001:18;26998:38;26995:84;;;27051:18;;:::i;:::-;26995:84;26816:269;26765:320;;;:::o;27091:281::-;27174:27;27196:4;27174:27;:::i;:::-;27166:6;27162:40;27304:6;27292:10;27289:22;27268:18;27256:10;27253:34;27250:62;27247:88;;;27315:18;;:::i;:::-;27247:88;27355:10;27351:2;27344:22;27134:238;27091:281;;:::o;27378:233::-;27417:3;27440:24;27458:5;27440:24;:::i;:::-;27431:33;;27486:66;27479:5;27476:77;27473:103;;;27556:18;;:::i;:::-;27473:103;27603:1;27596:5;27592:13;27585:20;;27378:233;;;:::o;27617:176::-;27649:1;27666:20;27684:1;27666:20;:::i;:::-;27661:25;;27700:20;27718:1;27700:20;:::i;:::-;27695:25;;27739:1;27729:35;;27744:18;;:::i;:::-;27729:35;27785:1;27782;27778:9;27773:14;;27617:176;;;;:::o;27799:180::-;27847:77;27844:1;27837:88;27944:4;27941:1;27934:15;27968:4;27965:1;27958:15;27985:180;28033:77;28030:1;28023:88;28130:4;28127:1;28120:15;28154:4;28151:1;28144:15;28171:180;28219:77;28216:1;28209:88;28316:4;28313:1;28306:15;28340:4;28337:1;28330:15;28357:180;28405:77;28402:1;28395:88;28502:4;28499:1;28492:15;28526:4;28523:1;28516:15;28543:180;28591:77;28588:1;28581:88;28688:4;28685:1;28678:15;28712:4;28709:1;28702:15;28729:117;28838:1;28835;28828:12;28852:117;28961:1;28958;28951:12;28975:117;29084:1;29081;29074:12;29098:117;29207:1;29204;29197:12;29221:102;29262:6;29313:2;29309:7;29304:2;29297:5;29293:14;29289:28;29279:38;;29221:102;;;:::o;29329:169::-;29469:21;29465:1;29457:6;29453:14;29446:45;29329:169;:::o;29504:237::-;29644:34;29640:1;29632:6;29628:14;29621:58;29713:20;29708:2;29700:6;29696:15;29689:45;29504:237;:::o;29747:225::-;29887:34;29883:1;29875:6;29871:14;29864:58;29956:8;29951:2;29943:6;29939:15;29932:33;29747:225;:::o;29978:178::-;30118:30;30114:1;30106:6;30102:14;30095:54;29978:178;:::o;30162:223::-;30302:34;30298:1;30290:6;30286:14;30279:58;30371:6;30366:2;30358:6;30354:15;30347:31;30162:223;:::o;30391:175::-;30531:27;30527:1;30519:6;30515:14;30508:51;30391:175;:::o;30572:231::-;30712:34;30708:1;30700:6;30696:14;30689:58;30781:14;30776:2;30768:6;30764:15;30757:39;30572:231;:::o;30809:243::-;30949:34;30945:1;30937:6;30933:14;30926:58;31018:26;31013:2;31005:6;31001:15;30994:51;30809:243;:::o;31058:229::-;31198:34;31194:1;31186:6;31182:14;31175:58;31267:12;31262:2;31254:6;31250:15;31243:37;31058:229;:::o;31293:228::-;31433:34;31429:1;31421:6;31417:14;31410:58;31502:11;31497:2;31489:6;31485:15;31478:36;31293:228;:::o;31527:182::-;31667:34;31663:1;31655:6;31651:14;31644:58;31527:182;:::o;31715:231::-;31855:34;31851:1;31843:6;31839:14;31832:58;31924:14;31919:2;31911:6;31907:15;31900:39;31715:231;:::o;31952:182::-;32092:34;32088:1;32080:6;32076:14;32069:58;31952:182;:::o;32140:228::-;32280:34;32276:1;32268:6;32264:14;32257:58;32349:11;32344:2;32336:6;32332:15;32325:36;32140:228;:::o;32374:220::-;32514:34;32510:1;32502:6;32498:14;32491:58;32583:3;32578:2;32570:6;32566:15;32559:28;32374:220;:::o;32600:236::-;32740:34;32736:1;32728:6;32724:14;32717:58;32809:19;32804:2;32796:6;32792:15;32785:44;32600:236;:::o;32842:122::-;32915:24;32933:5;32915:24;:::i;:::-;32908:5;32905:35;32895:63;;32954:1;32951;32944:12;32895:63;32842:122;:::o;32970:116::-;33040:21;33055:5;33040:21;:::i;:::-;33033:5;33030:32;33020:60;;33076:1;33073;33066:12;33020:60;32970:116;:::o;33092:120::-;33164:23;33181:5;33164:23;:::i;:::-;33157:5;33154:34;33144:62;;33202:1;33199;33192:12;33144:62;33092:120;:::o;33218:122::-;33291:24;33309:5;33291:24;:::i;:::-;33284:5;33281:35;33271:63;;33330:1;33327;33320:12;33271:63;33218:122;:::o

Swarm Source

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