ETH Price: $3,485.74 (+0.41%)
Gas: 4 Gwei

Token

0xayBears (0XB)
 

Overview

Max Total Supply

1,023 0XB

Holders

114

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
nehhyys.eth
Balance
20 0XB
0xaf72fe65a628e7e0829d2ce0066c0ff964629183
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:
OxayBears

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-17
*/

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


// OpenZeppelin Contracts v4.4.1 (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/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (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/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (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/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (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/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: 0xayBears.sol



pragma solidity ^0.8.0;




contract OxayBears is ERC721, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private _tokensMinted;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public maxSupply = 4000;
    uint256 public constant MAX_PER_WALLET = 20;
    uint256 public cost = 0.01 ether;

    /**
     * Public minting
     */
    mapping(address => uint256) public publicAddressMintCount;

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

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

    function mint(uint256 _mintAmount) public payable {
        require(tx.origin == _msgSender(), "Only EOA");
        require(_mintAmount > 0);
        require(_tokensMinted.current() + _mintAmount < maxSupply);

        require(publicAddressMintCount[msg.sender] + _mintAmount <= MAX_PER_WALLET, "Minting above wallet limit");
        
        if(_tokensMinted.current() >= 1000) {
            require(msg.value >= cost * _mintAmount, "Not enough ether. 0.01 ETH to mint per token");
        }

        publicAddressMintCount[msg.sender] += _mintAmount;

        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(msg.sender, _tokensMinted.current());
            _tokensMinted.increment();
        }
    }

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

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

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

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

    function withdraw() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    function totalSupply() public view returns (uint256) {
        return _tokensMinted.current();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicAddressMintCount","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506009908051906020019062000051929190620002a9565b50610fa0600a55662386f26fc10000600b553480156200007057600080fd5b5060405162003e9938038062003e998339818101604052810190620000969190620003d7565b82828160009080519060200190620000b0929190620002a9565b508060019080519060200190620000c9929190620002a9565b505050620000ec620000e06200010660201b60201c565b6200010e60201b60201c565b620000fd81620001d460201b60201c565b50505062000697565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001e46200010660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200020a6200027f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000263576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025a90620004b7565b60405180910390fd5b80600890805190602001906200027b929190620002a9565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002b7906200057f565b90600052602060002090601f016020900481019282620002db576000855562000327565b82601f10620002f657805160ff191683800117855562000327565b8280016001018555821562000327579182015b828111156200032657825182559160200191906001019062000309565b5b5090506200033691906200033a565b5090565b5b80821115620003555760008160009055506001016200033b565b5090565b6000620003706200036a8462000502565b620004d9565b9050828152602081018484840111156200038f576200038e6200064e565b5b6200039c84828562000549565b509392505050565b600082601f830112620003bc57620003bb62000649565b5b8151620003ce84826020860162000359565b91505092915050565b600080600060608486031215620003f357620003f262000658565b5b600084015167ffffffffffffffff81111562000414576200041362000653565b5b6200042286828701620003a4565b935050602084015167ffffffffffffffff81111562000446576200044562000653565b5b6200045486828701620003a4565b925050604084015167ffffffffffffffff81111562000478576200047762000653565b5b6200048686828701620003a4565b9150509250925092565b60006200049f60208362000538565b9150620004ac826200066e565b602082019050919050565b60006020820190508181036000830152620004d28162000490565b9050919050565b6000620004e5620004f8565b9050620004f38282620005b5565b919050565b6000604051905090565b600067ffffffffffffffff82111562000520576200051f6200061a565b5b6200052b826200065d565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005695780820151818401526020810190506200054c565b8381111562000579576000848401525b50505050565b600060028204905060018216806200059857607f821691505b60208210811415620005af57620005ae620005eb565b5b50919050565b620005c0826200065d565b810181811067ffffffffffffffff82111715620005e257620005e16200061a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6137f280620006a76000396000f3fe60806040526004361061019c5760003560e01c80636c0360eb116100ec578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb011461059a578063da3ef23f146105c5578063e985e9c5146105ee578063f2fde38b1461062b5761019c565b8063b88d4fde14610509578063c668286214610532578063c87b56dd1461055d5761019c565b80638da5cb5b116100c65780638da5cb5b1461046e57806395d89b4114610499578063a0712d68146104c4578063a22cb465146104e05761019c565b80636c0360eb146103ef57806370a082311461041a578063715018a6146104575761019c565b806313faede6116101595780633ccfd60b116101335780633ccfd60b1461035657806342842e0e1461036057806355f804b3146103895780636352211e146103b25761019c565b806313faede6146102d757806318160ddd1461030257806323b872dd1461032d5761019c565b806301ffc9a7146101a157806306fdde03146101de57806307e4d48014610209578063081812fc14610246578063095ea7b3146102835780630f2cdd6c146102ac575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c391906125c8565b610654565b6040516101d59190612b18565b60405180910390f35b3480156101ea57600080fd5b506101f3610736565b6040516102009190612b33565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612405565b6107c8565b60405161023d9190612db5565b60405180910390f35b34801561025257600080fd5b5061026d6004803603810190610268919061266b565b6107e0565b60405161027a9190612ab1565b60405180910390f35b34801561028f57600080fd5b506102aa60048036038101906102a59190612588565b610865565b005b3480156102b857600080fd5b506102c161097d565b6040516102ce9190612db5565b60405180910390f35b3480156102e357600080fd5b506102ec610982565b6040516102f99190612db5565b60405180910390f35b34801561030e57600080fd5b50610317610988565b6040516103249190612db5565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190612472565b610999565b005b61035e6109f9565b005b34801561036c57600080fd5b5061038760048036038101906103829190612472565b610ab5565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612622565b610ad5565b005b3480156103be57600080fd5b506103d960048036038101906103d4919061266b565b610b6b565b6040516103e69190612ab1565b60405180910390f35b3480156103fb57600080fd5b50610404610c1d565b6040516104119190612b33565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190612405565b610cab565b60405161044e9190612db5565b60405180910390f35b34801561046357600080fd5b5061046c610d63565b005b34801561047a57600080fd5b50610483610deb565b6040516104909190612ab1565b60405180910390f35b3480156104a557600080fd5b506104ae610e15565b6040516104bb9190612b33565b60405180910390f35b6104de60048036038101906104d9919061266b565b610ea7565b005b3480156104ec57600080fd5b5061050760048036038101906105029190612548565b6110d4565b005b34801561051557600080fd5b50610530600480360381019061052b91906124c5565b6110ea565b005b34801561053e57600080fd5b5061054761114c565b6040516105549190612b33565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f919061266b565b6111da565b6040516105919190612b33565b60405180910390f35b3480156105a657600080fd5b506105af611284565b6040516105bc9190612db5565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e79190612622565b61128a565b005b3480156105fa57600080fd5b5061061560048036038101906106109190612432565b611320565b6040516106229190612b18565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190612405565b6113b4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061072f575061072e826114ac565b5b9050919050565b6060600080546107459061307a565b80601f01602080910402602001604051908101604052809291908181526020018280546107719061307a565b80156107be5780601f10610793576101008083540402835291602001916107be565b820191906000526020600020905b8154815290600101906020018083116107a157829003601f168201915b5050505050905090565b600c6020528060005260406000206000915090505481565b60006107eb82611516565b61082a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082190612cd5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087082610b6b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d890612d75565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610900611582565b73ffffffffffffffffffffffffffffffffffffffff16148061092f575061092e81610929611582565b611320565b5b61096e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096590612c55565b60405180910390fd5b610978838361158a565b505050565b601481565b600b5481565b60006109946007611643565b905090565b6109aa6109a4611582565b82611651565b6109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e090612d95565b60405180910390fd5b6109f483838361172f565b505050565b610a01611582565b73ffffffffffffffffffffffffffffffffffffffff16610a1f610deb565b73ffffffffffffffffffffffffffffffffffffffff1614610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90612cf5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610ab357600080fd5b565b610ad0838383604051806020016040528060008152506110ea565b505050565b610add611582565b73ffffffffffffffffffffffffffffffffffffffff16610afb610deb565b73ffffffffffffffffffffffffffffffffffffffff1614610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4890612cf5565b60405180910390fd5b8060089080519060200190610b67929190612219565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90612c95565b60405180910390fd5b80915050919050565b60088054610c2a9061307a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c569061307a565b8015610ca35780601f10610c7857610100808354040283529160200191610ca3565b820191906000526020600020905b815481529060010190602001808311610c8657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1390612c75565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d6b611582565b73ffffffffffffffffffffffffffffffffffffffff16610d89610deb565b73ffffffffffffffffffffffffffffffffffffffff1614610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd690612cf5565b60405180910390fd5b610de9600061198b565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e249061307a565b80601f0160208091040260200160405190810160405280929190818152602001828054610e509061307a565b8015610e9d5780601f10610e7257610100808354040283529160200191610e9d565b820191906000526020600020905b815481529060010190602001808311610e8057829003601f168201915b5050505050905090565b610eaf611582565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1390612bd5565b60405180910390fd5b60008111610f2957600080fd5b600a5481610f376007611643565b610f419190612eaf565b10610f4b57600080fd5b601481600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f989190612eaf565b1115610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090612b75565b60405180910390fd5b6103e8610fe66007611643565b1061103c5780600b54610ff99190612f36565b34101561103b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103290612d15565b60405180910390fd5b5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461108b9190612eaf565b925050819055506000600190505b8181116110d0576110b3336110ae6007611643565b611a51565b6110bd6007611a6f565b80806110c8906130dd565b915050611099565b5050565b6110e66110df611582565b8383611a85565b5050565b6110fb6110f5611582565b83611651565b61113a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113190612d95565b60405180910390fd5b61114684848484611bf2565b50505050565b600980546111599061307a565b80601f01602080910402602001604051908101604052809291908181526020018280546111859061307a565b80156111d25780601f106111a7576101008083540402835291602001916111d2565b820191906000526020600020905b8154815290600101906020018083116111b557829003601f168201915b505050505081565b60606111e582611516565b611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b90612d55565b60405180910390fd5b600061122e611c4e565b9050600081511161124e576040518060200160405280600081525061127c565b8061125884611ce0565b600960405160200161126c93929190612a80565b6040516020818303038152906040525b915050919050565b600a5481565b611292611582565b73ffffffffffffffffffffffffffffffffffffffff166112b0610deb565b73ffffffffffffffffffffffffffffffffffffffff1614611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd90612cf5565b60405180910390fd5b806009908051906020019061131c929190612219565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113bc611582565b73ffffffffffffffffffffffffffffffffffffffff166113da610deb565b73ffffffffffffffffffffffffffffffffffffffff1614611430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142790612cf5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149790612b95565b60405180910390fd5b6114a98161198b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166115fd83610b6b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061165c82611516565b61169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290612c35565b60405180910390fd5b60006116a683610b6b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061171557508373ffffffffffffffffffffffffffffffffffffffff166116fd846107e0565b73ffffffffffffffffffffffffffffffffffffffff16145b8061172657506117258185611320565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661174f82610b6b565b73ffffffffffffffffffffffffffffffffffffffff16146117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c90612d35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c90612bf5565b60405180910390fd5b611820838383611e41565b61182b60008261158a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461187b9190612f90565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118d29190612eaf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a6b828260405180602001604052806000815250611e46565b5050565b6001816000016000828254019250508190555050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb90612c15565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611be59190612b18565b60405180910390a3505050565b611bfd84848461172f565b611c0984848484611ea1565b611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f90612b55565b60405180910390fd5b50505050565b606060088054611c5d9061307a565b80601f0160208091040260200160405190810160405280929190818152602001828054611c899061307a565b8015611cd65780601f10611cab57610100808354040283529160200191611cd6565b820191906000526020600020905b815481529060010190602001808311611cb957829003601f168201915b5050505050905090565b60606000821415611d28576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e3c565b600082905060005b60008214611d5a578080611d43906130dd565b915050600a82611d539190612f05565b9150611d30565b60008167ffffffffffffffff811115611d7657611d75613213565b5b6040519080825280601f01601f191660200182016040528015611da85781602001600182028036833780820191505090505b5090505b60008514611e3557600182611dc19190612f90565b9150600a85611dd09190613126565b6030611ddc9190612eaf565b60f81b818381518110611df257611df16131e4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e2e9190612f05565b9450611dac565b8093505050505b919050565b505050565b611e508383612038565b611e5d6000848484611ea1565b611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9390612b55565b60405180910390fd5b505050565b6000611ec28473ffffffffffffffffffffffffffffffffffffffff16612206565b1561202b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eeb611582565b8786866040518563ffffffff1660e01b8152600401611f0d9493929190612acc565b602060405180830381600087803b158015611f2757600080fd5b505af1925050508015611f5857506040513d601f19601f82011682018060405250810190611f5591906125f5565b60015b611fdb573d8060008114611f88576040519150601f19603f3d011682016040523d82523d6000602084013e611f8d565b606091505b50600081511415611fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fca90612b55565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612030565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209f90612cb5565b60405180910390fd5b6120b181611516565b156120f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e890612bb5565b60405180910390fd5b6120fd60008383611e41565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461214d9190612eaf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546122259061307a565b90600052602060002090601f016020900481019282612247576000855561228e565b82601f1061226057805160ff191683800117855561228e565b8280016001018555821561228e579182015b8281111561228d578251825591602001919060010190612272565b5b50905061229b919061229f565b5090565b5b808211156122b85760008160009055506001016122a0565b5090565b60006122cf6122ca84612df5565b612dd0565b9050828152602081018484840111156122eb576122ea613247565b5b6122f6848285613038565b509392505050565b600061231161230c84612e26565b612dd0565b90508281526020810184848401111561232d5761232c613247565b5b612338848285613038565b509392505050565b60008135905061234f81613760565b92915050565b60008135905061236481613777565b92915050565b6000813590506123798161378e565b92915050565b60008151905061238e8161378e565b92915050565b600082601f8301126123a9576123a8613242565b5b81356123b98482602086016122bc565b91505092915050565b600082601f8301126123d7576123d6613242565b5b81356123e78482602086016122fe565b91505092915050565b6000813590506123ff816137a5565b92915050565b60006020828403121561241b5761241a613251565b5b600061242984828501612340565b91505092915050565b6000806040838503121561244957612448613251565b5b600061245785828601612340565b925050602061246885828601612340565b9150509250929050565b60008060006060848603121561248b5761248a613251565b5b600061249986828701612340565b93505060206124aa86828701612340565b92505060406124bb868287016123f0565b9150509250925092565b600080600080608085870312156124df576124de613251565b5b60006124ed87828801612340565b94505060206124fe87828801612340565b935050604061250f878288016123f0565b925050606085013567ffffffffffffffff8111156125305761252f61324c565b5b61253c87828801612394565b91505092959194509250565b6000806040838503121561255f5761255e613251565b5b600061256d85828601612340565b925050602061257e85828601612355565b9150509250929050565b6000806040838503121561259f5761259e613251565b5b60006125ad85828601612340565b92505060206125be858286016123f0565b9150509250929050565b6000602082840312156125de576125dd613251565b5b60006125ec8482850161236a565b91505092915050565b60006020828403121561260b5761260a613251565b5b60006126198482850161237f565b91505092915050565b60006020828403121561263857612637613251565b5b600082013567ffffffffffffffff8111156126565761265561324c565b5b612662848285016123c2565b91505092915050565b60006020828403121561268157612680613251565b5b600061268f848285016123f0565b91505092915050565b6126a181612fc4565b82525050565b6126b081612fd6565b82525050565b60006126c182612e6c565b6126cb8185612e82565b93506126db818560208601613047565b6126e481613256565b840191505092915050565b60006126fa82612e77565b6127048185612e93565b9350612714818560208601613047565b61271d81613256565b840191505092915050565b600061273382612e77565b61273d8185612ea4565b935061274d818560208601613047565b80840191505092915050565b600081546127668161307a565b6127708186612ea4565b9450600182166000811461278b576001811461279c576127cf565b60ff198316865281860193506127cf565b6127a585612e57565b60005b838110156127c7578154818901526001820191506020810190506127a8565b838801955050505b50505092915050565b60006127e5603283612e93565b91506127f082613267565b604082019050919050565b6000612808601a83612e93565b9150612813826132b6565b602082019050919050565b600061282b602683612e93565b9150612836826132df565b604082019050919050565b600061284e601c83612e93565b91506128598261332e565b602082019050919050565b6000612871600883612e93565b915061287c82613357565b602082019050919050565b6000612894602483612e93565b915061289f82613380565b604082019050919050565b60006128b7601983612e93565b91506128c2826133cf565b602082019050919050565b60006128da602c83612e93565b91506128e5826133f8565b604082019050919050565b60006128fd603883612e93565b915061290882613447565b604082019050919050565b6000612920602a83612e93565b915061292b82613496565b604082019050919050565b6000612943602983612e93565b915061294e826134e5565b604082019050919050565b6000612966602083612e93565b915061297182613534565b602082019050919050565b6000612989602c83612e93565b91506129948261355d565b604082019050919050565b60006129ac602083612e93565b91506129b7826135ac565b602082019050919050565b60006129cf602c83612e93565b91506129da826135d5565b604082019050919050565b60006129f2602983612e93565b91506129fd82613624565b604082019050919050565b6000612a15602f83612e93565b9150612a2082613673565b604082019050919050565b6000612a38602183612e93565b9150612a43826136c2565b604082019050919050565b6000612a5b603183612e93565b9150612a6682613711565b604082019050919050565b612a7a8161302e565b82525050565b6000612a8c8286612728565b9150612a988285612728565b9150612aa48284612759565b9150819050949350505050565b6000602082019050612ac66000830184612698565b92915050565b6000608082019050612ae16000830187612698565b612aee6020830186612698565b612afb6040830185612a71565b8181036060830152612b0d81846126b6565b905095945050505050565b6000602082019050612b2d60008301846126a7565b92915050565b60006020820190508181036000830152612b4d81846126ef565b905092915050565b60006020820190508181036000830152612b6e816127d8565b9050919050565b60006020820190508181036000830152612b8e816127fb565b9050919050565b60006020820190508181036000830152612bae8161281e565b9050919050565b60006020820190508181036000830152612bce81612841565b9050919050565b60006020820190508181036000830152612bee81612864565b9050919050565b60006020820190508181036000830152612c0e81612887565b9050919050565b60006020820190508181036000830152612c2e816128aa565b9050919050565b60006020820190508181036000830152612c4e816128cd565b9050919050565b60006020820190508181036000830152612c6e816128f0565b9050919050565b60006020820190508181036000830152612c8e81612913565b9050919050565b60006020820190508181036000830152612cae81612936565b9050919050565b60006020820190508181036000830152612cce81612959565b9050919050565b60006020820190508181036000830152612cee8161297c565b9050919050565b60006020820190508181036000830152612d0e8161299f565b9050919050565b60006020820190508181036000830152612d2e816129c2565b9050919050565b60006020820190508181036000830152612d4e816129e5565b9050919050565b60006020820190508181036000830152612d6e81612a08565b9050919050565b60006020820190508181036000830152612d8e81612a2b565b9050919050565b60006020820190508181036000830152612dae81612a4e565b9050919050565b6000602082019050612dca6000830184612a71565b92915050565b6000612dda612deb565b9050612de682826130ac565b919050565b6000604051905090565b600067ffffffffffffffff821115612e1057612e0f613213565b5b612e1982613256565b9050602081019050919050565b600067ffffffffffffffff821115612e4157612e40613213565b5b612e4a82613256565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612eba8261302e565b9150612ec58361302e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612efa57612ef9613157565b5b828201905092915050565b6000612f108261302e565b9150612f1b8361302e565b925082612f2b57612f2a613186565b5b828204905092915050565b6000612f418261302e565b9150612f4c8361302e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f8557612f84613157565b5b828202905092915050565b6000612f9b8261302e565b9150612fa68361302e565b925082821015612fb957612fb8613157565b5b828203905092915050565b6000612fcf8261300e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561306557808201518184015260208101905061304a565b83811115613074576000848401525b50505050565b6000600282049050600182168061309257607f821691505b602082108114156130a6576130a56131b5565b5b50919050565b6130b582613256565b810181811067ffffffffffffffff821117156130d4576130d3613213565b5b80604052505050565b60006130e88261302e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561311b5761311a613157565b5b600182019050919050565b60006131318261302e565b915061313c8361302e565b92508261314c5761314b613186565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4d696e74696e672061626f76652077616c6c6574206c696d6974000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4f6e6c7920454f41000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f7567682065746865722e20302e30312045544820746f206d6960008201527f6e742070657220746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61376981612fc4565b811461377457600080fd5b50565b61378081612fd6565b811461378b57600080fd5b50565b61379781612fe2565b81146137a257600080fd5b50565b6137ae8161302e565b81146137b957600080fd5b5056fea26469706673582212203ae149f208c2e924fc171097e3a9b6a55209c1eb9fee19b82ccab7c5f96eb5bd64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000093078617942656172730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000330584200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d66416233464b46326d446250586d45457077364d6373594b3533593874386174674b396757513377545436392f00000000000000000000

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636c0360eb116100ec578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb011461059a578063da3ef23f146105c5578063e985e9c5146105ee578063f2fde38b1461062b5761019c565b8063b88d4fde14610509578063c668286214610532578063c87b56dd1461055d5761019c565b80638da5cb5b116100c65780638da5cb5b1461046e57806395d89b4114610499578063a0712d68146104c4578063a22cb465146104e05761019c565b80636c0360eb146103ef57806370a082311461041a578063715018a6146104575761019c565b806313faede6116101595780633ccfd60b116101335780633ccfd60b1461035657806342842e0e1461036057806355f804b3146103895780636352211e146103b25761019c565b806313faede6146102d757806318160ddd1461030257806323b872dd1461032d5761019c565b806301ffc9a7146101a157806306fdde03146101de57806307e4d48014610209578063081812fc14610246578063095ea7b3146102835780630f2cdd6c146102ac575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c391906125c8565b610654565b6040516101d59190612b18565b60405180910390f35b3480156101ea57600080fd5b506101f3610736565b6040516102009190612b33565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612405565b6107c8565b60405161023d9190612db5565b60405180910390f35b34801561025257600080fd5b5061026d6004803603810190610268919061266b565b6107e0565b60405161027a9190612ab1565b60405180910390f35b34801561028f57600080fd5b506102aa60048036038101906102a59190612588565b610865565b005b3480156102b857600080fd5b506102c161097d565b6040516102ce9190612db5565b60405180910390f35b3480156102e357600080fd5b506102ec610982565b6040516102f99190612db5565b60405180910390f35b34801561030e57600080fd5b50610317610988565b6040516103249190612db5565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190612472565b610999565b005b61035e6109f9565b005b34801561036c57600080fd5b5061038760048036038101906103829190612472565b610ab5565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612622565b610ad5565b005b3480156103be57600080fd5b506103d960048036038101906103d4919061266b565b610b6b565b6040516103e69190612ab1565b60405180910390f35b3480156103fb57600080fd5b50610404610c1d565b6040516104119190612b33565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190612405565b610cab565b60405161044e9190612db5565b60405180910390f35b34801561046357600080fd5b5061046c610d63565b005b34801561047a57600080fd5b50610483610deb565b6040516104909190612ab1565b60405180910390f35b3480156104a557600080fd5b506104ae610e15565b6040516104bb9190612b33565b60405180910390f35b6104de60048036038101906104d9919061266b565b610ea7565b005b3480156104ec57600080fd5b5061050760048036038101906105029190612548565b6110d4565b005b34801561051557600080fd5b50610530600480360381019061052b91906124c5565b6110ea565b005b34801561053e57600080fd5b5061054761114c565b6040516105549190612b33565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f919061266b565b6111da565b6040516105919190612b33565b60405180910390f35b3480156105a657600080fd5b506105af611284565b6040516105bc9190612db5565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e79190612622565b61128a565b005b3480156105fa57600080fd5b5061061560048036038101906106109190612432565b611320565b6040516106229190612b18565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190612405565b6113b4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061072f575061072e826114ac565b5b9050919050565b6060600080546107459061307a565b80601f01602080910402602001604051908101604052809291908181526020018280546107719061307a565b80156107be5780601f10610793576101008083540402835291602001916107be565b820191906000526020600020905b8154815290600101906020018083116107a157829003601f168201915b5050505050905090565b600c6020528060005260406000206000915090505481565b60006107eb82611516565b61082a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082190612cd5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087082610b6b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d890612d75565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610900611582565b73ffffffffffffffffffffffffffffffffffffffff16148061092f575061092e81610929611582565b611320565b5b61096e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096590612c55565b60405180910390fd5b610978838361158a565b505050565b601481565b600b5481565b60006109946007611643565b905090565b6109aa6109a4611582565b82611651565b6109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e090612d95565b60405180910390fd5b6109f483838361172f565b505050565b610a01611582565b73ffffffffffffffffffffffffffffffffffffffff16610a1f610deb565b73ffffffffffffffffffffffffffffffffffffffff1614610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90612cf5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610ab357600080fd5b565b610ad0838383604051806020016040528060008152506110ea565b505050565b610add611582565b73ffffffffffffffffffffffffffffffffffffffff16610afb610deb565b73ffffffffffffffffffffffffffffffffffffffff1614610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4890612cf5565b60405180910390fd5b8060089080519060200190610b67929190612219565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90612c95565b60405180910390fd5b80915050919050565b60088054610c2a9061307a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c569061307a565b8015610ca35780601f10610c7857610100808354040283529160200191610ca3565b820191906000526020600020905b815481529060010190602001808311610c8657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1390612c75565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d6b611582565b73ffffffffffffffffffffffffffffffffffffffff16610d89610deb565b73ffffffffffffffffffffffffffffffffffffffff1614610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd690612cf5565b60405180910390fd5b610de9600061198b565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e249061307a565b80601f0160208091040260200160405190810160405280929190818152602001828054610e509061307a565b8015610e9d5780601f10610e7257610100808354040283529160200191610e9d565b820191906000526020600020905b815481529060010190602001808311610e8057829003601f168201915b5050505050905090565b610eaf611582565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1390612bd5565b60405180910390fd5b60008111610f2957600080fd5b600a5481610f376007611643565b610f419190612eaf565b10610f4b57600080fd5b601481600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f989190612eaf565b1115610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090612b75565b60405180910390fd5b6103e8610fe66007611643565b1061103c5780600b54610ff99190612f36565b34101561103b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103290612d15565b60405180910390fd5b5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461108b9190612eaf565b925050819055506000600190505b8181116110d0576110b3336110ae6007611643565b611a51565b6110bd6007611a6f565b80806110c8906130dd565b915050611099565b5050565b6110e66110df611582565b8383611a85565b5050565b6110fb6110f5611582565b83611651565b61113a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113190612d95565b60405180910390fd5b61114684848484611bf2565b50505050565b600980546111599061307a565b80601f01602080910402602001604051908101604052809291908181526020018280546111859061307a565b80156111d25780601f106111a7576101008083540402835291602001916111d2565b820191906000526020600020905b8154815290600101906020018083116111b557829003601f168201915b505050505081565b60606111e582611516565b611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b90612d55565b60405180910390fd5b600061122e611c4e565b9050600081511161124e576040518060200160405280600081525061127c565b8061125884611ce0565b600960405160200161126c93929190612a80565b6040516020818303038152906040525b915050919050565b600a5481565b611292611582565b73ffffffffffffffffffffffffffffffffffffffff166112b0610deb565b73ffffffffffffffffffffffffffffffffffffffff1614611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd90612cf5565b60405180910390fd5b806009908051906020019061131c929190612219565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113bc611582565b73ffffffffffffffffffffffffffffffffffffffff166113da610deb565b73ffffffffffffffffffffffffffffffffffffffff1614611430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142790612cf5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149790612b95565b60405180910390fd5b6114a98161198b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166115fd83610b6b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061165c82611516565b61169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290612c35565b60405180910390fd5b60006116a683610b6b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061171557508373ffffffffffffffffffffffffffffffffffffffff166116fd846107e0565b73ffffffffffffffffffffffffffffffffffffffff16145b8061172657506117258185611320565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661174f82610b6b565b73ffffffffffffffffffffffffffffffffffffffff16146117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c90612d35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c90612bf5565b60405180910390fd5b611820838383611e41565b61182b60008261158a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461187b9190612f90565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118d29190612eaf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a6b828260405180602001604052806000815250611e46565b5050565b6001816000016000828254019250508190555050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb90612c15565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611be59190612b18565b60405180910390a3505050565b611bfd84848461172f565b611c0984848484611ea1565b611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f90612b55565b60405180910390fd5b50505050565b606060088054611c5d9061307a565b80601f0160208091040260200160405190810160405280929190818152602001828054611c899061307a565b8015611cd65780601f10611cab57610100808354040283529160200191611cd6565b820191906000526020600020905b815481529060010190602001808311611cb957829003601f168201915b5050505050905090565b60606000821415611d28576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e3c565b600082905060005b60008214611d5a578080611d43906130dd565b915050600a82611d539190612f05565b9150611d30565b60008167ffffffffffffffff811115611d7657611d75613213565b5b6040519080825280601f01601f191660200182016040528015611da85781602001600182028036833780820191505090505b5090505b60008514611e3557600182611dc19190612f90565b9150600a85611dd09190613126565b6030611ddc9190612eaf565b60f81b818381518110611df257611df16131e4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e2e9190612f05565b9450611dac565b8093505050505b919050565b505050565b611e508383612038565b611e5d6000848484611ea1565b611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9390612b55565b60405180910390fd5b505050565b6000611ec28473ffffffffffffffffffffffffffffffffffffffff16612206565b1561202b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eeb611582565b8786866040518563ffffffff1660e01b8152600401611f0d9493929190612acc565b602060405180830381600087803b158015611f2757600080fd5b505af1925050508015611f5857506040513d601f19601f82011682018060405250810190611f5591906125f5565b60015b611fdb573d8060008114611f88576040519150601f19603f3d011682016040523d82523d6000602084013e611f8d565b606091505b50600081511415611fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fca90612b55565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612030565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209f90612cb5565b60405180910390fd5b6120b181611516565b156120f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e890612bb5565b60405180910390fd5b6120fd60008383611e41565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461214d9190612eaf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546122259061307a565b90600052602060002090601f016020900481019282612247576000855561228e565b82601f1061226057805160ff191683800117855561228e565b8280016001018555821561228e579182015b8281111561228d578251825591602001919060010190612272565b5b50905061229b919061229f565b5090565b5b808211156122b85760008160009055506001016122a0565b5090565b60006122cf6122ca84612df5565b612dd0565b9050828152602081018484840111156122eb576122ea613247565b5b6122f6848285613038565b509392505050565b600061231161230c84612e26565b612dd0565b90508281526020810184848401111561232d5761232c613247565b5b612338848285613038565b509392505050565b60008135905061234f81613760565b92915050565b60008135905061236481613777565b92915050565b6000813590506123798161378e565b92915050565b60008151905061238e8161378e565b92915050565b600082601f8301126123a9576123a8613242565b5b81356123b98482602086016122bc565b91505092915050565b600082601f8301126123d7576123d6613242565b5b81356123e78482602086016122fe565b91505092915050565b6000813590506123ff816137a5565b92915050565b60006020828403121561241b5761241a613251565b5b600061242984828501612340565b91505092915050565b6000806040838503121561244957612448613251565b5b600061245785828601612340565b925050602061246885828601612340565b9150509250929050565b60008060006060848603121561248b5761248a613251565b5b600061249986828701612340565b93505060206124aa86828701612340565b92505060406124bb868287016123f0565b9150509250925092565b600080600080608085870312156124df576124de613251565b5b60006124ed87828801612340565b94505060206124fe87828801612340565b935050604061250f878288016123f0565b925050606085013567ffffffffffffffff8111156125305761252f61324c565b5b61253c87828801612394565b91505092959194509250565b6000806040838503121561255f5761255e613251565b5b600061256d85828601612340565b925050602061257e85828601612355565b9150509250929050565b6000806040838503121561259f5761259e613251565b5b60006125ad85828601612340565b92505060206125be858286016123f0565b9150509250929050565b6000602082840312156125de576125dd613251565b5b60006125ec8482850161236a565b91505092915050565b60006020828403121561260b5761260a613251565b5b60006126198482850161237f565b91505092915050565b60006020828403121561263857612637613251565b5b600082013567ffffffffffffffff8111156126565761265561324c565b5b612662848285016123c2565b91505092915050565b60006020828403121561268157612680613251565b5b600061268f848285016123f0565b91505092915050565b6126a181612fc4565b82525050565b6126b081612fd6565b82525050565b60006126c182612e6c565b6126cb8185612e82565b93506126db818560208601613047565b6126e481613256565b840191505092915050565b60006126fa82612e77565b6127048185612e93565b9350612714818560208601613047565b61271d81613256565b840191505092915050565b600061273382612e77565b61273d8185612ea4565b935061274d818560208601613047565b80840191505092915050565b600081546127668161307a565b6127708186612ea4565b9450600182166000811461278b576001811461279c576127cf565b60ff198316865281860193506127cf565b6127a585612e57565b60005b838110156127c7578154818901526001820191506020810190506127a8565b838801955050505b50505092915050565b60006127e5603283612e93565b91506127f082613267565b604082019050919050565b6000612808601a83612e93565b9150612813826132b6565b602082019050919050565b600061282b602683612e93565b9150612836826132df565b604082019050919050565b600061284e601c83612e93565b91506128598261332e565b602082019050919050565b6000612871600883612e93565b915061287c82613357565b602082019050919050565b6000612894602483612e93565b915061289f82613380565b604082019050919050565b60006128b7601983612e93565b91506128c2826133cf565b602082019050919050565b60006128da602c83612e93565b91506128e5826133f8565b604082019050919050565b60006128fd603883612e93565b915061290882613447565b604082019050919050565b6000612920602a83612e93565b915061292b82613496565b604082019050919050565b6000612943602983612e93565b915061294e826134e5565b604082019050919050565b6000612966602083612e93565b915061297182613534565b602082019050919050565b6000612989602c83612e93565b91506129948261355d565b604082019050919050565b60006129ac602083612e93565b91506129b7826135ac565b602082019050919050565b60006129cf602c83612e93565b91506129da826135d5565b604082019050919050565b60006129f2602983612e93565b91506129fd82613624565b604082019050919050565b6000612a15602f83612e93565b9150612a2082613673565b604082019050919050565b6000612a38602183612e93565b9150612a43826136c2565b604082019050919050565b6000612a5b603183612e93565b9150612a6682613711565b604082019050919050565b612a7a8161302e565b82525050565b6000612a8c8286612728565b9150612a988285612728565b9150612aa48284612759565b9150819050949350505050565b6000602082019050612ac66000830184612698565b92915050565b6000608082019050612ae16000830187612698565b612aee6020830186612698565b612afb6040830185612a71565b8181036060830152612b0d81846126b6565b905095945050505050565b6000602082019050612b2d60008301846126a7565b92915050565b60006020820190508181036000830152612b4d81846126ef565b905092915050565b60006020820190508181036000830152612b6e816127d8565b9050919050565b60006020820190508181036000830152612b8e816127fb565b9050919050565b60006020820190508181036000830152612bae8161281e565b9050919050565b60006020820190508181036000830152612bce81612841565b9050919050565b60006020820190508181036000830152612bee81612864565b9050919050565b60006020820190508181036000830152612c0e81612887565b9050919050565b60006020820190508181036000830152612c2e816128aa565b9050919050565b60006020820190508181036000830152612c4e816128cd565b9050919050565b60006020820190508181036000830152612c6e816128f0565b9050919050565b60006020820190508181036000830152612c8e81612913565b9050919050565b60006020820190508181036000830152612cae81612936565b9050919050565b60006020820190508181036000830152612cce81612959565b9050919050565b60006020820190508181036000830152612cee8161297c565b9050919050565b60006020820190508181036000830152612d0e8161299f565b9050919050565b60006020820190508181036000830152612d2e816129c2565b9050919050565b60006020820190508181036000830152612d4e816129e5565b9050919050565b60006020820190508181036000830152612d6e81612a08565b9050919050565b60006020820190508181036000830152612d8e81612a2b565b9050919050565b60006020820190508181036000830152612dae81612a4e565b9050919050565b6000602082019050612dca6000830184612a71565b92915050565b6000612dda612deb565b9050612de682826130ac565b919050565b6000604051905090565b600067ffffffffffffffff821115612e1057612e0f613213565b5b612e1982613256565b9050602081019050919050565b600067ffffffffffffffff821115612e4157612e40613213565b5b612e4a82613256565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612eba8261302e565b9150612ec58361302e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612efa57612ef9613157565b5b828201905092915050565b6000612f108261302e565b9150612f1b8361302e565b925082612f2b57612f2a613186565b5b828204905092915050565b6000612f418261302e565b9150612f4c8361302e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f8557612f84613157565b5b828202905092915050565b6000612f9b8261302e565b9150612fa68361302e565b925082821015612fb957612fb8613157565b5b828203905092915050565b6000612fcf8261300e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561306557808201518184015260208101905061304a565b83811115613074576000848401525b50505050565b6000600282049050600182168061309257607f821691505b602082108114156130a6576130a56131b5565b5b50919050565b6130b582613256565b810181811067ffffffffffffffff821117156130d4576130d3613213565b5b80604052505050565b60006130e88261302e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561311b5761311a613157565b5b600182019050919050565b60006131318261302e565b915061313c8361302e565b92508261314c5761314b613186565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4d696e74696e672061626f76652077616c6c6574206c696d6974000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4f6e6c7920454f41000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f7567682065746865722e20302e30312045544820746f206d6960008201527f6e742070657220746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61376981612fc4565b811461377457600080fd5b50565b61378081612fd6565b811461378b57600080fd5b50565b61379781612fe2565b81146137a257600080fd5b50565b6137ae8161302e565b81146137b957600080fd5b5056fea26469706673582212203ae149f208c2e924fc171097e3a9b6a55209c1eb9fee19b82ccab7c5f96eb5bd64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000093078617942656172730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000330584200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d66416233464b46326d446250586d45457077364d6373594b3533593874386174674b396757513377545436392f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): 0xayBears
Arg [1] : _symbol (string): 0XB
Arg [2] : _initBaseURI (string): ipfs://QmfAb3FKF2mDbPXmEEpw6McsYK53Y8t8atgK9gWQ3wTT69/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 3078617942656172730000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 3058420000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d66416233464b46326d446250586d45457077364d637359
Arg [9] : 4b3533593874386174674b396757513377545436392f00000000000000000000


