ETH Price: $2,524.99 (+0.07%)

Token

The Moose Society ($TMS)
 

Overview

Max Total Supply

5,000 $TMS

Holders

1,071

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
12 $TMS
0x8a7cbc544726b3f2fb43d08abbff6cae4fa23413
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:
TheMooseSociety

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-23
*/

// 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.

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(
                    abi.encodePacked(computedHash, proofElement)
                );
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(
                    abi.encodePacked(proofElement, computedHash)
                );
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}


// File: MetaMooseMansion.sol

pragma solidity ^0.8.0;

interface ITraxToken {
    function updateReward(address _from, address _to) external;

    function claimByMetaMoose(address _user, uint256 _rewardAmount) external;
}

interface IMiniMoose {
    function mintMiniMoose(address _to) external;
}

contract TheMooseSociety is ERC721Enumerable, Ownable, IERC721Receiver {
    using Counters for Counters.Counter;
    using MerkleProof for bytes32[];
    Counters.Counter private _tokenId;

    ITraxToken public TraxToken;
    IMiniMoose public MiniMoose;

    uint256 public constant MAX_MMM = 5000;
    uint256 public price = 4000000000000000; //0.004 Ether
    string baseTokenURI;
    bool public saleOpen = false;
    bool public presaleOpen = false;
    bytes32 public merkleRoot;
    mapping(address => uint256) public presaleMinted;
    mapping(address => uint256) public publicSaleNftCount;

    struct UserInfo {
        uint256 tokenId1;
        uint256 tokenId2;
        uint256 stakeTime;
    }

    mapping(address => UserInfo[]) public userInfo;

    event MetaMooseMansionMinted(uint256 totalMinted);
    event StakedMetaMooseMansion(
        address indexed user,
        uint256 tokenId1,
        uint256 tokenId2,
        uint256 stakeTime
    );
    event UnStakedMetaMooseMansion(
        address indexed user,
        uint256 tokenId1,
        uint256 tokenId2,
        uint256 stakeTime
    );

    constructor(string memory baseURI) ERC721("The Moose Society", "$TMS") {
        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 setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    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 setTraxToken(address _traxToken) external onlyOwner {
        TraxToken = ITraxToken(_traxToken);
    }

    function setMiniMoose(address _miniMoose) external onlyOwner {
        MiniMoose = IMiniMoose(_miniMoose);
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function airdrop(address[] calldata _recipients) external onlyOwner {
        require(
            totalSupply() + _recipients.length <= MAX_MMM,
            "Airdrop will exceed maximum supply of Meta Moose Mansion"
        );
        require(_recipients.length != 0, "Address not found");
        for (uint256 i = 0; i < _recipients.length; i++) {
            require(_recipients[i] != address(0), "Airdrop to Null address");
            _mint(_recipients[i]);
        }
    }

    function presaleMint(bytes32[] calldata _proof, uint256 _count)
        external
        payable
    {
        address user = msg.sender;
        require(
            merkleRoot != 0,
            "No address is eligible for presale minting yet"
        );
        require(presaleOpen, "Presale is not open yet");
        require(!saleOpen, "Presale is closed");
        require(
            _count > 0 && _count <= 2,
            "Minimum 1 & Maximum 2 Meta Moose Mansion can be minted per transaction"
        );
        require(
            totalSupply() + _count <= MAX_MMM,
            "Exceeds maximum supply of Meta Moose Mansion"
        );

        require(
            MerkleProof.verify(
                _proof,
                merkleRoot,
                keccak256(abi.encodePacked(user))
            ),
            "Address not eligible for presale mint"
        );
        require(
            2 >= presaleMinted[user] + _count,
            "Maximum 2 Meta Moose Mansion can be minted in presale per address"
        );
        require(
            msg.value >= price * _count,
            "Ether sent with this transaction is not correct"
        );

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

    //mint MetaMooseMansion
    function mintMetaMooseMansion(uint256 _count) external payable {
        require(
            totalSupply() + _count <= MAX_MMM,
            "Exceeds maximum supply of Meta Moose Mansion"
        );
        require(
            _count > 0,
            "Minimum 1 Meta Moose Mansion has to be minted per transaction"
        );

        address _to = msg.sender;
        if (_to != owner()) {
            require(saleOpen, "Sale is not open yet");
            require(
                _count <= 10,
                "Maximum 10 Meta Moose Mansion can be minted per transaction"
            );
            require(
                10 >= publicSaleNftCount[_to] + _count,
                "Maximum 10 Meta Moose Mansion can be minted per address"
            );
            require(
                msg.value >= price * _count,
                "Ether sent with this transaction is not correct"
            );
            publicSaleNftCount[_to] += _count;
        }
        for (uint256 i = 0; i < _count; i++) {
            _mint(_to);
        }
    }

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

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        TraxToken.updateReward(from, to);
        ERC721.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public override {
        TraxToken.updateReward(from, to);
        ERC721.safeTransferFrom(from, to, tokenId, data);
    }

    function stakeMoose(uint256 _tokenId1, uint256 _tokenId2) external {
        address staker = msg.sender;
        require(
            ownerOf(_tokenId1) == staker && ownerOf(_tokenId2) == staker,
            "Caller is not the owner of either one or both NFTs"
        );
        require(
            _tokenId1 != _tokenId2,
            "Token IDs should be different"
        );
        ERC721.safeTransferFrom(staker, address(this), _tokenId1, "");
        ERC721.safeTransferFrom(staker, address(this), _tokenId2, "");

        UserInfo memory userDetails;
        userDetails.tokenId1 = _tokenId1;
        userDetails.tokenId2 = _tokenId2;
        userDetails.stakeTime = block.timestamp;
        userInfo[staker].push(userDetails);

        emit StakedMetaMooseMansion(
            staker,
            _tokenId1,
            _tokenId2,
            block.timestamp
        );
    }

    function getUserStakeLength(address _owner)
        external
        view
        returns (uint256)
    {
        return userInfo[_owner].length;
    }

    function unStake(uint256 _index) external {
        address unStaker = msg.sender;
        UserInfo storage userDetails = userInfo[unStaker][_index];
        uint256 tokenId1 = userDetails.tokenId1;
        uint256 tokenId2 = userDetails.tokenId2;
        uint256 timePassedSinceStaked = getTimePassedSinceStake(
            unStaker,
            _index
        );
        require(
            timePassedSinceStaked >= 1,
            "You can not unstake before 90 days"
        );
        userDetails = userInfo[unStaker][userInfo[unStaker].length - 1];
        userInfo[unStaker].pop();

        ERC721.safeTransferFrom(address(this), unStaker, tokenId1, "");
        ERC721.safeTransferFrom(address(this), unStaker, tokenId2, "");
        if (address(MiniMoose) != address(0)) {
            MiniMoose.mintMiniMoose(unStaker);
        }

        TraxToken.claimByMetaMoose(unStaker, 20000000000000000000); //1800 Trax
        emit UnStakedMetaMooseMansion(
            unStaker,
            tokenId1,
            tokenId2,
            block.timestamp
        );
    }

    function getTimePassedSinceStake(address _owner, uint256 _index)
        public
        view
        returns (uint256)
    {
        return (block.timestamp - userInfo[_owner][_index].stakeTime) / 86400;
    }

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

      function onERC721Received(
        address,
        address,
        uint256,
        bytes memory
    ) external pure override returns (bytes4) {
        return this.onERC721Received.selector;
    }
}

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":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"MetaMooseMansionMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId1","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenId2","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"stakeTime","type":"uint256"}],"name":"StakedMetaMooseMansion","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId1","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenId2","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"stakeTime","type":"uint256"}],"name":"UnStakedMetaMooseMansion","type":"event"},{"inputs":[],"name":"MAX_MMM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MiniMoose","outputs":[{"internalType":"contract IMiniMoose","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TraxToken","outputs":[{"internalType":"contract ITraxToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_index","type":"uint256"}],"name":"getTimePassedSinceStake","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getUserStakeLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintMetaMooseMansion","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","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":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"","type":"address"}],"name":"publicSaleNftCount","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":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_miniMoose","type":"address"}],"name":"setMiniMoose","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_traxToken","type":"address"}],"name":"setTraxToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId1","type":"uint256"},{"internalType":"uint256","name":"_tokenId2","type":"uint256"}],"name":"stakeMoose","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":"uint256","name":"_index","type":"uint256"}],"name":"unStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"tokenId1","type":"uint256"},{"internalType":"uint256","name":"tokenId2","type":"uint256"},{"internalType":"uint256","name":"stakeTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052660e35fa931a0000600e556010805461ffff191690553480156200002757600080fd5b5060405162003c1138038062003c118339810160408190526200004a9162000257565b6040805180820182526011815270546865204d6f6f736520536f636965747960781b60208083019182528351808501909452600484526324544d5360e01b9084015281519192916200009f91600091620001b1565b508051620000b5906001906020840190620001b1565b505050620000d2620000cc620000e460201b60201c565b620000e8565b620000dd816200013a565b50620003b5565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000144620000e4565b6001600160a01b031662000157620001a2565b6001600160a01b031614620001895760405162461bcd60e51b815260040162000180906200032d565b60405180910390fd5b80516200019e90600f906020840190620001b1565b5050565b600a546001600160a01b031690565b828054620001bf9062000362565b90600052602060002090601f016020900481019282620001e357600085556200022e565b82601f10620001fe57805160ff19168380011785556200022e565b828001600101855582156200022e579182015b828111156200022e57825182559160200191906001019062000211565b506200023c92915062000240565b5090565b5b808211156200023c576000815560010162000241565b600060208083850312156200026a578182fd5b82516001600160401b038082111562000281578384fd5b818501915085601f83011262000295578384fd5b815181811115620002aa57620002aa6200039f565b604051601f8201601f19908116603f01168101908382118183101715620002d557620002d56200039f565b816040528281528886848701011115620002ed578687fd5b8693505b82841015620003105784840186015181850187015292850192620002f1565b828411156200032157868684830101525b98975050505050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200037757607f821691505b602082108114156200039957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61384c80620003c56000396000f3fe60806040526004361061027d5760003560e01c80637cb647591161014f578063bc660cac116100c1578063e985e9c51161007a578063e985e9c514610743578063f2fde38b14610763578063f7ea7bca14610783578063f81227d4146107a3578063fafcebcc146107b8578063fde5f548146107d85761027d565b8063bc660cac146106a4578063bee6348a146106c4578063bf104985146106d9578063c1260250146106ee578063c87b56dd1461070e578063d25171e81461072e5761027d565b806391b7f5ed1161011357806391b7f5ed1461060557806395d89b411461062557806399288dbb1461063a578063a035b1fe1461064f578063a22cb46514610664578063b88d4fde146106845761027d565b80637cb647591461057b5780637d3169f51461059b578063853828b6146105bb5780638da5cb5b146105d0578063900bdc84146105e55761027d565b806334918dfd116101f35780635d3eea91116101ac5780635d3eea91146104c65780636352211e146104e65780636c94e25a1461050657806370a0823114610526578063715018a614610546578063729ad39e1461055b5761027d565b806334918dfd1461040f5780633d36bcb41461042457806342842e0e14610439578063438b6300146104595780634f6ccce71461048657806355f804b3146104a65761027d565b8063150b7a0211610245578063150b7a021461033c57806318160ddd1461036957806321ce919d1461038b57806323b872dd146103ba5780632eb4a7ab146103da5780632f745c59146103ef5761027d565b806301ffc9a71461028257806306a52ab6146102b857806306fdde03146102cd578063081812fc146102ef578063095ea7b31461031c575b600080fd5b34801561028e57600080fd5b506102a261029d366004612a2b565b6107eb565b6040516102af9190612c1b565b60405180910390f35b6102cb6102c6366004612a13565b610818565b005b3480156102d957600080fd5b506102e26109a3565b6040516102af9190612c44565b3480156102fb57600080fd5b5061030f61030a366004612a13565b610a35565b6040516102af9190612b53565b34801561032857600080fd5b506102cb610337366004612960565b610a78565b34801561034857600080fd5b5061035c6103573660046128ad565b610b0b565b6040516102af9190612c2f565b34801561037557600080fd5b5061037e610b1c565b6040516102af9190612c26565b34801561039757600080fd5b506103ab6103a6366004612960565b610b22565b6040516102af939291906136b0565b3480156103c657600080fd5b506102cb6103d5366004612872565b610b64565b3480156103e657600080fd5b5061037e610bd3565b3480156103fb57600080fd5b5061037e61040a366004612960565b610bd9565b34801561041b57600080fd5b506102cb610c2b565b34801561043057600080fd5b5061030f610c7e565b34801561044557600080fd5b506102cb610454366004612872565b610c8d565b34801561046557600080fd5b50610479610474366004612826565b610ca8565b6040516102af9190612bd7565b34801561049257600080fd5b5061037e6104a1366004612a13565b610d66565b3480156104b257600080fd5b506102cb6104c1366004612a63565b610dc1565b3480156104d257600080fd5b506102cb6104e1366004612a13565b610e17565b3480156104f257600080fd5b5061030f610501366004612a13565b6110b8565b34801561051257600080fd5b506102cb610521366004612aa9565b6110ed565b34801561053257600080fd5b5061037e610541366004612826565b61123b565b34801561055257600080fd5b506102cb61127f565b34801561056757600080fd5b506102cb610576366004612989565b6112ca565b34801561058757600080fd5b506102cb610596366004612a13565b611412565b3480156105a757600080fd5b5061037e6105b6366004612960565b611456565b3480156105c757600080fd5b506102cb6114c2565b3480156105dc57600080fd5b5061030f611580565b3480156105f157600080fd5b506102cb610600366004612826565b61158f565b34801561061157600080fd5b506102cb610620366004612a13565b6115f0565b34801561063157600080fd5b506102e2611634565b34801561064657600080fd5b506102a2611643565b34801561065b57600080fd5b5061037e61164c565b34801561067057600080fd5b506102cb61067f366004612926565b611652565b34801561069057600080fd5b506102cb61069f3660046128ad565b611720565b3480156106b057600080fd5b5061037e6106bf366004612826565b611796565b3480156106d057600080fd5b506102a26117a8565b3480156106e557600080fd5b5061037e6117b6565b3480156106fa57600080fd5b506102cb610709366004612826565b6117bc565b34801561071a57600080fd5b506102e2610729366004612a13565b61181d565b34801561073a57600080fd5b5061030f61189f565b34801561074f57600080fd5b506102a261075e366004612840565b6118ae565b34801561076f57600080fd5b506102cb61077e366004612826565b6118dc565b34801561078f57600080fd5b5061037e61079e366004612826565b61194a565b3480156107af57600080fd5b506102cb611965565b3480156107c457600080fd5b5061037e6107d3366004612826565b6119c1565b6102cb6107e63660046129c9565b6119d3565b60006001600160e01b0319821663780e9d6360e01b1480610810575061081082611bee565b90505b919050565b61138881610824610b1c565b61082e91906136c6565b11156108555760405162461bcd60e51b815260040161084c90613071565b60405180910390fd5b600081116108755760405162461bcd60e51b815260040161084c9061358a565b3361087e611580565b6001600160a01b0316816001600160a01b0316146109785760105460ff166108b85760405162461bcd60e51b815260040161084c90612f8b565b600a8211156108d95760405162461bcd60e51b815260040161084c906131fb565b6001600160a01b0381166000908152601360205260409020546108fd9083906136c6565b600a101561091d5760405162461bcd60e51b815260040161084c906133f5565b81600e5461092b91906136f2565b34101561094a5760405162461bcd60e51b815260040161084c906132d9565b6001600160a01b038116600090815260136020526040812080548492906109729084906136c6565b90915550505b60005b8281101561099e5761098c82611c2e565b806109968161378f565b91505061097b565b505050565b6060600080546109b290613754565b80601f01602080910402602001604051908101604052809291908181526020018280546109de90613754565b8015610a2b5780601f10610a0057610100808354040283529160200191610a2b565b820191906000526020600020905b815481529060010190602001808311610a0e57829003601f168201915b5050505050905090565b6000610a4082611c8b565b610a5c5760405162461bcd60e51b815260040161084c9061328d565b506000908152600460205260409020546001600160a01b031690565b6000610a83826110b8565b9050806001600160a01b0316836001600160a01b03161415610ab75760405162461bcd60e51b815260040161084c90613489565b806001600160a01b0316610ac9611ca8565b6001600160a01b03161480610ae55750610ae58161075e611ca8565b610b015760405162461bcd60e51b815260040161084c9061310b565b61099e8383611cac565b630a85bd0160e11b5b949350505050565b60085490565b60146020528160005260406000208181548110610b3e57600080fd5b600091825260209091206003909102018054600182015460029092015490935090915083565b600c54604051636918579d60e11b81526001600160a01b039091169063d230af3a90610b969086908690600401612b67565b600060405180830381600087803b158015610bb057600080fd5b505af1158015610bc4573d6000803e3d6000fd5b5050505061099e838383611d1a565b60115481565b6000610be48361123b565b8210610c025760405162461bcd60e51b815260040161084c90612d94565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610c33611ca8565b6001600160a01b0316610c44611580565b6001600160a01b031614610c6a5760405162461bcd60e51b815260040161084c90613328565b6010805460ff19811660ff90911615179055565b600c546001600160a01b031681565b61099e83838360405180602001604052806000815250611720565b60606000610cb58361123b565b905060008167ffffffffffffffff811115610ce057634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610d09578160200160208202803683370190505b50905060005b82811015610d5e57610d218582610bd9565b828281518110610d4157634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610d568161378f565b915050610d0f565b509392505050565b6000610d70610b1c565b8210610d8e5760405162461bcd60e51b815260040161084c90613639565b60088281548110610daf57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610dc9611ca8565b6001600160a01b0316610dda611580565b6001600160a01b031614610e005760405162461bcd60e51b815260040161084c90613328565b8051610e1390600f906020840190612696565b5050565b336000818152601460205260408120805484908110610e4657634e487b7160e01b600052603260045260246000fd5b6000918252602082206003909102018054600182015491935091610e6a8587611456565b90506001811015610e8d5760405162461bcd60e51b815260040161084c90612d52565b6001600160a01b03851660009081526014602052604090208054610eb390600190613711565b81548110610ed157634e487b7160e01b600052603260045260246000fd5b9060005260206000209060030201935060146000866001600160a01b03166001600160a01b03168152602001908152602001600020805480610f2357634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002090600302016000808201600090556001820160009055600282016000905550509055610f6f30868560405180602001604052806000815250611d52565b610f8a30868460405180602001604052806000815250611d52565b600d546001600160a01b031615610ffe57600d5460405163211adaa560e01b81526001600160a01b039091169063211adaa590610fcb908890600401612b53565b600060405180830381600087803b158015610fe557600080fd5b505af1158015610ff9573d6000803e3d6000fd5b505050505b600c54604051630aebc55360e21b81526001600160a01b0390911690632baf154c906110399088906801158e460913d0000090600401612bbe565b600060405180830381600087803b15801561105357600080fd5b505af1158015611067573d6000803e3d6000fd5b50505050846001600160a01b03167fd3a0046db90b3dc683b61f03cd1a4710a874d5373ec0970b1dff0431bada31e68484426040516110a8939291906136b0565b60405180910390a2505050505050565b6000818152600260205260408120546001600160a01b0316806108105760405162461bcd60e51b815260040161084c906131b2565b33806110f8846110b8565b6001600160a01b03161480156111275750806001600160a01b031661111c836110b8565b6001600160a01b0316145b6111435760405162461bcd60e51b815260040161084c906135e7565b818314156111635760405162461bcd60e51b815260040161084c90612cb4565b61117e81308560405180602001604052806000815250611d52565b61119981308460405180602001604052806000815250611d52565b6111a161271a565b83815260208082018481524260408085018281526001600160a01b03871660008181526014875283812080546001818101835591835297909120885160039098020196875594519486019490945551600290940193909355915190917f87906849ca313f115f491c666f14b84564bdaa2e152f6945420529946de678939161122d9188918891906136b0565b60405180910390a250505050565b60006001600160a01b0382166112635760405162461bcd60e51b815260040161084c90613168565b506001600160a01b031660009081526003602052604090205490565b611287611ca8565b6001600160a01b0316611298611580565b6001600160a01b0316146112be5760405162461bcd60e51b815260040161084c90613328565b6112c86000611d8b565b565b6112d2611ca8565b6001600160a01b03166112e3611580565b6001600160a01b0316146113095760405162461bcd60e51b815260040161084c90613328565b61138881611315610b1c565b61131f91906136c6565b111561133d5760405162461bcd60e51b815260040161084c90612c57565b8061135a5760405162461bcd60e51b815260040161084c90613685565b60005b8181101561099e57600083838381811061138757634e487b7160e01b600052603260045260246000fd5b905060200201602081019061139c9190612826565b6001600160a01b031614156113c35760405162461bcd60e51b815260040161084c90612ed9565b6114008383838181106113e657634e487b7160e01b600052603260045260246000fd5b90506020020160208101906113fb9190612826565b611c2e565b8061140a8161378f565b91505061135d565b61141a611ca8565b6001600160a01b031661142b611580565b6001600160a01b0316146114515760405162461bcd60e51b815260040161084c90613328565b601155565b6001600160a01b038216600090815260146020526040812080546201518091908490811061149457634e487b7160e01b600052603260045260246000fd5b906000526020600020906003020160020154426114b19190613711565b6114bb91906136de565b9392505050565b6114ca611ca8565b6001600160a01b03166114db611580565b6001600160a01b0316146115015760405162461bcd60e51b815260040161084c90613328565b6000336001600160a01b03164760405161151a90612b50565b60006040518083038185875af1925050503d8060008114611557576040519150601f19603f3d011682016040523d82523d6000602084013e61155c565b606091505b505090508061157d5760405162461bcd60e51b815260040161084c9061350f565b50565b600a546001600160a01b031690565b611597611ca8565b6001600160a01b03166115a8611580565b6001600160a01b0316146115ce5760405162461bcd60e51b815260040161084c90613328565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6115f8611ca8565b6001600160a01b0316611609611580565b6001600160a01b03161461162f5760405162461bcd60e51b815260040161084c90613328565b600e55565b6060600180546109b290613754565b60105460ff1681565b600e5481565b61165a611ca8565b6001600160a01b0316826001600160a01b0316141561168b5760405162461bcd60e51b815260040161084c90612f54565b8060056000611698611ca8565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556116dc611ca8565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117149190612c1b565b60405180910390a35050565b600c54604051636918579d60e11b81526001600160a01b039091169063d230af3a906117529087908790600401612b67565b600060405180830381600087803b15801561176c57600080fd5b505af1158015611780573d6000803e3d6000fd5b5050505061179084848484611d52565b50505050565b60126020526000908152604090205481565b601054610100900460ff1681565b61138881565b6117c4611ca8565b6001600160a01b03166117d5611580565b6001600160a01b0316146117fb5760405162461bcd60e51b815260040161084c90613328565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b606061182882611c8b565b6118445760405162461bcd60e51b815260040161084c906133a6565b600061184e611ddd565b9050600081511161186e57604051806020016040528060008152506114bb565b8061187884611dec565b604051602001611889929190612b21565b6040516020818303038152906040529392505050565b600d546001600160a01b031681565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6118e4611ca8565b6001600160a01b03166118f5611580565b6001600160a01b03161461191b5760405162461bcd60e51b815260040161084c90613328565b6001600160a01b0381166119415760405162461bcd60e51b815260040161084c90612e31565b61157d81611d8b565b6001600160a01b031660009081526014602052604090205490565b61196d611ca8565b6001600160a01b031661197e611580565b6001600160a01b0316146119a45760405162461bcd60e51b815260040161084c90613328565b6010805461ff001981166101009182900460ff1615909102179055565b60136020526000908152604090205481565b60115433906119f45760405162461bcd60e51b815260040161084c906130bd565b601054610100900460ff16611a1b5760405162461bcd60e51b815260040161084c90613452565b60105460ff1615611a3e5760405162461bcd60e51b815260040161084c90612eae565b600082118015611a4f575060028211155b611a6b5760405162461bcd60e51b815260040161084c90612fb9565b61138882611a77610b1c565b611a8191906136c6565b1115611a9f5760405162461bcd60e51b815260040161084c90613071565b611b0684848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601154604051909250611aeb91508590602001612af6565b60405160208183030381529060405280519060200120611f07565b611b225760405162461bcd60e51b815260040161084c906134ca565b6001600160a01b038116600090815260126020526040902054611b469083906136c6565b60021015611b665760405162461bcd60e51b815260040161084c90612ceb565b81600e54611b7491906136f2565b341015611b935760405162461bcd60e51b815260040161084c906132d9565b6001600160a01b03811660009081526012602052604081208054849290611bbb9084906136c6565b90915550600090505b82811015611be757611bd582611c2e565b80611bdf8161378f565b915050611bc4565b5050505050565b60006001600160e01b031982166380ac58cd60e01b1480611c1f57506001600160e01b03198216635b5e139f60e01b145b80610810575061081082611fc2565b611c38600b611fdb565b6000611c44600b611fe4565b9050611c508282611fe8565b7f5554806992722bbbfd016ecd4d736ba0c68d3d38a76930842f365c60ab3d778e81604051611c7f9190612c26565b60405180910390a15050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ce1826110b8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611d2b611d25611ca8565b82612002565b611d475760405162461bcd60e51b815260040161084c90613539565b61099e83838361207f565b611d63611d5d611ca8565b83612002565b611d7f5760405162461bcd60e51b815260040161084c90613539565b611790848484846121ac565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6060600f80546109b290613754565b606081611e1157506040805180820190915260018152600360fc1b6020820152610813565b8160005b8115611e3b5780611e258161378f565b9150611e349050600a836136de565b9150611e15565b60008167ffffffffffffffff811115611e6457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e8e576020820181803683370190505b5090505b8415610b1457611ea3600183613711565b9150611eb0600a866137aa565b611ebb9060306136c6565b60f81b818381518110611ede57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f00600a866136de565b9450611e92565b600081815b8551811015611fb7576000868281518110611f3757634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611f78578281604051602001611f5b929190612b13565b604051602081830303815290604052805190602001209250611fa4565b8083604051602001611f8b929190612b13565b6040516020818303038152906040528051906020012092505b5080611faf8161378f565b915050611f0c565b509092149392505050565b6001600160e01b031981166301ffc9a760e01b14919050565b80546001019055565b5490565b610e138282604051806020016040528060008152506121df565b600061200d82611c8b565b6120295760405162461bcd60e51b815260040161084c90613025565b6000612034836110b8565b9050806001600160a01b0316846001600160a01b0316148061206f5750836001600160a01b031661206484610a35565b6001600160a01b0316145b80610b145750610b1481856118ae565b826001600160a01b0316612092826110b8565b6001600160a01b0316146120b85760405162461bcd60e51b815260040161084c9061335d565b6001600160a01b0382166120de5760405162461bcd60e51b815260040161084c90612f10565b6120e9838383612212565b6120f4600082611cac565b6001600160a01b038316600090815260036020526040812080546001929061211d908490613711565b90915550506001600160a01b038216600090815260036020526040812080546001929061214b9084906136c6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6121b784848461207f565b6121c38484848461229b565b6117905760405162461bcd60e51b815260040161084c90612ddf565b6121e983836123b3565b6121f6600084848461229b565b61099e5760405162461bcd60e51b815260040161084c90612ddf565b61221d83838361099e565b6001600160a01b0383166122395761223481612492565b61225c565b816001600160a01b0316836001600160a01b03161461225c5761225c83826124d6565b6001600160a01b0382166122785761227381612573565b61099e565b826001600160a01b0316826001600160a01b03161461099e5761099e828261264c565b60006122af846001600160a01b0316612690565b156123ab57836001600160a01b031663150b7a026122cb611ca8565b8786866040518563ffffffff1660e01b81526004016122ed9493929190612b81565b602060405180830381600087803b15801561230757600080fd5b505af1925050508015612337575060408051601f3d908101601f1916820190925261233491810190612a47565b60015b612391573d808015612365576040519150601f19603f3d011682016040523d82523d6000602084013e61236a565b606091505b5080516123895760405162461bcd60e51b815260040161084c90612ddf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b14565b506001610b14565b6001600160a01b0382166123d95760405162461bcd60e51b815260040161084c90613258565b6123e281611c8b565b156123ff5760405162461bcd60e51b815260040161084c90612e77565b61240b60008383612212565b6001600160a01b03821660009081526003602052604081208054600192906124349084906136c6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016124e38461123b565b6124ed9190613711565b600083815260076020526040902054909150808214612540576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061258590600190613711565b600083815260096020526040812054600880549394509092849081106125bb57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106125ea57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061263057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006126578361123b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b8280546126a290613754565b90600052602060002090601f0160209004810192826126c4576000855561270a565b82601f106126dd57805160ff191683800117855561270a565b8280016001018555821561270a579182015b8281111561270a5782518255916020019190600101906126ef565b5061271692915061273b565b5090565b60405180606001604052806000815260200160008152602001600081525090565b5b80821115612716576000815560010161273c565b600067ffffffffffffffff8084111561276b5761276b6137ea565b604051601f8501601f19908116603f01168101908282118183101715612793576127936137ea565b816040528093508581528686860111156127ac57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461081357600080fd5b60008083601f8401126127ee578081fd5b50813567ffffffffffffffff811115612805578182fd5b602083019150836020808302850101111561281f57600080fd5b9250929050565b600060208284031215612837578081fd5b6114bb826127c6565b60008060408385031215612852578081fd5b61285b836127c6565b9150612869602084016127c6565b90509250929050565b600080600060608486031215612886578081fd5b61288f846127c6565b925061289d602085016127c6565b9150604084013590509250925092565b600080600080608085870312156128c2578081fd5b6128cb856127c6565b93506128d9602086016127c6565b925060408501359150606085013567ffffffffffffffff8111156128fb578182fd5b8501601f8101871361290b578182fd5b61291a87823560208401612750565b91505092959194509250565b60008060408385031215612938578182fd5b612941836127c6565b915060208301358015158114612955578182fd5b809150509250929050565b60008060408385031215612972578182fd5b61297b836127c6565b946020939093013593505050565b6000806020838503121561299b578182fd5b823567ffffffffffffffff8111156129b1578283fd5b6129bd858286016127dd565b90969095509350505050565b6000806000604084860312156129dd578283fd5b833567ffffffffffffffff8111156129f3578384fd5b6129ff868287016127dd565b909790965060209590950135949350505050565b600060208284031215612a24578081fd5b5035919050565b600060208284031215612a3c578081fd5b81356114bb81613800565b600060208284031215612a58578081fd5b81516114bb81613800565b600060208284031215612a74578081fd5b813567ffffffffffffffff811115612a8a578182fd5b8201601f81018413612a9a578182fd5b610b1484823560208401612750565b60008060408385031215612abb578182fd5b50508035926020909101359150565b60008151808452612ae2816020860160208601613728565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b60008351612b33818460208801613728565b835190830190612b47818360208801613728565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612bb490830184612aca565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b6020808252825182820181905260009190848201906040850190845b81811015612c0f57835183529284019291840191600101612bf3565b50909695505050505050565b901515815260200190565b90815260200190565b6001600160e01b031991909116815260200190565b6000602082526114bb6020830184612aca565b60208082526038908201527f41697264726f702077696c6c20657863656564206d6178696d756d207375707060408201527f6c79206f66204d657461204d6f6f7365204d616e73696f6e0000000000000000606082015260800190565b6020808252601d908201527f546f6b656e204944732073686f756c6420626520646966666572656e74000000604082015260600190565b60208082526041908201527f4d6178696d756d2032204d657461204d6f6f7365204d616e73696f6e2063616e60408201527f206265206d696e74656420696e2070726573616c6520706572206164647265736060820152607360f81b608082015260a00190565b60208082526022908201527f596f752063616e206e6f7420756e7374616b65206265666f7265203930206461604082015261797360f01b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b602080825260119082015270141c995cd85b19481a5cc818db1bdcd959607a1b604082015260600190565b60208082526017908201527f41697264726f7020746f204e756c6c2061646472657373000000000000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526014908201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b604082015260600190565b60208082526046908201527f4d696e696d756d20312026204d6178696d756d2032204d657461204d6f6f736560408201527f204d616e73696f6e2063616e206265206d696e74656420706572207472616e7360608201526530b1ba34b7b760d11b608082015260a00190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602c908201527f45786365656473206d6178696d756d20737570706c79206f66204d657461204d60408201526b37b7b9b29026b0b739b4b7b760a11b606082015260800190565b6020808252602e908201527f4e6f206164647265737320697320656c696769626c6520666f7220707265736160408201526d1b19481b5a5b9d1a5b99c81e595d60921b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252603b908201527f4d6178696d756d203130204d657461204d6f6f7365204d616e73696f6e20636160408201527f6e206265206d696e74656420706572207472616e73616374696f6e0000000000606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602f908201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60408201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526037908201527f4d6178696d756d203130204d657461204d6f6f7365204d616e73696f6e20636160408201527f6e206265206d696e746564207065722061646472657373000000000000000000606082015260800190565b60208082526017908201527f50726573616c65206973206e6f74206f70656e20796574000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526025908201527f41646472657373206e6f7420656c696769626c6520666f722070726573616c65604082015264081b5a5b9d60da1b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252603d908201527f4d696e696d756d2031204d657461204d6f6f7365204d616e73696f6e2068617360408201527f20746f206265206d696e74656420706572207472616e73616374696f6e000000606082015260800190565b60208082526032908201527f43616c6c6572206973206e6f7420746865206f776e6572206f6620656974686560408201527172206f6e65206f7220626f7468204e46547360701b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601190820152701059191c995cdcc81b9bdd08199bdd5b99607a1b604082015260600190565b9283526020830191909152604082015260600190565b600082198211156136d9576136d96137be565b500190565b6000826136ed576136ed6137d4565b500490565b600081600019048311821515161561370c5761370c6137be565b500290565b600082821015613723576137236137be565b500390565b60005b8381101561374357818101518382015260200161372b565b838111156117905750506000910152565b60028104600182168061376857607f821691505b6020821081141561378957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156137a3576137a36137be565b5060010190565b6000826137b9576137b96137d4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461157d57600080fdfea26469706673582212205885ae7eed27679311b91070ed9e6a9ebc7dd4489770926cac59446c08afcd2164736f6c6343000801003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80637cb647591161014f578063bc660cac116100c1578063e985e9c51161007a578063e985e9c514610743578063f2fde38b14610763578063f7ea7bca14610783578063f81227d4146107a3578063fafcebcc146107b8578063fde5f548146107d85761027d565b8063bc660cac146106a4578063bee6348a146106c4578063bf104985146106d9578063c1260250146106ee578063c87b56dd1461070e578063d25171e81461072e5761027d565b806391b7f5ed1161011357806391b7f5ed1461060557806395d89b411461062557806399288dbb1461063a578063a035b1fe1461064f578063a22cb46514610664578063b88d4fde146106845761027d565b80637cb647591461057b5780637d3169f51461059b578063853828b6146105bb5780638da5cb5b146105d0578063900bdc84146105e55761027d565b806334918dfd116101f35780635d3eea91116101ac5780635d3eea91146104c65780636352211e146104e65780636c94e25a1461050657806370a0823114610526578063715018a614610546578063729ad39e1461055b5761027d565b806334918dfd1461040f5780633d36bcb41461042457806342842e0e14610439578063438b6300146104595780634f6ccce71461048657806355f804b3146104a65761027d565b8063150b7a0211610245578063150b7a021461033c57806318160ddd1461036957806321ce919d1461038b57806323b872dd146103ba5780632eb4a7ab146103da5780632f745c59146103ef5761027d565b806301ffc9a71461028257806306a52ab6146102b857806306fdde03146102cd578063081812fc146102ef578063095ea7b31461031c575b600080fd5b34801561028e57600080fd5b506102a261029d366004612a2b565b6107eb565b6040516102af9190612c1b565b60405180910390f35b6102cb6102c6366004612a13565b610818565b005b3480156102d957600080fd5b506102e26109a3565b6040516102af9190612c44565b3480156102fb57600080fd5b5061030f61030a366004612a13565b610a35565b6040516102af9190612b53565b34801561032857600080fd5b506102cb610337366004612960565b610a78565b34801561034857600080fd5b5061035c6103573660046128ad565b610b0b565b6040516102af9190612c2f565b34801561037557600080fd5b5061037e610b1c565b6040516102af9190612c26565b34801561039757600080fd5b506103ab6103a6366004612960565b610b22565b6040516102af939291906136b0565b3480156103c657600080fd5b506102cb6103d5366004612872565b610b64565b3480156103e657600080fd5b5061037e610bd3565b3480156103fb57600080fd5b5061037e61040a366004612960565b610bd9565b34801561041b57600080fd5b506102cb610c2b565b34801561043057600080fd5b5061030f610c7e565b34801561044557600080fd5b506102cb610454366004612872565b610c8d565b34801561046557600080fd5b50610479610474366004612826565b610ca8565b6040516102af9190612bd7565b34801561049257600080fd5b5061037e6104a1366004612a13565b610d66565b3480156104b257600080fd5b506102cb6104c1366004612a63565b610dc1565b3480156104d257600080fd5b506102cb6104e1366004612a13565b610e17565b3480156104f257600080fd5b5061030f610501366004612a13565b6110b8565b34801561051257600080fd5b506102cb610521366004612aa9565b6110ed565b34801561053257600080fd5b5061037e610541366004612826565b61123b565b34801561055257600080fd5b506102cb61127f565b34801561056757600080fd5b506102cb610576366004612989565b6112ca565b34801561058757600080fd5b506102cb610596366004612a13565b611412565b3480156105a757600080fd5b5061037e6105b6366004612960565b611456565b3480156105c757600080fd5b506102cb6114c2565b3480156105dc57600080fd5b5061030f611580565b3480156105f157600080fd5b506102cb610600366004612826565b61158f565b34801561061157600080fd5b506102cb610620366004612a13565b6115f0565b34801561063157600080fd5b506102e2611634565b34801561064657600080fd5b506102a2611643565b34801561065b57600080fd5b5061037e61164c565b34801561067057600080fd5b506102cb61067f366004612926565b611652565b34801561069057600080fd5b506102cb61069f3660046128ad565b611720565b3480156106b057600080fd5b5061037e6106bf366004612826565b611796565b3480156106d057600080fd5b506102a26117a8565b3480156106e557600080fd5b5061037e6117b6565b3480156106fa57600080fd5b506102cb610709366004612826565b6117bc565b34801561071a57600080fd5b506102e2610729366004612a13565b61181d565b34801561073a57600080fd5b5061030f61189f565b34801561074f57600080fd5b506102a261075e366004612840565b6118ae565b34801561076f57600080fd5b506102cb61077e366004612826565b6118dc565b34801561078f57600080fd5b5061037e61079e366004612826565b61194a565b3480156107af57600080fd5b506102cb611965565b3480156107c457600080fd5b5061037e6107d3366004612826565b6119c1565b6102cb6107e63660046129c9565b6119d3565b60006001600160e01b0319821663780e9d6360e01b1480610810575061081082611bee565b90505b919050565b61138881610824610b1c565b61082e91906136c6565b11156108555760405162461bcd60e51b815260040161084c90613071565b60405180910390fd5b600081116108755760405162461bcd60e51b815260040161084c9061358a565b3361087e611580565b6001600160a01b0316816001600160a01b0316146109785760105460ff166108b85760405162461bcd60e51b815260040161084c90612f8b565b600a8211156108d95760405162461bcd60e51b815260040161084c906131fb565b6001600160a01b0381166000908152601360205260409020546108fd9083906136c6565b600a101561091d5760405162461bcd60e51b815260040161084c906133f5565b81600e5461092b91906136f2565b34101561094a5760405162461bcd60e51b815260040161084c906132d9565b6001600160a01b038116600090815260136020526040812080548492906109729084906136c6565b90915550505b60005b8281101561099e5761098c82611c2e565b806109968161378f565b91505061097b565b505050565b6060600080546109b290613754565b80601f01602080910402602001604051908101604052809291908181526020018280546109de90613754565b8015610a2b5780601f10610a0057610100808354040283529160200191610a2b565b820191906000526020600020905b815481529060010190602001808311610a0e57829003601f168201915b5050505050905090565b6000610a4082611c8b565b610a5c5760405162461bcd60e51b815260040161084c9061328d565b506000908152600460205260409020546001600160a01b031690565b6000610a83826110b8565b9050806001600160a01b0316836001600160a01b03161415610ab75760405162461bcd60e51b815260040161084c90613489565b806001600160a01b0316610ac9611ca8565b6001600160a01b03161480610ae55750610ae58161075e611ca8565b610b015760405162461bcd60e51b815260040161084c9061310b565b61099e8383611cac565b630a85bd0160e11b5b949350505050565b60085490565b60146020528160005260406000208181548110610b3e57600080fd5b600091825260209091206003909102018054600182015460029092015490935090915083565b600c54604051636918579d60e11b81526001600160a01b039091169063d230af3a90610b969086908690600401612b67565b600060405180830381600087803b158015610bb057600080fd5b505af1158015610bc4573d6000803e3d6000fd5b5050505061099e838383611d1a565b60115481565b6000610be48361123b565b8210610c025760405162461bcd60e51b815260040161084c90612d94565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610c33611ca8565b6001600160a01b0316610c44611580565b6001600160a01b031614610c6a5760405162461bcd60e51b815260040161084c90613328565b6010805460ff19811660ff90911615179055565b600c546001600160a01b031681565b61099e83838360405180602001604052806000815250611720565b60606000610cb58361123b565b905060008167ffffffffffffffff811115610ce057634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610d09578160200160208202803683370190505b50905060005b82811015610d5e57610d218582610bd9565b828281518110610d4157634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610d568161378f565b915050610d0f565b509392505050565b6000610d70610b1c565b8210610d8e5760405162461bcd60e51b815260040161084c90613639565b60088281548110610daf57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610dc9611ca8565b6001600160a01b0316610dda611580565b6001600160a01b031614610e005760405162461bcd60e51b815260040161084c90613328565b8051610e1390600f906020840190612696565b5050565b336000818152601460205260408120805484908110610e4657634e487b7160e01b600052603260045260246000fd5b6000918252602082206003909102018054600182015491935091610e6a8587611456565b90506001811015610e8d5760405162461bcd60e51b815260040161084c90612d52565b6001600160a01b03851660009081526014602052604090208054610eb390600190613711565b81548110610ed157634e487b7160e01b600052603260045260246000fd5b9060005260206000209060030201935060146000866001600160a01b03166001600160a01b03168152602001908152602001600020805480610f2357634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002090600302016000808201600090556001820160009055600282016000905550509055610f6f30868560405180602001604052806000815250611d52565b610f8a30868460405180602001604052806000815250611d52565b600d546001600160a01b031615610ffe57600d5460405163211adaa560e01b81526001600160a01b039091169063211adaa590610fcb908890600401612b53565b600060405180830381600087803b158015610fe557600080fd5b505af1158015610ff9573d6000803e3d6000fd5b505050505b600c54604051630aebc55360e21b81526001600160a01b0390911690632baf154c906110399088906801158e460913d0000090600401612bbe565b600060405180830381600087803b15801561105357600080fd5b505af1158015611067573d6000803e3d6000fd5b50505050846001600160a01b03167fd3a0046db90b3dc683b61f03cd1a4710a874d5373ec0970b1dff0431bada31e68484426040516110a8939291906136b0565b60405180910390a2505050505050565b6000818152600260205260408120546001600160a01b0316806108105760405162461bcd60e51b815260040161084c906131b2565b33806110f8846110b8565b6001600160a01b03161480156111275750806001600160a01b031661111c836110b8565b6001600160a01b0316145b6111435760405162461bcd60e51b815260040161084c906135e7565b818314156111635760405162461bcd60e51b815260040161084c90612cb4565b61117e81308560405180602001604052806000815250611d52565b61119981308460405180602001604052806000815250611d52565b6111a161271a565b83815260208082018481524260408085018281526001600160a01b03871660008181526014875283812080546001818101835591835297909120885160039098020196875594519486019490945551600290940193909355915190917f87906849ca313f115f491c666f14b84564bdaa2e152f6945420529946de678939161122d9188918891906136b0565b60405180910390a250505050565b60006001600160a01b0382166112635760405162461bcd60e51b815260040161084c90613168565b506001600160a01b031660009081526003602052604090205490565b611287611ca8565b6001600160a01b0316611298611580565b6001600160a01b0316146112be5760405162461bcd60e51b815260040161084c90613328565b6112c86000611d8b565b565b6112d2611ca8565b6001600160a01b03166112e3611580565b6001600160a01b0316146113095760405162461bcd60e51b815260040161084c90613328565b61138881611315610b1c565b61131f91906136c6565b111561133d5760405162461bcd60e51b815260040161084c90612c57565b8061135a5760405162461bcd60e51b815260040161084c90613685565b60005b8181101561099e57600083838381811061138757634e487b7160e01b600052603260045260246000fd5b905060200201602081019061139c9190612826565b6001600160a01b031614156113c35760405162461bcd60e51b815260040161084c90612ed9565b6114008383838181106113e657634e487b7160e01b600052603260045260246000fd5b90506020020160208101906113fb9190612826565b611c2e565b8061140a8161378f565b91505061135d565b61141a611ca8565b6001600160a01b031661142b611580565b6001600160a01b0316146114515760405162461bcd60e51b815260040161084c90613328565b601155565b6001600160a01b038216600090815260146020526040812080546201518091908490811061149457634e487b7160e01b600052603260045260246000fd5b906000526020600020906003020160020154426114b19190613711565b6114bb91906136de565b9392505050565b6114ca611ca8565b6001600160a01b03166114db611580565b6001600160a01b0316146115015760405162461bcd60e51b815260040161084c90613328565b6000336001600160a01b03164760405161151a90612b50565b60006040518083038185875af1925050503d8060008114611557576040519150601f19603f3d011682016040523d82523d6000602084013e61155c565b606091505b505090508061157d5760405162461bcd60e51b815260040161084c9061350f565b50565b600a546001600160a01b031690565b611597611ca8565b6001600160a01b03166115a8611580565b6001600160a01b0316146115ce5760405162461bcd60e51b815260040161084c90613328565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6115f8611ca8565b6001600160a01b0316611609611580565b6001600160a01b03161461162f5760405162461bcd60e51b815260040161084c90613328565b600e55565b6060600180546109b290613754565b60105460ff1681565b600e5481565b61165a611ca8565b6001600160a01b0316826001600160a01b0316141561168b5760405162461bcd60e51b815260040161084c90612f54565b8060056000611698611ca8565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556116dc611ca8565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117149190612c1b565b60405180910390a35050565b600c54604051636918579d60e11b81526001600160a01b039091169063d230af3a906117529087908790600401612b67565b600060405180830381600087803b15801561176c57600080fd5b505af1158015611780573d6000803e3d6000fd5b5050505061179084848484611d52565b50505050565b60126020526000908152604090205481565b601054610100900460ff1681565b61138881565b6117c4611ca8565b6001600160a01b03166117d5611580565b6001600160a01b0316146117fb5760405162461bcd60e51b815260040161084c90613328565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b606061182882611c8b565b6118445760405162461bcd60e51b815260040161084c906133a6565b600061184e611ddd565b9050600081511161186e57604051806020016040528060008152506114bb565b8061187884611dec565b604051602001611889929190612b21565b6040516020818303038152906040529392505050565b600d546001600160a01b031681565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6118e4611ca8565b6001600160a01b03166118f5611580565b6001600160a01b03161461191b5760405162461bcd60e51b815260040161084c90613328565b6001600160a01b0381166119415760405162461bcd60e51b815260040161084c90612e31565b61157d81611d8b565b6001600160a01b031660009081526014602052604090205490565b61196d611ca8565b6001600160a01b031661197e611580565b6001600160a01b0316146119a45760405162461bcd60e51b815260040161084c90613328565b6010805461ff001981166101009182900460ff1615909102179055565b60136020526000908152604090205481565b60115433906119f45760405162461bcd60e51b815260040161084c906130bd565b601054610100900460ff16611a1b5760405162461bcd60e51b815260040161084c90613452565b60105460ff1615611a3e5760405162461bcd60e51b815260040161084c90612eae565b600082118015611a4f575060028211155b611a6b5760405162461bcd60e51b815260040161084c90612fb9565b61138882611a77610b1c565b611a8191906136c6565b1115611a9f5760405162461bcd60e51b815260040161084c90613071565b611b0684848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601154604051909250611aeb91508590602001612af6565b60405160208183030381529060405280519060200120611f07565b611b225760405162461bcd60e51b815260040161084c906134ca565b6001600160a01b038116600090815260126020526040902054611b469083906136c6565b60021015611b665760405162461bcd60e51b815260040161084c90612ceb565b81600e54611b7491906136f2565b341015611b935760405162461bcd60e51b815260040161084c906132d9565b6001600160a01b03811660009081526012602052604081208054849290611bbb9084906136c6565b90915550600090505b82811015611be757611bd582611c2e565b80611bdf8161378f565b915050611bc4565b5050505050565b60006001600160e01b031982166380ac58cd60e01b1480611c1f57506001600160e01b03198216635b5e139f60e01b145b80610810575061081082611fc2565b611c38600b611fdb565b6000611c44600b611fe4565b9050611c508282611fe8565b7f5554806992722bbbfd016ecd4d736ba0c68d3d38a76930842f365c60ab3d778e81604051611c7f9190612c26565b60405180910390a15050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ce1826110b8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611d2b611d25611ca8565b82612002565b611d475760405162461bcd60e51b815260040161084c90613539565b61099e83838361207f565b611d63611d5d611ca8565b83612002565b611d7f5760405162461bcd60e51b815260040161084c90613539565b611790848484846121ac565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6060600f80546109b290613754565b606081611e1157506040805180820190915260018152600360fc1b6020820152610813565b8160005b8115611e3b5780611e258161378f565b9150611e349050600a836136de565b9150611e15565b60008167ffffffffffffffff811115611e6457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e8e576020820181803683370190505b5090505b8415610b1457611ea3600183613711565b9150611eb0600a866137aa565b611ebb9060306136c6565b60f81b818381518110611ede57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f00600a866136de565b9450611e92565b600081815b8551811015611fb7576000868281518110611f3757634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611f78578281604051602001611f5b929190612b13565b604051602081830303815290604052805190602001209250611fa4565b8083604051602001611f8b929190612b13565b6040516020818303038152906040528051906020012092505b5080611faf8161378f565b915050611f0c565b509092149392505050565b6001600160e01b031981166301ffc9a760e01b14919050565b80546001019055565b5490565b610e138282604051806020016040528060008152506121df565b600061200d82611c8b565b6120295760405162461bcd60e51b815260040161084c90613025565b6000612034836110b8565b9050806001600160a01b0316846001600160a01b0316148061206f5750836001600160a01b031661206484610a35565b6001600160a01b0316145b80610b145750610b1481856118ae565b826001600160a01b0316612092826110b8565b6001600160a01b0316146120b85760405162461bcd60e51b815260040161084c9061335d565b6001600160a01b0382166120de5760405162461bcd60e51b815260040161084c90612f10565b6120e9838383612212565b6120f4600082611cac565b6001600160a01b038316600090815260036020526040812080546001929061211d908490613711565b90915550506001600160a01b038216600090815260036020526040812080546001929061214b9084906136c6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6121b784848461207f565b6121c38484848461229b565b6117905760405162461bcd60e51b815260040161084c90612ddf565b6121e983836123b3565b6121f6600084848461229b565b61099e5760405162461bcd60e51b815260040161084c90612ddf565b61221d83838361099e565b6001600160a01b0383166122395761223481612492565b61225c565b816001600160a01b0316836001600160a01b03161461225c5761225c83826124d6565b6001600160a01b0382166122785761227381612573565b61099e565b826001600160a01b0316826001600160a01b03161461099e5761099e828261264c565b60006122af846001600160a01b0316612690565b156123ab57836001600160a01b031663150b7a026122cb611ca8565b8786866040518563ffffffff1660e01b81526004016122ed9493929190612b81565b602060405180830381600087803b15801561230757600080fd5b505af1925050508015612337575060408051601f3d908101601f1916820190925261233491810190612a47565b60015b612391573d808015612365576040519150601f19603f3d011682016040523d82523d6000602084013e61236a565b606091505b5080516123895760405162461bcd60e51b815260040161084c90612ddf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b14565b506001610b14565b6001600160a01b0382166123d95760405162461bcd60e51b815260040161084c90613258565b6123e281611c8b565b156123ff5760405162461bcd60e51b815260040161084c90612e77565b61240b60008383612212565b6001600160a01b03821660009081526003602052604081208054600192906124349084906136c6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016124e38461123b565b6124ed9190613711565b600083815260076020526040902054909150808214612540576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061258590600190613711565b600083815260096020526040812054600880549394509092849081106125bb57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106125ea57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061263057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006126578361123b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b8280546126a290613754565b90600052602060002090601f0160209004810192826126c4576000855561270a565b82601f106126dd57805160ff191683800117855561270a565b8280016001018555821561270a579182015b8281111561270a5782518255916020019190600101906126ef565b5061271692915061273b565b5090565b60405180606001604052806000815260200160008152602001600081525090565b5b80821115612716576000815560010161273c565b600067ffffffffffffffff8084111561276b5761276b6137ea565b604051601f8501601f19908116603f01168101908282118183101715612793576127936137ea565b816040528093508581528686860111156127ac57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461081357600080fd5b60008083601f8401126127ee578081fd5b50813567ffffffffffffffff811115612805578182fd5b602083019150836020808302850101111561281f57600080fd5b9250929050565b600060208284031215612837578081fd5b6114bb826127c6565b60008060408385031215612852578081fd5b61285b836127c6565b9150612869602084016127c6565b90509250929050565b600080600060608486031215612886578081fd5b61288f846127c6565b925061289d602085016127c6565b9150604084013590509250925092565b600080600080608085870312156128c2578081fd5b6128cb856127c6565b93506128d9602086016127c6565b925060408501359150606085013567ffffffffffffffff8111156128fb578182fd5b8501601f8101871361290b578182fd5b61291a87823560208401612750565b91505092959194509250565b60008060408385031215612938578182fd5b612941836127c6565b915060208301358015158114612955578182fd5b809150509250929050565b60008060408385031215612972578182fd5b61297b836127c6565b946020939093013593505050565b6000806020838503121561299b578182fd5b823567ffffffffffffffff8111156129b1578283fd5b6129bd858286016127dd565b90969095509350505050565b6000806000604084860312156129dd578283fd5b833567ffffffffffffffff8111156129f3578384fd5b6129ff868287016127dd565b909790965060209590950135949350505050565b600060208284031215612a24578081fd5b5035919050565b600060208284031215612a3c578081fd5b81356114bb81613800565b600060208284031215612a58578081fd5b81516114bb81613800565b600060208284031215612a74578081fd5b813567ffffffffffffffff811115612a8a578182fd5b8201601f81018413612a9a578182fd5b610b1484823560208401612750565b60008060408385031215612abb578182fd5b50508035926020909101359150565b60008151808452612ae2816020860160208601613728565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b60008351612b33818460208801613728565b835190830190612b47818360208801613728565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612bb490830184612aca565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b6020808252825182820181905260009190848201906040850190845b81811015612c0f57835183529284019291840191600101612bf3565b50909695505050505050565b901515815260200190565b90815260200190565b6001600160e01b031991909116815260200190565b6000602082526114bb6020830184612aca565b60208082526038908201527f41697264726f702077696c6c20657863656564206d6178696d756d207375707060408201527f6c79206f66204d657461204d6f6f7365204d616e73696f6e0000000000000000606082015260800190565b6020808252601d908201527f546f6b656e204944732073686f756c6420626520646966666572656e74000000604082015260600190565b60208082526041908201527f4d6178696d756d2032204d657461204d6f6f7365204d616e73696f6e2063616e60408201527f206265206d696e74656420696e2070726573616c6520706572206164647265736060820152607360f81b608082015260a00190565b60208082526022908201527f596f752063616e206e6f7420756e7374616b65206265666f7265203930206461604082015261797360f01b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b602080825260119082015270141c995cd85b19481a5cc818db1bdcd959607a1b604082015260600190565b60208082526017908201527f41697264726f7020746f204e756c6c2061646472657373000000000000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526014908201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b604082015260600190565b60208082526046908201527f4d696e696d756d20312026204d6178696d756d2032204d657461204d6f6f736560408201527f204d616e73696f6e2063616e206265206d696e74656420706572207472616e7360608201526530b1ba34b7b760d11b608082015260a00190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602c908201527f45786365656473206d6178696d756d20737570706c79206f66204d657461204d60408201526b37b7b9b29026b0b739b4b7b760a11b606082015260800190565b6020808252602e908201527f4e6f206164647265737320697320656c696769626c6520666f7220707265736160408201526d1b19481b5a5b9d1a5b99c81e595d60921b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252603b908201527f4d6178696d756d203130204d657461204d6f6f7365204d616e73696f6e20636160408201527f6e206265206d696e74656420706572207472616e73616374696f6e0000000000606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602f908201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60408201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526037908201527f4d6178696d756d203130204d657461204d6f6f7365204d616e73696f6e20636160408201527f6e206265206d696e746564207065722061646472657373000000000000000000606082015260800190565b60208082526017908201527f50726573616c65206973206e6f74206f70656e20796574000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526025908201527f41646472657373206e6f7420656c696769626c6520666f722070726573616c65604082015264081b5a5b9d60da1b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252603d908201527f4d696e696d756d2031204d657461204d6f6f7365204d616e73696f6e2068617360408201527f20746f206265206d696e74656420706572207472616e73616374696f6e000000606082015260800190565b60208082526032908201527f43616c6c6572206973206e6f7420746865206f776e6572206f6620656974686560408201527172206f6e65206f7220626f7468204e46547360701b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601190820152701059191c995cdcc81b9bdd08199bdd5b99607a1b604082015260600190565b9283526020830191909152604082015260600190565b600082198211156136d9576136d96137be565b500190565b6000826136ed576136ed6137d4565b500490565b600081600019048311821515161561370c5761370c6137be565b500290565b600082821015613723576137236137be565b500390565b60005b8381101561374357818101518382015260200161372b565b838111156117905750506000910152565b60028104600182168061376857607f821691505b6020821081141561378957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156137a3576137a36137be565b5060010190565b6000826137b9576137b96137d4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461157d57600080fdfea26469706673582212205885ae7eed27679311b91070ed9e6a9ebc7dd4489770926cac59446c08afcd2164736f6c63430008010033

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

