ETH Price: $3,100.35 (+1.11%)
Gas: 3 Gwei

Token

Twitterbirds (Twitterbirds)
 

Overview

Max Total Supply

2,265 Twitterbirds

Holders

347

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Twitterbirds
0x517f87551abad9060d2b56732d7260fe74be7fed
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:
Twitterbirds

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 12 of 14: Muskbirds.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

contract Twitterbirds is ERC721A, Ownable {
    using Strings for uint256;

    constructor() ERC721A("Twitterbirds", "Twitterbirds") {}

    uint256 public constant MAX_SUPPLY = 2000;

    uint256 public price = 0.004 ether;

    uint256 public maxPerTransaction = 10;

    uint256 public maxFreeAmountPerAddress = 10;

    uint256 private mintCount = 0;

    uint256 public freeMintAmount = 333;

    string private baseTokenURI;

    bool public saleOpen = true;

    mapping(address => bool) private _mintedFreeAddress;

    mapping(address => uint256) private _mintedFreeAmount;

    event Minted(uint256 totalMinted);

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

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

    function setFreeAmount(uint256 amount) external onlyOwner {
        freeMintAmount = amount;
    }

    function setPrice(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 mintOneForFree() external {
        require(
            _mintedFreeAddress[msg.sender] == false,
            "Maxinum 1 free mint for per address."
        );
        _mintedFreeAddress[msg.sender] = true;
        _safeMint(msg.sender, 1);
        emit Minted(1);
    }

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

        require(saleOpen, "Sale is not open yet");
        require(supply + _count <= MAX_SUPLY, "Exceeds maximum supply");
        require(_count > 0, "Minimum 1 NFT has to be minted per transaction");
        require(
            _count <= maxPerTransaction,
            "Maximum 10 NFTs can be minted per transaction"
        );

        if (
            (mintCount + _count) > freeMintAmount ||
            _mintedFreeAmount[msg.sender] + _count > maxFreeAmountPerAddress
        ) {
            require(
                msg.value >= price * _count,
                "Ether sent with this transaction is not correct"
            );
        } else {
            _mintedFreeAmount[msg.sender] += _count;
        }

        mintCount += _count;
        _safeMint(msg.sender, _count);
        emit Minted(_count);
    }

    function reserveMint(uint256 _count) external onlyOwner {
        uint256 supply = totalSupply();

        require(saleOpen, "Sale is not open yet");
        require(supply + _count <= MAX_SUPLY, "Exceeds maximum supply");
        _safeMint(msg.sender, _count);
        emit Minted(_count);
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return
            string(abi.encodePacked(baseTokenURI, tokenId.toString(), ".json"));
    }
}

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

pragma solidity ^0.8.0;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 14: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    uint public MAX_SUPLY = 10000;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

File 8 of 14: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPLY","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":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeAmountPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintOneForFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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"}]

