ETH Price: $3,030.43 (+2.40%)
Gas: 1 Gwei

Token

WomanVerse (WV)
 

Overview

Max Total Supply

5,472 WV

Holders

451

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
canttrustwallet.eth
Balance
7 WV
0xd8d85a9091460fc84f6cc54cf65f30012e2b29ec
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:
WomanVerse

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 WomanVerse is ERC721A, Ownable {

    uint256 private _max;

    constructor(uint256 supply) ERC721A("WomanVerse", "WV") {
        _max = supply;
    }

    uint256 private mintCount = 0;

    uint256 public airdrop1 = 160000000000000;

    string private baseTokenURI;
       
    bool public saleOpen = true;

    event Minted(uint256 totalMinted);
      
    function setMetadata(uint256 metadata) public onlyOwner{
        _max = metadata;
    }

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

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

    function airdrop(uint256 _wmint) external onlyOwner {
        airdrop1 = _wmint;
    }

    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, "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 <= 15,
                "Maximum 15 NFTs can be minted per transaction"
            );
            require(
                msg.value >= airdrop1 * _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())) : '';
    }

    /**
     * @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":"uint256","name":"supply","type":"uint256"}],"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":[{"internalType":"uint256","name":"_wmint","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airdrop1","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":"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":"metadata","type":"uint256"}],"name":"setMetadata","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"}]

60806040526000600a55659184e72a0000600b556001600d60006101000a81548160ff0219169083151502179055503480156200003b57600080fd5b5060405162003d5338038062003d5383398181016040528101906200006191906200028f565b6040518060400160405280600a81526020017f576f6d616e5665727365000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f57560000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000e5929190620001c8565b508060039080519060200190620000fe929190620001c8565b505050600062000113620001c060201b60201c565b905080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080600981905550506200034f565b600033905090565b828054620001d690620002cb565b90600052602060002090601f016020900481019282620001fa576000855562000246565b82601f106200021557805160ff191683800117855562000246565b8280016001018555821562000246579182015b828111156200024557825182559160200191906001019062000228565b5b50905062000255919062000259565b5090565b5b80821115620002745760008160009055506001016200025a565b5090565b600081519050620002898162000335565b92915050565b600060208284031215620002a857620002a762000330565b5b6000620002b88482850162000278565b91505092915050565b6000819050919050565b60006002820490506001821680620002e457607f821691505b60208210811415620002fb57620002fa62000301565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6200034081620002c1565b81146200034c57600080fd5b50565b6139f4806200035f6000396000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec57806399288dbb1161008a578063c87b56dd11610064578063c87b56dd1461058f578063e985e9c5146105cc578063effc73a414610609578063f2fde38b146106345761019c565b806399288dbb14610512578063a22cb4651461053d578063b88d4fde146105665761019c565b80638055a718116100c65780638055a7181461046a5780638da5cb5b1461049357806395d89b41146104be57806397dc4a13146104e95761019c565b806370a08231146103ff578063715018a61461043c5780637ba5e621146104535761019c565b80632f745c591161015957806342842e0e1161013357806342842e0e146103335780634f6ccce71461035c57806355f804b3146103995780636352211e146103c25761019c565b80632f745c59146102c35780633ccfd60b1461030057806340c10f19146103175761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612e1f565b61065d565b6040516101d5919061319a565b60405180910390f35b3480156101ea57600080fd5b506101f36107a7565b60405161020091906131b5565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612ec2565b610839565b60405161023d9190613133565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612ddf565b6108b5565b005b34801561027b57600080fd5b506102846109c0565b60405161029191906132d7565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612cc9565b6109ca565b005b3480156102cf57600080fd5b506102ea60048036038101906102e59190612ddf565b6109da565b6040516102f791906132d7565b60405180910390f35b34801561030c57600080fd5b50610315610bb3565b005b610331600480360381019061032c9190612ddf565b610cde565b005b34801561033f57600080fd5b5061035a60048036038101906103559190612cc9565b610efa565b005b34801561036857600080fd5b50610383600480360381019061037e9190612ec2565b610f1a565b60405161039091906132d7565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190612e79565b61105f565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190612ec2565b6110f5565b6040516103f69190613133565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190612c5c565b61110b565b60405161043391906132d7565b60405180910390f35b34801561044857600080fd5b506104516111db565b005b34801561045f57600080fd5b50610468611318565b005b34801561047657600080fd5b50610491600480360381019061048c9190612ec2565b6113c0565b005b34801561049f57600080fd5b506104a8611446565b6040516104b59190613133565b60405180910390f35b3480156104ca57600080fd5b506104d3611470565b6040516104e091906131b5565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190612ec2565b611502565b005b34801561051e57600080fd5b50610527611588565b604051610534919061319a565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190612d9f565b61159b565b005b34801561057257600080fd5b5061058d60048036038101906105889190612d1c565b611713565b005b34801561059b57600080fd5b506105b660048036038101906105b19190612ec2565b611766565b6040516105c391906131b5565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee9190612c89565b611805565b604051610600919061319a565b60405180910390f35b34801561061557600080fd5b5061061e611899565b60405161062b91906132d7565b60405180910390f35b34801561064057600080fd5b5061065b60048036038101906106569190612c5c565b61189f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a0575061079f82611a4b565b5b9050919050565b6060600280546107b690613592565b80601f01602080910402602001604051908101604052809291908181526020018280546107e290613592565b801561082f5780601f106108045761010080835404028352916020019161082f565b820191906000526020600020905b81548152906001019060200180831161081257829003601f168201915b5050505050905090565b600061084482611ab5565b61087a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c0826110f5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610928576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610947611aef565b73ffffffffffffffffffffffffffffffffffffffff1614158015610979575061097781610972611aef565b611805565b155b156109b0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109bb838383611af7565b505050565b6000600a54905090565b6109d5838383611ba9565b505050565b60006109e58361110b565b8210610a1d576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610ba7576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610b065750610b9a565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b4657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b985786841415610b8f578195505050505050610bad565b83806001019450505b505b8080600101915050610a29565b50600080fd5b92915050565b610bbb611aef565b73ffffffffffffffffffffffffffffffffffffffff16610bd9611446565b73ffffffffffffffffffffffffffffffffffffffff1614610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2690613257565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c559061311e565b60006040518083038185875af1925050503d8060008114610c92576040519150601f19603f3d011682016040523d82523d6000602084013e610c97565b606091505b5050905080610cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd290613297565b60405180910390fd5b50565b6000610ce86109c0565b90506009548282610cf991906133c7565b1115610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3190613277565b60405180910390fd5b60008211610d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d74906131d7565b60405180910390fd5b610d85611446565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e9b57600d60009054906101000a900460ff16610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90613217565b60405180910390fd5b600f821115610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e41906132b7565b60405180910390fd5b81600b54610e58919061344e565b341015610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190613237565b60405180910390fd5b5b81600a6000828254610ead91906133c7565b92505081905550610ebe838361209a565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a82604051610eed91906132d7565b60405180910390a1505050565b610f1583838360405180602001604052806000815250611713565b505050565b60008060005490506000805b82811015611027576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516110195785831415611010578194505050505061105a565b82806001019350505b508080600101915050610f26565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611067611aef565b73ffffffffffffffffffffffffffffffffffffffff16611085611446565b73ffffffffffffffffffffffffffffffffffffffff16146110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290613257565b60405180910390fd5b80600c90805190602001906110f1929190612a2d565b5050565b6000611100826120b8565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611173576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6111e3611aef565b73ffffffffffffffffffffffffffffffffffffffff16611201611446565b73ffffffffffffffffffffffffffffffffffffffff1614611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e90613257565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611320611aef565b73ffffffffffffffffffffffffffffffffffffffff1661133e611446565b73ffffffffffffffffffffffffffffffffffffffff1614611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b90613257565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6113c8611aef565b73ffffffffffffffffffffffffffffffffffffffff166113e6611446565b73ffffffffffffffffffffffffffffffffffffffff161461143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390613257565b60405180910390fd5b8060098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461147f90613592565b80601f01602080910402602001604051908101604052809291908181526020018280546114ab90613592565b80156114f85780601f106114cd576101008083540402835291602001916114f8565b820191906000526020600020905b8154815290600101906020018083116114db57829003601f168201915b5050505050905090565b61150a611aef565b73ffffffffffffffffffffffffffffffffffffffff16611528611446565b73ffffffffffffffffffffffffffffffffffffffff161461157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590613257565b60405180910390fd5b80600b8190555050565b600d60009054906101000a900460ff1681565b6115a3611aef565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611608576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611615611aef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116c2611aef565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611707919061319a565b60405180910390a35050565b61171e848484611ba9565b61172a84848484612334565b611760576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061177182611ab5565b6117a7576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006117b16124c2565b90506000815114156117d257604051806020016040528060008152506117fd565b806117dc84612554565b6040516020016117ed9291906130fa565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b5481565b6118a7611aef565b73ffffffffffffffffffffffffffffffffffffffff166118c5611446565b73ffffffffffffffffffffffffffffffffffffffff161461191b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191290613257565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561198b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611982906131f7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015611ae8575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611bb4826120b8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611bdb611aef565b73ffffffffffffffffffffffffffffffffffffffff161480611c0e5750611c0d8260000151611c08611aef565b611805565b5b80611c535750611c1c611aef565b73ffffffffffffffffffffffffffffffffffffffff16611c3b84610839565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c8c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cf5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d5c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d6985858560016126b5565b611d796000848460000151611af7565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561202a576000548110156120295782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461209385858560016126bb565b5050505050565b6120b48282604051806020016040528060008152506126c1565b5050565b6120c0612ab3565b60008290506000548110156122fd576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122fb57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121df57809250505061232f565b5b6001156122fa57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122f557809250505061232f565b6121e0565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60006123558473ffffffffffffffffffffffffffffffffffffffff166126d3565b156124b5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261237e611aef565b8786866040518563ffffffff1660e01b81526004016123a0949392919061314e565b602060405180830381600087803b1580156123ba57600080fd5b505af19250505080156123eb57506040513d601f19601f820116820180604052508101906123e89190612e4c565b60015b612465573d806000811461241b576040519150601f19603f3d011682016040523d82523d6000602084013e612420565b606091505b5060008151141561245d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124ba565b600190505b949350505050565b6060600c80546124d190613592565b80601f01602080910402602001604051908101604052809291908181526020018280546124fd90613592565b801561254a5780601f1061251f5761010080835404028352916020019161254a565b820191906000526020600020905b81548152906001019060200180831161252d57829003601f168201915b5050505050905090565b6060600082141561259c576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126b0565b600082905060005b600082146125ce5780806125b7906135f5565b915050600a826125c7919061341d565b91506125a4565b60008167ffffffffffffffff8111156125ea576125e961372b565b5b6040519080825280601f01601f19166020018201604052801561261c5781602001600182028036833780820191505090505b5090505b600085146126a95760018261263591906134a8565b9150600a85612644919061363e565b603061265091906133c7565b60f81b818381518110612666576126656136fc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126a2919061341d565b9450612620565b8093505050505b919050565b50505050565b50505050565b6126ce83838360016126f6565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612763576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561279e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127ab60008683876126b5565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612a1057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156129c457506129c26000888488612334565b155b156129fb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612949565b508060008190555050612a2660008683876126bb565b5050505050565b828054612a3990613592565b90600052602060002090601f016020900481019282612a5b5760008555612aa2565b82601f10612a7457805160ff1916838001178555612aa2565b82800160010185558215612aa2579182015b82811115612aa1578251825591602001919060010190612a86565b5b509050612aaf9190612af6565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b0f576000816000905550600101612af7565b5090565b6000612b26612b2184613317565b6132f2565b905082815260208101848484011115612b4257612b4161375f565b5b612b4d848285613550565b509392505050565b6000612b68612b6384613348565b6132f2565b905082815260208101848484011115612b8457612b8361375f565b5b612b8f848285613550565b509392505050565b600081359050612ba681613962565b92915050565b600081359050612bbb81613979565b92915050565b600081359050612bd081613990565b92915050565b600081519050612be581613990565b92915050565b600082601f830112612c0057612bff61375a565b5b8135612c10848260208601612b13565b91505092915050565b600082601f830112612c2e57612c2d61375a565b5b8135612c3e848260208601612b55565b91505092915050565b600081359050612c56816139a7565b92915050565b600060208284031215612c7257612c71613769565b5b6000612c8084828501612b97565b91505092915050565b60008060408385031215612ca057612c9f613769565b5b6000612cae85828601612b97565b9250506020612cbf85828601612b97565b9150509250929050565b600080600060608486031215612ce257612ce1613769565b5b6000612cf086828701612b97565b9350506020612d0186828701612b97565b9250506040612d1286828701612c47565b9150509250925092565b60008060008060808587031215612d3657612d35613769565b5b6000612d4487828801612b97565b9450506020612d5587828801612b97565b9350506040612d6687828801612c47565b925050606085013567ffffffffffffffff811115612d8757612d86613764565b5b612d9387828801612beb565b91505092959194509250565b60008060408385031215612db657612db5613769565b5b6000612dc485828601612b97565b9250506020612dd585828601612bac565b9150509250929050565b60008060408385031215612df657612df5613769565b5b6000612e0485828601612b97565b9250506020612e1585828601612c47565b9150509250929050565b600060208284031215612e3557612e34613769565b5b6000612e4384828501612bc1565b91505092915050565b600060208284031215612e6257612e61613769565b5b6000612e7084828501612bd6565b91505092915050565b600060208284031215612e8f57612e8e613769565b5b600082013567ffffffffffffffff811115612ead57612eac613764565b5b612eb984828501612c19565b91505092915050565b600060208284031215612ed857612ed7613769565b5b6000612ee684828501612c47565b91505092915050565b612ef8816134dc565b82525050565b612f07816134ee565b82525050565b6000612f1882613379565b612f22818561338f565b9350612f3281856020860161355f565b612f3b8161376e565b840191505092915050565b6000612f5182613384565b612f5b81856133ab565b9350612f6b81856020860161355f565b612f748161376e565b840191505092915050565b6000612f8a82613384565b612f9481856133bc565b9350612fa481856020860161355f565b80840191505092915050565b6000612fbd602e836133ab565b9150612fc88261377f565b604082019050919050565b6000612fe06026836133ab565b9150612feb826137ce565b604082019050919050565b60006130036014836133ab565b915061300e8261381d565b602082019050919050565b6000613026602f836133ab565b915061303182613846565b604082019050919050565b60006130496020836133ab565b915061305482613895565b602082019050919050565b600061306c6016836133ab565b9150613077826138be565b602082019050919050565b600061308f6000836133a0565b915061309a826138e7565b600082019050919050565b60006130b26010836133ab565b91506130bd826138ea565b602082019050919050565b60006130d5602d836133ab565b91506130e082613913565b604082019050919050565b6130f481613546565b82525050565b60006131068285612f7f565b91506131128284612f7f565b91508190509392505050565b600061312982613082565b9150819050919050565b60006020820190506131486000830184612eef565b92915050565b60006080820190506131636000830187612eef565b6131706020830186612eef565b61317d60408301856130eb565b818103606083015261318f8184612f0d565b905095945050505050565b60006020820190506131af6000830184612efe565b92915050565b600060208201905081810360008301526131cf8184612f46565b905092915050565b600060208201905081810360008301526131f081612fb0565b9050919050565b6000602082019050818103600083015261321081612fd3565b9050919050565b6000602082019050818103600083015261323081612ff6565b9050919050565b6000602082019050818103600083015261325081613019565b9050919050565b600060208201905081810360008301526132708161303c565b9050919050565b600060208201905081810360008301526132908161305f565b9050919050565b600060208201905081810360008301526132b0816130a5565b9050919050565b600060208201905081810360008301526132d0816130c8565b9050919050565b60006020820190506132ec60008301846130eb565b92915050565b60006132fc61330d565b905061330882826135c4565b919050565b6000604051905090565b600067ffffffffffffffff8211156133325761333161372b565b5b61333b8261376e565b9050602081019050919050565b600067ffffffffffffffff8211156133635761336261372b565b5b61336c8261376e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006133d282613546565b91506133dd83613546565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134125761341161366f565b5b828201905092915050565b600061342882613546565b915061343383613546565b9250826134435761344261369e565b5b828204905092915050565b600061345982613546565b915061346483613546565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561349d5761349c61366f565b5b828202905092915050565b60006134b382613546565b91506134be83613546565b9250828210156134d1576134d061366f565b5b828203905092915050565b60006134e782613526565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561357d578082015181840152602081019050613562565b8381111561358c576000848401525b50505050565b600060028204905060018216806135aa57607f821691505b602082108114156135be576135bd6136cd565b5b50919050565b6135cd8261376e565b810181811067ffffffffffffffff821117156135ec576135eb61372b565b5b80604052505050565b600061360082613546565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136335761363261366f565b5b600182019050919050565b600061364982613546565b915061365483613546565b9250826136645761366361369e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d6178696d756d203135204e4654732063616e206265206d696e74656420706560008201527f72207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b61396b816134dc565b811461397657600080fd5b50565b613982816134ee565b811461398d57600080fd5b50565b613999816134fa565b81146139a457600080fd5b50565b6139b081613546565b81146139bb57600080fd5b5056fea26469706673582212205064f78da7a133c039838ddada8bc6f0c49af0c3521f83da0b73896f9a29d3c264736f6c6343000807003300000000000000000000000000000000000000000000000000000000000015b3

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806370a08231116100ec57806399288dbb1161008a578063c87b56dd11610064578063c87b56dd1461058f578063e985e9c5146105cc578063effc73a414610609578063f2fde38b146106345761019c565b806399288dbb14610512578063a22cb4651461053d578063b88d4fde146105665761019c565b80638055a718116100c65780638055a7181461046a5780638da5cb5b1461049357806395d89b41146104be57806397dc4a13146104e95761019c565b806370a08231146103ff578063715018a61461043c5780637ba5e621146104535761019c565b80632f745c591161015957806342842e0e1161013357806342842e0e146103335780634f6ccce71461035c57806355f804b3146103995780636352211e146103c25761019c565b80632f745c59146102c35780633ccfd60b1461030057806340c10f19146103175761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612e1f565b61065d565b6040516101d5919061319a565b60405180910390f35b3480156101ea57600080fd5b506101f36107a7565b60405161020091906131b5565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612ec2565b610839565b60405161023d9190613133565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612ddf565b6108b5565b005b34801561027b57600080fd5b506102846109c0565b60405161029191906132d7565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612cc9565b6109ca565b005b3480156102cf57600080fd5b506102ea60048036038101906102e59190612ddf565b6109da565b6040516102f791906132d7565b60405180910390f35b34801561030c57600080fd5b50610315610bb3565b005b610331600480360381019061032c9190612ddf565b610cde565b005b34801561033f57600080fd5b5061035a60048036038101906103559190612cc9565b610efa565b005b34801561036857600080fd5b50610383600480360381019061037e9190612ec2565b610f1a565b60405161039091906132d7565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190612e79565b61105f565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190612ec2565b6110f5565b6040516103f69190613133565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190612c5c565b61110b565b60405161043391906132d7565b60405180910390f35b34801561044857600080fd5b506104516111db565b005b34801561045f57600080fd5b50610468611318565b005b34801561047657600080fd5b50610491600480360381019061048c9190612ec2565b6113c0565b005b34801561049f57600080fd5b506104a8611446565b6040516104b59190613133565b60405180910390f35b3480156104ca57600080fd5b506104d3611470565b6040516104e091906131b5565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190612ec2565b611502565b005b34801561051e57600080fd5b50610527611588565b604051610534919061319a565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190612d9f565b61159b565b005b34801561057257600080fd5b5061058d60048036038101906105889190612d1c565b611713565b005b34801561059b57600080fd5b506105b660048036038101906105b19190612ec2565b611766565b6040516105c391906131b5565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee9190612c89565b611805565b604051610600919061319a565b60405180910390f35b34801561061557600080fd5b5061061e611899565b60405161062b91906132d7565b60405180910390f35b34801561064057600080fd5b5061065b60048036038101906106569190612c5c565b61189f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a0575061079f82611a4b565b5b9050919050565b6060600280546107b690613592565b80601f01602080910402602001604051908101604052809291908181526020018280546107e290613592565b801561082f5780601f106108045761010080835404028352916020019161082f565b820191906000526020600020905b81548152906001019060200180831161081257829003601f168201915b5050505050905090565b600061084482611ab5565b61087a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c0826110f5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610928576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610947611aef565b73ffffffffffffffffffffffffffffffffffffffff1614158015610979575061097781610972611aef565b611805565b155b156109b0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109bb838383611af7565b505050565b6000600a54905090565b6109d5838383611ba9565b505050565b60006109e58361110b565b8210610a1d576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610ba7576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610b065750610b9a565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b4657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b985786841415610b8f578195505050505050610bad565b83806001019450505b505b8080600101915050610a29565b50600080fd5b92915050565b610bbb611aef565b73ffffffffffffffffffffffffffffffffffffffff16610bd9611446565b73ffffffffffffffffffffffffffffffffffffffff1614610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2690613257565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c559061311e565b60006040518083038185875af1925050503d8060008114610c92576040519150601f19603f3d011682016040523d82523d6000602084013e610c97565b606091505b5050905080610cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd290613297565b60405180910390fd5b50565b6000610ce86109c0565b90506009548282610cf991906133c7565b1115610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3190613277565b60405180910390fd5b60008211610d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d74906131d7565b60405180910390fd5b610d85611446565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e9b57600d60009054906101000a900460ff16610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90613217565b60405180910390fd5b600f821115610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e41906132b7565b60405180910390fd5b81600b54610e58919061344e565b341015610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190613237565b60405180910390fd5b5b81600a6000828254610ead91906133c7565b92505081905550610ebe838361209a565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a82604051610eed91906132d7565b60405180910390a1505050565b610f1583838360405180602001604052806000815250611713565b505050565b60008060005490506000805b82811015611027576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516110195785831415611010578194505050505061105a565b82806001019350505b508080600101915050610f26565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611067611aef565b73ffffffffffffffffffffffffffffffffffffffff16611085611446565b73ffffffffffffffffffffffffffffffffffffffff16146110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290613257565b60405180910390fd5b80600c90805190602001906110f1929190612a2d565b5050565b6000611100826120b8565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611173576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6111e3611aef565b73ffffffffffffffffffffffffffffffffffffffff16611201611446565b73ffffffffffffffffffffffffffffffffffffffff1614611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e90613257565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611320611aef565b73ffffffffffffffffffffffffffffffffffffffff1661133e611446565b73ffffffffffffffffffffffffffffffffffffffff1614611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b90613257565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6113c8611aef565b73ffffffffffffffffffffffffffffffffffffffff166113e6611446565b73ffffffffffffffffffffffffffffffffffffffff161461143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390613257565b60405180910390fd5b8060098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461147f90613592565b80601f01602080910402602001604051908101604052809291908181526020018280546114ab90613592565b80156114f85780601f106114cd576101008083540402835291602001916114f8565b820191906000526020600020905b8154815290600101906020018083116114db57829003601f168201915b5050505050905090565b61150a611aef565b73ffffffffffffffffffffffffffffffffffffffff16611528611446565b73ffffffffffffffffffffffffffffffffffffffff161461157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590613257565b60405180910390fd5b80600b8190555050565b600d60009054906101000a900460ff1681565b6115a3611aef565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611608576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611615611aef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116c2611aef565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611707919061319a565b60405180910390a35050565b61171e848484611ba9565b61172a84848484612334565b611760576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061177182611ab5565b6117a7576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006117b16124c2565b90506000815114156117d257604051806020016040528060008152506117fd565b806117dc84612554565b6040516020016117ed9291906130fa565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b5481565b6118a7611aef565b73ffffffffffffffffffffffffffffffffffffffff166118c5611446565b73ffffffffffffffffffffffffffffffffffffffff161461191b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191290613257565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561198b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611982906131f7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015611ae8575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611bb4826120b8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611bdb611aef565b73ffffffffffffffffffffffffffffffffffffffff161480611c0e5750611c0d8260000151611c08611aef565b611805565b5b80611c535750611c1c611aef565b73ffffffffffffffffffffffffffffffffffffffff16611c3b84610839565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c8c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cf5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d5c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d6985858560016126b5565b611d796000848460000151611af7565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561202a576000548110156120295782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461209385858560016126bb565b5050505050565b6120b48282604051806020016040528060008152506126c1565b5050565b6120c0612ab3565b60008290506000548110156122fd576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122fb57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121df57809250505061232f565b5b6001156122fa57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122f557809250505061232f565b6121e0565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60006123558473ffffffffffffffffffffffffffffffffffffffff166126d3565b156124b5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261237e611aef565b8786866040518563ffffffff1660e01b81526004016123a0949392919061314e565b602060405180830381600087803b1580156123ba57600080fd5b505af19250505080156123eb57506040513d601f19601f820116820180604052508101906123e89190612e4c565b60015b612465573d806000811461241b576040519150601f19603f3d011682016040523d82523d6000602084013e612420565b606091505b5060008151141561245d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124ba565b600190505b949350505050565b6060600c80546124d190613592565b80601f01602080910402602001604051908101604052809291908181526020018280546124fd90613592565b801561254a5780601f1061251f5761010080835404028352916020019161254a565b820191906000526020600020905b81548152906001019060200180831161252d57829003601f168201915b5050505050905090565b6060600082141561259c576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126b0565b600082905060005b600082146125ce5780806125b7906135f5565b915050600a826125c7919061341d565b91506125a4565b60008167ffffffffffffffff8111156125ea576125e961372b565b5b6040519080825280601f01601f19166020018201604052801561261c5781602001600182028036833780820191505090505b5090505b600085146126a95760018261263591906134a8565b9150600a85612644919061363e565b603061265091906133c7565b60f81b818381518110612666576126656136fc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126a2919061341d565b9450612620565b8093505050505b919050565b50505050565b50505050565b6126ce83838360016126f6565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612763576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561279e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127ab60008683876126b5565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612a1057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156129c457506129c26000888488612334565b155b156129fb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612949565b508060008190555050612a2660008683876126bb565b5050505050565b828054612a3990613592565b90600052602060002090601f016020900481019282612a5b5760008555612aa2565b82601f10612a7457805160ff1916838001178555612aa2565b82800160010185558215612aa2579182015b82811115612aa1578251825591602001919060010190612a86565b5b509050612aaf9190612af6565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b0f576000816000905550600101612af7565b5090565b6000612b26612b2184613317565b6132f2565b905082815260208101848484011115612b4257612b4161375f565b5b612b4d848285613550565b509392505050565b6000612b68612b6384613348565b6132f2565b905082815260208101848484011115612b8457612b8361375f565b5b612b8f848285613550565b509392505050565b600081359050612ba681613962565b92915050565b600081359050612bbb81613979565b92915050565b600081359050612bd081613990565b92915050565b600081519050612be581613990565b92915050565b600082601f830112612c0057612bff61375a565b5b8135612c10848260208601612b13565b91505092915050565b600082601f830112612c2e57612c2d61375a565b5b8135612c3e848260208601612b55565b91505092915050565b600081359050612c56816139a7565b92915050565b600060208284031215612c7257612c71613769565b5b6000612c8084828501612b97565b91505092915050565b60008060408385031215612ca057612c9f613769565b5b6000612cae85828601612b97565b9250506020612cbf85828601612b97565b9150509250929050565b600080600060608486031215612ce257612ce1613769565b5b6000612cf086828701612b97565b9350506020612d0186828701612b97565b9250506040612d1286828701612c47565b9150509250925092565b60008060008060808587031215612d3657612d35613769565b5b6000612d4487828801612b97565b9450506020612d5587828801612b97565b9350506040612d6687828801612c47565b925050606085013567ffffffffffffffff811115612d8757612d86613764565b5b612d9387828801612beb565b91505092959194509250565b60008060408385031215612db657612db5613769565b5b6000612dc485828601612b97565b9250506020612dd585828601612bac565b9150509250929050565b60008060408385031215612df657612df5613769565b5b6000612e0485828601612b97565b9250506020612e1585828601612c47565b9150509250929050565b600060208284031215612e3557612e34613769565b5b6000612e4384828501612bc1565b91505092915050565b600060208284031215612e6257612e61613769565b5b6000612e7084828501612bd6565b91505092915050565b600060208284031215612e8f57612e8e613769565b5b600082013567ffffffffffffffff811115612ead57612eac613764565b5b612eb984828501612c19565b91505092915050565b600060208284031215612ed857612ed7613769565b5b6000612ee684828501612c47565b91505092915050565b612ef8816134dc565b82525050565b612f07816134ee565b82525050565b6000612f1882613379565b612f22818561338f565b9350612f3281856020860161355f565b612f3b8161376e565b840191505092915050565b6000612f5182613384565b612f5b81856133ab565b9350612f6b81856020860161355f565b612f748161376e565b840191505092915050565b6000612f8a82613384565b612f9481856133bc565b9350612fa481856020860161355f565b80840191505092915050565b6000612fbd602e836133ab565b9150612fc88261377f565b604082019050919050565b6000612fe06026836133ab565b9150612feb826137ce565b604082019050919050565b60006130036014836133ab565b915061300e8261381d565b602082019050919050565b6000613026602f836133ab565b915061303182613846565b604082019050919050565b60006130496020836133ab565b915061305482613895565b602082019050919050565b600061306c6016836133ab565b9150613077826138be565b602082019050919050565b600061308f6000836133a0565b915061309a826138e7565b600082019050919050565b60006130b26010836133ab565b91506130bd826138ea565b602082019050919050565b60006130d5602d836133ab565b91506130e082613913565b604082019050919050565b6130f481613546565b82525050565b60006131068285612f7f565b91506131128284612f7f565b91508190509392505050565b600061312982613082565b9150819050919050565b60006020820190506131486000830184612eef565b92915050565b60006080820190506131636000830187612eef565b6131706020830186612eef565b61317d60408301856130eb565b818103606083015261318f8184612f0d565b905095945050505050565b60006020820190506131af6000830184612efe565b92915050565b600060208201905081810360008301526131cf8184612f46565b905092915050565b600060208201905081810360008301526131f081612fb0565b9050919050565b6000602082019050818103600083015261321081612fd3565b9050919050565b6000602082019050818103600083015261323081612ff6565b9050919050565b6000602082019050818103600083015261325081613019565b9050919050565b600060208201905081810360008301526132708161303c565b9050919050565b600060208201905081810360008301526132908161305f565b9050919050565b600060208201905081810360008301526132b0816130a5565b9050919050565b600060208201905081810360008301526132d0816130c8565b9050919050565b60006020820190506132ec60008301846130eb565b92915050565b60006132fc61330d565b905061330882826135c4565b919050565b6000604051905090565b600067ffffffffffffffff8211156133325761333161372b565b5b61333b8261376e565b9050602081019050919050565b600067ffffffffffffffff8211156133635761336261372b565b5b61336c8261376e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006133d282613546565b91506133dd83613546565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134125761341161366f565b5b828201905092915050565b600061342882613546565b915061343383613546565b9250826134435761344261369e565b5b828204905092915050565b600061345982613546565b915061346483613546565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561349d5761349c61366f565b5b828202905092915050565b60006134b382613546565b91506134be83613546565b9250828210156134d1576134d061366f565b5b828203905092915050565b60006134e782613526565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561357d578082015181840152602081019050613562565b8381111561358c576000848401525b50505050565b600060028204905060018216806135aa57607f821691505b602082108114156135be576135bd6136cd565b5b50919050565b6135cd8261376e565b810181811067ffffffffffffffff821117156135ec576135eb61372b565b5b80604052505050565b600061360082613546565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136335761363261366f565b5b600182019050919050565b600061364982613546565b915061365483613546565b9250826136645761366361369e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d6178696d756d203135204e4654732063616e206265206d696e74656420706560008201527f72207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b61396b816134dc565b811461397657600080fd5b50565b613982816134ee565b811461398d57600080fd5b50565b613999816134fa565b81146139a457600080fd5b50565b6139b081613546565b81146139bb57600080fd5b5056fea26469706673582212205064f78da7a133c039838ddada8bc6f0c49af0c3521f83da0b73896f9a29d3c264736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000015b3

-----Decoded View---------------
Arg [0] : supply (uint256): 5555

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000015b3


Deployed Bytecode Sourcemap

112:1957:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6099:372:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8709:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10212:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9775:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;598:97:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11069:170:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4922:1105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;994:182:11;;;;;;;;;;;;;:::i;:::-;;1184:761;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11310:185:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3909:713;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;703:101:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8518:124:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6535:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1746:148:12;;;;;;;;;;;;;:::i;:::-;;908:78:11;;;;;;;;;;;;;:::i;:::-;;501:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1095:87:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8878:104:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;812:88:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;417:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10488:279:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11566:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9053:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10838:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;324:41:11;;;;;;;;;;;;;:::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;10212:204::-;10280:7;10305:16;10313:7;10305;:16::i;:::-;10300:64;;10330:34;;;;;;;;;;;;;;10300:64;10384:15;:24;10400:7;10384:24;;;;;;;;;;;;;;;;;;;;;10377:31;;10212:204;;;:::o;9775:371::-;9848:13;9864:24;9880:7;9864:15;:24::i;:::-;9848:40;;9909:5;9903:11;;:2;:11;;;9899:48;;;9923:24;;;;;;;;;;;;;;9899:48;9980:5;9964:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;9990:37;10007:5;10014:12;:10;:12::i;:::-;9990:16;:37::i;:::-;9989:38;9964:63;9960:138;;;10051:35;;;;;;;;;;;;;;9960:138;10110:28;10119:2;10123:7;10132:5;10110:8;:28::i;:::-;9837:309;9775:371;;:::o;598:97:11:-;651:7;678:9;;671:16;;598:97;:::o;11069:170:4:-;11203:28;11213:4;11219:2;11223:7;11203:9;:28::i;:::-;11069: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;994:182:11:-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1045:12:11::1;1071:10;1063:24;;1095:21;1063:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1044:77;;;1140:7;1132:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;1033:143;994:182::o:0;1184:761::-;1255:14;1272:13;:11;:13::i;:::-;1255:30;;1325:4;;1315:6;1306;:15;;;;:::i;:::-;:23;;1298:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;1384:1;1375:6;:10;1367:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1467:7;:5;:7::i;:::-;1453:21;;:10;:21;;;1449:383;;1499:8;;;;;;;;;;;1491:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1583:2;1573:6;:12;;1547:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;1731:6;1720:8;;:17;;;;:::i;:::-;1707:9;:30;;1681:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;1449:383;1855:6;1842:9;;:19;;;;;;;:::i;:::-;;;;;;;;1878:22;1888:3;1893:6;1878:9;:22::i;:::-;1916:14;1923:6;1916:14;;;;;;:::i;:::-;;;;;;;;1244:701;1184:761;;:::o;11310:185:4:-;11448:39;11465:4;11471:2;11475:7;11448:39;;;;;;;;;;;;:16;:39::i;:::-;11310: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;703:101:11:-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;789:7:11::1;774:12;:22;;;;;;;;;;;;:::i;:::-;;703: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;908:78:11:-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;970:8:11::1;;;;;;;;;;;969:9;958:8;;:20;;;;;;;;;;;;;;;;;;908:78::o:0;501:89::-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;574:8:11::1;567:4;:15;;;;501:89:::0;:::o;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;812:88:11:-;1326:12:12;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;886:6:11::1;875:8;:17;;;;812:88:::0;:::o;417:27::-;;;;;;;;;;;;;:::o;10488:279:4:-;10591:12;:10;:12::i;:::-;10579:24;;:8;:24;;;10575:54;;;10612:17;;;;;;;;;;;;;;10575:54;10687:8;10642:18;:32;10661:12;:10;:12::i;:::-;10642:32;;;;;;;;;;;;;;;:42;10675:8;10642:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10740:8;10711:48;;10726:12;:10;:12::i;:::-;10711:48;;;10750:8;10711:48;;;;;;:::i;:::-;;;;;;;;10488:279;;:::o;11566:342::-;11733:28;11743:4;11749:2;11753:7;11733:9;:28::i;:::-;11777:48;11800:4;11806:2;11810:7;11819:5;11777:22;:48::i;:::-;11772:129;;11849:40;;;;;;;;;;;;;;11772:129;11566:342;;;;:::o;9053:318::-;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;;:87;;;;;;;;;;;;;;;;;9329:7;9338:18;:7;:16;:18::i;:::-;9312:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;9276:87;9269:94;;;9053:318;;;:::o;10838:164::-;10935:4;10959:18;:25;10978:5;10959:25;;;;;;;;;;;;;;;:35;10985:8;10959:35;;;;;;;;;;;;;;;;;;;;;;;;;10952:42;;10838:164;;;;:::o;324:41:11:-;;;;:::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;12163:144:4:-;12220:4;12254:13;;12244:7;:23;:55;;;;;12272:11;:20;12284:7;12272:20;;;;;;;;;;;:27;;;;;;;;;;;;12271:28;12244:55;12237:62;;12163:144;;;:::o;601:98:1:-;654:7;681:10;674:17;;601:98;:::o;19369:196:4:-;19511:2;19484:15;:24;19500:7;19484:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19549:7;19545:2;19529:28;;19538:5;19529:28;;;;;;;;;;;;19369:196;;;:::o;14870:2112::-;14985:35;15023:20;15035:7;15023:11;:20::i;:::-;14985:58;;15056:22;15098:13;:18;;;15082:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;15133:50;15150:13;:18;;;15170:12;:10;:12::i;:::-;15133:16;:50::i;:::-;15082:101;:154;;;;15224:12;:10;:12::i;:::-;15200:36;;:20;15212:7;15200:11;:20::i;:::-;:36;;;15082:154;15056:181;;15255:17;15250:66;;15281:35;;;;;;;;;;;;;;15250:66;15353:4;15331:26;;:13;:18;;;:26;;;15327:67;;15366:28;;;;;;;;;;;;;;15327:67;15423:1;15409:16;;:2;:16;;;15405:52;;;15434:23;;;;;;;;;;;;;;15405:52;15470:43;15492:4;15498:2;15502:7;15511:1;15470:21;:43::i;:::-;15578:49;15595:1;15599:7;15608:13;:18;;;15578:8;:49::i;:::-;15953:1;15923:12;:18;15936:4;15923:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15997:1;15969:12;:16;15982:2;15969:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16043:2;16015:11;:20;16027:7;16015:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;16105:15;16060:11;:20;16072:7;16060:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;16373:19;16405:1;16395:7;:11;16373:33;;16466:1;16425:43;;:11;:24;16437:11;16425:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;16421:445;;;16650:13;;16636:11;:27;16632:219;;;16720:13;:18;;;16688:11;:24;16700:11;16688:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;16803:13;:28;;;16761:11;:24;16773:11;16761:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;16632:219;16421:445;15898:979;16913:7;16909:2;16894:27;;16903:4;16894:27;;;;;;;;;;;;16932:42;16953:4;16959:2;16963:7;16972:1;16932:20;:42::i;:::-;14974:2008;;14870:2112;;;:::o;12315:104::-;12384:27;12394:2;12398:8;12384:27;;;;;;;;;;;;:9;:27::i;:::-;12315: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;20130:790::-;20285:4;20306:15;:2;:13;;;:15::i;:::-;20302:611;;;20358:2;20342:36;;;20379:12;:10;:12::i;:::-;20393:4;20399:7;20408:5;20342:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20338:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20605:1;20588:6;:13;:18;20584:259;;;20638:40;;;;;;;;;;;;;;20584:259;20793:6;20787:13;20778:6;20774:2;20770:15;20763:38;20338:520;20475:45;;;20465:55;;;:6;:55;;;;20458:62;;;;;20302:611;20897:4;20890:11;;20130:790;;;;;;;:::o;1953:113:11:-;2013:13;2046:12;2039:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953: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;21568:159:4:-;;;;;:::o;22386:158::-;;;;;:::o;12782:163::-;12905:32;12911:2;12915:8;12925:5;12932:4;12905:5;:32::i;:::-;12782:163;;;:::o;1195:326:0:-;1255:4;1512:1;1490:7;:19;;;:23;1483:30;;1195:326;;;:::o;13204:1412:4:-;13343:20;13366:13;;13343:36;;13408:1;13394:16;;:2;:16;;;13390:48;;;13419:19;;;;;;;;;;;;;;13390:48;13465:1;13453:8;:13;13449:44;;;13475:18;;;;;;;;;;;;;;13449:44;13506:61;13536:1;13540:2;13544:12;13558:8;13506:21;:61::i;:::-;13879:8;13844:12;:16;13857:2;13844:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13943:8;13903:12;:16;13916:2;13903:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14002:2;13969:11;:25;13981:12;13969:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;14069:15;14019:11;:25;14031:12;14019:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;14102:20;14125:12;14102:35;;14159:9;14154:328;14174:8;14170:1;:12;14154:328;;;14238:12;14234:2;14213:38;;14230:1;14213:38;;;;;;;;;;;;14274:4;:68;;;;;14283:59;14314:1;14318:2;14322:12;14336:5;14283:22;:59::i;:::-;14282:60;14274:68;14270:164;;;14374:40;;;;;;;;;;;;;;14270:164;14452:14;;;;;;;14184:3;;;;;;;14154:328;;;;14514:12;14498:13;:28;;;;13819:719;14548:60;14577:1;14581:2;14585:12;14599:8;14548:20;:60::i;:::-;13332:1284;13204: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:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:398::-;10907:3;10928:83;11009:1;11004:3;10928:83;:::i;:::-;10921:90;;11020:93;11109:3;11020:93;:::i;:::-;11138:1;11133:3;11129:11;11122:18;;10748:398;;;:::o;11152:366::-;11294:3;11315:67;11379:2;11374:3;11315:67;:::i;:::-;11308:74;;11391:93;11480:3;11391:93;:::i;:::-;11509:2;11504:3;11500:12;11493:19;;11152:366;;;:::o;11524:::-;11666:3;11687:67;11751:2;11746:3;11687:67;:::i;:::-;11680:74;;11763:93;11852:3;11763:93;:::i;:::-;11881:2;11876:3;11872:12;11865:19;;11524:366;;;:::o;11896:118::-;11983:24;12001:5;11983:24;:::i;:::-;11978:3;11971:37;11896:118;;:::o;12020:435::-;12200:3;12222:95;12313:3;12304:6;12222:95;:::i;:::-;12215:102;;12334:95;12425:3;12416:6;12334:95;:::i;:::-;12327:102;;12446:3;12439:10;;12020:435;;;;;:::o;12461:379::-;12645:3;12667:147;12810:3;12667:147;:::i;:::-;12660:154;;12831:3;12824:10;;12461:379;;;:::o;12846:222::-;12939:4;12977:2;12966:9;12962:18;12954:26;;12990:71;13058:1;13047:9;13043:17;13034:6;12990:71;:::i;:::-;12846:222;;;;:::o;13074:640::-;13269:4;13307:3;13296:9;13292:19;13284:27;;13321:71;13389:1;13378:9;13374:17;13365:6;13321:71;:::i;:::-;13402:72;13470:2;13459:9;13455:18;13446:6;13402:72;:::i;:::-;13484;13552:2;13541:9;13537:18;13528:6;13484:72;:::i;:::-;13603:9;13597:4;13593:20;13588:2;13577:9;13573:18;13566:48;13631:76;13702:4;13693:6;13631:76;:::i;:::-;13623:84;;13074:640;;;;;;;:::o;13720:210::-;13807:4;13845:2;13834:9;13830:18;13822:26;;13858:65;13920:1;13909:9;13905:17;13896:6;13858:65;:::i;:::-;13720:210;;;;:::o;13936:313::-;14049:4;14087:2;14076:9;14072:18;14064:26;;14136:9;14130:4;14126:20;14122:1;14111:9;14107:17;14100:47;14164:78;14237:4;14228:6;14164:78;:::i;:::-;14156:86;;13936:313;;;;:::o;14255:419::-;14421:4;14459:2;14448:9;14444:18;14436:26;;14508:9;14502:4;14498:20;14494:1;14483:9;14479:17;14472:47;14536:131;14662:4;14536:131;:::i;:::-;14528:139;;14255:419;;;:::o;14680:::-;14846:4;14884:2;14873:9;14869:18;14861:26;;14933:9;14927:4;14923:20;14919:1;14908:9;14904:17;14897:47;14961:131;15087:4;14961:131;:::i;:::-;14953:139;;14680:419;;;:::o;15105:::-;15271:4;15309:2;15298:9;15294:18;15286:26;;15358:9;15352:4;15348:20;15344:1;15333:9;15329:17;15322:47;15386:131;15512:4;15386:131;:::i;:::-;15378:139;;15105:419;;;:::o;15530:::-;15696:4;15734:2;15723:9;15719:18;15711:26;;15783:9;15777:4;15773:20;15769:1;15758:9;15754:17;15747:47;15811:131;15937:4;15811:131;:::i;:::-;15803:139;;15530:419;;;:::o;15955:::-;16121:4;16159:2;16148:9;16144:18;16136:26;;16208:9;16202:4;16198:20;16194:1;16183:9;16179:17;16172:47;16236:131;16362:4;16236:131;:::i;:::-;16228:139;;15955:419;;;:::o;16380:::-;16546:4;16584:2;16573:9;16569:18;16561:26;;16633:9;16627:4;16623:20;16619:1;16608:9;16604:17;16597:47;16661:131;16787:4;16661:131;:::i;:::-;16653:139;;16380:419;;;:::o;16805:::-;16971:4;17009:2;16998:9;16994:18;16986:26;;17058:9;17052:4;17048:20;17044:1;17033:9;17029:17;17022:47;17086:131;17212:4;17086:131;:::i;:::-;17078:139;;16805:419;;;:::o;17230:::-;17396:4;17434:2;17423:9;17419:18;17411:26;;17483:9;17477:4;17473:20;17469:1;17458:9;17454:17;17447:47;17511:131;17637:4;17511:131;:::i;:::-;17503:139;;17230:419;;;:::o;17655:222::-;17748:4;17786:2;17775:9;17771:18;17763:26;;17799:71;17867:1;17856:9;17852:17;17843:6;17799:71;:::i;:::-;17655:222;;;;:::o;17883:129::-;17917:6;17944:20;;:::i;:::-;17934:30;;17973:33;18001:4;17993:6;17973:33;:::i;:::-;17883:129;;;:::o;18018:75::-;18051:6;18084:2;18078:9;18068:19;;18018:75;:::o;18099:307::-;18160:4;18250:18;18242:6;18239:30;18236:56;;;18272:18;;:::i;:::-;18236:56;18310:29;18332:6;18310:29;:::i;:::-;18302:37;;18394:4;18388;18384:15;18376:23;;18099:307;;;:::o;18412:308::-;18474:4;18564:18;18556:6;18553:30;18550:56;;;18586:18;;:::i;:::-;18550:56;18624:29;18646:6;18624:29;:::i;:::-;18616:37;;18708:4;18702;18698:15;18690:23;;18412:308;;;:::o;18726:98::-;18777:6;18811:5;18805:12;18795:22;;18726:98;;;:::o;18830:99::-;18882:6;18916:5;18910:12;18900:22;;18830:99;;;:::o;18935:168::-;19018:11;19052:6;19047:3;19040:19;19092:4;19087:3;19083:14;19068:29;;18935:168;;;;:::o;19109:147::-;19210:11;19247:3;19232:18;;19109:147;;;;:::o;19262:169::-;19346:11;19380:6;19375:3;19368:19;19420:4;19415:3;19411:14;19396:29;;19262:169;;;;:::o;19437:148::-;19539:11;19576:3;19561:18;;19437:148;;;;:::o;19591:305::-;19631:3;19650:20;19668:1;19650:20;:::i;:::-;19645:25;;19684:20;19702:1;19684:20;:::i;:::-;19679:25;;19838:1;19770:66;19766:74;19763:1;19760:81;19757:107;;;19844:18;;:::i;:::-;19757:107;19888:1;19885;19881:9;19874:16;;19591:305;;;;:::o;19902:185::-;19942:1;19959:20;19977:1;19959:20;:::i;:::-;19954:25;;19993:20;20011:1;19993:20;:::i;:::-;19988:25;;20032:1;20022:35;;20037:18;;:::i;:::-;20022:35;20079:1;20076;20072:9;20067:14;;19902:185;;;;:::o;20093:348::-;20133:7;20156:20;20174:1;20156:20;:::i;:::-;20151:25;;20190:20;20208:1;20190:20;:::i;:::-;20185:25;;20378:1;20310:66;20306:74;20303:1;20300:81;20295:1;20288:9;20281:17;20277:105;20274:131;;;20385:18;;:::i;:::-;20274:131;20433:1;20430;20426:9;20415:20;;20093:348;;;;:::o;20447:191::-;20487:4;20507:20;20525:1;20507:20;:::i;:::-;20502:25;;20541:20;20559:1;20541:20;:::i;:::-;20536:25;;20580:1;20577;20574:8;20571:34;;;20585:18;;:::i;:::-;20571:34;20630:1;20627;20623:9;20615:17;;20447:191;;;;:::o;20644:96::-;20681:7;20710:24;20728:5;20710:24;:::i;:::-;20699:35;;20644:96;;;:::o;20746:90::-;20780:7;20823:5;20816:13;20809:21;20798:32;;20746:90;;;:::o;20842:149::-;20878:7;20918:66;20911:5;20907:78;20896:89;;20842:149;;;:::o;20997:126::-;21034:7;21074:42;21067:5;21063:54;21052:65;;20997:126;;;:::o;21129:77::-;21166:7;21195:5;21184:16;;21129:77;;;:::o;21212:154::-;21296:6;21291:3;21286;21273:30;21358:1;21349:6;21344:3;21340:16;21333:27;21212:154;;;:::o;21372:307::-;21440:1;21450:113;21464:6;21461:1;21458:13;21450:113;;;21549:1;21544:3;21540:11;21534:18;21530:1;21525:3;21521:11;21514:39;21486:2;21483:1;21479:10;21474:15;;21450:113;;;21581:6;21578:1;21575:13;21572:101;;;21661:1;21652:6;21647:3;21643:16;21636:27;21572:101;21421:258;21372:307;;;:::o;21685:320::-;21729:6;21766:1;21760:4;21756:12;21746:22;;21813:1;21807:4;21803:12;21834:18;21824:81;;21890:4;21882:6;21878:17;21868:27;;21824:81;21952:2;21944:6;21941:14;21921:18;21918:38;21915:84;;;21971:18;;:::i;:::-;21915:84;21736:269;21685:320;;;:::o;22011:281::-;22094:27;22116:4;22094:27;:::i;:::-;22086:6;22082:40;22224:6;22212:10;22209:22;22188:18;22176:10;22173:34;22170:62;22167:88;;;22235:18;;:::i;:::-;22167:88;22275:10;22271:2;22264:22;22054:238;22011:281;;:::o;22298:233::-;22337:3;22360:24;22378:5;22360:24;:::i;:::-;22351:33;;22406:66;22399:5;22396:77;22393:103;;;22476:18;;:::i;:::-;22393:103;22523:1;22516:5;22512:13;22505:20;;22298:233;;;:::o;22537:176::-;22569:1;22586:20;22604:1;22586:20;:::i;:::-;22581:25;;22620:20;22638:1;22620:20;:::i;:::-;22615:25;;22659:1;22649:35;;22664:18;;:::i;:::-;22649:35;22705:1;22702;22698:9;22693:14;;22537:176;;;;:::o;22719:180::-;22767:77;22764:1;22757:88;22864:4;22861:1;22854:15;22888:4;22885:1;22878:15;22905:180;22953:77;22950:1;22943:88;23050:4;23047:1;23040:15;23074:4;23071:1;23064:15;23091:180;23139:77;23136:1;23129:88;23236:4;23233:1;23226:15;23260:4;23257:1;23250:15;23277:180;23325:77;23322:1;23315:88;23422:4;23419:1;23412:15;23446:4;23443:1;23436:15;23463:180;23511:77;23508:1;23501:88;23608:4;23605:1;23598:15;23632:4;23629:1;23622:15;23649:117;23758:1;23755;23748:12;23772:117;23881:1;23878;23871:12;23895:117;24004:1;24001;23994:12;24018:117;24127:1;24124;24117:12;24141:102;24182:6;24233:2;24229:7;24224:2;24217:5;24213:14;24209:28;24199:38;;24141:102;;;:::o;24249:233::-;24389:34;24385:1;24377:6;24373:14;24366:58;24458:16;24453:2;24445:6;24441:15;24434:41;24249:233;:::o;24488:225::-;24628:34;24624:1;24616:6;24612:14;24605:58;24697:8;24692:2;24684:6;24680:15;24673:33;24488:225;:::o;24719:170::-;24859:22;24855:1;24847:6;24843:14;24836:46;24719:170;:::o;24895:234::-;25035:34;25031:1;25023:6;25019:14;25012:58;25104:17;25099:2;25091:6;25087:15;25080:42;24895:234;:::o;25135:182::-;25275:34;25271:1;25263:6;25259:14;25252:58;25135:182;:::o;25323:172::-;25463:24;25459:1;25451:6;25447:14;25440:48;25323:172;:::o;25501:114::-;;:::o;25621:166::-;25761:18;25757:1;25749:6;25745:14;25738:42;25621:166;:::o;25793:232::-;25933:34;25929:1;25921:6;25917:14;25910:58;26002:15;25997:2;25989:6;25985:15;25978:40;25793:232;:::o;26031:122::-;26104:24;26122:5;26104:24;:::i;:::-;26097:5;26094:35;26084:63;;26143:1;26140;26133:12;26084:63;26031:122;:::o;26159:116::-;26229:21;26244:5;26229:21;:::i;:::-;26222:5;26219:32;26209:60;;26265:1;26262;26255:12;26209:60;26159:116;:::o;26281:120::-;26353:23;26370:5;26353:23;:::i;:::-;26346:5;26343:34;26333:62;;26391:1;26388;26381:12;26333:62;26281:120;:::o;26407:122::-;26480:24;26498:5;26480:24;:::i;:::-;26473:5;26470:35;26460:63;;26519:1;26516;26509:12;26460:63;26407:122;:::o

Swarm Source

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