ETH Price: $3,104.10 (+1.03%)
Gas: 7 Gwei

Token

HillbillyDogs (HD)
 

Overview

Max Total Supply

284 HD

Holders

173

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 HD
0x097F2d34D4D6B993845091cdd8182D61f666901A
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A collection of 1037 Hillbilly Hound Dogs committed to rescues and prevention of animal cruelty.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HillbillyDogs

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-20
*/

// SPDX-License-Identifier: MIT

// Thecreatiiives.com

// 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: contracts/Bear.sol



pragma solidity ^0.8.0;

contract HillbillyDogs is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "ipfs://QmWkKSur7d7r6DNR5BCGs14roCxe9kwZ49csoYvnM9yeAf/";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.05 ether;
  uint256 public maxSupply = 1037;
  uint256 public maxMintAmountPerTx = 10;
  uint256 public wlSupply = 0;

  bool public paused = true;
  bool public revealed = true;
  bool public onlyWhitelisted = false;
  mapping(address => uint256) public allowlist;

  constructor() ERC721("HillbillyDogs", "HD") {
    setHiddenMetadataUri("ipfs://QmZGpPMJxXmeuJvFiD4duWRWKV7Dj5Lk5Ge7scwvZ96EDy/hidden.json");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    require(!paused, "The contract is paused!");
    _;
  }

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

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!onlyWhitelisted, "Public not yet started!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _mintLoop(msg.sender, _mintAmount);
  }

  function mintWl(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(onlyWhitelisted, "The presale ended!");
    require(supply.current() + _mintAmount <= wlSupply, "The presale ended!");
    require(allowlist[msg.sender] > 0, "not eligible for allowlist mint");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _mintLoop(msg.sender, _mintAmount);
  }

  function isWhitelisted(address _address) public view returns (uint256)  {
      return allowlist[_address];
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function seedAllowlist(address[] memory addresses, uint256 numSlots)
    external
    onlyOwner
  {
    for (uint256 i = 0; i < addresses.length; i++) {
      allowlist[addresses[i]] = numSlots;
    }
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","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":"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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintWl","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"addresses","type":"address[]"},{"internalType":"uint256","name":"numSlots","type":"uint256"}],"name":"seedAllowlist","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60e0604052603660808181529062002aed60a039805162000029916008916020909101906200020c565b5060408051808201909152600580825264173539b7b760d91b602090920191825262000058916009916200020c565b5066b1a2bc2ec50000600b5561040d600c55600a600d556000600e55600f805462ffffff19166101011790553480156200009157600080fd5b50604080518082018252600d81526c48696c6c62696c6c79446f677360981b602080830191825283518085019094526002845261121160f21b908401528151919291620000e1916000916200020c565b508051620000f79060019060208401906200020c565b505050620001146200010e6200013e60201b60201c565b62000142565b6200013860405180608001604052806041815260200162002aac6041913962000194565b620002ef565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001f35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200020890600a9060208401906200020c565b5050565b8280546200021a90620002b2565b90600052602060002090601f0160209004810192826200023e576000855562000289565b82601f106200025957805160ff191683800117855562000289565b8280016001018555821562000289579182015b82811115620002895782518255916020019190600101906200026c565b50620002979291506200029b565b5090565b5b808211156200029757600081556001016200029c565b600181811c90821680620002c757607f821691505b60208210811415620002e957634e487b7160e01b600052602260045260246000fd5b50919050565b6127ad80620002ff6000396000f3fe6080604052600436106102675760003560e01c80636f8b44b011610144578063a7cd52cb116100b6578063d5abeb011161007a578063d5abeb011461070d578063e0a8085314610723578063e6f4c9cc14610743578063e985e9c514610763578063efbd73f4146107ac578063f2fde38b146107cc57600080fd5b8063a7cd52cb1461066d578063b071401b1461069a578063b88d4fde146106ba578063bf092a07146106da578063c87b56dd146106ed57600080fd5b806394354fd01161010857806394354fd0146105da57806395d89b41146105f05780639c70b51214610605578063a0712d6814610625578063a22cb46514610638578063a45ba8e71461065857600080fd5b80636f8b44b01461054757806370a0823114610567578063715018a6146105875780637ec4a6591461059c5780638da5cb5b146105bc57600080fd5b80633c952764116101dd5780634fdd43cb116101a15780634fdd43cb146104a457806351830227146104c45780635503a0e8146104e35780635c975abb146104f857806362b99ad4146105125780636352211e1461052757600080fd5b80633c952764146104025780633ccfd60b1461042257806342842e0e14610437578063438b63001461045757806344a0d68a1461048457600080fd5b806313faede61161022f57806313faede61461034157806316ba10e01461035757806316c38b3c1461037757806318160ddd1461039757806323b872dd146103ac5780633af32abf146103cc57600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb5780630fe8418b1461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004611f9c565b6107ec565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b661083e565b6040516102989190612011565b3480156102cf57600080fd5b506102e36102de366004612024565b6108d0565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612059565b61096a565b005b34801561032957600080fd5b50610333600e5481565b604051908152602001610298565b34801561034d57600080fd5b50610333600b5481565b34801561036357600080fd5b5061031b610372366004612122565b610a80565b34801561038357600080fd5b5061031b61039236600461217b565b610ac1565b3480156103a357600080fd5b50610333610afe565b3480156103b857600080fd5b5061031b6103c7366004612196565b610b0e565b3480156103d857600080fd5b506103336103e73660046121d2565b6001600160a01b031660009081526010602052604090205490565b34801561040e57600080fd5b5061031b61041d36600461217b565b610b3f565b34801561042e57600080fd5b5061031b610b85565b34801561044357600080fd5b5061031b610452366004612196565b610c23565b34801561046357600080fd5b506104776104723660046121d2565b610c3e565b60405161029891906121ed565b34801561049057600080fd5b5061031b61049f366004612024565b610d1f565b3480156104b057600080fd5b5061031b6104bf366004612122565b610d4e565b3480156104d057600080fd5b50600f5461028c90610100900460ff1681565b3480156104ef57600080fd5b506102b6610d8b565b34801561050457600080fd5b50600f5461028c9060ff1681565b34801561051e57600080fd5b506102b6610e19565b34801561053357600080fd5b506102e3610542366004612024565b610e26565b34801561055357600080fd5b5061031b610562366004612024565b610e9d565b34801561057357600080fd5b506103336105823660046121d2565b610ecc565b34801561059357600080fd5b5061031b610f53565b3480156105a857600080fd5b5061031b6105b7366004612122565b610f89565b3480156105c857600080fd5b506006546001600160a01b03166102e3565b3480156105e657600080fd5b50610333600d5481565b3480156105fc57600080fd5b506102b6610fc6565b34801561061157600080fd5b50600f5461028c9062010000900460ff1681565b61031b610633366004612024565b610fd5565b34801561064457600080fd5b5061031b610653366004612231565b611112565b34801561066457600080fd5b506102b661111d565b34801561067957600080fd5b506103336106883660046121d2565b60106020526000908152604090205481565b3480156106a657600080fd5b5061031b6106b5366004612024565b61112a565b3480156106c657600080fd5b5061031b6106d5366004612264565b611159565b61031b6106e8366004612024565b611191565b3480156106f957600080fd5b506102b6610708366004612024565b61131b565b34801561071957600080fd5b50610333600c5481565b34801561072f57600080fd5b5061031b61073e36600461217b565b61149a565b34801561074f57600080fd5b5061031b61075e3660046122e0565b6114de565b34801561076f57600080fd5b5061028c61077e366004612393565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107b857600080fd5b5061031b6107c73660046123bd565b61156a565b3480156107d857600080fd5b5061031b6107e73660046121d2565b611625565b60006001600160e01b031982166380ac58cd60e01b148061081d57506001600160e01b03198216635b5e139f60e01b145b8061083857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461084d906123e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610879906123e0565b80156108c65780601f1061089b576101008083540402835291602001916108c6565b820191906000526020600020905b8154815290600101906020018083116108a957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661094e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061097582610e26565b9050806001600160a01b0316836001600160a01b031614156109e35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610945565b336001600160a01b03821614806109ff57506109ff813361077e565b610a715760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610945565b610a7b83836116bd565b505050565b6006546001600160a01b03163314610aaa5760405162461bcd60e51b81526004016109459061241b565b8051610abd906009906020840190611eed565b5050565b6006546001600160a01b03163314610aeb5760405162461bcd60e51b81526004016109459061241b565b600f805460ff1916911515919091179055565b6000610b0960075490565b905090565b610b18338261172b565b610b345760405162461bcd60e51b815260040161094590612450565b610a7b838383611822565b6006546001600160a01b03163314610b695760405162461bcd60e51b81526004016109459061241b565b600f8054911515620100000262ff000019909216919091179055565b6006546001600160a01b03163314610baf5760405162461bcd60e51b81526004016109459061241b565b6000610bc36006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c0d576040519150601f19603f3d011682016040523d82523d6000602084013e610c12565b606091505b5050905080610c2057600080fd5b50565b610a7b83838360405180602001604052806000815250611159565b60606000610c4b83610ecc565b905060008167ffffffffffffffff811115610c6857610c68612083565b604051908082528060200260200182016040528015610c91578160200160208202803683370190505b509050600160005b8381108015610caa5750600c548211155b15610d15576000610cba83610e26565b9050866001600160a01b0316816001600160a01b03161415610d025782848381518110610ce957610ce96124a1565b602090810291909101015281610cfe816124cd565b9250505b82610d0c816124cd565b93505050610c99565b5090949350505050565b6006546001600160a01b03163314610d495760405162461bcd60e51b81526004016109459061241b565b600b55565b6006546001600160a01b03163314610d785760405162461bcd60e51b81526004016109459061241b565b8051610abd90600a906020840190611eed565b60098054610d98906123e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc4906123e0565b8015610e115780601f10610de657610100808354040283529160200191610e11565b820191906000526020600020905b815481529060010190602001808311610df457829003601f168201915b505050505081565b60088054610d98906123e0565b6000818152600260205260408120546001600160a01b0316806108385760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610945565b6006546001600160a01b03163314610ec75760405162461bcd60e51b81526004016109459061241b565b600c55565b60006001600160a01b038216610f375760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610945565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610f7d5760405162461bcd60e51b81526004016109459061241b565b610f8760006119c2565b565b6006546001600160a01b03163314610fb35760405162461bcd60e51b81526004016109459061241b565b8051610abd906008906020840190611eed565b60606001805461084d906123e0565b80600081118015610fe85750600d548111155b6110045760405162461bcd60e51b8152600401610945906124e8565b600c548161101160075490565b61101b9190612516565b11156110395760405162461bcd60e51b81526004016109459061252e565b600f5460ff161561105c5760405162461bcd60e51b81526004016109459061255c565b600f5462010000900460ff16156110b55760405162461bcd60e51b815260206004820152601760248201527f5075626c6963206e6f74207965742073746172746564210000000000000000006044820152606401610945565b81600b546110c39190612593565b3410156111085760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610945565b610abd3383611a14565b610abd338383611a51565b600a8054610d98906123e0565b6006546001600160a01b031633146111545760405162461bcd60e51b81526004016109459061241b565b600d55565b611163338361172b565b61117f5760405162461bcd60e51b815260040161094590612450565b61118b84848484611b20565b50505050565b806000811180156111a45750600d548111155b6111c05760405162461bcd60e51b8152600401610945906124e8565b600c54816111cd60075490565b6111d79190612516565b11156111f55760405162461bcd60e51b81526004016109459061252e565b600f5460ff16156112185760405162461bcd60e51b81526004016109459061255c565b600f5462010000900460ff166112655760405162461bcd60e51b81526020600482015260126024820152715468652070726573616c6520656e6465642160701b6044820152606401610945565b600e548261127260075490565b61127c9190612516565b11156112bf5760405162461bcd60e51b81526020600482015260126024820152715468652070726573616c6520656e6465642160701b6044820152606401610945565b336000908152601060205260409020546110b55760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e74006044820152606401610945565b6000818152600260205260409020546060906001600160a01b031661139a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610945565b600f54610100900460ff1661143b57600a80546113b6906123e0565b80601f01602080910402602001604051908101604052809291908181526020018280546113e2906123e0565b801561142f5780601f106114045761010080835404028352916020019161142f565b820191906000526020600020905b81548152906001019060200180831161141257829003601f168201915b50505050509050919050565b6000611445611b53565b905060008151116114655760405180602001604052806000815250611493565b8061146f84611b62565b6009604051602001611483939291906125b2565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146114c45760405162461bcd60e51b81526004016109459061241b565b600f80549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146115085760405162461bcd60e51b81526004016109459061241b565b60005b8251811015610a7b57816010600085848151811061152b5761152b6124a1565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611562906124cd565b91505061150b565b8160008111801561157d5750600d548111155b6115995760405162461bcd60e51b8152600401610945906124e8565b600c54816115a660075490565b6115b09190612516565b11156115ce5760405162461bcd60e51b81526004016109459061252e565b600f5460ff16156115f15760405162461bcd60e51b81526004016109459061255c565b6006546001600160a01b0316331461161b5760405162461bcd60e51b81526004016109459061241b565b610a7b8284611a14565b6006546001600160a01b0316331461164f5760405162461bcd60e51b81526004016109459061241b565b6001600160a01b0381166116b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610945565b610c20816119c2565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116f282610e26565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117a45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610945565b60006117af83610e26565b9050806001600160a01b0316846001600160a01b031614806117ea5750836001600160a01b03166117df846108d0565b6001600160a01b0316145b8061181a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661183582610e26565b6001600160a01b03161461189d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610945565b6001600160a01b0382166118ff5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610945565b61190a6000826116bd565b6001600160a01b0383166000908152600360205260408120805460019290611933908490612676565b90915550506001600160a01b0382166000908152600360205260408120805460019290611961908490612516565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610a7b57611a2d600780546001019055565b611a3f83611a3a60075490565b611c60565b80611a49816124cd565b915050611a17565b816001600160a01b0316836001600160a01b03161415611ab35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610945565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b2b848484611822565b611b3784848484611c7a565b61118b5760405162461bcd60e51b81526004016109459061268d565b60606008805461084d906123e0565b606081611b865750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bb05780611b9a816124cd565b9150611ba99050600a836126f5565b9150611b8a565b60008167ffffffffffffffff811115611bcb57611bcb612083565b6040519080825280601f01601f191660200182016040528015611bf5576020820181803683370190505b5090505b841561181a57611c0a600183612676565b9150611c17600a86612709565b611c22906030612516565b60f81b818381518110611c3757611c376124a1565b60200101906001600160f81b031916908160001a905350611c59600a866126f5565b9450611bf9565b610abd828260405180602001604052806000815250611d78565b60006001600160a01b0384163b15611d6d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cbe90339089908890889060040161271d565b6020604051808303816000875af1925050508015611cf9575060408051601f3d908101601f19168201909252611cf69181019061275a565b60015b611d53573d808015611d27576040519150601f19603f3d011682016040523d82523d6000602084013e611d2c565b606091505b508051611d4b5760405162461bcd60e51b81526004016109459061268d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061181a565b506001949350505050565b611d828383611dab565b611d8f6000848484611c7a565b610a7b5760405162461bcd60e51b81526004016109459061268d565b6001600160a01b038216611e015760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610945565b6000818152600260205260409020546001600160a01b031615611e665760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610945565b6001600160a01b0382166000908152600360205260408120805460019290611e8f908490612516565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ef9906123e0565b90600052602060002090601f016020900481019282611f1b5760008555611f61565b82601f10611f3457805160ff1916838001178555611f61565b82800160010185558215611f61579182015b82811115611f61578251825591602001919060010190611f46565b50611f6d929150611f71565b5090565b5b80821115611f6d5760008155600101611f72565b6001600160e01b031981168114610c2057600080fd5b600060208284031215611fae57600080fd5b813561149381611f86565b60005b83811015611fd4578181015183820152602001611fbc565b8381111561118b5750506000910152565b60008151808452611ffd816020860160208601611fb9565b601f01601f19169290920160200192915050565b6020815260006114936020830184611fe5565b60006020828403121561203657600080fd5b5035919050565b80356001600160a01b038116811461205457600080fd5b919050565b6000806040838503121561206c57600080fd5b6120758361203d565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156120c2576120c2612083565b604052919050565b600067ffffffffffffffff8311156120e4576120e4612083565b6120f7601f8401601f1916602001612099565b905082815283838301111561210b57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561213457600080fd5b813567ffffffffffffffff81111561214b57600080fd5b8201601f8101841361215c57600080fd5b61181a848235602084016120ca565b8035801515811461205457600080fd5b60006020828403121561218d57600080fd5b6114938261216b565b6000806000606084860312156121ab57600080fd5b6121b48461203d565b92506121c26020850161203d565b9150604084013590509250925092565b6000602082840312156121e457600080fd5b6114938261203d565b6020808252825182820181905260009190848201906040850190845b8181101561222557835183529284019291840191600101612209565b50909695505050505050565b6000806040838503121561224457600080fd5b61224d8361203d565b915061225b6020840161216b565b90509250929050565b6000806000806080858703121561227a57600080fd5b6122838561203d565b93506122916020860161203d565b925060408501359150606085013567ffffffffffffffff8111156122b457600080fd5b8501601f810187136122c557600080fd5b6122d4878235602084016120ca565b91505092959194509250565b600080604083850312156122f357600080fd5b823567ffffffffffffffff8082111561230b57600080fd5b818501915085601f83011261231f57600080fd5b813560208282111561233357612333612083565b8160051b9250612344818401612099565b828152928401810192818101908985111561235e57600080fd5b948201945b84861015612383576123748661203d565b82529482019490820190612363565b9997909101359750505050505050565b600080604083850312156123a657600080fd5b6123af8361203d565b915061225b6020840161203d565b600080604083850312156123d057600080fd5b8235915061225b6020840161203d565b600181811c908216806123f457607f821691505b6020821081141561241557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156124e1576124e16124b7565b5060010190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b60008219821115612529576125296124b7565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b60008160001904831182151516156125ad576125ad6124b7565b500290565b6000845160206125c58285838a01611fb9565b8551918401916125d88184848a01611fb9565b8554920191600090600181811c90808316806125f557607f831692505b85831081141561261357634e487b7160e01b85526022600452602485fd5b808015612627576001811461263857612665565b60ff19851688528388019550612665565b60008b81526020902060005b8581101561265d5781548a820152908401908801612644565b505083880195505b50939b9a5050505050505050505050565b600082821015612688576126886124b7565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612704576127046126df565b500490565b600082612718576127186126df565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061275090830184611fe5565b9695505050505050565b60006020828403121561276c57600080fd5b815161149381611f8656fea2646970667358221220368e8da1b8c6b7b3f26b5e8fd41b05c4bf1a5313aeeac2fc5c692ad1a54c1c7464736f6c634300080c0033697066733a2f2f516d5a4770504d4a78586d65754a764669443464755752574b5637446a354c6b35476537736377765a39364544792f68696464656e2e6a736f6e697066733a2f2f516d576b4b5375723764377236444e5235424347733134726f437865396b775a343963736f59766e4d39796541662f