Deployed Bytecode Sourcemap

37710:2509:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25207:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26152:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38118:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27711:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27234:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37986:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38036:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40114:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28461:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39986:120;;;:::i;:::-;;28871:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39738:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25846:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37876:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25576:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6195:103;;;;;;;;;;;;;:::i;:::-;;5544:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26321:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38509:738;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28004:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29127:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37904:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39255:475;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37948:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39850:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28230:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6453:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25207:305;25309:4;25361:25;25346:40;;;:11;:40;;;;:105;;;;25418:33;25403:48;;;:11;:48;;;;25346:105;:158;;;;25468:36;25492:11;25468:23;:36::i;:::-;25346:158;25326:178;;25207:305;;;:::o;26152:100::-;26206:13;26239:5;26232:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26152:100;:::o;38118:57::-;;;;;;;;;;;;;;;;;:::o;27711:221::-;27787:7;27815:16;27823:7;27815;:16::i;:::-;27807:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27900:15;:24;27916:7;27900:24;;;;;;;;;;;;;;;;;;;;;27893:31;;27711:221;;;:::o;27234:411::-;27315:13;27331:23;27346:7;27331:14;:23::i;:::-;27315:39;;27379:5;27373:11;;:2;:11;;;;27365:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27473:5;27457:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27482:37;27499:5;27506:12;:10;:12::i;:::-;27482:16;:37::i;:::-;27457:62;27435:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27616:21;27625:2;27629:7;27616:8;:21::i;:::-;27304:341;27234:411;;:::o;37986:43::-;38027:2;37986:43;:::o;38036:32::-;;;;:::o;40114:102::-;40158:7;40185:23;:13;:21;:23::i;:::-;40178:30;;40114:102;:::o;28461:339::-;28656:41;28675:12;:10;:12::i;:::-;28689:7;28656:18;:41::i;:::-;28648:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28764:28;28774:4;28780:2;28784:7;28764:9;:28::i;:::-;28461:339;;;:::o;39986:120::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40058:10:::1;40050:24;;:47;40075:21;40050:47;;;;;;;;;;;;;;;;;;;;;;;40042:56;;;::::0;::::1;;39986:120::o:0;28871:185::-;29009:39;29026:4;29032:2;29036:7;29009:39;;;;;;;;;;;;:16;:39::i;:::-;28871:185;;;:::o;39738:104::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39823:11:::1;39813:7;:21;;;;;;;;;;;;:::i;:::-;;39738:104:::0;:::o;25846:239::-;25918:7;25938:13;25954:7;:16;25962:7;25954:16;;;;;;;;;;;;;;;;;;;;;25938:32;;26006:1;25989:19;;:5;:19;;;;25981:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26072:5;26065:12;;;25846:239;;;:::o;37876:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25576:208::-;25648:7;25693:1;25676:19;;:5;:19;;;;25668:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25760:9;:16;25770:5;25760:16;;;;;;;;;;;;;;;;25753:23;;25576:208;;;:::o;6195:103::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;5544:87::-;5590:7;5617:6;;;;;;;;;;;5610:13;;5544:87;:::o;26321:104::-;26377:13;26410:7;26403:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26321:104;:::o;38509:738::-;38591:12;:10;:12::i;:::-;38578:25;;:9;:25;;;38570:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;38649:1;38635:11;:15;38627:24;;;;;;38710:9;;38696:11;38670:23;:13;:21;:23::i;:::-;:37;;;;:::i;:::-;:49;38662:58;;;;;;38027:2;38778:11;38741:22;:34;38764:10;38741:34;;;;;;;;;;;;;;;;:48;;;;:::i;:::-;:66;;38733:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;38889:4;38862:23;:13;:21;:23::i;:::-;:31;38859:151;;38938:11;38931:4;;:18;;;;:::i;:::-;38918:9;:31;;38910:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;38859:151;39060:11;39022:22;:34;39045:10;39022:34;;;;;;;;;;;;;;;;:49;;;;;;;:::i;:::-;;;;;;;;39089:9;39101:1;39089:13;;39084:156;39109:11;39104:1;:16;39084:156;;39142:46;39152:10;39164:23;:13;:21;:23::i;:::-;39142:9;:46::i;:::-;39203:25;:13;:23;:25::i;:::-;39122:3;;;;;:::i;:::-;;;;39084:156;;;;38509:738;:::o;28004:155::-;28099:52;28118:12;:10;:12::i;:::-;28132:8;28142;28099:18;:52::i;:::-;28004:155;;:::o;29127:328::-;29302:41;29321:12;:10;:12::i;:::-;29335:7;29302:18;:41::i;:::-;29294:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29408:39;29422:4;29428:2;29432:7;29441:5;29408:13;:39::i;:::-;29127:328;;;;:::o;37904:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39255:475::-;39373:13;39422:16;39430:7;39422;:16::i;:::-;39404:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;39522:28;39553:10;:8;:10::i;:::-;39522:41;;39612:1;39587:14;39581:28;:32;:141;;;;;;;;;;;;;;;;;39653:14;39669:18;:7;:16;:18::i;:::-;39689:13;39636:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39581:141;39574:148;;;39255:475;;;:::o;37948:31::-;;;;:::o;39850:128::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39953:17:::1;39937:13;:33;;;;;;;;;;;;:::i;:::-;;39850:128:::0;:::o;28230:164::-;28327:4;28351:18;:25;28370:5;28351:25;;;;;;;;;;;;;;;:35;28377:8;28351:35;;;;;;;;;;;;;;;;;;;;;;;;;28344:42;;28230:164;;;;:::o;6453:201::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6562:1:::1;6542:22;;:8;:22;;;;6534:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6618:28;6637:8;6618:18;:28::i;:::-;6453:201:::0;:::o;17976:157::-;18061:4;18100:25;18085:40;;;:11;:40;;;;18078:47;;17976:157;;;:::o;30965:127::-;31030:4;31082:1;31054:30;;:7;:16;31062:7;31054:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31047:37;;30965:127;;;:::o;4268:98::-;4321:7;4348:10;4341:17;;4268:98;:::o;34947:174::-;35049:2;35022:15;:24;35038:7;35022:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35105:7;35101:2;35067:46;;35076:23;35091:7;35076:14;:23::i;:::-;35067:46;;;;;;;;;;;;34947:174;;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;31259:348::-;31352:4;31377:16;31385:7;31377;:16::i;:::-;31369:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31453:13;31469:23;31484:7;31469:14;:23::i;:::-;31453:39;;31522:5;31511:16;;:7;:16;;;:51;;;;31555:7;31531:31;;:20;31543:7;31531:11;:20::i;:::-;:31;;;31511:51;:87;;;;31566:32;31583:5;31590:7;31566:16;:32::i;:::-;31511:87;31503:96;;;31259:348;;;;:::o;34251:578::-;34410:4;34383:31;;:23;34398:7;34383:14;:23::i;:::-;:31;;;34375:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34493:1;34479:16;;:2;:16;;;;34471:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34549:39;34570:4;34576:2;34580:7;34549:20;:39::i;:::-;34653:29;34670:1;34674:7;34653:8;:29::i;:::-;34714:1;34695:9;:15;34705:4;34695:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34743:1;34726:9;:13;34736:2;34726:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34774:2;34755:7;:16;34763:7;34755:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34813:7;34809:2;34794:27;;34803:4;34794:27;;;;;;;;;;;;34251:578;;;:::o;6814:191::-;6888:16;6907:6;;;;;;;;;;;6888:25;;6933:8;6924:6;;:17;;;;;;;;;;;;;;;;;;6988:8;6957:40;;6978:8;6957:40;;;;;;;;;;;;6877:128;6814:191;:::o;31949:110::-;32025:26;32035:2;32039:7;32025:26;;;;;;;;;;;;:9;:26::i;:::-;31949:110;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;35263:315::-;35418:8;35409:17;;:5;:17;;;;35401:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35505:8;35467:18;:25;35486:5;35467:25;;;;;;;;;;;;;;;:35;35493:8;35467:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35551:8;35529:41;;35544:5;35529:41;;;35561:8;35529:41;;;;;;:::i;:::-;;;;;;;;35263:315;;;:::o;30337:::-;30494:28;30504:4;30510:2;30514:7;30494:9;:28::i;:::-;30541:48;30564:4;30570:2;30574:7;30583:5;30541:22;:48::i;:::-;30533:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30337:315;;;;:::o;38393:108::-;38453:13;38486:7;38479:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38393:108;:::o;1830:723::-;1886:13;2116:1;2107:5;:10;2103:53;;;2134:10;;;;;;;;;;;;;;;;;;;;;2103:53;2166:12;2181:5;2166:20;;2197:14;2222:78;2237:1;2229:4;:9;2222:78;;2255:8;;;;;:::i;:::-;;;;2286:2;2278:10;;;;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2310:39;;2360:154;2376:1;2367:5;:10;2360:154;;2404:1;2394:11;;;;;:::i;:::-;;;2471:2;2463:5;:10;;;;:::i;:::-;2450:2;:24;;;;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2500:2;2491:11;;;;;:::i;:::-;;;2360:154;;;2538:6;2524:21;;;;;1830:723;;;;:::o;37514:126::-;;;;:::o;32286:321::-;32416:18;32422:2;32426:7;32416:5;:18::i;:::-;32467:54;32498:1;32502:2;32506:7;32515:5;32467:22;:54::i;:::-;32445:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32286:321;;;:::o;36143:799::-;36298:4;36319:15;:2;:13;;;:15::i;:::-;36315:620;;;36371:2;36355:36;;;36392:12;:10;:12::i;:::-;36406:4;36412:7;36421:5;36355:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36351:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36614:1;36597:6;:13;:18;36593:272;;;36640:60;;;;;;;;;;:::i;:::-;;;;;;;;36593:272;36815:6;36809:13;36800:6;36796:2;36792:15;36785:38;36351:529;36488:41;;;36478:51;;;:6;:51;;;;36471:58;;;;;36315:620;36919:4;36912:11;;36143:799;;;;;;;:::o;32943:382::-;33037:1;33023:16;;:2;:16;;;;33015:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33096:16;33104:7;33096;:16::i;:::-;33095:17;33087:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33158:45;33187:1;33191:2;33195:7;33158:20;:45::i;:::-;33233:1;33216:9;:13;33226:2;33216:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33264:2;33245:7;:16;33253:7;33245:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33309:7;33305:2;33284:33;;33301:1;33284:33;;;;;;;;;;;;32943:382;;:::o;7832:387::-;7892:4;8100:12;8167:7;8155:20;8147:28;;8210:1;8203:4;:8;8196:15;;;7832:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:365::-;11021:3;11042:66;11106:1;11101:3;11042:66;:::i;:::-;11035:73;;11117:93;11206:3;11117:93;:::i;:::-;11235:2;11230:3;11226:12;11219:19;;10879:365;;;:::o;11250:366::-;11392:3;11413:67;11477:2;11472:3;11413:67;:::i;:::-;11406:74;;11489:93;11578:3;11489:93;:::i;:::-;11607:2;11602:3;11598:12;11591:19;;11250:366;;;:::o;11622:::-;11764:3;11785:67;11849:2;11844:3;11785:67;:::i;:::-;11778:74;;11861:93;11950:3;11861:93;:::i;:::-;11979:2;11974:3;11970:12;11963:19;;11622:366;;;:::o;11994:::-;12136:3;12157:67;12221:2;12216:3;12157:67;:::i;:::-;12150:74;;12233:93;12322:3;12233:93;:::i;:::-;12351:2;12346:3;12342:12;12335:19;;11994:366;;;:::o;12366:::-;12508:3;12529:67;12593:2;12588:3;12529:67;:::i;:::-;12522:74;;12605:93;12694:3;12605:93;:::i;:::-;12723:2;12718:3;12714:12;12707:19;;12366:366;;;:::o;12738:::-;12880:3;12901:67;12965:2;12960:3;12901:67;:::i;:::-;12894:74;;12977:93;13066:3;12977:93;:::i;:::-;13095:2;13090:3;13086:12;13079:19;;12738:366;;;:::o;13110:::-;13252:3;13273:67;13337:2;13332:3;13273:67;:::i;:::-;13266:74;;13349:93;13438:3;13349:93;:::i;:::-;13467:2;13462:3;13458:12;13451:19;;13110:366;;;:::o;13482:::-;13624:3;13645:67;13709:2;13704:3;13645:67;:::i;:::-;13638:74;;13721:93;13810:3;13721:93;:::i;:::-;13839:2;13834:3;13830:12;13823:19;;13482:366;;;:::o;13854:::-;13996:3;14017:67;14081:2;14076:3;14017:67;:::i;:::-;14010:74;;14093:93;14182:3;14093:93;:::i;:::-;14211:2;14206:3;14202:12;14195:19;;13854:366;;;:::o;14226:::-;14368:3;14389:67;14453:2;14448:3;14389:67;:::i;:::-;14382:74;;14465:93;14554:3;14465:93;:::i;:::-;14583:2;14578:3;14574:12;14567:19;;14226:366;;;:::o;14598:::-;14740:3;14761:67;14825:2;14820:3;14761:67;:::i;:::-;14754:74;;14837:93;14926:3;14837:93;:::i;:::-;14955:2;14950:3;14946:12;14939:19;;14598:366;;;:::o;14970:::-;15112:3;15133:67;15197:2;15192:3;15133:67;:::i;:::-;15126:74;;15209:93;15298:3;15209:93;:::i;:::-;15327:2;15322:3;15318:12;15311:19;;14970:366;;;:::o;15342:::-;15484:3;15505:67;15569:2;15564:3;15505:67;:::i;:::-;15498:74;;15581:93;15670:3;15581:93;:::i;:::-;15699:2;15694:3;15690:12;15683:19;;15342:366;;;:::o;15714:::-;15856:3;15877:67;15941:2;15936:3;15877:67;:::i;:::-;15870:74;;15953:93;16042:3;15953:93;:::i;:::-;16071:2;16066:3;16062:12;16055:19;;15714:366;;;:::o;16086:::-;16228:3;16249:67;16313:2;16308:3;16249:67;:::i;:::-;16242:74;;16325:93;16414:3;16325:93;:::i;:::-;16443:2;16438:3;16434:12;16427:19;;16086:366;;;:::o;16458:118::-;16545:24;16563:5;16545:24;:::i;:::-;16540:3;16533:37;16458:118;;:::o;16582:589::-;16807:3;16829:95;16920:3;16911:6;16829:95;:::i;:::-;16822:102;;16941:95;17032:3;17023:6;16941:95;:::i;:::-;16934:102;;17053:92;17141:3;17132:6;17053:92;:::i;:::-;17046:99;;17162:3;17155:10;;16582:589;;;;;;:::o;17177:222::-;17270:4;17308:2;17297:9;17293:18;17285:26;;17321:71;17389:1;17378:9;17374:17;17365:6;17321:71;:::i;:::-;17177:222;;;;:::o;17405:640::-;17600:4;17638:3;17627:9;17623:19;17615:27;;17652:71;17720:1;17709:9;17705:17;17696:6;17652:71;:::i;:::-;17733:72;17801:2;17790:9;17786:18;17777:6;17733:72;:::i;:::-;17815;17883:2;17872:9;17868:18;17859:6;17815:72;:::i;:::-;17934:9;17928:4;17924:20;17919:2;17908:9;17904:18;17897:48;17962:76;18033:4;18024:6;17962:76;:::i;:::-;17954:84;;17405:640;;;;;;;:::o;18051:210::-;18138:4;18176:2;18165:9;18161:18;18153:26;;18189:65;18251:1;18240:9;18236:17;18227:6;18189:65;:::i;:::-;18051:210;;;;:::o;18267:313::-;18380:4;18418:2;18407:9;18403:18;18395:26;;18467:9;18461:4;18457:20;18453:1;18442:9;18438:17;18431:47;18495:78;18568:4;18559:6;18495:78;:::i;:::-;18487:86;;18267:313;;;;:::o;18586:419::-;18752:4;18790:2;18779:9;18775:18;18767:26;;18839:9;18833:4;18829:20;18825:1;18814:9;18810:17;18803:47;18867:131;18993:4;18867:131;:::i;:::-;18859:139;;18586:419;;;:::o;19011:::-;19177:4;19215:2;19204:9;19200:18;19192:26;;19264:9;19258:4;19254:20;19250:1;19239:9;19235:17;19228:47;19292:131;19418:4;19292:131;:::i;:::-;19284:139;;19011:419;;;:::o;19436:::-;19602:4;19640:2;19629:9;19625:18;19617:26;;19689:9;19683:4;19679:20;19675:1;19664:9;19660:17;19653:47;19717:131;19843:4;19717:131;:::i;:::-;19709:139;;19436:419;;;:::o;19861:::-;20027:4;20065:2;20054:9;20050:18;20042:26;;20114:9;20108:4;20104:20;20100:1;20089:9;20085:17;20078:47;20142:131;20268:4;20142:131;:::i;:::-;20134:139;;19861:419;;;:::o;20286:::-;20452:4;20490:2;20479:9;20475:18;20467:26;;20539:9;20533:4;20529:20;20525:1;20514:9;20510:17;20503:47;20567:131;20693:4;20567:131;:::i;:::-;20559:139;;20286:419;;;:::o;20711:::-;20877:4;20915:2;20904:9;20900:18;20892:26;;20964:9;20958:4;20954:20;20950:1;20939:9;20935:17;20928:47;20992:131;21118:4;20992:131;:::i;:::-;20984:139;;20711:419;;;:::o;21136:::-;21302:4;21340:2;21329:9;21325:18;21317:26;;21389:9;21383:4;21379:20;21375:1;21364:9;21360:17;21353:47;21417:131;21543:4;21417:131;:::i;:::-;21409:139;;21136:419;;;:::o;21561:::-;21727:4;21765:2;21754:9;21750:18;21742:26;;21814:9;21808:4;21804:20;21800:1;21789:9;21785:17;21778:47;21842:131;21968:4;21842:131;:::i;:::-;21834:139;;21561:419;;;:::o;21986:::-;22152:4;22190:2;22179:9;22175:18;22167:26;;22239:9;22233:4;22229:20;22225:1;22214:9;22210:17;22203:47;22267:131;22393:4;22267:131;:::i;:::-;22259:139;;21986:419;;;:::o;22411:::-;22577:4;22615:2;22604:9;22600:18;22592:26;;22664:9;22658:4;22654:20;22650:1;22639:9;22635:17;22628:47;22692:131;22818:4;22692:131;:::i;:::-;22684:139;;22411:419;;;:::o;22836:::-;23002:4;23040:2;23029:9;23025:18;23017:26;;23089:9;23083:4;23079:20;23075:1;23064:9;23060:17;23053:47;23117:131;23243:4;23117:131;:::i;:::-;23109:139;;22836:419;;;:::o;23261:::-;23427:4;23465:2;23454:9;23450:18;23442:26;;23514:9;23508:4;23504:20;23500:1;23489:9;23485:17;23478:47;23542:131;23668:4;23542:131;:::i;:::-;23534:139;;23261:419;;;:::o;23686:::-;23852:4;23890:2;23879:9;23875:18;23867:26;;23939:9;23933:4;23929:20;23925:1;23914:9;23910:17;23903:47;23967:131;24093:4;23967:131;:::i;:::-;23959:139;;23686:419;;;:::o;24111:::-;24277:4;24315:2;24304:9;24300:18;24292:26;;24364:9;24358:4;24354:20;24350:1;24339:9;24335:17;24328:47;24392:131;24518:4;24392:131;:::i;:::-;24384:139;;24111:419;;;:::o;24536:::-;24702:4;24740:2;24729:9;24725:18;24717:26;;24789:9;24783:4;24779:20;24775:1;24764:9;24760:17;24753:47;24817:131;24943:4;24817:131;:::i;:::-;24809:139;;24536:419;;;:::o;24961:::-;25127:4;25165:2;25154:9;25150:18;25142:26;;25214:9;25208:4;25204:20;25200:1;25189:9;25185:17;25178:47;25242:131;25368:4;25242:131;:::i;:::-;25234:139;;24961:419;;;:::o;25386:::-;25552:4;25590:2;25579:9;25575:18;25567:26;;25639:9;25633:4;25629:20;25625:1;25614:9;25610:17;25603:47;25667:131;25793:4;25667:131;:::i;:::-;25659:139;;25386:419;;;:::o;25811:::-;25977:4;26015:2;26004:9;26000:18;25992:26;;26064:9;26058:4;26054:20;26050:1;26039:9;26035:17;26028:47;26092:131;26218:4;26092:131;:::i;:::-;26084:139;;25811:419;;;:::o;26236:::-;26402:4;26440:2;26429:9;26425:18;26417:26;;26489:9;26483:4;26479:20;26475:1;26464:9;26460:17;26453:47;26517:131;26643:4;26517:131;:::i;:::-;26509:139;;26236:419;;;:::o;26661:222::-;26754:4;26792:2;26781:9;26777:18;26769:26;;26805:71;26873:1;26862:9;26858:17;26849:6;26805:71;:::i;:::-;26661:222;;;;:::o;26889:129::-;26923:6;26950:20;;:::i;:::-;26940:30;;26979:33;27007:4;26999:6;26979:33;:::i;:::-;26889:129;;;:::o;27024:75::-;27057:6;27090:2;27084:9;27074:19;;27024:75;:::o;27105:307::-;27166:4;27256:18;27248:6;27245:30;27242:56;;;27278:18;;:::i;:::-;27242:56;27316:29;27338:6;27316:29;:::i;:::-;27308:37;;27400:4;27394;27390:15;27382:23;;27105:307;;;:::o;27418:308::-;27480:4;27570:18;27562:6;27559:30;27556:56;;;27592:18;;:::i;:::-;27556:56;27630:29;27652:6;27630:29;:::i;:::-;27622:37;;27714:4;27708;27704:15;27696:23;;27418:308;;;:::o;27732:141::-;27781:4;27804:3;27796:11;;27827:3;27824:1;27817:14;27861:4;27858:1;27848:18;27840:26;;27732:141;;;:::o;27879:98::-;27930:6;27964:5;27958:12;27948:22;;27879:98;;;:::o;27983:99::-;28035:6;28069:5;28063:12;28053:22;;27983:99;;;:::o;28088:168::-;28171:11;28205:6;28200:3;28193:19;28245:4;28240:3;28236:14;28221:29;;28088:168;;;;:::o;28262:169::-;28346:11;28380:6;28375:3;28368:19;28420:4;28415:3;28411:14;28396:29;;28262:169;;;;:::o;28437:148::-;28539:11;28576:3;28561:18;;28437:148;;;;:::o;28591:305::-;28631:3;28650:20;28668:1;28650:20;:::i;:::-;28645:25;;28684:20;28702:1;28684:20;:::i;:::-;28679:25;;28838:1;28770:66;28766:74;28763:1;28760:81;28757:107;;;28844:18;;:::i;:::-;28757:107;28888:1;28885;28881:9;28874:16;;28591:305;;;;:::o;28902:185::-;28942:1;28959:20;28977:1;28959:20;:::i;:::-;28954:25;;28993:20;29011:1;28993:20;:::i;:::-;28988:25;;29032:1;29022:35;;29037:18;;:::i;:::-;29022:35;29079:1;29076;29072:9;29067:14;;28902:185;;;;:::o;29093:348::-;29133:7;29156:20;29174:1;29156:20;:::i;:::-;29151:25;;29190:20;29208:1;29190:20;:::i;:::-;29185:25;;29378:1;29310:66;29306:74;29303:1;29300:81;29295:1;29288:9;29281:17;29277:105;29274:131;;;29385:18;;:::i;:::-;29274:131;29433:1;29430;29426:9;29415:20;;29093:348;;;;:::o;29447:191::-;29487:4;29507:20;29525:1;29507:20;:::i;:::-;29502:25;;29541:20;29559:1;29541:20;:::i;:::-;29536:25;;29580:1;29577;29574:8;29571:34;;;29585:18;;:::i;:::-;29571:34;29630:1;29627;29623:9;29615:17;;29447:191;;;;:::o;29644:96::-;29681:7;29710:24;29728:5;29710:24;:::i;:::-;29699:35;;29644:96;;;:::o;29746:90::-;29780:7;29823:5;29816:13;29809:21;29798:32;;29746:90;;;:::o;29842:149::-;29878:7;29918:66;29911:5;29907:78;29896:89;;29842:149;;;:::o;29997:126::-;30034:7;30074:42;30067:5;30063:54;30052:65;;29997:126;;;:::o;30129:77::-;30166:7;30195:5;30184:16;;30129:77;;;:::o;30212:154::-;30296:6;30291:3;30286;30273:30;30358:1;30349:6;30344:3;30340:16;30333:27;30212:154;;;:::o;30372:307::-;30440:1;30450:113;30464:6;30461:1;30458:13;30450:113;;;30549:1;30544:3;30540:11;30534:18;30530:1;30525:3;30521:11;30514:39;30486:2;30483:1;30479:10;30474:15;;30450:113;;;30581:6;30578:1;30575:13;30572:101;;;30661:1;30652:6;30647:3;30643:16;30636:27;30572:101;30421:258;30372:307;;;:::o;30685:320::-;30729:6;30766:1;30760:4;30756:12;30746:22;;30813:1;30807:4;30803:12;30834:18;30824:81;;30890:4;30882:6;30878:17;30868:27;;30824:81;30952:2;30944:6;30941:14;30921:18;30918:38;30915:84;;;30971:18;;:::i;:::-;30915:84;30736:269;30685:320;;;:::o;31011:281::-;31094:27;31116:4;31094:27;:::i;:::-;31086:6;31082:40;31224:6;31212:10;31209:22;31188:18;31176:10;31173:34;31170:62;31167:88;;;31235:18;;:::i;:::-;31167:88;31275:10;31271:2;31264:22;31054:238;31011:281;;:::o;31298:233::-;31337:3;31360:24;31378:5;31360:24;:::i;:::-;31351:33;;31406:66;31399:5;31396:77;31393:103;;;31476:18;;:::i;:::-;31393:103;31523:1;31516:5;31512:13;31505:20;;31298:233;;;:::o;31537:176::-;31569:1;31586:20;31604:1;31586:20;:::i;:::-;31581:25;;31620:20;31638:1;31620:20;:::i;:::-;31615:25;;31659:1;31649:35;;31664:18;;:::i;:::-;31649:35;31705:1;31702;31698:9;31693:14;;31537:176;;;;:::o;31719:180::-;31767:77;31764:1;31757:88;31864:4;31861:1;31854:15;31888:4;31885:1;31878:15;31905:180;31953:77;31950:1;31943:88;32050:4;32047:1;32040:15;32074:4;32071:1;32064:15;32091:180;32139:77;32136:1;32129:88;32236:4;32233:1;32226:15;32260:4;32257:1;32250:15;32277:180;32325:77;32322:1;32315:88;32422:4;32419:1;32412:15;32446:4;32443:1;32436:15;32463:180;32511:77;32508:1;32501:88;32608:4;32605:1;32598:15;32632:4;32629:1;32622:15;32649:117;32758:1;32755;32748:12;32772:117;32881:1;32878;32871:12;32895:117;33004:1;33001;32994:12;33018:117;33127:1;33124;33117:12;33141:102;33182:6;33233:2;33229:7;33224:2;33217:5;33213:14;33209:28;33199:38;;33141:102;;;:::o;33249:237::-;33389:34;33385:1;33377:6;33373:14;33366:58;33458:20;33453:2;33445:6;33441:15;33434:45;33249:237;:::o;33492:176::-;33632:28;33628:1;33620:6;33616:14;33609:52;33492:176;:::o;33674:225::-;33814:34;33810:1;33802:6;33798:14;33791:58;33883:8;33878:2;33870:6;33866:15;33859:33;33674:225;:::o;33905:178::-;34045:30;34041:1;34033:6;34029:14;34022:54;33905:178;:::o;34089:158::-;34229:10;34225:1;34217:6;34213:14;34206:34;34089:158;:::o;34253:223::-;34393:34;34389:1;34381:6;34377:14;34370:58;34462:6;34457:2;34449:6;34445:15;34438:31;34253:223;:::o;34482:175::-;34622:27;34618:1;34610:6;34606:14;34599:51;34482:175;:::o;34663:231::-;34803:34;34799:1;34791:6;34787:14;34780:58;34872:14;34867:2;34859:6;34855:15;34848:39;34663:231;:::o;34900:243::-;35040:34;35036:1;35028:6;35024:14;35017:58;35109:26;35104:2;35096:6;35092:15;35085:51;34900:243;:::o;35149:229::-;35289:34;35285:1;35277:6;35273:14;35266:58;35358:12;35353:2;35345:6;35341:15;35334:37;35149:229;:::o;35384:228::-;35524:34;35520:1;35512:6;35508:14;35501:58;35593:11;35588:2;35580:6;35576:15;35569:36;35384:228;:::o;35618:182::-;35758:34;35754:1;35746:6;35742:14;35735:58;35618:182;:::o;35806:231::-;35946:34;35942:1;35934:6;35930:14;35923:58;36015:14;36010:2;36002:6;35998:15;35991:39;35806:231;:::o;36043:182::-;36183:34;36179:1;36171:6;36167:14;36160:58;36043:182;:::o;36231:231::-;36371:34;36367:1;36359:6;36355:14;36348:58;36440:14;36435:2;36427:6;36423:15;36416:39;36231:231;:::o;36468:228::-;36608:34;36604:1;36596:6;36592:14;36585:58;36677:11;36672:2;36664:6;36660:15;36653:36;36468:228;:::o;36702:234::-;36842:34;36838:1;36830:6;36826:14;36819:58;36911:17;36906:2;36898:6;36894:15;36887:42;36702:234;:::o;36942:220::-;37082:34;37078:1;37070:6;37066:14;37059:58;37151:3;37146:2;37138:6;37134:15;37127:28;36942:220;:::o;37168:236::-;37308:34;37304:1;37296:6;37292:14;37285:58;37377:19;37372:2;37364:6;37360:15;37353:44;37168:236;:::o;37410:122::-;37483:24;37501:5;37483:24;:::i;:::-;37476:5;37473:35;37463:63;;37522:1;37519;37512:12;37463:63;37410:122;:::o;37538:116::-;37608:21;37623:5;37608:21;:::i;:::-;37601:5;37598:32;37588:60;;37644:1;37641;37634:12;37588:60;37538:116;:::o;37660:120::-;37732:23;37749:5;37732:23;:::i;:::-;37725:5;37722:34;37712:62;;37770:1;37767;37760:12;37712:62;37660:120;:::o;37786:122::-;37859:24;37877:5;37859:24;:::i;:::-;37852:5;37849:35;37839:63;;37898:1;37895;37888:12;37839:63;37786:122;:::o

Swarm Source

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