ETH Price: $2,757.16 (+5.06%)

Token

Psytrance Pig (PSYPIG)
 

Overview

Max Total Supply

1,196 PSYPIG

Holders

339

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PSYPIG
0x669B91d9237d8F504472212c6DE23166b469158a
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:
PsytrancePig

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-05
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Counters.sol

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/utils/Context.sol

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: @openzeppelin/contracts/utils/introspection/IERC165.sol

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: @openzeppelin/contracts/token/ERC721/IERC721.sol

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/access/Ownable.sol

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/utils/introspection/ERC165.sol

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/utils/Strings.sol

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol

pragma solidity ^0.8.0;

/**
 * @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: PsytrancePig.sol

pragma solidity ^0.8.0;

/// @author Hammad Ghazi
contract PsytrancePig is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenId;

    uint256 public constant MAX_PSYPIG = 10000;
    uint256 public price = 80000000000000000; //0.08 Ether
    string baseTokenURI;
    bool public saleOpen = false;
    bool public presaleOpen = false;
    mapping(address => bool) public whitelistAddr;

    event PsytrancePigMinted(uint256 totalMinted);

    constructor(string memory baseURI) ERC721("Psytrance Pig", "PSYPIG") {
        setBaseURI(baseURI);
    }

    //Get token Ids of all tokens owned by _owner
    function walletOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

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

    //Close sale if open, open sale if closed
    function flipSaleState() external onlyOwner {
        saleOpen = !saleOpen;
    }

    function flipPresaleState() external onlyOwner {
        presaleOpen = !presaleOpen;
    }

    function withdrawAll() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    function whitelistAddress(address[] calldata users) external onlyOwner {
        for (uint256 i = 0; i < users.length; i++) {
            whitelistAddr[users[i]] = true;
        }
    }

    function presaleMint(uint256 _count) external payable {
        address user = msg.sender;
        require(
            totalSupply() + _count <= MAX_PSYPIG,
            "Exceeds maximum supply of PsytrancePig"
        );
        require(
            whitelistAddr[user] == true,
            "Address not eligible for presale mint"
        );
        require(presaleOpen, "Presale is not open yet");
        require(!saleOpen, "Presale is closed");
        require(
            _count > 0 && _count <= 6,
            "Minimum 1 and Maximum 6 PsytrancePig can be minted per address in presale"
        );
        require(
            6 >= balanceOf(user) + _count,
            "Purchase will exceed max presale mint amount per address"
        );
        require(
            msg.value >= price * _count,
            "Ether sent with this transaction is not correct"
        );

        if (balanceOf(user) + _count == 6) {
            whitelistAddr[user] = false;
        }

        for (uint256 i = 0; i < _count; i++) {
            _mint(user);
        }
    }

    //mint PsytrancePig
    function mintPsytrancePig(uint256 _count) external payable {
        require(
            totalSupply() + _count <= MAX_PSYPIG,
            "Exceeds maximum supply of PsytrancePig"
        );
        require(
            _count > 0,
            "Minimum 1 PsytrancePig has to be minted per transaction"
        );
        if (msg.sender != owner()) {
            require(saleOpen, "Sale is not open yet");
            require(
                _count <= 12,
                "Maximum 12 PsytrancePig can be minted per transaction"
            );
            require(
                msg.value >= price * _count,
                "Ether sent with this transaction is not correct"
            );
        }

        address to = msg.sender;

        for (uint256 i = 0; i < _count; i++) {
            _mint(to);
        }
    }

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

    function _mint(address _to) private {
        _tokenId.increment();
        uint256 tokenId = _tokenId.current();
        _safeMint(_to, tokenId);
        emit PsytrancePigMinted(tokenId);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"PsytrancePigMinted","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_PSYPIG","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":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintPsytrancePig","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistAddr","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"whitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267011c37937e080000600c556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055503480156200005357600080fd5b506040516200523438038062005234833981810160405281019062000079919062000422565b6040518060400160405280600d81526020017f5073797472616e636520506967000000000000000000000000000000000000008152506040518060400160405280600681526020017f50535950494700000000000000000000000000000000000000000000000000008152508160009080519060200190620000fd929190620002f4565b50806001908051906020019062000116929190620002f4565b505050620001396200012d6200015160201b60201c565b6200015960201b60201c565b6200014a816200021f60201b60201c565b506200067a565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200022f6200015160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000255620002ca60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a5906200049a565b60405180910390fd5b80600d9080519060200190620002c6929190620002f4565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003029062000562565b90600052602060002090601f01602090048101928262000326576000855562000372565b82601f106200034157805160ff191683800117855562000372565b8280016001018555821562000372579182015b828111156200037157825182559160200191906001019062000354565b5b50905062000381919062000385565b5090565b5b80821115620003a057600081600090555060010162000386565b5090565b6000620003bb620003b584620004e5565b620004bc565b905082815260208101848484011115620003da57620003d962000631565b5b620003e78482856200052c565b509392505050565b600082601f8301126200040757620004066200062c565b5b815162000419848260208601620003a4565b91505092915050565b6000602082840312156200043b576200043a6200063b565b5b600082015167ffffffffffffffff8111156200045c576200045b62000636565b5b6200046a84828501620003ef565b91505092915050565b6000620004826020836200051b565b91506200048f8262000651565b602082019050919050565b60006020820190508181036000830152620004b58162000473565b9050919050565b6000620004c8620004db565b9050620004d6828262000598565b919050565b6000604051905090565b600067ffffffffffffffff821115620005035762000502620005fd565b5b6200050e8262000640565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200054c5780820151818401526020810190506200052f565b838111156200055c576000848401525b50505050565b600060028204905060018216806200057b57607f821691505b60208210811415620005925762000591620005ce565b5b50919050565b620005a38262000640565b810181811067ffffffffffffffff82111715620005c557620005c4620005fd565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614baa806200068a6000396000f3fe6080604052600436106101ee5760003560e01c8063715018a61161010d578063b31d61b0116100a0578063c905e2461161006f578063c905e246146106ee578063c9b298f114610719578063e985e9c514610735578063f2fde38b14610772578063f81227d41461079b576101ee565b8063b31d61b014610634578063b88d4fde1461065d578063bee6348a14610686578063c87b56dd146106b1576101ee565b806395d89b41116100dc57806395d89b411461058a57806399288dbb146105b5578063a035b1fe146105e0578063a22cb4651461060b576101ee565b8063715018a614610508578063853828b61461051f5780638da5cb5b1461053657806391b7f5ed14610561576101ee565b806334918dfd1161018557806355f804b31161015457806355f804b3146104495780635fefd602146104725780636352211e1461048e57806370a08231146104cb576101ee565b806334918dfd1461038f57806342842e0e146103a6578063438b6300146103cf5780634f6ccce71461040c576101ee565b8063095ea7b3116101c1578063095ea7b3146102d557806318160ddd146102fe57806323b872dd146103295780632f745c5914610352576101ee565b806301ffc9a7146101f357806306fdde0314610230578063080a57f91461025b578063081812fc14610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613334565b6107b2565b6040516102279190613a35565b60405180910390f35b34801561023c57600080fd5b5061024561082c565b6040516102529190613a50565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190613124565b6108be565b60405161028f9190613a35565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba91906133d7565b6108de565b6040516102cc91906139ac565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f791906132a7565b610963565b005b34801561030a57600080fd5b50610313610a7b565b6040516103209190613e12565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190613191565b610a88565b005b34801561035e57600080fd5b50610379600480360381019061037491906132a7565b610ae8565b6040516103869190613e12565b60405180910390f35b34801561039b57600080fd5b506103a4610b8d565b005b3480156103b257600080fd5b506103cd60048036038101906103c89190613191565b610c35565b005b3480156103db57600080fd5b506103f660048036038101906103f19190613124565b610c55565b6040516104039190613a13565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e91906133d7565b610d03565b6040516104409190613e12565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b919061338e565b610d74565b005b61048c600480360381019061048791906133d7565b610e0a565b005b34801561049a57600080fd5b506104b560048036038101906104b091906133d7565b610ff3565b6040516104c291906139ac565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed9190613124565b6110a5565b6040516104ff9190613e12565b60405180910390f35b34801561051457600080fd5b5061051d61115d565b005b34801561052b57600080fd5b506105346111e5565b005b34801561054257600080fd5b5061054b611310565b60405161055891906139ac565b60405180910390f35b34801561056d57600080fd5b50610588600480360381019061058391906133d7565b61133a565b005b34801561059657600080fd5b5061059f6113c0565b6040516105ac9190613a50565b60405180910390f35b3480156105c157600080fd5b506105ca611452565b6040516105d79190613a35565b60405180910390f35b3480156105ec57600080fd5b506105f5611465565b6040516106029190613e12565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d9190613267565b61146b565b005b34801561064057600080fd5b5061065b600480360381019061065691906132e7565b6115ec565b005b34801561066957600080fd5b50610684600480360381019061067f91906131e4565b61170d565b005b34801561069257600080fd5b5061069b61176f565b6040516106a89190613a35565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d391906133d7565b611782565b6040516106e59190613a50565b60405180910390f35b3480156106fa57600080fd5b50610703611829565b6040516107109190613e12565b60405180910390f35b610733600480360381019061072e91906133d7565b61182f565b005b34801561074157600080fd5b5061075c60048036038101906107579190613151565b611b55565b6040516107699190613a35565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190613124565b611be9565b005b3480156107a757600080fd5b506107b0611ce1565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610825575061082482611d89565b5b9050919050565b60606000805461083b90614106565b80601f016020809104026020016040519081016040528092919081815260200182805461086790614106565b80156108b45780601f10610889576101008083540402835291602001916108b4565b820191906000526020600020905b81548152906001019060200180831161089757829003601f168201915b5050505050905090565b600f6020528060005260406000206000915054906101000a900460ff1681565b60006108e982611e6b565b610928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091f90613c52565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096e82610ff3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d690613d32565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109fe611ed7565b73ffffffffffffffffffffffffffffffffffffffff161480610a2d5750610a2c81610a27611ed7565b611b55565b5b610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6390613bd2565b60405180910390fd5b610a768383611edf565b505050565b6000600880549050905090565b610a99610a93611ed7565b82611f98565b610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf90613db2565b60405180910390fd5b610ae3838383612076565b505050565b6000610af3836110a5565b8210610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b90613a72565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b95611ed7565b73ffffffffffffffffffffffffffffffffffffffff16610bb3611310565b73ffffffffffffffffffffffffffffffffffffffff1614610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0090613c92565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b610c508383836040518060200160405280600081525061170d565b505050565b60606000610c62836110a5565b905060008167ffffffffffffffff811115610c8057610c7f6142ce565b5b604051908082528060200260200182016040528015610cae5781602001602082028036833780820191505090505b50905060005b82811015610cf857610cc68582610ae8565b828281518110610cd957610cd861429f565b5b6020026020010181815250508080610cf090614169565b915050610cb4565b508092505050919050565b6000610d0d610a7b565b8210610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590613dd2565b60405180910390fd5b60088281548110610d6257610d6161429f565b5b90600052602060002001549050919050565b610d7c611ed7565b73ffffffffffffffffffffffffffffffffffffffff16610d9a611310565b73ffffffffffffffffffffffffffffffffffffffff1614610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790613c92565b60405180910390fd5b80600d9080519060200190610e06929190612ee2565b5050565b61271081610e16610a7b565b610e209190613f3b565b1115610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5890613ab2565b60405180910390fd5b60008111610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b90613cd2565b60405180910390fd5b610eac611310565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fc257600e60009054906101000a900460ff16610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490613b72565b60405180910390fd5b600c811115610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890613b92565b60405180910390fd5b80600c54610f7f9190613fc2565b341015610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb890613c72565b60405180910390fd5b5b600033905060005b82811015610fee57610fdb826122d2565b8080610fe690614169565b915050610fca565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561109c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109390613c12565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d90613bf2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611165611ed7565b73ffffffffffffffffffffffffffffffffffffffff16611183611310565b73ffffffffffffffffffffffffffffffffffffffff16146111d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d090613c92565b60405180910390fd5b6111e3600061232f565b565b6111ed611ed7565b73ffffffffffffffffffffffffffffffffffffffff1661120b611310565b73ffffffffffffffffffffffffffffffffffffffff1614611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890613c92565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161128790613997565b60006040518083038185875af1925050503d80600081146112c4576040519150601f19603f3d011682016040523d82523d6000602084013e6112c9565b606091505b505090508061130d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130490613d92565b60405180910390fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611342611ed7565b73ffffffffffffffffffffffffffffffffffffffff16611360611310565b73ffffffffffffffffffffffffffffffffffffffff16146113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad90613c92565b60405180910390fd5b80600c8190555050565b6060600180546113cf90614106565b80601f01602080910402602001604051908101604052809291908181526020018280546113fb90614106565b80156114485780601f1061141d57610100808354040283529160200191611448565b820191906000526020600020905b81548152906001019060200180831161142b57829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1681565b600c5481565b611473611ed7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890613b52565b60405180910390fd5b80600560006114ee611ed7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661159b611ed7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115e09190613a35565b60405180910390a35050565b6115f4611ed7565b73ffffffffffffffffffffffffffffffffffffffff16611612611310565b73ffffffffffffffffffffffffffffffffffffffff1614611668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165f90613c92565b60405180910390fd5b60005b82829050811015611708576001600f600085858581811061168f5761168e61429f565b5b90506020020160208101906116a49190613124565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061170090614169565b91505061166b565b505050565b61171e611718611ed7565b83611f98565b61175d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175490613db2565b60405180910390fd5b611769848484846123f5565b50505050565b600e60019054906101000a900460ff1681565b606061178d82611e6b565b6117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c390613cf2565b60405180910390fd5b60006117d6612451565b905060008151116117f65760405180602001604052806000815250611821565b80611800846124e3565b604051602001611811929190613973565b6040516020818303038152906040525b915050919050565b61271081565b600033905061271082611840610a7b565b61184a9190613f3b565b111561188b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188290613ab2565b60405180910390fd5b60011515600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461191e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191590613d72565b60405180910390fd5b600e60019054906101000a900460ff1661196d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196490613d12565b60405180910390fd5b600e60009054906101000a900460ff16156119bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b490613b12565b60405180910390fd5b6000821180156119ce575060068211155b611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490613d52565b60405180910390fd5b81611a17826110a5565b611a219190613f3b565b60061015611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90613df2565b60405180910390fd5b81600c54611a729190613fc2565b341015611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab90613c72565b60405180910390fd5b600682611ac0836110a5565b611aca9190613f3b565b1415611b29576000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60005b82811015611b5057611b3d826122d2565b8080611b4890614169565b915050611b2c565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bf1611ed7565b73ffffffffffffffffffffffffffffffffffffffff16611c0f611310565b73ffffffffffffffffffffffffffffffffffffffff1614611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c90613c92565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc90613ad2565b60405180910390fd5b611cde8161232f565b50565b611ce9611ed7565b73ffffffffffffffffffffffffffffffffffffffff16611d07611310565b73ffffffffffffffffffffffffffffffffffffffff1614611d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5490613c92565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e5457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e645750611e6382612644565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f5283610ff3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611fa382611e6b565b611fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd990613bb2565b60405180910390fd5b6000611fed83610ff3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061205c57508373ffffffffffffffffffffffffffffffffffffffff16612044846108de565b73ffffffffffffffffffffffffffffffffffffffff16145b8061206d575061206c8185611b55565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661209682610ff3565b73ffffffffffffffffffffffffffffffffffffffff16146120ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e390613cb2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561215c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215390613b32565b60405180910390fd5b6121678383836126ae565b612172600082611edf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121c2919061401c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122199190613f3b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6122dc600b6127c2565b60006122e8600b6127d8565b90506122f482826127e6565b7f50949cc23f9780cd1df2c9ae4fb00e616a9c1c9b8f9d9c05f2d1dbc973160870816040516123239190613e12565b60405180910390a15050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612400848484612076565b61240c84848484612804565b61244b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244290613a92565b60405180910390fd5b50505050565b6060600d805461246090614106565b80601f016020809104026020016040519081016040528092919081815260200182805461248c90614106565b80156124d95780601f106124ae576101008083540402835291602001916124d9565b820191906000526020600020905b8154815290600101906020018083116124bc57829003601f168201915b5050505050905090565b6060600082141561252b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061263f565b600082905060005b6000821461255d57808061254690614169565b915050600a826125569190613f91565b9150612533565b60008167ffffffffffffffff811115612579576125786142ce565b5b6040519080825280601f01601f1916602001820160405280156125ab5781602001600182028036833780820191505090505b5090505b60008514612638576001826125c4919061401c565b9150600a856125d391906141b2565b60306125df9190613f3b565b60f81b8183815181106125f5576125f461429f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126319190613f91565b94506125af565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126b983838361299b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126fc576126f7816129a0565b61273b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461273a5761273983826129e9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561277e5761277981612b56565b6127bd565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146127bc576127bb8282612c27565b5b5b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b612800828260405180602001604052806000815250612ca6565b5050565b60006128258473ffffffffffffffffffffffffffffffffffffffff16612d01565b1561298e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261284e611ed7565b8786866040518563ffffffff1660e01b815260040161287094939291906139c7565b602060405180830381600087803b15801561288a57600080fd5b505af19250505080156128bb57506040513d601f19601f820116820180604052508101906128b89190613361565b60015b61293e573d80600081146128eb576040519150601f19603f3d011682016040523d82523d6000602084013e6128f0565b606091505b50600081511415612936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292d90613a92565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612993565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016129f6846110a5565b612a00919061401c565b9050600060076000848152602001908152602001600020549050818114612ae5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b6a919061401c565b9050600060096000848152602001908152602001600020549050600060088381548110612b9a57612b9961429f565b5b906000526020600020015490508060088381548110612bbc57612bbb61429f565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c0b57612c0a614270565b5b6001900381819060005260206000200160009055905550505050565b6000612c32836110a5565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b612cb08383612d14565b612cbd6000848484612804565b612cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf390613a92565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7b90613c32565b60405180910390fd5b612d8d81611e6b565b15612dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc490613af2565b60405180910390fd5b612dd9600083836126ae565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e299190613f3b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612eee90614106565b90600052602060002090601f016020900481019282612f105760008555612f57565b82601f10612f2957805160ff1916838001178555612f57565b82800160010185558215612f57579182015b82811115612f56578251825591602001919060010190612f3b565b5b509050612f649190612f68565b5090565b5b80821115612f81576000816000905550600101612f69565b5090565b6000612f98612f9384613e52565b613e2d565b905082815260208101848484011115612fb457612fb361430c565b5b612fbf8482856140c4565b509392505050565b6000612fda612fd584613e83565b613e2d565b905082815260208101848484011115612ff657612ff561430c565b5b6130018482856140c4565b509392505050565b60008135905061301881614b18565b92915050565b60008083601f84011261303457613033614302565b5b8235905067ffffffffffffffff811115613051576130506142fd565b5b60208301915083602082028301111561306d5761306c614307565b5b9250929050565b60008135905061308381614b2f565b92915050565b60008135905061309881614b46565b92915050565b6000815190506130ad81614b46565b92915050565b600082601f8301126130c8576130c7614302565b5b81356130d8848260208601612f85565b91505092915050565b600082601f8301126130f6576130f5614302565b5b8135613106848260208601612fc7565b91505092915050565b60008135905061311e81614b5d565b92915050565b60006020828403121561313a57613139614316565b5b600061314884828501613009565b91505092915050565b6000806040838503121561316857613167614316565b5b600061317685828601613009565b925050602061318785828601613009565b9150509250929050565b6000806000606084860312156131aa576131a9614316565b5b60006131b886828701613009565b93505060206131c986828701613009565b92505060406131da8682870161310f565b9150509250925092565b600080600080608085870312156131fe576131fd614316565b5b600061320c87828801613009565b945050602061321d87828801613009565b935050604061322e8782880161310f565b925050606085013567ffffffffffffffff81111561324f5761324e614311565b5b61325b878288016130b3565b91505092959194509250565b6000806040838503121561327e5761327d614316565b5b600061328c85828601613009565b925050602061329d85828601613074565b9150509250929050565b600080604083850312156132be576132bd614316565b5b60006132cc85828601613009565b92505060206132dd8582860161310f565b9150509250929050565b600080602083850312156132fe576132fd614316565b5b600083013567ffffffffffffffff81111561331c5761331b614311565b5b6133288582860161301e565b92509250509250929050565b60006020828403121561334a57613349614316565b5b600061335884828501613089565b91505092915050565b60006020828403121561337757613376614316565b5b60006133858482850161309e565b91505092915050565b6000602082840312156133a4576133a3614316565b5b600082013567ffffffffffffffff8111156133c2576133c1614311565b5b6133ce848285016130e1565b91505092915050565b6000602082840312156133ed576133ec614316565b5b60006133fb8482850161310f565b91505092915050565b60006134108383613955565b60208301905092915050565b61342581614050565b82525050565b600061343682613ec4565b6134408185613ef2565b935061344b83613eb4565b8060005b8381101561347c5781516134638882613404565b975061346e83613ee5565b92505060018101905061344f565b5085935050505092915050565b61349281614062565b82525050565b60006134a382613ecf565b6134ad8185613f03565b93506134bd8185602086016140d3565b6134c68161431b565b840191505092915050565b60006134dc82613eda565b6134e68185613f1f565b93506134f68185602086016140d3565b6134ff8161431b565b840191505092915050565b600061351582613eda565b61351f8185613f30565b935061352f8185602086016140d3565b80840191505092915050565b6000613548602b83613f1f565b91506135538261432c565b604082019050919050565b600061356b603283613f1f565b91506135768261437b565b604082019050919050565b600061358e602683613f1f565b9150613599826143ca565b604082019050919050565b60006135b1602683613f1f565b91506135bc82614419565b604082019050919050565b60006135d4601c83613f1f565b91506135df82614468565b602082019050919050565b60006135f7601183613f1f565b915061360282614491565b602082019050919050565b600061361a602483613f1f565b9150613625826144ba565b604082019050919050565b600061363d601983613f1f565b915061364882614509565b602082019050919050565b6000613660601483613f1f565b915061366b82614532565b602082019050919050565b6000613683603583613f1f565b915061368e8261455b565b604082019050919050565b60006136a6602c83613f1f565b91506136b1826145aa565b604082019050919050565b60006136c9603883613f1f565b91506136d4826145f9565b604082019050919050565b60006136ec602a83613f1f565b91506136f782614648565b604082019050919050565b600061370f602983613f1f565b915061371a82614697565b604082019050919050565b6000613732602083613f1f565b915061373d826146e6565b602082019050919050565b6000613755602c83613f1f565b91506137608261470f565b604082019050919050565b6000613778602f83613f1f565b91506137838261475e565b604082019050919050565b600061379b602083613f1f565b91506137a6826147ad565b602082019050919050565b60006137be602983613f1f565b91506137c9826147d6565b604082019050919050565b60006137e1603783613f1f565b91506137ec82614825565b604082019050919050565b6000613804602f83613f1f565b915061380f82614874565b604082019050919050565b6000613827601783613f1f565b9150613832826148c3565b602082019050919050565b600061384a602183613f1f565b9150613855826148ec565b604082019050919050565b600061386d604983613f1f565b91506138788261493b565b606082019050919050565b6000613890602583613f1f565b915061389b826149b0565b604082019050919050565b60006138b3600083613f14565b91506138be826149ff565b600082019050919050565b60006138d6601083613f1f565b91506138e182614a02565b602082019050919050565b60006138f9603183613f1f565b915061390482614a2b565b604082019050919050565b600061391c602c83613f1f565b915061392782614a7a565b604082019050919050565b600061393f603883613f1f565b915061394a82614ac9565b604082019050919050565b61395e816140ba565b82525050565b61396d816140ba565b82525050565b600061397f828561350a565b915061398b828461350a565b91508190509392505050565b60006139a2826138a6565b9150819050919050565b60006020820190506139c1600083018461341c565b92915050565b60006080820190506139dc600083018761341c565b6139e9602083018661341c565b6139f66040830185613964565b8181036060830152613a088184613498565b905095945050505050565b60006020820190508181036000830152613a2d818461342b565b905092915050565b6000602082019050613a4a6000830184613489565b92915050565b60006020820190508181036000830152613a6a81846134d1565b905092915050565b60006020820190508181036000830152613a8b8161353b565b9050919050565b60006020820190508181036000830152613aab8161355e565b9050919050565b60006020820190508181036000830152613acb81613581565b9050919050565b60006020820190508181036000830152613aeb816135a4565b9050919050565b60006020820190508181036000830152613b0b816135c7565b9050919050565b60006020820190508181036000830152613b2b816135ea565b9050919050565b60006020820190508181036000830152613b4b8161360d565b9050919050565b60006020820190508181036000830152613b6b81613630565b9050919050565b60006020820190508181036000830152613b8b81613653565b9050919050565b60006020820190508181036000830152613bab81613676565b9050919050565b60006020820190508181036000830152613bcb81613699565b9050919050565b60006020820190508181036000830152613beb816136bc565b9050919050565b60006020820190508181036000830152613c0b816136df565b9050919050565b60006020820190508181036000830152613c2b81613702565b9050919050565b60006020820190508181036000830152613c4b81613725565b9050919050565b60006020820190508181036000830152613c6b81613748565b9050919050565b60006020820190508181036000830152613c8b8161376b565b9050919050565b60006020820190508181036000830152613cab8161378e565b9050919050565b60006020820190508181036000830152613ccb816137b1565b9050919050565b60006020820190508181036000830152613ceb816137d4565b9050919050565b60006020820190508181036000830152613d0b816137f7565b9050919050565b60006020820190508181036000830152613d2b8161381a565b9050919050565b60006020820190508181036000830152613d4b8161383d565b9050919050565b60006020820190508181036000830152613d6b81613860565b9050919050565b60006020820190508181036000830152613d8b81613883565b9050919050565b60006020820190508181036000830152613dab816138c9565b9050919050565b60006020820190508181036000830152613dcb816138ec565b9050919050565b60006020820190508181036000830152613deb8161390f565b9050919050565b60006020820190508181036000830152613e0b81613932565b9050919050565b6000602082019050613e276000830184613964565b92915050565b6000613e37613e48565b9050613e438282614138565b919050565b6000604051905090565b600067ffffffffffffffff821115613e6d57613e6c6142ce565b5b613e768261431b565b9050602081019050919050565b600067ffffffffffffffff821115613e9e57613e9d6142ce565b5b613ea78261431b565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f46826140ba565b9150613f51836140ba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f8657613f856141e3565b5b828201905092915050565b6000613f9c826140ba565b9150613fa7836140ba565b925082613fb757613fb6614212565b5b828204905092915050565b6000613fcd826140ba565b9150613fd8836140ba565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614011576140106141e3565b5b828202905092915050565b6000614027826140ba565b9150614032836140ba565b925082821015614045576140446141e3565b5b828203905092915050565b600061405b8261409a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140f15780820151818401526020810190506140d6565b83811115614100576000848401525b50505050565b6000600282049050600182168061411e57607f821691505b6020821081141561413257614131614241565b5b50919050565b6141418261431b565b810181811067ffffffffffffffff821117156141605761415f6142ce565b5b80604052505050565b6000614174826140ba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141a7576141a66141e3565b5b600182019050919050565b60006141bd826140ba565b91506141c8836140ba565b9250826141d8576141d7614212565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c79206f662050737974726160008201527f6e63655069670000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f50726573616c6520697320636c6f736564000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f4d6178696d756d203132205073797472616e63655069672063616e206265206d60008201527f696e74656420706572207472616e73616374696f6e0000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d2031205073797472616e63655069672068617320746f20626560008201527f206d696e74656420706572207472616e73616374696f6e000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f50726573616c65206973206e6f74206f70656e20796574000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d203120616e64204d6178696d756d2036205073797472616e6360008201527f655069672063616e206265206d696e746564207065722061646472657373206960208201527f6e2070726573616c650000000000000000000000000000000000000000000000604082015250565b7f41646472657373206e6f7420656c696769626c6520666f722070726573616c6560008201527f206d696e74000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f50757263686173652077696c6c20657863656564206d61782070726573616c6560008201527f206d696e7420616d6f756e742070657220616464726573730000000000000000602082015250565b614b2181614050565b8114614b2c57600080fd5b50565b614b3881614062565b8114614b4357600080fd5b50565b614b4f8161406e565b8114614b5a57600080fd5b50565b614b66816140ba565b8114614b7157600080fd5b5056fea2646970667358221220ed2d8f10258be31888618e80b357889a252e058c4cfd2a61dcc9bf5b55929a5a64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c8063715018a61161010d578063b31d61b0116100a0578063c905e2461161006f578063c905e246146106ee578063c9b298f114610719578063e985e9c514610735578063f2fde38b14610772578063f81227d41461079b576101ee565b8063b31d61b014610634578063b88d4fde1461065d578063bee6348a14610686578063c87b56dd146106b1576101ee565b806395d89b41116100dc57806395d89b411461058a57806399288dbb146105b5578063a035b1fe146105e0578063a22cb4651461060b576101ee565b8063715018a614610508578063853828b61461051f5780638da5cb5b1461053657806391b7f5ed14610561576101ee565b806334918dfd1161018557806355f804b31161015457806355f804b3146104495780635fefd602146104725780636352211e1461048e57806370a08231146104cb576101ee565b806334918dfd1461038f57806342842e0e146103a6578063438b6300146103cf5780634f6ccce71461040c576101ee565b8063095ea7b3116101c1578063095ea7b3146102d557806318160ddd146102fe57806323b872dd146103295780632f745c5914610352576101ee565b806301ffc9a7146101f357806306fdde0314610230578063080a57f91461025b578063081812fc14610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613334565b6107b2565b6040516102279190613a35565b60405180910390f35b34801561023c57600080fd5b5061024561082c565b6040516102529190613a50565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190613124565b6108be565b60405161028f9190613a35565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba91906133d7565b6108de565b6040516102cc91906139ac565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f791906132a7565b610963565b005b34801561030a57600080fd5b50610313610a7b565b6040516103209190613e12565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190613191565b610a88565b005b34801561035e57600080fd5b50610379600480360381019061037491906132a7565b610ae8565b6040516103869190613e12565b60405180910390f35b34801561039b57600080fd5b506103a4610b8d565b005b3480156103b257600080fd5b506103cd60048036038101906103c89190613191565b610c35565b005b3480156103db57600080fd5b506103f660048036038101906103f19190613124565b610c55565b6040516104039190613a13565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e91906133d7565b610d03565b6040516104409190613e12565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b919061338e565b610d74565b005b61048c600480360381019061048791906133d7565b610e0a565b005b34801561049a57600080fd5b506104b560048036038101906104b091906133d7565b610ff3565b6040516104c291906139ac565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed9190613124565b6110a5565b6040516104ff9190613e12565b60405180910390f35b34801561051457600080fd5b5061051d61115d565b005b34801561052b57600080fd5b506105346111e5565b005b34801561054257600080fd5b5061054b611310565b60405161055891906139ac565b60405180910390f35b34801561056d57600080fd5b50610588600480360381019061058391906133d7565b61133a565b005b34801561059657600080fd5b5061059f6113c0565b6040516105ac9190613a50565b60405180910390f35b3480156105c157600080fd5b506105ca611452565b6040516105d79190613a35565b60405180910390f35b3480156105ec57600080fd5b506105f5611465565b6040516106029190613e12565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d9190613267565b61146b565b005b34801561064057600080fd5b5061065b600480360381019061065691906132e7565b6115ec565b005b34801561066957600080fd5b50610684600480360381019061067f91906131e4565b61170d565b005b34801561069257600080fd5b5061069b61176f565b6040516106a89190613a35565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d391906133d7565b611782565b6040516106e59190613a50565b60405180910390f35b3480156106fa57600080fd5b50610703611829565b6040516107109190613e12565b60405180910390f35b610733600480360381019061072e91906133d7565b61182f565b005b34801561074157600080fd5b5061075c60048036038101906107579190613151565b611b55565b6040516107699190613a35565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190613124565b611be9565b005b3480156107a757600080fd5b506107b0611ce1565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610825575061082482611d89565b5b9050919050565b60606000805461083b90614106565b80601f016020809104026020016040519081016040528092919081815260200182805461086790614106565b80156108b45780601f10610889576101008083540402835291602001916108b4565b820191906000526020600020905b81548152906001019060200180831161089757829003601f168201915b5050505050905090565b600f6020528060005260406000206000915054906101000a900460ff1681565b60006108e982611e6b565b610928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091f90613c52565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096e82610ff3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d690613d32565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109fe611ed7565b73ffffffffffffffffffffffffffffffffffffffff161480610a2d5750610a2c81610a27611ed7565b611b55565b5b610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6390613bd2565b60405180910390fd5b610a768383611edf565b505050565b6000600880549050905090565b610a99610a93611ed7565b82611f98565b610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf90613db2565b60405180910390fd5b610ae3838383612076565b505050565b6000610af3836110a5565b8210610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b90613a72565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b95611ed7565b73ffffffffffffffffffffffffffffffffffffffff16610bb3611310565b73ffffffffffffffffffffffffffffffffffffffff1614610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0090613c92565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b610c508383836040518060200160405280600081525061170d565b505050565b60606000610c62836110a5565b905060008167ffffffffffffffff811115610c8057610c7f6142ce565b5b604051908082528060200260200182016040528015610cae5781602001602082028036833780820191505090505b50905060005b82811015610cf857610cc68582610ae8565b828281518110610cd957610cd861429f565b5b6020026020010181815250508080610cf090614169565b915050610cb4565b508092505050919050565b6000610d0d610a7b565b8210610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590613dd2565b60405180910390fd5b60088281548110610d6257610d6161429f565b5b90600052602060002001549050919050565b610d7c611ed7565b73ffffffffffffffffffffffffffffffffffffffff16610d9a611310565b73ffffffffffffffffffffffffffffffffffffffff1614610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790613c92565b60405180910390fd5b80600d9080519060200190610e06929190612ee2565b5050565b61271081610e16610a7b565b610e209190613f3b565b1115610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5890613ab2565b60405180910390fd5b60008111610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b90613cd2565b60405180910390fd5b610eac611310565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fc257600e60009054906101000a900460ff16610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490613b72565b60405180910390fd5b600c811115610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890613b92565b60405180910390fd5b80600c54610f7f9190613fc2565b341015610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb890613c72565b60405180910390fd5b5b600033905060005b82811015610fee57610fdb826122d2565b8080610fe690614169565b915050610fca565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561109c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109390613c12565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d90613bf2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611165611ed7565b73ffffffffffffffffffffffffffffffffffffffff16611183611310565b73ffffffffffffffffffffffffffffffffffffffff16146111d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d090613c92565b60405180910390fd5b6111e3600061232f565b565b6111ed611ed7565b73ffffffffffffffffffffffffffffffffffffffff1661120b611310565b73ffffffffffffffffffffffffffffffffffffffff1614611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890613c92565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161128790613997565b60006040518083038185875af1925050503d80600081146112c4576040519150601f19603f3d011682016040523d82523d6000602084013e6112c9565b606091505b505090508061130d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130490613d92565b60405180910390fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611342611ed7565b73ffffffffffffffffffffffffffffffffffffffff16611360611310565b73ffffffffffffffffffffffffffffffffffffffff16146113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad90613c92565b60405180910390fd5b80600c8190555050565b6060600180546113cf90614106565b80601f01602080910402602001604051908101604052809291908181526020018280546113fb90614106565b80156114485780601f1061141d57610100808354040283529160200191611448565b820191906000526020600020905b81548152906001019060200180831161142b57829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1681565b600c5481565b611473611ed7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890613b52565b60405180910390fd5b80600560006114ee611ed7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661159b611ed7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115e09190613a35565b60405180910390a35050565b6115f4611ed7565b73ffffffffffffffffffffffffffffffffffffffff16611612611310565b73ffffffffffffffffffffffffffffffffffffffff1614611668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165f90613c92565b60405180910390fd5b60005b82829050811015611708576001600f600085858581811061168f5761168e61429f565b5b90506020020160208101906116a49190613124565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061170090614169565b91505061166b565b505050565b61171e611718611ed7565b83611f98565b61175d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175490613db2565b60405180910390fd5b611769848484846123f5565b50505050565b600e60019054906101000a900460ff1681565b606061178d82611e6b565b6117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c390613cf2565b60405180910390fd5b60006117d6612451565b905060008151116117f65760405180602001604052806000815250611821565b80611800846124e3565b604051602001611811929190613973565b6040516020818303038152906040525b915050919050565b61271081565b600033905061271082611840610a7b565b61184a9190613f3b565b111561188b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188290613ab2565b60405180910390fd5b60011515600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461191e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191590613d72565b60405180910390fd5b600e60019054906101000a900460ff1661196d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196490613d12565b60405180910390fd5b600e60009054906101000a900460ff16156119bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b490613b12565b60405180910390fd5b6000821180156119ce575060068211155b611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490613d52565b60405180910390fd5b81611a17826110a5565b611a219190613f3b565b60061015611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90613df2565b60405180910390fd5b81600c54611a729190613fc2565b341015611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab90613c72565b60405180910390fd5b600682611ac0836110a5565b611aca9190613f3b565b1415611b29576000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60005b82811015611b5057611b3d826122d2565b8080611b4890614169565b915050611b2c565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bf1611ed7565b73ffffffffffffffffffffffffffffffffffffffff16611c0f611310565b73ffffffffffffffffffffffffffffffffffffffff1614611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c90613c92565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc90613ad2565b60405180910390fd5b611cde8161232f565b50565b611ce9611ed7565b73ffffffffffffffffffffffffffffffffffffffff16611d07611310565b73ffffffffffffffffffffffffffffffffffffffff1614611d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5490613c92565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e5457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e645750611e6382612644565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f5283610ff3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611fa382611e6b565b611fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd990613bb2565b60405180910390fd5b6000611fed83610ff3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061205c57508373ffffffffffffffffffffffffffffffffffffffff16612044846108de565b73ffffffffffffffffffffffffffffffffffffffff16145b8061206d575061206c8185611b55565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661209682610ff3565b73ffffffffffffffffffffffffffffffffffffffff16146120ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e390613cb2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561215c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215390613b32565b60405180910390fd5b6121678383836126ae565b612172600082611edf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121c2919061401c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122199190613f3b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6122dc600b6127c2565b60006122e8600b6127d8565b90506122f482826127e6565b7f50949cc23f9780cd1df2c9ae4fb00e616a9c1c9b8f9d9c05f2d1dbc973160870816040516123239190613e12565b60405180910390a15050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612400848484612076565b61240c84848484612804565b61244b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244290613a92565b60405180910390fd5b50505050565b6060600d805461246090614106565b80601f016020809104026020016040519081016040528092919081815260200182805461248c90614106565b80156124d95780601f106124ae576101008083540402835291602001916124d9565b820191906000526020600020905b8154815290600101906020018083116124bc57829003601f168201915b5050505050905090565b6060600082141561252b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061263f565b600082905060005b6000821461255d57808061254690614169565b915050600a826125569190613f91565b9150612533565b60008167ffffffffffffffff811115612579576125786142ce565b5b6040519080825280601f01601f1916602001820160405280156125ab5781602001600182028036833780820191505090505b5090505b60008514612638576001826125c4919061401c565b9150600a856125d391906141b2565b60306125df9190613f3b565b60f81b8183815181106125f5576125f461429f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126319190613f91565b94506125af565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126b983838361299b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126fc576126f7816129a0565b61273b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461273a5761273983826129e9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561277e5761277981612b56565b6127bd565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146127bc576127bb8282612c27565b5b5b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b612800828260405180602001604052806000815250612ca6565b5050565b60006128258473ffffffffffffffffffffffffffffffffffffffff16612d01565b1561298e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261284e611ed7565b8786866040518563ffffffff1660e01b815260040161287094939291906139c7565b602060405180830381600087803b15801561288a57600080fd5b505af19250505080156128bb57506040513d601f19601f820116820180604052508101906128b89190613361565b60015b61293e573d80600081146128eb576040519150601f19603f3d011682016040523d82523d6000602084013e6128f0565b606091505b50600081511415612936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292d90613a92565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612993565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016129f6846110a5565b612a00919061401c565b9050600060076000848152602001908152602001600020549050818114612ae5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b6a919061401c565b9050600060096000848152602001908152602001600020549050600060088381548110612b9a57612b9961429f565b5b906000526020600020015490508060088381548110612bbc57612bbb61429f565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c0b57612c0a614270565b5b6001900381819060005260206000200160009055905550505050565b6000612c32836110a5565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b612cb08383612d14565b612cbd6000848484612804565b612cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf390613a92565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7b90613c32565b60405180910390fd5b612d8d81611e6b565b15612dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc490613af2565b60405180910390fd5b612dd9600083836126ae565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e299190613f3b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612eee90614106565b90600052602060002090601f016020900481019282612f105760008555612f57565b82601f10612f2957805160ff1916838001178555612f57565b82800160010185558215612f57579182015b82811115612f56578251825591602001919060010190612f3b565b5b509050612f649190612f68565b5090565b5b80821115612f81576000816000905550600101612f69565b5090565b6000612f98612f9384613e52565b613e2d565b905082815260208101848484011115612fb457612fb361430c565b5b612fbf8482856140c4565b509392505050565b6000612fda612fd584613e83565b613e2d565b905082815260208101848484011115612ff657612ff561430c565b5b6130018482856140c4565b509392505050565b60008135905061301881614b18565b92915050565b60008083601f84011261303457613033614302565b5b8235905067ffffffffffffffff811115613051576130506142fd565b5b60208301915083602082028301111561306d5761306c614307565b5b9250929050565b60008135905061308381614b2f565b92915050565b60008135905061309881614b46565b92915050565b6000815190506130ad81614b46565b92915050565b600082601f8301126130c8576130c7614302565b5b81356130d8848260208601612f85565b91505092915050565b600082601f8301126130f6576130f5614302565b5b8135613106848260208601612fc7565b91505092915050565b60008135905061311e81614b5d565b92915050565b60006020828403121561313a57613139614316565b5b600061314884828501613009565b91505092915050565b6000806040838503121561316857613167614316565b5b600061317685828601613009565b925050602061318785828601613009565b9150509250929050565b6000806000606084860312156131aa576131a9614316565b5b60006131b886828701613009565b93505060206131c986828701613009565b92505060406131da8682870161310f565b9150509250925092565b600080600080608085870312156131fe576131fd614316565b5b600061320c87828801613009565b945050602061321d87828801613009565b935050604061322e8782880161310f565b925050606085013567ffffffffffffffff81111561324f5761324e614311565b5b61325b878288016130b3565b91505092959194509250565b6000806040838503121561327e5761327d614316565b5b600061328c85828601613009565b925050602061329d85828601613074565b9150509250929050565b600080604083850312156132be576132bd614316565b5b60006132cc85828601613009565b92505060206132dd8582860161310f565b9150509250929050565b600080602083850312156132fe576132fd614316565b5b600083013567ffffffffffffffff81111561331c5761331b614311565b5b6133288582860161301e565b92509250509250929050565b60006020828403121561334a57613349614316565b5b600061335884828501613089565b91505092915050565b60006020828403121561337757613376614316565b5b60006133858482850161309e565b91505092915050565b6000602082840312156133a4576133a3614316565b5b600082013567ffffffffffffffff8111156133c2576133c1614311565b5b6133ce848285016130e1565b91505092915050565b6000602082840312156133ed576133ec614316565b5b60006133fb8482850161310f565b91505092915050565b60006134108383613955565b60208301905092915050565b61342581614050565b82525050565b600061343682613ec4565b6134408185613ef2565b935061344b83613eb4565b8060005b8381101561347c5781516134638882613404565b975061346e83613ee5565b92505060018101905061344f565b5085935050505092915050565b61349281614062565b82525050565b60006134a382613ecf565b6134ad8185613f03565b93506134bd8185602086016140d3565b6134c68161431b565b840191505092915050565b60006134dc82613eda565b6134e68185613f1f565b93506134f68185602086016140d3565b6134ff8161431b565b840191505092915050565b600061351582613eda565b61351f8185613f30565b935061352f8185602086016140d3565b80840191505092915050565b6000613548602b83613f1f565b91506135538261432c565b604082019050919050565b600061356b603283613f1f565b91506135768261437b565b604082019050919050565b600061358e602683613f1f565b9150613599826143ca565b604082019050919050565b60006135b1602683613f1f565b91506135bc82614419565b604082019050919050565b60006135d4601c83613f1f565b91506135df82614468565b602082019050919050565b60006135f7601183613f1f565b915061360282614491565b602082019050919050565b600061361a602483613f1f565b9150613625826144ba565b604082019050919050565b600061363d601983613f1f565b915061364882614509565b602082019050919050565b6000613660601483613f1f565b915061366b82614532565b602082019050919050565b6000613683603583613f1f565b915061368e8261455b565b604082019050919050565b60006136a6602c83613f1f565b91506136b1826145aa565b604082019050919050565b60006136c9603883613f1f565b91506136d4826145f9565b604082019050919050565b60006136ec602a83613f1f565b91506136f782614648565b604082019050919050565b600061370f602983613f1f565b915061371a82614697565b604082019050919050565b6000613732602083613f1f565b915061373d826146e6565b602082019050919050565b6000613755602c83613f1f565b91506137608261470f565b604082019050919050565b6000613778602f83613f1f565b91506137838261475e565b604082019050919050565b600061379b602083613f1f565b91506137a6826147ad565b602082019050919050565b60006137be602983613f1f565b91506137c9826147d6565b604082019050919050565b60006137e1603783613f1f565b91506137ec82614825565b604082019050919050565b6000613804602f83613f1f565b915061380f82614874565b604082019050919050565b6000613827601783613f1f565b9150613832826148c3565b602082019050919050565b600061384a602183613f1f565b9150613855826148ec565b604082019050919050565b600061386d604983613f1f565b91506138788261493b565b606082019050919050565b6000613890602583613f1f565b915061389b826149b0565b604082019050919050565b60006138b3600083613f14565b91506138be826149ff565b600082019050919050565b60006138d6601083613f1f565b91506138e182614a02565b602082019050919050565b60006138f9603183613f1f565b915061390482614a2b565b604082019050919050565b600061391c602c83613f1f565b915061392782614a7a565b604082019050919050565b600061393f603883613f1f565b915061394a82614ac9565b604082019050919050565b61395e816140ba565b82525050565b61396d816140ba565b82525050565b600061397f828561350a565b915061398b828461350a565b91508190509392505050565b60006139a2826138a6565b9150819050919050565b60006020820190506139c1600083018461341c565b92915050565b60006080820190506139dc600083018761341c565b6139e9602083018661341c565b6139f66040830185613964565b8181036060830152613a088184613498565b905095945050505050565b60006020820190508181036000830152613a2d818461342b565b905092915050565b6000602082019050613a4a6000830184613489565b92915050565b60006020820190508181036000830152613a6a81846134d1565b905092915050565b60006020820190508181036000830152613a8b8161353b565b9050919050565b60006020820190508181036000830152613aab8161355e565b9050919050565b60006020820190508181036000830152613acb81613581565b9050919050565b60006020820190508181036000830152613aeb816135a4565b9050919050565b60006020820190508181036000830152613b0b816135c7565b9050919050565b60006020820190508181036000830152613b2b816135ea565b9050919050565b60006020820190508181036000830152613b4b8161360d565b9050919050565b60006020820190508181036000830152613b6b81613630565b9050919050565b60006020820190508181036000830152613b8b81613653565b9050919050565b60006020820190508181036000830152613bab81613676565b9050919050565b60006020820190508181036000830152613bcb81613699565b9050919050565b60006020820190508181036000830152613beb816136bc565b9050919050565b60006020820190508181036000830152613c0b816136df565b9050919050565b60006020820190508181036000830152613c2b81613702565b9050919050565b60006020820190508181036000830152613c4b81613725565b9050919050565b60006020820190508181036000830152613c6b81613748565b9050919050565b60006020820190508181036000830152613c8b8161376b565b9050919050565b60006020820190508181036000830152613cab8161378e565b9050919050565b60006020820190508181036000830152613ccb816137b1565b9050919050565b60006020820190508181036000830152613ceb816137d4565b9050919050565b60006020820190508181036000830152613d0b816137f7565b9050919050565b60006020820190508181036000830152613d2b8161381a565b9050919050565b60006020820190508181036000830152613d4b8161383d565b9050919050565b60006020820190508181036000830152613d6b81613860565b9050919050565b60006020820190508181036000830152613d8b81613883565b9050919050565b60006020820190508181036000830152613dab816138c9565b9050919050565b60006020820190508181036000830152613dcb816138ec565b9050919050565b60006020820190508181036000830152613deb8161390f565b9050919050565b60006020820190508181036000830152613e0b81613932565b9050919050565b6000602082019050613e276000830184613964565b92915050565b6000613e37613e48565b9050613e438282614138565b919050565b6000604051905090565b600067ffffffffffffffff821115613e6d57613e6c6142ce565b5b613e768261431b565b9050602081019050919050565b600067ffffffffffffffff821115613e9e57613e9d6142ce565b5b613ea78261431b565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f46826140ba565b9150613f51836140ba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f8657613f856141e3565b5b828201905092915050565b6000613f9c826140ba565b9150613fa7836140ba565b925082613fb757613fb6614212565b5b828204905092915050565b6000613fcd826140ba565b9150613fd8836140ba565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614011576140106141e3565b5b828202905092915050565b6000614027826140ba565b9150614032836140ba565b925082821015614045576140446141e3565b5b828203905092915050565b600061405b8261409a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140f15780820151818401526020810190506140d6565b83811115614100576000848401525b50505050565b6000600282049050600182168061411e57607f821691505b6020821081141561413257614131614241565b5b50919050565b6141418261431b565b810181811067ffffffffffffffff821117156141605761415f6142ce565b5b80604052505050565b6000614174826140ba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141a7576141a66141e3565b5b600182019050919050565b60006141bd826140ba565b91506141c8836140ba565b9250826141d8576141d7614212565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c79206f662050737974726160008201527f6e63655069670000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f50726573616c6520697320636c6f736564000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f4d6178696d756d203132205073797472616e63655069672063616e206265206d60008201527f696e74656420706572207472616e73616374696f6e0000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d2031205073797472616e63655069672068617320746f20626560008201527f206d696e74656420706572207472616e73616374696f6e000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f50726573616c65206973206e6f74206f70656e20796574000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d203120616e64204d6178696d756d2036205073797472616e6360008201527f655069672063616e206265206d696e746564207065722061646472657373206960208201527f6e2070726573616c650000000000000000000000000000000000000000000000604082015250565b7f41646472657373206e6f7420656c696769626c6520666f722070726573616c6560008201527f206d696e74000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f50757263686173652077696c6c20657863656564206d61782070726573616c6560008201527f206d696e7420616d6f756e742070657220616464726573730000000000000000602082015250565b614b2181614050565b8114614b2c57600080fd5b50565b614b3881614062565b8114614b4357600080fd5b50565b614b4f8161406e565b8114614b5a57600080fd5b50565b614b66816140ba565b8114614b7157600080fd5b5056fea2646970667358221220ed2d8f10258be31888618e80b357889a252e058c4cfd2a61dcc9bf5b55929a5a64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

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

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


Deployed Bytecode Sourcemap

46366:4150:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39872:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27032:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46716:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28725:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28248:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40675:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29784:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40256:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47530:83;;;;;;;;;;;;;:::i;:::-;;30231:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46990:385;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40865:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50084:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49229:847;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26639:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26282:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9739:94;;;;;;;;;;;;;:::i;:::-;;47721:176;;;;;;;;;;;;;:::i;:::-;;9088:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47383:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27201:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46643:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46557:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29105:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47905:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30487:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46678:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27376:468;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46508:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48102:1094;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29503:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9988:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47621:92;;;;;;;;;;;;;:::i;:::-;;39872:300;40019:4;40076:35;40061:50;;;:11;:50;;;;:103;;;;40128:36;40152:11;40128:23;:36::i;:::-;40061:103;40041:123;;39872:300;;;:::o;27032:100::-;27086:13;27119:5;27112:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27032:100;:::o;46716:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;28725:308::-;28846:7;28893:16;28901:7;28893;:16::i;:::-;28871:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;29001:15;:24;29017:7;29001:24;;;;;;;;;;;;;;;;;;;;;28994:31;;28725:308;;;:::o;28248:411::-;28329:13;28345:23;28360:7;28345:14;:23::i;:::-;28329:39;;28393:5;28387:11;;:2;:11;;;;28379:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28487:5;28471:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28496:37;28513:5;28520:12;:10;:12::i;:::-;28496:16;:37::i;:::-;28471:62;28449:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28630:21;28639:2;28643:7;28630:8;:21::i;:::-;28318:341;28248:411;;:::o;40675:113::-;40736:7;40763:10;:17;;;;40756:24;;40675:113;:::o;29784:376::-;29993:41;30012:12;:10;:12::i;:::-;30026:7;29993:18;:41::i;:::-;29971:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30124:28;30134:4;30140:2;30144:7;30124:9;:28::i;:::-;29784:376;;;:::o;40256:343::-;40398:7;40453:23;40470:5;40453:16;:23::i;:::-;40445:5;:31;40423:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;40565:12;:19;40578:5;40565:19;;;;;;;;;;;;;;;:26;40585:5;40565:26;;;;;;;;;;;;40558:33;;40256:343;;;;:::o;47530:83::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47597:8:::1;;;;;;;;;;;47596:9;47585:8;;:20;;;;;;;;;;;;;;;;;;47530:83::o:0;30231:185::-;30369:39;30386:4;30392:2;30396:7;30369:39;;;;;;;;;;;;:16;:39::i;:::-;30231:185;;;:::o;46990:385::-;47079:16;47113:18;47134:17;47144:6;47134:9;:17::i;:::-;47113:38;;47164:25;47206:10;47192:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47164:53;;47233:9;47228:112;47252:10;47248:1;:14;47228:112;;;47298:30;47318:6;47326:1;47298:19;:30::i;:::-;47284:8;47293:1;47284:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;47264:3;;;;;:::i;:::-;;;;47228:112;;;;47359:8;47352:15;;;;46990:385;;;:::o;40865:320::-;40985:7;41040:30;:28;:30::i;:::-;41032:5;:38;41010:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;41160:10;41171:5;41160:17;;;;;;;;:::i;:::-;;;;;;;;;;41153:24;;40865:320;;;:::o;50084:101::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50170:7:::1;50155:12;:22;;;;;;;;;;;;:::i;:::-;;50084:101:::0;:::o;49229:847::-;46545:5;49337:6;49321:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;49299:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;49465:1;49456:6;:10;49434:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;49578:7;:5;:7::i;:::-;49564:21;;:10;:21;;;49560:388;;49610:8;;;;;;;;;;;49602:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;49694:2;49684:6;:12;;49658:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;49847:6;49839:5;;:14;;;;:::i;:::-;49826:9;:27;;49800:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;49560:388;49960:10;49973;49960:23;;50001:9;49996:73;50020:6;50016:1;:10;49996:73;;;50048:9;50054:2;50048:5;:9::i;:::-;50028:3;;;;;:::i;:::-;;;;49996:73;;;;49288:788;49229:847;:::o;26639:326::-;26756:7;26781:13;26797:7;:16;26805:7;26797:16;;;;;;;;;;;;;;;;;;;;;26781:32;;26863:1;26846:19;;:5;:19;;;;26824:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;26952:5;26945:12;;;26639:326;;;:::o;26282:295::-;26399:7;26463:1;26446:19;;:5;:19;;;;26424:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26553:9;:16;26563:5;26553:16;;;;;;;;;;;;;;;;26546:23;;26282:295;;;:::o;9739:94::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9804:21:::1;9822:1;9804:9;:21::i;:::-;9739:94::o:0;47721:176::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47775:12:::1;47793:10;:15;;47816:21;47793:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47774:68;;;47861:7;47853:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;47763:134;47721:176::o:0;9088:87::-;9134:7;9161:6;;;;;;;;;;;9154:13;;9088:87;:::o;47383:92::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47458:9:::1;47450:5;:17;;;;47383:92:::0;:::o;27201:104::-;27257:13;27290:7;27283:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27201:104;:::o;46643:28::-;;;;;;;;;;;;;:::o;46557:40::-;;;;:::o;29105:327::-;29252:12;:10;:12::i;:::-;29240:24;;:8;:24;;;;29232:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29352:8;29307:18;:32;29326:12;:10;:12::i;:::-;29307:32;;;;;;;;;;;;;;;:42;29340:8;29307:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29405:8;29376:48;;29391:12;:10;:12::i;:::-;29376:48;;;29415:8;29376:48;;;;;;:::i;:::-;;;;;;;;29105:327;;:::o;47905:189::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47992:9:::1;47987:100;48011:5;;:12;;48007:1;:16;47987:100;;;48071:4;48045:13;:23;48059:5;;48065:1;48059:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;48045:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;48025:3;;;;;:::i;:::-;;;;47987:100;;;;47905:189:::0;;:::o;30487:365::-;30676:41;30695:12;:10;:12::i;:::-;30709:7;30676:18;:41::i;:::-;30654:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30805:39;30819:4;30825:2;30829:7;30838:5;30805:13;:39::i;:::-;30487:365;;;;:::o;46678:31::-;;;;;;;;;;;;;:::o;27376:468::-;27494:13;27547:16;27555:7;27547;:16::i;:::-;27525:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;27651:21;27675:10;:8;:10::i;:::-;27651:34;;27740:1;27722:7;27716:21;:25;:120;;;;;;;;;;;;;;;;;27785:7;27794:18;:7;:16;:18::i;:::-;27768:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27716:120;27696:140;;;27376:468;;;:::o;46508:42::-;46545:5;46508:42;:::o;48102:1094::-;48167:12;48182:10;48167:25;;46545:5;48241:6;48225:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;48203:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;48383:4;48360:27;;:13;:19;48374:4;48360:19;;;;;;;;;;;;;;;;;;;;;;;;;:27;;;48338:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;48471:11;;;;;;;;;;;48463:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;48530:8;;;;;;;;;;;48529:9;48521:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;48602:1;48593:6;:10;:25;;;;;48617:1;48607:6;:11;;48593:25;48571:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;48775:6;48757:15;48767:4;48757:9;:15::i;:::-;:24;;;;:::i;:::-;48752:1;:29;;48730:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;48919:6;48911:5;;:14;;;;:::i;:::-;48898:9;:27;;48876:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;49045:1;49035:6;49017:15;49027:4;49017:9;:15::i;:::-;:24;;;;:::i;:::-;:29;49013:89;;;49085:5;49063:13;:19;49077:4;49063:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;49013:89;49119:9;49114:75;49138:6;49134:1;:10;49114:75;;;49166:11;49172:4;49166:5;:11::i;:::-;49146:3;;;;;:::i;:::-;;;;49114:75;;;;48156:1040;48102:1094;:::o;29503:214::-;29645:4;29674:18;:25;29693:5;29674:25;;;;;;;;;;;;;;;:35;29700:8;29674:35;;;;;;;;;;;;;;;;;;;;;;;;;29667:42;;29503:214;;;;:::o;9988:229::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10111:1:::1;10091:22;;:8;:22;;;;10069:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;10190:19;10200:8;10190:9;:19::i;:::-;9988:229:::0;:::o;47621:92::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47694:11:::1;;;;;;;;;;;47693:12;47679:11;;:26;;;;;;;;;;;;;;;;;;47621:92::o:0;25863:355::-;26010:4;26067:25;26052:40;;;:11;:40;;;;:105;;;;26124:33;26109:48;;;:11;:48;;;;26052:105;:158;;;;26174:36;26198:11;26174:23;:36::i;:::-;26052:158;26032:178;;25863:355;;;:::o;32399:127::-;32464:4;32516:1;32488:30;;:7;:16;32496:7;32488:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32481:37;;32399:127;;;:::o;2061:98::-;2114:7;2141:10;2134:17;;2061:98;:::o;36522:174::-;36624:2;36597:15;:24;36613:7;36597:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36680:7;36676:2;36642:46;;36651:23;36666:7;36651:14;:23::i;:::-;36642:46;;;;;;;;;;;;36522:174;;:::o;32693:452::-;32822:4;32866:16;32874:7;32866;:16::i;:::-;32844:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32965:13;32981:23;32996:7;32981:14;:23::i;:::-;32965:39;;33034:5;33023:16;;:7;:16;;;:64;;;;33080:7;33056:31;;:20;33068:7;33056:11;:20::i;:::-;:31;;;33023:64;:113;;;;33104:32;33121:5;33128:7;33104:16;:32::i;:::-;33023:113;33015:122;;;32693:452;;;;:::o;35789:615::-;35962:4;35935:31;;:23;35950:7;35935:14;:23::i;:::-;:31;;;35913:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;36068:1;36054:16;;:2;:16;;;;36046:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36124:39;36145:4;36151:2;36155:7;36124:20;:39::i;:::-;36228:29;36245:1;36249:7;36228:8;:29::i;:::-;36289:1;36270:9;:15;36280:4;36270:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36318:1;36301:9;:13;36311:2;36301:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36349:2;36330:7;:16;36338:7;36330:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36388:7;36384:2;36369:27;;36378:4;36369:27;;;;;;;;;;;;35789:615;;;:::o;50193:199::-;50240:20;:8;:18;:20::i;:::-;50271:15;50289:18;:8;:16;:18::i;:::-;50271:36;;50318:23;50328:3;50333:7;50318:9;:23::i;:::-;50357:27;50376:7;50357:27;;;;;;:::i;:::-;;;;;;;;50229:163;50193:199;:::o;10225:173::-;10281:16;10300:6;;;;;;;;;;;10281:25;;10326:8;10317:6;;:17;;;;;;;;;;;;;;;;;;10381:8;10350:40;;10371:8;10350:40;;;;;;;;;;;;10270:128;10225:173;:::o;31734:352::-;31891:28;31901:4;31907:2;31911:7;31891:9;:28::i;:::-;31952:48;31975:4;31981:2;31985:7;31994:5;31952:22;:48::i;:::-;31930:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;31734:352;;;;:::o;50400:113::-;50460:13;50493:12;50486:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50400:113;:::o;12730:723::-;12786:13;13016:1;13007:5;:10;13003:53;;;13034:10;;;;;;;;;;;;;;;;;;;;;13003:53;13066:12;13081:5;13066:20;;13097:14;13122:78;13137:1;13129:4;:9;13122:78;;13155:8;;;;;:::i;:::-;;;;13186:2;13178:10;;;;;:::i;:::-;;;13122:78;;;13210:19;13242:6;13232:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13210:39;;13260:154;13276:1;13267:5;:10;13260:154;;13304:1;13294:11;;;;;:::i;:::-;;;13371:2;13363:5;:10;;;;:::i;:::-;13350:2;:24;;;;:::i;:::-;13337:39;;13320:6;13327;13320:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;13400:2;13391:11;;;;;:::i;:::-;;;13260:154;;;13438:6;13424:21;;;;;12730:723;;;;:::o;12209:207::-;12339:4;12383:25;12368:40;;;:11;:40;;;;12361:47;;12209:207;;;:::o;41798:589::-;41942:45;41969:4;41975:2;41979:7;41942:26;:45::i;:::-;42020:1;42004:18;;:4;:18;;;42000:187;;;42039:40;42071:7;42039:31;:40::i;:::-;42000:187;;;42109:2;42101:10;;:4;:10;;;42097:90;;42128:47;42161:4;42167:7;42128:32;:47::i;:::-;42097:90;42000:187;42215:1;42201:16;;:2;:16;;;42197:183;;;42234:45;42271:7;42234:36;:45::i;:::-;42197:183;;;42307:4;42301:10;;:2;:10;;;42297:83;;42328:40;42356:2;42360:7;42328:27;:40::i;:::-;42297:83;42197:183;41798:589;;;:::o;970:127::-;1077:1;1059:7;:14;;;:19;;;;;;;;;;;970:127;:::o;848:114::-;913:7;940;:14;;;933:21;;848:114;;;:::o;33487:110::-;33563:26;33573:2;33577:7;33563:26;;;;;;;;;;;;:9;:26::i;:::-;33487:110;;:::o;37261:984::-;37416:4;37437:15;:2;:13;;;:15::i;:::-;37433:805;;;37506:2;37490:36;;;37549:12;:10;:12::i;:::-;37584:4;37611:7;37641:5;37490:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37469:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37869:1;37852:6;:13;:18;37848:320;;;37895:108;;;;;;;;;;:::i;:::-;;;;;;;;37848:320;38118:6;38112:13;38103:6;38099:2;38095:15;38088:38;37469:714;37739:45;;;37729:55;;;:6;:55;;;;37722:62;;;;;37433:805;38222:4;38215:11;;37261:984;;;;;;;:::o;38817:126::-;;;;:::o;43110:164::-;43214:10;:17;;;;43187:15;:24;43203:7;43187:24;;;;;;;;;;;:44;;;;43242:10;43258:7;43242:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43110:164;:::o;43901:1002::-;44181:22;44231:1;44206:22;44223:4;44206:16;:22::i;:::-;:26;;;;:::i;:::-;44181:51;;44243:18;44264:17;:26;44282:7;44264:26;;;;;;;;;;;;44243:47;;44411:14;44397:10;:28;44393:328;;44442:19;44464:12;:18;44477:4;44464:18;;;;;;;;;;;;;;;:34;44483:14;44464:34;;;;;;;;;;;;44442:56;;44548:11;44515:12;:18;44528:4;44515:18;;;;;;;;;;;;;;;:30;44534:10;44515:30;;;;;;;;;;;:44;;;;44665:10;44632:17;:30;44650:11;44632:30;;;;;;;;;;;:43;;;;44427:294;44393:328;44817:17;:26;44835:7;44817:26;;;;;;;;;;;44810:33;;;44861:12;:18;44874:4;44861:18;;;;;;;;;;;;;;;:34;44880:14;44861:34;;;;;;;;;;;44854:41;;;43996:907;;43901:1002;;:::o;45198:1079::-;45451:22;45496:1;45476:10;:17;;;;:21;;;;:::i;:::-;45451:46;;45508:18;45529:15;:24;45545:7;45529:24;;;;;;;;;;;;45508:45;;45880:19;45902:10;45913:14;45902:26;;;;;;;;:::i;:::-;;;;;;;;;;45880:48;;45966:11;45941:10;45952;45941:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;46077:10;46046:15;:28;46062:11;46046:28;;;;;;;;;;;:41;;;;46218:15;:24;46234:7;46218:24;;;;;;;;;;;46211:31;;;46253:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45269:1008;;;45198:1079;:::o;42688:221::-;42773:14;42790:20;42807:2;42790:16;:20::i;:::-;42773:37;;42848:7;42821:12;:16;42834:2;42821:16;;;;;;;;;;;;;;;:24;42838:6;42821:24;;;;;;;;;;;:34;;;;42895:6;42866:17;:26;42884:7;42866:26;;;;;;;;;;;:35;;;;42762:147;42688:221;;:::o;33824:321::-;33954:18;33960:2;33964:7;33954:5;:18::i;:::-;34005:54;34036:1;34040:2;34044:7;34053:5;34005:22;:54::i;:::-;33983:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;33824:321;;;:::o;15283:387::-;15343:4;15551:12;15618:7;15606:20;15598:28;;15661:1;15654:4;:8;15647:15;;;15283:387;;;:::o;34481:382::-;34575:1;34561:16;;:2;:16;;;;34553:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34634:16;34642:7;34634;:16::i;:::-;34633:17;34625:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34696:45;34725:1;34729:2;34733:7;34696:20;:45::i;:::-;34771:1;34754:9;:13;34764:2;34754:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34802:2;34783:7;:16;34791:7;34783:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34847:7;34843:2;34822:33;;34839:1;34822:33;;;;;;;;;;;;34481:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:327::-;6834:6;6883:2;6871:9;6862:7;6858:23;6854:32;6851:119;;;6889:79;;:::i;:::-;6851:119;7009:1;7034:52;7078:7;7069:6;7058:9;7054:22;7034:52;:::i;:::-;7024:62;;6980:116;6776:327;;;;:::o;7109:349::-;7178:6;7227:2;7215:9;7206:7;7202:23;7198:32;7195:119;;;7233:79;;:::i;:::-;7195:119;7353:1;7378:63;7433:7;7424:6;7413:9;7409:22;7378:63;:::i;:::-;7368:73;;7324:127;7109:349;;;;:::o;7464:509::-;7533:6;7582:2;7570:9;7561:7;7557:23;7553:32;7550:119;;;7588:79;;:::i;:::-;7550:119;7736:1;7725:9;7721:17;7708:31;7766:18;7758:6;7755:30;7752:117;;;7788:79;;:::i;:::-;7752:117;7893:63;7948:7;7939:6;7928:9;7924:22;7893:63;:::i;:::-;7883:73;;7679:287;7464:509;;;;:::o;7979:329::-;8038:6;8087:2;8075:9;8066:7;8062:23;8058:32;8055:119;;;8093:79;;:::i;:::-;8055:119;8213:1;8238:53;8283:7;8274:6;8263:9;8259:22;8238:53;:::i;:::-;8228:63;;8184:117;7979:329;;;;:::o;8314:179::-;8383:10;8404:46;8446:3;8438:6;8404:46;:::i;:::-;8482:4;8477:3;8473:14;8459:28;;8314:179;;;;:::o;8499:118::-;8586:24;8604:5;8586:24;:::i;:::-;8581:3;8574:37;8499:118;;:::o;8653:732::-;8772:3;8801:54;8849:5;8801:54;:::i;:::-;8871:86;8950:6;8945:3;8871:86;:::i;:::-;8864:93;;8981:56;9031:5;8981:56;:::i;:::-;9060:7;9091:1;9076:284;9101:6;9098:1;9095:13;9076:284;;;9177:6;9171:13;9204:63;9263:3;9248:13;9204:63;:::i;:::-;9197:70;;9290:60;9343:6;9290:60;:::i;:::-;9280:70;;9136:224;9123:1;9120;9116:9;9111:14;;9076:284;;;9080:14;9376:3;9369:10;;8777:608;;;8653:732;;;;:::o;9391:109::-;9472:21;9487:5;9472:21;:::i;:::-;9467:3;9460:34;9391:109;;:::o;9506:360::-;9592:3;9620:38;9652:5;9620:38;:::i;:::-;9674:70;9737:6;9732:3;9674:70;:::i;:::-;9667:77;;9753:52;9798:6;9793:3;9786:4;9779:5;9775:16;9753:52;:::i;:::-;9830:29;9852:6;9830:29;:::i;:::-;9825:3;9821:39;9814:46;;9596:270;9506:360;;;;:::o;9872:364::-;9960:3;9988:39;10021:5;9988:39;:::i;:::-;10043:71;10107:6;10102:3;10043:71;:::i;:::-;10036:78;;10123:52;10168:6;10163:3;10156:4;10149:5;10145:16;10123:52;:::i;:::-;10200:29;10222:6;10200:29;:::i;:::-;10195:3;10191:39;10184:46;;9964:272;9872:364;;;;:::o;10242:377::-;10348:3;10376:39;10409:5;10376:39;:::i;:::-;10431:89;10513:6;10508:3;10431:89;:::i;:::-;10424:96;;10529:52;10574:6;10569:3;10562:4;10555:5;10551:16;10529:52;:::i;:::-;10606:6;10601:3;10597:16;10590:23;;10352:267;10242:377;;;;:::o;10625:366::-;10767:3;10788:67;10852:2;10847:3;10788:67;:::i;:::-;10781:74;;10864:93;10953:3;10864:93;:::i;:::-;10982:2;10977:3;10973:12;10966:19;;10625:366;;;:::o;10997:::-;11139:3;11160:67;11224:2;11219:3;11160:67;:::i;:::-;11153:74;;11236:93;11325:3;11236:93;:::i;:::-;11354:2;11349:3;11345:12;11338:19;;10997:366;;;:::o;11369:::-;11511:3;11532:67;11596:2;11591:3;11532:67;:::i;:::-;11525:74;;11608:93;11697:3;11608:93;:::i;:::-;11726:2;11721:3;11717:12;11710:19;;11369:366;;;:::o;11741:::-;11883:3;11904:67;11968:2;11963:3;11904:67;:::i;:::-;11897:74;;11980:93;12069:3;11980:93;:::i;:::-;12098:2;12093:3;12089:12;12082:19;;11741:366;;;:::o;12113:::-;12255:3;12276:67;12340:2;12335:3;12276:67;:::i;:::-;12269:74;;12352:93;12441:3;12352:93;:::i;:::-;12470:2;12465:3;12461:12;12454:19;;12113:366;;;:::o;12485:::-;12627:3;12648:67;12712:2;12707:3;12648:67;:::i;:::-;12641:74;;12724:93;12813:3;12724:93;:::i;:::-;12842:2;12837:3;12833:12;12826:19;;12485:366;;;:::o;12857:::-;12999:3;13020:67;13084:2;13079:3;13020:67;:::i;:::-;13013:74;;13096:93;13185:3;13096:93;:::i;:::-;13214:2;13209:3;13205:12;13198:19;;12857:366;;;:::o;13229:::-;13371:3;13392:67;13456:2;13451:3;13392:67;:::i;:::-;13385:74;;13468:93;13557:3;13468:93;:::i;:::-;13586:2;13581:3;13577:12;13570:19;;13229:366;;;:::o;13601:::-;13743:3;13764:67;13828:2;13823:3;13764:67;:::i;:::-;13757:74;;13840:93;13929:3;13840:93;:::i;:::-;13958:2;13953:3;13949:12;13942:19;;13601:366;;;:::o;13973:::-;14115:3;14136:67;14200:2;14195:3;14136:67;:::i;:::-;14129:74;;14212:93;14301:3;14212:93;:::i;:::-;14330:2;14325:3;14321:12;14314:19;;13973:366;;;:::o;14345:::-;14487:3;14508:67;14572:2;14567:3;14508:67;:::i;:::-;14501:74;;14584:93;14673:3;14584:93;:::i;:::-;14702:2;14697:3;14693:12;14686:19;;14345:366;;;:::o;14717:::-;14859:3;14880:67;14944:2;14939:3;14880:67;:::i;:::-;14873:74;;14956:93;15045:3;14956:93;:::i;:::-;15074:2;15069:3;15065:12;15058:19;;14717:366;;;:::o;15089:::-;15231:3;15252:67;15316:2;15311:3;15252:67;:::i;:::-;15245:74;;15328:93;15417:3;15328:93;:::i;:::-;15446:2;15441:3;15437:12;15430:19;;15089:366;;;:::o;15461:::-;15603:3;15624:67;15688:2;15683:3;15624:67;:::i;:::-;15617:74;;15700:93;15789:3;15700:93;:::i;:::-;15818:2;15813:3;15809:12;15802:19;;15461:366;;;:::o;15833:::-;15975:3;15996:67;16060:2;16055:3;15996:67;:::i;:::-;15989:74;;16072:93;16161:3;16072:93;:::i;:::-;16190:2;16185:3;16181:12;16174:19;;15833:366;;;:::o;16205:::-;16347:3;16368:67;16432:2;16427:3;16368:67;:::i;:::-;16361:74;;16444:93;16533:3;16444:93;:::i;:::-;16562:2;16557:3;16553:12;16546:19;;16205:366;;;:::o;16577:::-;16719:3;16740:67;16804:2;16799:3;16740:67;:::i;:::-;16733:74;;16816:93;16905:3;16816:93;:::i;:::-;16934:2;16929:3;16925:12;16918:19;;16577:366;;;:::o;16949:::-;17091:3;17112:67;17176:2;17171:3;17112:67;:::i;:::-;17105:74;;17188:93;17277:3;17188:93;:::i;:::-;17306:2;17301:3;17297:12;17290:19;;16949:366;;;:::o;17321:::-;17463:3;17484:67;17548:2;17543:3;17484:67;:::i;:::-;17477:74;;17560:93;17649:3;17560:93;:::i;:::-;17678:2;17673:3;17669:12;17662:19;;17321:366;;;:::o;17693:::-;17835:3;17856:67;17920:2;17915:3;17856:67;:::i;:::-;17849:74;;17932:93;18021:3;17932:93;:::i;:::-;18050:2;18045:3;18041:12;18034:19;;17693:366;;;:::o;18065:::-;18207:3;18228:67;18292:2;18287:3;18228:67;:::i;:::-;18221:74;;18304:93;18393:3;18304:93;:::i;:::-;18422:2;18417:3;18413:12;18406:19;;18065:366;;;:::o;18437:::-;18579:3;18600:67;18664:2;18659:3;18600:67;:::i;:::-;18593:74;;18676:93;18765:3;18676:93;:::i;:::-;18794:2;18789:3;18785:12;18778:19;;18437:366;;;:::o;18809:::-;18951:3;18972:67;19036:2;19031:3;18972:67;:::i;:::-;18965:74;;19048:93;19137:3;19048:93;:::i;:::-;19166:2;19161:3;19157:12;19150:19;;18809:366;;;:::o;19181:::-;19323:3;19344:67;19408:2;19403:3;19344:67;:::i;:::-;19337:74;;19420:93;19509:3;19420:93;:::i;:::-;19538:2;19533:3;19529:12;19522:19;;19181:366;;;:::o;19553:::-;19695:3;19716:67;19780:2;19775:3;19716:67;:::i;:::-;19709:74;;19792:93;19881:3;19792:93;:::i;:::-;19910:2;19905:3;19901:12;19894:19;;19553:366;;;:::o;19925:398::-;20084:3;20105:83;20186:1;20181:3;20105:83;:::i;:::-;20098:90;;20197:93;20286:3;20197:93;:::i;:::-;20315:1;20310:3;20306:11;20299:18;;19925:398;;;:::o;20329:366::-;20471:3;20492:67;20556:2;20551:3;20492:67;:::i;:::-;20485:74;;20568:93;20657:3;20568:93;:::i;:::-;20686:2;20681:3;20677:12;20670:19;;20329:366;;;:::o;20701:::-;20843:3;20864:67;20928:2;20923:3;20864:67;:::i;:::-;20857:74;;20940:93;21029:3;20940:93;:::i;:::-;21058:2;21053:3;21049:12;21042:19;;20701:366;;;:::o;21073:::-;21215:3;21236:67;21300:2;21295:3;21236:67;:::i;:::-;21229:74;;21312:93;21401:3;21312:93;:::i;:::-;21430:2;21425:3;21421:12;21414:19;;21073:366;;;:::o;21445:::-;21587:3;21608:67;21672:2;21667:3;21608:67;:::i;:::-;21601:74;;21684:93;21773:3;21684:93;:::i;:::-;21802:2;21797:3;21793:12;21786:19;;21445:366;;;:::o;21817:108::-;21894:24;21912:5;21894:24;:::i;:::-;21889:3;21882:37;21817:108;;:::o;21931:118::-;22018:24;22036:5;22018:24;:::i;:::-;22013:3;22006:37;21931:118;;:::o;22055:435::-;22235:3;22257:95;22348:3;22339:6;22257:95;:::i;:::-;22250:102;;22369:95;22460:3;22451:6;22369:95;:::i;:::-;22362:102;;22481:3;22474:10;;22055:435;;;;;:::o;22496:379::-;22680:3;22702:147;22845:3;22702:147;:::i;:::-;22695:154;;22866:3;22859:10;;22496:379;;;:::o;22881:222::-;22974:4;23012:2;23001:9;22997:18;22989:26;;23025:71;23093:1;23082:9;23078:17;23069:6;23025:71;:::i;:::-;22881:222;;;;:::o;23109:640::-;23304:4;23342:3;23331:9;23327:19;23319:27;;23356:71;23424:1;23413:9;23409:17;23400:6;23356:71;:::i;:::-;23437:72;23505:2;23494:9;23490:18;23481:6;23437:72;:::i;:::-;23519;23587:2;23576:9;23572:18;23563:6;23519:72;:::i;:::-;23638:9;23632:4;23628:20;23623:2;23612:9;23608:18;23601:48;23666:76;23737:4;23728:6;23666:76;:::i;:::-;23658:84;;23109:640;;;;;;;:::o;23755:373::-;23898:4;23936:2;23925:9;23921:18;23913:26;;23985:9;23979:4;23975:20;23971:1;23960:9;23956:17;23949:47;24013:108;24116:4;24107:6;24013:108;:::i;:::-;24005:116;;23755:373;;;;:::o;24134:210::-;24221:4;24259:2;24248:9;24244:18;24236:26;;24272:65;24334:1;24323:9;24319:17;24310:6;24272:65;:::i;:::-;24134:210;;;;:::o;24350:313::-;24463:4;24501:2;24490:9;24486:18;24478:26;;24550:9;24544:4;24540:20;24536:1;24525:9;24521:17;24514:47;24578:78;24651:4;24642:6;24578:78;:::i;:::-;24570:86;;24350:313;;;;:::o;24669:419::-;24835:4;24873:2;24862:9;24858:18;24850:26;;24922:9;24916:4;24912:20;24908:1;24897:9;24893:17;24886:47;24950:131;25076:4;24950:131;:::i;:::-;24942:139;;24669:419;;;:::o;25094:::-;25260:4;25298:2;25287:9;25283:18;25275:26;;25347:9;25341:4;25337:20;25333:1;25322:9;25318:17;25311:47;25375:131;25501:4;25375:131;:::i;:::-;25367:139;;25094:419;;;:::o;25519:::-;25685:4;25723:2;25712:9;25708:18;25700:26;;25772:9;25766:4;25762:20;25758:1;25747:9;25743:17;25736:47;25800:131;25926:4;25800:131;:::i;:::-;25792:139;;25519:419;;;:::o;25944:::-;26110:4;26148:2;26137:9;26133:18;26125:26;;26197:9;26191:4;26187:20;26183:1;26172:9;26168:17;26161:47;26225:131;26351:4;26225:131;:::i;:::-;26217:139;;25944:419;;;:::o;26369:::-;26535:4;26573:2;26562:9;26558:18;26550:26;;26622:9;26616:4;26612:20;26608:1;26597:9;26593:17;26586:47;26650:131;26776:4;26650:131;:::i;:::-;26642:139;;26369:419;;;:::o;26794:::-;26960:4;26998:2;26987:9;26983:18;26975:26;;27047:9;27041:4;27037:20;27033:1;27022:9;27018:17;27011:47;27075:131;27201:4;27075:131;:::i;:::-;27067:139;;26794:419;;;:::o;27219:::-;27385:4;27423:2;27412:9;27408:18;27400:26;;27472:9;27466:4;27462:20;27458:1;27447:9;27443:17;27436:47;27500:131;27626:4;27500:131;:::i;:::-;27492:139;;27219:419;;;:::o;27644:::-;27810:4;27848:2;27837:9;27833:18;27825:26;;27897:9;27891:4;27887:20;27883:1;27872:9;27868:17;27861:47;27925:131;28051:4;27925:131;:::i;:::-;27917:139;;27644:419;;;:::o;28069:::-;28235:4;28273:2;28262:9;28258:18;28250:26;;28322:9;28316:4;28312:20;28308:1;28297:9;28293:17;28286:47;28350:131;28476:4;28350:131;:::i;:::-;28342:139;;28069:419;;;:::o;28494:::-;28660:4;28698:2;28687:9;28683:18;28675:26;;28747:9;28741:4;28737:20;28733:1;28722:9;28718:17;28711:47;28775:131;28901:4;28775:131;:::i;:::-;28767:139;;28494:419;;;:::o;28919:::-;29085:4;29123:2;29112:9;29108:18;29100:26;;29172:9;29166:4;29162:20;29158:1;29147:9;29143:17;29136:47;29200:131;29326:4;29200:131;:::i;:::-;29192:139;;28919:419;;;:::o;29344:::-;29510:4;29548:2;29537:9;29533:18;29525:26;;29597:9;29591:4;29587:20;29583:1;29572:9;29568:17;29561:47;29625:131;29751:4;29625:131;:::i;:::-;29617:139;;29344:419;;;:::o;29769:::-;29935:4;29973:2;29962:9;29958:18;29950:26;;30022:9;30016:4;30012:20;30008:1;29997:9;29993:17;29986:47;30050:131;30176:4;30050:131;:::i;:::-;30042:139;;29769:419;;;:::o;30194:::-;30360:4;30398:2;30387:9;30383:18;30375:26;;30447:9;30441:4;30437:20;30433:1;30422:9;30418:17;30411:47;30475:131;30601:4;30475:131;:::i;:::-;30467:139;;30194:419;;;:::o;30619:::-;30785:4;30823:2;30812:9;30808:18;30800:26;;30872:9;30866:4;30862:20;30858:1;30847:9;30843:17;30836:47;30900:131;31026:4;30900:131;:::i;:::-;30892:139;;30619:419;;;:::o;31044:::-;31210:4;31248:2;31237:9;31233:18;31225:26;;31297:9;31291:4;31287:20;31283:1;31272:9;31268:17;31261:47;31325:131;31451:4;31325:131;:::i;:::-;31317:139;;31044:419;;;:::o;31469:::-;31635:4;31673:2;31662:9;31658:18;31650:26;;31722:9;31716:4;31712:20;31708:1;31697:9;31693:17;31686:47;31750:131;31876:4;31750:131;:::i;:::-;31742:139;;31469:419;;;:::o;31894:::-;32060:4;32098:2;32087:9;32083:18;32075:26;;32147:9;32141:4;32137:20;32133:1;32122:9;32118:17;32111:47;32175:131;32301:4;32175:131;:::i;:::-;32167:139;;31894:419;;;:::o;32319:::-;32485:4;32523:2;32512:9;32508:18;32500:26;;32572:9;32566:4;32562:20;32558:1;32547:9;32543:17;32536:47;32600:131;32726:4;32600:131;:::i;:::-;32592:139;;32319:419;;;:::o;32744:::-;32910:4;32948:2;32937:9;32933:18;32925:26;;32997:9;32991:4;32987:20;32983:1;32972:9;32968:17;32961:47;33025:131;33151:4;33025:131;:::i;:::-;33017:139;;32744:419;;;:::o;33169:::-;33335:4;33373:2;33362:9;33358:18;33350:26;;33422:9;33416:4;33412:20;33408:1;33397:9;33393:17;33386:47;33450:131;33576:4;33450:131;:::i;:::-;33442:139;;33169:419;;;:::o;33594:::-;33760:4;33798:2;33787:9;33783:18;33775:26;;33847:9;33841:4;33837:20;33833:1;33822:9;33818:17;33811:47;33875:131;34001:4;33875:131;:::i;:::-;33867:139;;33594:419;;;:::o;34019:::-;34185:4;34223:2;34212:9;34208:18;34200:26;;34272:9;34266:4;34262:20;34258:1;34247:9;34243:17;34236:47;34300:131;34426:4;34300:131;:::i;:::-;34292:139;;34019:419;;;:::o;34444:::-;34610:4;34648:2;34637:9;34633:18;34625:26;;34697:9;34691:4;34687:20;34683:1;34672:9;34668:17;34661:47;34725:131;34851:4;34725:131;:::i;:::-;34717:139;;34444:419;;;:::o;34869:::-;35035:4;35073:2;35062:9;35058:18;35050:26;;35122:9;35116:4;35112:20;35108:1;35097:9;35093:17;35086:47;35150:131;35276:4;35150:131;:::i;:::-;35142:139;;34869:419;;;:::o;35294:::-;35460:4;35498:2;35487:9;35483:18;35475:26;;35547:9;35541:4;35537:20;35533:1;35522:9;35518:17;35511:47;35575:131;35701:4;35575:131;:::i;:::-;35567:139;;35294:419;;;:::o;35719:::-;35885:4;35923:2;35912:9;35908:18;35900:26;;35972:9;35966:4;35962:20;35958:1;35947:9;35943:17;35936:47;36000:131;36126:4;36000:131;:::i;:::-;35992:139;;35719:419;;;:::o;36144:::-;36310:4;36348:2;36337:9;36333:18;36325:26;;36397:9;36391:4;36387:20;36383:1;36372:9;36368:17;36361:47;36425:131;36551:4;36425:131;:::i;:::-;36417:139;;36144:419;;;:::o;36569:::-;36735:4;36773:2;36762:9;36758:18;36750:26;;36822:9;36816:4;36812:20;36808:1;36797:9;36793:17;36786:47;36850:131;36976:4;36850:131;:::i;:::-;36842:139;;36569:419;;;:::o;36994:222::-;37087:4;37125:2;37114:9;37110:18;37102:26;;37138:71;37206:1;37195:9;37191:17;37182:6;37138:71;:::i;:::-;36994:222;;;;:::o;37222:129::-;37256:6;37283:20;;:::i;:::-;37273:30;;37312:33;37340:4;37332:6;37312:33;:::i;:::-;37222:129;;;:::o;37357:75::-;37390:6;37423:2;37417:9;37407:19;;37357:75;:::o;37438:307::-;37499:4;37589:18;37581:6;37578:30;37575:56;;;37611:18;;:::i;:::-;37575:56;37649:29;37671:6;37649:29;:::i;:::-;37641:37;;37733:4;37727;37723:15;37715:23;;37438:307;;;:::o;37751:308::-;37813:4;37903:18;37895:6;37892:30;37889:56;;;37925:18;;:::i;:::-;37889:56;37963:29;37985:6;37963:29;:::i;:::-;37955:37;;38047:4;38041;38037:15;38029:23;;37751:308;;;:::o;38065:132::-;38132:4;38155:3;38147:11;;38185:4;38180:3;38176:14;38168:22;;38065:132;;;:::o;38203:114::-;38270:6;38304:5;38298:12;38288:22;;38203:114;;;:::o;38323:98::-;38374:6;38408:5;38402:12;38392:22;;38323:98;;;:::o;38427:99::-;38479:6;38513:5;38507:12;38497:22;;38427:99;;;:::o;38532:113::-;38602:4;38634;38629:3;38625:14;38617:22;;38532:113;;;:::o;38651:184::-;38750:11;38784:6;38779:3;38772:19;38824:4;38819:3;38815:14;38800:29;;38651:184;;;;:::o;38841:168::-;38924:11;38958:6;38953:3;38946:19;38998:4;38993:3;38989:14;38974:29;;38841:168;;;;:::o;39015:147::-;39116:11;39153:3;39138:18;;39015:147;;;;:::o;39168:169::-;39252:11;39286:6;39281:3;39274:19;39326:4;39321:3;39317:14;39302:29;;39168:169;;;;:::o;39343:148::-;39445:11;39482:3;39467:18;;39343:148;;;;:::o;39497:305::-;39537:3;39556:20;39574:1;39556:20;:::i;:::-;39551:25;;39590:20;39608:1;39590:20;:::i;:::-;39585:25;;39744:1;39676:66;39672:74;39669:1;39666:81;39663:107;;;39750:18;;:::i;:::-;39663:107;39794:1;39791;39787:9;39780:16;;39497:305;;;;:::o;39808:185::-;39848:1;39865:20;39883:1;39865:20;:::i;:::-;39860:25;;39899:20;39917:1;39899:20;:::i;:::-;39894:25;;39938:1;39928:35;;39943:18;;:::i;:::-;39928:35;39985:1;39982;39978:9;39973:14;;39808:185;;;;:::o;39999:348::-;40039:7;40062:20;40080:1;40062:20;:::i;:::-;40057:25;;40096:20;40114:1;40096:20;:::i;:::-;40091:25;;40284:1;40216:66;40212:74;40209:1;40206:81;40201:1;40194:9;40187:17;40183:105;40180:131;;;40291:18;;:::i;:::-;40180:131;40339:1;40336;40332:9;40321:20;;39999:348;;;;:::o;40353:191::-;40393:4;40413:20;40431:1;40413:20;:::i;:::-;40408:25;;40447:20;40465:1;40447:20;:::i;:::-;40442:25;;40486:1;40483;40480:8;40477:34;;;40491:18;;:::i;:::-;40477:34;40536:1;40533;40529:9;40521:17;;40353:191;;;;:::o;40550:96::-;40587:7;40616:24;40634:5;40616:24;:::i;:::-;40605:35;;40550:96;;;:::o;40652:90::-;40686:7;40729:5;40722:13;40715:21;40704:32;;40652:90;;;:::o;40748:149::-;40784:7;40824:66;40817:5;40813:78;40802:89;;40748:149;;;:::o;40903:126::-;40940:7;40980:42;40973:5;40969:54;40958:65;;40903:126;;;:::o;41035:77::-;41072:7;41101:5;41090:16;;41035:77;;;:::o;41118:154::-;41202:6;41197:3;41192;41179:30;41264:1;41255:6;41250:3;41246:16;41239:27;41118:154;;;:::o;41278:307::-;41346:1;41356:113;41370:6;41367:1;41364:13;41356:113;;;41455:1;41450:3;41446:11;41440:18;41436:1;41431:3;41427:11;41420:39;41392:2;41389:1;41385:10;41380:15;;41356:113;;;41487:6;41484:1;41481:13;41478:101;;;41567:1;41558:6;41553:3;41549:16;41542:27;41478:101;41327:258;41278:307;;;:::o;41591:320::-;41635:6;41672:1;41666:4;41662:12;41652:22;;41719:1;41713:4;41709:12;41740:18;41730:81;;41796:4;41788:6;41784:17;41774:27;;41730:81;41858:2;41850:6;41847:14;41827:18;41824:38;41821:84;;;41877:18;;:::i;:::-;41821:84;41642:269;41591:320;;;:::o;41917:281::-;42000:27;42022:4;42000:27;:::i;:::-;41992:6;41988:40;42130:6;42118:10;42115:22;42094:18;42082:10;42079:34;42076:62;42073:88;;;42141:18;;:::i;:::-;42073:88;42181:10;42177:2;42170:22;41960:238;41917:281;;:::o;42204:233::-;42243:3;42266:24;42284:5;42266:24;:::i;:::-;42257:33;;42312:66;42305:5;42302:77;42299:103;;;42382:18;;:::i;:::-;42299:103;42429:1;42422:5;42418:13;42411:20;;42204:233;;;:::o;42443:176::-;42475:1;42492:20;42510:1;42492:20;:::i;:::-;42487:25;;42526:20;42544:1;42526:20;:::i;:::-;42521:25;;42565:1;42555:35;;42570:18;;:::i;:::-;42555:35;42611:1;42608;42604:9;42599:14;;42443:176;;;;:::o;42625:180::-;42673:77;42670:1;42663:88;42770:4;42767:1;42760:15;42794:4;42791:1;42784:15;42811:180;42859:77;42856:1;42849:88;42956:4;42953:1;42946:15;42980:4;42977:1;42970:15;42997:180;43045:77;43042:1;43035:88;43142:4;43139:1;43132:15;43166:4;43163:1;43156:15;43183:180;43231:77;43228:1;43221:88;43328:4;43325:1;43318:15;43352:4;43349:1;43342:15;43369:180;43417:77;43414:1;43407:88;43514:4;43511:1;43504:15;43538:4;43535:1;43528:15;43555:180;43603:77;43600:1;43593:88;43700:4;43697:1;43690:15;43724:4;43721:1;43714:15;43741:117;43850:1;43847;43840:12;43864:117;43973:1;43970;43963:12;43987:117;44096:1;44093;44086:12;44110:117;44219:1;44216;44209:12;44233:117;44342:1;44339;44332:12;44356:117;44465:1;44462;44455:12;44479:102;44520:6;44571:2;44567:7;44562:2;44555:5;44551:14;44547:28;44537:38;;44479:102;;;:::o;44587:230::-;44727:34;44723:1;44715:6;44711:14;44704:58;44796:13;44791:2;44783:6;44779:15;44772:38;44587:230;:::o;44823:237::-;44963:34;44959:1;44951:6;44947:14;44940:58;45032:20;45027:2;45019:6;45015:15;45008:45;44823:237;:::o;45066:225::-;45206:34;45202:1;45194:6;45190:14;45183:58;45275:8;45270:2;45262:6;45258:15;45251:33;45066:225;:::o;45297:::-;45437:34;45433:1;45425:6;45421:14;45414:58;45506:8;45501:2;45493:6;45489:15;45482:33;45297:225;:::o;45528:178::-;45668:30;45664:1;45656:6;45652:14;45645:54;45528:178;:::o;45712:167::-;45852:19;45848:1;45840:6;45836:14;45829:43;45712:167;:::o;45885:223::-;46025:34;46021:1;46013:6;46009:14;46002:58;46094:6;46089:2;46081:6;46077:15;46070:31;45885:223;:::o;46114:175::-;46254:27;46250:1;46242:6;46238:14;46231:51;46114:175;:::o;46295:170::-;46435:22;46431:1;46423:6;46419:14;46412:46;46295:170;:::o;46471:240::-;46611:34;46607:1;46599:6;46595:14;46588:58;46680:23;46675:2;46667:6;46663:15;46656:48;46471:240;:::o;46717:231::-;46857:34;46853:1;46845:6;46841:14;46834:58;46926:14;46921:2;46913:6;46909:15;46902:39;46717:231;:::o;46954:243::-;47094:34;47090:1;47082:6;47078:14;47071:58;47163:26;47158:2;47150:6;47146:15;47139:51;46954:243;:::o;47203:229::-;47343:34;47339:1;47331:6;47327:14;47320:58;47412:12;47407:2;47399:6;47395:15;47388:37;47203:229;:::o;47438:228::-;47578:34;47574:1;47566:6;47562:14;47555:58;47647:11;47642:2;47634:6;47630:15;47623:36;47438:228;:::o;47672:182::-;47812:34;47808:1;47800:6;47796:14;47789:58;47672:182;:::o;47860:231::-;48000:34;47996:1;47988:6;47984:14;47977:58;48069:14;48064:2;48056:6;48052:15;48045:39;47860:231;:::o;48097:234::-;48237:34;48233:1;48225:6;48221:14;48214:58;48306:17;48301:2;48293:6;48289:15;48282:42;48097:234;:::o;48337:182::-;48477:34;48473:1;48465:6;48461:14;48454:58;48337:182;:::o;48525:228::-;48665:34;48661:1;48653:6;48649:14;48642:58;48734:11;48729:2;48721:6;48717:15;48710:36;48525:228;:::o;48759:242::-;48899:34;48895:1;48887:6;48883:14;48876:58;48968:25;48963:2;48955:6;48951:15;48944:50;48759:242;:::o;49007:234::-;49147:34;49143:1;49135:6;49131:14;49124:58;49216:17;49211:2;49203:6;49199:15;49192:42;49007:234;:::o;49247:173::-;49387:25;49383:1;49375:6;49371:14;49364:49;49247:173;:::o;49426:220::-;49566:34;49562:1;49554:6;49550:14;49543:58;49635:3;49630:2;49622:6;49618:15;49611:28;49426:220;:::o;49652:297::-;49792:34;49788:1;49780:6;49776:14;49769:58;49861:34;49856:2;49848:6;49844:15;49837:59;49930:11;49925:2;49917:6;49913:15;49906:36;49652:297;:::o;49955:224::-;50095:34;50091:1;50083:6;50079:14;50072:58;50164:7;50159:2;50151:6;50147:15;50140:32;49955:224;:::o;50185:114::-;;:::o;50305:166::-;50445:18;50441:1;50433:6;50429:14;50422:42;50305:166;:::o;50477:236::-;50617:34;50613:1;50605:6;50601:14;50594:58;50686:19;50681:2;50673:6;50669:15;50662:44;50477:236;:::o;50719:231::-;50859:34;50855:1;50847:6;50843:14;50836:58;50928:14;50923:2;50915:6;50911:15;50904:39;50719:231;:::o;50956:243::-;51096:34;51092:1;51084:6;51080:14;51073:58;51165:26;51160:2;51152:6;51148:15;51141:51;50956:243;:::o;51205:122::-;51278:24;51296:5;51278:24;:::i;:::-;51271:5;51268:35;51258:63;;51317:1;51314;51307:12;51258:63;51205:122;:::o;51333:116::-;51403:21;51418:5;51403:21;:::i;:::-;51396:5;51393:32;51383:60;;51439:1;51436;51429:12;51383:60;51333:116;:::o;51455:120::-;51527:23;51544:5;51527:23;:::i;:::-;51520:5;51517:34;51507:62;;51565:1;51562;51555:12;51507:62;51455:120;:::o;51581:122::-;51654:24;51672:5;51654:24;:::i;:::-;51647:5;51644:35;51634:63;;51693:1;51690;51683:12;51634:63;51581:122;:::o

Swarm Source

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