ETH Price: $2,647.29 (-0.16%)

Token

Lil Ddles Club (LDC)
 

Overview

Max Total Supply

254 LDC

Holders

101

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
timye.eth
Balance
1 LDC
0x05f7daaf0c35736df16b27816725031745327133
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:
LdcNFT

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 11 of 13: LdcNFT.sol
//SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

import "./ERC721Enumerable.sol";
import "./Ownable.sol";

contract LdcNFT is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 20000000000000000; // 0.02 eth
  uint256 public maxSupply = 5000;
  uint256 public maxMintAmount = 10;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
  }

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

  function mint(address _to, uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
        require(_mintAmount > 0);
        require(_mintAmount <= maxMintAmount);
        require(supply + _mintAmount <= maxSupply);

        if (msg.sender != owner()) {
             if (supply + _mintAmount > 200) { 
                require(msg.value >= cost * _mintAmount);
            } else {
                require(_mintAmount == 1);
            }
        }
        
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, supply + i);
        }
    }
  
    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

  //only owner
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }
  
  function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function withdrawAll() external onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 13: 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) {
        return msg.data;
    }
}

File 3 of 13: ERC165.sol
// SPDX-License-Identifier: MIT

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 13: ERC721.sol
// SPDX-License-Identifier: MIT

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 overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 5 of 13: 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 6 of 13: 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 7 of 13: 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 8 of 13: 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 9 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 10 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 12 of 13: 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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000051929190620002ae565b5066470de4df820000600d55611388600e55600a600f553480156200007557600080fd5b506040516200467b3803806200467b83398181016040528101906200009b9190620003dc565b82828160009080519060200190620000b5929190620002ae565b508060019080519060200190620000ce929190620002ae565b505050620000f1620000e56200010b60201b60201c565b6200011360201b60201c565b6200010281620001d960201b60201c565b5050506200069c565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001e96200010b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200020f6200028460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000268576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025f90620004bc565b60405180910390fd5b80600b908051906020019062000280929190620002ae565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002bc9062000584565b90600052602060002090601f016020900481019282620002e057600085556200032c565b82601f10620002fb57805160ff19168380011785556200032c565b828001600101855582156200032c579182015b828111156200032b5782518255916020019190600101906200030e565b5b5090506200033b91906200033f565b5090565b5b808211156200035a57600081600090555060010162000340565b5090565b6000620003756200036f8462000507565b620004de565b90508281526020810184848401111562000394576200039362000653565b5b620003a18482856200054e565b509392505050565b600082601f830112620003c157620003c06200064e565b5b8151620003d38482602086016200035e565b91505092915050565b600080600060608486031215620003f857620003f76200065d565b5b600084015167ffffffffffffffff81111562000419576200041862000658565b5b6200042786828701620003a9565b935050602084015167ffffffffffffffff8111156200044b576200044a62000658565b5b6200045986828701620003a9565b925050604084015167ffffffffffffffff8111156200047d576200047c62000658565b5b6200048b86828701620003a9565b9150509250925092565b6000620004a46020836200053d565b9150620004b18262000673565b602082019050919050565b60006020820190508181036000830152620004d78162000495565b9050919050565b6000620004ea620004fd565b9050620004f88282620005ba565b919050565b6000604051905090565b600067ffffffffffffffff8211156200052557620005246200061f565b5b620005308262000662565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200056e57808201518184015260208101905062000551565b838111156200057e576000848401525b50505050565b600060028204905060018216806200059d57607f821691505b60208210811415620005b457620005b3620005f0565b5b50919050565b620005c58262000662565b810181811067ffffffffffffffff82111715620005e757620005e66200061f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613fcf80620006ac6000396000f3fe6080604052600436106101d85760003560e01c80636352211e11610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146106af578063da3ef23f146106da578063e985e9c514610703578063f2fde38b14610740576101d8565b8063a22cb465146105f5578063b88d4fde1461061e578063c668286214610647578063c87b56dd14610672576101d8565b80637f00c7a6116100d15780637f00c7a61461055f578063853828b6146105885780638da5cb5b1461059f57806395d89b41146105ca576101d8565b80636352211e146104a35780636c0360eb146104e057806370a082311461050b578063715018a614610548576101d8565b806323b872dd1161017a578063438b630011610149578063438b6300146103d757806344a0d68a146104145780634f6ccce71461043d57806355f804b31461047a576101d8565b806323b872dd1461032c5780632f745c591461035557806340c10f191461039257806342842e0e146103ae576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806313faede6146102ab57806318160ddd146102d6578063239c70ae14610301576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612cdc565b610769565b60405161021191906132b0565b60405180910390f35b34801561022657600080fd5b5061022f6107e3565b60405161023c91906132cb565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612d7f565b610875565b6040516102799190613227565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612c9c565b6108fa565b005b3480156102b757600080fd5b506102c0610a12565b6040516102cd919061352d565b60405180910390f35b3480156102e257600080fd5b506102eb610a18565b6040516102f8919061352d565b60405180910390f35b34801561030d57600080fd5b50610316610a25565b604051610323919061352d565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190612b86565b610a2b565b005b34801561036157600080fd5b5061037c60048036038101906103779190612c9c565b610a8b565b604051610389919061352d565b60405180910390f35b6103ac60048036038101906103a79190612c9c565b610b30565b005b3480156103ba57600080fd5b506103d560048036038101906103d09190612b86565b610c2a565b005b3480156103e357600080fd5b506103fe60048036038101906103f99190612b19565b610c4a565b60405161040b919061328e565b60405180910390f35b34801561042057600080fd5b5061043b60048036038101906104369190612d7f565b610cf8565b005b34801561044957600080fd5b50610464600480360381019061045f9190612d7f565b610d7e565b604051610471919061352d565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190612d36565b610def565b005b3480156104af57600080fd5b506104ca60048036038101906104c59190612d7f565b610e85565b6040516104d79190613227565b60405180910390f35b3480156104ec57600080fd5b506104f5610f37565b60405161050291906132cb565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190612b19565b610fc5565b60405161053f919061352d565b60405180910390f35b34801561055457600080fd5b5061055d61107d565b005b34801561056b57600080fd5b5061058660048036038101906105819190612d7f565b611105565b005b34801561059457600080fd5b5061059d61118b565b005b3480156105ab57600080fd5b506105b4611256565b6040516105c19190613227565b60405180910390f35b3480156105d657600080fd5b506105df611280565b6040516105ec91906132cb565b60405180910390f35b34801561060157600080fd5b5061061c60048036038101906106179190612c5c565b611312565b005b34801561062a57600080fd5b5061064560048036038101906106409190612bd9565b611493565b005b34801561065357600080fd5b5061065c6114f5565b60405161066991906132cb565b60405180910390f35b34801561067e57600080fd5b5061069960048036038101906106949190612d7f565b611583565b6040516106a691906132cb565b60405180910390f35b3480156106bb57600080fd5b506106c461162d565b6040516106d1919061352d565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190612d36565b611633565b005b34801561070f57600080fd5b5061072a60048036038101906107259190612b46565b6116c9565b60405161073791906132b0565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190612b19565b61175d565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107dc57506107db82611855565b5b9050919050565b6060600080546107f29061382b565b80601f016020809104026020016040519081016040528092919081815260200182805461081e9061382b565b801561086b5780601f106108405761010080835404028352916020019161086b565b820191906000526020600020905b81548152906001019060200180831161084e57829003601f168201915b5050505050905090565b600061088082611937565b6108bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b69061344d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090582610e85565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d906134cd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109956119a3565b73ffffffffffffffffffffffffffffffffffffffff1614806109c457506109c3816109be6119a3565b6116c9565b5b610a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fa906133cd565b60405180910390fd5b610a0d83836119ab565b505050565b600d5481565b6000600880549050905090565b600f5481565b610a3c610a366119a3565b82611a64565b610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a72906134ed565b60405180910390fd5b610a86838383611b42565b505050565b6000610a9683610fc5565b8210610ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ace906132ed565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000610b3a610a18565b905060008211610b4957600080fd5b600f54821115610b5857600080fd5b600e548282610b679190613660565b1115610b7257600080fd5b610b7a611256565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bee5760c88282610bba9190613660565b1115610bdf5781600d54610bce91906136e7565b341015610bda57600080fd5b610bed565b60018214610bec57600080fd5b5b5b6000600190505b828111610c2457610c11848284610c0c9190613660565b611d9e565b8080610c1c9061388e565b915050610bf5565b50505050565b610c4583838360405180602001604052806000815250611493565b505050565b60606000610c5783610fc5565b905060008167ffffffffffffffff811115610c7557610c746139f3565b5b604051908082528060200260200182016040528015610ca35781602001602082028036833780820191505090505b50905060005b82811015610ced57610cbb8582610a8b565b828281518110610cce57610ccd6139c4565b5b6020026020010181815250508080610ce59061388e565b915050610ca9565b508092505050919050565b610d006119a3565b73ffffffffffffffffffffffffffffffffffffffff16610d1e611256565b73ffffffffffffffffffffffffffffffffffffffff1614610d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6b9061346d565b60405180910390fd5b80600d8190555050565b6000610d88610a18565b8210610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc09061350d565b60405180910390fd5b60088281548110610ddd57610ddc6139c4565b5b90600052602060002001549050919050565b610df76119a3565b73ffffffffffffffffffffffffffffffffffffffff16610e15611256565b73ffffffffffffffffffffffffffffffffffffffff1614610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e629061346d565b60405180910390fd5b80600b9080519060200190610e8192919061292d565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f259061340d565b60405180910390fd5b80915050919050565b600b8054610f449061382b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f709061382b565b8015610fbd5780601f10610f9257610100808354040283529160200191610fbd565b820191906000526020600020905b815481529060010190602001808311610fa057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d906133ed565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110856119a3565b73ffffffffffffffffffffffffffffffffffffffff166110a3611256565b73ffffffffffffffffffffffffffffffffffffffff16146110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f09061346d565b60405180910390fd5b6111036000611dbc565b565b61110d6119a3565b73ffffffffffffffffffffffffffffffffffffffff1661112b611256565b73ffffffffffffffffffffffffffffffffffffffff1614611181576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111789061346d565b60405180910390fd5b80600f8190555050565b6111936119a3565b73ffffffffffffffffffffffffffffffffffffffff166111b1611256565b73ffffffffffffffffffffffffffffffffffffffff1614611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe9061346d565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611252573d6000803e3d6000fd5b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461128f9061382b565b80601f01602080910402602001604051908101604052809291908181526020018280546112bb9061382b565b80156113085780601f106112dd57610100808354040283529160200191611308565b820191906000526020600020905b8154815290600101906020018083116112eb57829003601f168201915b5050505050905090565b61131a6119a3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f9061338d565b60405180910390fd5b80600560006113956119a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114426119a3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161148791906132b0565b60405180910390a35050565b6114a461149e6119a3565b83611a64565b6114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da906134ed565b60405180910390fd5b6114ef84848484611e82565b50505050565b600c80546115029061382b565b80601f016020809104026020016040519081016040528092919081815260200182805461152e9061382b565b801561157b5780601f106115505761010080835404028352916020019161157b565b820191906000526020600020905b81548152906001019060200180831161155e57829003601f168201915b505050505081565b606061158e82611937565b6115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c4906134ad565b60405180910390fd5b60006115d7611ede565b905060008151116115f75760405180602001604052806000815250611625565b8061160184611f70565b600c604051602001611615939291906131f6565b6040516020818303038152906040525b915050919050565b600e5481565b61163b6119a3565b73ffffffffffffffffffffffffffffffffffffffff16611659611256565b73ffffffffffffffffffffffffffffffffffffffff16146116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a69061346d565b60405180910390fd5b80600c90805190602001906116c592919061292d565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117656119a3565b73ffffffffffffffffffffffffffffffffffffffff16611783611256565b73ffffffffffffffffffffffffffffffffffffffff16146117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d09061346d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611849576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118409061332d565b60405180910390fd5b61185281611dbc565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061192057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611930575061192f826120d1565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a1e83610e85565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a6f82611937565b611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa5906133ad565b60405180910390fd5b6000611ab983610e85565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b2857508373ffffffffffffffffffffffffffffffffffffffff16611b1084610875565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b395750611b3881856116c9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b6282610e85565b73ffffffffffffffffffffffffffffffffffffffff1614611bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baf9061348d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f9061336d565b60405180910390fd5b611c3383838361213b565b611c3e6000826119ab565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c8e9190613741565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ce59190613660565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611db882826040518060200160405280600081525061224f565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e8d848484611b42565b611e99848484846122aa565b611ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecf9061330d565b60405180910390fd5b50505050565b6060600b8054611eed9061382b565b80601f0160208091040260200160405190810160405280929190818152602001828054611f199061382b565b8015611f665780601f10611f3b57610100808354040283529160200191611f66565b820191906000526020600020905b815481529060010190602001808311611f4957829003601f168201915b5050505050905090565b60606000821415611fb8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120cc565b600082905060005b60008214611fea578080611fd39061388e565b915050600a82611fe391906136b6565b9150611fc0565b60008167ffffffffffffffff811115612006576120056139f3565b5b6040519080825280601f01601f1916602001820160405280156120385781602001600182028036833780820191505090505b5090505b600085146120c5576001826120519190613741565b9150600a8561206091906138d7565b603061206c9190613660565b60f81b818381518110612082576120816139c4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120be91906136b6565b945061203c565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612146838383612441565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121895761218481612446565b6121c8565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146121c7576121c6838261248f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561220b57612206816125fc565b61224a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146122495761224882826126cd565b5b5b505050565b612259838361274c565b61226660008484846122aa565b6122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c9061330d565b60405180910390fd5b505050565b60006122cb8473ffffffffffffffffffffffffffffffffffffffff1661291a565b15612434578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122f46119a3565b8786866040518563ffffffff1660e01b81526004016123169493929190613242565b602060405180830381600087803b15801561233057600080fd5b505af192505050801561236157506040513d601f19601f8201168201806040525081019061235e9190612d09565b60015b6123e4573d8060008114612391576040519150601f19603f3d011682016040523d82523d6000602084013e612396565b606091505b506000815114156123dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d39061330d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612439565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161249c84610fc5565b6124a69190613741565b905060006007600084815260200190815260200160002054905081811461258b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126109190613741565b90506000600960008481526020019081526020016000205490506000600883815481106126405761263f6139c4565b5b906000526020600020015490508060088381548110612662576126616139c4565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806126b1576126b0613995565b5b6001900381819060005260206000200160009055905550505050565b60006126d883610fc5565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b39061342d565b60405180910390fd5b6127c581611937565b15612805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fc9061334d565b60405180910390fd5b6128116000838361213b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128619190613660565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546129399061382b565b90600052602060002090601f01602090048101928261295b57600085556129a2565b82601f1061297457805160ff19168380011785556129a2565b828001600101855582156129a2579182015b828111156129a1578251825591602001919060010190612986565b5b5090506129af91906129b3565b5090565b5b808211156129cc5760008160009055506001016129b4565b5090565b60006129e36129de8461356d565b613548565b9050828152602081018484840111156129ff576129fe613a27565b5b612a0a8482856137e9565b509392505050565b6000612a25612a208461359e565b613548565b905082815260208101848484011115612a4157612a40613a27565b5b612a4c8482856137e9565b509392505050565b600081359050612a6381613f3d565b92915050565b600081359050612a7881613f54565b92915050565b600081359050612a8d81613f6b565b92915050565b600081519050612aa281613f6b565b92915050565b600082601f830112612abd57612abc613a22565b5b8135612acd8482602086016129d0565b91505092915050565b600082601f830112612aeb57612aea613a22565b5b8135612afb848260208601612a12565b91505092915050565b600081359050612b1381613f82565b92915050565b600060208284031215612b2f57612b2e613a31565b5b6000612b3d84828501612a54565b91505092915050565b60008060408385031215612b5d57612b5c613a31565b5b6000612b6b85828601612a54565b9250506020612b7c85828601612a54565b9150509250929050565b600080600060608486031215612b9f57612b9e613a31565b5b6000612bad86828701612a54565b9350506020612bbe86828701612a54565b9250506040612bcf86828701612b04565b9150509250925092565b60008060008060808587031215612bf357612bf2613a31565b5b6000612c0187828801612a54565b9450506020612c1287828801612a54565b9350506040612c2387828801612b04565b925050606085013567ffffffffffffffff811115612c4457612c43613a2c565b5b612c5087828801612aa8565b91505092959194509250565b60008060408385031215612c7357612c72613a31565b5b6000612c8185828601612a54565b9250506020612c9285828601612a69565b9150509250929050565b60008060408385031215612cb357612cb2613a31565b5b6000612cc185828601612a54565b9250506020612cd285828601612b04565b9150509250929050565b600060208284031215612cf257612cf1613a31565b5b6000612d0084828501612a7e565b91505092915050565b600060208284031215612d1f57612d1e613a31565b5b6000612d2d84828501612a93565b91505092915050565b600060208284031215612d4c57612d4b613a31565b5b600082013567ffffffffffffffff811115612d6a57612d69613a2c565b5b612d7684828501612ad6565b91505092915050565b600060208284031215612d9557612d94613a31565b5b6000612da384828501612b04565b91505092915050565b6000612db883836131d8565b60208301905092915050565b612dcd81613775565b82525050565b6000612dde826135f4565b612de88185613622565b9350612df3836135cf565b8060005b83811015612e24578151612e0b8882612dac565b9750612e1683613615565b925050600181019050612df7565b5085935050505092915050565b612e3a81613787565b82525050565b6000612e4b826135ff565b612e558185613633565b9350612e658185602086016137f8565b612e6e81613a36565b840191505092915050565b6000612e848261360a565b612e8e8185613644565b9350612e9e8185602086016137f8565b612ea781613a36565b840191505092915050565b6000612ebd8261360a565b612ec78185613655565b9350612ed78185602086016137f8565b80840191505092915050565b60008154612ef08161382b565b612efa8186613655565b94506001821660008114612f155760018114612f2657612f59565b60ff19831686528186019350612f59565b612f2f856135df565b60005b83811015612f5157815481890152600182019150602081019050612f32565b838801955050505b50505092915050565b6000612f6f602b83613644565b9150612f7a82613a47565b604082019050919050565b6000612f92603283613644565b9150612f9d82613a96565b604082019050919050565b6000612fb5602683613644565b9150612fc082613ae5565b604082019050919050565b6000612fd8601c83613644565b9150612fe382613b34565b602082019050919050565b6000612ffb602483613644565b915061300682613b5d565b604082019050919050565b600061301e601983613644565b915061302982613bac565b602082019050919050565b6000613041602c83613644565b915061304c82613bd5565b604082019050919050565b6000613064603883613644565b915061306f82613c24565b604082019050919050565b6000613087602a83613644565b915061309282613c73565b604082019050919050565b60006130aa602983613644565b91506130b582613cc2565b604082019050919050565b60006130cd602083613644565b91506130d882613d11565b602082019050919050565b60006130f0602c83613644565b91506130fb82613d3a565b604082019050919050565b6000613113602083613644565b915061311e82613d89565b602082019050919050565b6000613136602983613644565b915061314182613db2565b604082019050919050565b6000613159602f83613644565b915061316482613e01565b604082019050919050565b600061317c602183613644565b915061318782613e50565b604082019050919050565b600061319f603183613644565b91506131aa82613e9f565b604082019050919050565b60006131c2602c83613644565b91506131cd82613eee565b604082019050919050565b6131e1816137df565b82525050565b6131f0816137df565b82525050565b60006132028286612eb2565b915061320e8285612eb2565b915061321a8284612ee3565b9150819050949350505050565b600060208201905061323c6000830184612dc4565b92915050565b60006080820190506132576000830187612dc4565b6132646020830186612dc4565b61327160408301856131e7565b81810360608301526132838184612e40565b905095945050505050565b600060208201905081810360008301526132a88184612dd3565b905092915050565b60006020820190506132c56000830184612e31565b92915050565b600060208201905081810360008301526132e58184612e79565b905092915050565b6000602082019050818103600083015261330681612f62565b9050919050565b6000602082019050818103600083015261332681612f85565b9050919050565b6000602082019050818103600083015261334681612fa8565b9050919050565b6000602082019050818103600083015261336681612fcb565b9050919050565b6000602082019050818103600083015261338681612fee565b9050919050565b600060208201905081810360008301526133a681613011565b9050919050565b600060208201905081810360008301526133c681613034565b9050919050565b600060208201905081810360008301526133e681613057565b9050919050565b600060208201905081810360008301526134068161307a565b9050919050565b600060208201905081810360008301526134268161309d565b9050919050565b60006020820190508181036000830152613446816130c0565b9050919050565b60006020820190508181036000830152613466816130e3565b9050919050565b6000602082019050818103600083015261348681613106565b9050919050565b600060208201905081810360008301526134a681613129565b9050919050565b600060208201905081810360008301526134c68161314c565b9050919050565b600060208201905081810360008301526134e68161316f565b9050919050565b6000602082019050818103600083015261350681613192565b9050919050565b60006020820190508181036000830152613526816131b5565b9050919050565b600060208201905061354260008301846131e7565b92915050565b6000613552613563565b905061355e828261385d565b919050565b6000604051905090565b600067ffffffffffffffff821115613588576135876139f3565b5b61359182613a36565b9050602081019050919050565b600067ffffffffffffffff8211156135b9576135b86139f3565b5b6135c282613a36565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061366b826137df565b9150613676836137df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136ab576136aa613908565b5b828201905092915050565b60006136c1826137df565b91506136cc836137df565b9250826136dc576136db613937565b5b828204905092915050565b60006136f2826137df565b91506136fd836137df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561373657613735613908565b5b828202905092915050565b600061374c826137df565b9150613757836137df565b92508282101561376a57613769613908565b5b828203905092915050565b6000613780826137bf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138165780820151818401526020810190506137fb565b83811115613825576000848401525b50505050565b6000600282049050600182168061384357607f821691505b6020821081141561385757613856613966565b5b50919050565b61386682613a36565b810181811067ffffffffffffffff82111715613885576138846139f3565b5b80604052505050565b6000613899826137df565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138cc576138cb613908565b5b600182019050919050565b60006138e2826137df565b91506138ed836137df565b9250826138fd576138fc613937565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b613f4681613775565b8114613f5157600080fd5b50565b613f5d81613787565b8114613f6857600080fd5b50565b613f7481613793565b8114613f7f57600080fd5b50565b613f8b816137df565b8114613f9657600080fd5b5056fea2646970667358221220f0a3adc5f44d607b43911223222992c333633a7e40a247c60ed007ccafe4f3dc64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e4c696c2044646c657320436c756200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c444300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5435657a653353746d7a6e7446487a7156656a386e4648617061646241387a506379395262553974353774432f00000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636352211e11610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146106af578063da3ef23f146106da578063e985e9c514610703578063f2fde38b14610740576101d8565b8063a22cb465146105f5578063b88d4fde1461061e578063c668286214610647578063c87b56dd14610672576101d8565b80637f00c7a6116100d15780637f00c7a61461055f578063853828b6146105885780638da5cb5b1461059f57806395d89b41146105ca576101d8565b80636352211e146104a35780636c0360eb146104e057806370a082311461050b578063715018a614610548576101d8565b806323b872dd1161017a578063438b630011610149578063438b6300146103d757806344a0d68a146104145780634f6ccce71461043d57806355f804b31461047a576101d8565b806323b872dd1461032c5780632f745c591461035557806340c10f191461039257806342842e0e146103ae576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806313faede6146102ab57806318160ddd146102d6578063239c70ae14610301576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612cdc565b610769565b60405161021191906132b0565b60405180910390f35b34801561022657600080fd5b5061022f6107e3565b60405161023c91906132cb565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612d7f565b610875565b6040516102799190613227565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612c9c565b6108fa565b005b3480156102b757600080fd5b506102c0610a12565b6040516102cd919061352d565b60405180910390f35b3480156102e257600080fd5b506102eb610a18565b6040516102f8919061352d565b60405180910390f35b34801561030d57600080fd5b50610316610a25565b604051610323919061352d565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190612b86565b610a2b565b005b34801561036157600080fd5b5061037c60048036038101906103779190612c9c565b610a8b565b604051610389919061352d565b60405180910390f35b6103ac60048036038101906103a79190612c9c565b610b30565b005b3480156103ba57600080fd5b506103d560048036038101906103d09190612b86565b610c2a565b005b3480156103e357600080fd5b506103fe60048036038101906103f99190612b19565b610c4a565b60405161040b919061328e565b60405180910390f35b34801561042057600080fd5b5061043b60048036038101906104369190612d7f565b610cf8565b005b34801561044957600080fd5b50610464600480360381019061045f9190612d7f565b610d7e565b604051610471919061352d565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190612d36565b610def565b005b3480156104af57600080fd5b506104ca60048036038101906104c59190612d7f565b610e85565b6040516104d79190613227565b60405180910390f35b3480156104ec57600080fd5b506104f5610f37565b60405161050291906132cb565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190612b19565b610fc5565b60405161053f919061352d565b60405180910390f35b34801561055457600080fd5b5061055d61107d565b005b34801561056b57600080fd5b5061058660048036038101906105819190612d7f565b611105565b005b34801561059457600080fd5b5061059d61118b565b005b3480156105ab57600080fd5b506105b4611256565b6040516105c19190613227565b60405180910390f35b3480156105d657600080fd5b506105df611280565b6040516105ec91906132cb565b60405180910390f35b34801561060157600080fd5b5061061c60048036038101906106179190612c5c565b611312565b005b34801561062a57600080fd5b5061064560048036038101906106409190612bd9565b611493565b005b34801561065357600080fd5b5061065c6114f5565b60405161066991906132cb565b60405180910390f35b34801561067e57600080fd5b5061069960048036038101906106949190612d7f565b611583565b6040516106a691906132cb565b60405180910390f35b3480156106bb57600080fd5b506106c461162d565b6040516106d1919061352d565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190612d36565b611633565b005b34801561070f57600080fd5b5061072a60048036038101906107259190612b46565b6116c9565b60405161073791906132b0565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190612b19565b61175d565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107dc57506107db82611855565b5b9050919050565b6060600080546107f29061382b565b80601f016020809104026020016040519081016040528092919081815260200182805461081e9061382b565b801561086b5780601f106108405761010080835404028352916020019161086b565b820191906000526020600020905b81548152906001019060200180831161084e57829003601f168201915b5050505050905090565b600061088082611937565b6108bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b69061344d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090582610e85565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d906134cd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109956119a3565b73ffffffffffffffffffffffffffffffffffffffff1614806109c457506109c3816109be6119a3565b6116c9565b5b610a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fa906133cd565b60405180910390fd5b610a0d83836119ab565b505050565b600d5481565b6000600880549050905090565b600f5481565b610a3c610a366119a3565b82611a64565b610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a72906134ed565b60405180910390fd5b610a86838383611b42565b505050565b6000610a9683610fc5565b8210610ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ace906132ed565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000610b3a610a18565b905060008211610b4957600080fd5b600f54821115610b5857600080fd5b600e548282610b679190613660565b1115610b7257600080fd5b610b7a611256565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bee5760c88282610bba9190613660565b1115610bdf5781600d54610bce91906136e7565b341015610bda57600080fd5b610bed565b60018214610bec57600080fd5b5b5b6000600190505b828111610c2457610c11848284610c0c9190613660565b611d9e565b8080610c1c9061388e565b915050610bf5565b50505050565b610c4583838360405180602001604052806000815250611493565b505050565b60606000610c5783610fc5565b905060008167ffffffffffffffff811115610c7557610c746139f3565b5b604051908082528060200260200182016040528015610ca35781602001602082028036833780820191505090505b50905060005b82811015610ced57610cbb8582610a8b565b828281518110610cce57610ccd6139c4565b5b6020026020010181815250508080610ce59061388e565b915050610ca9565b508092505050919050565b610d006119a3565b73ffffffffffffffffffffffffffffffffffffffff16610d1e611256565b73ffffffffffffffffffffffffffffffffffffffff1614610d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6b9061346d565b60405180910390fd5b80600d8190555050565b6000610d88610a18565b8210610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc09061350d565b60405180910390fd5b60088281548110610ddd57610ddc6139c4565b5b90600052602060002001549050919050565b610df76119a3565b73ffffffffffffffffffffffffffffffffffffffff16610e15611256565b73ffffffffffffffffffffffffffffffffffffffff1614610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e629061346d565b60405180910390fd5b80600b9080519060200190610e8192919061292d565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f259061340d565b60405180910390fd5b80915050919050565b600b8054610f449061382b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f709061382b565b8015610fbd5780601f10610f9257610100808354040283529160200191610fbd565b820191906000526020600020905b815481529060010190602001808311610fa057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d906133ed565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110856119a3565b73ffffffffffffffffffffffffffffffffffffffff166110a3611256565b73ffffffffffffffffffffffffffffffffffffffff16146110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f09061346d565b60405180910390fd5b6111036000611dbc565b565b61110d6119a3565b73ffffffffffffffffffffffffffffffffffffffff1661112b611256565b73ffffffffffffffffffffffffffffffffffffffff1614611181576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111789061346d565b60405180910390fd5b80600f8190555050565b6111936119a3565b73ffffffffffffffffffffffffffffffffffffffff166111b1611256565b73ffffffffffffffffffffffffffffffffffffffff1614611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe9061346d565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611252573d6000803e3d6000fd5b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461128f9061382b565b80601f01602080910402602001604051908101604052809291908181526020018280546112bb9061382b565b80156113085780601f106112dd57610100808354040283529160200191611308565b820191906000526020600020905b8154815290600101906020018083116112eb57829003601f168201915b5050505050905090565b61131a6119a3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f9061338d565b60405180910390fd5b80600560006113956119a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114426119a3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161148791906132b0565b60405180910390a35050565b6114a461149e6119a3565b83611a64565b6114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da906134ed565b60405180910390fd5b6114ef84848484611e82565b50505050565b600c80546115029061382b565b80601f016020809104026020016040519081016040528092919081815260200182805461152e9061382b565b801561157b5780601f106115505761010080835404028352916020019161157b565b820191906000526020600020905b81548152906001019060200180831161155e57829003601f168201915b505050505081565b606061158e82611937565b6115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c4906134ad565b60405180910390fd5b60006115d7611ede565b905060008151116115f75760405180602001604052806000815250611625565b8061160184611f70565b600c604051602001611615939291906131f6565b6040516020818303038152906040525b915050919050565b600e5481565b61163b6119a3565b73ffffffffffffffffffffffffffffffffffffffff16611659611256565b73ffffffffffffffffffffffffffffffffffffffff16146116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a69061346d565b60405180910390fd5b80600c90805190602001906116c592919061292d565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117656119a3565b73ffffffffffffffffffffffffffffffffffffffff16611783611256565b73ffffffffffffffffffffffffffffffffffffffff16146117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d09061346d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611849576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118409061332d565b60405180910390fd5b61185281611dbc565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061192057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611930575061192f826120d1565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a1e83610e85565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a6f82611937565b611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa5906133ad565b60405180910390fd5b6000611ab983610e85565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b2857508373ffffffffffffffffffffffffffffffffffffffff16611b1084610875565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b395750611b3881856116c9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b6282610e85565b73ffffffffffffffffffffffffffffffffffffffff1614611bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baf9061348d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f9061336d565b60405180910390fd5b611c3383838361213b565b611c3e6000826119ab565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c8e9190613741565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ce59190613660565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611db882826040518060200160405280600081525061224f565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e8d848484611b42565b611e99848484846122aa565b611ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecf9061330d565b60405180910390fd5b50505050565b6060600b8054611eed9061382b565b80601f0160208091040260200160405190810160405280929190818152602001828054611f199061382b565b8015611f665780601f10611f3b57610100808354040283529160200191611f66565b820191906000526020600020905b815481529060010190602001808311611f4957829003601f168201915b5050505050905090565b60606000821415611fb8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120cc565b600082905060005b60008214611fea578080611fd39061388e565b915050600a82611fe391906136b6565b9150611fc0565b60008167ffffffffffffffff811115612006576120056139f3565b5b6040519080825280601f01601f1916602001820160405280156120385781602001600182028036833780820191505090505b5090505b600085146120c5576001826120519190613741565b9150600a8561206091906138d7565b603061206c9190613660565b60f81b818381518110612082576120816139c4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120be91906136b6565b945061203c565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612146838383612441565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121895761218481612446565b6121c8565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146121c7576121c6838261248f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561220b57612206816125fc565b61224a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146122495761224882826126cd565b5b5b505050565b612259838361274c565b61226660008484846122aa565b6122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c9061330d565b60405180910390fd5b505050565b60006122cb8473ffffffffffffffffffffffffffffffffffffffff1661291a565b15612434578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122f46119a3565b8786866040518563ffffffff1660e01b81526004016123169493929190613242565b602060405180830381600087803b15801561233057600080fd5b505af192505050801561236157506040513d601f19601f8201168201806040525081019061235e9190612d09565b60015b6123e4573d8060008114612391576040519150601f19603f3d011682016040523d82523d6000602084013e612396565b606091505b506000815114156123dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d39061330d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612439565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161249c84610fc5565b6124a69190613741565b905060006007600084815260200190815260200160002054905081811461258b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126109190613741565b90506000600960008481526020019081526020016000205490506000600883815481106126405761263f6139c4565b5b906000526020600020015490508060088381548110612662576126616139c4565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806126b1576126b0613995565b5b6001900381819060005260206000200160009055905550505050565b60006126d883610fc5565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b39061342d565b60405180910390fd5b6127c581611937565b15612805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fc9061334d565b60405180910390fd5b6128116000838361213b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128619190613660565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546129399061382b565b90600052602060002090601f01602090048101928261295b57600085556129a2565b82601f1061297457805160ff19168380011785556129a2565b828001600101855582156129a2579182015b828111156129a1578251825591602001919060010190612986565b5b5090506129af91906129b3565b5090565b5b808211156129cc5760008160009055506001016129b4565b5090565b60006129e36129de8461356d565b613548565b9050828152602081018484840111156129ff576129fe613a27565b5b612a0a8482856137e9565b509392505050565b6000612a25612a208461359e565b613548565b905082815260208101848484011115612a4157612a40613a27565b5b612a4c8482856137e9565b509392505050565b600081359050612a6381613f3d565b92915050565b600081359050612a7881613f54565b92915050565b600081359050612a8d81613f6b565b92915050565b600081519050612aa281613f6b565b92915050565b600082601f830112612abd57612abc613a22565b5b8135612acd8482602086016129d0565b91505092915050565b600082601f830112612aeb57612aea613a22565b5b8135612afb848260208601612a12565b91505092915050565b600081359050612b1381613f82565b92915050565b600060208284031215612b2f57612b2e613a31565b5b6000612b3d84828501612a54565b91505092915050565b60008060408385031215612b5d57612b5c613a31565b5b6000612b6b85828601612a54565b9250506020612b7c85828601612a54565b9150509250929050565b600080600060608486031215612b9f57612b9e613a31565b5b6000612bad86828701612a54565b9350506020612bbe86828701612a54565b9250506040612bcf86828701612b04565b9150509250925092565b60008060008060808587031215612bf357612bf2613a31565b5b6000612c0187828801612a54565b9450506020612c1287828801612a54565b9350506040612c2387828801612b04565b925050606085013567ffffffffffffffff811115612c4457612c43613a2c565b5b612c5087828801612aa8565b91505092959194509250565b60008060408385031215612c7357612c72613a31565b5b6000612c8185828601612a54565b9250506020612c9285828601612a69565b9150509250929050565b60008060408385031215612cb357612cb2613a31565b5b6000612cc185828601612a54565b9250506020612cd285828601612b04565b9150509250929050565b600060208284031215612cf257612cf1613a31565b5b6000612d0084828501612a7e565b91505092915050565b600060208284031215612d1f57612d1e613a31565b5b6000612d2d84828501612a93565b91505092915050565b600060208284031215612d4c57612d4b613a31565b5b600082013567ffffffffffffffff811115612d6a57612d69613a2c565b5b612d7684828501612ad6565b91505092915050565b600060208284031215612d9557612d94613a31565b5b6000612da384828501612b04565b91505092915050565b6000612db883836131d8565b60208301905092915050565b612dcd81613775565b82525050565b6000612dde826135f4565b612de88185613622565b9350612df3836135cf565b8060005b83811015612e24578151612e0b8882612dac565b9750612e1683613615565b925050600181019050612df7565b5085935050505092915050565b612e3a81613787565b82525050565b6000612e4b826135ff565b612e558185613633565b9350612e658185602086016137f8565b612e6e81613a36565b840191505092915050565b6000612e848261360a565b612e8e8185613644565b9350612e9e8185602086016137f8565b612ea781613a36565b840191505092915050565b6000612ebd8261360a565b612ec78185613655565b9350612ed78185602086016137f8565b80840191505092915050565b60008154612ef08161382b565b612efa8186613655565b94506001821660008114612f155760018114612f2657612f59565b60ff19831686528186019350612f59565b612f2f856135df565b60005b83811015612f5157815481890152600182019150602081019050612f32565b838801955050505b50505092915050565b6000612f6f602b83613644565b9150612f7a82613a47565b604082019050919050565b6000612f92603283613644565b9150612f9d82613a96565b604082019050919050565b6000612fb5602683613644565b9150612fc082613ae5565b604082019050919050565b6000612fd8601c83613644565b9150612fe382613b34565b602082019050919050565b6000612ffb602483613644565b915061300682613b5d565b604082019050919050565b600061301e601983613644565b915061302982613bac565b602082019050919050565b6000613041602c83613644565b915061304c82613bd5565b604082019050919050565b6000613064603883613644565b915061306f82613c24565b604082019050919050565b6000613087602a83613644565b915061309282613c73565b604082019050919050565b60006130aa602983613644565b91506130b582613cc2565b604082019050919050565b60006130cd602083613644565b91506130d882613d11565b602082019050919050565b60006130f0602c83613644565b91506130fb82613d3a565b604082019050919050565b6000613113602083613644565b915061311e82613d89565b602082019050919050565b6000613136602983613644565b915061314182613db2565b604082019050919050565b6000613159602f83613644565b915061316482613e01565b604082019050919050565b600061317c602183613644565b915061318782613e50565b604082019050919050565b600061319f603183613644565b91506131aa82613e9f565b604082019050919050565b60006131c2602c83613644565b91506131cd82613eee565b604082019050919050565b6131e1816137df565b82525050565b6131f0816137df565b82525050565b60006132028286612eb2565b915061320e8285612eb2565b915061321a8284612ee3565b9150819050949350505050565b600060208201905061323c6000830184612dc4565b92915050565b60006080820190506132576000830187612dc4565b6132646020830186612dc4565b61327160408301856131e7565b81810360608301526132838184612e40565b905095945050505050565b600060208201905081810360008301526132a88184612dd3565b905092915050565b60006020820190506132c56000830184612e31565b92915050565b600060208201905081810360008301526132e58184612e79565b905092915050565b6000602082019050818103600083015261330681612f62565b9050919050565b6000602082019050818103600083015261332681612f85565b9050919050565b6000602082019050818103600083015261334681612fa8565b9050919050565b6000602082019050818103600083015261336681612fcb565b9050919050565b6000602082019050818103600083015261338681612fee565b9050919050565b600060208201905081810360008301526133a681613011565b9050919050565b600060208201905081810360008301526133c681613034565b9050919050565b600060208201905081810360008301526133e681613057565b9050919050565b600060208201905081810360008301526134068161307a565b9050919050565b600060208201905081810360008301526134268161309d565b9050919050565b60006020820190508181036000830152613446816130c0565b9050919050565b60006020820190508181036000830152613466816130e3565b9050919050565b6000602082019050818103600083015261348681613106565b9050919050565b600060208201905081810360008301526134a681613129565b9050919050565b600060208201905081810360008301526134c68161314c565b9050919050565b600060208201905081810360008301526134e68161316f565b9050919050565b6000602082019050818103600083015261350681613192565b9050919050565b60006020820190508181036000830152613526816131b5565b9050919050565b600060208201905061354260008301846131e7565b92915050565b6000613552613563565b905061355e828261385d565b919050565b6000604051905090565b600067ffffffffffffffff821115613588576135876139f3565b5b61359182613a36565b9050602081019050919050565b600067ffffffffffffffff8211156135b9576135b86139f3565b5b6135c282613a36565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061366b826137df565b9150613676836137df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136ab576136aa613908565b5b828201905092915050565b60006136c1826137df565b91506136cc836137df565b9250826136dc576136db613937565b5b828204905092915050565b60006136f2826137df565b91506136fd836137df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561373657613735613908565b5b828202905092915050565b600061374c826137df565b9150613757836137df565b92508282101561376a57613769613908565b5b828203905092915050565b6000613780826137bf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138165780820151818401526020810190506137fb565b83811115613825576000848401525b50505050565b6000600282049050600182168061384357607f821691505b6020821081141561385757613856613966565b5b50919050565b61386682613a36565b810181811067ffffffffffffffff82111715613885576138846139f3565b5b80604052505050565b6000613899826137df565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138cc576138cb613908565b5b600182019050919050565b60006138e2826137df565b91506138ed836137df565b9250826138fd576138fc613937565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b613f4681613775565b8114613f5157600080fd5b50565b613f5d81613787565b8114613f6857600080fd5b50565b613f7481613793565b8114613f7f57600080fd5b50565b613f8b816137df565b8114613f9657600080fd5b5056fea2646970667358221220f0a3adc5f44d607b43911223222992c333633a7e40a247c60ed007ccafe4f3dc64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e4c696c2044646c657320436c756200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c444300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5435657a653353746d7a6e7446487a7156656a386e4648617061646241387a506379395262553974353774432f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Lil Ddles Club
Arg [1] : _symbol (string): LDC
Arg [2] : _initBaseURI (string): ipfs://QmT5eze3StmzntFHzqVej8nFHapadbA8zPcy9RbU9t57tC/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 4c696c2044646c657320436c7562000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4c44430000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d5435657a653353746d7a6e7446487a7156656a386e4648
Arg [9] : 617061646241387a506379395262553974353774432f00000000000000000000