6080604052612710600255660e35fa931a0000600a55600a600b55600a600c556000600d5561014d600e556001601060006101000a81548160ff0219169083151502179055503480156200005257600080fd5b506040518060400160405280600c81526020017f54776974746572626972647300000000000000000000000000000000000000008152506040518060400160405280600c81526020017f54776974746572626972647300000000000000000000000000000000000000008152508160039080519060200190620000d7929190620001b2565b508060049080519060200190620000f0929190620001b2565b505050600062000105620001aa60201b60201c565b905080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002c7565b600033905090565b828054620001c09062000262565b90600052602060002090601f016020900481019282620001e4576000855562000230565b82601f10620001ff57805160ff191683800117855562000230565b8280016001018555821562000230579182015b828111156200022f57825182559160200191906001019062000212565b5b5090506200023f919062000243565b5090565b5b808211156200025e57600081600090555060010162000244565b5090565b600060028204905060018216806200027b57607f821691505b6020821081141562000292576200029162000298565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61404680620002d76000396000f3fe6080604052600436106101f95760003560e01c80636352211e1161010d57806399288dbb116100a0578063b88d4fde1161006f578063b88d4fde146106ee578063bfd51edf14610717578063c87b56dd1461072e578063e985e9c51461076b578063f2fde38b146107a8576101f9565b806399288dbb14610653578063a035b1fe1461067e578063a0712d68146106a9578063a22cb465146106c5576101f9565b80638da5cb5b116100dc5780638da5cb5b146105ab57806391b7f5ed146105d657806392910eec146105ff57806395d89b4114610628576101f9565b80636352211e1461050357806370a0823114610540578063715018a61461057d5780637ba5e62114610594576101f9565b80632f745c591161019057806342842e0e1161015f57806342842e0e1461041e5780634b980d67146104475780634f6ccce71461047257806355f804b3146104af5780635d3155f3146104d8576101f9565b80632f745c591461037457806332cb6b0c146103b15780633a467e3d146103dc5780633ccfd60b14610407576101f9565b80631342ff4c116101cc5780631342ff4c146102cc57806318160ddd146102f557806323b872dd146103205780632e40a72214610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613226565b6107d1565b60405161023291906136a3565b60405180910390f35b34801561024757600080fd5b5061025061091b565b60405161025d91906136d9565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906132c9565b6109ad565b60405161029a919061363c565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c591906131e6565b610a29565b005b3480156102d857600080fd5b506102f360048036038101906102ee91906132c9565b610b34565b005b34801561030157600080fd5b5061030a610ca0565b604051610317919061383b565b60405180910390f35b34801561032c57600080fd5b50610347600480360381019061034291906130d0565b610caa565b005b34801561035557600080fd5b5061035e610cba565b60405161036b919061383b565b60405180910390f35b34801561038057600080fd5b5061039b600480360381019061039691906131e6565b610cc0565b6040516103a8919061383b565b60405180910390f35b3480156103bd57600080fd5b506103c6610e99565b6040516103d3919061383b565b60405180910390f35b3480156103e857600080fd5b506103f1610e9f565b6040516103fe919061383b565b60405180910390f35b34801561041357600080fd5b5061041c610ea5565b005b34801561042a57600080fd5b50610445600480360381019061044091906130d0565b610fd0565b005b34801561045357600080fd5b5061045c610ff0565b604051610469919061383b565b60405180910390f35b34801561047e57600080fd5b50610499600480360381019061049491906132c9565b610ff6565b6040516104a6919061383b565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190613280565b61113b565b005b3480156104e457600080fd5b506104ed6111d1565b6040516104fa919061383b565b60405180910390f35b34801561050f57600080fd5b5061052a600480360381019061052591906132c9565b6111d7565b604051610537919061363c565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190613063565b6111ed565b604051610574919061383b565b60405180910390f35b34801561058957600080fd5b506105926112bd565b005b3480156105a057600080fd5b506105a96113fa565b005b3480156105b757600080fd5b506105c06114a2565b6040516105cd919061363c565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f891906132c9565b6114cc565b005b34801561060b57600080fd5b50610626600480360381019061062191906132c9565b611552565b005b34801561063457600080fd5b5061063d6115d8565b60405161064a91906136d9565b60405180910390f35b34801561065f57600080fd5b5061066861166a565b60405161067591906136a3565b60405180910390f35b34801561068a57600080fd5b5061069361167d565b6040516106a0919061383b565b60405180910390f35b6106c360048036038101906106be91906132c9565b611683565b005b3480156106d157600080fd5b506106ec60048036038101906106e791906131a6565b61192d565b005b3480156106fa57600080fd5b5061071560048036038101906107109190613123565b611aa5565b005b34801561072357600080fd5b5061072c611af8565b005b34801561073a57600080fd5b50610755600480360381019061075091906132c9565b611c28565b60405161076291906136d9565b60405180910390f35b34801561077757600080fd5b50610792600480360381019061078d9190613090565b611ca4565b60405161079f91906136a3565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca9190613063565b611d38565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610914575061091382611ee4565b5b9050919050565b60606003805461092a90613b1d565b80601f016020809104026020016040519081016040528092919081815260200182805461095690613b1d565b80156109a35780601f10610978576101008083540402835291602001916109a3565b820191906000526020600020905b81548152906001019060200180831161098657829003601f168201915b5050505050905090565b60006109b882611f4e565b6109ee576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a34826111d7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a9c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610abb611f88565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aed5750610aeb81610ae6611f88565b611ca4565b155b15610b24576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2f838383611f90565b505050565b610b3c611f88565b73ffffffffffffffffffffffffffffffffffffffff16610b5a6114a2565b73ffffffffffffffffffffffffffffffffffffffff1614610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba7906137bb565b60405180910390fd5b6000610bba610ca0565b9050601060009054906101000a900460ff16610c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c029061375b565b60405180910390fd5b6002548282610c1a9190613940565b1115610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c52906137fb565b60405180910390fd5b610c653383612042565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a82604051610c94919061383b565b60405180910390a15050565b6000600d54905090565b610cb5838383612060565b505050565b60025481565b6000610ccb836111ed565b8210610d03576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610e8d576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610dec5750610e80565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e2c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e7e5786841415610e75578195505050505050610e93565b83806001019450505b505b8080600101915050610d0f565b50600080fd5b92915050565b6107d081565b600e5481565b610ead611f88565b73ffffffffffffffffffffffffffffffffffffffff16610ecb6114a2565b73ffffffffffffffffffffffffffffffffffffffff1614610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f18906137bb565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610f4790613627565b60006040518083038185875af1925050503d8060008114610f84576040519150601f19603f3d011682016040523d82523d6000602084013e610f89565b606091505b5050905080610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc49061381b565b60405180910390fd5b50565b610feb83838360405180602001604052806000815250611aa5565b505050565b600b5481565b60008060005490506000805b82811015611103576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516110f557858314156110ec5781945050505050611136565b82806001019350505b508080600101915050611002565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611143611f88565b73ffffffffffffffffffffffffffffffffffffffff166111616114a2565b73ffffffffffffffffffffffffffffffffffffffff16146111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae906137bb565b60405180910390fd5b80600f90805190602001906111cd929190612e34565b5050565b600c5481565b60006111e282612551565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611255576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112c5611f88565b73ffffffffffffffffffffffffffffffffffffffff166112e36114a2565b73ffffffffffffffffffffffffffffffffffffffff1614611339576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611330906137bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611402611f88565b73ffffffffffffffffffffffffffffffffffffffff166114206114a2565b73ffffffffffffffffffffffffffffffffffffffff1614611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d906137bb565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114d4611f88565b73ffffffffffffffffffffffffffffffffffffffff166114f26114a2565b73ffffffffffffffffffffffffffffffffffffffff1614611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f906137bb565b60405180910390fd5b80600a8190555050565b61155a611f88565b73ffffffffffffffffffffffffffffffffffffffff166115786114a2565b73ffffffffffffffffffffffffffffffffffffffff16146115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c5906137bb565b60405180910390fd5b80600e8190555050565b6060600480546115e790613b1d565b80601f016020809104026020016040519081016040528092919081815260200182805461161390613b1d565b80156116605780601f1061163557610100808354040283529160200191611660565b820191906000526020600020905b81548152906001019060200180831161164357829003601f168201915b5050505050905090565b601060009054906101000a900460ff1681565b600a5481565b600061168d610ca0565b9050601060009054906101000a900460ff166116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d59061375b565b60405180910390fd5b60025482826116ed9190613940565b111561172e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611725906137fb565b60405180910390fd5b60008211611771576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611768906136fb565b60405180910390fd5b600b548211156117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad9061373b565b60405180910390fd5b600e5482600d546117c79190613940565b118061181e5750600c5482601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461181c9190613940565b115b156118785781600a5461183191906139c7565b341015611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a9061379b565b60405180910390fd5b6118cf565b81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118c79190613940565b925050819055505b81600d60008282546118e19190613940565b925050819055506118f23383612042565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a82604051611921919061383b565b60405180910390a15050565b611935611f88565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561199a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006119a7611f88565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a54611f88565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a9991906136a3565b60405180910390a35050565b611ab0848484612060565b611abc848484846127cd565b611af2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60001515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b829061377b565b60405180910390fd5b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611bee336001612042565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a6001604051611c1e91906136be565b60405180910390a1565b6060611c3382611f4e565b611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c69906137db565b60405180910390fd5b600f611c7d8361295b565b604051602001611c8e9291906135f8565b6040516020818303038152906040529050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d40611f88565b73ffffffffffffffffffffffffffffffffffffffff16611d5e6114a2565b73ffffffffffffffffffffffffffffffffffffffff1614611db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dab906137bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1b9061371b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015611f81575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61205c828260405180602001604052806000815250612abc565b5050565b600061206b82612551565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612092611f88565b73ffffffffffffffffffffffffffffffffffffffff1614806120c557506120c482600001516120bf611f88565b611ca4565b5b8061210a57506120d3611f88565b73ffffffffffffffffffffffffffffffffffffffff166120f2846109ad565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612143576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121ac576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612213576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122208585856001612ace565b6122306000848460000151611f90565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124e1576000548110156124e05782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461254a8585856001612ad4565b5050505050565b612559612eba565b6000829050600054811015612796576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161279457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126785780925050506127c8565b5b60011561279357818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461278e5780925050506127c8565b612679565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60006127ee8473ffffffffffffffffffffffffffffffffffffffff16612ada565b1561294e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612817611f88565b8786866040518563ffffffff1660e01b81526004016128399493929190613657565b602060405180830381600087803b15801561285357600080fd5b505af192505050801561288457506040513d601f19601f820116820180604052508101906128819190613253565b60015b6128fe573d80600081146128b4576040519150601f19603f3d011682016040523d82523d6000602084013e6128b9565b606091505b506000815114156128f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612953565b600190505b949350505050565b606060008214156129a3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ab7565b600082905060005b600082146129d55780806129be90613b80565b915050600a826129ce9190613996565b91506129ab565b60008167ffffffffffffffff8111156129f1576129f0613cb6565b5b6040519080825280601f01601f191660200182016040528015612a235781602001600182028036833780820191505090505b5090505b60008514612ab057600182612a3c9190613a21565b9150600a85612a4b9190613bc9565b6030612a579190613940565b60f81b818381518110612a6d57612a6c613c87565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612aa99190613996565b9450612a27565b8093505050505b919050565b612ac98383836001612afd565b505050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612b6a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612ba5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bb26000868387612ace565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612e1757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612dcb5750612dc960008884886127cd565b155b15612e02576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612d50565b508060008190555050612e2d6000868387612ad4565b5050505050565b828054612e4090613b1d565b90600052602060002090601f016020900481019282612e625760008555612ea9565b82601f10612e7b57805160ff1916838001178555612ea9565b82800160010185558215612ea9579182015b82811115612ea8578251825591602001919060010190612e8d565b5b509050612eb69190612efd565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f16576000816000905550600101612efe565b5090565b6000612f2d612f288461387b565b613856565b905082815260208101848484011115612f4957612f48613cea565b5b612f54848285613adb565b509392505050565b6000612f6f612f6a846138ac565b613856565b905082815260208101848484011115612f8b57612f8a613cea565b5b612f96848285613adb565b509392505050565b600081359050612fad81613fb4565b92915050565b600081359050612fc281613fcb565b92915050565b600081359050612fd781613fe2565b92915050565b600081519050612fec81613fe2565b92915050565b600082601f83011261300757613006613ce5565b5b8135613017848260208601612f1a565b91505092915050565b600082601f83011261303557613034613ce5565b5b8135613045848260208601612f5c565b91505092915050565b60008135905061305d81613ff9565b92915050565b60006020828403121561307957613078613cf4565b5b600061308784828501612f9e565b91505092915050565b600080604083850312156130a7576130a6613cf4565b5b60006130b585828601612f9e565b92505060206130c685828601612f9e565b9150509250929050565b6000806000606084860312156130e9576130e8613cf4565b5b60006130f786828701612f9e565b935050602061310886828701612f9e565b92505060406131198682870161304e565b9150509250925092565b6000806000806080858703121561313d5761313c613cf4565b5b600061314b87828801612f9e565b945050602061315c87828801612f9e565b935050604061316d8782880161304e565b925050606085013567ffffffffffffffff81111561318e5761318d613cef565b5b61319a87828801612ff2565b91505092959194509250565b600080604083850312156131bd576131bc613cf4565b5b60006131cb85828601612f9e565b92505060206131dc85828601612fb3565b9150509250929050565b600080604083850312156131fd576131fc613cf4565b5b600061320b85828601612f9e565b925050602061321c8582860161304e565b9150509250929050565b60006020828403121561323c5761323b613cf4565b5b600061324a84828501612fc8565b91505092915050565b60006020828403121561326957613268613cf4565b5b600061327784828501612fdd565b91505092915050565b60006020828403121561329657613295613cf4565b5b600082013567ffffffffffffffff8111156132b4576132b3613cef565b5b6132c084828501613020565b91505092915050565b6000602082840312156132df576132de613cf4565b5b60006132ed8482850161304e565b91505092915050565b6132ff81613a55565b82525050565b61330e81613a67565b82525050565b600061331f826138f2565b6133298185613908565b9350613339818560208601613aea565b61334281613cf9565b840191505092915050565b61335681613ac9565b82525050565b6000613367826138fd565b6133718185613924565b9350613381818560208601613aea565b61338a81613cf9565b840191505092915050565b60006133a0826138fd565b6133aa8185613935565b93506133ba818560208601613aea565b80840191505092915050565b600081546133d381613b1d565b6133dd8186613935565b945060018216600081146133f857600181146134095761343c565b60ff1983168652818601935061343c565b613412856138dd565b60005b8381101561343457815481890152600182019150602081019050613415565b838801955050505b50505092915050565b6000613452602e83613924565b915061345d82613d0a565b604082019050919050565b6000613475602683613924565b915061348082613d59565b604082019050919050565b6000613498602d83613924565b91506134a382613da8565b604082019050919050565b60006134bb601483613924565b91506134c682613df7565b602082019050919050565b60006134de602483613924565b91506134e982613e20565b604082019050919050565b6000613501600583613935565b915061350c82613e6f565b600582019050919050565b6000613524602f83613924565b915061352f82613e98565b604082019050919050565b6000613547602083613924565b915061355282613ee7565b602082019050919050565b600061356a602f83613924565b915061357582613f10565b604082019050919050565b600061358d601683613924565b915061359882613f5f565b602082019050919050565b60006135b0600083613919565b91506135bb82613f88565b600082019050919050565b60006135d3601083613924565b91506135de82613f8b565b602082019050919050565b6135f281613abf565b82525050565b600061360482856133c6565b91506136108284613395565b915061361b826134f4565b91508190509392505050565b6000613632826135a3565b9150819050919050565b600060208201905061365160008301846132f6565b92915050565b600060808201905061366c60008301876132f6565b61367960208301866132f6565b61368660408301856135e9565b81810360608301526136988184613314565b905095945050505050565b60006020820190506136b86000830184613305565b92915050565b60006020820190506136d3600083018461334d565b92915050565b600060208201905081810360008301526136f3818461335c565b905092915050565b6000602082019050818103600083015261371481613445565b9050919050565b6000602082019050818103600083015261373481613468565b9050919050565b600060208201905081810360008301526137548161348b565b9050919050565b60006020820190508181036000830152613774816134ae565b9050919050565b60006020820190508181036000830152613794816134d1565b9050919050565b600060208201905081810360008301526137b481613517565b9050919050565b600060208201905081810360008301526137d48161353a565b9050919050565b600060208201905081810360008301526137f48161355d565b9050919050565b6000602082019050818103600083015261381481613580565b9050919050565b60006020820190508181036000830152613834816135c6565b9050919050565b600060208201905061385060008301846135e9565b92915050565b6000613860613871565b905061386c8282613b4f565b919050565b6000604051905090565b600067ffffffffffffffff82111561389657613895613cb6565b5b61389f82613cf9565b9050602081019050919050565b600067ffffffffffffffff8211156138c7576138c6613cb6565b5b6138d082613cf9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061394b82613abf565b915061395683613abf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561398b5761398a613bfa565b5b828201905092915050565b60006139a182613abf565b91506139ac83613abf565b9250826139bc576139bb613c29565b5b828204905092915050565b60006139d282613abf565b91506139dd83613abf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a1657613a15613bfa565b5b828202905092915050565b6000613a2c82613abf565b9150613a3783613abf565b925082821015613a4a57613a49613bfa565b5b828203905092915050565b6000613a6082613a9f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613ad482613abf565b9050919050565b82818337600083830152505050565b60005b83811015613b08578082015181840152602081019050613aed565b83811115613b17576000848401525b50505050565b60006002820490506001821680613b3557607f821691505b60208210811415613b4957613b48613c58565b5b50919050565b613b5882613cf9565b810181811067ffffffffffffffff82111715613b7757613b76613cb6565b5b80604052505050565b6000613b8b82613abf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bbe57613bbd613bfa565b5b600182019050919050565b6000613bd482613abf565b9150613bdf83613abf565b925082613bef57613bee613c29565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d203130204e4654732063616e206265206d696e74656420706560008201527f72207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f4d6178696e756d20312066726565206d696e7420666f7220706572206164647260008201527f6573732e00000000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b613fbd81613a55565b8114613fc857600080fd5b50565b613fd481613a67565b8114613fdf57600080fd5b50565b613feb81613a73565b8114613ff657600080fd5b50565b61400281613abf565b811461400d57600080fd5b5056fea26469706673582212208be1140e61a5513b810e1fa2cc38e89d599347357873ea61700dc2ca4e4878f864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636352211e1161010d57806399288dbb116100a0578063b88d4fde1161006f578063b88d4fde146106ee578063bfd51edf14610717578063c87b56dd1461072e578063e985e9c51461076b578063f2fde38b146107a8576101f9565b806399288dbb14610653578063a035b1fe1461067e578063a0712d68146106a9578063a22cb465146106c5576101f9565b80638da5cb5b116100dc5780638da5cb5b146105ab57806391b7f5ed146105d657806392910eec146105ff57806395d89b4114610628576101f9565b80636352211e1461050357806370a0823114610540578063715018a61461057d5780637ba5e62114610594576101f9565b80632f745c591161019057806342842e0e1161015f57806342842e0e1461041e5780634b980d67146104475780634f6ccce71461047257806355f804b3146104af5780635d3155f3146104d8576101f9565b80632f745c591461037457806332cb6b0c146103b15780633a467e3d146103dc5780633ccfd60b14610407576101f9565b80631342ff4c116101cc5780631342ff4c146102cc57806318160ddd146102f557806323b872dd146103205780632e40a72214610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613226565b6107d1565b60405161023291906136a3565b60405180910390f35b34801561024757600080fd5b5061025061091b565b60405161025d91906136d9565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906132c9565b6109ad565b60405161029a919061363c565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c591906131e6565b610a29565b005b3480156102d857600080fd5b506102f360048036038101906102ee91906132c9565b610b34565b005b34801561030157600080fd5b5061030a610ca0565b604051610317919061383b565b60405180910390f35b34801561032c57600080fd5b50610347600480360381019061034291906130d0565b610caa565b005b34801561035557600080fd5b5061035e610cba565b60405161036b919061383b565b60405180910390f35b34801561038057600080fd5b5061039b600480360381019061039691906131e6565b610cc0565b6040516103a8919061383b565b60405180910390f35b3480156103bd57600080fd5b506103c6610e99565b6040516103d3919061383b565b60405180910390f35b3480156103e857600080fd5b506103f1610e9f565b6040516103fe919061383b565b60405180910390f35b34801561041357600080fd5b5061041c610ea5565b005b34801561042a57600080fd5b50610445600480360381019061044091906130d0565b610fd0565b005b34801561045357600080fd5b5061045c610ff0565b604051610469919061383b565b60405180910390f35b34801561047e57600080fd5b50610499600480360381019061049491906132c9565b610ff6565b6040516104a6919061383b565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190613280565b61113b565b005b3480156104e457600080fd5b506104ed6111d1565b6040516104fa919061383b565b60405180910390f35b34801561050f57600080fd5b5061052a600480360381019061052591906132c9565b6111d7565b604051610537919061363c565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190613063565b6111ed565b604051610574919061383b565b60405180910390f35b34801561058957600080fd5b506105926112bd565b005b3480156105a057600080fd5b506105a96113fa565b005b3480156105b757600080fd5b506105c06114a2565b6040516105cd919061363c565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f891906132c9565b6114cc565b005b34801561060b57600080fd5b50610626600480360381019061062191906132c9565b611552565b005b34801561063457600080fd5b5061063d6115d8565b60405161064a91906136d9565b60405180910390f35b34801561065f57600080fd5b5061066861166a565b60405161067591906136a3565b60405180910390f35b34801561068a57600080fd5b5061069361167d565b6040516106a0919061383b565b60405180910390f35b6106c360048036038101906106be91906132c9565b611683565b005b3480156106d157600080fd5b506106ec60048036038101906106e791906131a6565b61192d565b005b3480156106fa57600080fd5b5061071560048036038101906107109190613123565b611aa5565b005b34801561072357600080fd5b5061072c611af8565b005b34801561073a57600080fd5b50610755600480360381019061075091906132c9565b611c28565b60405161076291906136d9565b60405180910390f35b34801561077757600080fd5b50610792600480360381019061078d9190613090565b611ca4565b60405161079f91906136a3565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca9190613063565b611d38565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610914575061091382611ee4565b5b9050919050565b60606003805461092a90613b1d565b80601f016020809104026020016040519081016040528092919081815260200182805461095690613b1d565b80156109a35780601f10610978576101008083540402835291602001916109a3565b820191906000526020600020905b81548152906001019060200180831161098657829003601f168201915b5050505050905090565b60006109b882611f4e565b6109ee576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a34826111d7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a9c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610abb611f88565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aed5750610aeb81610ae6611f88565b611ca4565b155b15610b24576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2f838383611f90565b505050565b610b3c611f88565b73ffffffffffffffffffffffffffffffffffffffff16610b5a6114a2565b73ffffffffffffffffffffffffffffffffffffffff1614610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba7906137bb565b60405180910390fd5b6000610bba610ca0565b9050601060009054906101000a900460ff16610c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c029061375b565b60405180910390fd5b6002548282610c1a9190613940565b1115610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c52906137fb565b60405180910390fd5b610c653383612042565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a82604051610c94919061383b565b60405180910390a15050565b6000600d54905090565b610cb5838383612060565b505050565b60025481565b6000610ccb836111ed565b8210610d03576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610e8d576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610dec5750610e80565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e2c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e7e5786841415610e75578195505050505050610e93565b83806001019450505b505b8080600101915050610d0f565b50600080fd5b92915050565b6107d081565b600e5481565b610ead611f88565b73ffffffffffffffffffffffffffffffffffffffff16610ecb6114a2565b73ffffffffffffffffffffffffffffffffffffffff1614610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f18906137bb565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610f4790613627565b60006040518083038185875af1925050503d8060008114610f84576040519150601f19603f3d011682016040523d82523d6000602084013e610f89565b606091505b5050905080610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc49061381b565b60405180910390fd5b50565b610feb83838360405180602001604052806000815250611aa5565b505050565b600b5481565b60008060005490506000805b82811015611103576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516110f557858314156110ec5781945050505050611136565b82806001019350505b508080600101915050611002565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611143611f88565b73ffffffffffffffffffffffffffffffffffffffff166111616114a2565b73ffffffffffffffffffffffffffffffffffffffff16146111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae906137bb565b60405180910390fd5b80600f90805190602001906111cd929190612e34565b5050565b600c5481565b60006111e282612551565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611255576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112c5611f88565b73ffffffffffffffffffffffffffffffffffffffff166112e36114a2565b73ffffffffffffffffffffffffffffffffffffffff1614611339576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611330906137bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611402611f88565b73ffffffffffffffffffffffffffffffffffffffff166114206114a2565b73ffffffffffffffffffffffffffffffffffffffff1614611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d906137bb565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114d4611f88565b73ffffffffffffffffffffffffffffffffffffffff166114f26114a2565b73ffffffffffffffffffffffffffffffffffffffff1614611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f906137bb565b60405180910390fd5b80600a8190555050565b61155a611f88565b73ffffffffffffffffffffffffffffffffffffffff166115786114a2565b73ffffffffffffffffffffffffffffffffffffffff16146115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c5906137bb565b60405180910390fd5b80600e8190555050565b6060600480546115e790613b1d565b80601f016020809104026020016040519081016040528092919081815260200182805461161390613b1d565b80156116605780601f1061163557610100808354040283529160200191611660565b820191906000526020600020905b81548152906001019060200180831161164357829003601f168201915b5050505050905090565b601060009054906101000a900460ff1681565b600a5481565b600061168d610ca0565b9050601060009054906101000a900460ff166116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d59061375b565b60405180910390fd5b60025482826116ed9190613940565b111561172e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611725906137fb565b60405180910390fd5b60008211611771576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611768906136fb565b60405180910390fd5b600b548211156117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad9061373b565b60405180910390fd5b600e5482600d546117c79190613940565b118061181e5750600c5482601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461181c9190613940565b115b156118785781600a5461183191906139c7565b341015611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a9061379b565b60405180910390fd5b6118cf565b81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118c79190613940565b925050819055505b81600d60008282546118e19190613940565b925050819055506118f23383612042565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a82604051611921919061383b565b60405180910390a15050565b611935611f88565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561199a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006119a7611f88565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a54611f88565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a9991906136a3565b60405180910390a35050565b611ab0848484612060565b611abc848484846127cd565b611af2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60001515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b829061377b565b60405180910390fd5b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611bee336001612042565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a6001604051611c1e91906136be565b60405180910390a1565b6060611c3382611f4e565b611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c69906137db565b60405180910390fd5b600f611c7d8361295b565b604051602001611c8e9291906135f8565b6040516020818303038152906040529050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d40611f88565b73ffffffffffffffffffffffffffffffffffffffff16611d5e6114a2565b73ffffffffffffffffffffffffffffffffffffffff1614611db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dab906137bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1b9061371b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015611f81575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61205c828260405180602001604052806000815250612abc565b5050565b600061206b82612551565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612092611f88565b73ffffffffffffffffffffffffffffffffffffffff1614806120c557506120c482600001516120bf611f88565b611ca4565b5b8061210a57506120d3611f88565b73ffffffffffffffffffffffffffffffffffffffff166120f2846109ad565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612143576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121ac576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612213576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122208585856001612ace565b6122306000848460000151611f90565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124e1576000548110156124e05782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461254a8585856001612ad4565b5050505050565b612559612eba565b6000829050600054811015612796576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161279457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126785780925050506127c8565b5b60011561279357818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461278e5780925050506127c8565b612679565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60006127ee8473ffffffffffffffffffffffffffffffffffffffff16612ada565b1561294e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612817611f88565b8786866040518563ffffffff1660e01b81526004016128399493929190613657565b602060405180830381600087803b15801561285357600080fd5b505af192505050801561288457506040513d601f19601f820116820180604052508101906128819190613253565b60015b6128fe573d80600081146128b4576040519150601f19603f3d011682016040523d82523d6000602084013e6128b9565b606091505b506000815114156128f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612953565b600190505b949350505050565b606060008214156129a3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ab7565b600082905060005b600082146129d55780806129be90613b80565b915050600a826129ce9190613996565b91506129ab565b60008167ffffffffffffffff8111156129f1576129f0613cb6565b5b6040519080825280601f01601f191660200182016040528015612a235781602001600182028036833780820191505090505b5090505b60008514612ab057600182612a3c9190613a21565b9150600a85612a4b9190613bc9565b6030612a579190613940565b60f81b818381518110612a6d57612a6c613c87565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612aa99190613996565b9450612a27565b8093505050505b919050565b612ac98383836001612afd565b505050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612b6a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612ba5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bb26000868387612ace565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612e1757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612dcb5750612dc960008884886127cd565b155b15612e02576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612d50565b508060008190555050612e2d6000868387612ad4565b5050505050565b828054612e4090613b1d565b90600052602060002090601f016020900481019282612e625760008555612ea9565b82601f10612e7b57805160ff1916838001178555612ea9565b82800160010185558215612ea9579182015b82811115612ea8578251825591602001919060010190612e8d565b5b509050612eb69190612efd565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f16576000816000905550600101612efe565b5090565b6000612f2d612f288461387b565b613856565b905082815260208101848484011115612f4957612f48613cea565b5b612f54848285613adb565b509392505050565b6000612f6f612f6a846138ac565b613856565b905082815260208101848484011115612f8b57612f8a613cea565b5b612f96848285613adb565b509392505050565b600081359050612fad81613fb4565b92915050565b600081359050612fc281613fcb565b92915050565b600081359050612fd781613fe2565b92915050565b600081519050612fec81613fe2565b92915050565b600082601f83011261300757613006613ce5565b5b8135613017848260208601612f1a565b91505092915050565b600082601f83011261303557613034613ce5565b5b8135613045848260208601612f5c565b91505092915050565b60008135905061305d81613ff9565b92915050565b60006020828403121561307957613078613cf4565b5b600061308784828501612f9e565b91505092915050565b600080604083850312156130a7576130a6613cf4565b5b60006130b585828601612f9e565b92505060206130c685828601612f9e565b9150509250929050565b6000806000606084860312156130e9576130e8613cf4565b5b60006130f786828701612f9e565b935050602061310886828701612f9e565b92505060406131198682870161304e565b9150509250925092565b6000806000806080858703121561313d5761313c613cf4565b5b600061314b87828801612f9e565b945050602061315c87828801612f9e565b935050604061316d8782880161304e565b925050606085013567ffffffffffffffff81111561318e5761318d613cef565b5b61319a87828801612ff2565b91505092959194509250565b600080604083850312156131bd576131bc613cf4565b5b60006131cb85828601612f9e565b92505060206131dc85828601612fb3565b9150509250929050565b600080604083850312156131fd576131fc613cf4565b5b600061320b85828601612f9e565b925050602061321c8582860161304e565b9150509250929050565b60006020828403121561323c5761323b613cf4565b5b600061324a84828501612fc8565b91505092915050565b60006020828403121561326957613268613cf4565b5b600061327784828501612fdd565b91505092915050565b60006020828403121561329657613295613cf4565b5b600082013567ffffffffffffffff8111156132b4576132b3613cef565b5b6132c084828501613020565b91505092915050565b6000602082840312156132df576132de613cf4565b5b60006132ed8482850161304e565b91505092915050565b6132ff81613a55565b82525050565b61330e81613a67565b82525050565b600061331f826138f2565b6133298185613908565b9350613339818560208601613aea565b61334281613cf9565b840191505092915050565b61335681613ac9565b82525050565b6000613367826138fd565b6133718185613924565b9350613381818560208601613aea565b61338a81613cf9565b840191505092915050565b60006133a0826138fd565b6133aa8185613935565b93506133ba818560208601613aea565b80840191505092915050565b600081546133d381613b1d565b6133dd8186613935565b945060018216600081146133f857600181146134095761343c565b60ff1983168652818601935061343c565b613412856138dd565b60005b8381101561343457815481890152600182019150602081019050613415565b838801955050505b50505092915050565b6000613452602e83613924565b915061345d82613d0a565b604082019050919050565b6000613475602683613924565b915061348082613d59565b604082019050919050565b6000613498602d83613924565b91506134a382613da8565b604082019050919050565b60006134bb601483613924565b91506134c682613df7565b602082019050919050565b60006134de602483613924565b91506134e982613e20565b604082019050919050565b6000613501600583613935565b915061350c82613e6f565b600582019050919050565b6000613524602f83613924565b915061352f82613e98565b604082019050919050565b6000613547602083613924565b915061355282613ee7565b602082019050919050565b600061356a602f83613924565b915061357582613f10565b604082019050919050565b600061358d601683613924565b915061359882613f5f565b602082019050919050565b60006135b0600083613919565b91506135bb82613f88565b600082019050919050565b60006135d3601083613924565b91506135de82613f8b565b602082019050919050565b6135f281613abf565b82525050565b600061360482856133c6565b91506136108284613395565b915061361b826134f4565b91508190509392505050565b6000613632826135a3565b9150819050919050565b600060208201905061365160008301846132f6565b92915050565b600060808201905061366c60008301876132f6565b61367960208301866132f6565b61368660408301856135e9565b81810360608301526136988184613314565b905095945050505050565b60006020820190506136b86000830184613305565b92915050565b60006020820190506136d3600083018461334d565b92915050565b600060208201905081810360008301526136f3818461335c565b905092915050565b6000602082019050818103600083015261371481613445565b9050919050565b6000602082019050818103600083015261373481613468565b9050919050565b600060208201905081810360008301526137548161348b565b9050919050565b60006020820190508181036000830152613774816134ae565b9050919050565b60006020820190508181036000830152613794816134d1565b9050919050565b600060208201905081810360008301526137b481613517565b9050919050565b600060208201905081810360008301526137d48161353a565b9050919050565b600060208201905081810360008301526137f48161355d565b9050919050565b6000602082019050818103600083015261381481613580565b9050919050565b60006020820190508181036000830152613834816135c6565b9050919050565b600060208201905061385060008301846135e9565b92915050565b6000613860613871565b905061386c8282613b4f565b919050565b6000604051905090565b600067ffffffffffffffff82111561389657613895613cb6565b5b61389f82613cf9565b9050602081019050919050565b600067ffffffffffffffff8211156138c7576138c6613cb6565b5b6138d082613cf9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061394b82613abf565b915061395683613abf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561398b5761398a613bfa565b5b828201905092915050565b60006139a182613abf565b91506139ac83613abf565b9250826139bc576139bb613c29565b5b828204905092915050565b60006139d282613abf565b91506139dd83613abf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a1657613a15613bfa565b5b828202905092915050565b6000613a2c82613abf565b9150613a3783613abf565b925082821015613a4a57613a49613bfa565b5b828203905092915050565b6000613a6082613a9f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613ad482613abf565b9050919050565b82818337600083830152505050565b60005b83811015613b08578082015181840152602081019050613aed565b83811115613b17576000848401525b50505050565b60006002820490506001821680613b3557607f821691505b60208210811415613b4957613b48613c58565b5b50919050565b613b5882613cf9565b810181811067ffffffffffffffff82111715613b7757613b76613cb6565b5b80604052505050565b6000613b8b82613abf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bbe57613bbd613bfa565b5b600182019050919050565b6000613bd482613abf565b9150613bdf83613abf565b925082613bef57613bee613c29565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d203130204e4654732063616e206265206d696e74656420706560008201527f72207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f4d6178696e756d20312066726565206d696e7420666f7220706572206164647260008201527f6573732e00000000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b613fbd81613a55565b8114613fc857600080fd5b50565b613fd481613a67565b8114613fdf57600080fd5b50565b613feb81613a73565b8114613ff657600080fd5b50565b61400281613abf565b811461400d57600080fd5b5056fea26469706673582212208be1140e61a5513b810e1fa2cc38e89d599347357873ea61700dc2ca4e4878f864736f6c63430008070033