Deployed Bytecode

0x6080604052600436106102675760003560e01c80636f8b44b011610144578063a7cd52cb116100b6578063d5abeb011161007a578063d5abeb011461070d578063e0a8085314610723578063e6f4c9cc14610743578063e985e9c514610763578063efbd73f4146107ac578063f2fde38b146107cc57600080fd5b8063a7cd52cb1461066d578063b071401b1461069a578063b88d4fde146106ba578063bf092a07146106da578063c87b56dd146106ed57600080fd5b806394354fd01161010857806394354fd0146105da57806395d89b41146105f05780639c70b51214610605578063a0712d6814610625578063a22cb46514610638578063a45ba8e71461065857600080fd5b80636f8b44b01461054757806370a0823114610567578063715018a6146105875780637ec4a6591461059c5780638da5cb5b146105bc57600080fd5b80633c952764116101dd5780634fdd43cb116101a15780634fdd43cb146104a457806351830227146104c45780635503a0e8146104e35780635c975abb146104f857806362b99ad4146105125780636352211e1461052757600080fd5b80633c952764146104025780633ccfd60b1461042257806342842e0e14610437578063438b63001461045757806344a0d68a1461048457600080fd5b806313faede61161022f57806313faede61461034157806316ba10e01461035757806316c38b3c1461037757806318160ddd1461039757806323b872dd146103ac5780633af32abf146103cc57600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb5780630fe8418b1461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004611f9c565b6107ec565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b661083e565b6040516102989190612011565b3480156102cf57600080fd5b506102e36102de366004612024565b6108d0565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612059565b61096a565b005b34801561032957600080fd5b50610333600e5481565b604051908152602001610298565b34801561034d57600080fd5b50610333600b5481565b34801561036357600080fd5b5061031b610372366004612122565b610a80565b34801561038357600080fd5b5061031b61039236600461217b565b610ac1565b3480156103a357600080fd5b50610333610afe565b3480156103b857600080fd5b5061031b6103c7366004612196565b610b0e565b3480156103d857600080fd5b506103336103e73660046121d2565b6001600160a01b031660009081526010602052604090205490565b34801561040e57600080fd5b5061031b61041d36600461217b565b610b3f565b34801561042e57600080fd5b5061031b610b85565b34801561044357600080fd5b5061031b610452366004612196565b610c23565b34801561046357600080fd5b506104776104723660046121d2565b610c3e565b60405161029891906121ed565b34801561049057600080fd5b5061031b61049f366004612024565b610d1f565b3480156104b057600080fd5b5061031b6104bf366004612122565b610d4e565b3480156104d057600080fd5b50600f5461028c90610100900460ff1681565b3480156104ef57600080fd5b506102b6610d8b565b34801561050457600080fd5b50600f5461028c9060ff1681565b34801561051e57600080fd5b506102b6610e19565b34801561053357600080fd5b506102e3610542366004612024565b610e26565b34801561055357600080fd5b5061031b610562366004612024565b610e9d565b34801561057357600080fd5b506103336105823660046121d2565b610ecc565b34801561059357600080fd5b5061031b610f53565b3480156105a857600080fd5b5061031b6105b7366004612122565b610f89565b3480156105c857600080fd5b506006546001600160a01b03166102e3565b3480156105e657600080fd5b50610333600d5481565b3480156105fc57600080fd5b506102b6610fc6565b34801561061157600080fd5b50600f5461028c9062010000900460ff1681565b61031b610633366004612024565b610fd5565b34801561064457600080fd5b5061031b610653366004612231565b611112565b34801561066457600080fd5b506102b661111d565b34801561067957600080fd5b506103336106883660046121d2565b60106020526000908152604090205481565b3480156106a657600080fd5b5061031b6106b5366004612024565b61112a565b3480156106c657600080fd5b5061031b6106d5366004612264565b611159565b61031b6106e8366004612024565b611191565b3480156106f957600080fd5b506102b6610708366004612024565b61131b565b34801561071957600080fd5b50610333600c5481565b34801561072f57600080fd5b5061031b61073e36600461217b565b61149a565b34801561074f57600080fd5b5061031b61075e3660046122e0565b6114de565b34801561076f57600080fd5b5061028c61077e366004612393565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107b857600080fd5b5061031b6107c73660046123bd565b61156a565b3480156107d857600080fd5b5061031b6107e73660046121d2565b611625565b60006001600160e01b031982166380ac58cd60e01b148061081d57506001600160e01b03198216635b5e139f60e01b145b8061083857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461084d906123e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610879906123e0565b80156108c65780601f1061089b576101008083540402835291602001916108c6565b820191906000526020600020905b8154815290600101906020018083116108a957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661094e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061097582610e26565b9050806001600160a01b0316836001600160a01b031614156109e35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610945565b336001600160a01b03821614806109ff57506109ff813361077e565b610a715760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610945565b610a7b83836116bd565b505050565b6006546001600160a01b03163314610aaa5760405162461bcd60e51b81526004016109459061241b565b8051610abd906009906020840190611eed565b5050565b6006546001600160a01b03163314610aeb5760405162461bcd60e51b81526004016109459061241b565b600f805460ff1916911515919091179055565b6000610b0960075490565b905090565b610b18338261172b565b610b345760405162461bcd60e51b815260040161094590612450565b610a7b838383611822565b6006546001600160a01b03163314610b695760405162461bcd60e51b81526004016109459061241b565b600f8054911515620100000262ff000019909216919091179055565b6006546001600160a01b03163314610baf5760405162461bcd60e51b81526004016109459061241b565b6000610bc36006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c0d576040519150601f19603f3d011682016040523d82523d6000602084013e610c12565b606091505b5050905080610c2057600080fd5b50565b610a7b83838360405180602001604052806000815250611159565b60606000610c4b83610ecc565b905060008167ffffffffffffffff811115610c6857610c68612083565b604051908082528060200260200182016040528015610c91578160200160208202803683370190505b509050600160005b8381108015610caa5750600c548211155b15610d15576000610cba83610e26565b9050866001600160a01b0316816001600160a01b03161415610d025782848381518110610ce957610ce96124a1565b602090810291909101015281610cfe816124cd565b9250505b82610d0c816124cd565b93505050610c99565b5090949350505050565b6006546001600160a01b03163314610d495760405162461bcd60e51b81526004016109459061241b565b600b55565b6006546001600160a01b03163314610d785760405162461bcd60e51b81526004016109459061241b565b8051610abd90600a906020840190611eed565b60098054610d98906123e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc4906123e0565b8015610e115780601f10610de657610100808354040283529160200191610e11565b820191906000526020600020905b815481529060010190602001808311610df457829003601f168201915b505050505081565b60088054610d98906123e0565b6000818152600260205260408120546001600160a01b0316806108385760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610945565b6006546001600160a01b03163314610ec75760405162461bcd60e51b81526004016109459061241b565b600c55565b60006001600160a01b038216610f375760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610945565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610f7d5760405162461bcd60e51b81526004016109459061241b565b610f8760006119c2565b565b6006546001600160a01b03163314610fb35760405162461bcd60e51b81526004016109459061241b565b8051610abd906008906020840190611eed565b60606001805461084d906123e0565b80600081118015610fe85750600d548111155b6110045760405162461bcd60e51b8152600401610945906124e8565b600c548161101160075490565b61101b9190612516565b11156110395760405162461bcd60e51b81526004016109459061252e565b600f5460ff161561105c5760405162461bcd60e51b81526004016109459061255c565b600f5462010000900460ff16156110b55760405162461bcd60e51b815260206004820152601760248201527f5075626c6963206e6f74207965742073746172746564210000000000000000006044820152606401610945565b81600b546110c39190612593565b3410156111085760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610945565b610abd3383611a14565b610abd338383611a51565b600a8054610d98906123e0565b6006546001600160a01b031633146111545760405162461bcd60e51b81526004016109459061241b565b600d55565b611163338361172b565b61117f5760405162461bcd60e51b815260040161094590612450565b61118b84848484611b20565b50505050565b806000811180156111a45750600d548111155b6111c05760405162461bcd60e51b8152600401610945906124e8565b600c54816111cd60075490565b6111d79190612516565b11156111f55760405162461bcd60e51b81526004016109459061252e565b600f5460ff16156112185760405162461bcd60e51b81526004016109459061255c565b600f5462010000900460ff166112655760405162461bcd60e51b81526020600482015260126024820152715468652070726573616c6520656e6465642160701b6044820152606401610945565b600e548261127260075490565b61127c9190612516565b11156112bf5760405162461bcd60e51b81526020600482015260126024820152715468652070726573616c6520656e6465642160701b6044820152606401610945565b336000908152601060205260409020546110b55760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e74006044820152606401610945565b6000818152600260205260409020546060906001600160a01b031661139a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610945565b600f54610100900460ff1661143b57600a80546113b6906123e0565b80601f01602080910402602001604051908101604052809291908181526020018280546113e2906123e0565b801561142f5780601f106114045761010080835404028352916020019161142f565b820191906000526020600020905b81548152906001019060200180831161141257829003601f168201915b50505050509050919050565b6000611445611b53565b905060008151116114655760405180602001604052806000815250611493565b8061146f84611b62565b6009604051602001611483939291906125b2565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146114c45760405162461bcd60e51b81526004016109459061241b565b600f80549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146115085760405162461bcd60e51b81526004016109459061241b565b60005b8251811015610a7b57816010600085848151811061152b5761152b6124a1565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611562906124cd565b91505061150b565b8160008111801561157d5750600d548111155b6115995760405162461bcd60e51b8152600401610945906124e8565b600c54816115a660075490565b6115b09190612516565b11156115ce5760405162461bcd60e51b81526004016109459061252e565b600f5460ff16156115f15760405162461bcd60e51b81526004016109459061255c565b6006546001600160a01b0316331461161b5760405162461bcd60e51b81526004016109459061241b565b610a7b8284611a14565b6006546001600160a01b0316331461164f5760405162461bcd60e51b81526004016109459061241b565b6001600160a01b0381166116b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610945565b610c20816119c2565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116f282610e26565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117a45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610945565b60006117af83610e26565b9050806001600160a01b0316846001600160a01b031614806117ea5750836001600160a01b03166117df846108d0565b6001600160a01b0316145b8061181a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661183582610e26565b6001600160a01b03161461189d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610945565b6001600160a01b0382166118ff5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610945565b61190a6000826116bd565b6001600160a01b0383166000908152600360205260408120805460019290611933908490612676565b90915550506001600160a01b0382166000908152600360205260408120805460019290611961908490612516565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610a7b57611a2d600780546001019055565b611a3f83611a3a60075490565b611c60565b80611a49816124cd565b915050611a17565b816001600160a01b0316836001600160a01b03161415611ab35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610945565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b2b848484611822565b611b3784848484611c7a565b61118b5760405162461bcd60e51b81526004016109459061268d565b60606008805461084d906123e0565b606081611b865750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bb05780611b9a816124cd565b9150611ba99050600a836126f5565b9150611b8a565b60008167ffffffffffffffff811115611bcb57611bcb612083565b6040519080825280601f01601f191660200182016040528015611bf5576020820181803683370190505b5090505b841561181a57611c0a600183612676565b9150611c17600a86612709565b611c22906030612516565b60f81b818381518110611c3757611c376124a1565b60200101906001600160f81b031916908160001a905350611c59600a866126f5565b9450611bf9565b610abd828260405180602001604052806000815250611d78565b60006001600160a01b0384163b15611d6d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cbe90339089908890889060040161271d565b6020604051808303816000875af1925050508015611cf9575060408051601f3d908101601f19168201909252611cf69181019061275a565b60015b611d53573d808015611d27576040519150601f19603f3d011682016040523d82523d6000602084013e611d2c565b606091505b508051611d4b5760405162461bcd60e51b81526004016109459061268d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061181a565b506001949350505050565b611d828383611dab565b611d8f6000848484611c7a565b610a7b5760405162461bcd60e51b81526004016109459061268d565b6001600160a01b038216611e015760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610945565b6000818152600260205260409020546001600160a01b031615611e665760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610945565b6001600160a01b0382166000908152600360205260408120805460019290611e8f908490612516565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ef9906123e0565b90600052602060002090601f016020900481019282611f1b5760008555611f61565b82601f10611f3457805160ff1916838001178555611f61565b82800160010185558215611f61579182015b82811115611f61578251825591602001919060010190611f46565b50611f6d929150611f71565b5090565b5b80821115611f6d5760008155600101611f72565b6001600160e01b031981168114610c2057600080fd5b600060208284031215611fae57600080fd5b813561149381611f86565b60005b83811015611fd4578181015183820152602001611fbc565b8381111561118b5750506000910152565b60008151808452611ffd816020860160208601611fb9565b601f01601f19169290920160200192915050565b6020815260006114936020830184611fe5565b60006020828403121561203657600080fd5b5035919050565b80356001600160a01b038116811461205457600080fd5b919050565b6000806040838503121561206c57600080fd5b6120758361203d565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156120c2576120c2612083565b604052919050565b600067ffffffffffffffff8311156120e4576120e4612083565b6120f7601f8401601f1916602001612099565b905082815283838301111561210b57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561213457600080fd5b813567ffffffffffffffff81111561214b57600080fd5b8201601f8101841361215c57600080fd5b61181a848235602084016120ca565b8035801515811461205457600080fd5b60006020828403121561218d57600080fd5b6114938261216b565b6000806000606084860312156121ab57600080fd5b6121b48461203d565b92506121c26020850161203d565b9150604084013590509250925092565b6000602082840312156121e457600080fd5b6114938261203d565b6020808252825182820181905260009190848201906040850190845b8181101561222557835183529284019291840191600101612209565b50909695505050505050565b6000806040838503121561224457600080fd5b61224d8361203d565b915061225b6020840161216b565b90509250929050565b6000806000806080858703121561227a57600080fd5b6122838561203d565b93506122916020860161203d565b925060408501359150606085013567ffffffffffffffff8111156122b457600080fd5b8501601f810187136122c557600080fd5b6122d4878235602084016120ca565b91505092959194509250565b600080604083850312156122f357600080fd5b823567ffffffffffffffff8082111561230b57600080fd5b818501915085601f83011261231f57600080fd5b813560208282111561233357612333612083565b8160051b9250612344818401612099565b828152928401810192818101908985111561235e57600080fd5b948201945b84861015612383576123748661203d565b82529482019490820190612363565b9997909101359750505050505050565b600080604083850312156123a657600080fd5b6123af8361203d565b915061225b6020840161203d565b600080604083850312156123d057600080fd5b8235915061225b6020840161203d565b600181811c908216806123f457607f821691505b6020821081141561241557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156124e1576124e16124b7565b5060010190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b60008219821115612529576125296124b7565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b60008160001904831182151516156125ad576125ad6124b7565b500290565b6000845160206125c58285838a01611fb9565b8551918401916125d88184848a01611fb9565b8554920191600090600181811c90808316806125f557607f831692505b85831081141561261357634e487b7160e01b85526022600452602485fd5b808015612627576001811461263857612665565b60ff19851688528388019550612665565b60008b81526020902060005b8581101561265d5781548a820152908401908801612644565b505083880195505b50939b9a5050505050505050505050565b600082821015612688576126886124b7565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612704576127046126df565b500490565b600082612718576127186126df565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061275090830184611fe5565b9695505050505050565b60006020828403121561276c57600080fd5b815161149381611f8656fea2646970667358221220368e8da1b8c6b7b3f26b5e8fd41b05c4bf1a5313aeeac2fc5c692ad1a54c1c7464736f6c634300080c0033

