ETH Price: $3,458.11 (+0.50%)
Gas: 6 Gwei

Token

Dommies (DOM)
 

Overview

Max Total Supply

1,094 DOM

Holders

261

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DOM
0x0d8207b238c6f79d61d0367ffdf1293ae42bbda3
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:
Dommies

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

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

contract Dommies is ERC721Enumerable, Ownable {
    uint public constant MAX_TOKENS = 10000;
    uint public constant MAX_DOMMIES_PURCHASE = 20;
    uint public mintPrice = 69 * 10 ** 15; // 0.069 ETH    
    bool public isSalesActive = false;
    string _baseTokenURI;
    string _contractURI;

    //LFG
    constructor(string memory baseURI, string memory sContractURI, uint iPrice) ERC721("Dommies", "DOM")  {
        setBaseURI(baseURI);
        setContractURI(sContractURI);
        setMintPrice(iPrice);
    }

    function mintMyNFT(address _to, uint _count) public payable {
        uint256 totalTokens = totalSupply();
        require(isSalesActive, "Dommies Sale has not started!");
        require((totalTokens + _count) < (MAX_TOKENS + 1), "Sorry you tried to mint too many Dommies!");
        require(totalTokens < MAX_TOKENS, "No more Dommies left!");
        require(_count < (MAX_DOMMIES_PURCHASE + 1), "Leave some Dommies for others!");
        require(msg.value >= (mintPrice * _count), "Need more ETH to unwrap the Dommies!");

        uint mintTime = block.timestamp;
        for(uint i = 0; i < _count; i++){
            uint256 mintIndex = totalSupply();
            _safeMint(_to, mintIndex);
            emit TokenMinted(msg.sender, mintIndex, mintTime);
        }
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    // Events
    event TokenMinted(address owner, uint256 tokenID, uint mintTime);

    // onlyOwner Functions //
    function setSaleState(bool newState) public onlyOwner {
        isSalesActive = newState;
    }

    function setMintPrice(uint newMintPrice) public onlyOwner {
        mintPrice = newMintPrice;
    }

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

    function setContractURI(string memory newContractURI) public onlyOwner {
        _contractURI = newContractURI;
    }
    
    function withdrawAll() public 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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 4 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 5 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(to).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 6 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 7 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 8 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 9 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 10 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 11 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":"baseURI","type":"string"},{"internalType":"string","name":"sContractURI","type":"string"},{"internalType":"uint256","name":"iPrice","type":"uint256"}],"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":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mintTime","type":"uint256"}],"name":"TokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_DOMMIES_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isSalesActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintMyNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266f5232269808000600b556000600c60006101000a81548160ff0219169083151502179055503480156200003757600080fd5b506040516200492d3803806200492d83398181016040528101906200005d919062000579565b6040518060400160405280600781526020017f446f6d6d696573000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f444f4d00000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e192919062000440565b508060019080519060200190620000fa92919062000440565b5050506200011d620001116200015960201b60201c565b6200016160201b60201c565b6200012e836200022760201b60201c565b6200013f82620002d260201b60201c565b62000150816200037d60201b60201c565b50505062000818565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002376200015960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200025d6200041660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ad9062000628565b60405180910390fd5b80600d9080519060200190620002ce92919062000440565b5050565b620002e26200015960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003086200041660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000361576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003589062000628565b60405180910390fd5b80600e90805190602001906200037992919062000440565b5050565b6200038d6200015960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003b36200041660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200040c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004039062000628565b60405180910390fd5b80600b8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200044e90620006fa565b90600052602060002090601f016020900481019282620004725760008555620004be565b82601f106200048d57805160ff1916838001178555620004be565b82800160010185558215620004be579182015b82811115620004bd578251825591602001919060010190620004a0565b5b509050620004cd9190620004d1565b5090565b5b80821115620004ec576000816000905550600101620004d2565b5090565b600062000507620005018462000673565b6200064a565b9050828152602081018484840111156200052057600080fd5b6200052d848285620006c4565b509392505050565b600082601f8301126200054757600080fd5b815162000559848260208601620004f0565b91505092915050565b6000815190506200057381620007fe565b92915050565b6000806000606084860312156200058f57600080fd5b600084015167ffffffffffffffff811115620005aa57600080fd5b620005b88682870162000535565b935050602084015167ffffffffffffffff811115620005d657600080fd5b620005e48682870162000535565b9250506040620005f78682870162000562565b9150509250925092565b600062000610602083620006a9565b91506200061d82620007d5565b602082019050919050565b60006020820190508181036000830152620006438162000601565b9050919050565b60006200065662000669565b905062000664828262000730565b919050565b6000604051905090565b600067ffffffffffffffff82111562000691576200069062000795565b5b6200069c82620007c4565b9050602081019050919050565b600082825260208201905092915050565b6000819050919050565b60005b83811015620006e4578082015181840152602081019050620006c7565b83811115620006f4576000848401525b50505050565b600060028204905060018216806200071357607f821691505b602082108114156200072a576200072962000766565b5b50919050565b6200073b82620007c4565b810181811067ffffffffffffffff821117156200075d576200075c62000795565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200080981620006ba565b81146200081557600080fd5b50565b61410580620008286000396000f3fe6080604052600436106101cd5760003560e01c806372d23ba1116100f7578063c4e3709511610095578063e985e9c511610064578063e985e9c514610667578063f2fde38b146106a4578063f47c84c5146106cd578063f4a0a528146106f8576101cd565b8063c4e37095146105ab578063c87b56dd146105d4578063daa81cdd14610611578063e8a3d4851461063c576101cd565b8063938e3d7b116100d1578063938e3d7b1461050557806395d89b411461052e578063a22cb46514610559578063b88d4fde14610582576101cd565b806372d23ba1146104a7578063853828b6146104c35780638da5cb5b146104da576101cd565b806342842e0e1161016f578063638248391161013e57806363824839146103fd5780636817c76c1461042857806370a0823114610453578063715018a614610490576101cd565b806342842e0e146103315780634f6ccce71461035a57806355f804b3146103975780636352211e146103c0576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632f745c59146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612d7a565b610721565b60405161020691906132ed565b60405180910390f35b34801561021b57600080fd5b5061022461079b565b6040516102319190613308565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612e0d565b61082d565b60405161026e919061324f565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612d15565b6108b2565b005b3480156102ac57600080fd5b506102b56109ca565b6040516102c2919061360a565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612c0f565b6109d7565b005b34801561030057600080fd5b5061031b60048036038101906103169190612d15565b610a37565b604051610328919061360a565b60405180910390f35b34801561033d57600080fd5b5061035860048036038101906103539190612c0f565b610adc565b005b34801561036657600080fd5b50610381600480360381019061037c9190612e0d565b610afc565b60405161038e919061360a565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190612dcc565b610b93565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190612e0d565b610c29565b6040516103f4919061324f565b60405180910390f35b34801561040957600080fd5b50610412610cdb565b60405161041f919061360a565b60405180910390f35b34801561043457600080fd5b5061043d610ce0565b60405161044a919061360a565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190612baa565b610ce6565b604051610487919061360a565b60405180910390f35b34801561049c57600080fd5b506104a5610d9e565b005b6104c160048036038101906104bc9190612d15565b610e26565b005b3480156104cf57600080fd5b506104d861103b565b005b3480156104e657600080fd5b506104ef611106565b6040516104fc919061324f565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190612dcc565b611130565b005b34801561053a57600080fd5b506105436111c6565b6040516105509190613308565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b9190612cd9565b611258565b005b34801561058e57600080fd5b506105a960048036038101906105a49190612c5e565b6113d9565b005b3480156105b757600080fd5b506105d260048036038101906105cd9190612d51565b61143b565b005b3480156105e057600080fd5b506105fb60048036038101906105f69190612e0d565b6114d4565b6040516106089190613308565b60405180910390f35b34801561061d57600080fd5b5061062661157b565b60405161063391906132ed565b60405180910390f35b34801561064857600080fd5b5061065161158e565b60405161065e9190613308565b60405180910390f35b34801561067357600080fd5b5061068e60048036038101906106899190612bd3565b611620565b60405161069b91906132ed565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c69190612baa565b6116b4565b005b3480156106d957600080fd5b506106e26117ac565b6040516106ef919061360a565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a9190612e0d565b6117b2565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610794575061079382611838565b5b9050919050565b6060600080546107aa906138ba565b80601f01602080910402602001604051908101604052809291908181526020018280546107d6906138ba565b80156108235780601f106107f857610100808354040283529160200191610823565b820191906000526020600020905b81548152906001019060200180831161080657829003601f168201915b5050505050905090565b60006108388261191a565b610877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086e906134ea565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108bd82610c29565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561092e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109259061356a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661094d611986565b73ffffffffffffffffffffffffffffffffffffffff16148061097c575061097b81610976611986565b611620565b5b6109bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b29061342a565b60405180910390fd5b6109c5838361198e565b505050565b6000600880549050905090565b6109e86109e2611986565b82611a47565b610a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1e9061358a565b60405180910390fd5b610a32838383611b25565b505050565b6000610a4283610ce6565b8210610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a9061332a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610af7838383604051806020016040528060008152506113d9565b505050565b6000610b066109ca565b8210610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e906135aa565b60405180910390fd5b60088281548110610b81577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610b9b611986565b73ffffffffffffffffffffffffffffffffffffffff16610bb9611106565b73ffffffffffffffffffffffffffffffffffffffff1614610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c069061350a565b60405180910390fd5b80600d9080519060200190610c259291906129ce565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc99061348a565b60405180910390fd5b80915050919050565b601481565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e9061346a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610da6611986565b73ffffffffffffffffffffffffffffffffffffffff16610dc4611106565b73ffffffffffffffffffffffffffffffffffffffff1614610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e119061350a565b60405180910390fd5b610e246000611d81565b565b6000610e306109ca565b9050600c60009054906101000a900460ff16610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e78906135ea565b60405180910390fd5b6001612710610e9091906136ef565b8282610e9c91906136ef565b10610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed3906135ca565b60405180910390fd5b6127108110610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f179061340a565b60405180910390fd5b60016014610f2e91906136ef565b8210610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f66906134ca565b60405180910390fd5b81600b54610f7d9190613776565b341015610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb69061344a565b60405180910390fd5b600042905060005b83811015611034576000610fd96109ca565b9050610fe58682611e47565b7f96234cb3d6c373a1aaa06497a540bc166d4b0359243a088eaf95e21d7253d0be338285604051611018939291906132b6565b60405180910390a150808061102c9061391d565b915050610fc7565b5050505050565b611043611986565b73ffffffffffffffffffffffffffffffffffffffff16611061611106565b73ffffffffffffffffffffffffffffffffffffffff16146110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae9061350a565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611102573d6000803e3d6000fd5b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611138611986565b73ffffffffffffffffffffffffffffffffffffffff16611156611106565b73ffffffffffffffffffffffffffffffffffffffff16146111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a39061350a565b60405180910390fd5b80600e90805190602001906111c29291906129ce565b5050565b6060600180546111d5906138ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611201906138ba565b801561124e5780601f106112235761010080835404028352916020019161124e565b820191906000526020600020905b81548152906001019060200180831161123157829003601f168201915b5050505050905090565b611260611986565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c5906133ca565b60405180910390fd5b80600560006112db611986565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611388611986565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113cd91906132ed565b60405180910390a35050565b6113ea6113e4611986565b83611a47565b611429576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114209061358a565b60405180910390fd5b61143584848484611e65565b50505050565b611443611986565b73ffffffffffffffffffffffffffffffffffffffff16611461611106565b73ffffffffffffffffffffffffffffffffffffffff16146114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae9061350a565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b60606114df8261191a565b61151e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115159061354a565b60405180910390fd5b6000611528611ec1565b905060008151116115485760405180602001604052806000815250611573565b8061155284611f53565b60405160200161156392919061322b565b6040516020818303038152906040525b915050919050565b600c60009054906101000a900460ff1681565b6060600e805461159d906138ba565b80601f01602080910402602001604051908101604052809291908181526020018280546115c9906138ba565b80156116165780601f106115eb57610100808354040283529160200191611616565b820191906000526020600020905b8154815290600101906020018083116115f957829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116bc611986565b73ffffffffffffffffffffffffffffffffffffffff166116da611106565b73ffffffffffffffffffffffffffffffffffffffff1614611730576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117279061350a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117979061336a565b60405180910390fd5b6117a981611d81565b50565b61271081565b6117ba611986565b73ffffffffffffffffffffffffffffffffffffffff166117d8611106565b73ffffffffffffffffffffffffffffffffffffffff161461182e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118259061350a565b60405180910390fd5b80600b8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061190357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611913575061191282612100565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a0183610c29565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a528261191a565b611a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a88906133ea565b60405180910390fd5b6000611a9c83610c29565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b0b57508373ffffffffffffffffffffffffffffffffffffffff16611af38461082d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b1c5750611b1b8185611620565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b4582610c29565b73ffffffffffffffffffffffffffffffffffffffff1614611b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b929061352a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c02906133aa565b60405180910390fd5b611c1683838361216a565b611c2160008261198e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c7191906137d0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cc891906136ef565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e6182826040518060200160405280600081525061227e565b5050565b611e70848484611b25565b611e7c848484846122d9565b611ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb29061334a565b60405180910390fd5b50505050565b6060600d8054611ed0906138ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611efc906138ba565b8015611f495780601f10611f1e57610100808354040283529160200191611f49565b820191906000526020600020905b815481529060010190602001808311611f2c57829003601f168201915b5050505050905090565b60606000821415611f9b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120fb565b600082905060005b60008214611fcd578080611fb69061391d565b915050600a82611fc69190613745565b9150611fa3565b60008167ffffffffffffffff81111561200f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120415781602001600182028036833780820191505090505b5090505b600085146120f45760018261205a91906137d0565b9150600a856120699190613966565b603061207591906136ef565b60f81b8183815181106120b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120ed9190613745565b9450612045565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612175838383612470565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121b8576121b381612475565b6121f7565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146121f6576121f583826124be565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561223a576122358161262b565b612279565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461227857612277828261276e565b5b5b505050565b61228883836127ed565b61229560008484846122d9565b6122d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cb9061334a565b60405180910390fd5b505050565b60006122fa8473ffffffffffffffffffffffffffffffffffffffff166129bb565b15612463578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612323611986565b8786866040518563ffffffff1660e01b8152600401612345949392919061326a565b602060405180830381600087803b15801561235f57600080fd5b505af192505050801561239057506040513d601f19601f8201168201806040525081019061238d9190612da3565b60015b612413573d80600081146123c0576040519150601f19603f3d011682016040523d82523d6000602084013e6123c5565b606091505b5060008151141561240b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124029061334a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612468565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016124cb84610ce6565b6124d591906137d0565b90506000600760008481526020019081526020016000205490508181146125ba576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061263f91906137d0565b9050600060096000848152602001908152602001600020549050600060088381548110612695577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106126dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612752577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061277983610ce6565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561285d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612854906134aa565b60405180910390fd5b6128668161191a565b156128a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289d9061338a565b60405180910390fd5b6128b26000838361216a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461290291906136ef565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546129da906138ba565b90600052602060002090601f0160209004810192826129fc5760008555612a43565b82601f10612a1557805160ff1916838001178555612a43565b82800160010185558215612a43579182015b82811115612a42578251825591602001919060010190612a27565b5b509050612a509190612a54565b5090565b5b80821115612a6d576000816000905550600101612a55565b5090565b6000612a84612a7f8461364a565b613625565b905082815260208101848484011115612a9c57600080fd5b612aa7848285613878565b509392505050565b6000612ac2612abd8461367b565b613625565b905082815260208101848484011115612ada57600080fd5b612ae5848285613878565b509392505050565b600081359050612afc81614073565b92915050565b600081359050612b118161408a565b92915050565b600081359050612b26816140a1565b92915050565b600081519050612b3b816140a1565b92915050565b600082601f830112612b5257600080fd5b8135612b62848260208601612a71565b91505092915050565b600082601f830112612b7c57600080fd5b8135612b8c848260208601612aaf565b91505092915050565b600081359050612ba4816140b8565b92915050565b600060208284031215612bbc57600080fd5b6000612bca84828501612aed565b91505092915050565b60008060408385031215612be657600080fd5b6000612bf485828601612aed565b9250506020612c0585828601612aed565b9150509250929050565b600080600060608486031215612c2457600080fd5b6000612c3286828701612aed565b9350506020612c4386828701612aed565b9250506040612c5486828701612b95565b9150509250925092565b60008060008060808587031215612c7457600080fd5b6000612c8287828801612aed565b9450506020612c9387828801612aed565b9350506040612ca487828801612b95565b925050606085013567ffffffffffffffff811115612cc157600080fd5b612ccd87828801612b41565b91505092959194509250565b60008060408385031215612cec57600080fd5b6000612cfa85828601612aed565b9250506020612d0b85828601612b02565b9150509250929050565b60008060408385031215612d2857600080fd5b6000612d3685828601612aed565b9250506020612d4785828601612b95565b9150509250929050565b600060208284031215612d6357600080fd5b6000612d7184828501612b02565b91505092915050565b600060208284031215612d8c57600080fd5b6000612d9a84828501612b17565b91505092915050565b600060208284031215612db557600080fd5b6000612dc384828501612b2c565b91505092915050565b600060208284031215612dde57600080fd5b600082013567ffffffffffffffff811115612df857600080fd5b612e0484828501612b6b565b91505092915050565b600060208284031215612e1f57600080fd5b6000612e2d84828501612b95565b91505092915050565b612e3f81613804565b82525050565b612e4e81613816565b82525050565b6000612e5f826136ac565b612e6981856136c2565b9350612e79818560208601613887565b612e8281613a53565b840191505092915050565b6000612e98826136b7565b612ea281856136d3565b9350612eb2818560208601613887565b612ebb81613a53565b840191505092915050565b6000612ed1826136b7565b612edb81856136e4565b9350612eeb818560208601613887565b80840191505092915050565b6000612f04602b836136d3565b9150612f0f82613a64565b604082019050919050565b6000612f276032836136d3565b9150612f3282613ab3565b604082019050919050565b6000612f4a6026836136d3565b9150612f5582613b02565b604082019050919050565b6000612f6d601c836136d3565b9150612f7882613b51565b602082019050919050565b6000612f906024836136d3565b9150612f9b82613b7a565b604082019050919050565b6000612fb36019836136d3565b9150612fbe82613bc9565b602082019050919050565b6000612fd6602c836136d3565b9150612fe182613bf2565b604082019050919050565b6000612ff96015836136d3565b915061300482613c41565b602082019050919050565b600061301c6038836136d3565b915061302782613c6a565b604082019050919050565b600061303f6024836136d3565b915061304a82613cb9565b604082019050919050565b6000613062602a836136d3565b915061306d82613d08565b604082019050919050565b60006130856029836136d3565b915061309082613d57565b604082019050919050565b60006130a86020836136d3565b91506130b382613da6565b602082019050919050565b60006130cb601e836136d3565b91506130d682613dcf565b602082019050919050565b60006130ee602c836136d3565b91506130f982613df8565b604082019050919050565b60006131116020836136d3565b915061311c82613e47565b602082019050919050565b60006131346029836136d3565b915061313f82613e70565b604082019050919050565b6000613157602f836136d3565b915061316282613ebf565b604082019050919050565b600061317a6021836136d3565b915061318582613f0e565b604082019050919050565b600061319d6031836136d3565b91506131a882613f5d565b604082019050919050565b60006131c0602c836136d3565b91506131cb82613fac565b604082019050919050565b60006131e36029836136d3565b91506131ee82613ffb565b604082019050919050565b6000613206601d836136d3565b91506132118261404a565b602082019050919050565b6132258161386e565b82525050565b60006132378285612ec6565b91506132438284612ec6565b91508190509392505050565b60006020820190506132646000830184612e36565b92915050565b600060808201905061327f6000830187612e36565b61328c6020830186612e36565b613299604083018561321c565b81810360608301526132ab8184612e54565b905095945050505050565b60006060820190506132cb6000830186612e36565b6132d8602083018561321c565b6132e5604083018461321c565b949350505050565b60006020820190506133026000830184612e45565b92915050565b600060208201905081810360008301526133228184612e8d565b905092915050565b6000602082019050818103600083015261334381612ef7565b9050919050565b6000602082019050818103600083015261336381612f1a565b9050919050565b6000602082019050818103600083015261338381612f3d565b9050919050565b600060208201905081810360008301526133a381612f60565b9050919050565b600060208201905081810360008301526133c381612f83565b9050919050565b600060208201905081810360008301526133e381612fa6565b9050919050565b6000602082019050818103600083015261340381612fc9565b9050919050565b6000602082019050818103600083015261342381612fec565b9050919050565b600060208201905081810360008301526134438161300f565b9050919050565b6000602082019050818103600083015261346381613032565b9050919050565b6000602082019050818103600083015261348381613055565b9050919050565b600060208201905081810360008301526134a381613078565b9050919050565b600060208201905081810360008301526134c38161309b565b9050919050565b600060208201905081810360008301526134e3816130be565b9050919050565b60006020820190508181036000830152613503816130e1565b9050919050565b6000602082019050818103600083015261352381613104565b9050919050565b6000602082019050818103600083015261354381613127565b9050919050565b600060208201905081810360008301526135638161314a565b9050919050565b600060208201905081810360008301526135838161316d565b9050919050565b600060208201905081810360008301526135a381613190565b9050919050565b600060208201905081810360008301526135c3816131b3565b9050919050565b600060208201905081810360008301526135e3816131d6565b9050919050565b60006020820190508181036000830152613603816131f9565b9050919050565b600060208201905061361f600083018461321c565b92915050565b600061362f613640565b905061363b82826138ec565b919050565b6000604051905090565b600067ffffffffffffffff82111561366557613664613a24565b5b61366e82613a53565b9050602081019050919050565b600067ffffffffffffffff82111561369657613695613a24565b5b61369f82613a53565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136fa8261386e565b91506137058361386e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561373a57613739613997565b5b828201905092915050565b60006137508261386e565b915061375b8361386e565b92508261376b5761376a6139c6565b5b828204905092915050565b60006137818261386e565b915061378c8361386e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137c5576137c4613997565b5b828202905092915050565b60006137db8261386e565b91506137e68361386e565b9250828210156137f9576137f8613997565b5b828203905092915050565b600061380f8261384e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138a557808201518184015260208101905061388a565b838111156138b4576000848401525b50505050565b600060028204905060018216806138d257607f821691505b602082108114156138e6576138e56139f5565b5b50919050565b6138f582613a53565b810181811067ffffffffffffffff8211171561391457613913613a24565b5b80604052505050565b60006139288261386e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561395b5761395a613997565b5b600182019050919050565b60006139718261386e565b915061397c8361386e565b92508261398c5761398b6139c6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726520446f6d6d696573206c656674210000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e656564206d6f72652045544820746f20756e777261702074686520446f6d6d60008201527f6965732100000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4c6561766520736f6d6520446f6d6d69657320666f72206f7468657273210000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f536f72727920796f7520747269656420746f206d696e7420746f6f206d616e7960008201527f20446f6d6d696573210000000000000000000000000000000000000000000000602082015250565b7f446f6d6d6965732053616c6520686173206e6f74207374617274656421000000600082015250565b61407c81613804565b811461408757600080fd5b50565b61409381613816565b811461409e57600080fd5b50565b6140aa81613822565b81146140b557600080fd5b50565b6140c18161386e565b81146140cc57600080fd5b5056fea26469706673582212204ec6b7d3a7a2479653355c0fe3f5e078de10736267a2440cd04bd33805e8b50464736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000008700cc75770000000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f6170692e646f6d6d6965732e696f2f646f6d6d6965732f00000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d4e6a645a5a514d4a4b50616f576443353742676b6d645378666f656a65393171575034614b726e756639436500000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806372d23ba1116100f7578063c4e3709511610095578063e985e9c511610064578063e985e9c514610667578063f2fde38b146106a4578063f47c84c5146106cd578063f4a0a528146106f8576101cd565b8063c4e37095146105ab578063c87b56dd146105d4578063daa81cdd14610611578063e8a3d4851461063c576101cd565b8063938e3d7b116100d1578063938e3d7b1461050557806395d89b411461052e578063a22cb46514610559578063b88d4fde14610582576101cd565b806372d23ba1146104a7578063853828b6146104c35780638da5cb5b146104da576101cd565b806342842e0e1161016f578063638248391161013e57806363824839146103fd5780636817c76c1461042857806370a0823114610453578063715018a614610490576101cd565b806342842e0e146103315780634f6ccce71461035a57806355f804b3146103975780636352211e146103c0576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632f745c59146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612d7a565b610721565b60405161020691906132ed565b60405180910390f35b34801561021b57600080fd5b5061022461079b565b6040516102319190613308565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612e0d565b61082d565b60405161026e919061324f565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612d15565b6108b2565b005b3480156102ac57600080fd5b506102b56109ca565b6040516102c2919061360a565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612c0f565b6109d7565b005b34801561030057600080fd5b5061031b60048036038101906103169190612d15565b610a37565b604051610328919061360a565b60405180910390f35b34801561033d57600080fd5b5061035860048036038101906103539190612c0f565b610adc565b005b34801561036657600080fd5b50610381600480360381019061037c9190612e0d565b610afc565b60405161038e919061360a565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190612dcc565b610b93565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190612e0d565b610c29565b6040516103f4919061324f565b60405180910390f35b34801561040957600080fd5b50610412610cdb565b60405161041f919061360a565b60405180910390f35b34801561043457600080fd5b5061043d610ce0565b60405161044a919061360a565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190612baa565b610ce6565b604051610487919061360a565b60405180910390f35b34801561049c57600080fd5b506104a5610d9e565b005b6104c160048036038101906104bc9190612d15565b610e26565b005b3480156104cf57600080fd5b506104d861103b565b005b3480156104e657600080fd5b506104ef611106565b6040516104fc919061324f565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190612dcc565b611130565b005b34801561053a57600080fd5b506105436111c6565b6040516105509190613308565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b9190612cd9565b611258565b005b34801561058e57600080fd5b506105a960048036038101906105a49190612c5e565b6113d9565b005b3480156105b757600080fd5b506105d260048036038101906105cd9190612d51565b61143b565b005b3480156105e057600080fd5b506105fb60048036038101906105f69190612e0d565b6114d4565b6040516106089190613308565b60405180910390f35b34801561061d57600080fd5b5061062661157b565b60405161063391906132ed565b60405180910390f35b34801561064857600080fd5b5061065161158e565b60405161065e9190613308565b60405180910390f35b34801561067357600080fd5b5061068e60048036038101906106899190612bd3565b611620565b60405161069b91906132ed565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c69190612baa565b6116b4565b005b3480156106d957600080fd5b506106e26117ac565b6040516106ef919061360a565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a9190612e0d565b6117b2565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610794575061079382611838565b5b9050919050565b6060600080546107aa906138ba565b80601f01602080910402602001604051908101604052809291908181526020018280546107d6906138ba565b80156108235780601f106107f857610100808354040283529160200191610823565b820191906000526020600020905b81548152906001019060200180831161080657829003601f168201915b5050505050905090565b60006108388261191a565b610877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086e906134ea565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108bd82610c29565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561092e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109259061356a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661094d611986565b73ffffffffffffffffffffffffffffffffffffffff16148061097c575061097b81610976611986565b611620565b5b6109bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b29061342a565b60405180910390fd5b6109c5838361198e565b505050565b6000600880549050905090565b6109e86109e2611986565b82611a47565b610a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1e9061358a565b60405180910390fd5b610a32838383611b25565b505050565b6000610a4283610ce6565b8210610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a9061332a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610af7838383604051806020016040528060008152506113d9565b505050565b6000610b066109ca565b8210610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e906135aa565b60405180910390fd5b60088281548110610b81577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610b9b611986565b73ffffffffffffffffffffffffffffffffffffffff16610bb9611106565b73ffffffffffffffffffffffffffffffffffffffff1614610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c069061350a565b60405180910390fd5b80600d9080519060200190610c259291906129ce565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc99061348a565b60405180910390fd5b80915050919050565b601481565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e9061346a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610da6611986565b73ffffffffffffffffffffffffffffffffffffffff16610dc4611106565b73ffffffffffffffffffffffffffffffffffffffff1614610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e119061350a565b60405180910390fd5b610e246000611d81565b565b6000610e306109ca565b9050600c60009054906101000a900460ff16610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e78906135ea565b60405180910390fd5b6001612710610e9091906136ef565b8282610e9c91906136ef565b10610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed3906135ca565b60405180910390fd5b6127108110610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f179061340a565b60405180910390fd5b60016014610f2e91906136ef565b8210610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f66906134ca565b60405180910390fd5b81600b54610f7d9190613776565b341015610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb69061344a565b60405180910390fd5b600042905060005b83811015611034576000610fd96109ca565b9050610fe58682611e47565b7f96234cb3d6c373a1aaa06497a540bc166d4b0359243a088eaf95e21d7253d0be338285604051611018939291906132b6565b60405180910390a150808061102c9061391d565b915050610fc7565b5050505050565b611043611986565b73ffffffffffffffffffffffffffffffffffffffff16611061611106565b73ffffffffffffffffffffffffffffffffffffffff16146110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae9061350a565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611102573d6000803e3d6000fd5b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611138611986565b73ffffffffffffffffffffffffffffffffffffffff16611156611106565b73ffffffffffffffffffffffffffffffffffffffff16146111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a39061350a565b60405180910390fd5b80600e90805190602001906111c29291906129ce565b5050565b6060600180546111d5906138ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611201906138ba565b801561124e5780601f106112235761010080835404028352916020019161124e565b820191906000526020600020905b81548152906001019060200180831161123157829003601f168201915b5050505050905090565b611260611986565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c5906133ca565b60405180910390fd5b80600560006112db611986565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611388611986565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113cd91906132ed565b60405180910390a35050565b6113ea6113e4611986565b83611a47565b611429576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114209061358a565b60405180910390fd5b61143584848484611e65565b50505050565b611443611986565b73ffffffffffffffffffffffffffffffffffffffff16611461611106565b73ffffffffffffffffffffffffffffffffffffffff16146114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae9061350a565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b60606114df8261191a565b61151e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115159061354a565b60405180910390fd5b6000611528611ec1565b905060008151116115485760405180602001604052806000815250611573565b8061155284611f53565b60405160200161156392919061322b565b6040516020818303038152906040525b915050919050565b600c60009054906101000a900460ff1681565b6060600e805461159d906138ba565b80601f01602080910402602001604051908101604052809291908181526020018280546115c9906138ba565b80156116165780601f106115eb57610100808354040283529160200191611616565b820191906000526020600020905b8154815290600101906020018083116115f957829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116bc611986565b73ffffffffffffffffffffffffffffffffffffffff166116da611106565b73ffffffffffffffffffffffffffffffffffffffff1614611730576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117279061350a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117979061336a565b60405180910390fd5b6117a981611d81565b50565b61271081565b6117ba611986565b73ffffffffffffffffffffffffffffffffffffffff166117d8611106565b73ffffffffffffffffffffffffffffffffffffffff161461182e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118259061350a565b60405180910390fd5b80600b8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061190357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611913575061191282612100565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a0183610c29565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a528261191a565b611a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a88906133ea565b60405180910390fd5b6000611a9c83610c29565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b0b57508373ffffffffffffffffffffffffffffffffffffffff16611af38461082d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b1c5750611b1b8185611620565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b4582610c29565b73ffffffffffffffffffffffffffffffffffffffff1614611b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b929061352a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c02906133aa565b60405180910390fd5b611c1683838361216a565b611c2160008261198e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c7191906137d0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cc891906136ef565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e6182826040518060200160405280600081525061227e565b5050565b611e70848484611b25565b611e7c848484846122d9565b611ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb29061334a565b60405180910390fd5b50505050565b6060600d8054611ed0906138ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611efc906138ba565b8015611f495780601f10611f1e57610100808354040283529160200191611f49565b820191906000526020600020905b815481529060010190602001808311611f2c57829003601f168201915b5050505050905090565b60606000821415611f9b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120fb565b600082905060005b60008214611fcd578080611fb69061391d565b915050600a82611fc69190613745565b9150611fa3565b60008167ffffffffffffffff81111561200f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120415781602001600182028036833780820191505090505b5090505b600085146120f45760018261205a91906137d0565b9150600a856120699190613966565b603061207591906136ef565b60f81b8183815181106120b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120ed9190613745565b9450612045565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612175838383612470565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121b8576121b381612475565b6121f7565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146121f6576121f583826124be565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561223a576122358161262b565b612279565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461227857612277828261276e565b5b5b505050565b61228883836127ed565b61229560008484846122d9565b6122d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cb9061334a565b60405180910390fd5b505050565b60006122fa8473ffffffffffffffffffffffffffffffffffffffff166129bb565b15612463578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612323611986565b8786866040518563ffffffff1660e01b8152600401612345949392919061326a565b602060405180830381600087803b15801561235f57600080fd5b505af192505050801561239057506040513d601f19601f8201168201806040525081019061238d9190612da3565b60015b612413573d80600081146123c0576040519150601f19603f3d011682016040523d82523d6000602084013e6123c5565b606091505b5060008151141561240b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124029061334a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612468565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016124cb84610ce6565b6124d591906137d0565b90506000600760008481526020019081526020016000205490508181146125ba576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061263f91906137d0565b9050600060096000848152602001908152602001600020549050600060088381548110612695577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106126dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612752577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061277983610ce6565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561285d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612854906134aa565b60405180910390fd5b6128668161191a565b156128a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289d9061338a565b60405180910390fd5b6128b26000838361216a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461290291906136ef565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546129da906138ba565b90600052602060002090601f0160209004810192826129fc5760008555612a43565b82601f10612a1557805160ff1916838001178555612a43565b82800160010185558215612a43579182015b82811115612a42578251825591602001919060010190612a27565b5b509050612a509190612a54565b5090565b5b80821115612a6d576000816000905550600101612a55565b5090565b6000612a84612a7f8461364a565b613625565b905082815260208101848484011115612a9c57600080fd5b612aa7848285613878565b509392505050565b6000612ac2612abd8461367b565b613625565b905082815260208101848484011115612ada57600080fd5b612ae5848285613878565b509392505050565b600081359050612afc81614073565b92915050565b600081359050612b118161408a565b92915050565b600081359050612b26816140a1565b92915050565b600081519050612b3b816140a1565b92915050565b600082601f830112612b5257600080fd5b8135612b62848260208601612a71565b91505092915050565b600082601f830112612b7c57600080fd5b8135612b8c848260208601612aaf565b91505092915050565b600081359050612ba4816140b8565b92915050565b600060208284031215612bbc57600080fd5b6000612bca84828501612aed565b91505092915050565b60008060408385031215612be657600080fd5b6000612bf485828601612aed565b9250506020612c0585828601612aed565b9150509250929050565b600080600060608486031215612c2457600080fd5b6000612c3286828701612aed565b9350506020612c4386828701612aed565b9250506040612c5486828701612b95565b9150509250925092565b60008060008060808587031215612c7457600080fd5b6000612c8287828801612aed565b9450506020612c9387828801612aed565b9350506040612ca487828801612b95565b925050606085013567ffffffffffffffff811115612cc157600080fd5b612ccd87828801612b41565b91505092959194509250565b60008060408385031215612cec57600080fd5b6000612cfa85828601612aed565b9250506020612d0b85828601612b02565b9150509250929050565b60008060408385031215612d2857600080fd5b6000612d3685828601612aed565b9250506020612d4785828601612b95565b9150509250929050565b600060208284031215612d6357600080fd5b6000612d7184828501612b02565b91505092915050565b600060208284031215612d8c57600080fd5b6000612d9a84828501612b17565b91505092915050565b600060208284031215612db557600080fd5b6000612dc384828501612b2c565b91505092915050565b600060208284031215612dde57600080fd5b600082013567ffffffffffffffff811115612df857600080fd5b612e0484828501612b6b565b91505092915050565b600060208284031215612e1f57600080fd5b6000612e2d84828501612b95565b91505092915050565b612e3f81613804565b82525050565b612e4e81613816565b82525050565b6000612e5f826136ac565b612e6981856136c2565b9350612e79818560208601613887565b612e8281613a53565b840191505092915050565b6000612e98826136b7565b612ea281856136d3565b9350612eb2818560208601613887565b612ebb81613a53565b840191505092915050565b6000612ed1826136b7565b612edb81856136e4565b9350612eeb818560208601613887565b80840191505092915050565b6000612f04602b836136d3565b9150612f0f82613a64565b604082019050919050565b6000612f276032836136d3565b9150612f3282613ab3565b604082019050919050565b6000612f4a6026836136d3565b9150612f5582613b02565b604082019050919050565b6000612f6d601c836136d3565b9150612f7882613b51565b602082019050919050565b6000612f906024836136d3565b9150612f9b82613b7a565b604082019050919050565b6000612fb36019836136d3565b9150612fbe82613bc9565b602082019050919050565b6000612fd6602c836136d3565b9150612fe182613bf2565b604082019050919050565b6000612ff96015836136d3565b915061300482613c41565b602082019050919050565b600061301c6038836136d3565b915061302782613c6a565b604082019050919050565b600061303f6024836136d3565b915061304a82613cb9565b604082019050919050565b6000613062602a836136d3565b915061306d82613d08565b604082019050919050565b60006130856029836136d3565b915061309082613d57565b604082019050919050565b60006130a86020836136d3565b91506130b382613da6565b602082019050919050565b60006130cb601e836136d3565b91506130d682613dcf565b602082019050919050565b60006130ee602c836136d3565b91506130f982613df8565b604082019050919050565b60006131116020836136d3565b915061311c82613e47565b602082019050919050565b60006131346029836136d3565b915061313f82613e70565b604082019050919050565b6000613157602f836136d3565b915061316282613ebf565b604082019050919050565b600061317a6021836136d3565b915061318582613f0e565b604082019050919050565b600061319d6031836136d3565b91506131a882613f5d565b604082019050919050565b60006131c0602c836136d3565b91506131cb82613fac565b604082019050919050565b60006131e36029836136d3565b91506131ee82613ffb565b604082019050919050565b6000613206601d836136d3565b91506132118261404a565b602082019050919050565b6132258161386e565b82525050565b60006132378285612ec6565b91506132438284612ec6565b91508190509392505050565b60006020820190506132646000830184612e36565b92915050565b600060808201905061327f6000830187612e36565b61328c6020830186612e36565b613299604083018561321c565b81810360608301526132ab8184612e54565b905095945050505050565b60006060820190506132cb6000830186612e36565b6132d8602083018561321c565b6132e5604083018461321c565b949350505050565b60006020820190506133026000830184612e45565b92915050565b600060208201905081810360008301526133228184612e8d565b905092915050565b6000602082019050818103600083015261334381612ef7565b9050919050565b6000602082019050818103600083015261336381612f1a565b9050919050565b6000602082019050818103600083015261338381612f3d565b9050919050565b600060208201905081810360008301526133a381612f60565b9050919050565b600060208201905081810360008301526133c381612f83565b9050919050565b600060208201905081810360008301526133e381612fa6565b9050919050565b6000602082019050818103600083015261340381612fc9565b9050919050565b6000602082019050818103600083015261342381612fec565b9050919050565b600060208201905081810360008301526134438161300f565b9050919050565b6000602082019050818103600083015261346381613032565b9050919050565b6000602082019050818103600083015261348381613055565b9050919050565b600060208201905081810360008301526134a381613078565b9050919050565b600060208201905081810360008301526134c38161309b565b9050919050565b600060208201905081810360008301526134e3816130be565b9050919050565b60006020820190508181036000830152613503816130e1565b9050919050565b6000602082019050818103600083015261352381613104565b9050919050565b6000602082019050818103600083015261354381613127565b9050919050565b600060208201905081810360008301526135638161314a565b9050919050565b600060208201905081810360008301526135838161316d565b9050919050565b600060208201905081810360008301526135a381613190565b9050919050565b600060208201905081810360008301526135c3816131b3565b9050919050565b600060208201905081810360008301526135e3816131d6565b9050919050565b60006020820190508181036000830152613603816131f9565b9050919050565b600060208201905061361f600083018461321c565b92915050565b600061362f613640565b905061363b82826138ec565b919050565b6000604051905090565b600067ffffffffffffffff82111561366557613664613a24565b5b61366e82613a53565b9050602081019050919050565b600067ffffffffffffffff82111561369657613695613a24565b5b61369f82613a53565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136fa8261386e565b91506137058361386e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561373a57613739613997565b5b828201905092915050565b60006137508261386e565b915061375b8361386e565b92508261376b5761376a6139c6565b5b828204905092915050565b60006137818261386e565b915061378c8361386e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137c5576137c4613997565b5b828202905092915050565b60006137db8261386e565b91506137e68361386e565b9250828210156137f9576137f8613997565b5b828203905092915050565b600061380f8261384e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138a557808201518184015260208101905061388a565b838111156138b4576000848401525b50505050565b600060028204905060018216806138d257607f821691505b602082108114156138e6576138e56139f5565b5b50919050565b6138f582613a53565b810181811067ffffffffffffffff8211171561391457613913613a24565b5b80604052505050565b60006139288261386e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561395b5761395a613997565b5b600182019050919050565b60006139718261386e565b915061397c8361386e565b92508261398c5761398b6139c6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726520446f6d6d696573206c656674210000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e656564206d6f72652045544820746f20756e777261702074686520446f6d6d60008201527f6965732100000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4c6561766520736f6d6520446f6d6d69657320666f72206f7468657273210000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f536f72727920796f7520747269656420746f206d696e7420746f6f206d616e7960008201527f20446f6d6d696573210000000000000000000000000000000000000000000000602082015250565b7f446f6d6d6965732053616c6520686173206e6f74207374617274656421000000600082015250565b61407c81613804565b811461408757600080fd5b50565b61409381613816565b811461409e57600080fd5b50565b6140aa81613822565b81146140b557600080fd5b50565b6140c18161386e565b81146140cc57600080fd5b5056fea26469706673582212204ec6b7d3a7a2479653355c0fe3f5e078de10736267a2440cd04bd33805e8b50464736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000008700cc75770000000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f6170692e646f6d6d6965732e696f2f646f6d6d6965732f00000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d4e6a645a5a514d4a4b50616f576443353742676b6d645378666f656a65393171575034614b726e756639436500000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://api.dommies.io/dommies/
