ETH Price: $2,520.19 (+0.20%)

Token

0xWorldOfWomem (0xwow)
 

Overview

Max Total Supply

2,020 0xwow

Holders

67

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 0xwow
0xa63220902668139874e4919c19e943e12d9400db
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:
Oxwow

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

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

contract Oxwow is ERC721A, Ownable {

    constructor(string memory baseURI) ERC721A("0xWorldOfWomem", "0xwow") {
        setBaseURI(baseURI);
    }

    uint256 public constant MAX_SUPPLY = 10000;

    uint256 public constant FREE_MINT_MAX_SUPPLY = 2000;

    uint256 private mintCount = 0;

    uint256 public price = 10000000000000000;

    string private baseTokenURI;
      
    bool public saleOpen = false;

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

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

    function changePrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    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(_count > 0, "Minimum 1 NFT has to be minted per transaction");

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

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

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

pragma solidity ^0.8.1;

/**
 * @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 = 1;

    // 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) {
        require(tokenId > 0, "Invalid TokenId");
        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 12 of 14: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]

608060405260016000556000600955662386f26fc10000600a556000600c60006101000a81548160ff0219169083151502179055503480156200004157600080fd5b50604051620040ca380380620040ca8339818101604052810190620000679190620003db565b6040518060400160405280600e81526020017f3078576f726c644f66576f6d656d0000000000000000000000000000000000008152506040518060400160405280600581526020017f3078776f770000000000000000000000000000000000000000000000000000008152508160029080519060200190620000eb929190620002ad565b50806003908051906020019062000104929190620002ad565b505050600062000119620001d060201b60201c565b905080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001c981620001d860201b60201c565b5062000633565b600033905090565b620001e8620001d060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200020e6200028360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000267576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025e9062000453565b60405180910390fd5b80600b90805190602001906200027f929190620002ad565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002bb906200051b565b90600052602060002090601f016020900481019282620002df57600085556200032b565b82601f10620002fa57805160ff19168380011785556200032b565b828001600101855582156200032b579182015b828111156200032a5782518255916020019190600101906200030d565b5b5090506200033a91906200033e565b5090565b5b80821115620003595760008160009055506001016200033f565b5090565b6000620003746200036e846200049e565b62000475565b905082815260208101848484011115620003935762000392620005ea565b5b620003a0848285620004e5565b509392505050565b600082601f830112620003c057620003bf620005e5565b5b8151620003d28482602086016200035d565b91505092915050565b600060208284031215620003f457620003f3620005f4565b5b600082015167ffffffffffffffff811115620004155762000414620005ef565b5b6200042384828501620003a8565b91505092915050565b60006200043b602083620004d4565b915062000448826200060a565b602082019050919050565b600060208201905081810360008301526200046e816200042c565b9050919050565b60006200048162000494565b90506200048f828262000551565b919050565b6000604051905090565b600067ffffffffffffffff821115620004bc57620004bb620005b6565b5b620004c782620005f9565b9050602081019050919050565b600082825260208201905092915050565b60005b8381101562000505578082015181840152602081019050620004e8565b8381111562000515576000848401525b50505050565b600060028204905060018216806200053457607f821691505b602082108114156200054b576200054a62000587565b5b50919050565b6200055c82620005f9565b810181811067ffffffffffffffff821117156200057e576200057d620005b6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613a8780620006436000396000f3fe6080604052600436106101b75760003560e01c80636db8704c116100ec578063a035b1fe1161008a578063b88d4fde11610064578063b88d4fde146105d9578063c87b56dd14610602578063e985e9c51461063f578063f2fde38b1461067c576101b7565b8063a035b1fe1461055c578063a22cb46514610587578063a2b40d19146105b0576101b7565b80637ba5e621116100c65780637ba5e621146104c45780638da5cb5b146104db57806395d89b411461050657806399288dbb14610531576101b7565b80636db8704c1461044557806370a0823114610470578063715018a6146104ad576101b7565b806332cb6b0c1161015957806342842e0e1161013357806342842e0e146103795780634f6ccce7146103a257806355f804b3146103df5780636352211e14610408576101b7565b806332cb6b0c1461031b5780633ccfd60b1461034657806340c10f191461035d576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b55780632f745c59146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612e46565b6106a5565b6040516101f091906131e4565b60405180910390f35b34801561020557600080fd5b5061020e6107ef565b60405161021b91906131ff565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612ee9565b610881565b604051610258919061317d565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612e06565b6108fd565b005b34801561029657600080fd5b5061029f610a08565b6040516102ac9190613341565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612cf0565b610a12565b005b3480156102ea57600080fd5b5061030560048036038101906103009190612e06565b610a22565b6040516103129190613341565b60405180910390f35b34801561032757600080fd5b50610330610bfb565b60405161033d9190613341565b60405180910390f35b34801561035257600080fd5b5061035b610c01565b005b61037760048036038101906103729190612e06565b610d2c565b005b34801561038557600080fd5b506103a0600480360381019061039b9190612cf0565b610f5e565b005b3480156103ae57600080fd5b506103c960048036038101906103c49190612ee9565b610f7e565b6040516103d69190613341565b60405180910390f35b3480156103eb57600080fd5b5061040660048036038101906104019190612ea0565b6110c3565b005b34801561041457600080fd5b5061042f600480360381019061042a9190612ee9565b611159565b60405161043c919061317d565b60405180910390f35b34801561045157600080fd5b5061045a61116f565b6040516104679190613341565b60405180910390f35b34801561047c57600080fd5b5061049760048036038101906104929190612c83565b611175565b6040516104a49190613341565b60405180910390f35b3480156104b957600080fd5b506104c2611245565b005b3480156104d057600080fd5b506104d9611382565b005b3480156104e757600080fd5b506104f061142a565b6040516104fd919061317d565b60405180910390f35b34801561051257600080fd5b5061051b611454565b60405161052891906131ff565b60405180910390f35b34801561053d57600080fd5b506105466114e6565b60405161055391906131e4565b60405180910390f35b34801561056857600080fd5b506105716114f9565b60405161057e9190613341565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190612dc6565b6114ff565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190612ee9565b611677565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190612d43565b6116fd565b005b34801561060e57600080fd5b5061062960048036038101906106249190612ee9565b611750565b60405161063691906131ff565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612cb0565b6117ef565b60405161067391906131e4565b60405180910390f35b34801561068857600080fd5b506106a3600480360381019061069e9190612c83565b611883565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e857506107e782611a2f565b5b9050919050565b6060600280546107fe906135fc565b80601f016020809104026020016040519081016040528092919081815260200182805461082a906135fc565b80156108775780601f1061084c57610100808354040283529160200191610877565b820191906000526020600020905b81548152906001019060200180831161085a57829003601f168201915b5050505050905090565b600061088c82611a99565b6108c2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090882611159565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610970576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661098f611b16565b73ffffffffffffffffffffffffffffffffffffffff16141580156109c157506109bf816109ba611b16565b6117ef565b155b156109f8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a03838383611b1e565b505050565b6000600954905090565b610a1d838383611bd0565b505050565b6000610a2d83611175565b8210610a65576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610bef576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610b4e5750610be2565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b8e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610be05786841415610bd7578195505050505050610bf5565b83806001019450505b505b8080600101915050610a71565b50600080fd5b92915050565b61271081565b610c09611b16565b73ffffffffffffffffffffffffffffffffffffffff16610c2761142a565b73ffffffffffffffffffffffffffffffffffffffff1614610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c74906132c1565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610ca390613168565b60006040518083038185875af1925050503d8060008114610ce0576040519150601f19603f3d011682016040523d82523d6000602084013e610ce5565b606091505b5050905080610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2090613301565b60405180910390fd5b50565b6000610d36610a08565b905060008211610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7290613221565b60405180910390fd5b610d8361142a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610eff57600c60009054906101000a900460ff16610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb90613261565b60405180910390fd5b6064821115610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90613321565b60405180910390fd5b6107d08282610e579190613431565b1115610efe576127108282610e6c9190613431565b1115610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea4906132e1565b60405180910390fd5b81600a54610ebb91906134b8565b341015610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef4906132a1565b60405180910390fd5b5b5b8160096000828254610f119190613431565b92505081905550610f2283836120c1565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a82604051610f519190613341565b60405180910390a1505050565b610f79838383604051806020016040528060008152506116fd565b505050565b60008060005490506000805b8281101561108b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161107d578583141561107457819450505050506110be565b82806001019350505b508080600101915050610f8a565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6110cb611b16565b73ffffffffffffffffffffffffffffffffffffffff166110e961142a565b73ffffffffffffffffffffffffffffffffffffffff161461113f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611136906132c1565b60405180910390fd5b80600b9080519060200190611155929190612a54565b5050565b6000611164826120df565b600001519050919050565b6107d081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111dd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61124d611b16565b73ffffffffffffffffffffffffffffffffffffffff1661126b61142a565b73ffffffffffffffffffffffffffffffffffffffff16146112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b8906132c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61138a611b16565b73ffffffffffffffffffffffffffffffffffffffff166113a861142a565b73ffffffffffffffffffffffffffffffffffffffff16146113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f5906132c1565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611463906135fc565b80601f016020809104026020016040519081016040528092919081815260200182805461148f906135fc565b80156114dc5780601f106114b1576101008083540402835291602001916114dc565b820191906000526020600020905b8154815290600101906020018083116114bf57829003601f168201915b5050505050905090565b600c60009054906101000a900460ff1681565b600a5481565b611507611b16565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561156c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611579611b16565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611626611b16565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161166b91906131e4565b60405180910390a35050565b61167f611b16565b73ffffffffffffffffffffffffffffffffffffffff1661169d61142a565b73ffffffffffffffffffffffffffffffffffffffff16146116f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ea906132c1565b60405180910390fd5b80600a8190555050565b611708848484611bd0565b6117148484848461235b565b61174a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061175b82611a99565b611791576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061179b6124e9565b90506000815114156117bc57604051806020016040528060008152506117e7565b806117c68461257b565b6040516020016117d7929190613144565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61188b611b16565b73ffffffffffffffffffffffffffffffffffffffff166118a961142a565b73ffffffffffffffffffffffffffffffffffffffff16146118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f6906132c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561196f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196690613241565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000808211611add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad490613281565b60405180910390fd5b60005482108015611b0f575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611bdb826120df565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c02611b16565b73ffffffffffffffffffffffffffffffffffffffff161480611c355750611c348260000151611c2f611b16565b6117ef565b5b80611c7a5750611c43611b16565b73ffffffffffffffffffffffffffffffffffffffff16611c6284610881565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611cb3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d1c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d83576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d9085858560016126dc565b611da06000848460000151611b1e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612051576000548110156120505782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ba85858560016126e2565b5050505050565b6120db8282604051806020016040528060008152506126e8565b5050565b6120e7612ada565b6000829050600054811015612324576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161232257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612206578092505050612356565b5b60011561232157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461231c578092505050612356565b612207565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600061237c8473ffffffffffffffffffffffffffffffffffffffff166126fa565b156124dc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123a5611b16565b8786866040518563ffffffff1660e01b81526004016123c79493929190613198565b602060405180830381600087803b1580156123e157600080fd5b505af192505050801561241257506040513d601f19601f8201168201806040525081019061240f9190612e73565b60015b61248c573d8060008114612442576040519150601f19603f3d011682016040523d82523d6000602084013e612447565b606091505b50600081511415612484576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124e1565b600190505b949350505050565b6060600b80546124f8906135fc565b80601f0160208091040260200160405190810160405280929190818152602001828054612524906135fc565b80156125715780601f1061254657610100808354040283529160200191612571565b820191906000526020600020905b81548152906001019060200180831161255457829003601f168201915b5050505050905090565b606060008214156125c3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126d7565b600082905060005b600082146125f55780806125de9061365f565b915050600a826125ee9190613487565b91506125cb565b60008167ffffffffffffffff81111561261157612610613795565b5b6040519080825280601f01601f1916602001820160405280156126435781602001600182028036833780820191505090505b5090505b600085146126d05760018261265c9190613512565b9150600a8561266b91906136a8565b60306126779190613431565b60f81b81838151811061268d5761268c613766565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126c99190613487565b9450612647565b8093505050505b919050565b50505050565b50505050565b6126f5838383600161271d565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561278a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156127c5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127d260008683876126dc565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612a3757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156129eb57506129e9600088848861235b565b155b15612a22576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612970565b508060008190555050612a4d60008683876126e2565b5050505050565b828054612a60906135fc565b90600052602060002090601f016020900481019282612a825760008555612ac9565b82601f10612a9b57805160ff1916838001178555612ac9565b82800160010185558215612ac9579182015b82811115612ac8578251825591602001919060010190612aad565b5b509050612ad69190612b1d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b36576000816000905550600101612b1e565b5090565b6000612b4d612b4884613381565b61335c565b905082815260208101848484011115612b6957612b686137c9565b5b612b748482856135ba565b509392505050565b6000612b8f612b8a846133b2565b61335c565b905082815260208101848484011115612bab57612baa6137c9565b5b612bb68482856135ba565b509392505050565b600081359050612bcd816139f5565b92915050565b600081359050612be281613a0c565b92915050565b600081359050612bf781613a23565b92915050565b600081519050612c0c81613a23565b92915050565b600082601f830112612c2757612c266137c4565b5b8135612c37848260208601612b3a565b91505092915050565b600082601f830112612c5557612c546137c4565b5b8135612c65848260208601612b7c565b91505092915050565b600081359050612c7d81613a3a565b92915050565b600060208284031215612c9957612c986137d3565b5b6000612ca784828501612bbe565b91505092915050565b60008060408385031215612cc757612cc66137d3565b5b6000612cd585828601612bbe565b9250506020612ce685828601612bbe565b9150509250929050565b600080600060608486031215612d0957612d086137d3565b5b6000612d1786828701612bbe565b9350506020612d2886828701612bbe565b9250506040612d3986828701612c6e565b9150509250925092565b60008060008060808587031215612d5d57612d5c6137d3565b5b6000612d6b87828801612bbe565b9450506020612d7c87828801612bbe565b9350506040612d8d87828801612c6e565b925050606085013567ffffffffffffffff811115612dae57612dad6137ce565b5b612dba87828801612c12565b91505092959194509250565b60008060408385031215612ddd57612ddc6137d3565b5b6000612deb85828601612bbe565b9250506020612dfc85828601612bd3565b9150509250929050565b60008060408385031215612e1d57612e1c6137d3565b5b6000612e2b85828601612bbe565b9250506020612e3c85828601612c6e565b9150509250929050565b600060208284031215612e5c57612e5b6137d3565b5b6000612e6a84828501612be8565b91505092915050565b600060208284031215612e8957612e886137d3565b5b6000612e9784828501612bfd565b91505092915050565b600060208284031215612eb657612eb56137d3565b5b600082013567ffffffffffffffff811115612ed457612ed36137ce565b5b612ee084828501612c40565b91505092915050565b600060208284031215612eff57612efe6137d3565b5b6000612f0d84828501612c6e565b91505092915050565b612f1f81613546565b82525050565b612f2e81613558565b82525050565b6000612f3f826133e3565b612f4981856133f9565b9350612f598185602086016135c9565b612f62816137d8565b840191505092915050565b6000612f78826133ee565b612f828185613415565b9350612f928185602086016135c9565b612f9b816137d8565b840191505092915050565b6000612fb1826133ee565b612fbb8185613426565b9350612fcb8185602086016135c9565b80840191505092915050565b6000612fe4602e83613415565b9150612fef826137e9565b604082019050919050565b6000613007602683613415565b915061301282613838565b604082019050919050565b600061302a601483613415565b915061303582613887565b602082019050919050565b600061304d600f83613415565b9150613058826138b0565b602082019050919050565b6000613070602f83613415565b915061307b826138d9565b604082019050919050565b6000613093602083613415565b915061309e82613928565b602082019050919050565b60006130b6601683613415565b91506130c182613951565b602082019050919050565b60006130d960008361340a565b91506130e48261397a565b600082019050919050565b60006130fc601083613415565b91506131078261397d565b602082019050919050565b600061311f602e83613415565b915061312a826139a6565b604082019050919050565b61313e816135b0565b82525050565b60006131508285612fa6565b915061315c8284612fa6565b91508190509392505050565b6000613173826130cc565b9150819050919050565b60006020820190506131926000830184612f16565b92915050565b60006080820190506131ad6000830187612f16565b6131ba6020830186612f16565b6131c76040830185613135565b81810360608301526131d98184612f34565b905095945050505050565b60006020820190506131f96000830184612f25565b92915050565b600060208201905081810360008301526132198184612f6d565b905092915050565b6000602082019050818103600083015261323a81612fd7565b9050919050565b6000602082019050818103600083015261325a81612ffa565b9050919050565b6000602082019050818103600083015261327a8161301d565b9050919050565b6000602082019050818103600083015261329a81613040565b9050919050565b600060208201905081810360008301526132ba81613063565b9050919050565b600060208201905081810360008301526132da81613086565b9050919050565b600060208201905081810360008301526132fa816130a9565b9050919050565b6000602082019050818103600083015261331a816130ef565b9050919050565b6000602082019050818103600083015261333a81613112565b9050919050565b60006020820190506133566000830184613135565b92915050565b6000613366613377565b9050613372828261362e565b919050565b6000604051905090565b600067ffffffffffffffff82111561339c5761339b613795565b5b6133a5826137d8565b9050602081019050919050565b600067ffffffffffffffff8211156133cd576133cc613795565b5b6133d6826137d8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061343c826135b0565b9150613447836135b0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561347c5761347b6136d9565b5b828201905092915050565b6000613492826135b0565b915061349d836135b0565b9250826134ad576134ac613708565b5b828204905092915050565b60006134c3826135b0565b91506134ce836135b0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613507576135066136d9565b5b828202905092915050565b600061351d826135b0565b9150613528836135b0565b92508282101561353b5761353a6136d9565b5b828203905092915050565b600061355182613590565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135e75780820151818401526020810190506135cc565b838111156135f6576000848401525b50505050565b6000600282049050600182168061361457607f821691505b6020821081141561362857613627613737565b5b50919050565b613637826137d8565b810181811067ffffffffffffffff8211171561365657613655613795565b5b80604052505050565b600061366a826135b0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561369d5761369c6136d9565b5b600182019050919050565b60006136b3826135b0565b91506136be836135b0565b9250826136ce576136cd613708565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f496e76616c696420546f6b656e49640000000000000000000000000000000000600082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d6178696d756d20313030204e4654732063616e206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b6139fe81613546565b8114613a0957600080fd5b50565b613a1581613558565b8114613a2057600080fd5b50565b613a2c81613564565b8114613a3757600080fd5b50565b613a43816135b0565b8114613a4e57600080fd5b5056fea264697066735822122063a85a25dc1e1ec800fe5734cae1ef652c2fb45976973c573dd69ad938382cad64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636db8704c116100ec578063a035b1fe1161008a578063b88d4fde11610064578063b88d4fde146105d9578063c87b56dd14610602578063e985e9c51461063f578063f2fde38b1461067c576101b7565b8063a035b1fe1461055c578063a22cb46514610587578063a2b40d19146105b0576101b7565b80637ba5e621116100c65780637ba5e621146104c45780638da5cb5b146104db57806395d89b411461050657806399288dbb14610531576101b7565b80636db8704c1461044557806370a0823114610470578063715018a6146104ad576101b7565b806332cb6b0c1161015957806342842e0e1161013357806342842e0e146103795780634f6ccce7146103a257806355f804b3146103df5780636352211e14610408576101b7565b806332cb6b0c1461031b5780633ccfd60b1461034657806340c10f191461035d576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b55780632f745c59146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612e46565b6106a5565b6040516101f091906131e4565b60405180910390f35b34801561020557600080fd5b5061020e6107ef565b60405161021b91906131ff565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612ee9565b610881565b604051610258919061317d565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612e06565b6108fd565b005b34801561029657600080fd5b5061029f610a08565b6040516102ac9190613341565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612cf0565b610a12565b005b3480156102ea57600080fd5b5061030560048036038101906103009190612e06565b610a22565b6040516103129190613341565b60405180910390f35b34801561032757600080fd5b50610330610bfb565b60405161033d9190613341565b60405180910390f35b34801561035257600080fd5b5061035b610c01565b005b61037760048036038101906103729190612e06565b610d2c565b005b34801561038557600080fd5b506103a0600480360381019061039b9190612cf0565b610f5e565b005b3480156103ae57600080fd5b506103c960048036038101906103c49190612ee9565b610f7e565b6040516103d69190613341565b60405180910390f35b3480156103eb57600080fd5b5061040660048036038101906104019190612ea0565b6110c3565b005b34801561041457600080fd5b5061042f600480360381019061042a9190612ee9565b611159565b60405161043c919061317d565b60405180910390f35b34801561045157600080fd5b5061045a61116f565b6040516104679190613341565b60405180910390f35b34801561047c57600080fd5b5061049760048036038101906104929190612c83565b611175565b6040516104a49190613341565b60405180910390f35b3480156104b957600080fd5b506104c2611245565b005b3480156104d057600080fd5b506104d9611382565b005b3480156104e757600080fd5b506104f061142a565b6040516104fd919061317d565b60405180910390f35b34801561051257600080fd5b5061051b611454565b60405161052891906131ff565b60405180910390f35b34801561053d57600080fd5b506105466114e6565b60405161055391906131e4565b60405180910390f35b34801561056857600080fd5b506105716114f9565b60405161057e9190613341565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190612dc6565b6114ff565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190612ee9565b611677565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190612d43565b6116fd565b005b34801561060e57600080fd5b5061062960048036038101906106249190612ee9565b611750565b60405161063691906131ff565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612cb0565b6117ef565b60405161067391906131e4565b60405180910390f35b34801561068857600080fd5b506106a3600480360381019061069e9190612c83565b611883565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e857506107e782611a2f565b5b9050919050565b6060600280546107fe906135fc565b80601f016020809104026020016040519081016040528092919081815260200182805461082a906135fc565b80156108775780601f1061084c57610100808354040283529160200191610877565b820191906000526020600020905b81548152906001019060200180831161085a57829003601f168201915b5050505050905090565b600061088c82611a99565b6108c2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090882611159565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610970576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661098f611b16565b73ffffffffffffffffffffffffffffffffffffffff16141580156109c157506109bf816109ba611b16565b6117ef565b155b156109f8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a03838383611b1e565b505050565b6000600954905090565b610a1d838383611bd0565b505050565b6000610a2d83611175565b8210610a65576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610bef576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610b4e5750610be2565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b8e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610be05786841415610bd7578195505050505050610bf5565b83806001019450505b505b8080600101915050610a71565b50600080fd5b92915050565b61271081565b610c09611b16565b73ffffffffffffffffffffffffffffffffffffffff16610c2761142a565b73ffffffffffffffffffffffffffffffffffffffff1614610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c74906132c1565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610ca390613168565b60006040518083038185875af1925050503d8060008114610ce0576040519150601f19603f3d011682016040523d82523d6000602084013e610ce5565b606091505b5050905080610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2090613301565b60405180910390fd5b50565b6000610d36610a08565b905060008211610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7290613221565b60405180910390fd5b610d8361142a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610eff57600c60009054906101000a900460ff16610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb90613261565b60405180910390fd5b6064821115610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90613321565b60405180910390fd5b6107d08282610e579190613431565b1115610efe576127108282610e6c9190613431565b1115610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea4906132e1565b60405180910390fd5b81600a54610ebb91906134b8565b341015610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef4906132a1565b60405180910390fd5b5b5b8160096000828254610f119190613431565b92505081905550610f2283836120c1565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a82604051610f519190613341565b60405180910390a1505050565b610f79838383604051806020016040528060008152506116fd565b505050565b60008060005490506000805b8281101561108b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161107d578583141561107457819450505050506110be565b82806001019350505b508080600101915050610f8a565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6110cb611b16565b73ffffffffffffffffffffffffffffffffffffffff166110e961142a565b73ffffffffffffffffffffffffffffffffffffffff161461113f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611136906132c1565b60405180910390fd5b80600b9080519060200190611155929190612a54565b5050565b6000611164826120df565b600001519050919050565b6107d081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111dd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61124d611b16565b73ffffffffffffffffffffffffffffffffffffffff1661126b61142a565b73ffffffffffffffffffffffffffffffffffffffff16146112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b8906132c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61138a611b16565b73ffffffffffffffffffffffffffffffffffffffff166113a861142a565b73ffffffffffffffffffffffffffffffffffffffff16146113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f5906132c1565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611463906135fc565b80601f016020809104026020016040519081016040528092919081815260200182805461148f906135fc565b80156114dc5780601f106114b1576101008083540402835291602001916114dc565b820191906000526020600020905b8154815290600101906020018083116114bf57829003601f168201915b5050505050905090565b600c60009054906101000a900460ff1681565b600a5481565b611507611b16565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561156c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611579611b16565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611626611b16565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161166b91906131e4565b60405180910390a35050565b61167f611b16565b73ffffffffffffffffffffffffffffffffffffffff1661169d61142a565b73ffffffffffffffffffffffffffffffffffffffff16146116f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ea906132c1565b60405180910390fd5b80600a8190555050565b611708848484611bd0565b6117148484848461235b565b61174a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061175b82611a99565b611791576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061179b6124e9565b90506000815114156117bc57604051806020016040528060008152506117e7565b806117c68461257b565b6040516020016117d7929190613144565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61188b611b16565b73ffffffffffffffffffffffffffffffffffffffff166118a961142a565b73ffffffffffffffffffffffffffffffffffffffff16146118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f6906132c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561196f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196690613241565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000808211611add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad490613281565b60405180910390fd5b60005482108015611b0f575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611bdb826120df565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c02611b16565b73ffffffffffffffffffffffffffffffffffffffff161480611c355750611c348260000151611c2f611b16565b6117ef565b5b80611c7a5750611c43611b16565b73ffffffffffffffffffffffffffffffffffffffff16611c6284610881565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611cb3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d1c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d83576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d9085858560016126dc565b611da06000848460000151611b1e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612051576000548110156120505782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ba85858560016126e2565b5050505050565b6120db8282604051806020016040528060008152506126e8565b5050565b6120e7612ada565b6000829050600054811015612324576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161232257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612206578092505050612356565b5b60011561232157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461231c578092505050612356565b612207565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600061237c8473ffffffffffffffffffffffffffffffffffffffff166126fa565b156124dc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123a5611b16565b8786866040518563ffffffff1660e01b81526004016123c79493929190613198565b602060405180830381600087803b1580156123e157600080fd5b505af192505050801561241257506040513d601f19601f8201168201806040525081019061240f9190612e73565b60015b61248c573d8060008114612442576040519150601f19603f3d011682016040523d82523d6000602084013e612447565b606091505b50600081511415612484576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124e1565b600190505b949350505050565b6060600b80546124f8906135fc565b80601f0160208091040260200160405190810160405280929190818152602001828054612524906135fc565b80156125715780601f1061254657610100808354040283529160200191612571565b820191906000526020600020905b81548152906001019060200180831161255457829003601f168201915b5050505050905090565b606060008214156125c3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126d7565b600082905060005b600082146125f55780806125de9061365f565b915050600a826125ee9190613487565b91506125cb565b60008167ffffffffffffffff81111561261157612610613795565b5b6040519080825280601f01601f1916602001820160405280156126435781602001600182028036833780820191505090505b5090505b600085146126d05760018261265c9190613512565b9150600a8561266b91906136a8565b60306126779190613431565b60f81b81838151811061268d5761268c613766565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126c99190613487565b9450612647565b8093505050505b919050565b50505050565b50505050565b6126f5838383600161271d565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561278a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156127c5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127d260008683876126dc565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612a3757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156129eb57506129e9600088848861235b565b155b15612a22576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612970565b508060008190555050612a4d60008683876126e2565b5050505050565b828054612a60906135fc565b90600052602060002090601f016020900481019282612a825760008555612ac9565b82601f10612a9b57805160ff1916838001178555612ac9565b82800160010185558215612ac9579182015b82811115612ac8578251825591602001919060010190612aad565b5b509050612ad69190612b1d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b36576000816000905550600101612b1e565b5090565b6000612b4d612b4884613381565b61335c565b905082815260208101848484011115612b6957612b686137c9565b5b612b748482856135ba565b509392505050565b6000612b8f612b8a846133b2565b61335c565b905082815260208101848484011115612bab57612baa6137c9565b5b612bb68482856135ba565b509392505050565b600081359050612bcd816139f5565b92915050565b600081359050612be281613a0c565b92915050565b600081359050612bf781613a23565b92915050565b600081519050612c0c81613a23565b92915050565b600082601f830112612c2757612c266137c4565b5b8135612c37848260208601612b3a565b91505092915050565b600082601f830112612c5557612c546137c4565b5b8135612c65848260208601612b7c565b91505092915050565b600081359050612c7d81613a3a565b92915050565b600060208284031215612c9957612c986137d3565b5b6000612ca784828501612bbe565b91505092915050565b60008060408385031215612cc757612cc66137d3565b5b6000612cd585828601612bbe565b9250506020612ce685828601612bbe565b9150509250929050565b600080600060608486031215612d0957612d086137d3565b5b6000612d1786828701612bbe565b9350506020612d2886828701612bbe565b9250506040612d3986828701612c6e565b9150509250925092565b60008060008060808587031215612d5d57612d5c6137d3565b5b6000612d6b87828801612bbe565b9450506020612d7c87828801612bbe565b9350506040612d8d87828801612c6e565b925050606085013567ffffffffffffffff811115612dae57612dad6137ce565b5b612dba87828801612c12565b91505092959194509250565b60008060408385031215612ddd57612ddc6137d3565b5b6000612deb85828601612bbe565b9250506020612dfc85828601612bd3565b9150509250929050565b60008060408385031215612e1d57612e1c6137d3565b5b6000612e2b85828601612bbe565b9250506020612e3c85828601612c6e565b9150509250929050565b600060208284031215612e5c57612e5b6137d3565b5b6000612e6a84828501612be8565b91505092915050565b600060208284031215612e8957612e886137d3565b5b6000612e9784828501612bfd565b91505092915050565b600060208284031215612eb657612eb56137d3565b5b600082013567ffffffffffffffff811115612ed457612ed36137ce565b5b612ee084828501612c40565b91505092915050565b600060208284031215612eff57612efe6137d3565b5b6000612f0d84828501612c6e565b91505092915050565b612f1f81613546565b82525050565b612f2e81613558565b82525050565b6000612f3f826133e3565b612f4981856133f9565b9350612f598185602086016135c9565b612f62816137d8565b840191505092915050565b6000612f78826133ee565b612f828185613415565b9350612f928185602086016135c9565b612f9b816137d8565b840191505092915050565b6000612fb1826133ee565b612fbb8185613426565b9350612fcb8185602086016135c9565b80840191505092915050565b6000612fe4602e83613415565b9150612fef826137e9565b604082019050919050565b6000613007602683613415565b915061301282613838565b604082019050919050565b600061302a601483613415565b915061303582613887565b602082019050919050565b600061304d600f83613415565b9150613058826138b0565b602082019050919050565b6000613070602f83613415565b915061307b826138d9565b604082019050919050565b6000613093602083613415565b915061309e82613928565b602082019050919050565b60006130b6601683613415565b91506130c182613951565b602082019050919050565b60006130d960008361340a565b91506130e48261397a565b600082019050919050565b60006130fc601083613415565b91506131078261397d565b602082019050919050565b600061311f602e83613415565b915061312a826139a6565b604082019050919050565b61313e816135b0565b82525050565b60006131508285612fa6565b915061315c8284612fa6565b91508190509392505050565b6000613173826130cc565b9150819050919050565b60006020820190506131926000830184612f16565b92915050565b60006080820190506131ad6000830187612f16565b6131ba6020830186612f16565b6131c76040830185613135565b81810360608301526131d98184612f34565b905095945050505050565b60006020820190506131f96000830184612f25565b92915050565b600060208201905081810360008301526132198184612f6d565b905092915050565b6000602082019050818103600083015261323a81612fd7565b9050919050565b6000602082019050818103600083015261325a81612ffa565b9050919050565b6000602082019050818103600083015261327a8161301d565b9050919050565b6000602082019050818103600083015261329a81613040565b9050919050565b600060208201905081810360008301526132ba81613063565b9050919050565b600060208201905081810360008301526132da81613086565b9050919050565b600060208201905081810360008301526132fa816130a9565b9050919050565b6000602082019050818103600083015261331a816130ef565b9050919050565b6000602082019050818103600083015261333a81613112565b9050919050565b60006020820190506133566000830184613135565b92915050565b6000613366613377565b9050613372828261362e565b919050565b6000604051905090565b600067ffffffffffffffff82111561339c5761339b613795565b5b6133a5826137d8565b9050602081019050919050565b600067ffffffffffffffff8211156133cd576133cc613795565b5b6133d6826137d8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061343c826135b0565b9150613447836135b0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561347c5761347b6136d9565b5b828201905092915050565b6000613492826135b0565b915061349d836135b0565b9250826134ad576134ac613708565b5b828204905092915050565b60006134c3826135b0565b91506134ce836135b0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613507576135066136d9565b5b828202905092915050565b600061351d826135b0565b9150613528836135b0565b92508282101561353b5761353a6136d9565b5b828203905092915050565b600061355182613590565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135e75780820151818401526020810190506135cc565b838111156135f6576000848401525b50505050565b6000600282049050600182168061361457607f821691505b6020821081141561362857613627613737565b5b50919050565b613637826137d8565b810181811067ffffffffffffffff8211171561365657613655613795565b5b80604052505050565b600061366a826135b0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561369d5761369c6136d9565b5b600182019050919050565b60006136b3826135b0565b91506136be836135b0565b9250826136ce576136cd613708565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f496e76616c696420546f6b656e49640000000000000000000000000000000000600082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d6178696d756d20313030204e4654732063616e206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b6139fe81613546565b8114613a0957600080fd5b50565b613a1581613558565b8114613a2057600080fd5b50565b613a2c81613564565b8114613a3757600080fd5b50565b613a43816135b0565b8114613a4e57600080fd5b5056fea264697066735822122063a85a25dc1e1ec800fe5734cae1ef652c2fb45976973c573dd69ad938382cad64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

112:2075:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6103:372:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8713:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10216:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9779:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;597:97:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11073:170:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4926:1105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;272:42:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1000:182;;;;;;;;;;;;;:::i;:::-;;1190:873;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11314:185:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3913:713;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;702:101:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8522:124:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;323:51:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6539:206:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1746:148:11;;;;;;;;;;;;;:::i;:::-;;914:78:12;;;;;;;;;;;;;:::i;:::-;;1095:87:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8882:104:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;512:28:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;421:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10492:279:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;811:95:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11570:342:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9057:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10842:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2049:244:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6103:372:4;6205:4;6257:25;6242:40;;;:11;:40;;;;:105;;;;6314:33;6299:48;;;:11;:48;;;;6242:105;:172;;;;6379:35;6364:50;;;:11;:50;;;;6242:172;:225;;;;6431:36;6455:11;6431:23;:36::i;:::-;6242:225;6222:245;;6103:372;;;:::o;8713:100::-;8767:13;8800:5;8793:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8713:100;:::o;10216:204::-;10284:7;10309:16;10317:7;10309;:16::i;:::-;10304:64;;10334:34;;;;;;;;;;;;;;10304:64;10388:15;:24;10404:7;10388:24;;;;;;;;;;;;;;;;;;;;;10381:31;;10216:204;;;:::o;9779:371::-;9852:13;9868:24;9884:7;9868:15;:24::i;:::-;9852:40;;9913:5;9907:11;;:2;:11;;;9903:48;;;9927:24;;;;;;;;;;;;;;9903:48;9984:5;9968:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;9994:37;10011:5;10018:12;:10;:12::i;:::-;9994:16;:37::i;:::-;9993:38;9968:63;9964:138;;;10055:35;;;;;;;;;;;;;;9964:138;10114:28;10123:2;10127:7;10136:5;10114:8;:28::i;:::-;9841:309;9779:371;;:::o;597:97:12:-;650:7;677:9;;670:16;;597:97;:::o;11073:170:4:-;11207:28;11217:4;11223:2;11227:7;11207:9;:28::i;:::-;11073:170;;;:::o;4926:1105::-;5015:7;5048:16;5058:5;5048:9;:16::i;:::-;5039:5;:25;5035:61;;5073:23;;;;;;;;;;;;;;5035:61;5107:22;5132:13;;5107:38;;5156:19;5186:25;5387:9;5382:557;5402:14;5398:1;:18;5382:557;;;5442:31;5476:11;:14;5488:1;5476:14;;;;;;;;;;;5442:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5513:9;:16;;;5509:73;;;5554:8;;;5509:73;5630:1;5604:28;;:9;:14;;;:28;;;5600:111;;5677:9;:14;;;5657:34;;5600:111;5754:5;5733:26;;:17;:26;;;5729:195;;;5803:5;5788:11;:20;5784:85;;;5844:1;5837:8;;;;;;;;;5784:85;5891:13;;;;;;;5729:195;5423:516;5382:557;5418:3;;;;;;;5382:557;;;;6015:8;;;4926:1105;;;;;:::o;272:42:12:-;309:5;272:42;:::o;1000:182::-;1326:12:11;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1051:12:12::1;1077:10;1069:24;;1101:21;1069:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1050:77;;;1146:7;1138:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;1039:143;1000:182::o:0;1190:873::-;1261:14;1278:13;:11;:13::i;:::-;1261:30;;1319:1;1310:6;:10;1302:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1402:7;:5;:7::i;:::-;1388:21;;:10;:21;;;1384:566;;1434:8;;;;;;;;;;;1426:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1518:3;1508:6;:13;;1482:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;370:4;1630:6;1621;:15;;;;:::i;:::-;:38;1618:321;;;309:5;1709:6;1700;:15;;;;:::i;:::-;:29;;1692:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;1826:6;1818:5;;:14;;;;:::i;:::-;1805:9;:27;;1775:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;1618:321;1384:566;1973:6;1960:9;;:19;;;;;;;:::i;:::-;;;;;;;;1996:22;2006:3;2011:6;1996:9;:22::i;:::-;2034:14;2041:6;2034:14;;;;;;:::i;:::-;;;;;;;;1250:813;1190:873;;:::o;11314:185:4:-;11452:39;11469:4;11475:2;11479:7;11452:39;;;;;;;;;;;;:16;:39::i;:::-;11314:185;;;:::o;3913:713::-;3980:7;4000:22;4025:13;;4000:38;;4049:19;4244:9;4239:328;4259:14;4255:1;:18;4239:328;;;4299:31;4333:11;:14;4345:1;4333:14;;;;;;;;;;;4299:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4371:9;:16;;;4366:186;;4431:5;4416:11;:20;4412:85;;;4472:1;4465:8;;;;;;;;4412:85;4519:13;;;;;;;4366:186;4280:287;4275:3;;;;;;;4239:328;;;;4595:23;;;;;;;;;;;;;;3913:713;;;;:::o;702:101:12:-;1326:12:11;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;788:7:12::1;773:12;:22;;;;;;;;;;;;:::i;:::-;;702:101:::0;:::o;8522:124:4:-;8586:7;8613:20;8625:7;8613:11;:20::i;:::-;:25;;;8606:32;;8522:124;;;:::o;323:51:12:-;370:4;323:51;:::o;6539:206:4:-;6603:7;6644:1;6627:19;;:5;:19;;;6623:60;;;6655:28;;;;;;;;;;;;;;6623:60;6709:12;:19;6722:5;6709:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;6701:36;;6694:43;;6539:206;;;:::o;1746:148:11:-;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;914:78:12:-;1326:12:11;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;976:8:12::1;;;;;;;;;;;975:9;964:8;;:20;;;;;;;;;;;;;;;;;;914:78::o:0;1095:87:11:-;1141:7;1168:6;;;;;;;;;;;1161:13;;1095:87;:::o;8882:104:4:-;8938:13;8971:7;8964:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8882:104;:::o;512:28:12:-;;;;;;;;;;;;;:::o;421:40::-;;;;:::o;10492:279:4:-;10595:12;:10;:12::i;:::-;10583:24;;:8;:24;;;10579:54;;;10616:17;;;;;;;;;;;;;;10579:54;10691:8;10646:18;:32;10665:12;:10;:12::i;:::-;10646:32;;;;;;;;;;;;;;;:42;10679:8;10646:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10744:8;10715:48;;10730:12;:10;:12::i;:::-;10715:48;;;10754:8;10715:48;;;;;;:::i;:::-;;;;;;;;10492:279;;:::o;811:95:12:-;1326:12:11;:10;:12::i;:::-;1315:23;;:7;:5;:7::i;:::-;:23;;;1307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;889:9:12::1;881:5;:17;;;;811:95:::0;:::o;11570:342:4:-;11737:28;11747:4;11753:2;11757:7;11737:9;:28::i;:::-;11781:48;11804:4;11810:2;11814:7;11823:5;11781:22;:48::i;:::-;11776:129;;11853:40;;;;;;;;;;;;;;11776:129;11570:342;;;;:::o;9057:318::-;9130:13;9161:16;9169:7;9161;:16::i;:::-;9156:59;;9186:29;;;;;;;;;;;;;;9156:59;9228:21;9252:10;:8;:10::i;:::-;9228:34;;9305:1;9286:7;9280:21;:26;;:87;;;;;;;;;;;;;;;;;9333:7;9342:18;:7;:16;:18::i;:::-;9316:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;9280:87;9273:94;;;9057:318;;;:::o;10842:164::-;10939:4;10963:18;:25;10982:5;10963:25;;;;;;;;;;;;;;;:35;10989:8;10963:35;;;;;;;;;;;;;;;;;;;;;;;;;10956:42;;10842:164;;;;:::o;2049:244:11:-;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;12167:194:4:-;12224:4;12259:1;12249:7;:11;12241:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;12308:13;;12298:7;:23;:55;;;;;12326:11;:20;12338:7;12326:20;;;;;;;;;;;:27;;;;;;;;;;;;12325:28;12298:55;12291:62;;12167:194;;;:::o;601:98:1:-;654:7;681:10;674:17;;601:98;:::o;19423:196:4:-;19565:2;19538:15;:24;19554:7;19538:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19603:7;19599:2;19583:28;;19592:5;19583:28;;;;;;;;;;;;19423:196;;;:::o;14924:2112::-;15039:35;15077:20;15089:7;15077:11;:20::i;:::-;15039:58;;15110:22;15152:13;:18;;;15136:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;15187:50;15204:13;:18;;;15224:12;:10;:12::i;:::-;15187:16;:50::i;:::-;15136:101;:154;;;;15278:12;:10;:12::i;:::-;15254:36;;:20;15266:7;15254:11;:20::i;:::-;:36;;;15136:154;15110:181;;15309:17;15304:66;;15335:35;;;;;;;;;;;;;;15304:66;15407:4;15385:26;;:13;:18;;;:26;;;15381:67;;15420:28;;;;;;;;;;;;;;15381:67;15477:1;15463:16;;:2;:16;;;15459:52;;;15488:23;;;;;;;;;;;;;;15459:52;15524:43;15546:4;15552:2;15556:7;15565:1;15524:21;:43::i;:::-;15632:49;15649:1;15653:7;15662:13;:18;;;15632:8;:49::i;:::-;16007:1;15977:12;:18;15990:4;15977:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16051:1;16023:12;:16;16036:2;16023:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16097:2;16069:11;:20;16081:7;16069:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;16159:15;16114:11;:20;16126:7;16114:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;16427:19;16459:1;16449:7;:11;16427:33;;16520:1;16479:43;;:11;:24;16491:11;16479:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;16475:445;;;16704:13;;16690:11;:27;16686:219;;;16774:13;:18;;;16742:11;:24;16754:11;16742:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;16857:13;:28;;;16815:11;:24;16827:11;16815:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;16686:219;16475:445;15952:979;16967:7;16963:2;16948:27;;16957:4;16948:27;;;;;;;;;;;;16986:42;17007:4;17013:2;17017:7;17026:1;16986:20;:42::i;:::-;15028:2008;;14924:2112;;;:::o;12369:104::-;12438:27;12448:2;12452:8;12438:27;;;;;;;;;;;;:9;:27::i;:::-;12369:104;;:::o;7377:1083::-;7438:21;;:::i;:::-;7472:12;7487:7;7472:22;;7543:13;;7536:4;:20;7532:861;;;7577:31;7611:11;:17;7623:4;7611:17;;;;;;;;;;;7577:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7652:9;:16;;;7647:731;;7723:1;7697:28;;:9;:14;;;:28;;;7693:101;;7761:9;7754:16;;;;;;7693:101;8098:261;8105:4;8098:261;;;8138:6;;;;;;;;8183:11;:17;8195:4;8183:17;;;;;;;;;;;8171:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8257:1;8231:28;;:9;:14;;;:28;;;8227:109;;8299:9;8292:16;;;;;;8227:109;8098:261;;;7647:731;7558:835;7532:861;8421:31;;;;;;;;;;;;;;7377:1083;;;;:::o;20184:790::-;20339:4;20360:15;:2;:13;;;:15::i;:::-;20356:611;;;20412:2;20396:36;;;20433:12;:10;:12::i;:::-;20447:4;20453:7;20462:5;20396:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20392:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20659:1;20642:6;:13;:18;20638:259;;;20692:40;;;;;;;;;;;;;;20638:259;20847:6;20841:13;20832:6;20828:2;20824:15;20817:38;20392:520;20529:45;;;20519:55;;;:6;:55;;;;20512:62;;;;;20356:611;20951:4;20944:11;;20184:790;;;;;;;:::o;2071:113:12:-;2131:13;2164:12;2157:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2071: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;21622:159:4:-;;;;;:::o;22440:158::-;;;;;:::o;12836:163::-;12959:32;12965:2;12969:8;12979:5;12986:4;12959:5;:32::i;:::-;12836:163;;;:::o;1195:326:0:-;1255:4;1512:1;1490:7;:19;;;:23;1483:30;;1195:326;;;:::o;13258:1412:4:-;13397:20;13420:13;;13397:36;;13462:1;13448:16;;:2;:16;;;13444:48;;;13473:19;;;;;;;;;;;;;;13444:48;13519:1;13507:8;:13;13503:44;;;13529:18;;;;;;;;;;;;;;13503:44;13560:61;13590:1;13594:2;13598:12;13612:8;13560:21;:61::i;:::-;13933:8;13898:12;:16;13911:2;13898:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13997:8;13957:12;:16;13970:2;13957:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14056:2;14023:11;:25;14035:12;14023:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;14123:15;14073:11;:25;14085:12;14073:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;14156:20;14179:12;14156:35;;14213:9;14208:328;14228:8;14224:1;:12;14208:328;;;14292:12;14288:2;14267:38;;14284:1;14267:38;;;;;;;;;;;;14328:4;:68;;;;;14337:59;14368:1;14372:2;14376:12;14390:5;14337:22;:59::i;:::-;14336:60;14328:68;14324:164;;;14428:40;;;;;;;;;;;;;;14324:164;14506:14;;;;;;;14238:3;;;;;;;14208:328;;;;14568:12;14552:13;:28;;;;13873:719;14602:60;14631:1;14635:2;14639:12;14653:8;14602:20;:60::i;:::-;13386:1284;13258: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:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:398::-;11279:3;11300:83;11381:1;11376:3;11300:83;:::i;:::-;11293:90;;11392:93;11481:3;11392:93;:::i;:::-;11510:1;11505:3;11501:11;11494:18;;11120:398;;;:::o;11524:366::-;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:::-;12038:3;12059:67;12123:2;12118:3;12059:67;:::i;:::-;12052:74;;12135:93;12224:3;12135:93;:::i;:::-;12253:2;12248:3;12244:12;12237:19;;11896:366;;;:::o;12268:118::-;12355:24;12373:5;12355:24;:::i;:::-;12350:3;12343:37;12268:118;;:::o;12392:435::-;12572:3;12594:95;12685:3;12676:6;12594:95;:::i;:::-;12587:102;;12706:95;12797:3;12788:6;12706:95;:::i;:::-;12699:102;;12818:3;12811:10;;12392:435;;;;;:::o;12833:379::-;13017:3;13039:147;13182:3;13039:147;:::i;:::-;13032:154;;13203:3;13196:10;;12833:379;;;:::o;13218:222::-;13311:4;13349:2;13338:9;13334:18;13326:26;;13362:71;13430:1;13419:9;13415:17;13406:6;13362:71;:::i;:::-;13218:222;;;;:::o;13446:640::-;13641:4;13679:3;13668:9;13664:19;13656:27;;13693:71;13761:1;13750:9;13746:17;13737:6;13693:71;:::i;:::-;13774:72;13842:2;13831:9;13827:18;13818:6;13774:72;:::i;:::-;13856;13924:2;13913:9;13909:18;13900:6;13856:72;:::i;:::-;13975:9;13969:4;13965:20;13960:2;13949:9;13945:18;13938:48;14003:76;14074:4;14065:6;14003:76;:::i;:::-;13995:84;;13446:640;;;;;;;:::o;14092:210::-;14179:4;14217:2;14206:9;14202:18;14194:26;;14230:65;14292:1;14281:9;14277:17;14268:6;14230:65;:::i;:::-;14092:210;;;;:::o;14308:313::-;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:78;14609:4;14600:6;14536:78;:::i;:::-;14528:86;;14308:313;;;;:::o;14627:419::-;14793:4;14831:2;14820:9;14816:18;14808:26;;14880:9;14874:4;14870:20;14866:1;14855:9;14851:17;14844:47;14908:131;15034:4;14908:131;:::i;:::-;14900:139;;14627:419;;;:::o;15052:::-;15218:4;15256:2;15245:9;15241:18;15233:26;;15305:9;15299:4;15295:20;15291:1;15280:9;15276:17;15269:47;15333:131;15459:4;15333:131;:::i;:::-;15325:139;;15052:419;;;:::o;15477:::-;15643:4;15681:2;15670:9;15666:18;15658:26;;15730:9;15724:4;15720:20;15716:1;15705:9;15701:17;15694:47;15758:131;15884:4;15758:131;:::i;:::-;15750:139;;15477:419;;;:::o;15902:::-;16068:4;16106:2;16095:9;16091:18;16083:26;;16155:9;16149:4;16145:20;16141:1;16130:9;16126:17;16119:47;16183:131;16309:4;16183:131;:::i;:::-;16175:139;;15902:419;;;:::o;16327:::-;16493:4;16531:2;16520:9;16516:18;16508:26;;16580:9;16574:4;16570:20;16566:1;16555:9;16551:17;16544:47;16608:131;16734:4;16608:131;:::i;:::-;16600:139;;16327:419;;;:::o;16752:::-;16918:4;16956:2;16945:9;16941:18;16933:26;;17005:9;16999:4;16995:20;16991:1;16980:9;16976:17;16969:47;17033:131;17159:4;17033:131;:::i;:::-;17025:139;;16752:419;;;:::o;17177:::-;17343:4;17381:2;17370:9;17366:18;17358:26;;17430:9;17424:4;17420:20;17416:1;17405:9;17401:17;17394:47;17458:131;17584:4;17458:131;:::i;:::-;17450:139;;17177:419;;;:::o;17602:::-;17768:4;17806:2;17795:9;17791:18;17783:26;;17855:9;17849:4;17845:20;17841:1;17830:9;17826:17;17819:47;17883:131;18009:4;17883:131;:::i;:::-;17875:139;;17602:419;;;:::o;18027:::-;18193:4;18231:2;18220:9;18216:18;18208:26;;18280:9;18274:4;18270:20;18266:1;18255:9;18251:17;18244:47;18308:131;18434:4;18308:131;:::i;:::-;18300:139;;18027:419;;;:::o;18452:222::-;18545:4;18583:2;18572:9;18568:18;18560:26;;18596:71;18664:1;18653:9;18649:17;18640:6;18596:71;:::i;:::-;18452:222;;;;:::o;18680:129::-;18714:6;18741:20;;:::i;:::-;18731:30;;18770:33;18798:4;18790:6;18770:33;:::i;:::-;18680:129;;;:::o;18815:75::-;18848:6;18881:2;18875:9;18865:19;;18815:75;:::o;18896:307::-;18957:4;19047:18;19039:6;19036:30;19033:56;;;19069:18;;:::i;:::-;19033:56;19107:29;19129:6;19107:29;:::i;:::-;19099:37;;19191:4;19185;19181:15;19173:23;;18896:307;;;:::o;19209:308::-;19271:4;19361:18;19353:6;19350:30;19347:56;;;19383:18;;:::i;:::-;19347:56;19421:29;19443:6;19421:29;:::i;:::-;19413:37;;19505:4;19499;19495:15;19487:23;;19209:308;;;:::o;19523:98::-;19574:6;19608:5;19602:12;19592:22;;19523:98;;;:::o;19627:99::-;19679:6;19713:5;19707:12;19697:22;;19627:99;;;:::o;19732:168::-;19815:11;19849:6;19844:3;19837:19;19889:4;19884:3;19880:14;19865:29;;19732:168;;;;:::o;19906:147::-;20007:11;20044:3;20029:18;;19906:147;;;;:::o;20059:169::-;20143:11;20177:6;20172:3;20165:19;20217:4;20212:3;20208:14;20193:29;;20059:169;;;;:::o;20234:148::-;20336:11;20373:3;20358:18;;20234:148;;;;:::o;20388:305::-;20428:3;20447:20;20465:1;20447:20;:::i;:::-;20442:25;;20481:20;20499:1;20481:20;:::i;:::-;20476:25;;20635:1;20567:66;20563:74;20560:1;20557:81;20554:107;;;20641:18;;:::i;:::-;20554:107;20685:1;20682;20678:9;20671:16;;20388:305;;;;:::o;20699:185::-;20739:1;20756:20;20774:1;20756:20;:::i;:::-;20751:25;;20790:20;20808:1;20790:20;:::i;:::-;20785:25;;20829:1;20819:35;;20834:18;;:::i;:::-;20819:35;20876:1;20873;20869:9;20864:14;;20699:185;;;;:::o;20890:348::-;20930:7;20953:20;20971:1;20953:20;:::i;:::-;20948:25;;20987:20;21005:1;20987:20;:::i;:::-;20982:25;;21175:1;21107:66;21103:74;21100:1;21097:81;21092:1;21085:9;21078:17;21074:105;21071:131;;;21182:18;;:::i;:::-;21071:131;21230:1;21227;21223:9;21212:20;;20890:348;;;;:::o;21244:191::-;21284:4;21304:20;21322:1;21304:20;:::i;:::-;21299:25;;21338:20;21356:1;21338:20;:::i;:::-;21333:25;;21377:1;21374;21371:8;21368:34;;;21382:18;;:::i;:::-;21368:34;21427:1;21424;21420:9;21412:17;;21244:191;;;;:::o;21441:96::-;21478:7;21507:24;21525:5;21507:24;:::i;:::-;21496:35;;21441:96;;;:::o;21543:90::-;21577:7;21620:5;21613:13;21606:21;21595:32;;21543:90;;;:::o;21639:149::-;21675:7;21715:66;21708:5;21704:78;21693:89;;21639:149;;;:::o;21794:126::-;21831:7;21871:42;21864:5;21860:54;21849:65;;21794:126;;;:::o;21926:77::-;21963:7;21992:5;21981:16;;21926:77;;;:::o;22009:154::-;22093:6;22088:3;22083;22070:30;22155:1;22146:6;22141:3;22137:16;22130:27;22009:154;;;:::o;22169:307::-;22237:1;22247:113;22261:6;22258:1;22255:13;22247:113;;;22346:1;22341:3;22337:11;22331:18;22327:1;22322:3;22318:11;22311:39;22283:2;22280:1;22276:10;22271:15;;22247:113;;;22378:6;22375:1;22372:13;22369:101;;;22458:1;22449:6;22444:3;22440:16;22433:27;22369:101;22218:258;22169:307;;;:::o;22482:320::-;22526:6;22563:1;22557:4;22553:12;22543:22;;22610:1;22604:4;22600:12;22631:18;22621:81;;22687:4;22679:6;22675:17;22665:27;;22621:81;22749:2;22741:6;22738:14;22718:18;22715:38;22712:84;;;22768:18;;:::i;:::-;22712:84;22533:269;22482:320;;;:::o;22808:281::-;22891:27;22913:4;22891:27;:::i;:::-;22883:6;22879:40;23021:6;23009:10;23006:22;22985:18;22973:10;22970:34;22967:62;22964:88;;;23032:18;;:::i;:::-;22964:88;23072:10;23068:2;23061:22;22851:238;22808:281;;:::o;23095:233::-;23134:3;23157:24;23175:5;23157:24;:::i;:::-;23148:33;;23203:66;23196:5;23193:77;23190:103;;;23273:18;;:::i;:::-;23190:103;23320:1;23313:5;23309:13;23302:20;;23095:233;;;:::o;23334:176::-;23366:1;23383:20;23401:1;23383:20;:::i;:::-;23378:25;;23417:20;23435:1;23417:20;:::i;:::-;23412:25;;23456:1;23446:35;;23461:18;;:::i;:::-;23446:35;23502:1;23499;23495:9;23490:14;;23334:176;;;;:::o;23516:180::-;23564:77;23561:1;23554:88;23661:4;23658:1;23651:15;23685:4;23682:1;23675:15;23702:180;23750:77;23747:1;23740:88;23847:4;23844:1;23837:15;23871:4;23868:1;23861:15;23888:180;23936:77;23933:1;23926:88;24033:4;24030:1;24023:15;24057:4;24054:1;24047:15;24074:180;24122:77;24119:1;24112:88;24219:4;24216:1;24209:15;24243:4;24240:1;24233:15;24260:180;24308:77;24305:1;24298:88;24405:4;24402:1;24395:15;24429:4;24426:1;24419:15;24446:117;24555:1;24552;24545:12;24569:117;24678:1;24675;24668:12;24692:117;24801:1;24798;24791:12;24815:117;24924:1;24921;24914:12;24938:102;24979:6;25030:2;25026:7;25021:2;25014:5;25010:14;25006:28;24996:38;;24938:102;;;:::o;25046:233::-;25186:34;25182:1;25174:6;25170:14;25163:58;25255:16;25250:2;25242:6;25238:15;25231:41;25046:233;:::o;25285:225::-;25425:34;25421:1;25413:6;25409:14;25402:58;25494:8;25489:2;25481:6;25477:15;25470:33;25285:225;:::o;25516:170::-;25656:22;25652:1;25644:6;25640:14;25633:46;25516:170;:::o;25692:165::-;25832:17;25828:1;25820:6;25816:14;25809:41;25692:165;:::o;25863:234::-;26003:34;25999:1;25991:6;25987:14;25980:58;26072:17;26067:2;26059:6;26055:15;26048:42;25863:234;:::o;26103:182::-;26243:34;26239:1;26231:6;26227:14;26220:58;26103:182;:::o;26291:172::-;26431:24;26427:1;26419:6;26415:14;26408:48;26291:172;:::o;26469:114::-;;:::o;26589:166::-;26729:18;26725:1;26717:6;26713:14;26706:42;26589:166;:::o;26761:233::-;26901:34;26897:1;26889:6;26885:14;26878:58;26970:16;26965:2;26957:6;26953:15;26946:41;26761:233;:::o;27000:122::-;27073:24;27091:5;27073:24;:::i;:::-;27066:5;27063:35;27053:63;;27112:1;27109;27102:12;27053:63;27000:122;:::o;27128:116::-;27198:21;27213:5;27198:21;:::i;:::-;27191:5;27188:32;27178:60;;27234:1;27231;27224:12;27178:60;27128:116;:::o;27250:120::-;27322:23;27339:5;27322:23;:::i;:::-;27315:5;27312:34;27302:62;;27360:1;27357;27350:12;27302:62;27250:120;:::o;27376:122::-;27449:24;27467:5;27449:24;:::i;:::-;27442:5;27439:35;27429:63;;27488:1;27485;27478:12;27429:63;27376:122;:::o

Swarm Source

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