ETH Price: $2,967.35 (+3.57%)
Gas: 2 Gwei

Token

Takeshi (TAKESHI)
 

Overview

Max Total Supply

7,999 TAKESHI

Holders

466

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
30 TAKESHI
0xa321745e36b49b92e7dfe2e94f8778f1478b8532
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Takeshi

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 12 of 14: NFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721A.sol";
import "./Ownable.sol";

contract Takeshi is ERC721A, Ownable {

    constructor(string memory baseURI) ERC721A("Takeshi", "TAKESHI") {
        setBaseURI(baseURI);
    }

    uint256 public constant MAX_SUPPLY = 7999;

    uint256 private mintCount = 0;

    uint256 public price = 200000000000000;

    string private baseTokenURI;
      
    bool public saleOpen = true;

    event Minted(uint256 totalMinted);
      
    function totalSupply() public view override returns (uint256) {
        return mintCount;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function setURI(uint256 _uri) external onlyOwner {
        price = _uri;
    }

    function flipSale() external onlyOwner {
        saleOpen = !saleOpen;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    function mint(address _to, uint256 _count) external payable {
        uint256 supply = totalSupply();

        require(supply + _count <= MAX_SUPPLY, "Exceeds maximum supply");
        require(_count > 0, "Minimum 1 NFT has to be minted per transaction");

        if (msg.sender != owner()) {
            require(saleOpen, "Sale is not open yet");
            require(
                _count <= 20,
                "Maximum 20 NFTs can be minted per transaction"
            );
            require(
                msg.value >= price * _count,
                "Ether sent with this transaction is not correct"
            );
        }
        mintCount += _count;      
        _safeMint(_to, _count);
        emit Minted(_count);       
    }

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

File 1 of 14: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 2 of 14: Context.sol
// SPDX-License-Identifier: MIT

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 3 of 14: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 14: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 5 of 14: ERC721A.sol
// SPDX-License-Identifier: MIT


pragma solidity ^0.8.0;

import './IERC721.sol';
import './IERC721Receiver.sol';
import './IERC721Metadata.sol';
import './IERC721Enumerable.sol';
import './Address.sol';
import './Context.sol';
import './Strings.sol';
import './ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 6 of 14: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 14: IERC165.sol
// SPDX-License-Identifier: MIT

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 8 of 14: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 14: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

File 10 of 14: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 11 of 14: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 13 of 14: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

File 14 of 14: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"Minted","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":"MAX_SUPPLY","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":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_uri","type":"uint256"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600060095565b5e620f48000600a556001600c60006101000a81548160ff0219169083151502179055503480156200003b57600080fd5b506040516200400a3803806200400a8339818101604052810190620000619190620003d5565b6040518060400160405280600781526020017f54616b65736869000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f54414b45534849000000000000000000000000000000000000000000000000008152508160029080519060200190620000e5929190620002a7565b508060039080519060200190620000fe929190620002a7565b505050600062000113620001ca60201b60201c565b905080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001c381620001d260201b60201c565b506200062d565b600033905090565b620001e2620001ca60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002086200027d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000258906200044d565b60405180910390fd5b80600b908051906020019062000279929190620002a7565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002b59062000515565b90600052602060002090601f016020900481019282620002d9576000855562000325565b82601f10620002f457805160ff191683800117855562000325565b8280016001018555821562000325579182015b828111156200032457825182559160200191906001019062000307565b5b50905062000334919062000338565b5090565b5b808211156200035357600081600090555060010162000339565b5090565b60006200036e620003688462000498565b6200046f565b9050828152602081018484840111156200038d576200038c620005e4565b5b6200039a848285620004df565b509392505050565b600082601f830112620003ba57620003b9620005df565b5b8151620003cc84826020860162000357565b91505092915050565b600060208284031215620003ee57620003ed620005ee565b5b600082015167ffffffffffffffff8111156200040f576200040e620005e9565b5b6200041d84828501620003a2565b91505092915050565b600062000435602083620004ce565b9150620004428262000604565b602082019050919050565b60006020820190508181036000830152620004688162000426565b9050919050565b60006200047b6200048e565b90506200048982826200054b565b919050565b6000604051905090565b600067ffffffffffffffff821115620004b657620004b5620005b0565b5b620004c182620005f3565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620004ff578082015181840152602081019050620004e2565b838111156200050f576000848401525b50505050565b600060028204905060018216806200052e57607f821691505b6020821081141562000545576200054462000581565b5b50919050565b6200055682620005f3565b810181811067ffffffffffffffff82111715620005785762000577620005b0565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6139cd806200063d6000396000f3fe60806040526004361061019c5760003560e01c80636352211e116100ec578063a035b1fe1161008a578063b88d4fde11610064578063b88d4fde14610593578063c87b56dd146105bc578063e985e9c5146105f9578063f2fde38b146106365761019c565b8063a035b1fe14610516578063a22cb46514610541578063ac6ad32e1461056a5761019c565b80637ba5e621116100c65780637ba5e6211461047e5780638da5cb5b1461049557806395d89b41146104c057806399288dbb146104eb5761019c565b80636352211e146103ed57806370a082311461042a578063715018a6146104675761019c565b80632f745c591161015957806340c10f191161013357806340c10f191461034257806342842e0e1461035e5780634f6ccce71461038757806355f804b3146103c45761019c565b80632f745c59146102c357806332cb6b0c146103005780633ccfd60b1461032b5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612da1565b61065f565b6040516101d5919061314a565b60405180910390f35b3480156101ea57600080fd5b506101f36107a9565b6040516102009190613165565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612e44565b61083b565b60405161023d91906130e3565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612d61565b6108b7565b005b34801561027b57600080fd5b506102846109c2565b6040516102919190613287565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612c4b565b6109cc565b005b3480156102cf57600080fd5b506102ea60048036038101906102e59190612d61565b6109dc565b6040516102f79190613287565b60405180910390f35b34801561030c57600080fd5b50610315610bb5565b6040516103229190613287565b60405180910390f35b34801561033757600080fd5b50610340610bbb565b005b61035c60048036038101906103579190612d61565b610ce6565b005b34801561036a57600080fd5b5061038560048036038101906103809190612c4b565b610f02565b005b34801561039357600080fd5b506103ae60048036038101906103a99190612e44565b610f22565b6040516103bb9190613287565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190612dfb565b611067565b005b3480156103f957600080fd5b50610414600480360381019061040f9190612e44565b6110fd565b60405161042191906130e3565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190612bde565b611113565b60405161045e9190613287565b60405180910390f35b34801561047357600080fd5b5061047c6111e3565b005b34801561048a57600080fd5b50610493611320565b005b3480156104a157600080fd5b506104aa6113c8565b6040516104b791906130e3565b60405180910390f35b3480156104cc57600080fd5b506104d56113f2565b6040516104e29190613165565b60405180910390f35b3480156104f757600080fd5b50610500611484565b60405161050d919061314a565b60405180910390f35b34801561052257600080fd5b5061052b611497565b6040516105389190613287565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190612d21565b61149d565b005b34801561057657600080fd5b50610591600480360381019061058c9190612e44565b611615565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190612c9e565b61169b565b005b3480156105c857600080fd5b506105e360048036038101906105de9190612e44565b6116ee565b6040516105f09190613165565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b9190612c0b565b61178d565b60405161062d919061314a565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190612bde565b611821565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a257506107a1826119cd565b5b9050919050565b6060600280546107b890613542565b80601f01602080910402602001604051908101604052809291908181526020018280546107e490613542565b80156108315780601f1061080657610100808354040283529160200191610831565b820191906000526020600020905b81548152906001019060200180831161081457829003601f168201915b5050505050905090565b600061084682611a37565b61087c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c2826110fd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561092a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610949611a71565b73ffffffffffffffffffffffffffffffffffffffff161415801561097b575061097981610974611a71565b61178d565b155b156109b2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109bd838383611a79565b505050565b6000600954905090565b6109d7838383611b2b565b505050565b60006109e783611113565b8210610a1f576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610ba9576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610b085750610b9c565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b4857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b9a5786841415610b91578195505050505050610baf565b83806001019450505b505b8080600101915050610a2b565b50600080fd5b92915050565b611f3f81565b610bc3611a71565b73ffffffffffffffffffffffffffffffffffffffff16610be16113c8565b73ffffffffffffffffffffffffffffffffffffffff1614610c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2e90613207565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c5d906130ce565b60006040518083038185875af1925050503d8060008114610c9a576040519150601f19603f3d011682016040523d82523d6000602084013e610c9f565b606091505b5050905080610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90613267565b60405180910390fd5b50565b6000610cf06109c2565b9050611f3f8282610d019190613377565b1115610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990613247565b60405180910390fd5b60008211610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90613187565b60405180910390fd5b610d8d6113c8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ea357600c60009054906101000a900460ff16610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e05906131c7565b60405180910390fd5b6014821115610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4990613227565b60405180910390fd5b81600a54610e6091906133fe565b341015610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e99906131e7565b60405180910390fd5b5b8160096000828254610eb59190613377565b92505081905550610ec6838361201c565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a82604051610ef59190613287565b60405180910390a1505050565b610f1d8383836040518060200160405280600081525061169b565b505050565b60008060005490506000805b8281101561102f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161102157858314156110185781945050505050611062565b82806001019350505b508080600101915050610f2e565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61106f611a71565b73ffffffffffffffffffffffffffffffffffffffff1661108d6113c8565b73ffffffffffffffffffffffffffffffffffffffff16146110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90613207565b60405180910390fd5b80600b90805190602001906110f99291906129af565b5050565b60006111088261203a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561117b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6111eb611a71565b73ffffffffffffffffffffffffffffffffffffffff166112096113c8565b73ffffffffffffffffffffffffffffffffffffffff161461125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690613207565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611328611a71565b73ffffffffffffffffffffffffffffffffffffffff166113466113c8565b73ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390613207565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461140190613542565b80601f016020809104026020016040519081016040528092919081815260200182805461142d90613542565b801561147a5780601f1061144f5761010080835404028352916020019161147a565b820191906000526020600020905b81548152906001019060200180831161145d57829003601f168201915b5050505050905090565b600c60009054906101000a900460ff1681565b600a5481565b6114a5611a71565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561150a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611517611a71565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115c4611a71565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611609919061314a565b60405180910390a35050565b61161d611a71565b73ffffffffffffffffffffffffffffffffffffffff1661163b6113c8565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890613207565b60405180910390fd5b80600a8190555050565b6116a6848484611b2b565b6116b2848484846122b6565b6116e8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606116f982611a37565b61172f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611739612444565b905060008151141561175a5760405180602001604052806000815250611785565b80611764846124d6565b60405160200161177592919061309f565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611829611a71565b73ffffffffffffffffffffffffffffffffffffffff166118476113c8565b73ffffffffffffffffffffffffffffffffffffffff161461189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490613207565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561190d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611904906131a7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015611a6a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b368261203a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b5d611a71565b73ffffffffffffffffffffffffffffffffffffffff161480611b905750611b8f8260000151611b8a611a71565b61178d565b5b80611bd55750611b9e611a71565b73ffffffffffffffffffffffffffffffffffffffff16611bbd8461083b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c0e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c77576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cde576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ceb8585856001612637565b611cfb6000848460000151611a79565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611fac57600054811015611fab5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612015858585600161263d565b5050505050565b612036828260405180602001604052806000815250612643565b5050565b612042612a35565b600082905060005481101561227f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161227d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121615780925050506122b1565b5b60011561227c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122775780925050506122b1565b612162565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60006122d78473ffffffffffffffffffffffffffffffffffffffff16612655565b15612437578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612300611a71565b8786866040518563ffffffff1660e01b815260040161232294939291906130fe565b602060405180830381600087803b15801561233c57600080fd5b505af192505050801561236d57506040513d601f19601f8201168201806040525081019061236a9190612dce565b60015b6123e7573d806000811461239d576040519150601f19603f3d011682016040523d82523d6000602084013e6123a2565b606091505b506000815114156123df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061243c565b600190505b949350505050565b6060600b805461245390613542565b80601f016020809104026020016040519081016040528092919081815260200182805461247f90613542565b80156124cc5780601f106124a1576101008083540402835291602001916124cc565b820191906000526020600020905b8154815290600101906020018083116124af57829003601f168201915b5050505050905090565b6060600082141561251e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612632565b600082905060005b60008214612550578080612539906135a5565b915050600a8261254991906133cd565b9150612526565b60008167ffffffffffffffff81111561256c5761256b6136db565b5b6040519080825280601f01601f19166020018201604052801561259e5781602001600182028036833780820191505090505b5090505b6000851461262b576001826125b79190613458565b9150600a856125c691906135ee565b60306125d29190613377565b60f81b8183815181106125e8576125e76136ac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561262491906133cd565b94506125a2565b8093505050505b919050565b50505050565b50505050565b6126508383836001612678565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156126e5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612720576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61272d6000868387612637565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561299257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612946575061294460008884886122b6565b155b1561297d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506128cb565b5080600081905550506129a8600086838761263d565b5050505050565b8280546129bb90613542565b90600052602060002090601f0160209004810192826129dd5760008555612a24565b82601f106129f657805160ff1916838001178555612a24565b82800160010185558215612a24579182015b82811115612a23578251825591602001919060010190612a08565b5b509050612a319190612a78565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612a91576000816000905550600101612a79565b5090565b6000612aa8612aa3846132c7565b6132a2565b905082815260208101848484011115612ac457612ac361370f565b5b612acf848285613500565b509392505050565b6000612aea612ae5846132f8565b6132a2565b905082815260208101848484011115612b0657612b0561370f565b5b612b11848285613500565b509392505050565b600081359050612b288161393b565b92915050565b600081359050612b3d81613952565b92915050565b600081359050612b5281613969565b92915050565b600081519050612b6781613969565b92915050565b600082601f830112612b8257612b8161370a565b5b8135612b92848260208601612a95565b91505092915050565b600082601f830112612bb057612baf61370a565b5b8135612bc0848260208601612ad7565b91505092915050565b600081359050612bd881613980565b92915050565b600060208284031215612bf457612bf3613719565b5b6000612c0284828501612b19565b91505092915050565b60008060408385031215612c2257612c21613719565b5b6000612c3085828601612b19565b9250506020612c4185828601612b19565b9150509250929050565b600080600060608486031215612c6457612c63613719565b5b6000612c7286828701612b19565b9350506020612c8386828701612b19565b9250506040612c9486828701612bc9565b9150509250925092565b60008060008060808587031215612cb857612cb7613719565b5b6000612cc687828801612b19565b9450506020612cd787828801612b19565b9350506040612ce887828801612bc9565b925050606085013567ffffffffffffffff811115612d0957612d08613714565b5b612d1587828801612b6d565b91505092959194509250565b60008060408385031215612d3857612d37613719565b5b6000612d4685828601612b19565b9250506020612d5785828601612b2e565b9150509250929050565b60008060408385031215612d7857612d77613719565b5b6000612d8685828601612b19565b9250506020612d9785828601612bc9565b9150509250929050565b600060208284031215612db757612db6613719565b5b6000612dc584828501612b43565b91505092915050565b600060208284031215612de457612de3613719565b5b6000612df284828501612b58565b91505092915050565b600060208284031215612e1157612e10613719565b5b600082013567ffffffffffffffff811115612e2f57612e2e613714565b5b612e3b84828501612b9b565b91505092915050565b600060208284031215612e5a57612e59613719565b5b6000612e6884828501612bc9565b91505092915050565b612e7a8161348c565b82525050565b612e898161349e565b82525050565b6000612e9a82613329565b612ea4818561333f565b9350612eb481856020860161350f565b612ebd8161371e565b840191505092915050565b6000612ed382613334565b612edd818561335b565b9350612eed81856020860161350f565b612ef68161371e565b840191505092915050565b6000612f0c82613334565b612f16818561336c565b9350612f2681856020860161350f565b80840191505092915050565b6000612f3f602e8361335b565b9150612f4a8261372f565b604082019050919050565b6000612f6260268361335b565b9150612f6d8261377e565b604082019050919050565b6000612f8560148361335b565b9150612f90826137cd565b602082019050919050565b6000612fa860058361336c565b9150612fb3826137f6565b600582019050919050565b6000612fcb602f8361335b565b9150612fd68261381f565b604082019050919050565b6000612fee60208361335b565b9150612ff98261386e565b602082019050919050565b6000613011602d8361335b565b915061301c82613897565b604082019050919050565b600061303460168361335b565b915061303f826138e6565b602082019050919050565b6000613057600083613350565b91506130628261390f565b600082019050919050565b600061307a60108361335b565b915061308582613912565b602082019050919050565b613099816134f6565b82525050565b60006130ab8285612f01565b91506130b78284612f01565b91506130c282612f9b565b91508190509392505050565b60006130d98261304a565b9150819050919050565b60006020820190506130f86000830184612e71565b92915050565b60006080820190506131136000830187612e71565b6131206020830186612e71565b61312d6040830185613090565b818103606083015261313f8184612e8f565b905095945050505050565b600060208201905061315f6000830184612e80565b92915050565b6000602082019050818103600083015261317f8184612ec8565b905092915050565b600060208201905081810360008301526131a081612f32565b9050919050565b600060208201905081810360008301526131c081612f55565b9050919050565b600060208201905081810360008301526131e081612f78565b9050919050565b6000602082019050818103600083015261320081612fbe565b9050919050565b6000602082019050818103600083015261322081612fe1565b9050919050565b6000602082019050818103600083015261324081613004565b9050919050565b6000602082019050818103600083015261326081613027565b9050919050565b600060208201905081810360008301526132808161306d565b9050919050565b600060208201905061329c6000830184613090565b92915050565b60006132ac6132bd565b90506132b88282613574565b919050565b6000604051905090565b600067ffffffffffffffff8211156132e2576132e16136db565b5b6132eb8261371e565b9050602081019050919050565b600067ffffffffffffffff821115613313576133126136db565b5b61331c8261371e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613382826134f6565b915061338d836134f6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133c2576133c161361f565b5b828201905092915050565b60006133d8826134f6565b91506133e3836134f6565b9250826133f3576133f261364e565b5b828204905092915050565b6000613409826134f6565b9150613414836134f6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561344d5761344c61361f565b5b828202905092915050565b6000613463826134f6565b915061346e836134f6565b9250828210156134815761348061361f565b5b828203905092915050565b6000613497826134d6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561352d578082015181840152602081019050613512565b8381111561353c576000848401525b50505050565b6000600282049050600182168061355a57607f821691505b6020821081141561356e5761356d61367d565b5b50919050565b61357d8261371e565b810181811067ffffffffffffffff8211171561359c5761359b6136db565b5b80604052505050565b60006135b0826134f6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135e3576135e261361f565b5b600182019050919050565b60006135f9826134f6565b9150613604836134f6565b9250826136145761361361364e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178696d756d203230204e4654732063616e206265206d696e74656420706560008201527f72207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6139448161348c565b811461394f57600080fd5b50565b61395b8161349e565b811461396657600080fd5b50565b613972816134aa565b811461397d57600080fd5b50565b613989816134f6565b811461399457600080fd5b5056fea26469706673582212201eee7f053ce83b1d8954c623ae1cccb9bd867838f1b3b7e4ab4f3d66af6ab29864736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d566a6733646f504d4e55487867514577466d4e717964367538434134747a74416e3546595463564a4c6851712f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636352211e116100ec578063a035b1fe1161008a578063b88d4fde11610064578063b88d4fde14610593578063c87b56dd146105bc578063e985e9c5146105f9578063f2fde38b146106365761019c565b8063a035b1fe14610516578063a22cb46514610541578063ac6ad32e1461056a5761019c565b80637ba5e621116100c65780637ba5e6211461047e5780638da5cb5b1461049557806395d89b41146104c057806399288dbb146104eb5761019c565b80636352211e146103ed57806370a082311461042a578063715018a6146104675761019c565b80632f745c591161015957806340c10f191161013357806340c10f191461034257806342842e0e1461035e5780634f6ccce71461038757806355f804b3146103c45761019c565b80632f745c59146102c357806332cb6b0c146103005780633ccfd60b1461032b5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612da1565b61065f565b6040516101d5919061314a565b60405180910390f35b3480156101ea57600080fd5b506101f36107a9565b6040516102009190613165565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612e44565b61083b565b60405161023d91906130e3565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612d61565b6108b7565b005b34801561027b57600080fd5b506102846109c2565b6040516102919190613287565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612c4b565b6109cc565b005b3480156102cf57600080fd5b506102ea60048036038101906102e59190612d61565b6109dc565b6040516102f79190613287565b60405180910390f35b34801561030c57600080fd5b50610315610bb5565b6040516103229190613287565b60405180910390f35b34801561033757600080fd5b50610340610bbb565b005b61035c60048036038101906103579190612d61565b610ce6565b005b34801561036a57600080fd5b5061038560048036038101906103809190612c4b565b610f02565b005b34801561039357600080fd5b506103ae60048036038101906103a99190612e44565b610f22565b6040516103bb9190613287565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190612dfb565b611067565b005b3480156103f957600080fd5b50610414600480360381019061040f9190612e44565b6110fd565b60405161042191906130e3565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190612bde565b611113565b60405161045e9190613287565b60405180910390f35b34801561047357600080fd5b5061047c6111e3565b005b34801561048a57600080fd5b50610493611320565b005b3480156104a157600080fd5b506104aa6113c8565b6040516104b791906130e3565b60405180910390f35b3480156104cc57600080fd5b506104d56113f2565b6040516104e29190613165565b60405180910390f35b3480156104f757600080fd5b50610500611484565b60405161050d919061314a565b60405180910390f35b34801561052257600080fd5b5061052b611497565b6040516105389190613287565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190612d21565b61149d565b005b34801561057657600080fd5b50610591600480360381019061058c9190612e44565b611615565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190612c9e565b61169b565b005b3480156105c857600080fd5b506105e360048036038101906105de9190612e44565b6116ee565b6040516105f09190613165565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b9190612c0b565b61178d565b60405161062d919061314a565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190612bde565b611821565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a257506107a1826119cd565b5b9050919050565b6060600280546107b890613542565b80601f01602080910402602001604051908101604052809291908181526020018280546107e490613542565b80156108315780601f1061080657610100808354040283529160200191610831565b820191906000526020600020905b81548152906001019060200180831161081457829003601f168201915b5050505050905090565b600061084682611a37565b61087c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c2826110fd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561092a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610949611a71565b73ffffffffffffffffffffffffffffffffffffffff161415801561097b575061097981610974611a71565b61178d565b155b156109b2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109bd838383611a79565b505050565b6000600954905090565b6109d7838383611b2b565b505050565b60006109e783611113565b8210610a1f576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610ba9576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610b085750610b9c565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b4857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b9a5786841415610b91578195505050505050610baf565b83806001019450505b505b8080600101915050610a2b565b50600080fd5b92915050565b611f3f81565b610bc3611a71565b73ffffffffffffffffffffffffffffffffffffffff16610be16113c8565b73ffffffffffffffffffffffffffffffffffffffff1614610c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2e90613207565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c5d906130ce565b60006040518083038185875af1925050503d8060008114610c9a576040519150601f19603f3d011682016040523d82523d6000602084013e610c9f565b606091505b5050905080610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90613267565b60405180910390fd5b50565b6000610cf06109c2565b9050611f3f8282610d019190613377565b1115610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990613247565b60405180910390fd5b60008211610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90613187565b60405180910390fd5b610d8d6113c8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ea357600c60009054906101000a900460ff16610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e05906131c7565b60405180910390fd5b6014821115610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4990613227565b60405180910390fd5b81600a54610e6091906133fe565b341015610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e99906131e7565b60405180910390fd5b5b8160096000828254610eb59190613377565b92505081905550610ec6838361201c565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a82604051610ef59190613287565b60405180910390a1505050565b610f1d8383836040518060200160405280600081525061169b565b505050565b60008060005490506000805b8281101561102f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161102157858314156110185781945050505050611062565b82806001019350505b508080600101915050610f2e565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61106f611a71565b73ffffffffffffffffffffffffffffffffffffffff1661108d6113c8565b73ffffffffffffffffffffffffffffffffffffffff16146110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90613207565b60405180910390fd5b80600b90805190602001906110f99291906129af565b5050565b60006111088261203a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561117b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6111eb611a71565b73ffffffffffffffffffffffffffffffffffffffff166112096113c8565b73ffffffffffffffffffffffffffffffffffffffff161461125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690613207565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611328611a71565b73ffffffffffffffffffffffffffffffffffffffff166113466113c8565b73ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390613207565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461140190613542565b80601f016020809104026020016040519081016040528092919081815260200182805461142d90613542565b801561147a5780601f1061144f5761010080835404028352916020019161147a565b820191906000526020600020905b81548152906001019060200180831161145d57829003601f168201915b5050505050905090565b600c60009054906101000a900460ff1681565b600a5481565b6114a5611a71565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561150a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611517611a71565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115c4611a71565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611609919061314a565b60405180910390a35050565b61161d611a71565b73ffffffffffffffffffffffffffffffffffffffff1661163b6113c8565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890613207565b60405180910390fd5b80600a8190555050565b6116a6848484611b2b565b6116b2848484846122b6565b6116e8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606116f982611a37565b61172f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611739612444565b905060008151141561175a5760405180602001604052806000815250611785565b80611764846124d6565b60405160200161177592919061309f565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611829611a71565b73ffffffffffffffffffffffffffffffffffffffff166118476113c8565b73ffffffffffffffffffffffffffffffffffffffff161461189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490613207565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561190d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611904906131a7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015611a6a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b368261203a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b5d611a71565b73ffffffffffffffffffffffffffffffffffffffff161480611b905750611b8f8260000151611b8a611a71565b61178d565b5b80611bd55750611b9e611a71565b73ffffffffffffffffffffffffffffffffffffffff16611bbd8461083b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c0e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c77576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cde576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ceb8585856001612637565b611cfb6000848460000151611a79565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611fac57600054811015611fab5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612015858585600161263d565b5050505050565b612036828260405180602001604052806000815250612643565b5050565b612042612a35565b600082905060005481101561227f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161227d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121615780925050506122b1565b5b60011561227c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122775780925050506122b1565b612162565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60006122d78473ffffffffffffffffffffffffffffffffffffffff16612655565b15612437578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612300611a71565b8786866040518563ffffffff1660e01b815260040161232294939291906130fe565b602060405180830381600087803b15801561233c57600080fd5b505af192505050801561236d57506040513d601f19601f8201168201806040525081019061236a9190612dce565b60015b6123e7573d806000811461239d576040519150601f19603f3d011682016040523d82523d6000602084013e6123a2565b606091505b506000815114156123df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061243c565b600190505b949350505050565b6060600b805461245390613542565b80601f016020809104026020016040519081016040528092919081815260200182805461247f90613542565b80156124cc5780601f106124a1576101008083540402835291602001916124cc565b820191906000526020600020905b8154815290600101906020018083116124af57829003601f168201915b5050505050905090565b6060600082141561251e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612632565b600082905060005b60008214612550578080612539906135a5565b915050600a8261254991906133cd565b9150612526565b60008167ffffffffffffffff81111561256c5761256b6136db565b5b6040519080825280601f01601f19166020018201604052801561259e5781602001600182028036833780820191505090505b5090505b6000851461262b576001826125b79190613458565b9150600a856125c691906135ee565b60306125d29190613377565b60f81b8183815181106125e8576125e76136ac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561262491906133cd565b94506125a2565b8093505050505b919050565b50505050565b50505050565b6126508383836001612678565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156126e5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612720576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61272d6000868387612637565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561299257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612946575061294460008884886122b6565b155b1561297d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506128cb565b5080600081905550506129a8600086838761263d565b5050505050565b8280546129bb90613542565b90600052602060002090601f0160209004810192826129dd5760008555612a24565b82601f106129f657805160ff1916838001178555612a24565b82800160010185558215612a24579182015b82811115612a23578251825591602001919060010190612a08565b5b509050612a319190612a78565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612a91576000816000905550600101612a79565b5090565b6000612aa8612aa3846132c7565b6132a2565b905082815260208101848484011115612ac457612ac361370f565b5b612acf848285613500565b509392505050565b6000612aea612ae5846132f8565b6132a2565b905082815260208101848484011115612b0657612b0561370f565b5b612b11848285613500565b509392505050565b600081359050612b288161393b565b92915050565b600081359050612b3d81613952565b92915050565b600081359050612b5281613969565b92915050565b600081519050612b6781613969565b92915050565b600082601f830112612b8257612b8161370a565b5b8135612b92848260208601612a95565b91505092915050565b600082601f830112612bb057612baf61370a565b5b8135612bc0848260208601612ad7565b91505092915050565b600081359050612bd881613980565b92915050565b600060208284031215612bf457612bf3613719565b5b6000612c0284828501612b19565b91505092915050565b60008060408385031215612c2257612c21613719565b5b6000612c3085828601612b19565b9250506020612c4185828601612b19565b9150509250929050565b600080600060608486031215612c6457612c63613719565b5b6000612c7286828701612b19565b9350506020612c8386828701612b19565b9250506040612c9486828701612bc9565b9150509250925092565b60008060008060808587031215612cb857612cb7613719565b5b6000612cc687828801612b19565b9450506020612cd787828801612b19565b9350506040612ce887828801612bc9565b925050606085013567ffffffffffffffff811115612d0957612d08613714565b5b612d1587828801612b6d565b91505092959194509250565b60008060408385031215612d3857612d37613719565b5b6000612d4685828601612b19565b9250506020612d5785828601612b2e565b9150509250929050565b60008060408385031215612d7857612d77613719565b5b6000612d8685828601612b19565b9250506020612d9785828601612bc9565b9150509250929050565b600060208284031215612db757612db6613719565b5b6000612dc584828501612b43565b91505092915050565b600060208284031215612de457612de3613719565b5b6000612df284828501612b58565b91505092915050565b600060208284031215612e1157612e10613719565b5b600082013567ffffffffffffffff811115612e2f57612e2e613714565b5b612e3b84828501612b9b565b91505092915050565b600060208284031215612e5a57612e59613719565b5b6000612e6884828501612bc9565b91505092915050565b612e7a8161348c565b82525050565b612e898161349e565b82525050565b6000612e9a82613329565b612ea4818561333f565b9350612eb481856020860161350f565b612ebd8161371e565b840191505092915050565b6000612ed382613334565b612edd818561335b565b9350612eed81856020860161350f565b612ef68161371e565b840191505092915050565b6000612f0c82613334565b612f16818561336c565b9350612f2681856020860161350f565b80840191505092915050565b6000612f3f602e8361335b565b9150612f4a8261372f565b604082019050919050565b6000612f6260268361335b565b9150612f6d8261377e565b604082019050919050565b6000612f8560148361335b565b9150612f90826137cd565b602082019050919050565b6000612fa860058361336c565b9150612fb3826137f6565b600582019050919050565b6000612fcb602f8361335b565b9150612fd68261381f565b604082019050919050565b6000612fee60208361335b565b9150612ff98261386e565b602082019050919050565b6000613011602d8361335b565b915061301c82613897565b604082019050919050565b600061303460168361335b565b915061303f826138e6565b602082019050919050565b6000613057600083613350565b91506130628261390f565b600082019050919050565b600061307a60108361335b565b915061308582613912565b602082019050919050565b613099816134f6565b82525050565b60006130ab8285612f01565b91506130b78284612f01565b91506130c282612f9b565b91508190509392505050565b60006130d98261304a565b9150819050919050565b60006020820190506130f86000830184612e71565b92915050565b60006080820190506131136000830187612e71565b6131206020830186612e71565b61312d6040830185613090565b818103606083015261313f8184612e8f565b905095945050505050565b600060208201905061315f6000830184612e80565b92915050565b6000602082019050818103600083015261317f8184612ec8565b905092915050565b600060208201905081810360008301526131a081612f32565b9050919050565b600060208201905081810360008301526131c081612f55565b9050919050565b600060208201905081810360008301526131e081612f78565b9050919050565b6000602082019050818103600083015261320081612fbe565b9050919050565b6000602082019050818103600083015261322081612fe1565b9050919050565b6000602082019050818103600083015261324081613004565b9050919050565b6000602082019050818103600083015261326081613027565b9050919050565b600060208201905081810360008301526132808161306d565b9050919050565b600060208201905061329c6000830184613090565b92915050565b60006132ac6132bd565b90506132b88282613574565b919050565b6000604051905090565b600067ffffffffffffffff8211156132e2576132e16136db565b5b6132eb8261371e565b9050602081019050919050565b600067ffffffffffffffff821115613313576133126136db565b5b61331c8261371e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613382826134f6565b915061338d836134f6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133c2576133c161361f565b5b828201905092915050565b60006133d8826134f6565b91506133e3836134f6565b9250826133f3576133f261364e565b5b828204905092915050565b6000613409826134f6565b9150613414836134f6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561344d5761344c61361f565b5b828202905092915050565b6000613463826134f6565b915061346e836134f6565b9250828210156134815761348061361f565b5b828203905092915050565b6000613497826134d6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561352d578082015181840152602081019050613512565b8381111561353c576000848401525b50505050565b6000600282049050600182168061355a57607f821691505b6020821081141561356e5761356d61367d565b5b50919050565b61357d8261371e565b810181811067ffffffffffffffff8211171561359c5761359b6136db565b5b80604052505050565b60006135b0826134f6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135e3576135e261361f565b5b600182019050919050565b60006135f9826134f6565b9150613604836134f6565b9250826136145761361361364e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178696d756d203230204e4654732063616e206265206d696e74656420706560008201527f72207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6139448161348c565b811461394f57600080fd5b50565b61395b8161349e565b811461396657600080fd5b50565b613972816134aa565b811461397d57600080fd5b50565b613989816134f6565b811461399457600080fd5b5056fea26469706673582212201eee7f053ce83b1d8954c623ae1cccb9bd867838f1b3b7e4ab4f3d66af6ab29864736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d566a6733646f504d4e55487867514577466d4e717964367538434134747a74416e3546595463564a4c6851712f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://ipfs.io/ipfs/QmVjg3doPMNUHxgQEwFmNqyd6u8CA4tztAn5FYTcVJLhQq/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f516d566a6733646f504d4e
Arg [3] : 55487867514577466d4e717964367538434134747a74416e3546595463564a4c
Arg [4] : 6851712f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

112:1884:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6099:372:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8709:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10221:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9784:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;530:97:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11078:170:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4922:1105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;269:41:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;918:182;;;;;;;;;;;;;:::i;:::-;;1108:764;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11319:185:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3909:713;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;635:101:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8518:124:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6535:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1746:148:12;;;;;;;;;;;;;:::i;:::-;;832:78:11;;;;;;;;;;;;;:::i;:::-;;1095:87:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8878:104:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;446:27:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;357:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10497:279:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;744:80:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11575:342:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9053:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10847:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2049:244:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6099:372:4;6201:4;6253:25;6238:40;;;:11;:40;;;;:105;;;;6310:33;6295:48;;;:11;:48;;;;6238:105;:172;;;;6375:35;6360:50;;;:11;:50;;;;6238:172;:225;;;;6427:36;6451:11;6427:23;:36::i;:::-;6238:225;6218:245;;6099:372;;;:::o;8709:100::-;8763:13;8796:5;8789:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8709:100;:::o;10221:204::-;10289:7;10314:16;10322:7;10314;:16::i;:::-;10309:64;;10339:34;;;;;;;;;;;;;;10309:64;10393:15;:24;10409:7;10393:24;;;;;;;;;;;;;;;;;;;;;10386:31;;10221:204;;;:::o;9784:371::-;9857:13;9873:24;9889:7;9873:15;:24::i;:::-;9857:40;;9918:5;9912:11;;:2;:11;;;9908:48;;;9932:24;;;;;;;;;;;;;;9908:48;9989:5;9973:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;9999:37;10016:5;10023:12;:10;:12::i;:::-;9999:16;:37::i;:::-;9998:38;9973:63;9969:138;;;10060:35;;;;;;;;;;;;;;9969:138;10119:28;10128:2;10132:7;10141:5;10119:8;:28::i;:::-;9846:309;9784:371;;:::o;530:97:11:-;583:7;610:9;;603:16;;530:97;:::o;11078:170:4:-;11212:28;11222:4;11228:2;11232:7;11212:9;:28::i;:::-;11078:170;;;:::o;4922:1105::-;5011:7;5044:16;5054:5;5044:9;:16::i;:::-;5035:5;:25;5031:61;;5069:23;;;;;;;;;;;;;;5031:61;5103:22;5128:13;;5103:38;;5152:19;5182:25;5383:9;5378:557;5398:14;5394:1;:18;5378:557;;;5438:31;5472:11;:14;5484:1;5472:14;;;;;;;;;;;5438:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5509:9;:16;;;5505:73;;;5550:8;;;5505:73;5626:1;5600:28;;:9;:14;;;:28;;;5596:111;;5673:9;:14;;;5653:34;;5596:111;5750:5;5729:26;;:17;:26;;;5725:195;;;5799:5;5784:11;:20;5780:85;;;5840:1;5833:8;;;;;;;;;5780:85;5887:13;;;;;;;5725:195;5419:516;5378:557;5414:3;;;;;;;5378:557;;;;6011:8;;;4922:1105;;;;;:::o;269:41:11:-;306:4;269:41;:::o;918:182::-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;969:12:11::1;995:10;987:24;;1019:21;987:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;968:77;;;1064:7;1056:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;957:143;918:182::o:0;1108:764::-;1179:14;1196:13;:11;:13::i;:::-;1179:30;;306:4;1239:6;1230;:15;;;;:::i;:::-;:29;;1222:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;1314:1;1305:6;:10;1297:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1397:7;:5;:7::i;:::-;1383:21;;:10;:21;;;1379:380;;1429:8;;;;;;;;;;;1421:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1513:2;1503:6;:12;;1477:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;1658:6;1650:5;;:14;;;;:::i;:::-;1637:9;:27;;1611:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;1379:380;1782:6;1769:9;;:19;;;;;;;:::i;:::-;;;;;;;;1805:22;1815:3;1820:6;1805:9;:22::i;:::-;1843:14;1850:6;1843:14;;;;;;:::i;:::-;;;;;;;;1168:704;1108:764;;:::o;11319:185:4:-;11457:39;11474:4;11480:2;11484:7;11457:39;;;;;;;;;;;;:16;:39::i;:::-;11319:185;;;:::o;3909:713::-;3976:7;3996:22;4021:13;;3996:38;;4045:19;4240:9;4235:328;4255:14;4251:1;:18;4235:328;;;4295:31;4329:11;:14;4341:1;4329:14;;;;;;;;;;;4295:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4367:9;:16;;;4362:186;;4427:5;4412:11;:20;4408:85;;;4468:1;4461:8;;;;;;;;4408:85;4515:13;;;;;;;4362:186;4276:287;4271:3;;;;;;;4235:328;;;;4591:23;;;;;;;;;;;;;;3909:713;;;;:::o;635:101:11:-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;721:7:11::1;706:12;:22;;;;;;;;;;;;:::i;:::-;;635:101:::0;:::o;8518:124:4:-;8582:7;8609:20;8621:7;8609:11;:20::i;:::-;:25;;;8602:32;;8518:124;;;:::o;6535:206::-;6599:7;6640:1;6623:19;;:5;:19;;;6619:60;;;6651:28;;;;;;;;;;;;;;6619:60;6705:12;:19;6718:5;6705:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;6697:36;;6690:43;;6535:206;;;:::o;1746:148:12:-;1326:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1853:1:::1;1816:40;;1837:6;;;;;;;;;;;1816:40;;;;;;;;;;;;1884:1;1867:6;;:19;;;;;;;;;;;;;;;;;;1746:148::o:0;832:78:11:-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;894:8:11::1;;;;;;;;;;;893:9;882:8;;:20;;;;;;;;;;;;;;;;;;832:78::o:0;1095:87:12:-;1141:7;1168:6;;;;;;;;;;;1161:13;;1095:87;:::o;8878:104:4:-;8934:13;8967:7;8960:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8878:104;:::o;446:27:11:-;;;;;;;;;;;;;:::o;357:38::-;;;;:::o;10497:279:4:-;10600:12;:10;:12::i;:::-;10588:24;;:8;:24;;;10584:54;;;10621:17;;;;;;;;;;;;;;10584:54;10696:8;10651:18;:32;10670:12;:10;:12::i;:::-;10651:32;;;;;;;;;;;;;;;:42;10684:8;10651:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10749:8;10720:48;;10735:12;:10;:12::i;:::-;10720:48;;;10759:8;10720:48;;;;;;:::i;:::-;;;;;;;;10497:279;;:::o;744:80:11:-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;812:4:11::1;804:5;:12;;;;744:80:::0;:::o;11575:342:4:-;11742:28;11752:4;11758:2;11762:7;11742:9;:28::i;:::-;11786:48;11809:4;11815:2;11819:7;11828:5;11786:22;:48::i;:::-;11781:129;;11858:40;;;;;;;;;;;;;;11781:129;11575:342;;;;:::o;9053:327::-;9126:13;9157:16;9165:7;9157;:16::i;:::-;9152:59;;9182:29;;;;;;;;;;;;;;9152:59;9224:21;9248:10;:8;:10::i;:::-;9224:34;;9301:1;9282:7;9276:21;:26;;:96;;;;;;;;;;;;;;;;;9329:7;9338:18;:7;:16;:18::i;:::-;9312:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;9276:96;9269:103;;;9053:327;;;:::o;10847:164::-;10944:4;10968:18;:25;10987:5;10968:25;;;;;;;;;;;;;;;:35;10994:8;10968:35;;;;;;;;;;;;;;;;;;;;;;;;;10961:42;;10847:164;;;;:::o;2049:244:12:-;1326:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2158:1:::1;2138:22;;:8;:22;;;;2130:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2248:8;2219:38;;2240:6;;;;;;;;;;;2219:38;;;;;;;;;;;;2277:8;2268:6;;:17;;;;;;;;;;;;;;;;;;2049:244:::0;:::o;854:157:2:-;939:4;978:25;963:40;;;:11;:40;;;;956:47;;854:157;;;:::o;12172:144:4:-;12229:4;12263:13;;12253:7;:23;:55;;;;;12281:11;:20;12293:7;12281:20;;;;;;;;;;;:27;;;;;;;;;;;;12280:28;12253:55;12246:62;;12172:144;;;:::o;601:98:1:-;654:7;681:10;674:17;;601:98;:::o;19378:196:4:-;19520:2;19493:15;:24;19509:7;19493:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19558:7;19554:2;19538:28;;19547:5;19538:28;;;;;;;;;;;;19378:196;;;:::o;14879:2112::-;14994:35;15032:20;15044:7;15032:11;:20::i;:::-;14994:58;;15065:22;15107:13;:18;;;15091:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;15142:50;15159:13;:18;;;15179:12;:10;:12::i;:::-;15142:16;:50::i;:::-;15091:101;:154;;;;15233:12;:10;:12::i;:::-;15209:36;;:20;15221:7;15209:11;:20::i;:::-;:36;;;15091:154;15065:181;;15264:17;15259:66;;15290:35;;;;;;;;;;;;;;15259:66;15362:4;15340:26;;:13;:18;;;:26;;;15336:67;;15375:28;;;;;;;;;;;;;;15336:67;15432:1;15418:16;;:2;:16;;;15414:52;;;15443:23;;;;;;;;;;;;;;15414:52;15479:43;15501:4;15507:2;15511:7;15520:1;15479:21;:43::i;:::-;15587:49;15604:1;15608:7;15617:13;:18;;;15587:8;:49::i;:::-;15962:1;15932:12;:18;15945:4;15932:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16006:1;15978:12;:16;15991:2;15978:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16052:2;16024:11;:20;16036:7;16024:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;16114:15;16069:11;:20;16081:7;16069:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;16382:19;16414:1;16404:7;:11;16382:33;;16475:1;16434:43;;:11;:24;16446:11;16434:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;16430:445;;;16659:13;;16645:11;:27;16641:219;;;16729:13;:18;;;16697:11;:24;16709:11;16697:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;16812:13;:28;;;16770:11;:24;16782:11;16770:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;16641:219;16430:445;15907:979;16922:7;16918:2;16903:27;;16912:4;16903:27;;;;;;;;;;;;16941:42;16962:4;16968:2;16972:7;16981:1;16941:20;:42::i;:::-;14983:2008;;14879:2112;;;:::o;12324:104::-;12393:27;12403:2;12407:8;12393:27;;;;;;;;;;;;:9;:27::i;:::-;12324:104;;:::o;7373:1083::-;7434:21;;:::i;:::-;7468:12;7483:7;7468:22;;7539:13;;7532:4;:20;7528:861;;;7573:31;7607:11;:17;7619:4;7607:17;;;;;;;;;;;7573:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7648:9;:16;;;7643:731;;7719:1;7693:28;;:9;:14;;;:28;;;7689:101;;7757:9;7750:16;;;;;;7689:101;8094:261;8101:4;8094:261;;;8134:6;;;;;;;;8179:11;:17;8191:4;8179:17;;;;;;;;;;;8167:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8253:1;8227:28;;:9;:14;;;:28;;;8223:109;;8295:9;8288:16;;;;;;8223:109;8094:261;;;7643:731;7554:835;7528:861;8417:31;;;;;;;;;;;;;;7373:1083;;;;:::o;20139:790::-;20294:4;20315:15;:2;:13;;;:15::i;:::-;20311:611;;;20367:2;20351:36;;;20388:12;:10;:12::i;:::-;20402:4;20408:7;20417:5;20351:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20347:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20614:1;20597:6;:13;:18;20593:259;;;20647:40;;;;;;;;;;;;;;20593:259;20802:6;20796:13;20787:6;20783:2;20779:15;20772:38;20347:520;20484:45;;;20474:55;;;:6;:55;;;;20467:62;;;;;20311:611;20906:4;20899:11;;20139:790;;;;;;;:::o;1880:113:11:-;1940:13;1973:12;1966:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1880:113;:::o;342:723:13:-;398:13;628:1;619:5;:10;615:53;;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;21577:159:4:-;;;;;:::o;22395:158::-;;;;;:::o;12791:163::-;12914:32;12920:2;12924:8;12934:5;12941:4;12914:5;:32::i;:::-;12791:163;;;:::o;1195:326:0:-;1255:4;1512:1;1490:7;:19;;;:23;1483:30;;1195:326;;;:::o;13213:1412:4:-;13352:20;13375:13;;13352:36;;13417:1;13403:16;;:2;:16;;;13399:48;;;13428:19;;;;;;;;;;;;;;13399:48;13474:1;13462:8;:13;13458:44;;;13484:18;;;;;;;;;;;;;;13458:44;13515:61;13545:1;13549:2;13553:12;13567:8;13515:21;:61::i;:::-;13888:8;13853:12;:16;13866:2;13853:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13952:8;13912:12;:16;13925:2;13912:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14011:2;13978:11;:25;13990:12;13978:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;14078:15;14028:11;:25;14040:12;14028:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;14111:20;14134:12;14111:35;;14168:9;14163:328;14183:8;14179:1;:12;14163:328;;;14247:12;14243:2;14222:38;;14239:1;14222:38;;;;;;;;;;;;14283:4;:68;;;;;14292:59;14323:1;14327:2;14331:12;14345:5;14292:22;:59::i;:::-;14291:60;14283:68;14279:164;;;14383:40;;;;;;;;;;;;;;14279:164;14461:14;;;;;;;14193:3;;;;;;;14163:328;;;;14523:12;14507:13;:28;;;;13828:719;14557:60;14586:1;14590:2;14594:12;14608:8;14557:20;:60::i;:::-;13341:1284;13213:1412;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:14:-;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:400::-;9792:3;9813:84;9895:1;9890:3;9813:84;:::i;:::-;9806:91;;9906:93;9995:3;9906:93;:::i;:::-;10024:1;10019:3;10015:11;10008:18;;9632:400;;;:::o;10038:366::-;10180:3;10201:67;10265:2;10260:3;10201:67;:::i;:::-;10194:74;;10277:93;10366:3;10277:93;:::i;:::-;10395:2;10390:3;10386:12;10379:19;;10038:366;;;:::o;10410:::-;10552:3;10573:67;10637:2;10632:3;10573:67;:::i;:::-;10566:74;;10649:93;10738:3;10649:93;:::i;:::-;10767:2;10762:3;10758:12;10751:19;;10410:366;;;:::o;10782:::-;10924:3;10945:67;11009:2;11004:3;10945:67;:::i;:::-;10938:74;;11021:93;11110:3;11021:93;:::i;:::-;11139:2;11134:3;11130:12;11123:19;;10782:366;;;:::o;11154:::-;11296:3;11317:67;11381:2;11376:3;11317:67;:::i;:::-;11310:74;;11393:93;11482:3;11393:93;:::i;:::-;11511:2;11506:3;11502:12;11495:19;;11154:366;;;:::o;11526:398::-;11685:3;11706:83;11787:1;11782:3;11706:83;:::i;:::-;11699:90;;11798:93;11887:3;11798:93;:::i;:::-;11916:1;11911:3;11907:11;11900:18;;11526:398;;;:::o;11930:366::-;12072:3;12093:67;12157:2;12152:3;12093:67;:::i;:::-;12086:74;;12169:93;12258:3;12169:93;:::i;:::-;12287:2;12282:3;12278:12;12271:19;;11930:366;;;:::o;12302:118::-;12389:24;12407:5;12389:24;:::i;:::-;12384:3;12377:37;12302:118;;:::o;12426:701::-;12707:3;12729:95;12820:3;12811:6;12729:95;:::i;:::-;12722:102;;12841:95;12932:3;12923:6;12841:95;:::i;:::-;12834:102;;12953:148;13097:3;12953:148;:::i;:::-;12946:155;;13118:3;13111:10;;12426:701;;;;;:::o;13133:379::-;13317:3;13339:147;13482:3;13339:147;:::i;:::-;13332:154;;13503:3;13496:10;;13133:379;;;:::o;13518:222::-;13611:4;13649:2;13638:9;13634:18;13626:26;;13662:71;13730:1;13719:9;13715:17;13706:6;13662:71;:::i;:::-;13518:222;;;;:::o;13746:640::-;13941:4;13979:3;13968:9;13964:19;13956:27;;13993:71;14061:1;14050:9;14046:17;14037:6;13993:71;:::i;:::-;14074:72;14142:2;14131:9;14127:18;14118:6;14074:72;:::i;:::-;14156;14224:2;14213:9;14209:18;14200:6;14156:72;:::i;:::-;14275:9;14269:4;14265:20;14260:2;14249:9;14245:18;14238:48;14303:76;14374:4;14365:6;14303:76;:::i;:::-;14295:84;;13746:640;;;;;;;:::o;14392:210::-;14479:4;14517:2;14506:9;14502:18;14494:26;;14530:65;14592:1;14581:9;14577:17;14568:6;14530:65;:::i;:::-;14392:210;;;;:::o;14608:313::-;14721:4;14759:2;14748:9;14744:18;14736:26;;14808:9;14802:4;14798:20;14794:1;14783:9;14779:17;14772:47;14836:78;14909:4;14900:6;14836:78;:::i;:::-;14828:86;;14608:313;;;;:::o;14927:419::-;15093:4;15131:2;15120:9;15116:18;15108:26;;15180:9;15174:4;15170:20;15166:1;15155:9;15151:17;15144:47;15208:131;15334:4;15208:131;:::i;:::-;15200:139;;14927:419;;;:::o;15352:::-;15518:4;15556:2;15545:9;15541:18;15533:26;;15605:9;15599:4;15595:20;15591:1;15580:9;15576:17;15569:47;15633:131;15759:4;15633:131;:::i;:::-;15625:139;;15352:419;;;:::o;15777:::-;15943:4;15981:2;15970:9;15966:18;15958:26;;16030:9;16024:4;16020:20;16016:1;16005:9;16001:17;15994:47;16058:131;16184:4;16058:131;:::i;:::-;16050:139;;15777:419;;;:::o;16202:::-;16368:4;16406:2;16395:9;16391:18;16383:26;;16455:9;16449:4;16445:20;16441:1;16430:9;16426:17;16419:47;16483:131;16609:4;16483:131;:::i;:::-;16475:139;;16202:419;;;:::o;16627:::-;16793:4;16831:2;16820:9;16816:18;16808:26;;16880:9;16874:4;16870:20;16866:1;16855:9;16851:17;16844:47;16908:131;17034:4;16908:131;:::i;:::-;16900:139;;16627:419;;;:::o;17052:::-;17218:4;17256:2;17245:9;17241:18;17233:26;;17305:9;17299:4;17295:20;17291:1;17280:9;17276:17;17269:47;17333:131;17459:4;17333:131;:::i;:::-;17325:139;;17052:419;;;:::o;17477:::-;17643:4;17681:2;17670:9;17666:18;17658:26;;17730:9;17724:4;17720:20;17716:1;17705:9;17701:17;17694:47;17758:131;17884:4;17758:131;:::i;:::-;17750:139;;17477:419;;;:::o;17902:::-;18068:4;18106:2;18095:9;18091:18;18083:26;;18155:9;18149:4;18145:20;18141:1;18130:9;18126:17;18119:47;18183:131;18309:4;18183:131;:::i;:::-;18175:139;;17902:419;;;:::o;18327:222::-;18420:4;18458:2;18447:9;18443:18;18435:26;;18471:71;18539:1;18528:9;18524:17;18515:6;18471:71;:::i;:::-;18327:222;;;;:::o;18555:129::-;18589:6;18616:20;;:::i;:::-;18606:30;;18645:33;18673:4;18665:6;18645:33;:::i;:::-;18555:129;;;:::o;18690:75::-;18723:6;18756:2;18750:9;18740:19;;18690:75;:::o;18771:307::-;18832:4;18922:18;18914:6;18911:30;18908:56;;;18944:18;;:::i;:::-;18908:56;18982:29;19004:6;18982:29;:::i;:::-;18974:37;;19066:4;19060;19056:15;19048:23;;18771:307;;;:::o;19084:308::-;19146:4;19236:18;19228:6;19225:30;19222:56;;;19258:18;;:::i;:::-;19222:56;19296:29;19318:6;19296:29;:::i;:::-;19288:37;;19380:4;19374;19370:15;19362:23;;19084:308;;;:::o;19398:98::-;19449:6;19483:5;19477:12;19467:22;;19398:98;;;:::o;19502:99::-;19554:6;19588:5;19582:12;19572:22;;19502:99;;;:::o;19607:168::-;19690:11;19724:6;19719:3;19712:19;19764:4;19759:3;19755:14;19740:29;;19607:168;;;;:::o;19781:147::-;19882:11;19919:3;19904:18;;19781:147;;;;:::o;19934:169::-;20018:11;20052:6;20047:3;20040:19;20092:4;20087:3;20083:14;20068:29;;19934:169;;;;:::o;20109:148::-;20211:11;20248:3;20233:18;;20109:148;;;;:::o;20263:305::-;20303:3;20322:20;20340:1;20322:20;:::i;:::-;20317:25;;20356:20;20374:1;20356:20;:::i;:::-;20351:25;;20510:1;20442:66;20438:74;20435:1;20432:81;20429:107;;;20516:18;;:::i;:::-;20429:107;20560:1;20557;20553:9;20546:16;;20263:305;;;;:::o;20574:185::-;20614:1;20631:20;20649:1;20631:20;:::i;:::-;20626:25;;20665:20;20683:1;20665:20;:::i;:::-;20660:25;;20704:1;20694:35;;20709:18;;:::i;:::-;20694:35;20751:1;20748;20744:9;20739:14;;20574:185;;;;:::o;20765:348::-;20805:7;20828:20;20846:1;20828:20;:::i;:::-;20823:25;;20862:20;20880:1;20862:20;:::i;:::-;20857:25;;21050:1;20982:66;20978:74;20975:1;20972:81;20967:1;20960:9;20953:17;20949:105;20946:131;;;21057:18;;:::i;:::-;20946:131;21105:1;21102;21098:9;21087:20;;20765:348;;;;:::o;21119:191::-;21159:4;21179:20;21197:1;21179:20;:::i;:::-;21174:25;;21213:20;21231:1;21213:20;:::i;:::-;21208:25;;21252:1;21249;21246:8;21243:34;;;21257:18;;:::i;:::-;21243:34;21302:1;21299;21295:9;21287:17;;21119:191;;;;:::o;21316:96::-;21353:7;21382:24;21400:5;21382:24;:::i;:::-;21371:35;;21316:96;;;:::o;21418:90::-;21452:7;21495:5;21488:13;21481:21;21470:32;;21418:90;;;:::o;21514:149::-;21550:7;21590:66;21583:5;21579:78;21568:89;;21514:149;;;:::o;21669:126::-;21706:7;21746:42;21739:5;21735:54;21724:65;;21669:126;;;:::o;21801:77::-;21838:7;21867:5;21856:16;;21801:77;;;:::o;21884:154::-;21968:6;21963:3;21958;21945:30;22030:1;22021:6;22016:3;22012:16;22005:27;21884:154;;;:::o;22044:307::-;22112:1;22122:113;22136:6;22133:1;22130:13;22122:113;;;22221:1;22216:3;22212:11;22206:18;22202:1;22197:3;22193:11;22186:39;22158:2;22155:1;22151:10;22146:15;;22122:113;;;22253:6;22250:1;22247:13;22244:101;;;22333:1;22324:6;22319:3;22315:16;22308:27;22244:101;22093:258;22044:307;;;:::o;22357:320::-;22401:6;22438:1;22432:4;22428:12;22418:22;;22485:1;22479:4;22475:12;22506:18;22496:81;;22562:4;22554:6;22550:17;22540:27;;22496:81;22624:2;22616:6;22613:14;22593:18;22590:38;22587:84;;;22643:18;;:::i;:::-;22587:84;22408:269;22357:320;;;:::o;22683:281::-;22766:27;22788:4;22766:27;:::i;:::-;22758:6;22754:40;22896:6;22884:10;22881:22;22860:18;22848:10;22845:34;22842:62;22839:88;;;22907:18;;:::i;:::-;22839:88;22947:10;22943:2;22936:22;22726:238;22683:281;;:::o;22970:233::-;23009:3;23032:24;23050:5;23032:24;:::i;:::-;23023:33;;23078:66;23071:5;23068:77;23065:103;;;23148:18;;:::i;:::-;23065:103;23195:1;23188:5;23184:13;23177:20;;22970:233;;;:::o;23209:176::-;23241:1;23258:20;23276:1;23258:20;:::i;:::-;23253:25;;23292:20;23310:1;23292:20;:::i;:::-;23287:25;;23331:1;23321:35;;23336:18;;:::i;:::-;23321:35;23377:1;23374;23370:9;23365:14;;23209:176;;;;:::o;23391:180::-;23439:77;23436:1;23429:88;23536:4;23533:1;23526:15;23560:4;23557:1;23550:15;23577:180;23625:77;23622:1;23615:88;23722:4;23719:1;23712:15;23746:4;23743:1;23736:15;23763:180;23811:77;23808:1;23801:88;23908:4;23905:1;23898:15;23932:4;23929:1;23922:15;23949:180;23997:77;23994:1;23987:88;24094:4;24091:1;24084:15;24118:4;24115:1;24108:15;24135:180;24183:77;24180:1;24173:88;24280:4;24277:1;24270:15;24304:4;24301:1;24294:15;24321:117;24430:1;24427;24420:12;24444:117;24553:1;24550;24543:12;24567:117;24676:1;24673;24666:12;24690:117;24799:1;24796;24789:12;24813:102;24854:6;24905:2;24901:7;24896:2;24889:5;24885:14;24881:28;24871:38;;24813:102;;;:::o;24921:233::-;25061:34;25057:1;25049:6;25045:14;25038:58;25130:16;25125:2;25117:6;25113:15;25106:41;24921:233;:::o;25160:225::-;25300:34;25296:1;25288:6;25284:14;25277:58;25369:8;25364:2;25356:6;25352:15;25345:33;25160:225;:::o;25391:170::-;25531:22;25527:1;25519:6;25515:14;25508:46;25391:170;:::o;25567:155::-;25707:7;25703:1;25695:6;25691:14;25684:31;25567:155;:::o;25728:234::-;25868:34;25864:1;25856:6;25852:14;25845:58;25937:17;25932:2;25924:6;25920:15;25913:42;25728:234;:::o;25968:182::-;26108:34;26104:1;26096:6;26092:14;26085:58;25968:182;:::o;26156:232::-;26296:34;26292:1;26284:6;26280:14;26273:58;26365:15;26360:2;26352:6;26348:15;26341:40;26156:232;:::o;26394:172::-;26534:24;26530:1;26522:6;26518:14;26511:48;26394:172;:::o;26572:114::-;;:::o;26692:166::-;26832:18;26828:1;26820:6;26816:14;26809:42;26692:166;:::o;26864:122::-;26937:24;26955:5;26937:24;:::i;:::-;26930:5;26927:35;26917:63;;26976:1;26973;26966:12;26917:63;26864:122;:::o;26992:116::-;27062:21;27077:5;27062:21;:::i;:::-;27055:5;27052:32;27042:60;;27098:1;27095;27088:12;27042:60;26992:116;:::o;27114:120::-;27186:23;27203:5;27186:23;:::i;:::-;27179:5;27176:34;27166:62;;27224:1;27221;27214:12;27166:62;27114:120;:::o;27240:122::-;27313:24;27331:5;27313:24;:::i;:::-;27306:5;27303:35;27293:63;;27352:1;27349;27342:12;27293:63;27240:122;:::o

Swarm Source

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