Deployed Bytecode Sourcemap

37769:4877:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25267:305;;;;;;;;;;-1:-1:-1;25267:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25267:305:0;;;;;;;;26212:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27771:221::-;;;;;;;;;;-1:-1:-1;27771:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;27771:221:0;1528:203:1;27294:411:0;;;;;;;;;;-1:-1:-1;27294:411:0;;;;;:::i;:::-;;:::i;:::-;;38207:27;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;38207:27:0;2173:177:1;38091:32:0;;;;;;;;;;;;;;;;41997:100;;;;;;;;;;-1:-1:-1;41997:100:0;;;;;:::i;:::-;;:::i;42103:77::-;;;;;;;;;;-1:-1:-1;42103:77:0;;;;;:::i;:::-;;:::i;38836:89::-;;;;;;;;;;;;;:::i;28521:339::-;;;;;;;;;;-1:-1:-1;28521:339:0;;;;;:::i;:::-;;:::i;39607:113::-;;;;;;;;;;-1:-1:-1;39607:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;39695:19:0;39669:7;39695:19;;;:9;:19;;;;;;;39607:113;41297:95;;;;;;;;;;-1:-1:-1;41297:95:0;;;;;:::i;:::-;;:::i;42186:137::-;;;;;;;;;;;;;:::i;28931:185::-;;;;;;;;;;-1:-1:-1;28931:185:0;;;;;:::i;:::-;;:::i;39889:635::-;;;;;;;;;;-1:-1:-1;39889:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41117:74::-;;;;;;;;;;-1:-1:-1;41117:74:0;;;;;:::i;:::-;;:::i;41753:132::-;;;;;;;;;;-1:-1:-1;41753:132:0;;;;;:::i;:::-;;:::i;38271:27::-;;;;;;;;;;-1:-1:-1;38271:27:0;;;;;;;;;;;38013:33;;;;;;;;;;;;;:::i;38241:25::-;;;;;;;;;;-1:-1:-1;38241:25:0;;;;;;;;37926:82;;;;;;;;;;;;;:::i;25906:239::-;;;;;;;;;;-1:-1:-1;25906:239:0;;;;;:::i;:::-;;:::i;41197:94::-;;;;;;;;;;-1:-1:-1;41197:94:0;;;;;:::i;:::-;;:::i;25636:208::-;;;;;;;;;;-1:-1:-1;25636:208:0;;;;;:::i;:::-;;:::i;6255:103::-;;;;;;;;;;;;;:::i;41891:100::-;;;;;;;;;;-1:-1:-1;41891:100:0;;;;;:::i;:::-;;:::i;5604:87::-;;;;;;;;;;-1:-1:-1;5677:6:0;;-1:-1:-1;;;;;5677:6:0;5604:87;;38164:38;;;;;;;;;;;;;;;;26381:104;;;;;;;;;;;;;:::i;38303:35::-;;;;;;;;;;-1:-1:-1;38303:35:0;;;;;;;;;;;38931:256;;;;;;:::i;:::-;;:::i;28064:155::-;;;;;;;;;;-1:-1:-1;28064:155:0;;;;;:::i;:::-;;:::i;38051:31::-;;;;;;;;;;;;;:::i;38343:44::-;;;;;;;;;;-1:-1:-1;38343:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;41617:130;;;;;;;;;;-1:-1:-1;41617:130:0;;;;;:::i;:::-;;:::i;29187:328::-;;;;;;;;;;-1:-1:-1;29187:328:0;;;;;:::i;:::-;;:::i;39193:408::-;;;;;;:::i;:::-;;:::i;40530:494::-;;;;;;;;;;-1:-1:-1;40530:494:0;;;;;:::i;:::-;;:::i;38128:31::-;;;;;;;;;;;;;;;;41030:81;;;;;;;;;;-1:-1:-1;41030:81:0;;;;;:::i;:::-;;:::i;41400:211::-;;;;;;;;;;-1:-1:-1;41400:211:0;;;;;:::i;:::-;;:::i;28290:164::-;;;;;;;;;;-1:-1:-1;28290:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28411:25:0;;;28387:4;28411:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28290:164;39728:155;;;;;;;;;;-1:-1:-1;39728:155:0;;;;;:::i;:::-;;:::i;6513:201::-;;;;;;;;;;-1:-1:-1;6513:201:0;;;;;:::i;:::-;;:::i;25267:305::-;25369:4;-1:-1:-1;;;;;;25406:40:0;;-1:-1:-1;;;25406:40:0;;:105;;-1:-1:-1;;;;;;;25463:48:0;;-1:-1:-1;;;25463:48:0;25406:105;:158;;;-1:-1:-1;;;;;;;;;;18145:40:0;;;25528:36;25386:178;25267:305;-1:-1:-1;;25267:305:0:o;26212:100::-;26266:13;26299:5;26292:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26212:100;:::o;27771:221::-;27847:7;31114:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31114:16:0;27867:73;;;;-1:-1:-1;;;27867:73:0;;8215:2:1;27867:73:0;;;8197:21:1;8254:2;8234:18;;;8227:30;8293:34;8273:18;;;8266:62;-1:-1:-1;;;8344:18:1;;;8337:42;8396:19;;27867:73:0;;;;;;;;;-1:-1:-1;27960:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27960:24:0;;27771:221::o;27294:411::-;27375:13;27391:23;27406:7;27391:14;:23::i;:::-;27375:39;;27439:5;-1:-1:-1;;;;;27433:11:0;:2;-1:-1:-1;;;;;27433:11:0;;;27425:57;;;;-1:-1:-1;;;27425:57:0;;8628:2:1;27425:57:0;;;8610:21:1;8667:2;8647:18;;;8640:30;8706:34;8686:18;;;8679:62;-1:-1:-1;;;8757:18:1;;;8750:31;8798:19;;27425:57:0;8426:397:1;27425:57:0;4408:10;-1:-1:-1;;;;;27517:21:0;;;;:62;;-1:-1:-1;27542:37:0;27559:5;4408:10;28290:164;:::i;27542:37::-;27495:168;;;;-1:-1:-1;;;27495:168:0;;9030:2:1;27495:168:0;;;9012:21:1;9069:2;9049:18;;;9042:30;9108:34;9088:18;;;9081:62;9179:26;9159:18;;;9152:54;9223:19;;27495:168:0;8828:420:1;27495:168:0;27676:21;27685:2;27689:7;27676:8;:21::i;:::-;27364:341;27294:411;;:::o;41997:100::-;5677:6;;-1:-1:-1;;;;;5677:6:0;4408:10;5824:23;5816:68;;;;-1:-1:-1;;;5816:68:0;;;;;;;:::i;:::-;42069:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41997:100:::0;:::o;42103:77::-;5677:6;;-1:-1:-1;;;;;5677:6:0;4408:10;5824:23;5816:68;;;;-1:-1:-1;;;5816:68:0;;;;;;;:::i;:::-;42159:6:::1;:15:::0;;-1:-1:-1;;42159:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42103:77::o;38836:89::-;38880:7;38903:16;:6;1024:14;;932:114;38903:16;38896:23;;38836:89;:::o;28521:339::-;28716:41;4408:10;28749:7;28716:18;:41::i;:::-;28708:103;;;;-1:-1:-1;;;28708:103:0;;;;;;;:::i;:::-;28824:28;28834:4;28840:2;28844:7;28824:9;:28::i;41297:95::-;5677:6;;-1:-1:-1;;;;;5677:6:0;4408:10;5824:23;5816:68;;;;-1:-1:-1;;;5816:68:0;;;;;;;:::i;:::-;41362:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;41362:24:0;;::::1;::::0;;;::::1;::::0;;41297:95::o;42186:137::-;5677:6;;-1:-1:-1;;;;;5677:6:0;4408:10;5824:23;5816:68;;;;-1:-1:-1;;;5816:68:0;;;;;;;:::i;:::-;42231:7:::1;42252;5677:6:::0;;-1:-1:-1;;;;;5677:6:0;;5604:87;42252:7:::1;-1:-1:-1::0;;;;;42244:21:0::1;42273;42244:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42230:69;;;42314:2;42306:11;;;::::0;::::1;;42223:100;42186:137::o:0;28931:185::-;29069:39;29086:4;29092:2;29096:7;29069:39;;;;;;;;;;;;:16;:39::i;39889:635::-;39964:16;39992:23;40018:17;40028:6;40018:9;:17::i;:::-;39992:43;;40042:30;40089:15;40075:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40075:30:0;-1:-1:-1;40042:63:0;-1:-1:-1;40137:1:0;40112:22;40181:309;40206:15;40188;:33;:64;;;;;40243:9;;40225:14;:27;;40188:64;40181:309;;;40263:25;40291:23;40299:14;40291:7;:23::i;:::-;40263:51;;40350:6;-1:-1:-1;;;;;40329:27:0;:17;-1:-1:-1;;;;;40329:27:0;;40325:131;;;40402:14;40369:13;40383:15;40369:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;40429:17;;;;:::i;:::-;;;;40325:131;40466:16;;;;:::i;:::-;;;;40254:236;40181:309;;;-1:-1:-1;40505:13:0;;39889:635;-1:-1:-1;;;;39889:635:0:o;41117:74::-;5677:6;;-1:-1:-1;;;;;5677:6:0;4408:10;5824:23;5816:68;;;;-1:-1:-1;;;5816:68:0;;;;;;;:::i;:::-;41173:4:::1;:12:::0;41117:74::o;41753:132::-;5677:6;;-1:-1:-1;;;;;5677:6:0;4408:10;5824:23;5816:68;;;;-1:-1:-1;;;5816:68:0;;;;;;;:::i;:::-;41841:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;38013:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37926:82::-;;;;;;;:::i;25906:239::-;25978:7;26014:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26014:16:0;26049:19;26041:73;;;;-1:-1:-1;;;26041:73:0;;10848:2:1;26041:73:0;;;10830:21:1;10887:2;10867:18;;;10860:30;10926:34;10906:18;;;10899:62;-1:-1:-1;;;10977:18:1;;;10970:39;11026:19;;26041:73:0;10646:405:1;41197:94:0;5677:6;;-1:-1:-1;;;;;5677:6:0;4408:10;5824:23;5816:68;;;;-1:-1:-1;;;5816:68:0;;;;;;;:::i;:::-;41263:9:::1;:22:::0;41197:94::o;25636:208::-;25708:7;-1:-1:-1;;;;;25736:19:0;;25728:74;;;;-1:-1:-1;;;25728:74:0;;11258:2:1;25728:74:0;;;11240:21:1;11297:2;11277:18;;;11270:30;11336:34;11316:18;;;11309:62;-1:-1:-1;;;11387:18:1;;;11380:40;11437:19;;25728:74:0;11056:406:1;25728:74:0;-1:-1:-1;;;;;;25820:16:0;;;;;:9;:16;;;;;;;25636:208::o;6255:103::-;5677:6;;-1:-1:-1;;;;;5677:6:0;4408:10;5824:23;5816:68;;;;-1:-1:-1;;;5816:68:0;;;;;;;:::i;:::-;6320:30:::1;6347:1;6320:18;:30::i;:::-;6255:103::o:0;41891:100::-;5677:6;;-1:-1:-1;;;;;5677:6:0;4408:10;5824:23;5816:68;;;;-1:-1:-1;;;5816:68:0;;;;;;;:::i;:::-;41963:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;26381:104::-:0;26437:13;26470:7;26463:14;;;;;:::i;38931:256::-;38996:11;38620:1;38606:11;:15;:52;;;;;38640:18;;38625:11;:33;;38606:52;38598:85;;;;-1:-1:-1;;;38598:85:0;;;;;;;:::i;:::-;38732:9;;38717:11;38698:16;:6;1024:14;;932:114;38698:16;:30;;;;:::i;:::-;:43;;38690:76;;;;-1:-1:-1;;;38690:76:0;;;;;;;:::i;:::-;38782:6;;;;38781:7;38773:43;;;;-1:-1:-1;;;38773:43:0;;;;;;;:::i;:::-;39025:15:::1;::::0;;;::::1;;;39024:16;39016:52;;;::::0;-1:-1:-1;;;39016:52:0;;12852:2:1;39016:52:0::1;::::0;::::1;12834:21:1::0;12891:2;12871:18;;;12864:30;12930:25;12910:18;;;12903:53;12973:18;;39016:52:0::1;12650:347:1::0;39016:52:0::1;39103:11;39096:4;;:18;;;;:::i;:::-;39083:9;:31;;39075:63;;;::::0;-1:-1:-1;;;39075:63:0;;13377:2:1;39075:63:0::1;::::0;::::1;13359:21:1::0;13416:2;13396:18;;;13389:30;-1:-1:-1;;;13435:18:1;;;13428:49;13494:18;;39075:63:0::1;13175:343:1::0;39075:63:0::1;39147:34;39157:10;39169:11;39147:9;:34::i;28064:155::-:0;28159:52;4408:10;28192:8;28202;28159:18;:52::i;38051:31::-;;;;;;;:::i;41617:130::-;5677:6;;-1:-1:-1;;;;;5677:6:0;4408:10;5824:23;5816:68;;;;-1:-1:-1;;;5816:68:0;;;;;;;:::i;:::-;41701:18:::1;:40:::0;41617:130::o;29187:328::-;29362:41;4408:10;29395:7;29362:18;:41::i;:::-;29354:103;;;;-1:-1:-1;;;29354:103:0;;;;;;;:::i;:::-;29468:39;29482:4;29488:2;29492:7;29501:5;29468:13;:39::i;:::-;29187:328;;;;:::o;39193:408::-;39260:11;38620:1;38606:11;:15;:52;;;;;38640:18;;38625:11;:33;;38606:52;38598:85;;;;-1:-1:-1;;;38598:85:0;;;;;;;:::i;:::-;38732:9;;38717:11;38698:16;:6;1024:14;;932:114;38698:16;:30;;;;:::i;:::-;:43;;38690:76;;;;-1:-1:-1;;;38690:76:0;;;;;;;:::i;:::-;38782:6;;;;38781:7;38773:43;;;;-1:-1:-1;;;38773:43:0;;;;;;;:::i;:::-;39288:15:::1;::::0;;;::::1;;;39280:46;;;::::0;-1:-1:-1;;;39280:46:0;;13725:2:1;39280:46:0::1;::::0;::::1;13707:21:1::0;13764:2;13744:18;;;13737:30;-1:-1:-1;;;13783:18:1;;;13776:48;13841:18;;39280:46:0::1;13523:342:1::0;39280:46:0::1;39375:8;;39360:11;39341:16;:6;1024:14:::0;;932:114;39341:16:::1;:30;;;;:::i;:::-;:42;;39333:73;;;::::0;-1:-1:-1;;;39333:73:0;;13725:2:1;39333:73:0::1;::::0;::::1;13707:21:1::0;13764:2;13744:18;;;13737:30;-1:-1:-1;;;13783:18:1;;;13776:48;13841:18;;39333:73:0::1;13523:342:1::0;39333:73:0::1;39431:10;39445:1;39421:21:::0;;;:9:::1;:21;::::0;;;;;39413:69:::1;;;::::0;-1:-1:-1;;;39413:69:0;;14072:2:1;39413:69:0::1;::::0;::::1;14054:21:1::0;14111:2;14091:18;;;14084:30;14150:33;14130:18;;;14123:61;14201:18;;39413:69:0::1;13870:355:1::0;40530:494:0;31090:4;31114:16;;;:7;:16;;;;;;40629:13;;-1:-1:-1;;;;;31114:16:0;40654:98;;;;-1:-1:-1;;;40654:98:0;;14432:2:1;40654:98:0;;;14414:21:1;14471:2;14451:18;;;14444:30;14510:34;14490:18;;;14483:62;-1:-1:-1;;;14561:18:1;;;14554:45;14616:19;;40654:98:0;14230:411:1;40654:98:0;40765:8;;;;;;;40761:64;;40800:17;40793:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40530:494;;;:::o;40761:64::-;40833:28;40864:10;:8;:10::i;:::-;40833:41;;40919:1;40894:14;40888:28;:32;:130;;;;;;;;;;;;;;;;;40956:14;40972:19;:8;:17;:19::i;:::-;40993:9;40939:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40888:130;40881:137;40530:494;-1:-1:-1;;;40530:494:0:o;41030:81::-;5677:6;;-1:-1:-1;;;;;5677:6:0;4408:10;5824:23;5816:68;;;;-1:-1:-1;;;5816:68:0;;;;;;;:::i;:::-;41088:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;41088:17:0;;::::1;::::0;;;::::1;::::0;;41030:81::o;41400:211::-;5677:6;;-1:-1:-1;;;;;5677:6:0;4408:10;5824:23;5816:68;;;;-1:-1:-1;;;5816:68:0;;;;;;;:::i;:::-;41513:9:::1;41508:98;41532:9;:16;41528:1;:20;41508:98;;;41590:8;41564:9;:23;41574:9;41584:1;41574:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;41564:23:0::1;-1:-1:-1::0;;;;;41564:23:0::1;;;;;;;;;;;;:34;;;;41550:3;;;;;:::i;:::-;;;;41508:98;;39728:155:::0;39814:11;38620:1;38606:11;:15;:52;;;;;38640:18;;38625:11;:33;;38606:52;38598:85;;;;-1:-1:-1;;;38598:85:0;;;;;;;:::i;:::-;38732:9;;38717:11;38698:16;:6;1024:14;;932:114;38698:16;:30;;;;:::i;:::-;:43;;38690:76;;;;-1:-1:-1;;;38690:76:0;;;;;;;:::i;:::-;38782:6;;;;38781:7;38773:43;;;;-1:-1:-1;;;38773:43:0;;;;;;;:::i;:::-;5677:6;;-1:-1:-1;;;;;5677:6:0;4408:10;5824:23:::1;5816:68;;;;-1:-1:-1::0;;;5816:68:0::1;;;;;;;:::i;:::-;39844:33:::2;39854:9;39865:11;39844:9;:33::i;6513:201::-:0;5677:6;;-1:-1:-1;;;;;5677:6:0;4408:10;5824:23;5816:68;;;;-1:-1:-1;;;5816:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6602:22:0;::::1;6594:73;;;::::0;-1:-1:-1;;;6594:73:0;;16506:2:1;6594:73:0::1;::::0;::::1;16488:21:1::0;16545:2;16525:18;;;16518:30;16584:34;16564:18;;;16557:62;-1:-1:-1;;;16635:18:1;;;16628:36;16681:19;;6594:73:0::1;16304:402:1::0;6594:73:0::1;6678:28;6697:8;6678:18;:28::i;35007:174::-:0;35082:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35082:29:0;-1:-1:-1;;;;;35082:29:0;;;;;;;;:24;;35136:23;35082:24;35136:14;:23::i;:::-;-1:-1:-1;;;;;35127:46:0;;;;;;;;;;;35007:174;;:::o;31319:348::-;31412:4;31114:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31114:16:0;31429:73;;;;-1:-1:-1;;;31429:73:0;;16913:2:1;31429:73:0;;;16895:21:1;16952:2;16932:18;;;16925:30;16991:34;16971:18;;;16964:62;-1:-1:-1;;;17042:18:1;;;17035:42;17094:19;;31429:73:0;16711:408:1;31429:73:0;31513:13;31529:23;31544:7;31529:14;:23::i;:::-;31513:39;;31582:5;-1:-1:-1;;;;;31571:16:0;:7;-1:-1:-1;;;;;31571:16:0;;:51;;;;31615:7;-1:-1:-1;;;;;31591:31:0;:20;31603:7;31591:11;:20::i;:::-;-1:-1:-1;;;;;31591:31:0;;31571:51;:87;;;-1:-1:-1;;;;;;28411:25:0;;;28387:4;28411:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31626:32;31563:96;31319:348;-1:-1:-1;;;;31319:348:0:o;34311:578::-;34470:4;-1:-1:-1;;;;;34443:31:0;:23;34458:7;34443:14;:23::i;:::-;-1:-1:-1;;;;;34443:31:0;;34435:85;;;;-1:-1:-1;;;34435:85:0;;17326:2:1;34435:85:0;;;17308:21:1;17365:2;17345:18;;;17338:30;17404:34;17384:18;;;17377:62;-1:-1:-1;;;17455:18:1;;;17448:39;17504:19;;34435:85:0;17124:405:1;34435:85:0;-1:-1:-1;;;;;34539:16:0;;34531:65;;;;-1:-1:-1;;;34531:65:0;;17736:2:1;34531:65:0;;;17718:21:1;17775:2;17755:18;;;17748:30;17814:34;17794:18;;;17787:62;-1:-1:-1;;;17865:18:1;;;17858:34;17909:19;;34531:65:0;17534:400:1;34531:65:0;34713:29;34730:1;34734:7;34713:8;:29::i;:::-;-1:-1:-1;;;;;34755:15:0;;;;;;:9;:15;;;;;:20;;34774:1;;34755:15;:20;;34774:1;;34755:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34786:13:0;;;;;;:9;:13;;;;;:18;;34803:1;;34786:13;:18;;34803:1;;34786:18;:::i;:::-;;;;-1:-1:-1;;34815:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34815:21:0;-1:-1:-1;;;;;34815:21:0;;;;;;;;;34854:27;;34815:16;;34854:27;;;;;;;34311:578;;;:::o;6874:191::-;6967:6;;;-1:-1:-1;;;;;6984:17:0;;;-1:-1:-1;;;;;;6984:17:0;;;;;;;7017:40;;6967:6;;;6984:17;6967:6;;7017:40;;6948:16;;7017:40;6937:128;6874:191;:::o;42329:204::-;42409:9;42404:124;42428:11;42424:1;:15;42404:124;;;42455:18;:6;1143:19;;1161:1;1143:19;;;1054:127;42455:18;42482:38;42492:9;42503:16;:6;1024:14;;932:114;42503:16;42482:9;:38::i;:::-;42441:3;;;;:::i;:::-;;;;42404:124;;35323:315;35478:8;-1:-1:-1;;;;;35469:17:0;:5;-1:-1:-1;;;;;35469:17:0;;;35461:55;;;;-1:-1:-1;;;35461:55:0;;18271:2:1;35461:55:0;;;18253:21:1;18310:2;18290:18;;;18283:30;18349:27;18329:18;;;18322:55;18394:18;;35461:55:0;18069:349:1;35461:55:0;-1:-1:-1;;;;;35527:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35527:46:0;;;;;;;;;;35589:41;;540::1;;;35589::0;;513:18:1;35589:41:0;;;;;;;35323:315;;;:::o;30397:::-;30554:28;30564:4;30570:2;30574:7;30554:9;:28::i;:::-;30601:48;30624:4;30630:2;30634:7;30643:5;30601:22;:48::i;:::-;30593:111;;;;-1:-1:-1;;;30593:111:0;;;;;;;:::i;42539:104::-;42599:13;42628:9;42621:16;;;;;:::i;1890:723::-;1946:13;2167:10;2163:53;;-1:-1:-1;;2194:10:0;;;;;;;;;;;;-1:-1:-1;;;2194:10:0;;;;;1890:723::o;2163:53::-;2241:5;2226:12;2282:78;2289:9;;2282:78;;2315:8;;;;:::i;:::-;;-1:-1:-1;2338:10:0;;-1:-1:-1;2346:2:0;2338:10;;:::i;:::-;;;2282:78;;;2370:19;2402:6;2392:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2392:17:0;;2370:39;;2420:154;2427:10;;2420:154;;2454:11;2464:1;2454:11;;:::i;:::-;;-1:-1:-1;2523:10:0;2531:2;2523:5;:10;:::i;:::-;2510:24;;:2;:24;:::i;:::-;2497:39;;2480:6;2487;2480:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2480:56:0;;;;;;;;-1:-1:-1;2551:11:0;2560:2;2551:11;;:::i;:::-;;;2420:154;;32009:110;32085:26;32095:2;32099:7;32085:26;;;;;;;;;;;;:9;:26::i;36203:799::-;36358:4;-1:-1:-1;;;;;36379:13:0;;8215:20;8263:8;36375:620;;36415:72;;-1:-1:-1;;;36415:72:0;;-1:-1:-1;;;;;36415:36:0;;;;;:72;;4408:10;;36466:4;;36472:7;;36481:5;;36415:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36415:72:0;;;;;;;;-1:-1:-1;;36415:72:0;;;;;;;;;;;;:::i;:::-;;;36411:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36657:13:0;;36653:272;;36700:60;;-1:-1:-1;;;36700:60:0;;;;;;;:::i;36653:272::-;36875:6;36869:13;36860:6;36856:2;36852:15;36845:38;36411:529;-1:-1:-1;;;;;;36538:51:0;-1:-1:-1;;;36538:51:0;;-1:-1:-1;36531:58:0;;36375:620;-1:-1:-1;36979:4:0;36203:799;;;;;;:::o;32346:321::-;32476:18;32482:2;32486:7;32476:5;:18::i;:::-;32527:54;32558:1;32562:2;32566:7;32575:5;32527:22;:54::i;:::-;32505:154;;;;-1:-1:-1;;;32505:154:0;;;;;;;:::i;33003:382::-;-1:-1:-1;;;;;33083:16:0;;33075:61;;;;-1:-1:-1;;;33075:61:0;;20166:2:1;33075:61:0;;;20148:21:1;;;20185:18;;;20178:30;20244:34;20224:18;;;20217:62;20296:18;;33075:61:0;19964:356:1;33075:61:0;31090:4;31114:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31114:16:0;:30;33147:58;;;;-1:-1:-1;;;33147:58:0;;20527:2:1;33147:58:0;;;20509:21:1;20566:2;20546:18;;;20539:30;20605;20585:18;;;20578:58;20653:18;;33147:58:0;20325:352:1;33147:58:0;-1:-1:-1;;;;;33276:13:0;;;;;;:9;:13;;;;;:18;;33293:1;;33276:13;:18;;33293:1;;33276:18;:::i;:::-;;;;-1:-1:-1;;33305:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33305:21:0;-1:-1:-1;;;;;33305:21:0;;;;;;;;33344:33;;33305:16;;;33344:33;;33305:16;;33344:33;33003:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:275;2558:2;2552:9;2623:2;2604:13;;-1:-1:-1;;2600:27:1;2588:40;;2658:18;2643:34;;2679:22;;;2640:62;2637:88;;;2705:18;;:::i;:::-;2741:2;2734:22;2487:275;;-1:-1:-1;2487:275:1:o;2767:407::-;2832:5;2866:18;2858:6;2855:30;2852:56;;;2888:18;;:::i;:::-;2926:57;2971:2;2950:15;;-1:-1:-1;;2946:29:1;2977:4;2942:40;2926:57;:::i;:::-;2917:66;;3006:6;2999:5;2992:21;3046:3;3037:6;3032:3;3028:16;3025:25;3022:45;;;3063:1;3060;3053:12;3022:45;3112:6;3107:3;3100:4;3093:5;3089:16;3076:43;3166:1;3159:4;3150:6;3143:5;3139:18;3135:29;3128:40;2767:407;;;;;:::o;3179:451::-;3248:6;3301:2;3289:9;3280:7;3276:23;3272:32;3269:52;;;3317:1;3314;3307:12;3269:52;3357:9;3344:23;3390:18;3382:6;3379:30;3376:50;;;3422:1;3419;3412:12;3376:50;3445:22;;3498:4;3490:13;;3486:27;-1:-1:-1;3476:55:1;;3527:1;3524;3517:12;3476:55;3550:74;3616:7;3611:2;3598:16;3593:2;3589;3585:11;3550:74;:::i;3635:160::-;3700:20;;3756:13;;3749:21;3739:32;;3729:60;;3785:1;3782;3775:12;3800:180;3856:6;3909:2;3897:9;3888:7;3884:23;3880:32;3877:52;;;3925:1;3922;3915:12;3877:52;3948:26;3964:9;3948:26;:::i;3985:328::-;4062:6;4070;4078;4131:2;4119:9;4110:7;4106:23;4102:32;4099:52;;;4147:1;4144;4137:12;4099:52;4170:29;4189:9;4170:29;:::i;:::-;4160:39;;4218:38;4252:2;4241:9;4237:18;4218:38;:::i;:::-;4208:48;;4303:2;4292:9;4288:18;4275:32;4265:42;;3985:328;;;;;:::o;4318:186::-;4377:6;4430:2;4418:9;4409:7;4405:23;4401:32;4398:52;;;4446:1;4443;4436:12;4398:52;4469:29;4488:9;4469:29;:::i;4509:632::-;4680:2;4732:21;;;4802:13;;4705:18;;;4824:22;;;4651:4;;4680:2;4903:15;;;;4877:2;4862:18;;;4651:4;4946:169;4960:6;4957:1;4954:13;4946:169;;;5021:13;;5009:26;;5090:15;;;;5055:12;;;;4982:1;4975:9;4946:169;;;-1:-1:-1;5132:3:1;;4509:632;-1:-1:-1;;;;;;4509:632:1:o;5146:254::-;5211:6;5219;5272:2;5260:9;5251:7;5247:23;5243:32;5240:52;;;5288:1;5285;5278:12;5240:52;5311:29;5330:9;5311:29;:::i;:::-;5301:39;;5359:35;5390:2;5379:9;5375:18;5359:35;:::i;:::-;5349:45;;5146:254;;;;;:::o;5405:667::-;5500:6;5508;5516;5524;5577:3;5565:9;5556:7;5552:23;5548:33;5545:53;;;5594:1;5591;5584:12;5545:53;5617:29;5636:9;5617:29;:::i;:::-;5607:39;;5665:38;5699:2;5688:9;5684:18;5665:38;:::i;:::-;5655:48;;5750:2;5739:9;5735:18;5722:32;5712:42;;5805:2;5794:9;5790:18;5777:32;5832:18;5824:6;5821:30;5818:50;;;5864:1;5861;5854:12;5818:50;5887:22;;5940:4;5932:13;;5928:27;-1:-1:-1;5918:55:1;;5969:1;5966;5959:12;5918:55;5992:74;6058:7;6053:2;6040:16;6035:2;6031;6027:11;5992:74;:::i;:::-;5982:84;;;5405:667;;;;;;;:::o;6077:1022::-;6170:6;6178;6231:2;6219:9;6210:7;6206:23;6202:32;6199:52;;;6247:1;6244;6237:12;6199:52;6287:9;6274:23;6316:18;6357:2;6349:6;6346:14;6343:34;;;6373:1;6370;6363:12;6343:34;6411:6;6400:9;6396:22;6386:32;;6456:7;6449:4;6445:2;6441:13;6437:27;6427:55;;6478:1;6475;6468:12;6427:55;6514:2;6501:16;6536:4;6559:2;6555;6552:10;6549:36;;;6565:18;;:::i;:::-;6611:2;6608:1;6604:10;6594:20;;6634:28;6658:2;6654;6650:11;6634:28;:::i;:::-;6696:15;;;6766:11;;;6762:20;;;6727:12;;;;6794:19;;;6791:39;;;6826:1;6823;6816:12;6791:39;6850:11;;;;6870:148;6886:6;6881:3;6878:15;6870:148;;;6952:23;6971:3;6952:23;:::i;:::-;6940:36;;6903:12;;;;6996;;;;6870:148;;;7037:5;7074:18;;;;7061:32;;-1:-1:-1;;;;;;;6077:1022:1:o;7104:260::-;7172:6;7180;7233:2;7221:9;7212:7;7208:23;7204:32;7201:52;;;7249:1;7246;7239:12;7201:52;7272:29;7291:9;7272:29;:::i;:::-;7262:39;;7320:38;7354:2;7343:9;7339:18;7320:38;:::i;7369:254::-;7437:6;7445;7498:2;7486:9;7477:7;7473:23;7469:32;7466:52;;;7514:1;7511;7504:12;7466:52;7550:9;7537:23;7527:33;;7579:38;7613:2;7602:9;7598:18;7579:38;:::i;7628:380::-;7707:1;7703:12;;;;7750;;;7771:61;;7825:4;7817:6;7813:17;7803:27;;7771:61;7878:2;7870:6;7867:14;7847:18;7844:38;7841:161;;;7924:10;7919:3;7915:20;7912:1;7905:31;7959:4;7956:1;7949:15;7987:4;7984:1;7977:15;7841:161;;7628:380;;;:::o;9253:356::-;9455:2;9437:21;;;9474:18;;;9467:30;9533:34;9528:2;9513:18;;9506:62;9600:2;9585:18;;9253:356::o;9614:413::-;9816:2;9798:21;;;9855:2;9835:18;;;9828:30;9894:34;9889:2;9874:18;;9867:62;-1:-1:-1;;;9960:2:1;9945:18;;9938:47;10017:3;10002:19;;9614:413::o;10242:127::-;10303:10;10298:3;10294:20;10291:1;10284:31;10334:4;10331:1;10324:15;10358:4;10355:1;10348:15;10374:127;10435:10;10430:3;10426:20;10423:1;10416:31;10466:4;10463:1;10456:15;10490:4;10487:1;10480:15;10506:135;10545:3;-1:-1:-1;;10566:17:1;;10563:43;;;10586:18;;:::i;:::-;-1:-1:-1;10633:1:1;10622:13;;10506:135::o;11467:344::-;11669:2;11651:21;;;11708:2;11688:18;;;11681:30;-1:-1:-1;;;11742:2:1;11727:18;;11720:50;11802:2;11787:18;;11467:344::o;11816:128::-;11856:3;11887:1;11883:6;11880:1;11877:13;11874:39;;;11893:18;;:::i;:::-;-1:-1:-1;11929:9:1;;11816:128::o;11949:344::-;12151:2;12133:21;;;12190:2;12170:18;;;12163:30;-1:-1:-1;;;12224:2:1;12209:18;;12202:50;12284:2;12269:18;;11949:344::o;12298:347::-;12500:2;12482:21;;;12539:2;12519:18;;;12512:30;12578:25;12573:2;12558:18;;12551:53;12636:2;12621:18;;12298:347::o;13002:168::-;13042:7;13108:1;13104;13100:6;13096:14;13093:1;13090:21;13085:1;13078:9;13071:17;13067:45;13064:71;;;13115:18;;:::i;:::-;-1:-1:-1;13155:9:1;;13002:168::o;14772:1527::-;14996:3;15034:6;15028:13;15060:4;15073:51;15117:6;15112:3;15107:2;15099:6;15095:15;15073:51;:::i;:::-;15187:13;;15146:16;;;;15209:55;15187:13;15146:16;15231:15;;;15209:55;:::i;:::-;15353:13;;15286:20;;;15326:1;;15413;15435:18;;;;15488;;;;15515:93;;15593:4;15583:8;15579:19;15567:31;;15515:93;15656:2;15646:8;15643:16;15623:18;15620:40;15617:167;;;-1:-1:-1;;;15683:33:1;;15739:4;15736:1;15729:15;15769:4;15690:3;15757:17;15617:167;15800:18;15827:110;;;;15951:1;15946:328;;;;15793:481;;15827:110;-1:-1:-1;;15862:24:1;;15848:39;;15907:20;;;;-1:-1:-1;15827:110:1;;15946:328;14719:1;14712:14;;;14756:4;14743:18;;16041:1;16055:169;16069:8;16066:1;16063:15;16055:169;;;16151:14;;16136:13;;;16129:37;16194:16;;;;16086:10;;16055:169;;;16059:3;;16255:8;16248:5;16244:20;16237:27;;15793:481;-1:-1:-1;16290:3:1;;14772:1527;-1:-1:-1;;;;;;;;;;;14772:1527:1:o;17939:125::-;17979:4;18007:1;18004;18001:8;17998:34;;;18012:18;;:::i;:::-;-1:-1:-1;18049:9:1;;17939:125::o;18423:414::-;18625:2;18607:21;;;18664:2;18644:18;;;18637:30;18703:34;18698:2;18683:18;;18676:62;-1:-1:-1;;;18769:2:1;18754:18;;18747:48;18827:3;18812:19;;18423:414::o;18842:127::-;18903:10;18898:3;18894:20;18891:1;18884:31;18934:4;18931:1;18924:15;18958:4;18955:1;18948:15;18974:120;19014:1;19040;19030:35;;19045:18;;:::i;:::-;-1:-1:-1;19079:9:1;;18974:120::o;19099:112::-;19131:1;19157;19147:35;;19162:18;;:::i;:::-;-1:-1:-1;19196:9:1;;19099:112::o;19216:489::-;-1:-1:-1;;;;;19485:15:1;;;19467:34;;19537:15;;19532:2;19517:18;;19510:43;19584:2;19569:18;;19562:34;;;19632:3;19627:2;19612:18;;19605:31;;;19410:4;;19653:46;;19679:19;;19671:6;19653:46;:::i;:::-;19645:54;19216:489;-1:-1:-1;;;;;;19216:489:1:o;19710:249::-;19779:6;19832:2;19820:9;19811:7;19807:23;19803:32;19800:52;;;19848:1;19845;19838:12;19800:52;19880:9;19874:16;19899:30;19923:5;19899:30;:::i

Swarm Source

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