Deployed Bytecode Sourcemap

115:2769:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:290:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2549:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4182:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3720:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;260:39:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1680:111:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;350:33:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5196:364:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1278:331:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;668:587:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5626:179:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1263:379:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2286:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1863:308:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2486:96:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2174:313:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;194:21:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1834:283:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1620:92:11;;;;;;;;;;;;;:::i;:::-;;2368:114:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2740:142;;;;;;;;;;;;;:::i;:::-;;988:85:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2711:102:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4544:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5871:354;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;219:37:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1648:619;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;315:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2588:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4928:206:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1861:223:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;909:290:4;1051:4;1105:35;1090:50;;;:11;:50;;;;:102;;;;1156:36;1180:11;1156:23;:36::i;:::-;1090:102;1071:121;;909:290;;;:::o;2549:98:3:-;2603:13;2635:5;2628:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2549:98;:::o;4182:295::-;4298:7;4342:16;4350:7;4342;:16::i;:::-;4321:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;4446:15;:24;4462:7;4446:24;;;;;;;;;;;;;;;;;;;;;4439:31;;4182:295;;;:::o;3720:401::-;3800:13;3816:23;3831:7;3816:14;:23::i;:::-;3800:39;;3863:5;3857:11;;:2;:11;;;;3849:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3954:5;3938:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3963:37;3980:5;3987:12;:10;:12::i;:::-;3963:16;:37::i;:::-;3938:62;3917:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;4093:21;4102:2;4106:7;4093:8;:21::i;:::-;3790:331;3720:401;;:::o;260:39:10:-;;;;:::o;1680:111:4:-;1741:7;1767:10;:17;;;;1760:24;;1680:111;:::o;350:33:10:-;;;;:::o;5196:364:3:-;5398:41;5417:12;:10;:12::i;:::-;5431:7;5398:18;:41::i;:::-;5377:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;5525:28;5535:4;5541:2;5545:7;5525:9;:28::i;:::-;5196:364;;;:::o;1278:331:4:-;1415:7;1467:23;1484:5;1467:16;:23::i;:::-;1459:5;:31;1438:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;1576:12;:19;1589:5;1576:19;;;;;;;;;;;;;;;:26;1596:5;1576:26;;;;;;;;;;;;1569:33;;1278:331;;;;:::o;668:587:10:-;741:14;758:13;:11;:13::i;:::-;741:30;;803:1;789:11;:15;781:24;;;;;;838:13;;823:11;:28;;815:37;;;;;;894:9;;879:11;870:6;:20;;;;:::i;:::-;:33;;862:42;;;;;;933:7;:5;:7::i;:::-;919:21;;:10;:21;;;915:222;;984:3;970:11;961:6;:20;;;;:::i;:::-;:26;957:170;;;1036:11;1029:4;;:18;;;;:::i;:::-;1016:9;:31;;1008:40;;;;;;957:170;;;1110:1;1095:11;:16;1087:25;;;;;;957:170;915:222;1160:9;1172:1;1160:13;;1155:94;1180:11;1175:1;:16;1155:94;;1212:26;1222:3;1236:1;1227:6;:10;;;;:::i;:::-;1212:9;:26::i;:::-;1193:3;;;;;:::i;:::-;;;;1155:94;;;;731:524;668:587;;:::o;5626:179:3:-;5759:39;5776:4;5782:2;5786:7;5759:39;;;;;;;;;;;;:16;:39::i;:::-;5626:179;;;:::o;1263:379:10:-;1347:16;1379:23;1405:17;1415:6;1405:9;:17::i;:::-;1379:43;;1432:25;1474:15;1460:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1432:58;;1505:9;1500:111;1520:15;1516:1;:19;1500:111;;;1570:30;1590:6;1598:1;1570:19;:30::i;:::-;1556:8;1565:1;1556:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;1537:3;;;;;:::i;:::-;;;;1500:111;;;;1627:8;1620:15;;;;1263:379;;;:::o;2286:78::-;1211:12:11;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2351:8:10::1;2344:4;:15;;;;2286:78:::0;:::o;1863:308:4:-;1978:7;2030:30;:28;:30::i;:::-;2022:5;:38;2001:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;2147:10;2158:5;2147:17;;;;;;;;:::i;:::-;;;;;;;;;;2140:24;;1863:308;;;:::o;2486:96:10:-;1211:12:11;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2566:11:10::1;2556:7;:21;;;;;;;;;;;;:::i;:::-;;2486:96:::0;:::o;2174:313:3:-;2286:7;2309:13;2325:7;:16;2333:7;2325:16;;;;;;;;;;;;;;;;;;;;;2309:32;;2389:1;2372:19;;:5;:19;;;;2351:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;2475:5;2468:12;;;2174:313;;;:::o;194:21:10:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1834:283:3:-;1946:7;2007:1;1990:19;;:5;:19;;;;1969:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;2094:9;:16;2104:5;2094:16;;;;;;;;;;;;;;;;2087:23;;1834:283;;;:::o;1620:92:11:-;1211:12;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1684:21:::1;1702:1;1684:9;:21::i;:::-;1620:92::o:0;2368:114:10:-;1211:12:11;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2460:17:10::1;2444:13;:33;;;;2368:114:::0;:::o;2740:142::-;1211:12:11;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2792:12:10::1;2807:21;2792:36;;2846:10;2838:28;;:37;2867:7;2838:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2782:100;2740:142::o:0;988:85:11:-;1034:7;1060:6;;;;;;;;;;;1053:13;;988:85;:::o;2711:102:3:-;2767:13;2799:7;2792:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2711:102;:::o;4544:318::-;4686:12;:10;:12::i;:::-;4674:24;;:8;:24;;;;4666:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4784:8;4739:18;:32;4758:12;:10;:12::i;:::-;4739:32;;;;;;;;;;;;;;;:42;4772:8;4739:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4836:8;4807:48;;4822:12;:10;:12::i;:::-;4807:48;;;4846:8;4807:48;;;;;;:::i;:::-;;;;;;;;4544:318;;:::o;5871:354::-;6053:41;6072:12;:10;:12::i;:::-;6086:7;6053:18;:41::i;:::-;6032:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;6179:39;6193:4;6199:2;6203:7;6212:5;6179:13;:39::i;:::-;5871:354;;;;:::o;219:37:10:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1648:619::-;1761:13;1811:16;1819:7;1811;:16::i;:::-;1790:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;1911:28;1942:10;:8;:10::i;:::-;1911:41;;2012:1;1987:14;1981:28;:32;:279;;;;;;;;;;;;;;;;;2102:14;2142:18;:7;:16;:18::i;:::-;2186:13;2060:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1981:279;1962:298;;;1648:619;;;:::o;315:31::-;;;;:::o;2588:146::-;1211:12:11;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2710:17:10::1;2694:13;:33;;;;;;;;;;;;:::i;:::-;;2588:146:::0;:::o;4928:206:3:-;5065:4;5092:18;:25;5111:5;5092:25;;;;;;;;;;;;;;;:35;5118:8;5092:35;;;;;;;;;;;;;;;;;;;;;;;;;5085:42;;4928:206;;;;:::o;1861:223:11:-;1211:12;:10;:12::i;:::-;1200:23;;:7;:5;:7::i;:::-;:23;;;1192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1982:1:::1;1962:22;;:8;:22;;;;1941:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;2058:19;2068:8;2058:9;:19::i;:::-;1861:223:::0;:::o;1431:344:3:-;1573:4;1627:25;1612:40;;;:11;:40;;;;:104;;;;1683:33;1668:48;;;:11;:48;;;;1612:104;:156;;;;1732:36;1756:11;1732:23;:36::i;:::-;1612:156;1593:175;;1431:344;;;:::o;7731:125::-;7796:4;7847:1;7819:30;;:7;:16;7827:7;7819:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7812:37;;7731:125;;;:::o;587:96:1:-;640:7;666:10;659:17;;587:96;:::o;11710:171:3:-;11811:2;11784:15;:24;11800:7;11784:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11866:7;11862:2;11828:46;;11837:23;11852:7;11837:14;:23::i;:::-;11828:46;;;;;;;;;;;;11710:171;;:::o;8014:438::-;8139:4;8180:16;8188:7;8180;:16::i;:::-;8159:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;8276:13;8292:23;8307:7;8292:14;:23::i;:::-;8276:39;;8344:5;8333:16;;:7;:16;;;:63;;;;8389:7;8365:31;;:20;8377:7;8365:11;:20::i;:::-;:31;;;8333:63;:111;;;;8412:32;8429:5;8436:7;8412:16;:32::i;:::-;8333:111;8325:120;;;8014:438;;;;:::o;11005:594::-;11172:4;11145:31;;:23;11160:7;11145:14;:23::i;:::-;:31;;;11124:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;11275:1;11261:16;;:2;:16;;;;11253:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;11329:39;11350:4;11356:2;11360:7;11329:20;:39::i;:::-;11430:29;11447:1;11451:7;11430:8;:29::i;:::-;11489:1;11470:9;:15;11480:4;11470:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;11517:1;11500:9;:13;11510:2;11500:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;11547:2;11528:7;:16;11536:7;11528:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;11584:7;11580:2;11565:27;;11574:4;11565:27;;;;;;;;;;;;11005:594;;;:::o;8782:108::-;8857:26;8867:2;8871:7;8857:26;;;;;;;;;;;;:9;:26::i;:::-;8782:108;;:::o;2090:169:11:-;2145:16;2164:6;;;;;;;;;;;2145:25;;2189:8;2180:6;;:17;;;;;;;;;;;;;;;;;;2243:8;2212:40;;2233:8;2212:40;;;;;;;;;;;;2135:124;2090:169;:::o;7087:341:3:-;7238:28;7248:4;7254:2;7258:7;7238:9;:28::i;:::-;7297:48;7320:4;7326:2;7330:7;7339:5;7297:22;:48::i;:::-;7276:145;;;;;;;;;;;;:::i;:::-;;;;;;;;;7087:341;;;;:::o;564:100:10:-;624:13;652:7;645:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;564:100;:::o;275:703:12:-;331:13;557:1;548:5;:10;544:51;;;574:10;;;;;;;;;;;;;;;;;;;;;544:51;604:12;619:5;604:20;;634:14;658:75;673:1;665:4;:9;658:75;;690:8;;;;;:::i;:::-;;;;720:2;712:10;;;;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742:39;;791:150;807:1;798:5;:10;791:150;;834:1;824:11;;;;;:::i;:::-;;;900:2;892:5;:10;;;;:::i;:::-;879:2;:24;;;;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;928:2;919:11;;;;;:::i;:::-;;;791:150;;;964:6;950:21;;;;;275:703;;;;:::o;763:199:2:-;888:4;930:25;915:40;;;:11;:40;;;;908:47;;763:199;;;:::o;2767:572:4:-;2906:45;2933:4;2939:2;2943:7;2906:26;:45::i;:::-;2982:1;2966:18;;:4;:18;;;2962:183;;;3000:40;3032:7;3000:31;:40::i;:::-;2962:183;;;3069:2;3061:10;;:4;:10;;;3057:88;;3087:47;3120:4;3126:7;3087:32;:47::i;:::-;3057:88;2962:183;3172:1;3158:16;;:2;:16;;;3154:179;;;3190:45;3227:7;3190:36;:45::i;:::-;3154:179;;;3262:4;3256:10;;:2;:10;;;3252:81;;3282:40;3310:2;3314:7;3282:27;:40::i;:::-;3252:81;3154:179;2767:572;;;:::o;9111:311:3:-;9236:18;9242:2;9246:7;9236:5;:18::i;:::-;9285:54;9316:1;9320:2;9324:7;9333:5;9285:22;:54::i;:::-;9264:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;9111:311;;;:::o;12434:950::-;12584:4;12604:15;:2;:13;;;:15::i;:::-;12600:778;;;12671:2;12655:36;;;12713:12;:10;:12::i;:::-;12747:4;12773:7;12802:5;12655:170;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12635:691;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13021:1;13004:6;:13;:18;13000:312;;;13046:106;;;;;;;;;;:::i;:::-;;;;;;;;13000:312;13264:6;13258:13;13249:6;13245:2;13241:15;13234:38;12635:691;12897:41;;;12887:51;;;:6;:51;;;;12880:58;;;;;12600:778;13363:4;13356:11;;12434:950;;;;;;;:::o;13940:122::-;;;;:::o;4045:161:4:-;4148:10;:17;;;;4121:15;:24;4137:7;4121:24;;;;;;;;;;;:44;;;;4175:10;4191:7;4175:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4045:161;:::o;4823:982::-;5097:22;5147:1;5122:22;5139:4;5122:16;:22::i;:::-;:26;;;;:::i;:::-;5097:51;;5158:18;5179:17;:26;5197:7;5179:26;;;;;;;;;;;;5158:47;;5323:14;5309:10;:28;5305:323;;5353:19;5375:12;:18;5388:4;5375:18;;;;;;;;;;;;;;;:34;5394:14;5375:34;;;;;;;;;;;;5353:56;;5457:11;5424:12;:18;5437:4;5424:18;;;;;;;;;;;;;;;:30;5443:10;5424:30;;;;;;;;;;;:44;;;;5573:10;5540:17;:30;5558:11;5540:30;;;;;;;;;;;:43;;;;5339:289;5305:323;5721:17;:26;5739:7;5721:26;;;;;;;;;;;5714:33;;;5764:12;:18;5777:4;5764:18;;;;;;;;;;;;;;;:34;5783:14;5764:34;;;;;;;;;;;5757:41;;;4916:889;;4823:982;;:::o;6093:1061::-;6342:22;6387:1;6367:10;:17;;;;:21;;;;:::i;:::-;6342:46;;6398:18;6419:15;:24;6435:7;6419:24;;;;;;;;;;;;6398:45;;6765:19;6787:10;6798:14;6787:26;;;;;;;;:::i;:::-;;;;;;;;;;6765:48;;6849:11;6824:10;6835;6824:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6959:10;6928:15;:28;6944:11;6928:28;;;;;;;;;;;:41;;;;7097:15;:24;7113:7;7097:24;;;;;;;;;;;7090:31;;;7131:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6164:990;;;6093:1061;:::o;3633:217::-;3717:14;3734:20;3751:2;3734:16;:20::i;:::-;3717:37;;3791:7;3764:12;:16;3777:2;3764:16;;;;;;;;;;;;;;;:24;3781:6;3764:24;;;;;;;;;;;:34;;;;3837:6;3808:17;:26;3826:7;3808:26;;;;;;;;;;;:35;;;;3707:143;3633:217;;:::o;9744:372:3:-;9837:1;9823:16;;:2;:16;;;;9815:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9895:16;9903:7;9895;:16::i;:::-;9894:17;9886:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9955:45;9984:1;9988:2;9992:7;9955:20;:45::i;:::-;10028:1;10011:9;:13;10021:2;10011:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10058:2;10039:7;:16;10047:7;10039:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10101:7;10097:2;10076:33;;10093:1;10076:33;;;;;;;;;;;;9744:372;;:::o;718:377:0:-;778:4;981:12;1046:7;1034:20;1026:28;;1087:1;1080:4;:8;1073:15;;;718:377;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:13:-;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:179::-;7227:10;7248:46;7290:3;7282:6;7248:46;:::i;:::-;7326:4;7321:3;7317:14;7303:28;;7158:179;;;;:::o;7343:118::-;7430:24;7448:5;7430:24;:::i;:::-;7425:3;7418:37;7343:118;;:::o;7497:732::-;7616:3;7645:54;7693:5;7645:54;:::i;:::-;7715:86;7794:6;7789:3;7715:86;:::i;:::-;7708:93;;7825:56;7875:5;7825:56;:::i;:::-;7904:7;7935:1;7920:284;7945:6;7942:1;7939:13;7920:284;;;8021:6;8015:13;8048:63;8107:3;8092:13;8048:63;:::i;:::-;8041:70;;8134:60;8187:6;8134:60;:::i;:::-;8124:70;;7980:224;7967:1;7964;7960:9;7955:14;;7920:284;;;7924:14;8220:3;8213:10;;7621:608;;;7497:732;;;;:::o;8235:109::-;8316:21;8331:5;8316:21;:::i;:::-;8311:3;8304:34;8235:109;;:::o;8350:360::-;8436:3;8464:38;8496:5;8464:38;:::i;:::-;8518:70;8581:6;8576:3;8518:70;:::i;:::-;8511:77;;8597:52;8642:6;8637:3;8630:4;8623:5;8619:16;8597:52;:::i;:::-;8674:29;8696:6;8674:29;:::i;:::-;8669:3;8665:39;8658:46;;8440:270;8350:360;;;;:::o;8716:364::-;8804:3;8832:39;8865:5;8832:39;:::i;:::-;8887:71;8951:6;8946:3;8887:71;:::i;:::-;8880:78;;8967:52;9012:6;9007:3;9000:4;8993:5;8989:16;8967:52;:::i;:::-;9044:29;9066:6;9044:29;:::i;:::-;9039:3;9035:39;9028:46;;8808:272;8716:364;;;;:::o;9086:377::-;9192:3;9220:39;9253:5;9220:39;:::i;:::-;9275:89;9357:6;9352:3;9275:89;:::i;:::-;9268:96;;9373:52;9418:6;9413:3;9406:4;9399:5;9395:16;9373:52;:::i;:::-;9450:6;9445:3;9441:16;9434:23;;9196:267;9086:377;;;;:::o;9493:845::-;9596:3;9633:5;9627:12;9662:36;9688:9;9662:36;:::i;:::-;9714:89;9796:6;9791:3;9714:89;:::i;:::-;9707:96;;9834:1;9823:9;9819:17;9850:1;9845:137;;;;9996:1;9991:341;;;;9812:520;;9845:137;9929:4;9925:9;9914;9910:25;9905:3;9898:38;9965:6;9960:3;9956:16;9949:23;;9845:137;;9991:341;10058:38;10090:5;10058:38;:::i;:::-;10118:1;10132:154;10146:6;10143:1;10140:13;10132:154;;;10220:7;10214:14;10210:1;10205:3;10201:11;10194:35;10270:1;10261:7;10257:15;10246:26;;10168:4;10165:1;10161:12;10156:17;;10132:154;;;10315:6;10310:3;10306:16;10299:23;;9998:334;;9812:520;;9600:738;;9493:845;;;;:::o;10344:366::-;10486:3;10507:67;10571:2;10566:3;10507:67;:::i;:::-;10500:74;;10583:93;10672:3;10583:93;:::i;:::-;10701:2;10696:3;10692:12;10685:19;;10344:366;;;:::o;10716:::-;10858:3;10879:67;10943:2;10938:3;10879:67;:::i;:::-;10872:74;;10955:93;11044:3;10955:93;:::i;:::-;11073:2;11068:3;11064:12;11057:19;;10716:366;;;:::o;11088:::-;11230:3;11251:67;11315:2;11310:3;11251:67;:::i;:::-;11244:74;;11327:93;11416:3;11327:93;:::i;:::-;11445:2;11440:3;11436:12;11429:19;;11088:366;;;:::o;11460:::-;11602:3;11623:67;11687:2;11682:3;11623:67;:::i;:::-;11616:74;;11699:93;11788:3;11699:93;:::i;:::-;11817:2;11812:3;11808:12;11801:19;;11460:366;;;:::o;11832:::-;11974:3;11995:67;12059:2;12054:3;11995:67;:::i;:::-;11988:74;;12071:93;12160:3;12071:93;:::i;:::-;12189:2;12184:3;12180:12;12173:19;;11832:366;;;:::o;12204:::-;12346:3;12367:67;12431:2;12426:3;12367:67;:::i;:::-;12360:74;;12443:93;12532:3;12443:93;:::i;:::-;12561:2;12556:3;12552:12;12545:19;;12204:366;;;:::o;12576:::-;12718:3;12739:67;12803:2;12798:3;12739:67;:::i;:::-;12732:74;;12815:93;12904:3;12815:93;:::i;:::-;12933:2;12928:3;12924:12;12917:19;;12576:366;;;:::o;12948:::-;13090:3;13111:67;13175:2;13170:3;13111:67;:::i;:::-;13104:74;;13187:93;13276:3;13187:93;:::i;:::-;13305:2;13300:3;13296:12;13289:19;;12948:366;;;:::o;13320:::-;13462:3;13483:67;13547:2;13542:3;13483:67;:::i;:::-;13476:74;;13559:93;13648:3;13559:93;:::i;:::-;13677:2;13672:3;13668:12;13661:19;;13320:366;;;:::o;13692:::-;13834:3;13855:67;13919:2;13914:3;13855:67;:::i;:::-;13848:74;;13931:93;14020:3;13931:93;:::i;:::-;14049:2;14044:3;14040:12;14033:19;;13692:366;;;:::o;14064:::-;14206:3;14227:67;14291:2;14286:3;14227:67;:::i;:::-;14220:74;;14303:93;14392:3;14303:93;:::i;:::-;14421:2;14416:3;14412:12;14405:19;;14064:366;;;:::o;14436:::-;14578:3;14599:67;14663:2;14658:3;14599:67;:::i;:::-;14592:74;;14675:93;14764:3;14675:93;:::i;:::-;14793:2;14788:3;14784:12;14777:19;;14436:366;;;:::o;14808:::-;14950:3;14971:67;15035:2;15030:3;14971:67;:::i;:::-;14964:74;;15047:93;15136:3;15047:93;:::i;:::-;15165:2;15160:3;15156:12;15149:19;;14808:366;;;:::o;15180:::-;15322:3;15343:67;15407:2;15402:3;15343:67;:::i;:::-;15336:74;;15419:93;15508:3;15419:93;:::i;:::-;15537:2;15532:3;15528:12;15521:19;;15180:366;;;:::o;15552:::-;15694:3;15715:67;15779:2;15774:3;15715:67;:::i;:::-;15708:74;;15791:93;15880:3;15791:93;:::i;:::-;15909:2;15904:3;15900:12;15893:19;;15552:366;;;:::o;15924:::-;16066:3;16087:67;16151:2;16146:3;16087:67;:::i;:::-;16080:74;;16163:93;16252:3;16163:93;:::i;:::-;16281:2;16276:3;16272:12;16265:19;;15924:366;;;:::o;16296:::-;16438:3;16459:67;16523:2;16518:3;16459:67;:::i;:::-;16452:74;;16535:93;16624:3;16535:93;:::i;:::-;16653:2;16648:3;16644:12;16637:19;;16296:366;;;:::o;16668:::-;16810:3;16831:67;16895:2;16890:3;16831:67;:::i;:::-;16824:74;;16907:93;16996:3;16907:93;:::i;:::-;17025:2;17020:3;17016:12;17009:19;;16668:366;;;:::o;17040:108::-;17117:24;17135:5;17117:24;:::i;:::-;17112:3;17105:37;17040:108;;:::o;17154:118::-;17241:24;17259:5;17241:24;:::i;:::-;17236:3;17229:37;17154:118;;:::o;17278:589::-;17503:3;17525:95;17616:3;17607:6;17525:95;:::i;:::-;17518:102;;17637:95;17728:3;17719:6;17637:95;:::i;:::-;17630:102;;17749:92;17837:3;17828:6;17749:92;:::i;:::-;17742:99;;17858:3;17851:10;;17278:589;;;;;;:::o;17873:222::-;17966:4;18004:2;17993:9;17989:18;17981:26;;18017:71;18085:1;18074:9;18070:17;18061:6;18017:71;:::i;:::-;17873:222;;;;:::o;18101:640::-;18296:4;18334:3;18323:9;18319:19;18311:27;;18348:71;18416:1;18405:9;18401:17;18392:6;18348:71;:::i;:::-;18429:72;18497:2;18486:9;18482:18;18473:6;18429:72;:::i;:::-;18511;18579:2;18568:9;18564:18;18555:6;18511:72;:::i;:::-;18630:9;18624:4;18620:20;18615:2;18604:9;18600:18;18593:48;18658:76;18729:4;18720:6;18658:76;:::i;:::-;18650:84;;18101:640;;;;;;;:::o;18747:373::-;18890:4;18928:2;18917:9;18913:18;18905:26;;18977:9;18971:4;18967:20;18963:1;18952:9;18948:17;18941:47;19005:108;19108:4;19099:6;19005:108;:::i;:::-;18997:116;;18747:373;;;;:::o;19126:210::-;19213:4;19251:2;19240:9;19236:18;19228:26;;19264:65;19326:1;19315:9;19311:17;19302:6;19264:65;:::i;:::-;19126:210;;;;:::o;19342:313::-;19455:4;19493:2;19482:9;19478:18;19470:26;;19542:9;19536:4;19532:20;19528:1;19517:9;19513:17;19506:47;19570:78;19643:4;19634:6;19570:78;:::i;:::-;19562:86;;19342:313;;;;:::o;19661:419::-;19827:4;19865:2;19854:9;19850:18;19842:26;;19914:9;19908:4;19904:20;19900:1;19889:9;19885:17;19878:47;19942:131;20068:4;19942:131;:::i;:::-;19934:139;;19661:419;;;:::o;20086:::-;20252:4;20290:2;20279:9;20275:18;20267:26;;20339:9;20333:4;20329:20;20325:1;20314:9;20310:17;20303:47;20367:131;20493:4;20367:131;:::i;:::-;20359:139;;20086:419;;;:::o;20511:::-;20677:4;20715:2;20704:9;20700:18;20692:26;;20764:9;20758:4;20754:20;20750:1;20739:9;20735:17;20728:47;20792:131;20918:4;20792:131;:::i;:::-;20784:139;;20511:419;;;:::o;20936:::-;21102:4;21140:2;21129:9;21125:18;21117:26;;21189:9;21183:4;21179:20;21175:1;21164:9;21160:17;21153:47;21217:131;21343:4;21217:131;:::i;:::-;21209:139;;20936:419;;;:::o;21361:::-;21527:4;21565:2;21554:9;21550:18;21542:26;;21614:9;21608:4;21604:20;21600:1;21589:9;21585:17;21578:47;21642:131;21768:4;21642:131;:::i;:::-;21634:139;;21361:419;;;:::o;21786:::-;21952:4;21990:2;21979:9;21975:18;21967:26;;22039:9;22033:4;22029:20;22025:1;22014:9;22010:17;22003:47;22067:131;22193:4;22067:131;:::i;:::-;22059:139;;21786:419;;;:::o;22211:::-;22377:4;22415:2;22404:9;22400:18;22392:26;;22464:9;22458:4;22454:20;22450:1;22439:9;22435:17;22428:47;22492:131;22618:4;22492:131;:::i;:::-;22484:139;;22211:419;;;:::o;22636:::-;22802:4;22840:2;22829:9;22825:18;22817:26;;22889:9;22883:4;22879:20;22875:1;22864:9;22860:17;22853:47;22917:131;23043:4;22917:131;:::i;:::-;22909:139;;22636:419;;;:::o;23061:::-;23227:4;23265:2;23254:9;23250:18;23242:26;;23314:9;23308:4;23304:20;23300:1;23289:9;23285:17;23278:47;23342:131;23468:4;23342:131;:::i;:::-;23334:139;;23061:419;;;:::o;23486:::-;23652:4;23690:2;23679:9;23675:18;23667:26;;23739:9;23733:4;23729:20;23725:1;23714:9;23710:17;23703:47;23767:131;23893:4;23767:131;:::i;:::-;23759:139;;23486:419;;;:::o;23911:::-;24077:4;24115:2;24104:9;24100:18;24092:26;;24164:9;24158:4;24154:20;24150:1;24139:9;24135:17;24128:47;24192:131;24318:4;24192:131;:::i;:::-;24184:139;;23911:419;;;:::o;24336:::-;24502:4;24540:2;24529:9;24525:18;24517:26;;24589:9;24583:4;24579:20;24575:1;24564:9;24560:17;24553:47;24617:131;24743:4;24617:131;:::i;:::-;24609:139;;24336:419;;;:::o;24761:::-;24927:4;24965:2;24954:9;24950:18;24942:26;;25014:9;25008:4;25004:20;25000:1;24989:9;24985:17;24978:47;25042:131;25168:4;25042:131;:::i;:::-;25034:139;;24761:419;;;:::o;25186:::-;25352:4;25390:2;25379:9;25375:18;25367:26;;25439:9;25433:4;25429:20;25425:1;25414:9;25410:17;25403:47;25467:131;25593:4;25467:131;:::i;:::-;25459:139;;25186:419;;;:::o;25611:::-;25777:4;25815:2;25804:9;25800:18;25792:26;;25864:9;25858:4;25854:20;25850:1;25839:9;25835:17;25828:47;25892:131;26018:4;25892:131;:::i;:::-;25884:139;;25611:419;;;:::o;26036:::-;26202:4;26240:2;26229:9;26225:18;26217:26;;26289:9;26283:4;26279:20;26275:1;26264:9;26260:17;26253:47;26317:131;26443:4;26317:131;:::i;:::-;26309:139;;26036:419;;;:::o;26461:::-;26627:4;26665:2;26654:9;26650:18;26642:26;;26714:9;26708:4;26704:20;26700:1;26689:9;26685:17;26678:47;26742:131;26868:4;26742:131;:::i;:::-;26734:139;;26461:419;;;:::o;26886:::-;27052:4;27090:2;27079:9;27075:18;27067:26;;27139:9;27133:4;27129:20;27125:1;27114:9;27110:17;27103:47;27167:131;27293:4;27167:131;:::i;:::-;27159:139;;26886:419;;;:::o;27311:222::-;27404:4;27442:2;27431:9;27427:18;27419:26;;27455:71;27523:1;27512:9;27508:17;27499:6;27455:71;:::i;:::-;27311:222;;;;:::o;27539:129::-;27573:6;27600:20;;:::i;:::-;27590:30;;27629:33;27657:4;27649:6;27629:33;:::i;:::-;27539:129;;;:::o;27674:75::-;27707:6;27740:2;27734:9;27724:19;;27674:75;:::o;27755:307::-;27816:4;27906:18;27898:6;27895:30;27892:56;;;27928:18;;:::i;:::-;27892:56;27966:29;27988:6;27966:29;:::i;:::-;27958:37;;28050:4;28044;28040:15;28032:23;;27755:307;;;:::o;28068:308::-;28130:4;28220:18;28212:6;28209:30;28206:56;;;28242:18;;:::i;:::-;28206:56;28280:29;28302:6;28280:29;:::i;:::-;28272:37;;28364:4;28358;28354:15;28346:23;;28068:308;;;:::o;28382:132::-;28449:4;28472:3;28464:11;;28502:4;28497:3;28493:14;28485:22;;28382:132;;;:::o;28520:141::-;28569:4;28592:3;28584:11;;28615:3;28612:1;28605:14;28649:4;28646:1;28636:18;28628:26;;28520:141;;;:::o;28667:114::-;28734:6;28768:5;28762:12;28752:22;;28667:114;;;:::o;28787:98::-;28838:6;28872:5;28866:12;28856:22;;28787:98;;;:::o;28891:99::-;28943:6;28977:5;28971:12;28961:22;;28891:99;;;:::o;28996:113::-;29066:4;29098;29093:3;29089:14;29081:22;;28996:113;;;:::o;29115:184::-;29214:11;29248:6;29243:3;29236:19;29288:4;29283:3;29279:14;29264:29;;29115:184;;;;:::o;29305:168::-;29388:11;29422:6;29417:3;29410:19;29462:4;29457:3;29453:14;29438:29;;29305:168;;;;:::o;29479:169::-;29563:11;29597:6;29592:3;29585:19;29637:4;29632:3;29628:14;29613:29;;29479:169;;;;:::o;29654:148::-;29756:11;29793:3;29778:18;;29654:148;;;;:::o;29808:305::-;29848:3;29867:20;29885:1;29867:20;:::i;:::-;29862:25;;29901:20;29919:1;29901:20;:::i;:::-;29896:25;;30055:1;29987:66;29983:74;29980:1;29977:81;29974:107;;;30061:18;;:::i;:::-;29974:107;30105:1;30102;30098:9;30091:16;;29808:305;;;;:::o;30119:185::-;30159:1;30176:20;30194:1;30176:20;:::i;:::-;30171:25;;30210:20;30228:1;30210:20;:::i;:::-;30205:25;;30249:1;30239:35;;30254:18;;:::i;:::-;30239:35;30296:1;30293;30289:9;30284:14;;30119:185;;;;:::o;30310:348::-;30350:7;30373:20;30391:1;30373:20;:::i;:::-;30368:25;;30407:20;30425:1;30407:20;:::i;:::-;30402:25;;30595:1;30527:66;30523:74;30520:1;30517:81;30512:1;30505:9;30498:17;30494:105;30491:131;;;30602:18;;:::i;:::-;30491:131;30650:1;30647;30643:9;30632:20;;30310:348;;;;:::o;30664:191::-;30704:4;30724:20;30742:1;30724:20;:::i;:::-;30719:25;;30758:20;30776:1;30758:20;:::i;:::-;30753:25;;30797:1;30794;30791:8;30788:34;;;30802:18;;:::i;:::-;30788:34;30847:1;30844;30840:9;30832:17;;30664:191;;;;:::o;30861:96::-;30898:7;30927:24;30945:5;30927:24;:::i;:::-;30916:35;;30861:96;;;:::o;30963:90::-;30997:7;31040:5;31033:13;31026:21;31015:32;;30963:90;;;:::o;31059:149::-;31095:7;31135:66;31128:5;31124:78;31113:89;;31059:149;;;:::o;31214:126::-;31251:7;31291:42;31284:5;31280:54;31269:65;;31214:126;;;:::o;31346:77::-;31383:7;31412:5;31401:16;;31346:77;;;:::o;31429:154::-;31513:6;31508:3;31503;31490:30;31575:1;31566:6;31561:3;31557:16;31550:27;31429:154;;;:::o;31589:307::-;31657:1;31667:113;31681:6;31678:1;31675:13;31667:113;;;31766:1;31761:3;31757:11;31751:18;31747:1;31742:3;31738:11;31731:39;31703:2;31700:1;31696:10;31691:15;;31667:113;;;31798:6;31795:1;31792:13;31789:101;;;31878:1;31869:6;31864:3;31860:16;31853:27;31789:101;31638:258;31589:307;;;:::o;31902:320::-;31946:6;31983:1;31977:4;31973:12;31963:22;;32030:1;32024:4;32020:12;32051:18;32041:81;;32107:4;32099:6;32095:17;32085:27;;32041:81;32169:2;32161:6;32158:14;32138:18;32135:38;32132:84;;;32188:18;;:::i;:::-;32132:84;31953:269;31902:320;;;:::o;32228:281::-;32311:27;32333:4;32311:27;:::i;:::-;32303:6;32299:40;32441:6;32429:10;32426:22;32405:18;32393:10;32390:34;32387:62;32384:88;;;32452:18;;:::i;:::-;32384:88;32492:10;32488:2;32481:22;32271:238;32228:281;;:::o;32515:233::-;32554:3;32577:24;32595:5;32577:24;:::i;:::-;32568:33;;32623:66;32616:5;32613:77;32610:103;;;32693:18;;:::i;:::-;32610:103;32740:1;32733:5;32729:13;32722:20;;32515:233;;;:::o;32754:176::-;32786:1;32803:20;32821:1;32803:20;:::i;:::-;32798:25;;32837:20;32855:1;32837:20;:::i;:::-;32832:25;;32876:1;32866:35;;32881:18;;:::i;:::-;32866:35;32922:1;32919;32915:9;32910:14;;32754:176;;;;:::o;32936:180::-;32984:77;32981:1;32974:88;33081:4;33078:1;33071:15;33105:4;33102:1;33095:15;33122:180;33170:77;33167:1;33160:88;33267:4;33264:1;33257:15;33291:4;33288:1;33281:15;33308:180;33356:77;33353:1;33346:88;33453:4;33450:1;33443:15;33477:4;33474:1;33467:15;33494:180;33542:77;33539:1;33532:88;33639:4;33636:1;33629:15;33663:4;33660:1;33653:15;33680:180;33728:77;33725:1;33718:88;33825:4;33822:1;33815:15;33849:4;33846:1;33839:15;33866:180;33914:77;33911:1;33904:88;34011:4;34008:1;34001:15;34035:4;34032:1;34025:15;34052:117;34161:1;34158;34151:12;34175:117;34284:1;34281;34274:12;34298:117;34407:1;34404;34397:12;34421:117;34530:1;34527;34520:12;34544:102;34585:6;34636:2;34632:7;34627:2;34620:5;34616:14;34612:28;34602:38;;34544:102;;;:::o;34652:230::-;34792:34;34788:1;34780:6;34776:14;34769:58;34861:13;34856:2;34848:6;34844:15;34837:38;34652:230;:::o;34888:237::-;35028:34;35024:1;35016:6;35012:14;35005:58;35097:20;35092:2;35084:6;35080:15;35073:45;34888:237;:::o;35131:225::-;35271:34;35267:1;35259:6;35255:14;35248:58;35340:8;35335:2;35327:6;35323:15;35316:33;35131:225;:::o;35362:178::-;35502:30;35498:1;35490:6;35486:14;35479:54;35362:178;:::o;35546:223::-;35686:34;35682:1;35674:6;35670:14;35663:58;35755:6;35750:2;35742:6;35738:15;35731:31;35546:223;:::o;35775:175::-;35915:27;35911:1;35903:6;35899:14;35892:51;35775:175;:::o;35956:231::-;36096:34;36092:1;36084:6;36080:14;36073:58;36165:14;36160:2;36152:6;36148:15;36141:39;35956:231;:::o;36193:243::-;36333:34;36329:1;36321:6;36317:14;36310:58;36402:26;36397:2;36389:6;36385:15;36378:51;36193:243;:::o;36442:229::-;36582:34;36578:1;36570:6;36566:14;36559:58;36651:12;36646:2;36638:6;36634:15;36627:37;36442:229;:::o;36677:228::-;36817:34;36813:1;36805:6;36801:14;36794:58;36886:11;36881:2;36873:6;36869:15;36862:36;36677:228;:::o;36911:182::-;37051:34;37047:1;37039:6;37035:14;37028:58;36911:182;:::o;37099:231::-;37239:34;37235:1;37227:6;37223:14;37216:58;37308:14;37303:2;37295:6;37291:15;37284:39;37099:231;:::o;37336:182::-;37476:34;37472:1;37464:6;37460:14;37453:58;37336:182;:::o;37524:228::-;37664:34;37660:1;37652:6;37648:14;37641:58;37733:11;37728:2;37720:6;37716:15;37709:36;37524:228;:::o;37758:234::-;37898:34;37894:1;37886:6;37882:14;37875:58;37967:17;37962:2;37954:6;37950:15;37943:42;37758:234;:::o;37998:220::-;38138:34;38134:1;38126:6;38122:14;38115:58;38207:3;38202:2;38194:6;38190:15;38183:28;37998:220;:::o;38224:236::-;38364:34;38360:1;38352:6;38348:14;38341:58;38433:19;38428:2;38420:6;38416:15;38409:44;38224:236;:::o;38466:231::-;38606:34;38602:1;38594:6;38590:14;38583:58;38675:14;38670:2;38662:6;38658:15;38651:39;38466:231;:::o;38703:122::-;38776:24;38794:5;38776:24;:::i;:::-;38769:5;38766:35;38756:63;;38815:1;38812;38805:12;38756:63;38703:122;:::o;38831:116::-;38901:21;38916:5;38901:21;:::i;:::-;38894:5;38891:32;38881:60;;38937:1;38934;38927:12;38881:60;38831:116;:::o;38953:120::-;39025:23;39042:5;39025:23;:::i;:::-;39018:5;39015:34;39005:62;;39063:1;39060;39053:12;39005:62;38953:120;:::o;39079:122::-;39152:24;39170:5;39152:24;:::i;:::-;39145:5;39142:35;39132:63;;39191:1;39188;39181:12;39132:63;39079:122;:::o

Swarm Source

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