Deployed Bytecode Sourcemap

106:3299:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5965:366:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8508:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9964:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9541:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2629:296:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;735:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10795:164:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2381:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4821:1077;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;248:41:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;467:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1223:201;;;;;;;;;;;;;:::i;:::-;;11025:179:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;337:37:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3833:695:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;836:99:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;381:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8324:122:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6390:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1693:145:12;;;;;;;;;;;;;:::i;:::-;;1141:76:11;;;;;;;;;;;;;:::i;:::-;;1061:85:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1045:90:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;941:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8670:102:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;543:27:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;296:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1715:908;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10231:274:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11270:332;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1430:279:11;;;;;;;;;;;;;:::i;:::-;;3048:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10571:162:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1987:240:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5965:366:4;6067:4;6117:25;6102:40;;;:11;:40;;;;:104;;;;6173:33;6158:48;;;:11;:48;;;;6102:104;:170;;;;6237:35;6222:50;;;:11;:50;;;;6102:170;:222;;;;6288:36;6312:11;6288:23;:36::i;:::-;6102:222;6083:241;;5965:366;;;:::o;8508:98::-;8562:13;8594:5;8587:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8508:98;:::o;9964:200::-;10032:7;10056:16;10064:7;10056;:16::i;:::-;10051:64;;10081:34;;;;;;;;;;;;;;10051:64;10133:15;:24;10149:7;10133:24;;;;;;;;;;;;;;;;;;;;;10126:31;;9964:200;;;:::o;9541:362::-;9613:13;9629:24;9645:7;9629:15;:24::i;:::-;9613:40;;9673:5;9667:11;;:2;:11;;;9663:48;;;9687:24;;;;;;;;;;;;;;9663:48;9742:5;9726:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;9752:37;9769:5;9776:12;:10;:12::i;:::-;9752:16;:37::i;:::-;9751:38;9726:63;9722:136;;;9812:35;;;;;;;;;;;;;;9722:136;9868:28;9877:2;9881:7;9890:5;9868:8;:28::i;:::-;9603:300;9541:362;;:::o;2629:296:11:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2695:14:11::1;2712:13;:11;:13::i;:::-;2695:30;;2744:8;;;;;;;;;;;2736:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2814:9;;2804:6;2795;:15;;;;:::i;:::-;:28;;2787:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2860:29;2870:10;2882:6;2860:9;:29::i;:::-;2904:14;2911:6;2904:14;;;;;;:::i;:::-;;;;;;;;2685:240;2629:296:::0;:::o;735:95::-;788:7;814:9;;807:16;;735:95;:::o;10795:164:4:-;10924:28;10934:4;10940:2;10944:7;10924:9;:28::i;:::-;10795:164;;;:::o;2381:29::-;;;;:::o;4821:1077::-;4910:7;4942:16;4952:5;4942:9;:16::i;:::-;4933:5;:25;4929:61;;4967:23;;;;;;;;;;;;;;4929:61;5000:22;5025:13;;5000:38;;5048:19;5077:25;5273:9;5268:543;5288:14;5284:1;:18;5268:543;;;5327:31;5361:11;:14;5373:1;5361:14;;;;;;;;;;;5327:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5397:9;:16;;;5393:71;;;5437:8;;;5393:71;5511:1;5485:28;;:9;:14;;;:28;;;5481:109;;5557:9;:14;;;5537:34;;5481:109;5632:5;5611:26;;:17;:26;;;5607:190;;;5680:5;5665:11;:20;5661:83;;;5720:1;5713:8;;;;;;;;;5661:83;5765:13;;;;;;;5607:190;5309:502;5268:543;5304:3;;;;;;;5268:543;;;;5883:8;;;4821:1077;;;;;:::o;248:41:11:-;285:4;248:41;:::o;467:35::-;;;;:::o;1223:201::-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1273:12:11::1;1299:10;1291:24;;1336:21;1291:80;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1272:99;;;1389:7;1381:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;1262:162;1223:201::o:0;11025:179:4:-;11158:39;11175:4;11181:2;11185:7;11158:39;;;;;;;;;;;;:16;:39::i;:::-;11025:179;;;:::o;337:37:11:-;;;;:::o;3833:695:4:-;3900:7;3919:22;3944:13;;3919:38;;3967:19;4157:9;4152:320;4172:14;4168:1;:18;4152:320;;;4211:31;4245:11;:14;4257:1;4245:14;;;;;;;;;;;4211:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4282:9;:16;;;4277:181;;4341:5;4326:11;:20;4322:83;;;4381:1;4374:8;;;;;;;;4322:83;4426:13;;;;;;;4277:181;4193:279;4188:3;;;;;;;4152:320;;;;4498:23;;;;;;;;;;;;;;3833:695;;;;:::o;836:99:11:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;921:7:11::1;906:12;:22;;;;;;;;;;;;:::i;:::-;;836:99:::0;:::o;381:43::-;;;;:::o;8324:122:4:-;8388:7;8414:20;8426:7;8414:11;:20::i;:::-;:25;;;8407:32;;8324:122;;;:::o;6390:203::-;6454:7;6494:1;6477:19;;:5;:19;;;6473:60;;;6505:28;;;;;;;;;;;;;;6473:60;6558:12;:19;6571:5;6558:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;6550:36;;6543:43;;6390:203;;;:::o;1693:145:12:-;1284:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1799:1:::1;1762:40;;1783:6;;;;;;;;;;;1762:40;;;;;;;;;;;;1829:1;1812:6;;:19;;;;;;;;;;;;;;;;;;1693:145::o:0;1141:76:11:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1202:8:11::1;;;;;;;;;;;1201:9;1190:8;;:20;;;;;;;;;;;;;;;;;;1141:76::o:0;1061:85:12:-;1107:7;1133:6;;;;;;;;;;;1126:13;;1061:85;:::o;1045:90:11:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1119:9:11::1;1111:5;:17;;;;1045:90:::0;:::o;941:98::-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1026:6:11::1;1009:14;:23;;;;941:98:::0;:::o;8670:102:4:-;8726:13;8758:7;8751:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8670:102;:::o;543:27:11:-;;;;;;;;;;;;;:::o;296:34::-;;;;:::o;1715:908::-;1772:14;1789:13;:11;:13::i;:::-;1772:30;;1821:8;;;;;;;;;;;1813:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1891:9;;1881:6;1872;:15;;;;:::i;:::-;:28;;1864:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1954:1;1945:6;:10;1937:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;2047:17;;2037:6;:27;;2016:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;2186:14;;2176:6;2164:9;;:18;;;;:::i;:::-;2163:37;:117;;;;2257:23;;2248:6;2216:17;:29;2234:10;2216:29;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:64;2163:117;2146:373;;;2351:6;2343:5;;:14;;;;:::i;:::-;2330:9;:27;;2305:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;2146:373;;;2502:6;2469:17;:29;2487:10;2469:29;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;2146:373;2542:6;2529:9;;:19;;;;;;;:::i;:::-;;;;;;;;2558:29;2568:10;2580:6;2558:9;:29::i;:::-;2602:14;2609:6;2602:14;;;;;;:::i;:::-;;;;;;;;1762:861;1715:908;:::o;10231:274:4:-;10333:12;:10;:12::i;:::-;10321:24;;:8;:24;;;10317:54;;;10354:17;;;;;;;;;;;;;;10317:54;10427:8;10382:18;:32;10401:12;:10;:12::i;:::-;10382:32;;;;;;;;;;;;;;;:42;10415:8;10382:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10479:8;10450:48;;10465:12;:10;:12::i;:::-;10450:48;;;10489:8;10450:48;;;;;;:::i;:::-;;;;;;;;10231:274;;:::o;11270:332::-;11431:28;11441:4;11447:2;11451:7;11431:9;:28::i;:::-;11474:48;11497:4;11503:2;11507:7;11516:5;11474:22;:48::i;:::-;11469:127;;11545:40;;;;;;;;;;;;;;11469:127;11270:332;;;;:::o;1430:279:11:-;1530:5;1496:39;;:18;:30;1515:10;1496:30;;;;;;;;;;;;;;;;;;;;;;;;;:39;;;1475:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;1640:4;1607:18;:30;1626:10;1607:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;1654:24;1664:10;1676:1;1654:9;:24::i;:::-;1693:9;1700:1;1693:9;;;;;;:::i;:::-;;;;;;;;1430:279::o;3048:355::-;3161:13;3211:16;3219:7;3211;:16::i;:::-;3190:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;3353:12;3367:18;:7;:16;:18::i;:::-;3336:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3310:86;;3048:355;;;:::o;10571:162:4:-;10668:4;10691:18;:25;10710:5;10691:25;;;;;;;;;;;;;;;:35;10717:8;10691:35;;;;;;;;;;;;;;;;;;;;;;;;;10684:42;;10571:162;;;;:::o;1987:240:12:-;1284:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2095:1:::1;2075:22;;:8;:22;;;;2067:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2184:8;2155:38;;2176:6;;;;;;;;;;;2155:38;;;;;;;;;;;;2212:8;2203:6;;:17;;;;;;;;;;;;;;;;;;1987:240:::0;:::o;829:155:2:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;11848:142:4:-;11905:4;11938:13;;11928:7;:23;:55;;;;;11956:11;:20;11968:7;11956:20;;;;;;;;;;;:27;;;;;;;;;;;;11955:28;11928:55;11921:62;;11848:142;;;:::o;586:96:1:-;639:7;665:10;658:17;;586:96;:::o;18867:189:4:-;19004:2;18977:15;:24;18993:7;18977:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19041:7;19037:2;19021:28;;19030:5;19021:28;;;;;;;;;;;;18867:189;;;:::o;11996:102::-;12064:27;12074:2;12078:8;12064:27;;;;;;;;;;;;:9;:27::i;:::-;11996:102;;:::o;14472:2067::-;14582:35;14620:20;14632:7;14620:11;:20::i;:::-;14582:58;;14651:22;14693:13;:18;;;14677:34;;:12;:10;:12::i;:::-;:34;;;:100;;;;14727:50;14744:13;:18;;;14764:12;:10;:12::i;:::-;14727:16;:50::i;:::-;14677:100;:152;;;;14817:12;:10;:12::i;:::-;14793:36;;:20;14805:7;14793:11;:20::i;:::-;:36;;;14677:152;14651:179;;14846:17;14841:66;;14872:35;;;;;;;;;;;;;;14841:66;14943:4;14921:26;;:13;:18;;;:26;;;14917:67;;14956:28;;;;;;;;;;;;;;14917:67;15012:1;14998:16;;:2;:16;;;14994:52;;;15023:23;;;;;;;;;;;;;;14994:52;15057:43;15079:4;15085:2;15089:7;15098:1;15057:21;:43::i;:::-;15162:49;15179:1;15183:7;15192:13;:18;;;15162:8;:49::i;:::-;15531:1;15501:12;:18;15514:4;15501:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15574:1;15546:12;:16;15559:2;15546:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15618:2;15590:11;:20;15602:7;15590:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;15679:15;15634:11;:20;15646:7;15634:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;15943:19;15975:1;15965:7;:11;15943:33;;16035:1;15994:43;;:11;:24;16006:11;15994:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;15990:438;;;16216:13;;16202:11;:27;16198:216;;;16285:13;:18;;;16253:11;:24;16265:11;16253:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;16367:13;:28;;;16325:11;:24;16337:11;16325:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;16198:216;15990:438;15477:961;16472:7;16468:2;16453:27;;16462:4;16453:27;;;;;;;;;;;;16490:42;16511:4;16517:2;16521:7;16530:1;16490:20;:42::i;:::-;14572:1967;;14472:2067;;;:::o;7209:1058::-;7270:21;;:::i;:::-;7303:12;7318:7;7303:22;;7371:13;;7364:4;:20;7360:843;;;7404:31;7438:11;:17;7450:4;7438:17;;;;;;;;;;;7404:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7478:9;:16;;;7473:716;;7548:1;7522:28;;:9;:14;;;:28;;;7518:99;;7585:9;7578:16;;;;;;7518:99;7916:255;7923:4;7916:255;;;7955:6;;;;;;;;7999:11;:17;8011:4;7999:17;;;;;;;;;;;7987:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8072:1;8046:28;;:9;:14;;;:28;;;8042:107;;8113:9;8106:16;;;;;;8042:107;7916:255;;;7473:716;7386:817;7360:843;8229:31;;;;;;;;;;;;;;7209:1058;;;;:::o;19609:769::-;19759:4;19779:15;:2;:13;;;:15::i;:::-;19775:597;;;19830:2;19814:36;;;19851:12;:10;:12::i;:::-;19865:4;19871:7;19880:5;19814:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;19810:510;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20074:1;20057:6;:13;:18;20053:253;;;20106:40;;;;;;;;;;;;;;20053:253;20258:6;20252:13;20243:6;20239:2;20235:15;20228:38;19810:510;19946:45;;;19936:55;;;:6;:55;;;;19929:62;;;;;19775:597;20357:4;20350:11;;19609:769;;;;;;;:::o;328:703:13:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;12449:157:4:-;12567:32;12573:2;12577:8;12587:5;12594:4;12567:5;:32::i;:::-;12449:157;;;:::o;21009:154::-;;;;;:::o;21804:153::-;;;;;:::o;1160:320:0:-;1220:4;1472:1;1450:7;:19;;;:23;1443:30;;1160:320;;;:::o;12853:1377:4:-;12986:20;13009:13;;12986:36;;13050:1;13036:16;;:2;:16;;;13032:48;;;13061:19;;;;;;;;;;;;;;13032:48;13106:1;13094:8;:13;13090:44;;;13116:18;;;;;;;;;;;;;;13090:44;13145:61;13175:1;13179:2;13183:12;13197:8;13145:21;:61::i;:::-;13512:8;13477:12;:16;13490:2;13477:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13575:8;13535:12;:16;13548:2;13535:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13632:2;13599:11;:25;13611:12;13599:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;13698:15;13648:11;:25;13660:12;13648:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;13729:20;13752:12;13729:35;;13784:9;13779:322;13799:8;13795:1;:12;13779:322;;;13862:12;13858:2;13837:38;;13854:1;13837:38;;;;;;;;;;;;13897:4;:68;;;;;13906:59;13937:1;13941:2;13945:12;13959:5;13906:22;:59::i;:::-;13905:60;13897:68;13893:162;;;13996:40;;;;;;;;;;;;;;13893:162;14072:14;;;;;;;13809:3;;;;;;;13779:322;;;;14131:12;14115:13;:28;;;;13453:701;14163:60;14192:1;14196:2;14200:12;14214:8;14163:20;:60::i;:::-;12976:1254;12853:1377;;;;:::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:147::-;7858:45;7897:5;7858:45;:::i;:::-;7853:3;7846:58;7763:147;;:::o;7916:364::-;8004:3;8032:39;8065:5;8032:39;:::i;:::-;8087:71;8151:6;8146:3;8087:71;:::i;:::-;8080:78;;8167:52;8212:6;8207:3;8200:4;8193:5;8189:16;8167:52;:::i;:::-;8244:29;8266:6;8244:29;:::i;:::-;8239:3;8235:39;8228:46;;8008:272;7916:364;;;;:::o;8286:377::-;8392:3;8420:39;8453:5;8420:39;:::i;:::-;8475:89;8557:6;8552:3;8475:89;:::i;:::-;8468:96;;8573:52;8618:6;8613:3;8606:4;8599:5;8595:16;8573:52;:::i;:::-;8650:6;8645:3;8641:16;8634:23;;8396:267;8286:377;;;;:::o;8693:845::-;8796:3;8833:5;8827:12;8862:36;8888:9;8862:36;:::i;:::-;8914:89;8996:6;8991:3;8914:89;:::i;:::-;8907:96;;9034:1;9023:9;9019:17;9050:1;9045:137;;;;9196:1;9191:341;;;;9012:520;;9045:137;9129:4;9125:9;9114;9110:25;9105:3;9098:38;9165:6;9160:3;9156:16;9149:23;;9045:137;;9191:341;9258:38;9290:5;9258:38;:::i;:::-;9318:1;9332:154;9346:6;9343:1;9340:13;9332:154;;;9420:7;9414:14;9410:1;9405:3;9401:11;9394:35;9470:1;9461:7;9457:15;9446:26;;9368:4;9365:1;9361:12;9356:17;;9332:154;;;9515:6;9510:3;9506:16;9499:23;;9198:334;;9012:520;;8800:738;;8693:845;;;;:::o;9544:366::-;9686:3;9707:67;9771:2;9766:3;9707:67;:::i;:::-;9700:74;;9783:93;9872:3;9783:93;:::i;:::-;9901:2;9896:3;9892:12;9885:19;;9544:366;;;:::o;9916:::-;10058:3;10079:67;10143:2;10138:3;10079:67;:::i;:::-;10072:74;;10155:93;10244:3;10155:93;:::i;:::-;10273:2;10268:3;10264:12;10257:19;;9916:366;;;:::o;10288:::-;10430:3;10451:67;10515:2;10510:3;10451:67;:::i;:::-;10444:74;;10527:93;10616:3;10527:93;:::i;:::-;10645:2;10640:3;10636:12;10629:19;;10288:366;;;:::o;10660:::-;10802:3;10823:67;10887:2;10882:3;10823:67;:::i;:::-;10816:74;;10899:93;10988:3;10899:93;:::i;:::-;11017:2;11012:3;11008:12;11001:19;;10660:366;;;:::o;11032:::-;11174:3;11195:67;11259:2;11254:3;11195:67;:::i;:::-;11188:74;;11271:93;11360:3;11271:93;:::i;:::-;11389:2;11384:3;11380:12;11373:19;;11032:366;;;:::o;11404:400::-;11564:3;11585:84;11667:1;11662:3;11585:84;:::i;:::-;11578:91;;11678:93;11767:3;11678:93;:::i;:::-;11796:1;11791:3;11787:11;11780:18;;11404:400;;;:::o;11810:366::-;11952:3;11973:67;12037:2;12032:3;11973:67;:::i;:::-;11966:74;;12049:93;12138:3;12049:93;:::i;:::-;12167:2;12162:3;12158:12;12151:19;;11810:366;;;:::o;12182:::-;12324:3;12345:67;12409:2;12404:3;12345:67;:::i;:::-;12338:74;;12421:93;12510:3;12421:93;:::i;:::-;12539:2;12534:3;12530:12;12523:19;;12182:366;;;:::o;12554:::-;12696:3;12717:67;12781:2;12776:3;12717:67;:::i;:::-;12710:74;;12793:93;12882:3;12793:93;:::i;:::-;12911:2;12906:3;12902:12;12895:19;;12554:366;;;:::o;12926:::-;13068:3;13089:67;13153:2;13148:3;13089:67;:::i;:::-;13082:74;;13165:93;13254:3;13165:93;:::i;:::-;13283:2;13278:3;13274:12;13267:19;;12926:366;;;:::o;13298:398::-;13457:3;13478:83;13559:1;13554:3;13478:83;:::i;:::-;13471:90;;13570:93;13659:3;13570:93;:::i;:::-;13688:1;13683:3;13679:11;13672:18;;13298:398;;;:::o;13702:366::-;13844:3;13865:67;13929:2;13924:3;13865:67;:::i;:::-;13858:74;;13941:93;14030:3;13941:93;:::i;:::-;14059:2;14054:3;14050:12;14043:19;;13702:366;;;:::o;14074:118::-;14161:24;14179:5;14161:24;:::i;:::-;14156:3;14149:37;14074:118;;:::o;14198:695::-;14476:3;14498:92;14586:3;14577:6;14498:92;:::i;:::-;14491:99;;14607:95;14698:3;14689:6;14607:95;:::i;:::-;14600:102;;14719:148;14863:3;14719:148;:::i;:::-;14712:155;;14884:3;14877:10;;14198:695;;;;;:::o;14899:379::-;15083:3;15105:147;15248:3;15105:147;:::i;:::-;15098:154;;15269:3;15262:10;;14899:379;;;:::o;15284:222::-;15377:4;15415:2;15404:9;15400:18;15392:26;;15428:71;15496:1;15485:9;15481:17;15472:6;15428:71;:::i;:::-;15284:222;;;;:::o;15512:640::-;15707:4;15745:3;15734:9;15730:19;15722:27;;15759:71;15827:1;15816:9;15812:17;15803:6;15759:71;:::i;:::-;15840:72;15908:2;15897:9;15893:18;15884:6;15840:72;:::i;:::-;15922;15990:2;15979:9;15975:18;15966:6;15922:72;:::i;:::-;16041:9;16035:4;16031:20;16026:2;16015:9;16011:18;16004:48;16069:76;16140:4;16131:6;16069:76;:::i;:::-;16061:84;;15512:640;;;;;;;:::o;16158:210::-;16245:4;16283:2;16272:9;16268:18;16260:26;;16296:65;16358:1;16347:9;16343:17;16334:6;16296:65;:::i;:::-;16158:210;;;;:::o;16374:238::-;16475:4;16513:2;16502:9;16498:18;16490:26;;16526:79;16602:1;16591:9;16587:17;16578:6;16526:79;:::i;:::-;16374:238;;;;:::o;16618:313::-;16731:4;16769:2;16758:9;16754:18;16746:26;;16818:9;16812:4;16808:20;16804:1;16793:9;16789:17;16782:47;16846:78;16919:4;16910:6;16846:78;:::i;:::-;16838:86;;16618:313;;;;:::o;16937:419::-;17103:4;17141:2;17130:9;17126:18;17118:26;;17190:9;17184:4;17180:20;17176:1;17165:9;17161:17;17154:47;17218:131;17344:4;17218:131;:::i;:::-;17210:139;;16937:419;;;:::o;17362:::-;17528:4;17566:2;17555:9;17551:18;17543:26;;17615:9;17609:4;17605:20;17601:1;17590:9;17586:17;17579:47;17643:131;17769:4;17643:131;:::i;:::-;17635:139;;17362:419;;;:::o;17787:::-;17953:4;17991:2;17980:9;17976:18;17968:26;;18040:9;18034:4;18030:20;18026:1;18015:9;18011:17;18004:47;18068:131;18194:4;18068:131;:::i;:::-;18060:139;;17787:419;;;:::o;18212:::-;18378:4;18416:2;18405:9;18401:18;18393:26;;18465:9;18459:4;18455:20;18451:1;18440:9;18436:17;18429:47;18493:131;18619:4;18493:131;:::i;:::-;18485:139;;18212:419;;;:::o;18637:::-;18803:4;18841:2;18830:9;18826:18;18818:26;;18890:9;18884:4;18880:20;18876:1;18865:9;18861:17;18854:47;18918:131;19044:4;18918:131;:::i;:::-;18910:139;;18637:419;;;:::o;19062:::-;19228:4;19266:2;19255:9;19251:18;19243:26;;19315:9;19309:4;19305:20;19301:1;19290:9;19286:17;19279:47;19343:131;19469:4;19343:131;:::i;:::-;19335:139;;19062:419;;;:::o;19487:::-;19653:4;19691:2;19680:9;19676:18;19668:26;;19740:9;19734:4;19730:20;19726:1;19715:9;19711:17;19704:47;19768:131;19894:4;19768:131;:::i;:::-;19760:139;;19487:419;;;:::o;19912:::-;20078:4;20116:2;20105:9;20101:18;20093:26;;20165:9;20159:4;20155:20;20151:1;20140:9;20136:17;20129:47;20193:131;20319:4;20193:131;:::i;:::-;20185:139;;19912:419;;;:::o;20337:::-;20503:4;20541:2;20530:9;20526:18;20518:26;;20590:9;20584:4;20580:20;20576:1;20565:9;20561:17;20554:47;20618:131;20744:4;20618:131;:::i;:::-;20610:139;;20337:419;;;:::o;20762:::-;20928:4;20966:2;20955:9;20951:18;20943:26;;21015:9;21009:4;21005:20;21001:1;20990:9;20986:17;20979:47;21043:131;21169:4;21043:131;:::i;:::-;21035:139;;20762:419;;;:::o;21187:222::-;21280:4;21318:2;21307:9;21303:18;21295:26;;21331:71;21399:1;21388:9;21384:17;21375:6;21331:71;:::i;:::-;21187:222;;;;:::o;21415:129::-;21449:6;21476:20;;:::i;:::-;21466:30;;21505:33;21533:4;21525:6;21505:33;:::i;:::-;21415:129;;;:::o;21550:75::-;21583:6;21616:2;21610:9;21600:19;;21550:75;:::o;21631:307::-;21692:4;21782:18;21774:6;21771:30;21768:56;;;21804:18;;:::i;:::-;21768:56;21842:29;21864:6;21842:29;:::i;:::-;21834:37;;21926:4;21920;21916:15;21908:23;;21631:307;;;:::o;21944:308::-;22006:4;22096:18;22088:6;22085:30;22082:56;;;22118:18;;:::i;:::-;22082:56;22156:29;22178:6;22156:29;:::i;:::-;22148:37;;22240:4;22234;22230:15;22222:23;;21944:308;;;:::o;22258:141::-;22307:4;22330:3;22322:11;;22353:3;22350:1;22343:14;22387:4;22384:1;22374:18;22366:26;;22258:141;;;:::o;22405:98::-;22456:6;22490:5;22484:12;22474:22;;22405:98;;;:::o;22509:99::-;22561:6;22595:5;22589:12;22579:22;;22509:99;;;:::o;22614:168::-;22697:11;22731:6;22726:3;22719:19;22771:4;22766:3;22762:14;22747:29;;22614:168;;;;:::o;22788:147::-;22889:11;22926:3;22911:18;;22788:147;;;;:::o;22941:169::-;23025:11;23059:6;23054:3;23047:19;23099:4;23094:3;23090:14;23075:29;;22941:169;;;;:::o;23116:148::-;23218:11;23255:3;23240:18;;23116:148;;;;:::o;23270:305::-;23310:3;23329:20;23347:1;23329:20;:::i;:::-;23324:25;;23363:20;23381:1;23363:20;:::i;:::-;23358:25;;23517:1;23449:66;23445:74;23442:1;23439:81;23436:107;;;23523:18;;:::i;:::-;23436:107;23567:1;23564;23560:9;23553:16;;23270:305;;;;:::o;23581:185::-;23621:1;23638:20;23656:1;23638:20;:::i;:::-;23633:25;;23672:20;23690:1;23672:20;:::i;:::-;23667:25;;23711:1;23701:35;;23716:18;;:::i;:::-;23701:35;23758:1;23755;23751:9;23746:14;;23581:185;;;;:::o;23772:348::-;23812:7;23835:20;23853:1;23835:20;:::i;:::-;23830:25;;23869:20;23887:1;23869:20;:::i;:::-;23864:25;;24057:1;23989:66;23985:74;23982:1;23979:81;23974:1;23967:9;23960:17;23956:105;23953:131;;;24064:18;;:::i;:::-;23953:131;24112:1;24109;24105:9;24094:20;;23772:348;;;;:::o;24126:191::-;24166:4;24186:20;24204:1;24186:20;:::i;:::-;24181:25;;24220:20;24238:1;24220:20;:::i;:::-;24215:25;;24259:1;24256;24253:8;24250:34;;;24264:18;;:::i;:::-;24250:34;24309:1;24306;24302:9;24294:17;;24126:191;;;;:::o;24323:96::-;24360:7;24389:24;24407:5;24389:24;:::i;:::-;24378:35;;24323:96;;;:::o;24425:90::-;24459:7;24502:5;24495:13;24488:21;24477:32;;24425:90;;;:::o;24521:149::-;24557:7;24597:66;24590:5;24586:78;24575:89;;24521:149;;;:::o;24676:126::-;24713:7;24753:42;24746:5;24742:54;24731:65;;24676:126;;;:::o;24808:77::-;24845:7;24874:5;24863:16;;24808:77;;;:::o;24891:121::-;24949:9;24982:24;25000:5;24982:24;:::i;:::-;24969:37;;24891:121;;;:::o;25018:154::-;25102:6;25097:3;25092;25079:30;25164:1;25155:6;25150:3;25146:16;25139:27;25018:154;;;:::o;25178:307::-;25246:1;25256:113;25270:6;25267:1;25264:13;25256:113;;;25355:1;25350:3;25346:11;25340:18;25336:1;25331:3;25327:11;25320:39;25292:2;25289:1;25285:10;25280:15;;25256:113;;;25387:6;25384:1;25381:13;25378:101;;;25467:1;25458:6;25453:3;25449:16;25442:27;25378:101;25227:258;25178:307;;;:::o;25491:320::-;25535:6;25572:1;25566:4;25562:12;25552:22;;25619:1;25613:4;25609:12;25640:18;25630:81;;25696:4;25688:6;25684:17;25674:27;;25630:81;25758:2;25750:6;25747:14;25727:18;25724:38;25721:84;;;25777:18;;:::i;:::-;25721:84;25542:269;25491:320;;;:::o;25817:281::-;25900:27;25922:4;25900:27;:::i;:::-;25892:6;25888:40;26030:6;26018:10;26015:22;25994:18;25982:10;25979:34;25976:62;25973:88;;;26041:18;;:::i;:::-;25973:88;26081:10;26077:2;26070:22;25860:238;25817:281;;:::o;26104:233::-;26143:3;26166:24;26184:5;26166:24;:::i;:::-;26157:33;;26212:66;26205:5;26202:77;26199:103;;;26282:18;;:::i;:::-;26199:103;26329:1;26322:5;26318:13;26311:20;;26104:233;;;:::o;26343:176::-;26375:1;26392:20;26410:1;26392:20;:::i;:::-;26387:25;;26426:20;26444:1;26426:20;:::i;:::-;26421:25;;26465:1;26455:35;;26470:18;;:::i;:::-;26455:35;26511:1;26508;26504:9;26499:14;;26343:176;;;;:::o;26525:180::-;26573:77;26570:1;26563:88;26670:4;26667:1;26660:15;26694:4;26691:1;26684:15;26711:180;26759:77;26756:1;26749:88;26856:4;26853:1;26846:15;26880:4;26877:1;26870:15;26897:180;26945:77;26942:1;26935:88;27042:4;27039:1;27032:15;27066:4;27063:1;27056:15;27083:180;27131:77;27128:1;27121:88;27228:4;27225:1;27218:15;27252:4;27249:1;27242:15;27269:180;27317:77;27314:1;27307:88;27414:4;27411:1;27404:15;27438:4;27435:1;27428:15;27455:117;27564:1;27561;27554:12;27578:117;27687:1;27684;27677:12;27701:117;27810:1;27807;27800:12;27824:117;27933:1;27930;27923:12;27947:102;27988:6;28039:2;28035:7;28030:2;28023:5;28019:14;28015:28;28005:38;;27947:102;;;:::o;28055:233::-;28195:34;28191:1;28183:6;28179:14;28172:58;28264:16;28259:2;28251:6;28247:15;28240:41;28055:233;:::o;28294:225::-;28434:34;28430:1;28422:6;28418:14;28411:58;28503:8;28498:2;28490:6;28486:15;28479:33;28294:225;:::o;28525:232::-;28665:34;28661:1;28653:6;28649:14;28642:58;28734:15;28729:2;28721:6;28717:15;28710:40;28525:232;:::o;28763:170::-;28903:22;28899:1;28891:6;28887:14;28880:46;28763:170;:::o;28939:223::-;29079:34;29075:1;29067:6;29063:14;29056:58;29148:6;29143:2;29135:6;29131:15;29124:31;28939:223;:::o;29168:155::-;29308:7;29304:1;29296:6;29292:14;29285:31;29168:155;:::o;29329:234::-;29469:34;29465:1;29457:6;29453:14;29446:58;29538:17;29533:2;29525:6;29521:15;29514:42;29329:234;:::o;29569:182::-;29709:34;29705:1;29697:6;29693:14;29686:58;29569:182;:::o;29757:234::-;29897:34;29893:1;29885:6;29881:14;29874:58;29966:17;29961:2;29953:6;29949:15;29942:42;29757:234;:::o;29997:172::-;30137:24;30133:1;30125:6;30121:14;30114:48;29997:172;:::o;30175:114::-;;:::o;30295:166::-;30435:18;30431:1;30423:6;30419:14;30412:42;30295:166;:::o;30467:122::-;30540:24;30558:5;30540:24;:::i;:::-;30533:5;30530:35;30520:63;;30579:1;30576;30569:12;30520:63;30467:122;:::o;30595:116::-;30665:21;30680:5;30665:21;:::i;:::-;30658:5;30655:32;30645:60;;30701:1;30698;30691:12;30645:60;30595:116;:::o;30717:120::-;30789:23;30806:5;30789:23;:::i;:::-;30782:5;30779:34;30769:62;;30827:1;30824;30817:12;30769:62;30717:120;:::o;30843:122::-;30916:24;30934:5;30916:24;:::i;:::-;30909:5;30906:35;30896:63;;30955:1;30952;30945:12;30896:63;30843:122;:::o

Swarm Source

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