47039:9106:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39066:300;;;;;;;;;;-1:-1:-1;39066:300:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51616:1077;;;;;;:::i;:::-;;:::i;:::-;;27032:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28725:308::-;;;;;;;;;;-1:-1:-1;28725:308:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;28248:411::-;;;;;;;;;;-1:-1:-1;28248:411:0;;;;;:::i;:::-;;:::i;55936:206::-;;;;;;;;;;-1:-1:-1;55936:206:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39869:113::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;47776:46::-;;;;;;;;;;-1:-1:-1;47776:46:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;52912:215::-;;;;;;;;;;-1:-1:-1;52912:215:0;;;;;:::i;:::-;;:::i;47513:25::-;;;;;;;;;;;;;:::i;39450:343::-;;;;;;;;;;-1:-1:-1;39450:343:0;;;;;:::i;:::-;;:::i;49018:83::-;;;;;;;;;;;;;:::i;47239:27::-;;;;;;;;;;;;;:::i;30231:185::-;;;;;;;;;;-1:-1:-1;30231:185:0;;;;;:::i;:::-;;:::i;48369:385::-;;;;;;;;;;-1:-1:-1;48369:385:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40059:320::-;;;;;;;;;;-1:-1:-1;40059:320:0;;;;;:::i;:::-;;:::i;48762:101::-;;;;;;;;;;-1:-1:-1;48762:101:0;;;;;:::i;:::-;;:::i;54484:1098::-;;;;;;;;;;-1:-1:-1;54484:1098:0;;;;;:::i;:::-;;:::i;26639:326::-;;;;;;;;;;-1:-1:-1;26639:326:0;;;;;:::i;:::-;;:::i;53400:911::-;;;;;;;;;;-1:-1:-1;53400:911:0;;;;;:::i;:::-;;:::i;26282:295::-;;;;;;;;;;-1:-1:-1;26282:295:0;;;;;:::i;:::-;;:::i;9739:94::-;;;;;;;;;;;;;:::i;49751:488::-;;;;;;;;;;-1:-1:-1;49751:488:0;;;;;:::i;:::-;;:::i;49637:106::-;;;;;;;;;;-1:-1:-1;49637:106:0;;;;;:::i;:::-;;:::i;55590:215::-;;;;;;;;;;-1:-1:-1;55590:215:0;;;;;:::i;:::-;;:::i;49209:176::-;;;;;;;;;;;;;:::i;9088:87::-;;;;;;;;;;;;;:::i;49393:114::-;;;;;;;;;;-1:-1:-1;49393:114:0;;;;;:::i;:::-;;:::i;48871:92::-;;;;;;;;;;-1:-1:-1;48871:92:0;;;;;:::i;:::-;;:::i;27201:104::-;;;;;;;;;;;;;:::i;47440:28::-;;;;;;;;;;;;;:::i;47354:39::-;;;;;;;;;;;;;:::i;29105:327::-;;;;;;;;;;-1:-1:-1;29105:327:0;;;;;:::i;:::-;;:::i;53135:257::-;;;;;;;;;;-1:-1:-1;53135:257:0;;;;;:::i;:::-;;:::i;47545:48::-;;;;;;;;;;-1:-1:-1;47545:48:0;;;;;:::i;:::-;;:::i;47475:31::-;;;;;;;;;;;;;:::i;47309:38::-;;;;;;;;;;;;;:::i;49515:114::-;;;;;;;;;;-1:-1:-1;49515:114:0;;;;;:::i;:::-;;:::i;27376:468::-;;;;;;;;;;-1:-1:-1;27376:468:0;;;;;:::i;:::-;;:::i;47273:27::-;;;;;;;;;;;;;:::i;29503:214::-;;;;;;;;;;-1:-1:-1;29503:214:0;;;;;:::i;:::-;;:::i;9988:229::-;;;;;;;;;;-1:-1:-1;9988:229:0;;;;;:::i;:::-;;:::i;54319:157::-;;;;;;;;;;-1:-1:-1;54319:157:0;;;;;:::i;:::-;;:::i;49109:92::-;;;;;;;;;;;;;:::i;47600:53::-;;;;;;;;;;-1:-1:-1;47600:53:0;;;;;:::i;:::-;;:::i;50247:1332::-;;;;;;:::i;:::-;;:::i;39066:300::-;39213:4;-1:-1:-1;;;;;;39255:50:0;;-1:-1:-1;;;39255:50:0;;:103;;;39322:36;39346:11;39322:23;:36::i;:::-;39235:123;;39066:300;;;;:::o;51616:1077::-;47343:4;51728:6;51712:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:33;;51690:127;;;;-1:-1:-1;;;51690:127:0;;;;;;;:::i;:::-;;;;;;;;;51859:1;51850:6;:10;51828:121;;;;-1:-1:-1;;;51828:121:0;;;;;;;:::i;:::-;51976:10;52008:7;:5;:7::i;:::-;-1:-1:-1;;;;;52001:14:0;:3;-1:-1:-1;;;;;52001:14:0;;51997:605;;52040:8;;;;52032:41;;;;-1:-1:-1;;;52032:41:0;;;;;;;:::i;:::-;52124:2;52114:6;:12;;52088:133;;;;-1:-1:-1;;;52088:133:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52268:23:0;;;;;;:18;:23;;;;;;:32;;52294:6;;52268:32;:::i;:::-;52262:2;:38;;52236:155;;;;-1:-1:-1;;;52236:155:0;;;;;;;:::i;:::-;52453:6;52445:5;;:14;;;;:::i;:::-;52432:9;:27;;52406:136;;;;-1:-1:-1;;;52406:136:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52557:23:0;;;;;;:18;:23;;;;;:33;;52584:6;;52557:23;:33;;52584:6;;52557:33;:::i;:::-;;;;-1:-1:-1;;51997:605:0;52617:9;52612:74;52636:6;52632:1;:10;52612:74;;;52664:10;52670:3;52664:5;:10::i;:::-;52644:3;;;;:::i;:::-;;;;52612:74;;;;51616:1077;;:::o;27032:100::-;27086:13;27119:5;27112:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27032:100;:::o;28725:308::-;28846:7;28893:16;28901:7;28893;:16::i;:::-;28871:110;;;;-1:-1:-1;;;28871:110:0;;;;;;;:::i;:::-;-1:-1:-1;29001:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29001:24:0;;28725:308::o;28248:411::-;28329:13;28345:23;28360:7;28345:14;:23::i;:::-;28329:39;;28393:5;-1:-1:-1;;;;;28387:11:0;:2;-1:-1:-1;;;;;28387:11:0;;;28379:57;;;;-1:-1:-1;;;28379:57:0;;;;;;;:::i;:::-;28487:5;-1:-1:-1;;;;;28471:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;28471:21:0;;:62;;;;28496:37;28513:5;28520:12;:10;:12::i;28496:37::-;28449:168;;;;-1:-1:-1;;;28449:168:0;;;;;;;:::i;:::-;28630:21;28639:2;28643:7;28630:8;:21::i;55936:206::-;-1:-1:-1;;;55936:206:0;;;;;;;:::o;39869:113::-;39957:10;:17;39869:113;:::o;47776:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47776:46:0;;-1:-1:-1;47776:46:0;:::o;52912:215::-;53038:9;;:32;;-1:-1:-1;;;53038:32:0;;-1:-1:-1;;;;;53038:9:0;;;;:22;;:32;;53061:4;;53067:2;;53038:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53081:38;53101:4;53107:2;53111:7;53081:19;:38::i;47513:25::-;;;;:::o;39450:343::-;39592:7;39647:23;39664:5;39647:16;:23::i;:::-;39639:5;:31;39617:124;;;;-1:-1:-1;;;39617:124:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;39759:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39450:343::o;49018:83::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;49085:8:::1;::::0;;-1:-1:-1;;49073:20:0;::::1;49085:8;::::0;;::::1;49084:9;49073:20;::::0;;49018:83::o;47239:27::-;;;-1:-1:-1;;;;;47239:27:0;;:::o;30231:185::-;30369:39;30386:4;30392:2;30396:7;30369:39;;;;;;;;;;;;:16;:39::i;48369:385::-;48458:16;48492:18;48513:17;48523:6;48513:9;:17::i;:::-;48492:38;;48543:25;48585:10;48571:25;;;;;;-1:-1:-1;;;48571:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48571:25:0;;48543:53;;48612:9;48607:112;48631:10;48627:1;:14;48607:112;;;48677:30;48697:6;48705:1;48677:19;:30::i;:::-;48663:8;48672:1;48663:11;;;;;;-1:-1:-1;;;48663:11:0;;;;;;;;;;;;;;;;;;:44;48643:3;;;;:::i;:::-;;;;48607:112;;;-1:-1:-1;48738:8:0;48369:385;-1:-1:-1;;;48369:385:0:o;40059:320::-;40179:7;40234:30;:28;:30::i;:::-;40226:5;:38;40204:132;;;;-1:-1:-1;;;40204:132:0;;;;;;;:::i;:::-;40354:10;40365:5;40354:17;;;;;;-1:-1:-1;;;40354:17:0;;;;;;;;;;;;;;;;;40347:24;;40059:320;;;:::o;48762:101::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;48833:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48762:101:::0;:::o;54484:1098::-;54556:10;54537:16;54608:18;;;:8;:18;;;;;:26;;54627:6;;54608:26;;;;-1:-1:-1;;;54608:26:0;;;;;;;;;;;;;;;;;;;;;54664:20;;54714;;;;54608:26;;-1:-1:-1;54664:20:0;54777:78;54815:8;54838:6;54777:23;:78::i;:::-;54745:110;;54913:1;54888:21;:26;;54866:110;;;;-1:-1:-1;;;54866:110:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;55001:18:0;;;;;;:8;:18;;;;;55020:25;;:29;;55048:1;;55020:29;:::i;:::-;55001:49;;;;;;-1:-1:-1;;;55001:49:0;;;;;;;;;;;;;;;;;;;54987:63;;55061:8;:18;55070:8;-1:-1:-1;;;;;55061:18:0;-1:-1:-1;;;;;55061:18:0;;;;;;;;;;;;:24;;;;;-1:-1:-1;;;55061:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55098:62;55130:4;55137:8;55147;55098:62;;;;;;;;;;;;:23;:62::i;:::-;55171;55203:4;55210:8;55220;55171:62;;;;;;;;;;;;:23;:62::i;:::-;55256:9;;-1:-1:-1;;;;;55256:9:0;55248:32;55244:98;;55297:9;;:33;;-1:-1:-1;;;55297:33:0;;-1:-1:-1;;;;;55297:9:0;;;;:23;;:33;;55321:8;;55297:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55244:98;55354:9;;:58;;-1:-1:-1;;;55354:58:0;;-1:-1:-1;;;;;55354:9:0;;;;:26;;:58;;55381:8;;55391:20;;55354:58;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55479:8;-1:-1:-1;;;;;55440:134:0;;55502:8;55525;55548:15;55440:134;;;;;;;;:::i;:::-;;;;;;;;54484:1098;;;;;;:::o;26639:326::-;26756:7;26797:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26797:16:0;26846:19;26824:110;;;;-1:-1:-1;;;26824:110:0;;;;;;;:::i;53400:911::-;53495:10;;53538:18;53546:9;53538:7;:18::i;:::-;-1:-1:-1;;;;;53538:28:0;;:60;;;;;53592:6;-1:-1:-1;;;;;53570:28:0;:18;53578:9;53570:7;:18::i;:::-;-1:-1:-1;;;;;53570:28:0;;53538:60;53516:160;;;;-1:-1:-1;;;53516:160:0;;;;;;;:::i;:::-;53722:9;53709;:22;;53687:101;;;;-1:-1:-1;;;53687:101:0;;;;;;;:::i;:::-;53799:61;53823:6;53839:4;53846:9;53799:61;;;;;;;;;;;;:23;:61::i;:::-;53871;53895:6;53911:4;53918:9;53871:61;;;;;;;;;;;;:23;:61::i;:::-;53945:27;;:::i;:::-;53983:32;;;54026:20;;;;:32;;;54093:15;54069:21;;;;:39;;;-1:-1:-1;;;;;54119:16:0;;53983:20;54119:16;;;:8;:16;;;;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54171:132;;54119:16;;54171:132;;;;54006:9;;54049;;54093:15;54171:132;:::i;:::-;;;;;;;;53400:911;;;;:::o;26282:295::-;26399:7;-1:-1:-1;;;;;26446:19:0;;26424:111;;;;-1:-1:-1;;;26424:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;26553:16:0;;;;;:9;:16;;;;;;;26282:295::o;9739:94::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;9804:21:::1;9822:1;9804:9;:21::i;:::-;9739:94::o:0;49751:488::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;47343:4:::1;49868:11:::0;49852:13:::1;:11;:13::i;:::-;:34;;;;:::i;:::-;:45;;49830:151;;;;-1:-1:-1::0;;;49830:151:0::1;;;;;;;:::i;:::-;50000:23:::0;49992:53:::1;;;;-1:-1:-1::0;;;49992:53:0::1;;;;;;;:::i;:::-;50061:9;50056:176;50076:22:::0;;::::1;50056:176;;;50154:1;50128:11:::0;;50140:1;50128:14;;::::1;;;-1:-1:-1::0;;;50128:14:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;50128:28:0::1;;;50120:64;;;;-1:-1:-1::0;;;50120:64:0::1;;;;;;;:::i;:::-;50199:21;50205:11;;50217:1;50205:14;;;;;-1:-1:-1::0;;;50205:14:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50199:5;:21::i;:::-;50100:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50056:176;;49637:106:::0;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;49711:10:::1;:24:::0;49637:106::o;55590:215::-;-1:-1:-1;;;;;55754:16:0;;55703:7;55754:16;;;:8;:16;;;;;:24;;55792:5;;55754:16;55771:6;;55754:24;;;;-1:-1:-1;;;55754:24:0;;;;;;;;;;;;;;;;;;;:34;;;55736:15;:52;;;;:::i;:::-;55735:62;;;;:::i;:::-;55728:69;55590:215;-1:-1:-1;;;55590:215:0:o;49209:176::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;49263:12:::1;49281:10;-1:-1:-1::0;;;;;49281:15:0::1;49304:21;49281:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49262:68;;;49349:7;49341:36;;;;-1:-1:-1::0;;;49341:36:0::1;;;;;;;:::i;:::-;9379:1;49209:176::o:0;9088:87::-;9161:6;;-1:-1:-1;;;;;9161:6:0;9088:87;:::o;49393:114::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;49465:9:::1;:34:::0;;-1:-1:-1;;;;;;49465:34:0::1;-1:-1:-1::0;;;;;49465:34:0;;;::::1;::::0;;;::::1;::::0;;49393:114::o;48871:92::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;48938:5:::1;:17:::0;48871:92::o;27201:104::-;27257:13;27290:7;27283:14;;;;;:::i;47440:28::-;;;;;;:::o;47354:39::-;;;;:::o;29105:327::-;29252:12;:10;:12::i;:::-;-1:-1:-1;;;;;29240:24:0;:8;-1:-1:-1;;;;;29240:24:0;;;29232:62;;;;-1:-1:-1;;;29232:62:0;;;;;;;:::i;:::-;29352:8;29307:18;:32;29326:12;:10;:12::i;:::-;-1:-1:-1;;;;;29307:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;29307:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;29307:53:0;;;;;;;;;;;29391:12;:10;:12::i;:::-;-1:-1:-1;;;;;29376:48:0;;29415:8;29376:48;;;;;;:::i;:::-;;;;;;;;29105:327;;:::o;53135:257::-;53293:9;;:32;;-1:-1:-1;;;53293:32:0;;-1:-1:-1;;;;;53293:9:0;;;;:22;;:32;;53316:4;;53322:2;;53293:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53336:48;53360:4;53366:2;53370:7;53379:4;53336:23;:48::i;:::-;53135:257;;;;:::o;47545:48::-;;;;;;;;;;;;;:::o;47475:31::-;;;;;;;;;:::o;47309:38::-;47343:4;47309:38;:::o;49515:114::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;49587:9:::1;:34:::0;;-1:-1:-1;;;;;;49587:34:0::1;-1:-1:-1::0;;;;;49587:34:0;;;::::1;::::0;;;::::1;::::0;;49515:114::o;27376:468::-;27494:13;27547:16;27555:7;27547;:16::i;:::-;27525:113;;;;-1:-1:-1;;;27525:113:0;;;;;;;:::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;:::-;;;;;;;;;;;;;27696:140;27376:468;-1:-1:-1;;;27376:468:0:o;47273:27::-;;;-1:-1:-1;;;;;47273:27:0;;:::o;29503:214::-;-1:-1:-1;;;;;29674:25:0;;;29645:4;29674:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29503:214::o;9988:229::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10091:22:0;::::1;10069:110;;;;-1:-1:-1::0;;;10069:110:0::1;;;;;;;:::i;:::-;10190:19;10200:8;10190:9;:19::i;54319:157::-:0;-1:-1:-1;;;;;54445:16:0;54413:7;54445:16;;;:8;:16;;;;;:23;;54319:157::o;49109:92::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;49182:11:::1;::::0;;-1:-1:-1;;49167:26:0;::::1;49182:11;::::0;;;::::1;;;49181:12;49167:26:::0;;::::1;;::::0;;49109:92::o;47600:53::-;;;;;;;;;;;;;:::o;50247:1332::-;50420:10;;50377;;50398:111;;;;-1:-1:-1;;;50398:111:0;;;;;;;:::i;:::-;50528:11;;;;;;;50520:47;;;;-1:-1:-1;;;50520:47:0;;;;;;;:::i;:::-;50587:8;;;;50586:9;50578:39;;;;-1:-1:-1;;;50578:39:0;;;;;;;:::i;:::-;50659:1;50650:6;:10;:25;;;;;50674:1;50664:6;:11;;50650:25;50628:145;;;;-1:-1:-1;;;50628:145:0;;;;;;;:::i;:::-;47343:4;50822:6;50806:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:33;;50784:127;;;;-1:-1:-1;;;50784:127:0;;;;;;;:::i;:::-;50946:139;50983:6;;50946:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51008:10:0;;51047:22;;51008:10;;-1:-1:-1;51047:22:0;;-1:-1:-1;51064:4:0;;51047:22;;;:::i;:::-;;;;;;;;;;;;;51037:33;;;;;;50946:18;:139::i;:::-;50924:226;;;;-1:-1:-1;;;50924:226:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51188:19:0;;;;;;:13;:19;;;;;;:28;;51210:6;;51188:28;:::i;:::-;51183:1;:33;;51161:148;;;;-1:-1:-1;;;51161:148:0;;;;;;;:::i;:::-;51363:6;51355:5;;:14;;;;:::i;:::-;51342:9;:27;;51320:124;;;;-1:-1:-1;;;51320:124:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51457:19:0;;;;;;:13;:19;;;;;:29;;51480:6;;51457:19;:29;;51480:6;;51457:29;:::i;:::-;;;;-1:-1:-1;51502:9:0;;-1:-1:-1;51497:75:0;51521:6;51517:1;:10;51497:75;;;51549:11;51555:4;51549:5;:11::i;:::-;51529:3;;;;:::i;:::-;;;;51497:75;;;;50247:1332;;;;:::o;25863:355::-;26010:4;-1:-1:-1;;;;;;26052:40:0;;-1:-1:-1;;;26052:40:0;;:105;;-1:-1:-1;;;;;;;26109:48:0;;-1:-1:-1;;;26109:48:0;26052:105;:158;;;;26174:36;26198:11;26174:23;:36::i;52701:203::-;52748:20;:8;:18;:20::i;:::-;52779:15;52797:18;:8;:16;:18::i;:::-;52779:36;;52826:23;52836:3;52841:7;52826:9;:23::i;:::-;52865:31;52888:7;52865:31;;;;;;:::i;:::-;;;;;;;;52701:203;;:::o;32399:127::-;32464:4;32488:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32488:16:0;:30;;;32399:127::o;2061:98::-;2141:10;2061:98;:::o;36522:174::-;36597:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36597:29:0;-1:-1:-1;;;;;36597:29:0;;;;;;;;:24;;36651:23;36597:24;36651:14;:23::i;:::-;-1:-1:-1;;;;;36642:46:0;;;;;;;;;;;36522:174;;:::o;29784:376::-;29993:41;30012:12;:10;:12::i;:::-;30026:7;29993:18;:41::i;:::-;29971:140;;;;-1:-1:-1;;;29971:140:0;;;;;;;:::i;:::-;30124:28;30134:4;30140:2;30144:7;30124:9;:28::i;30487:365::-;30676:41;30695:12;:10;:12::i;:::-;30709:7;30676:18;:41::i;:::-;30654:140;;;;-1:-1:-1;;;30654:140:0;;;;;;;:::i;:::-;30805:39;30819:4;30825:2;30829:7;30838:5;30805:13;:39::i;10225:173::-;10300:6;;;-1:-1:-1;;;;;10317:17:0;;;-1:-1:-1;;;;;;10317:17:0;;;;;;;10350:40;;10300:6;;;10317:17;10300:6;;10350:40;;10281:16;;10350:40;10225:173;;:::o;55813:113::-;55873:13;55906:12;55899:19;;;;;:::i;12730:723::-;12786:13;13007:10;13003:53;;-1:-1:-1;13034:10:0;;;;;;;;;;;;-1:-1:-1;;;13034:10:0;;;;;;13003:53;13081:5;13066:12;13122:78;13129:9;;13122:78;;13155:8;;;;:::i;:::-;;-1:-1:-1;13178:10:0;;-1:-1:-1;13186:2:0;13178:10;;:::i;:::-;;;13122:78;;;13210:19;13242:6;13232:17;;;;;;-1:-1:-1;;;13232:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13232:17:0;;13210:39;;13260:154;13267:10;;13260:154;;13294:11;13304:1;13294:11;;:::i;:::-;;-1:-1:-1;13363:10:0;13371:2;13363:5;:10;:::i;:::-;13350:24;;:2;:24;:::i;:::-;13337:39;;13320:6;13327;13320:14;;;;;;-1:-1:-1;;;13320:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;13320:56:0;;;;;;;;-1:-1:-1;13391:11:0;13400:2;13391:11;;:::i;:::-;;;13260:154;;45805:910;45930:4;45970;45930;45987:605;46011:5;:12;46007:1;:16;45987:605;;;46045:20;46068:5;46074:1;46068:8;;;;;;-1:-1:-1;;;46068:8:0;;;;;;;;;;;;;;;46045:31;;46113:12;46097;:28;46093:488;;46289:12;46303;46272:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46240:95;;;;;;46225:110;;46093:488;;;46519:12;46533;46502:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46470:95;;;;;;46455:110;;46093:488;-1:-1:-1;46025:3:0;;;;:::i;:::-;;;;45987:605;;;-1:-1:-1;46687:20:0;;;;45805:910;-1:-1:-1;;;45805:910:0:o;12209:207::-;-1:-1:-1;;;;;;12368:40:0;;-1:-1:-1;;;12368:40:0;12209:207;;;:::o;970:127::-;1059:19;;1077:1;1059:19;;;970:127::o;848:114::-;940:14;;848:114::o;33487:110::-;33563:26;33573:2;33577:7;33563:26;;;;;;;;;;;;:9;:26::i;32693:452::-;32822:4;32866:16;32874:7;32866;:16::i;:::-;32844:110;;;;-1:-1:-1;;;32844:110:0;;;;;;;:::i;:::-;32965:13;32981:23;32996:7;32981:14;:23::i;:::-;32965:39;;33034:5;-1:-1:-1;;;;;33023:16:0;:7;-1:-1:-1;;;;;33023:16:0;;:64;;;;33080:7;-1:-1:-1;;;;;33056:31:0;:20;33068:7;33056:11;:20::i;:::-;-1:-1:-1;;;;;33056:31:0;;33023:64;:113;;;;33104:32;33121:5;33128:7;33104:16;:32::i;35789:615::-;35962:4;-1:-1:-1;;;;;35935:31:0;:23;35950:7;35935:14;:23::i;:::-;-1:-1:-1;;;;;35935:31:0;;35913:122;;;;-1:-1:-1;;;35913:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36054:16:0;;36046:65;;;;-1:-1:-1;;;36046:65:0;;;;;;;:::i;:::-;36124:39;36145:4;36151:2;36155:7;36124:20;:39::i;:::-;36228:29;36245:1;36249:7;36228:8;:29::i;:::-;-1:-1:-1;;;;;36270:15:0;;;;;;:9;:15;;;;;:20;;36289:1;;36270:15;:20;;36289:1;;36270:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36301:13:0;;;;;;:9;:13;;;;;:18;;36318:1;;36301:13;:18;;36318:1;;36301:18;:::i;:::-;;;;-1:-1:-1;;36330:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36330:21:0;-1:-1:-1;;;;;36330:21:0;;;;;;;;;36369:27;;36330:16;;36369:27;;;;;;;35789:615;;;:::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;;;;-1:-1:-1;;;31930:148:0;;;;;;;:::i;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;;;;-1:-1:-1;;;33983:154:0;;;;;;;:::i;40487:589::-;40631:45;40658:4;40664:2;40668:7;40631:26;:45::i;:::-;-1:-1:-1;;;;;40693:18:0;;40689:187;;40728:40;40760:7;40728:31;:40::i;:::-;40689:187;;;40798:2;-1:-1:-1;;;;;40790:10:0;:4;-1:-1:-1;;;;;40790:10:0;;40786:90;;40817:47;40850:4;40856:7;40817:32;:47::i;:::-;-1:-1:-1;;;;;40890:16:0;;40886:183;;40923:45;40960:7;40923:36;:45::i;:::-;40886:183;;;40996:4;-1:-1:-1;;;;;40990:10:0;:2;-1:-1:-1;;;;;40990:10:0;;40986:83;;41017:40;41045:2;41049:7;41017:27;:40::i;36895:984::-;37050:4;37071:15;:2;-1:-1:-1;;;;;37071:13:0;;:15::i;:::-;37067:805;;;37140:2;-1:-1:-1;;;;;37124:36:0;;37183:12;:10;:12::i;:::-;37218:4;37245:7;37275:5;37124:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37124:175:0;;;;;;;;-1:-1:-1;;37124:175:0;;;;;;;;;;;;:::i;:::-;;;37103:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37486:13:0;;37482:320;;37529:108;;-1:-1:-1;;;37529:108:0;;;;;;;:::i;37482:320::-;37752:6;37746:13;37737:6;37733:2;37729:15;37722:38;37103:714;-1:-1:-1;;;;;;37363:55:0;-1:-1:-1;;;37363:55:0;;-1:-1:-1;37356:62:0;;37067:805;-1:-1:-1;37856:4:0;37849:11;;34481:382;-1:-1:-1;;;;;34561:16:0;;34553:61;;;;-1:-1:-1;;;34553:61:0;;;;;;;:::i;:::-;34634:16;34642:7;34634;:16::i;:::-;34633:17;34625:58;;;;-1:-1:-1;;;34625:58:0;;;;;;;:::i;:::-;34696:45;34725:1;34729:2;34733:7;34696:20;:45::i;:::-;-1:-1:-1;;;;;34754:13:0;;;;;;:9;:13;;;;;:18;;34771:1;;34754:13;:18;;34771:1;;34754:18;:::i;:::-;;;;-1:-1:-1;;34783:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34783:21:0;-1:-1:-1;;;;;34783:21:0;;;;;;;;34822:33;;34783:16;;;34822:33;;34783:16;;34822:33;34481:382;;:::o;41799:164::-;41903:10;:17;;41876:24;;;;:15;:24;;;;;:44;;;41931:24;;;;;;;;;;;;41799:164::o;42590:1002::-;42870:22;42920:1;42895:22;42912:4;42895:16;:22::i;:::-;:26;;;;:::i;:::-;42932:18;42953:26;;;:17;:26;;;;;;42870:51;;-1:-1:-1;43086:28:0;;;43082:328;;-1:-1:-1;;;;;43153:18:0;;43131:19;43153:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43204:30;;;;;;:44;;;43321:30;;:17;:30;;;;;:43;;;43082:328;-1:-1:-1;43506:26:0;;;;:17;:26;;;;;;;;43499:33;;;-1:-1:-1;;;;;43550:18:0;;;;;:12;:18;;;;;:34;;;;;;;43543:41;42590:1002::o;43887:1079::-;44165:10;:17;44140:22;;44165:21;;44185:1;;44165:21;:::i;:::-;44197:18;44218:24;;;:15;:24;;;;;;44591:10;:26;;44140:46;;-1:-1:-1;44218:24:0;;44140:46;;44591:26;;;;-1:-1:-1;;;44591:26:0;;;;;;;;;;;;;;;;;44569:48;;44655:11;44630:10;44641;44630:22;;;;;;-1:-1:-1;;;44630:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;44735:28;;;:15;:28;;;;;;;:41;;;44907:24;;;;;44900:31;44942:10;:16;;;;;-1:-1:-1;;;44942:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;43887:1079;;;;:::o;41377:221::-;41462:14;41479:20;41496:2;41479:16;:20::i;:::-;-1:-1:-1;;;;;41510:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41555:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41377:221:0:o;15283:387::-;15606:20;15654:8;;;15283:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:633:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;232:2;226:9;200:2;286:15;;-1:-1:-1;;282:24:1;;;308:2;278:33;274:42;262:55;;;332:18;;;352:22;;;329:46;326:2;;;378:18;;:::i;:::-;418:10;414:2;407:22;447:6;438:15;;477:6;469;462:22;517:3;508:6;503:3;499:16;496:25;493:2;;;534:1;531;524:12;493:2;584:6;579:3;572:4;564:6;560:17;547:44;639:1;632:4;623:6;615;611:19;607:30;600:41;;;;90:557;;;;;:::o;652:175::-;722:20;;-1:-1:-1;;;;;771:31:1;;761:42;;751:2;;817:1;814;807:12;832:400;;;965:3;958:4;950:6;946:17;942:27;932:2;;988:6;980;973:22;932:2;-1:-1:-1;1016:20:1;;1059:18;1048:30;;1045:2;;;1098:8;1088;1081:26;1045:2;1142:4;1134:6;1130:17;1118:29;;1205:3;1198:4;1190;1182:6;1178:17;1170:6;1166:30;1162:41;1159:50;1156:2;;;1222:1;1219;1212:12;1156:2;922:310;;;;;:::o;1237:198::-;;1349:2;1337:9;1328:7;1324:23;1320:32;1317:2;;;1370:6;1362;1355:22;1317:2;1398:31;1419:9;1398:31;:::i;1440:274::-;;;1569:2;1557:9;1548:7;1544:23;1540:32;1537:2;;;1590:6;1582;1575:22;1537:2;1618:31;1639:9;1618:31;:::i;:::-;1608:41;;1668:40;1704:2;1693:9;1689:18;1668:40;:::i;:::-;1658:50;;1527:187;;;;;:::o;1719:342::-;;;;1865:2;1853:9;1844:7;1840:23;1836:32;1833:2;;;1886:6;1878;1871:22;1833:2;1914:31;1935:9;1914:31;:::i;:::-;1904:41;;1964:40;2000:2;1989:9;1985:18;1964:40;:::i;:::-;1954:50;;2051:2;2040:9;2036:18;2023:32;2013:42;;1823:238;;;;;:::o;2066:702::-;;;;;2238:3;2226:9;2217:7;2213:23;2209:33;2206:2;;;2260:6;2252;2245:22;2206:2;2288:31;2309:9;2288:31;:::i;:::-;2278:41;;2338:40;2374:2;2363:9;2359:18;2338:40;:::i;:::-;2328:50;;2425:2;2414:9;2410:18;2397:32;2387:42;;2480:2;2469:9;2465:18;2452:32;2507:18;2499:6;2496:30;2493:2;;;2544:6;2536;2529:22;2493:2;2572:22;;2625:4;2617:13;;2613:27;-1:-1:-1;2603:2:1;;2659:6;2651;2644:22;2603:2;2687:75;2754:7;2749:2;2736:16;2731:2;2727;2723:11;2687:75;:::i;:::-;2677:85;;;2196:572;;;;;;;:::o;2773:369::-;;;2899:2;2887:9;2878:7;2874:23;2870:32;2867:2;;;2920:6;2912;2905:22;2867:2;2948:31;2969:9;2948:31;:::i;:::-;2938:41;;3029:2;3018:9;3014:18;3001:32;3076:5;3069:13;3062:21;3055:5;3052:32;3042:2;;3103:6;3095;3088:22;3042:2;3131:5;3121:15;;;2857:285;;;;;:::o;3147:266::-;;;3276:2;3264:9;3255:7;3251:23;3247:32;3244:2;;;3297:6;3289;3282:22;3244:2;3325:31;3346:9;3325:31;:::i;:::-;3315:41;3403:2;3388:18;;;;3375:32;;-1:-1:-1;;;3234:179:1:o;3418:463::-;;;3565:2;3553:9;3544:7;3540:23;3536:32;3533:2;;;3586:6;3578;3571:22;3533:2;3631:9;3618:23;3664:18;3656:6;3653:30;3650:2;;;3701:6;3693;3686:22;3650:2;3745:76;3813:7;3804:6;3793:9;3789:22;3745:76;:::i;:::-;3840:8;;3719:102;;-1:-1:-1;3523:358:1;-1:-1:-1;;;;3523:358:1:o;3886:531::-;;;;4050:2;4038:9;4029:7;4025:23;4021:32;4018:2;;;4071:6;4063;4056:22;4018:2;4116:9;4103:23;4149:18;4141:6;4138:30;4135:2;;;4186:6;4178;4171:22;4135:2;4230:76;4298:7;4289:6;4278:9;4274:22;4230:76;:::i;:::-;4325:8;;4204:102;;-1:-1:-1;4407:2:1;4392:18;;;;4379:32;;4008:409;-1:-1:-1;;;;4008:409:1:o;4422:190::-;;4534:2;4522:9;4513:7;4509:23;4505:32;4502:2;;;4555:6;4547;4540:22;4502:2;-1:-1:-1;4583:23:1;;4492:120;-1:-1:-1;4492:120:1:o;4617:257::-;;4728:2;4716:9;4707:7;4703:23;4699:32;4696:2;;;4749:6;4741;4734:22;4696:2;4793:9;4780:23;4812:32;4838:5;4812:32;:::i;4879:261::-;;5001:2;4989:9;4980:7;4976:23;4972:32;4969:2;;;5022:6;5014;5007:22;4969:2;5059:9;5053:16;5078:32;5104:5;5078:32;:::i;5145:482::-;;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5288:6;5280;5273:22;5235:2;5333:9;5320:23;5366:18;5358:6;5355:30;5352:2;;;5403:6;5395;5388:22;5352:2;5431:22;;5484:4;5476:13;;5472:27;-1:-1:-1;5462:2:1;;5518:6;5510;5503:22;5462:2;5546:75;5613:7;5608:2;5595:16;5590:2;5586;5582:11;5546:75;:::i;5827:258::-;;;5956:2;5944:9;5935:7;5931:23;5927:32;5924:2;;;5977:6;5969;5962:22;5924:2;-1:-1:-1;;6005:23:1;;;6075:2;6060:18;;;6047:32;;-1:-1:-1;5914:171:1:o;6090:259::-;;6171:5;6165:12;6198:6;6193:3;6186:19;6214:63;6270:6;6263:4;6258:3;6254:14;6247:4;6240:5;6236:16;6214:63;:::i;:::-;6331:2;6310:15;-1:-1:-1;;6306:29:1;6297:39;;;;6338:4;6293:50;;6141:208;-1:-1:-1;;6141:208:1:o;6354:229::-;6503:2;6499:15;;;;-1:-1:-1;;6495:53:1;6483:66;;6574:2;6565:12;;6473:110::o;6588:247::-;6745:19;;;6789:2;6780:12;;6773:28;6826:2;6817:12;;6735:100::o;6840:470::-;;7057:6;7051:13;7073:53;7119:6;7114:3;7107:4;7099:6;7095:17;7073:53;:::i;:::-;7189:13;;7148:16;;;;7211:57;7189:13;7148:16;7245:4;7233:17;;7211:57;:::i;:::-;7284:20;;7027:283;-1:-1:-1;;;;7027:283:1:o;7315:205::-;7515:3;7506:14::o;7525:203::-;-1:-1:-1;;;;;7689:32:1;;;;7671:51;;7659:2;7644:18;;7626:102::o;7733:304::-;-1:-1:-1;;;;;7963:15:1;;;7945:34;;8015:15;;8010:2;7995:18;;7988:43;7895:2;7880:18;;7862:175::o;8042:490::-;-1:-1:-1;;;;;8311:15:1;;;8293:34;;8363:15;;8358:2;8343:18;;8336:43;8410:2;8395:18;;8388:34;;;8458:3;8453:2;8438:18;;8431:31;;;8042:490;;8479:47;;8506:19;;8498:6;8479:47;:::i;:::-;8471:55;8245:287;-1:-1:-1;;;;;;8245:287:1:o;8537:301::-;-1:-1:-1;;;;;8756:32:1;;;;8738:51;;8820:2;8805:18;;8798:34;8726:2;8711:18;;8693:145::o;8843:635::-;9014:2;9066:21;;;9136:13;;9039:18;;;9158:22;;;8843:635;;9014:2;9237:15;;;;9211:2;9196:18;;;8843:635;9283:169;9297:6;9294:1;9291:13;9283:169;;;9358:13;;9346:26;;9427:15;;;;9392:12;;;;9319:1;9312:9;9283:169;;;-1:-1:-1;9469:3:1;;8994:484;-1:-1:-1;;;;;;8994:484:1:o;9483:187::-;9648:14;;9641:22;9623:41;;9611:2;9596:18;;9578:92::o;9675:177::-;9821:25;;;9809:2;9794:18;;9776:76::o;9857:202::-;-1:-1:-1;;;;;;10019:33:1;;;;10001:52;;9989:2;9974:18;;9956:103::o;10518:221::-;;10667:2;10656:9;10649:21;10687:46;10729:2;10718:9;10714:18;10706:6;10687:46;:::i;10744:420::-;10946:2;10928:21;;;10985:2;10965:18;;;10958:30;11024:34;11019:2;11004:18;;10997:62;11095:26;11090:2;11075:18;;11068:54;11154:3;11139:19;;10918:246::o;11169:353::-;11371:2;11353:21;;;11410:2;11390:18;;;11383:30;11449:31;11444:2;11429:18;;11422:59;11513:2;11498:18;;11343:179::o;11527:469::-;11729:2;11711:21;;;11768:2;11748:18;;;11741:30;11807:34;11802:2;11787:18;;11780:62;11878:34;11873:2;11858:18;;11851:62;-1:-1:-1;;;11944:3:1;11929:19;;11922:32;11986:3;11971:19;;11701:295::o;12001:398::-;12203:2;12185:21;;;12242:2;12222:18;;;12215:30;12281:34;12276:2;12261:18;;12254:62;-1:-1:-1;;;12347:2:1;12332:18;;12325:32;12389:3;12374:19;;12175:224::o;12404:407::-;12606:2;12588:21;;;12645:2;12625:18;;;12618:30;12684:34;12679:2;12664:18;;12657:62;-1:-1:-1;;;12750:2:1;12735:18;;12728:41;12801:3;12786:19;;12578:233::o;12816:414::-;13018:2;13000:21;;;13057:2;13037:18;;;13030:30;13096:34;13091:2;13076:18;;13069:62;-1:-1:-1;;;13162:2:1;13147:18;;13140:48;13220:3;13205:19;;12990:240::o;13235:402::-;13437:2;13419:21;;;13476:2;13456:18;;;13449:30;13515:34;13510:2;13495:18;;13488:62;-1:-1:-1;;;13581:2:1;13566:18;;13559:36;13627:3;13612:19;;13409:228::o;13642:352::-;13844:2;13826:21;;;13883:2;13863:18;;;13856:30;13922;13917:2;13902:18;;13895:58;13985:2;13970:18;;13816:178::o;13999:341::-;14201:2;14183:21;;;14240:2;14220:18;;;14213:30;-1:-1:-1;;;14274:2:1;14259:18;;14252:47;14331:2;14316:18;;14173:167::o;14345:347::-;14547:2;14529:21;;;14586:2;14566:18;;;14559:30;14625:25;14620:2;14605:18;;14598:53;14683:2;14668:18;;14519:173::o;14697:400::-;14899:2;14881:21;;;14938:2;14918:18;;;14911:30;14977:34;14972:2;14957:18;;14950:62;-1:-1:-1;;;15043:2:1;15028:18;;15021:34;15087:3;15072:19;;14871:226::o;15102:349::-;15304:2;15286:21;;;15343:2;15323:18;;;15316:30;15382:27;15377:2;15362:18;;15355:55;15442:2;15427:18;;15276:175::o;15456:344::-;15658:2;15640:21;;;15697:2;15677:18;;;15670:30;-1:-1:-1;;;15731:2:1;15716:18;;15709:50;15791:2;15776:18;;15630:170::o;15805:474::-;16007:2;15989:21;;;16046:2;16026:18;;;16019:30;16085:34;16080:2;16065:18;;16058:62;16156:34;16151:2;16136:18;;16129:62;-1:-1:-1;;;16222:3:1;16207:19;;16200:37;16269:3;16254:19;;15979:300::o;16284:408::-;16486:2;16468:21;;;16525:2;16505:18;;;16498:30;16564:34;16559:2;16544:18;;16537:62;-1:-1:-1;;;16630:2:1;16615:18;;16608:42;16682:3;16667:19;;16458:234::o;16697:408::-;16899:2;16881:21;;;16938:2;16918:18;;;16911:30;16977:34;16972:2;16957:18;;16950:62;-1:-1:-1;;;17043:2:1;17028:18;;17021:42;17095:3;17080:19;;16871:234::o;17110:410::-;17312:2;17294:21;;;17351:2;17331:18;;;17324:30;17390:34;17385:2;17370:18;;17363:62;-1:-1:-1;;;17456:2:1;17441:18;;17434:44;17510:3;17495:19;;17284:236::o;17525:420::-;17727:2;17709:21;;;17766:2;17746:18;;;17739:30;17805:34;17800:2;17785:18;;17778:62;17876:26;17871:2;17856:18;;17849:54;17935:3;17920:19;;17699:246::o;17950:406::-;18152:2;18134:21;;;18191:2;18171:18;;;18164:30;18230:34;18225:2;18210:18;;18203:62;-1:-1:-1;;;18296:2:1;18281:18;;18274:40;18346:3;18331:19;;18124:232::o;18361:405::-;18563:2;18545:21;;;18602:2;18582:18;;;18575:30;18641:34;18636:2;18621:18;;18614:62;-1:-1:-1;;;18707:2:1;18692:18;;18685:39;18756:3;18741:19;;18535:231::o;18771:423::-;18973:2;18955:21;;;19012:2;18992:18;;;18985:30;19051:34;19046:2;19031:18;;19024:62;19122:29;19117:2;19102:18;;19095:57;19184:3;19169:19;;18945:249::o;19199:356::-;19401:2;19383:21;;;19420:18;;;19413:30;19479:34;19474:2;19459:18;;19452:62;19546:2;19531:18;;19373:182::o;19560:408::-;19762:2;19744:21;;;19801:2;19781:18;;;19774:30;19840:34;19835:2;19820:18;;19813:62;-1:-1:-1;;;19906:2:1;19891:18;;19884:42;19958:3;19943:19;;19734:234::o;19973:411::-;20175:2;20157:21;;;20214:2;20194:18;;;20187:30;20253:34;20248:2;20233:18;;20226:62;-1:-1:-1;;;20319:2:1;20304:18;;20297:45;20374:3;20359:19;;20147:237::o;20389:356::-;20591:2;20573:21;;;20610:18;;;20603:30;20669:34;20664:2;20649:18;;20642:62;20736:2;20721:18;;20563:182::o;20750:405::-;20952:2;20934:21;;;20991:2;20971:18;;;20964:30;21030:34;21025:2;21010:18;;21003:62;-1:-1:-1;;;21096:2:1;21081:18;;21074:39;21145:3;21130:19;;20924:231::o;21160:411::-;21362:2;21344:21;;;21401:2;21381:18;;;21374:30;21440:34;21435:2;21420:18;;21413:62;-1:-1:-1;;;21506:2:1;21491:18;;21484:45;21561:3;21546:19;;21334:237::o;21576:419::-;21778:2;21760:21;;;21817:2;21797:18;;;21790:30;21856:34;21851:2;21836:18;;21829:62;21927:25;21922:2;21907:18;;21900:53;21985:3;21970:19;;21750:245::o;22000:347::-;22202:2;22184:21;;;22241:2;22221:18;;;22214:30;22280:25;22275:2;22260:18;;22253:53;22338:2;22323:18;;22174:173::o;22352:397::-;22554:2;22536:21;;;22593:2;22573:18;;;22566:30;22632:34;22627:2;22612:18;;22605:62;-1:-1:-1;;;22698:2:1;22683:18;;22676:31;22739:3;22724:19;;22526:223::o;22754:401::-;22956:2;22938:21;;;22995:2;22975:18;;;22968:30;23034:34;23029:2;23014:18;;23007:62;-1:-1:-1;;;23100:2:1;23085:18;;23078:35;23145:3;23130:19;;22928:227::o;23160:340::-;23362:2;23344:21;;;23401:2;23381:18;;;23374:30;-1:-1:-1;;;23435:2:1;23420:18;;23413:46;23491:2;23476:18;;23334:166::o;23505:413::-;23707:2;23689:21;;;23746:2;23726:18;;;23719:30;23785:34;23780:2;23765:18;;23758:62;-1:-1:-1;;;23851:2:1;23836:18;;23829:47;23908:3;23893:19;;23679:239::o;23923:425::-;24125:2;24107:21;;;24164:2;24144:18;;;24137:30;24203:34;24198:2;24183:18;;24176:62;24274:31;24269:2;24254:18;;24247:59;24338:3;24323:19;;24097:251::o;24353:414::-;24555:2;24537:21;;;24594:2;24574:18;;;24567:30;24633:34;24628:2;24613:18;;24606:62;-1:-1:-1;;;24699:2:1;24684:18;;24677:48;24757:3;24742:19;;24527:240::o;24772:408::-;24974:2;24956:21;;;25013:2;24993:18;;;24986:30;25052:34;25047:2;25032:18;;25025:62;-1:-1:-1;;;25118:2:1;25103:18;;25096:42;25170:3;25155:19;;24946:234::o;25185:341::-;25387:2;25369:21;;;25426:2;25406:18;;;25399:30;-1:-1:-1;;;25460:2:1;25445:18;;25438:47;25517:2;25502:18;;25359:167::o;25713:319::-;25915:25;;;25971:2;25956:18;;25949:34;;;;26014:2;25999:18;;25992:34;25903:2;25888:18;;25870:162::o;26037:128::-;;26108:1;26104:6;26101:1;26098:13;26095:2;;;26114:18;;:::i;:::-;-1:-1:-1;26150:9:1;;26085:80::o;26170:120::-;;26236:1;26226:2;;26241:18;;:::i;:::-;-1:-1:-1;26275:9:1;;26216:74::o;26295:168::-;;26401:1;26397;26393:6;26389:14;26386:1;26383:21;26378:1;26371:9;26364:17;26360:45;26357:2;;;26408:18;;:::i;:::-;-1:-1:-1;26448:9:1;;26347:116::o;26468:125::-;;26536:1;26533;26530:8;26527:2;;;26541:18;;:::i;:::-;-1:-1:-1;26578:9:1;;26517:76::o;26598:258::-;26670:1;26680:113;26694:6;26691:1;26688:13;26680:113;;;26770:11;;;26764:18;26751:11;;;26744:39;26716:2;26709:10;26680:113;;;26811:6;26808:1;26805:13;26802:2;;;-1:-1:-1;;26846:1:1;26828:16;;26821:27;26651:205::o;26861:380::-;26946:1;26936:12;;26993:1;26983:12;;;27004:2;;27058:4;27050:6;27046:17;27036:27;;27004:2;27111;27103:6;27100:14;27080:18;27077:38;27074:2;;;27157:10;27152:3;27148:20;27145:1;27138:31;27192:4;27189:1;27182:15;27220:4;27217:1;27210:15;27074:2;;26916:325;;;:::o;27246:135::-;;-1:-1:-1;;27306:17:1;;27303:2;;;27326:18;;:::i;:::-;-1:-1:-1;27373:1:1;27362:13;;27293:88::o;27386:112::-;;27444:1;27434:2;;27449:18;;:::i;:::-;-1:-1:-1;27483:9:1;;27424:74::o;27503:127::-;27564:10;27559:3;27555:20;27552:1;27545:31;27595:4;27592:1;27585:15;27619:4;27616:1;27609:15;27635:127;27696:10;27691:3;27687:20;27684:1;27677:31;27727:4;27724:1;27717:15;27751:4;27748:1;27741:15;27767:127;27828:10;27823:3;27819:20;27816:1;27809:31;27859:4;27856:1;27849:15;27883:4;27880:1;27873:15;27899:133;-1:-1:-1;;;;;;27975:32:1;;27965:43;;27955:2;;28022:1;28019;28012:12

Swarm Source

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