Arg [1] : sContractURI (string): https://gateway.pinata.cloud/ipfs/QmNjdZZQMJKPaoWdC57BgkmdSxfoeje91qWP4aKrnuf9Ce
Arg [2] : iPrice (uint256): 38000000000000000

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000008700cc75770000
Arg [3] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [4] : 68747470733a2f2f6170692e646f6d6d6965732e696f2f646f6d6d6965732f00
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [6] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [7] : 732f516d4e6a645a5a514d4a4b50616f576443353742676b6d645378666f656a
Arg [8] : 65393171575034614b726e756639436500000000000000000000000000000000


Deployed Bytecode Sourcemap

145:2283:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:222:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2349:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3860:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3398:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1534:111:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4724:330:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1210:253:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5120:179:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1717:230:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2041:102:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2052:235:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;244:46:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;297:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1790:205:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1598:92:11;;;;;;;;;;;;;:::i;:::-;;682:787:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2282:143;;;;;;;;;;;;;:::i;:::-;;966:85:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2151:119:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2511:102:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4144:290;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5365:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1827:97:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2679:329:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;358:33:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1603:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4500:162:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1839:189:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;198:39:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1932:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;909:222:5;1011:4;1049:35;1034:50;;;:11;:50;;;;:90;;;;1088:36;1112:11;1088:23;:36::i;:::-;1034:90;1027:97;;909:222;;;:::o;2349:98:4:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;3963:16;3971:7;3963;:16::i;:::-;3955:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4046:15;:24;4062:7;4046:24;;;;;;;;;;;;;;;;;;;;;4039:31;;3860:217;;;:::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;3535:11;;:2;:11;;;;3527:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3632:5;3616:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3641:37;3658:5;3665:12;:10;:12::i;:::-;3641:16;:37::i;:::-;3616:62;3595:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3398:401;;;:::o;1534:111:5:-;1595:7;1621:10;:17;;;;1614:24;;1534:111;:::o;4724:330:4:-;4913:41;4932:12;:10;:12::i;:::-;4946:7;4913:18;:41::i;:::-;4905:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;:::-;4724:330;;;:::o;1210:253:5:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1430:12;:19;1443:5;1430:19;;;;;;;;;;;;;;;:26;1450:5;1430:26;;;;;;;;;;;;1423:33;;1210:253;;;;:::o;5120:179:4:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;:::-;5120:179;;;:::o;1717:230:5:-;1792:7;1827:30;:28;:30::i;:::-;1819:5;:38;1811:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1923:10;1934:5;1923:17;;;;;;;;;;;;;;;;;;;;;;;;1916:24;;1717:230;;;:::o;2041:102:2:-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2128:7:2::1;2112:13;:23;;;;;;;;;;;;:::i;:::-;;2041:102:::0;:::o;2052:235:4:-;2124:7;2143:13;2159:7;:16;2167:7;2159:16;;;;;;;;;;;;;;;;;;;;;2143:32;;2210:1;2193:19;;:5;:19;;;;2185:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2275:5;2268:12;;;2052:235;;;:::o;244:46:2:-;288:2;244:46;:::o;297:37::-;;;;:::o;1790:205:4:-;1862:7;1906:1;1889:19;;:5;:19;;;;1881:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1972:9;:16;1982:5;1972:16;;;;;;;;;;;;;;;;1965:23;;1790:205;;;:::o;1598:92:11:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;682:787:2:-;753:19;775:13;:11;:13::i;:::-;753:35;;807:13;;;;;;;;;;;799:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;912:1;232:5;899:14;;;;:::i;:::-;888:6;874:11;:20;;;;:::i;:::-;873:41;865:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;232:5;979:11;:24;971:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;1081:1;288:2;1058:24;;;;:::i;:::-;1048:6;:35;1040:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;1163:6;1151:9;;:18;;;;:::i;:::-;1137:9;:33;;1129:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;1224:13;1240:15;1224:31;;1270:6;1266:196;1286:6;1282:1;:10;1266:196;;;1313:17;1333:13;:11;:13::i;:::-;1313:33;;1361:25;1371:3;1376:9;1361;:25::i;:::-;1406:44;1418:10;1430:9;1441:8;1406:44;;;;;;;;:::i;:::-;;;;;;;;1266:196;1294:3;;;;;:::i;:::-;;;;1266:196;;;;682:787;;;;:::o;2282:143::-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2333:12:2::1;2348:21;2333:36;;2388:10;2380:28;;:37;2409:7;2380:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1248:1:11;2282:143:2:o:0;966:85:11:-;1012:7;1038:6;;;;;;;;;;;1031:13;;966:85;:::o;2151:119:2:-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2248:14:2::1;2233:12;:29;;;;;;;;;;;;:::i;:::-;;2151:119:::0;:::o;2511:102:4:-;2567:13;2599:7;2592:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2511:102;:::o;4144:290::-;4258:12;:10;:12::i;:::-;4246:24;;:8;:24;;;;4238:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4356:8;4311:18;:32;4330:12;:10;:12::i;:::-;4311:32;;;;;;;;;;;;;;;:42;4344:8;4311:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4408:8;4379:48;;4394:12;:10;:12::i;:::-;4379:48;;;4418:8;4379:48;;;;;;:::i;:::-;;;;;;;;4144:290;;:::o;5365:320::-;5534:41;5553:12;:10;:12::i;:::-;5567:7;5534:18;:41::i;:::-;5526:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;1827:97:2:-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1908:8:2::1;1892:13;;:24;;;;;;;;;;;;;;;;;;1827:97:::0;:::o;2679:329:4:-;2752:13;2785:16;2793:7;2785;:16::i;:::-;2777:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2864:21;2888:10;:8;:10::i;:::-;2864:34;;2939:1;2921:7;2915:21;:25;:86;;;;;;;;;;;;;;;;;2967:7;2976:18;:7;:16;:18::i;:::-;2950:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2915:86;2908:93;;;2679:329;;;:::o;358:33:2:-;;;;;;;;;;;;;:::o;1603:97::-;1647:13;1680:12;1673:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1603:97;:::o;4500:162:4:-;4597:4;4620:18;:25;4639:5;4620:25;;;;;;;;;;;;;;;:35;4646:8;4620:35;;;;;;;;;;;;;;;;;;;;;;;;;4613:42;;4500:162;;;;:::o;1839:189:11:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1947:1:::1;1927:22;;:8;:22;;;;1919:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;198:39:2:-;232:5;198:39;:::o;1932:101::-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2013:12:2::1;2001:9;:24;;;;1932:101:::0;:::o;1431:300:4:-;1533:4;1583:25;1568:40;;;:11;:40;;;;:104;;;;1639:33;1624:48;;;:11;:48;;;;1568:104;:156;;;;1688:36;1712:11;1688:23;:36::i;:::-;1568:156;1549:175;;1431:300;;;:::o;7157:125::-;7222:4;7273:1;7245:30;;:7;:16;7253:7;7245:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7238:37;;7157:125;;;:::o;586:96:1:-;639:7;665:10;658:17;;586:96;:::o;11008:171:4:-;11109:2;11082:15;:24;11098:7;11082:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11164:7;11160:2;11126:46;;11135:23;11150:7;11135:14;:23::i;:::-;11126:46;;;;;;;;;;;;11008:171;;:::o;7440:344::-;7533:4;7557:16;7565:7;7557;:16::i;:::-;7549:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;7689:16;;:7;:16;;;:51;;;;7733:7;7709:31;;:20;7721:7;7709:11;:20::i;:::-;:31;;;7689:51;:87;;;;7744:32;7761:5;7768:7;7744:16;:32::i;:::-;7689:87;7681:96;;;7440:344;;;;:::o;10337:560::-;10491:4;10464:31;;:23;10479:7;10464:14;:23::i;:::-;:31;;;10456:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10573:1;10559:16;;:2;:16;;;;10551:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;10787:1;10768:9;:15;10778:4;10768:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10815:1;10798:9;:13;10808:2;10798:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10845:2;10826:7;:16;10834:7;10826:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10882:7;10878:2;10863:27;;10872:4;10863:27;;;;;;;;;;;;10337:560;;;:::o;2034:169:11:-;2089:16;2108:6;;;;;;;;;;;2089:25;;2133:8;2124:6;;:17;;;;;;;;;;;;;;;;;;2187:8;2156:40;;2177:8;2156:40;;;;;;;;;;;;2034:169;;:::o;8114:108:4:-;8189:26;8199:2;8203:7;8189:26;;;;;;;;;;;;:9;:26::i;:::-;8114:108;;:::o;6547:307::-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6547:307;;;;:::o;1481:114:2:-;1541:13;1574;1567:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1481:114;:::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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;928:2;919:11;;;;;:::i;:::-;;;791:150;;;964:6;950:21;;;;;275:703;;;;:::o;763:155:3:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;2543:572:5:-;2682:45;2709:4;2715:2;2719:7;2682:26;:45::i;:::-;2758:1;2742:18;;:4;:18;;;2738:183;;;2776:40;2808:7;2776:31;:40::i;:::-;2738:183;;;2845:2;2837:10;;:4;:10;;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;2833:88;2738:183;2948:1;2934:16;;:2;:16;;;2930:179;;;2966:45;3003:7;2966:36;:45::i;:::-;2930:179;;;3038:4;3032:10;;:2;:10;;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;:::-;3028:81;2930:179;2543:572;;;:::o;8443:311:4:-;8568:18;8574:2;8578:7;8568:5;:18::i;:::-;8617:54;8648:1;8652:2;8656:7;8665:5;8617:22;:54::i;:::-;8596:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;8443:311;;;:::o;11732:782::-;11882:4;11902:15;:2;:13;;;:15::i;:::-;11898:610;;;11953:2;11937:36;;;11974:12;:10;:12::i;:::-;11988:4;11994:7;12003:5;11937:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;11933:523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12197:1;12180:6;:13;:18;12176:266;;;12222:60;;;;;;;;;;:::i;:::-;;;;;;;;12176:266;12394:6;12388:13;12379:6;12375:2;12371:15;12364:38;11933:523;12069:45;;;12059:55;;;:6;:55;;;;12052:62;;;;;11898:610;12493:4;12486:11;;11732:782;;;;;;;:::o;13070:122::-;;;;:::o;3821:161:5:-;3924:10;:17;;;;3897:15;:24;3913:7;3897:24;;;;;;;;;;;:44;;;;3951:10;3967:7;3951:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3821:161;:::o;4599:970::-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4861:51;;4922:18;4943:17;:26;4961:7;4943:26;;;;;;;;;;;;4922:47;;5087:14;5073:10;:28;5069:323;;5117:19;5139:12;:18;5152:4;5139:18;;;;;;;;;;;;;;;:34;5158:14;5139:34;;;;;;;;;;;;5117:56;;5221:11;5188:12;:18;5201:4;5188:18;;;;;;;;;;;;;;;:30;5207:10;5188:30;;;;;;;;;;;:44;;;;5337:10;5304:17;:30;5322:11;5304:30;;;;;;;;;;;:43;;;;5069:323;;5485:17;:26;5503:7;5485:26;;;;;;;;;;;5478:33;;;5528:12;:18;5541:4;5528:18;;;;;;;;;;;;;;;:34;5547:14;5528:34;;;;;;;;;;;5521:41;;;4599:970;;;;:::o;5857:1061::-;6106:22;6151:1;6131:10;:17;;;;:21;;;;:::i;:::-;6106:46;;6162:18;6183:15;:24;6199:7;6183:24;;;;;;;;;;;;6162:45;;6529:19;6551:10;6562:14;6551:26;;;;;;;;;;;;;;;;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;6723:10;6692:15;:28;6708:11;6692:28;;;;;;;;;;;:41;;;;6861:15;:24;6877:7;6861:24;;;;;;;;;;;6854:31;;;6895:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5857:1061;;;;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;3493:37;;3567:7;3540:12;:16;3553:2;3540:16;;;;;;;;;;;;;;;:24;3557:6;3540:24;;;;;;;;;;;:34;;;;3613:6;3584:17;:26;3602:7;3584:26;;;;;;;;;;;:35;;;;3409:217;;;:::o;9076:372:4:-;9169:1;9155:16;;:2;:16;;;;9147:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9227:16;9235:7;9227;:16::i;:::-;9226:17;9218:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;9360:1;9343:9;:13;9353:2;9343:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9390:2;9371:7;:16;9379:7;9371:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9433:7;9429:2;9408:33;;9425:1;9408:33;;;;;;;;;;;;9076: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:343: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:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:118::-;6435:24;6453:5;6435:24;:::i;:::-;6430:3;6423:37;6413:53;;:::o;6472:109::-;6553:21;6568:5;6553:21;:::i;:::-;6548:3;6541:34;6531:50;;:::o;6587:360::-;6673:3;6701:38;6733:5;6701:38;:::i;:::-;6755:70;6818:6;6813:3;6755:70;:::i;:::-;6748:77;;6834:52;6879:6;6874:3;6867:4;6860:5;6856:16;6834:52;:::i;:::-;6911:29;6933:6;6911:29;:::i;:::-;6906:3;6902:39;6895:46;;6677:270;;;;;:::o;6953:364::-;7041:3;7069:39;7102:5;7069:39;:::i;:::-;7124:71;7188:6;7183:3;7124:71;:::i;:::-;7117:78;;7204:52;7249:6;7244:3;7237:4;7230:5;7226:16;7204:52;:::i;:::-;7281:29;7303:6;7281:29;:::i;:::-;7276:3;7272:39;7265:46;;7045:272;;;;;:::o;7323:377::-;7429:3;7457:39;7490:5;7457:39;:::i;:::-;7512:89;7594:6;7589:3;7512:89;:::i;:::-;7505:96;;7610:52;7655:6;7650:3;7643:4;7636:5;7632:16;7610:52;:::i;:::-;7687:6;7682:3;7678:16;7671:23;;7433:267;;;;;:::o;7706:366::-;7848:3;7869:67;7933:2;7928:3;7869:67;:::i;:::-;7862:74;;7945:93;8034:3;7945:93;:::i;:::-;8063:2;8058:3;8054:12;8047:19;;7852:220;;;:::o;8078:366::-;8220:3;8241:67;8305:2;8300:3;8241:67;:::i;:::-;8234:74;;8317:93;8406:3;8317:93;:::i;:::-;8435:2;8430:3;8426:12;8419:19;;8224:220;;;:::o;8450:366::-;8592:3;8613:67;8677:2;8672:3;8613:67;:::i;:::-;8606:74;;8689:93;8778:3;8689:93;:::i;:::-;8807:2;8802:3;8798:12;8791:19;;8596:220;;;:::o;8822:366::-;8964:3;8985:67;9049:2;9044:3;8985:67;:::i;:::-;8978:74;;9061:93;9150:3;9061:93;:::i;:::-;9179:2;9174:3;9170:12;9163:19;;8968:220;;;:::o;9194:366::-;9336:3;9357:67;9421:2;9416:3;9357:67;:::i;:::-;9350:74;;9433:93;9522:3;9433:93;:::i;:::-;9551:2;9546:3;9542:12;9535:19;;9340:220;;;:::o;9566:366::-;9708:3;9729:67;9793:2;9788:3;9729:67;:::i;:::-;9722:74;;9805:93;9894:3;9805:93;:::i;:::-;9923:2;9918:3;9914:12;9907:19;;9712:220;;;:::o;9938:366::-;10080:3;10101:67;10165:2;10160:3;10101:67;:::i;:::-;10094:74;;10177:93;10266:3;10177:93;:::i;:::-;10295:2;10290:3;10286:12;10279:19;;10084:220;;;:::o;10310:366::-;10452:3;10473:67;10537:2;10532:3;10473:67;:::i;:::-;10466:74;;10549:93;10638:3;10549:93;:::i;:::-;10667:2;10662:3;10658:12;10651:19;;10456:220;;;:::o;10682:366::-;10824:3;10845:67;10909:2;10904:3;10845:67;:::i;:::-;10838:74;;10921:93;11010:3;10921:93;:::i;:::-;11039:2;11034:3;11030:12;11023:19;;10828:220;;;:::o;11054:366::-;11196:3;11217:67;11281:2;11276:3;11217:67;:::i;:::-;11210:74;;11293:93;11382:3;11293:93;:::i;:::-;11411:2;11406:3;11402:12;11395:19;;11200:220;;;:::o;11426:366::-;11568:3;11589:67;11653:2;11648:3;11589:67;:::i;:::-;11582:74;;11665:93;11754:3;11665:93;:::i;:::-;11783:2;11778:3;11774:12;11767:19;;11572:220;;;:::o;11798:366::-;11940:3;11961:67;12025:2;12020:3;11961:67;:::i;:::-;11954:74;;12037:93;12126:3;12037:93;:::i;:::-;12155:2;12150:3;12146:12;12139:19;;11944:220;;;:::o;12170:366::-;12312:3;12333:67;12397:2;12392:3;12333:67;:::i;:::-;12326:74;;12409:93;12498:3;12409:93;:::i;:::-;12527:2;12522:3;12518:12;12511:19;;12316:220;;;:::o;12542:366::-;12684:3;12705:67;12769:2;12764:3;12705:67;:::i;:::-;12698:74;;12781:93;12870:3;12781:93;:::i;:::-;12899:2;12894:3;12890:12;12883:19;;12688:220;;;:::o;12914:366::-;13056:3;13077:67;13141:2;13136:3;13077:67;:::i;:::-;13070:74;;13153:93;13242:3;13153:93;:::i;:::-;13271:2;13266:3;13262:12;13255:19;;13060:220;;;:::o;13286:366::-;13428:3;13449:67;13513:2;13508:3;13449:67;:::i;:::-;13442:74;;13525:93;13614:3;13525:93;:::i;:::-;13643:2;13638:3;13634:12;13627:19;;13432:220;;;:::o;13658:366::-;13800:3;13821:67;13885:2;13880:3;13821:67;:::i;:::-;13814:74;;13897:93;13986:3;13897:93;:::i;:::-;14015:2;14010:3;14006:12;13999:19;;13804:220;;;:::o;14030:366::-;14172:3;14193:67;14257:2;14252:3;14193:67;:::i;:::-;14186:74;;14269:93;14358:3;14269:93;:::i;:::-;14387:2;14382:3;14378:12;14371:19;;14176:220;;;:::o;14402:366::-;14544:3;14565:67;14629:2;14624:3;14565:67;:::i;:::-;14558:74;;14641:93;14730:3;14641:93;:::i;:::-;14759:2;14754:3;14750:12;14743:19;;14548:220;;;:::o;14774:366::-;14916:3;14937:67;15001:2;14996:3;14937:67;:::i;:::-;14930:74;;15013:93;15102:3;15013:93;:::i;:::-;15131:2;15126:3;15122:12;15115:19;;14920:220;;;:::o;15146:366::-;15288:3;15309:67;15373:2;15368:3;15309:67;:::i;:::-;15302:74;;15385:93;15474:3;15385:93;:::i;:::-;15503:2;15498:3;15494:12;15487:19;;15292:220;;;:::o;15518:366::-;15660:3;15681:67;15745:2;15740:3;15681:67;:::i;:::-;15674:74;;15757:93;15846:3;15757:93;:::i;:::-;15875:2;15870:3;15866:12;15859:19;;15664:220;;;:::o;15890:366::-;16032:3;16053:67;16117:2;16112:3;16053:67;:::i;:::-;16046:74;;16129:93;16218:3;16129:93;:::i;:::-;16247:2;16242:3;16238:12;16231:19;;16036:220;;;:::o;16262:118::-;16349:24;16367:5;16349:24;:::i;:::-;16344:3;16337:37;16327:53;;:::o;16386:435::-;16566:3;16588:95;16679:3;16670:6;16588:95;:::i;:::-;16581:102;;16700:95;16791:3;16782:6;16700:95;:::i;:::-;16693:102;;16812:3;16805:10;;16570:251;;;;;:::o;16827:222::-;16920:4;16958:2;16947:9;16943:18;16935:26;;16971:71;17039:1;17028:9;17024:17;17015:6;16971:71;:::i;:::-;16925:124;;;;:::o;17055:640::-;17250:4;17288:3;17277:9;17273:19;17265:27;;17302:71;17370:1;17359:9;17355:17;17346:6;17302:71;:::i;:::-;17383:72;17451:2;17440:9;17436:18;17427:6;17383:72;:::i;:::-;17465;17533:2;17522:9;17518:18;17509:6;17465:72;:::i;:::-;17584:9;17578:4;17574:20;17569:2;17558:9;17554:18;17547:48;17612:76;17683:4;17674:6;17612:76;:::i;:::-;17604:84;;17255:440;;;;;;;:::o;17701:442::-;17850:4;17888:2;17877:9;17873:18;17865:26;;17901:71;17969:1;17958:9;17954:17;17945:6;17901:71;:::i;:::-;17982:72;18050:2;18039:9;18035:18;18026:6;17982:72;:::i;:::-;18064;18132:2;18121:9;18117:18;18108:6;18064:72;:::i;:::-;17855:288;;;;;;:::o;18149:210::-;18236:4;18274:2;18263:9;18259:18;18251:26;;18287:65;18349:1;18338:9;18334:17;18325:6;18287:65;:::i;:::-;18241:118;;;;:::o;18365:313::-;18478:4;18516:2;18505:9;18501:18;18493:26;;18565:9;18559:4;18555:20;18551:1;18540:9;18536:17;18529:47;18593:78;18666:4;18657:6;18593:78;:::i;:::-;18585:86;;18483:195;;;;:::o;18684:419::-;18850:4;18888:2;18877:9;18873:18;18865:26;;18937:9;18931:4;18927:20;18923:1;18912:9;18908:17;18901:47;18965:131;19091:4;18965:131;:::i;:::-;18957:139;;18855:248;;;:::o;19109:419::-;19275:4;19313:2;19302:9;19298:18;19290:26;;19362:9;19356:4;19352:20;19348:1;19337:9;19333:17;19326:47;19390:131;19516:4;19390:131;:::i;:::-;19382:139;;19280:248;;;:::o;19534:419::-;19700:4;19738:2;19727:9;19723:18;19715:26;;19787:9;19781:4;19777:20;19773:1;19762:9;19758:17;19751:47;19815:131;19941:4;19815:131;:::i;:::-;19807:139;;19705:248;;;:::o;19959:419::-;20125:4;20163:2;20152:9;20148:18;20140:26;;20212:9;20206:4;20202:20;20198:1;20187:9;20183:17;20176:47;20240:131;20366:4;20240:131;:::i;:::-;20232:139;;20130:248;;;:::o;20384:419::-;20550:4;20588:2;20577:9;20573:18;20565:26;;20637:9;20631:4;20627:20;20623:1;20612:9;20608:17;20601:47;20665:131;20791:4;20665:131;:::i;:::-;20657:139;;20555:248;;;:::o;20809:419::-;20975:4;21013:2;21002:9;20998:18;20990:26;;21062:9;21056:4;21052:20;21048:1;21037:9;21033:17;21026:47;21090:131;21216:4;21090:131;:::i;:::-;21082:139;;20980:248;;;:::o;21234:419::-;21400:4;21438:2;21427:9;21423:18;21415:26;;21487:9;21481:4;21477:20;21473:1;21462:9;21458:17;21451:47;21515:131;21641:4;21515:131;:::i;:::-;21507:139;;21405:248;;;:::o;21659:419::-;21825:4;21863:2;21852:9;21848:18;21840:26;;21912:9;21906:4;21902:20;21898:1;21887:9;21883:17;21876:47;21940:131;22066:4;21940:131;:::i;:::-;21932:139;;21830:248;;;:::o;22084:419::-;22250:4;22288:2;22277:9;22273:18;22265:26;;22337:9;22331:4;22327:20;22323:1;22312:9;22308:17;22301:47;22365:131;22491:4;22365:131;:::i;:::-;22357:139;;22255:248;;;:::o;22509:419::-;22675:4;22713:2;22702:9;22698:18;22690:26;;22762:9;22756:4;22752:20;22748:1;22737:9;22733:17;22726:47;22790:131;22916:4;22790:131;:::i;:::-;22782:139;;22680:248;;;:::o;22934:419::-;23100:4;23138:2;23127:9;23123:18;23115:26;;23187:9;23181:4;23177:20;23173:1;23162:9;23158:17;23151:47;23215:131;23341:4;23215:131;:::i;:::-;23207:139;;23105:248;;;:::o;23359:419::-;23525:4;23563:2;23552:9;23548:18;23540:26;;23612:9;23606:4;23602:20;23598:1;23587:9;23583:17;23576:47;23640:131;23766:4;23640:131;:::i;:::-;23632:139;;23530:248;;;:::o;23784:419::-;23950:4;23988:2;23977:9;23973:18;23965:26;;24037:9;24031:4;24027:20;24023:1;24012:9;24008:17;24001:47;24065:131;24191:4;24065:131;:::i;:::-;24057:139;;23955:248;;;:::o;24209:419::-;24375:4;24413:2;24402:9;24398:18;24390:26;;24462:9;24456:4;24452:20;24448:1;24437:9;24433:17;24426:47;24490:131;24616:4;24490:131;:::i;:::-;24482:139;;24380:248;;;:::o;24634:419::-;24800:4;24838:2;24827:9;24823:18;24815:26;;24887:9;24881:4;24877:20;24873:1;24862:9;24858:17;24851:47;24915:131;25041:4;24915:131;:::i;:::-;24907:139;;24805:248;;;:::o;25059:419::-;25225:4;25263:2;25252:9;25248:18;25240:26;;25312:9;25306:4;25302:20;25298:1;25287:9;25283:17;25276:47;25340:131;25466:4;25340:131;:::i;:::-;25332:139;;25230:248;;;:::o;25484:419::-;25650:4;25688:2;25677:9;25673:18;25665:26;;25737:9;25731:4;25727:20;25723:1;25712:9;25708:17;25701:47;25765:131;25891:4;25765:131;:::i;:::-;25757:139;;25655:248;;;:::o;25909:419::-;26075:4;26113:2;26102:9;26098:18;26090:26;;26162:9;26156:4;26152:20;26148:1;26137:9;26133:17;26126:47;26190:131;26316:4;26190:131;:::i;:::-;26182:139;;26080:248;;;:::o;26334:419::-;26500:4;26538:2;26527:9;26523:18;26515:26;;26587:9;26581:4;26577:20;26573:1;26562:9;26558:17;26551:47;26615:131;26741:4;26615:131;:::i;:::-;26607:139;;26505:248;;;:::o;26759:419::-;26925:4;26963:2;26952:9;26948:18;26940:26;;27012:9;27006:4;27002:20;26998:1;26987:9;26983:17;26976:47;27040:131;27166:4;27040:131;:::i;:::-;27032:139;;26930:248;;;:::o;27184:419::-;27350:4;27388:2;27377:9;27373:18;27365:26;;27437:9;27431:4;27427:20;27423:1;27412:9;27408:17;27401:47;27465:131;27591:4;27465:131;:::i;:::-;27457:139;;27355:248;;;:::o;27609:419::-;27775:4;27813:2;27802:9;27798:18;27790:26;;27862:9;27856:4;27852:20;27848:1;27837:9;27833:17;27826:47;27890:131;28016:4;27890:131;:::i;:::-;27882:139;;27780:248;;;:::o;28034:419::-;28200:4;28238:2;28227:9;28223:18;28215:26;;28287:9;28281:4;28277:20;28273:1;28262:9;28258:17;28251:47;28315:131;28441:4;28315:131;:::i;:::-;28307:139;;28205:248;;;:::o;28459:222::-;28552:4;28590:2;28579:9;28575:18;28567:26;;28603:71;28671:1;28660:9;28656:17;28647:6;28603:71;:::i;:::-;28557:124;;;;:::o;28687:129::-;28721:6;28748:20;;:::i;:::-;28738:30;;28777:33;28805:4;28797:6;28777:33;:::i;:::-;28728:88;;;:::o;28822:75::-;28855:6;28888:2;28882:9;28872:19;;28862:35;:::o;28903:307::-;28964:4;29054:18;29046:6;29043:30;29040:2;;;29076:18;;:::i;:::-;29040:2;29114:29;29136:6;29114:29;:::i;:::-;29106:37;;29198:4;29192;29188:15;29180:23;;28969:241;;;:::o;29216:308::-;29278:4;29368:18;29360:6;29357:30;29354:2;;;29390:18;;:::i;:::-;29354:2;29428:29;29450:6;29428:29;:::i;:::-;29420:37;;29512:4;29506;29502:15;29494:23;;29283:241;;;:::o;29530:98::-;29581:6;29615:5;29609:12;29599:22;;29588:40;;;:::o;29634:99::-;29686:6;29720:5;29714:12;29704:22;;29693:40;;;:::o;29739:168::-;29822:11;29856:6;29851:3;29844:19;29896:4;29891:3;29887:14;29872:29;;29834:73;;;;:::o;29913:169::-;29997:11;30031:6;30026:3;30019:19;30071:4;30066:3;30062:14;30047:29;;30009:73;;;;:::o;30088:148::-;30190:11;30227:3;30212:18;;30202:34;;;;:::o;30242:305::-;30282:3;30301:20;30319:1;30301:20;:::i;:::-;30296:25;;30335:20;30353:1;30335:20;:::i;:::-;30330:25;;30489:1;30421:66;30417:74;30414:1;30411:81;30408:2;;;30495:18;;:::i;:::-;30408:2;30539:1;30536;30532:9;30525:16;;30286:261;;;;:::o;30553:185::-;30593:1;30610:20;30628:1;30610:20;:::i;:::-;30605:25;;30644:20;30662:1;30644:20;:::i;:::-;30639:25;;30683:1;30673:2;;30688:18;;:::i;:::-;30673:2;30730:1;30727;30723:9;30718:14;;30595:143;;;;:::o;30744:348::-;30784:7;30807:20;30825:1;30807:20;:::i;:::-;30802:25;;30841:20;30859:1;30841:20;:::i;:::-;30836:25;;31029:1;30961:66;30957:74;30954:1;30951:81;30946:1;30939:9;30932:17;30928:105;30925:2;;;31036:18;;:::i;:::-;30925:2;31084:1;31081;31077:9;31066:20;;30792:300;;;;:::o;31098:191::-;31138:4;31158:20;31176:1;31158:20;:::i;:::-;31153:25;;31192:20;31210:1;31192:20;:::i;:::-;31187:25;;31231:1;31228;31225:8;31222:2;;;31236:18;;:::i;:::-;31222:2;31281:1;31278;31274:9;31266:17;;31143:146;;;;:::o;31295:96::-;31332:7;31361:24;31379:5;31361:24;:::i;:::-;31350:35;;31340:51;;;:::o;31397:90::-;31431:7;31474:5;31467:13;31460:21;31449:32;;31439:48;;;:::o;31493:149::-;31529:7;31569:66;31562:5;31558:78;31547:89;;31537:105;;;:::o;31648:126::-;31685:7;31725:42;31718:5;31714:54;31703:65;;31693:81;;;:::o;31780:77::-;31817:7;31846:5;31835:16;;31825:32;;;:::o;31863:154::-;31947:6;31942:3;31937;31924:30;32009:1;32000:6;31995:3;31991:16;31984:27;31914:103;;;:::o;32023:307::-;32091:1;32101:113;32115:6;32112:1;32109:13;32101:113;;;32200:1;32195:3;32191:11;32185:18;32181:1;32176:3;32172:11;32165:39;32137:2;32134:1;32130:10;32125:15;;32101:113;;;32232:6;32229:1;32226:13;32223:2;;;32312:1;32303:6;32298:3;32294:16;32287:27;32223:2;32072:258;;;;:::o;32336:320::-;32380:6;32417:1;32411:4;32407:12;32397:22;;32464:1;32458:4;32454:12;32485:18;32475:2;;32541:4;32533:6;32529:17;32519:27;;32475:2;32603;32595:6;32592:14;32572:18;32569:38;32566:2;;;32622:18;;:::i;:::-;32566:2;32387:269;;;;:::o;32662:281::-;32745:27;32767:4;32745:27;:::i;:::-;32737:6;32733:40;32875:6;32863:10;32860:22;32839:18;32827:10;32824:34;32821:62;32818:2;;;32886:18;;:::i;:::-;32818:2;32926:10;32922:2;32915:22;32705:238;;;:::o;32949:233::-;32988:3;33011:24;33029:5;33011:24;:::i;:::-;33002:33;;33057:66;33050:5;33047:77;33044:2;;;33127:18;;:::i;:::-;33044:2;33174:1;33167:5;33163:13;33156:20;;32992:190;;;:::o;33188:176::-;33220:1;33237:20;33255:1;33237:20;:::i;:::-;33232:25;;33271:20;33289:1;33271:20;:::i;:::-;33266:25;;33310:1;33300:2;;33315:18;;:::i;:::-;33300:2;33356:1;33353;33349:9;33344:14;;33222:142;;;;:::o;33370:180::-;33418:77;33415:1;33408:88;33515:4;33512:1;33505:15;33539:4;33536:1;33529:15;33556:180;33604:77;33601:1;33594:88;33701:4;33698:1;33691:15;33725:4;33722:1;33715:15;33742:180;33790:77;33787:1;33780:88;33887:4;33884:1;33877:15;33911:4;33908:1;33901:15;33928:180;33976:77;33973:1;33966:88;34073:4;34070:1;34063:15;34097:4;34094:1;34087:15;34114:102;34155:6;34206:2;34202:7;34197:2;34190:5;34186:14;34182:28;34172:38;;34162:54;;;:::o;34222:230::-;34362:34;34358:1;34350:6;34346:14;34339:58;34431:13;34426:2;34418:6;34414:15;34407:38;34328:124;:::o;34458:237::-;34598:34;34594:1;34586:6;34582:14;34575:58;34667:20;34662:2;34654:6;34650:15;34643:45;34564:131;:::o;34701:225::-;34841:34;34837:1;34829:6;34825:14;34818:58;34910:8;34905:2;34897:6;34893:15;34886:33;34807:119;:::o;34932:178::-;35072:30;35068:1;35060:6;35056:14;35049:54;35038:72;:::o;35116:223::-;35256:34;35252:1;35244:6;35240:14;35233:58;35325:6;35320:2;35312:6;35308:15;35301:31;35222:117;:::o;35345:175::-;35485:27;35481:1;35473:6;35469:14;35462:51;35451:69;:::o;35526:231::-;35666:34;35662:1;35654:6;35650:14;35643:58;35735:14;35730:2;35722:6;35718:15;35711:39;35632:125;:::o;35763:171::-;35903:23;35899:1;35891:6;35887:14;35880:47;35869:65;:::o;35940:243::-;36080:34;36076:1;36068:6;36064:14;36057:58;36149:26;36144:2;36136:6;36132:15;36125:51;36046:137;:::o;36189:223::-;36329:34;36325:1;36317:6;36313:14;36306:58;36398:6;36393:2;36385:6;36381:15;36374:31;36295:117;:::o;36418:229::-;36558:34;36554:1;36546:6;36542:14;36535:58;36627:12;36622:2;36614:6;36610:15;36603:37;36524:123;:::o;36653:228::-;36793:34;36789:1;36781:6;36777:14;36770:58;36862:11;36857:2;36849:6;36845:15;36838:36;36759:122;:::o;36887:182::-;37027:34;37023:1;37015:6;37011:14;37004:58;36993:76;:::o;37075:180::-;37215:32;37211:1;37203:6;37199:14;37192:56;37181:74;:::o;37261:231::-;37401:34;37397:1;37389:6;37385:14;37378:58;37470:14;37465:2;37457:6;37453:15;37446:39;37367:125;:::o;37498:182::-;37638:34;37634:1;37626:6;37622:14;37615:58;37604:76;:::o;37686:228::-;37826:34;37822:1;37814:6;37810:14;37803:58;37895:11;37890:2;37882:6;37878:15;37871:36;37792:122;:::o;37920:234::-;38060:34;38056:1;38048:6;38044:14;38037:58;38129:17;38124:2;38116:6;38112:15;38105:42;38026:128;:::o;38160:220::-;38300:34;38296:1;38288:6;38284:14;38277:58;38369:3;38364:2;38356:6;38352:15;38345:28;38266:114;:::o;38386:236::-;38526:34;38522:1;38514:6;38510:14;38503:58;38595:19;38590:2;38582:6;38578:15;38571:44;38492:130;:::o;38628:231::-;38768:34;38764:1;38756:6;38752:14;38745:58;38837:14;38832:2;38824:6;38820:15;38813:39;38734:125;:::o;38865:228::-;39005:34;39001:1;38993:6;38989:14;38982:58;39074:11;39069:2;39061:6;39057:15;39050:36;38971:122;:::o;39099:179::-;39239:31;39235:1;39227:6;39223:14;39216:55;39205:73;:::o;39284:122::-;39357:24;39375:5;39357:24;:::i;:::-;39350:5;39347:35;39337:2;;39396:1;39393;39386:12;39337:2;39327:79;:::o;39412:116::-;39482:21;39497:5;39482:21;:::i;:::-;39475:5;39472:32;39462:2;;39518:1;39515;39508:12;39462:2;39452:76;:::o;39534:120::-;39606:23;39623:5;39606:23;:::i;:::-;39599:5;39596:34;39586:2;;39644:1;39641;39634:12;39586:2;39576:78;:::o;39660:122::-;39733:24;39751:5;39733:24;:::i;:::-;39726:5;39723:35;39713:2;;39772:1;39769;39762:12;39713:2;39703:79;:::o

Swarm Source

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