ERC-721
Overview
Max Total Supply
420 CG
Holders
182
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
4 CGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
COOLGHOULS
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-21 */ // SPDX-License-Identifier: MIT // 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 (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/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 (last updated v4.5.0) (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); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: coolghouls.sol pragma solidity >=0.7.0 <0.9.0; contract COOLGHOULS is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI = "ipfs://QmSbchkJWTzzhFAnX1AdqKoiXPcoJLBPFJHUvaW7Hyq6nn"; uint256 public maxSupply = 5555; uint256 public maxMintPresale = 4; uint256 public maxMint = 10; uint256 public price = 0.05 ether; bool public active = true; bool public presale = true; address[] public whitelist; constructor() ERC721("Cool Ghouls", "CG") { mint(5); } // Internal Methods // Override function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // Public Methods function mint(uint256 _mintAmount) public payable { require(active, "The contract is not active"); uint256 supply = totalSupply(); require(_mintAmount > 0, "Mint amount must be at least 1 NFT"); require(supply + _mintAmount <= maxSupply, "Exceeded NFT supply"); if (msg.sender != owner()) { if (presale == true) { require(isWhitelisted(msg.sender), "User is not whitelisted"); require(_mintAmount <= maxMintPresale, "Exceeded max mint amount"); } else { require(_mintAmount <= maxMint, "Exceeded max mint amount"); } require(msg.value >= price * _mintAmount, "Insufficient funds"); } for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, supply + i); } } // Override function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory newBaseURI = _baseURI(); return bytes(newBaseURI).length > 0 ? string(abi.encodePacked(newBaseURI, "/", tokenId.toString(), ".json")) : ""; } function isWhitelisted(address _user) public view returns (bool) { for (uint i = 0; i < whitelist.length; i++) { if (whitelist[i] == _user) { return true; } } return false; } function getTokenIds(address _address) public view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_address); uint256[] memory tokenIds = new uint256[](tokenCount); for (uint256 i; i < tokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_address, i); } return tokenIds; } // Owner methods function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setMaxSupply(uint256 _newMaxSupply) public onlyOwner { maxSupply = _newMaxSupply; } function setMaxMintPresale(uint256 _newMaxMintPresale) public onlyOwner { maxMintPresale = _newMaxMintPresale; } function setMaxMint(uint256 _newMaxMint) public onlyOwner { maxMint = _newMaxMint; } function setPrice(uint256 _newPrice) public onlyOwner { price = _newPrice; } function startMinting() public onlyOwner { active = true; } function stopMinting() public onlyOwner { active = false; } function startPresale() public onlyOwner { presale = true; } function stopPresale() public onlyOwner { presale = false; } function setWhitelist(address[] calldata _whitelist) public onlyOwner { delete whitelist; whitelist = _whitelist; } function withdraw() public payable onlyOwner { (bool success, ) = payable(owner()).call{value: address(this).balance}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":[],"name":"active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getTokenIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPresale","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintPresale","type":"uint256"}],"name":"setMaxMintPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelist","type":"address[]"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60e060405260356080818152906200354160a03980516200002991600b9160209091019062000b25565b506115b3600c556004600d55600a600e5566b1a2bc2ec50000600f556010805461ffff19166101011790553480156200006157600080fd5b50604080518082018252600b81526a436f6f6c2047686f756c7360a81b602080830191825283518085019094526002845261434760f01b908401528151919291620000af9160009162000b25565b508051620000c590600190602084019062000b25565b505050620000e2620000dc620000f460201b60201c565b620000f8565b620000ee60056200014a565b62000d6d565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60105460ff16620001a25760405162461bcd60e51b815260206004820152601a60248201527f54686520636f6e7472616374206973206e6f742061637469766500000000000060448201526064015b60405180910390fd5b6000620001ae60085490565b9050600082116200020d5760405162461bcd60e51b815260206004820152602260248201527f4d696e7420616d6f756e74206d757374206265206174206c656173742031204e604482015261119560f21b606482015260840162000199565b600c546200021c838362000c79565b11156200026c5760405162461bcd60e51b815260206004820152601360248201527f4578636565646564204e465420737570706c7900000000000000000000000000604482015260640162000199565b600a546001600160a01b03163314620003f35760105460ff610100909104161515600114156200034957620002a1336200042f565b620002ef5760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c6973746564000000000000000000604482015260640162000199565b600d54821115620003435760405162461bcd60e51b815260206004820152601860248201527f4578636565646564206d6178206d696e7420616d6f756e740000000000000000604482015260640162000199565b6200039d565b600e548211156200039d5760405162461bcd60e51b815260206004820152601860248201527f4578636565646564206d6178206d696e7420616d6f756e740000000000000000604482015260640162000199565b81600f54620003ad919062000c94565b341015620003f35760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640162000199565b60015b8281116200042a5762000415336200040f838562000c79565b620004a1565b80620004218162000d0d565b915050620003f6565b505050565b6000805b6011548110156200049857826001600160a01b0316601182815481106200045e576200045e62000d57565b6000918252602090912001546001600160a01b03161415620004835750600192915050565b806200048f8162000d0d565b91505062000433565b50600092915050565b620004c3828260405180602001604052806000815250620004c760201b60201c565b5050565b620004d383836200053a565b620004e2600084848462000690565b6200042a5760405162461bcd60e51b815260206004820152603260248201526000805160206200352183398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000199565b6001600160a01b038216620005925760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000199565b6000818152600260205260409020546001600160a01b031615620005f95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000199565b6200060760008383620007f9565b6001600160a01b03821660009081526003602052604081208054600192906200063290849062000c79565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620006b1846001600160a01b0316620008d560201b620015371760201c565b15620007ed57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620006eb90339089908890889060040162000bfe565b602060405180830381600087803b1580156200070657600080fd5b505af192505050801562000739575060408051601f3d908101601f19168201909252620007369181019062000bcb565b60015b620007d2573d8080156200076a576040519150601f19603f3d011682016040523d82523d6000602084013e6200076f565b606091505b508051620007ca5760405162461bcd60e51b815260206004820152603260248201526000805160206200352183398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000199565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620007f1565b5060015b949350505050565b620008118383836200042a60201b620009d51760201c565b6001600160a01b0383166200086f576200086981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b62000895565b816001600160a01b0316836001600160a01b0316146200089557620008958382620008e4565b6001600160a01b038216620008af576200042a8162000991565b826001600160a01b0316826001600160a01b0316146200042a576200042a828262000a4b565b6001600160a01b03163b151590565b60006001620008fe8462000a9c60201b62000e971760201c565b6200090a919062000cb6565b6000838152600760205260409020549091508082146200095e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620009a59060019062000cb6565b60008381526009602052604081205460088054939450909284908110620009d057620009d062000d57565b906000526020600020015490508060088381548110620009f457620009f462000d57565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000a2f5762000a2f62000d41565b6001900381819060005260206000200160009055905550505050565b600062000a638362000a9c60201b62000e971760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b03821662000b095760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840162000199565b506001600160a01b031660009081526003602052604090205490565b82805462000b339062000cd0565b90600052602060002090601f01602090048101928262000b57576000855562000ba2565b82601f1062000b7257805160ff191683800117855562000ba2565b8280016001018555821562000ba2579182015b8281111562000ba257825182559160200191906001019062000b85565b5062000bb092915062000bb4565b5090565b5b8082111562000bb0576000815560010162000bb5565b60006020828403121562000bde57600080fd5b81516001600160e01b03198116811462000bf757600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b8281101562000c4d5785810182015185820160a00152810162000c2f565b8281111562000c6057600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000821982111562000c8f5762000c8f62000d2b565b500190565b600081600019048311821515161562000cb15762000cb162000d2b565b500290565b60008282101562000ccb5762000ccb62000d2b565b500390565b600181811c9082168062000ce557607f821691505b6020821081141562000d0757634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000d245762000d2462000d2b565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6127a48062000d7d6000396000f3fe6080604052600436106102465760003560e01c80636f8b44b011610139578063a0712d68116100b6578063d5abeb011161007a578063d5abeb011461065a578063e985e9c514610670578063f2fde38b146106b9578063f4217648146106d9578063fdea8e0b146106f9578063ffcd55a81461071857600080fd5b8063a0712d68146105ba578063a22cb465146105cd578063b88d4fde146105ed578063c87b56dd1461060d578063d004b0361461062d57600080fd5b80638da5cb5b116100fd5780638da5cb5b1461053c57806391b7f5ed1461055a57806395d89b411461057a5780639a65ea261461058f578063a035b1fe146105a457600080fd5b80636f8b44b0146104b157806370a08231146104d1578063715018a6146104f15780637501f741146105065780637ebd1b301461051c57600080fd5b80632f745c59116101c75780634f6ccce71161018b5780634f6ccce71461041c578063547520fe1461043c57806355f804b31461045c5780636352211e1461047c5780636c0360eb1461049c57600080fd5b80632f745c591461039f5780633af32abf146103bf5780633ccfd60b146103df5780633e3e0b12146103e757806342842e0e146103fc57600080fd5b8063095ea7b31161020e578063095ea7b31461030b57806313e7f27f1461032b57806318160ddd1461034b5780631ad2ad1a1461036a57806323b872dd1461037f57600080fd5b806301ffc9a71461024b57806302fb0c5e1461028057806304c98b2b1461029a57806306fdde03146102b1578063081812fc146102d3575b600080fd5b34801561025757600080fd5b5061026b610266366004612370565b61072e565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b5060105461026b9060ff1681565b3480156102a657600080fd5b506102af610759565b005b3480156102bd57600080fd5b506102c661079d565b6040516102779190612507565b3480156102df57600080fd5b506102f36102ee3660046123f3565b61082f565b6040516001600160a01b039091168152602001610277565b34801561031757600080fd5b506102af6103263660046122d1565b6108c4565b34801561033757600080fd5b506102af6103463660046123f3565b6109da565b34801561035757600080fd5b506008545b604051908152602001610277565b34801561037657600080fd5b506102af610a09565b34801561038b57600080fd5b506102af61039a3660046121dd565b610a40565b3480156103ab57600080fd5b5061035c6103ba3660046122d1565b610a71565b3480156103cb57600080fd5b5061026b6103da36600461218f565b610b07565b6102af610b71565b3480156103f357600080fd5b506102af610c0f565b34801561040857600080fd5b506102af6104173660046121dd565b610c45565b34801561042857600080fd5b5061035c6104373660046123f3565b610c60565b34801561044857600080fd5b506102af6104573660046123f3565b610cf3565b34801561046857600080fd5b506102af6104773660046123aa565b610d22565b34801561048857600080fd5b506102f36104973660046123f3565b610d63565b3480156104a857600080fd5b506102c6610dda565b3480156104bd57600080fd5b506102af6104cc3660046123f3565b610e68565b3480156104dd57600080fd5b5061035c6104ec36600461218f565b610e97565b3480156104fd57600080fd5b506102af610f1e565b34801561051257600080fd5b5061035c600e5481565b34801561052857600080fd5b506102f36105373660046123f3565b610f54565b34801561054857600080fd5b50600a546001600160a01b03166102f3565b34801561056657600080fd5b506102af6105753660046123f3565b610f7e565b34801561058657600080fd5b506102c6610fad565b34801561059b57600080fd5b506102af610fbc565b3480156105b057600080fd5b5061035c600f5481565b6102af6105c83660046123f3565b610ff5565b3480156105d957600080fd5b506102af6105e8366004612295565b61129d565b3480156105f957600080fd5b506102af610608366004612219565b6112a8565b34801561061957600080fd5b506102c66106283660046123f3565b6112e0565b34801561063957600080fd5b5061064d61064836600461218f565b6113bb565b60405161027791906124c3565b34801561066657600080fd5b5061035c600c5481565b34801561067c57600080fd5b5061026b61068b3660046121aa565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106c557600080fd5b506102af6106d436600461218f565b61145d565b3480156106e557600080fd5b506102af6106f43660046122fb565b6114f5565b34801561070557600080fd5b5060105461026b90610100900460ff1681565b34801561072457600080fd5b5061035c600d5481565b60006001600160e01b0319821663780e9d6360e01b1480610753575061075382611546565b92915050565b600a546001600160a01b0316331461078c5760405162461bcd60e51b81526004016107839061256c565b60405180910390fd5b6010805461ff001916610100179055565b6060600080546107ac90612680565b80601f01602080910402602001604051908101604052809291908181526020018280546107d890612680565b80156108255780601f106107fa57610100808354040283529160200191610825565b820191906000526020600020905b81548152906001019060200180831161080857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108a85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610783565b506000908152600460205260409020546001600160a01b031690565b60006108cf82610d63565b9050806001600160a01b0316836001600160a01b0316141561093d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610783565b336001600160a01b03821614806109595750610959813361068b565b6109cb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610783565b6109d58383611596565b505050565b600a546001600160a01b03163314610a045760405162461bcd60e51b81526004016107839061256c565b600d55565b600a546001600160a01b03163314610a335760405162461bcd60e51b81526004016107839061256c565b6010805461ff0019169055565b610a4a3382611604565b610a665760405162461bcd60e51b8152600401610783906125a1565b6109d58383836116fb565b6000610a7c83610e97565b8210610ade5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610783565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601154811015610b6857826001600160a01b031660118281548110610b3257610b3261272c565b6000918252602090912001546001600160a01b03161415610b565750600192915050565b80610b60816126bb565b915050610b0b565b50600092915050565b600a546001600160a01b03163314610b9b5760405162461bcd60e51b81526004016107839061256c565b6000610baf600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bf9576040519150601f19603f3d011682016040523d82523d6000602084013e610bfe565b606091505b5050905080610c0c57600080fd5b50565b600a546001600160a01b03163314610c395760405162461bcd60e51b81526004016107839061256c565b6010805460ff19169055565b6109d5838383604051806020016040528060008152506112a8565b6000610c6b60085490565b8210610cce5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610783565b60088281548110610ce157610ce161272c565b90600052602060002001549050919050565b600a546001600160a01b03163314610d1d5760405162461bcd60e51b81526004016107839061256c565b600e55565b600a546001600160a01b03163314610d4c5760405162461bcd60e51b81526004016107839061256c565b8051610d5f90600b906020840190611ff3565b5050565b6000818152600260205260408120546001600160a01b0316806107535760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610783565b600b8054610de790612680565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1390612680565b8015610e605780601f10610e3557610100808354040283529160200191610e60565b820191906000526020600020905b815481529060010190602001808311610e4357829003601f168201915b505050505081565b600a546001600160a01b03163314610e925760405162461bcd60e51b81526004016107839061256c565b600c55565b60006001600160a01b038216610f025760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610783565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f485760405162461bcd60e51b81526004016107839061256c565b610f5260006118a2565b565b60118181548110610f6457600080fd5b6000918252602090912001546001600160a01b0316905081565b600a546001600160a01b03163314610fa85760405162461bcd60e51b81526004016107839061256c565b600f55565b6060600180546107ac90612680565b600a546001600160a01b03163314610fe65760405162461bcd60e51b81526004016107839061256c565b6010805460ff19166001179055565b60105460ff166110475760405162461bcd60e51b815260206004820152601a60248201527f54686520636f6e7472616374206973206e6f74206163746976650000000000006044820152606401610783565b600061105260085490565b9050600082116110af5760405162461bcd60e51b815260206004820152602260248201527f4d696e7420616d6f756e74206d757374206265206174206c656173742031204e604482015261119560f21b6064820152608401610783565b600c546110bc83836125f2565b11156111005760405162461bcd60e51b81526020600482015260136024820152724578636565646564204e465420737570706c7960681b6044820152606401610783565b600a546001600160a01b0316331461126e5760105460ff610100909104161515600114156111cf5761113133610b07565b61117d5760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610783565b600d548211156111ca5760405162461bcd60e51b8152602060048201526018602482015277115e18d959591959081b585e081b5a5b9d08185b5bdd5b9d60421b6044820152606401610783565b61121c565b600e5482111561121c5760405162461bcd60e51b8152602060048201526018602482015277115e18d959591959081b585e081b5a5b9d08185b5bdd5b9d60421b6044820152606401610783565b81600f5461122a919061261e565b34101561126e5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610783565b60015b8281116109d55761128b3361128683856125f2565b6118f4565b80611295816126bb565b915050611271565b610d5f33838361190e565b6112b23383611604565b6112ce5760405162461bcd60e51b8152600401610783906125a1565b6112da848484846119dd565b50505050565b6000818152600260205260409020546060906001600160a01b031661135f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610783565b6000611369611a10565b9050600081511161138957604051806020016040528060008152506113b4565b8061139384611a1f565b6040516020016113a4929190612438565b6040516020818303038152906040525b9392505050565b606060006113c883610e97565b905060008167ffffffffffffffff8111156113e5576113e5612742565b60405190808252806020026020018201604052801561140e578160200160208202803683370190505b50905060005b82811015611455576114268582610a71565b8282815181106114385761143861272c565b60209081029190910101528061144d816126bb565b915050611414565b509392505050565b600a546001600160a01b031633146114875760405162461bcd60e51b81526004016107839061256c565b6001600160a01b0381166114ec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610783565b610c0c816118a2565b600a546001600160a01b0316331461151f5760405162461bcd60e51b81526004016107839061256c565b61152b60116000612077565b6109d560118383612095565b6001600160a01b03163b151590565b60006001600160e01b031982166380ac58cd60e01b148061157757506001600160e01b03198216635b5e139f60e01b145b8061075357506301ffc9a760e01b6001600160e01b0319831614610753565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115cb82610d63565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661167d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610783565b600061168883610d63565b9050806001600160a01b0316846001600160a01b031614806116c35750836001600160a01b03166116b88461082f565b6001600160a01b0316145b806116f357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661170e82610d63565b6001600160a01b0316146117725760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610783565b6001600160a01b0382166117d45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610783565b6117df838383611b1d565b6117ea600082611596565b6001600160a01b038316600090815260036020526040812080546001929061181390849061263d565b90915550506001600160a01b03821660009081526003602052604081208054600192906118419084906125f2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d5f828260405180602001604052806000815250611bd5565b816001600160a01b0316836001600160a01b031614156119705760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610783565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6119e88484846116fb565b6119f484848484611c08565b6112da5760405162461bcd60e51b81526004016107839061251a565b6060600b80546107ac90612680565b606081611a435750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a6d5780611a57816126bb565b9150611a669050600a8361260a565b9150611a47565b60008167ffffffffffffffff811115611a8857611a88612742565b6040519080825280601f01601f191660200182016040528015611ab2576020820181803683370190505b5090505b84156116f357611ac760018361263d565b9150611ad4600a866126d6565b611adf9060306125f2565b60f81b818381518110611af457611af461272c565b60200101906001600160f81b031916908160001a905350611b16600a8661260a565b9450611ab6565b6001600160a01b038316611b7857611b7381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b9b565b816001600160a01b0316836001600160a01b031614611b9b57611b9b8382611d15565b6001600160a01b038216611bb2576109d581611db2565b826001600160a01b0316826001600160a01b0316146109d5576109d58282611e61565b611bdf8383611ea5565b611bec6000848484611c08565b6109d55760405162461bcd60e51b81526004016107839061251a565b60006001600160a01b0384163b15611d0a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c4c903390899088908890600401612486565b602060405180830381600087803b158015611c6657600080fd5b505af1925050508015611c96575060408051601f3d908101601f19168201909252611c939181019061238d565b60015b611cf0573d808015611cc4576040519150601f19603f3d011682016040523d82523d6000602084013e611cc9565b606091505b508051611ce85760405162461bcd60e51b81526004016107839061251a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116f3565b506001949350505050565b60006001611d2284610e97565b611d2c919061263d565b600083815260076020526040902054909150808214611d7f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611dc49060019061263d565b60008381526009602052604081205460088054939450909284908110611dec57611dec61272c565b906000526020600020015490508060088381548110611e0d57611e0d61272c565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e4557611e45612716565b6001900381819060005260206000200160009055905550505050565b6000611e6c83610e97565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611efb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610783565b6000818152600260205260409020546001600160a01b031615611f605760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610783565b611f6c60008383611b1d565b6001600160a01b0382166000908152600360205260408120805460019290611f959084906125f2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fff90612680565b90600052602060002090601f0160209004810192826120215760008555612067565b82601f1061203a57805160ff1916838001178555612067565b82800160010185558215612067579182015b8281111561206757825182559160200191906001019061204c565b506120739291506120e8565b5090565b5080546000825590600052602060002090810190610c0c91906120e8565b828054828255906000526020600020908101928215612067579160200282015b828111156120675781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906120b5565b5b8082111561207357600081556001016120e9565b600067ffffffffffffffff8084111561211857612118612742565b604051601f8501601f19908116603f0116810190828211818310171561214057612140612742565b8160405280935085815286868601111561215957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461218a57600080fd5b919050565b6000602082840312156121a157600080fd5b6113b482612173565b600080604083850312156121bd57600080fd5b6121c683612173565b91506121d460208401612173565b90509250929050565b6000806000606084860312156121f257600080fd5b6121fb84612173565b925061220960208501612173565b9150604084013590509250925092565b6000806000806080858703121561222f57600080fd5b61223885612173565b935061224660208601612173565b925060408501359150606085013567ffffffffffffffff81111561226957600080fd5b8501601f8101871361227a57600080fd5b612289878235602084016120fd565b91505092959194509250565b600080604083850312156122a857600080fd5b6122b183612173565b9150602083013580151581146122c657600080fd5b809150509250929050565b600080604083850312156122e457600080fd5b6122ed83612173565b946020939093013593505050565b6000806020838503121561230e57600080fd5b823567ffffffffffffffff8082111561232657600080fd5b818501915085601f83011261233a57600080fd5b81358181111561234957600080fd5b8660208260051b850101111561235e57600080fd5b60209290920196919550909350505050565b60006020828403121561238257600080fd5b81356113b481612758565b60006020828403121561239f57600080fd5b81516113b481612758565b6000602082840312156123bc57600080fd5b813567ffffffffffffffff8111156123d357600080fd5b8201601f810184136123e457600080fd5b6116f3848235602084016120fd565b60006020828403121561240557600080fd5b5035919050565b60008151808452612424816020860160208601612654565b601f01601f19169290920160200192915050565b6000835161244a818460208801612654565b602f60f81b9083019081528351612468816001840160208801612654565b64173539b7b760d91b60019290910191820152600601949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124b99083018461240c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156124fb578351835292840192918401916001016124df565b50909695505050505050565b6020815260006113b4602083018461240c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612605576126056126ea565b500190565b60008261261957612619612700565b500490565b6000816000190483118215151615612638576126386126ea565b500290565b60008282101561264f5761264f6126ea565b500390565b60005b8381101561266f578181015183820152602001612657565b838111156112da5750506000910152565b600181811c9082168061269457607f821691505b602082108114156126b557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126cf576126cf6126ea565b5060010190565b6000826126e5576126e5612700565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c0c57600080fdfea2646970667358221220a2e8de9a58cf7e23f79548387108434fc78b7c60ca039aef6d97565004d1ce9564736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e204552433732315265697066733a2f2f516d536263686b4a57547a7a6846416e58314164714b6f695850636f4a4c4250464a485576615737487971366e6e
Deployed Bytecode
0x6080604052600436106102465760003560e01c80636f8b44b011610139578063a0712d68116100b6578063d5abeb011161007a578063d5abeb011461065a578063e985e9c514610670578063f2fde38b146106b9578063f4217648146106d9578063fdea8e0b146106f9578063ffcd55a81461071857600080fd5b8063a0712d68146105ba578063a22cb465146105cd578063b88d4fde146105ed578063c87b56dd1461060d578063d004b0361461062d57600080fd5b80638da5cb5b116100fd5780638da5cb5b1461053c57806391b7f5ed1461055a57806395d89b411461057a5780639a65ea261461058f578063a035b1fe146105a457600080fd5b80636f8b44b0146104b157806370a08231146104d1578063715018a6146104f15780637501f741146105065780637ebd1b301461051c57600080fd5b80632f745c59116101c75780634f6ccce71161018b5780634f6ccce71461041c578063547520fe1461043c57806355f804b31461045c5780636352211e1461047c5780636c0360eb1461049c57600080fd5b80632f745c591461039f5780633af32abf146103bf5780633ccfd60b146103df5780633e3e0b12146103e757806342842e0e146103fc57600080fd5b8063095ea7b31161020e578063095ea7b31461030b57806313e7f27f1461032b57806318160ddd1461034b5780631ad2ad1a1461036a57806323b872dd1461037f57600080fd5b806301ffc9a71461024b57806302fb0c5e1461028057806304c98b2b1461029a57806306fdde03146102b1578063081812fc146102d3575b600080fd5b34801561025757600080fd5b5061026b610266366004612370565b61072e565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b5060105461026b9060ff1681565b3480156102a657600080fd5b506102af610759565b005b3480156102bd57600080fd5b506102c661079d565b6040516102779190612507565b3480156102df57600080fd5b506102f36102ee3660046123f3565b61082f565b6040516001600160a01b039091168152602001610277565b34801561031757600080fd5b506102af6103263660046122d1565b6108c4565b34801561033757600080fd5b506102af6103463660046123f3565b6109da565b34801561035757600080fd5b506008545b604051908152602001610277565b34801561037657600080fd5b506102af610a09565b34801561038b57600080fd5b506102af61039a3660046121dd565b610a40565b3480156103ab57600080fd5b5061035c6103ba3660046122d1565b610a71565b3480156103cb57600080fd5b5061026b6103da36600461218f565b610b07565b6102af610b71565b3480156103f357600080fd5b506102af610c0f565b34801561040857600080fd5b506102af6104173660046121dd565b610c45565b34801561042857600080fd5b5061035c6104373660046123f3565b610c60565b34801561044857600080fd5b506102af6104573660046123f3565b610cf3565b34801561046857600080fd5b506102af6104773660046123aa565b610d22565b34801561048857600080fd5b506102f36104973660046123f3565b610d63565b3480156104a857600080fd5b506102c6610dda565b3480156104bd57600080fd5b506102af6104cc3660046123f3565b610e68565b3480156104dd57600080fd5b5061035c6104ec36600461218f565b610e97565b3480156104fd57600080fd5b506102af610f1e565b34801561051257600080fd5b5061035c600e5481565b34801561052857600080fd5b506102f36105373660046123f3565b610f54565b34801561054857600080fd5b50600a546001600160a01b03166102f3565b34801561056657600080fd5b506102af6105753660046123f3565b610f7e565b34801561058657600080fd5b506102c6610fad565b34801561059b57600080fd5b506102af610fbc565b3480156105b057600080fd5b5061035c600f5481565b6102af6105c83660046123f3565b610ff5565b3480156105d957600080fd5b506102af6105e8366004612295565b61129d565b3480156105f957600080fd5b506102af610608366004612219565b6112a8565b34801561061957600080fd5b506102c66106283660046123f3565b6112e0565b34801561063957600080fd5b5061064d61064836600461218f565b6113bb565b60405161027791906124c3565b34801561066657600080fd5b5061035c600c5481565b34801561067c57600080fd5b5061026b61068b3660046121aa565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106c557600080fd5b506102af6106d436600461218f565b61145d565b3480156106e557600080fd5b506102af6106f43660046122fb565b6114f5565b34801561070557600080fd5b5060105461026b90610100900460ff1681565b34801561072457600080fd5b5061035c600d5481565b60006001600160e01b0319821663780e9d6360e01b1480610753575061075382611546565b92915050565b600a546001600160a01b0316331461078c5760405162461bcd60e51b81526004016107839061256c565b60405180910390fd5b6010805461ff001916610100179055565b6060600080546107ac90612680565b80601f01602080910402602001604051908101604052809291908181526020018280546107d890612680565b80156108255780601f106107fa57610100808354040283529160200191610825565b820191906000526020600020905b81548152906001019060200180831161080857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108a85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610783565b506000908152600460205260409020546001600160a01b031690565b60006108cf82610d63565b9050806001600160a01b0316836001600160a01b0316141561093d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610783565b336001600160a01b03821614806109595750610959813361068b565b6109cb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610783565b6109d58383611596565b505050565b600a546001600160a01b03163314610a045760405162461bcd60e51b81526004016107839061256c565b600d55565b600a546001600160a01b03163314610a335760405162461bcd60e51b81526004016107839061256c565b6010805461ff0019169055565b610a4a3382611604565b610a665760405162461bcd60e51b8152600401610783906125a1565b6109d58383836116fb565b6000610a7c83610e97565b8210610ade5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610783565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601154811015610b6857826001600160a01b031660118281548110610b3257610b3261272c565b6000918252602090912001546001600160a01b03161415610b565750600192915050565b80610b60816126bb565b915050610b0b565b50600092915050565b600a546001600160a01b03163314610b9b5760405162461bcd60e51b81526004016107839061256c565b6000610baf600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bf9576040519150601f19603f3d011682016040523d82523d6000602084013e610bfe565b606091505b5050905080610c0c57600080fd5b50565b600a546001600160a01b03163314610c395760405162461bcd60e51b81526004016107839061256c565b6010805460ff19169055565b6109d5838383604051806020016040528060008152506112a8565b6000610c6b60085490565b8210610cce5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610783565b60088281548110610ce157610ce161272c565b90600052602060002001549050919050565b600a546001600160a01b03163314610d1d5760405162461bcd60e51b81526004016107839061256c565b600e55565b600a546001600160a01b03163314610d4c5760405162461bcd60e51b81526004016107839061256c565b8051610d5f90600b906020840190611ff3565b5050565b6000818152600260205260408120546001600160a01b0316806107535760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610783565b600b8054610de790612680565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1390612680565b8015610e605780601f10610e3557610100808354040283529160200191610e60565b820191906000526020600020905b815481529060010190602001808311610e4357829003601f168201915b505050505081565b600a546001600160a01b03163314610e925760405162461bcd60e51b81526004016107839061256c565b600c55565b60006001600160a01b038216610f025760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610783565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f485760405162461bcd60e51b81526004016107839061256c565b610f5260006118a2565b565b60118181548110610f6457600080fd5b6000918252602090912001546001600160a01b0316905081565b600a546001600160a01b03163314610fa85760405162461bcd60e51b81526004016107839061256c565b600f55565b6060600180546107ac90612680565b600a546001600160a01b03163314610fe65760405162461bcd60e51b81526004016107839061256c565b6010805460ff19166001179055565b60105460ff166110475760405162461bcd60e51b815260206004820152601a60248201527f54686520636f6e7472616374206973206e6f74206163746976650000000000006044820152606401610783565b600061105260085490565b9050600082116110af5760405162461bcd60e51b815260206004820152602260248201527f4d696e7420616d6f756e74206d757374206265206174206c656173742031204e604482015261119560f21b6064820152608401610783565b600c546110bc83836125f2565b11156111005760405162461bcd60e51b81526020600482015260136024820152724578636565646564204e465420737570706c7960681b6044820152606401610783565b600a546001600160a01b0316331461126e5760105460ff610100909104161515600114156111cf5761113133610b07565b61117d5760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610783565b600d548211156111ca5760405162461bcd60e51b8152602060048201526018602482015277115e18d959591959081b585e081b5a5b9d08185b5bdd5b9d60421b6044820152606401610783565b61121c565b600e5482111561121c5760405162461bcd60e51b8152602060048201526018602482015277115e18d959591959081b585e081b5a5b9d08185b5bdd5b9d60421b6044820152606401610783565b81600f5461122a919061261e565b34101561126e5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610783565b60015b8281116109d55761128b3361128683856125f2565b6118f4565b80611295816126bb565b915050611271565b610d5f33838361190e565b6112b23383611604565b6112ce5760405162461bcd60e51b8152600401610783906125a1565b6112da848484846119dd565b50505050565b6000818152600260205260409020546060906001600160a01b031661135f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610783565b6000611369611a10565b9050600081511161138957604051806020016040528060008152506113b4565b8061139384611a1f565b6040516020016113a4929190612438565b6040516020818303038152906040525b9392505050565b606060006113c883610e97565b905060008167ffffffffffffffff8111156113e5576113e5612742565b60405190808252806020026020018201604052801561140e578160200160208202803683370190505b50905060005b82811015611455576114268582610a71565b8282815181106114385761143861272c565b60209081029190910101528061144d816126bb565b915050611414565b509392505050565b600a546001600160a01b031633146114875760405162461bcd60e51b81526004016107839061256c565b6001600160a01b0381166114ec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610783565b610c0c816118a2565b600a546001600160a01b0316331461151f5760405162461bcd60e51b81526004016107839061256c565b61152b60116000612077565b6109d560118383612095565b6001600160a01b03163b151590565b60006001600160e01b031982166380ac58cd60e01b148061157757506001600160e01b03198216635b5e139f60e01b145b8061075357506301ffc9a760e01b6001600160e01b0319831614610753565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115cb82610d63565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661167d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610783565b600061168883610d63565b9050806001600160a01b0316846001600160a01b031614806116c35750836001600160a01b03166116b88461082f565b6001600160a01b0316145b806116f357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661170e82610d63565b6001600160a01b0316146117725760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610783565b6001600160a01b0382166117d45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610783565b6117df838383611b1d565b6117ea600082611596565b6001600160a01b038316600090815260036020526040812080546001929061181390849061263d565b90915550506001600160a01b03821660009081526003602052604081208054600192906118419084906125f2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d5f828260405180602001604052806000815250611bd5565b816001600160a01b0316836001600160a01b031614156119705760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610783565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6119e88484846116fb565b6119f484848484611c08565b6112da5760405162461bcd60e51b81526004016107839061251a565b6060600b80546107ac90612680565b606081611a435750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a6d5780611a57816126bb565b9150611a669050600a8361260a565b9150611a47565b60008167ffffffffffffffff811115611a8857611a88612742565b6040519080825280601f01601f191660200182016040528015611ab2576020820181803683370190505b5090505b84156116f357611ac760018361263d565b9150611ad4600a866126d6565b611adf9060306125f2565b60f81b818381518110611af457611af461272c565b60200101906001600160f81b031916908160001a905350611b16600a8661260a565b9450611ab6565b6001600160a01b038316611b7857611b7381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b9b565b816001600160a01b0316836001600160a01b031614611b9b57611b9b8382611d15565b6001600160a01b038216611bb2576109d581611db2565b826001600160a01b0316826001600160a01b0316146109d5576109d58282611e61565b611bdf8383611ea5565b611bec6000848484611c08565b6109d55760405162461bcd60e51b81526004016107839061251a565b60006001600160a01b0384163b15611d0a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c4c903390899088908890600401612486565b602060405180830381600087803b158015611c6657600080fd5b505af1925050508015611c96575060408051601f3d908101601f19168201909252611c939181019061238d565b60015b611cf0573d808015611cc4576040519150601f19603f3d011682016040523d82523d6000602084013e611cc9565b606091505b508051611ce85760405162461bcd60e51b81526004016107839061251a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116f3565b506001949350505050565b60006001611d2284610e97565b611d2c919061263d565b600083815260076020526040902054909150808214611d7f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611dc49060019061263d565b60008381526009602052604081205460088054939450909284908110611dec57611dec61272c565b906000526020600020015490508060088381548110611e0d57611e0d61272c565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e4557611e45612716565b6001900381819060005260206000200160009055905550505050565b6000611e6c83610e97565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611efb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610783565b6000818152600260205260409020546001600160a01b031615611f605760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610783565b611f6c60008383611b1d565b6001600160a01b0382166000908152600360205260408120805460019290611f959084906125f2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fff90612680565b90600052602060002090601f0160209004810192826120215760008555612067565b82601f1061203a57805160ff1916838001178555612067565b82800160010185558215612067579182015b8281111561206757825182559160200191906001019061204c565b506120739291506120e8565b5090565b5080546000825590600052602060002090810190610c0c91906120e8565b828054828255906000526020600020908101928215612067579160200282015b828111156120675781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906120b5565b5b8082111561207357600081556001016120e9565b600067ffffffffffffffff8084111561211857612118612742565b604051601f8501601f19908116603f0116810190828211818310171561214057612140612742565b8160405280935085815286868601111561215957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461218a57600080fd5b919050565b6000602082840312156121a157600080fd5b6113b482612173565b600080604083850312156121bd57600080fd5b6121c683612173565b91506121d460208401612173565b90509250929050565b6000806000606084860312156121f257600080fd5b6121fb84612173565b925061220960208501612173565b9150604084013590509250925092565b6000806000806080858703121561222f57600080fd5b61223885612173565b935061224660208601612173565b925060408501359150606085013567ffffffffffffffff81111561226957600080fd5b8501601f8101871361227a57600080fd5b612289878235602084016120fd565b91505092959194509250565b600080604083850312156122a857600080fd5b6122b183612173565b9150602083013580151581146122c657600080fd5b809150509250929050565b600080604083850312156122e457600080fd5b6122ed83612173565b946020939093013593505050565b6000806020838503121561230e57600080fd5b823567ffffffffffffffff8082111561232657600080fd5b818501915085601f83011261233a57600080fd5b81358181111561234957600080fd5b8660208260051b850101111561235e57600080fd5b60209290920196919550909350505050565b60006020828403121561238257600080fd5b81356113b481612758565b60006020828403121561239f57600080fd5b81516113b481612758565b6000602082840312156123bc57600080fd5b813567ffffffffffffffff8111156123d357600080fd5b8201601f810184136123e457600080fd5b6116f3848235602084016120fd565b60006020828403121561240557600080fd5b5035919050565b60008151808452612424816020860160208601612654565b601f01601f19169290920160200192915050565b6000835161244a818460208801612654565b602f60f81b9083019081528351612468816001840160208801612654565b64173539b7b760d91b60019290910191820152600601949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124b99083018461240c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156124fb578351835292840192918401916001016124df565b50909695505050505050565b6020815260006113b4602083018461240c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612605576126056126ea565b500190565b60008261261957612619612700565b500490565b6000816000190483118215151615612638576126386126ea565b500290565b60008282101561264f5761264f6126ea565b500390565b60005b8381101561266f578181015183820152602001612657565b838111156112da5750506000910152565b600181811c9082168061269457607f821691505b602082108114156126b557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126cf576126cf6126ea565b5060010190565b6000826126e5576126e5612700565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c0c57600080fdfea2646970667358221220a2e8de9a58cf7e23f79548387108434fc78b7c60ca039aef6d97565004d1ce9564736f6c63430008070033
Deployed Bytecode Sourcemap
45565:3775:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39347:224;;;;;;;;;;-1:-1:-1;39347:224:0;;;;;:::i;:::-;;:::i;:::-;;;7415:14:1;;7408:22;7390:41;;7378:2;7363:18;39347:224:0;;;;;;;;45893:25;;;;;;;;;;-1:-1:-1;45893:25:0;;;;;;;;48862:74;;;;;;;;;;;;;:::i;:::-;;26167:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27726:221::-;;;;;;;;;;-1:-1:-1;27726:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6076:32:1;;;6058:51;;6046:2;6031:18;27726:221:0;5912:203:1;27249:411:0;;;;;;;;;;-1:-1:-1;27249:411:0;;;;;:::i;:::-;;:::i;48362:126::-;;;;;;;;;;-1:-1:-1;48362:126:0;;;;;:::i;:::-;;:::i;39987:113::-;;;;;;;;;;-1:-1:-1;40075:10:0;:17;39987:113;;;17173:25:1;;;17161:2;17146:18;39987:113:0;17027:177:1;48944:74:0;;;;;;;;;;;;;:::i;28476:339::-;;;;;;;;;;-1:-1:-1;28476:339:0;;;;;:::i;:::-;;:::i;39655:256::-;;;;;;;;;;-1:-1:-1;39655:256:0;;;;;:::i;:::-;;:::i;47502:249::-;;;;;;;;;;-1:-1:-1;47502:249:0;;;;;:::i;:::-;;:::i;49172:165::-;;;:::i;48781:73::-;;;;;;;;;;;;;:::i;28886:185::-;;;;;;;;;;-1:-1:-1;28886:185:0;;;;;:::i;:::-;;:::i;40177:233::-;;;;;;;;;;-1:-1:-1;40177:233:0;;;;;:::i;:::-;;:::i;48496:98::-;;;;;;;;;;-1:-1:-1;48496:98:0;;;;;:::i;:::-;;:::i;48136:104::-;;;;;;;;;;-1:-1:-1;48136:104:0;;;;;:::i;:::-;;:::i;25861:239::-;;;;;;;;;;-1:-1:-1;25861:239:0;;;;;:::i;:::-;;:::i;45655:79::-;;;;;;;;;;;;;:::i;48248:106::-;;;;;;;;;;-1:-1:-1;48248:106:0;;;;;:::i;:::-;;:::i;25591:208::-;;;;;;;;;;-1:-1:-1;25591:208:0;;;;;:::i;:::-;;:::i;4763:103::-;;;;;;;;;;;;;:::i;45819:27::-;;;;;;;;;;;;;;;;45958:26;;;;;;;;;;-1:-1:-1;45958:26:0;;;;;:::i;:::-;;:::i;4112:87::-;;;;;;;;;;-1:-1:-1;4185:6:0;;-1:-1:-1;;;;;4185:6:0;4112:87;;48602:90;;;;;;;;;;-1:-1:-1;48602:90:0;;;;;:::i;:::-;;:::i;26336:104::-;;;;;;;;;;;;;:::i;48700:73::-;;;;;;;;;;;;;:::i;45853:33::-;;;;;;;;;;;;;;;;46250:864;;;;;;:::i;:::-;;:::i;28019:155::-;;;;;;;;;;-1:-1:-1;28019:155:0;;;;;:::i;:::-;;:::i;29142:328::-;;;;;;;;;;-1:-1:-1;29142:328:0;;;;;:::i;:::-;;:::i;47139:355::-;;;;;;;;;;-1:-1:-1;47139:355:0;;;;;:::i;:::-;;:::i;47759:347::-;;;;;;;;;;-1:-1:-1;47759:347:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45741:31::-;;;;;;;;;;;;;;;;28245:164;;;;;;;;;;-1:-1:-1;28245:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28366:25:0;;;28342:4;28366:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28245:164;5021:201;;;;;;;;;;-1:-1:-1;5021:201:0;;;;;:::i;:::-;;:::i;49026:138::-;;;;;;;;;;-1:-1:-1;49026:138:0;;;;;:::i;:::-;;:::i;45925:26::-;;;;;;;;;;-1:-1:-1;45925:26:0;;;;;;;;;;;45779:33;;;;;;;;;;;;;;;;39347:224;39449:4;-1:-1:-1;;;;;;39473:50:0;;-1:-1:-1;;;39473:50:0;;:90;;;39527:36;39551:11;39527:23;:36::i;:::-;39466:97;39347:224;-1:-1:-1;;39347:224:0:o;48862:74::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;;;;;;;;;48914:7:::1;:14:::0;;-1:-1:-1;;48914:14:0::1;;;::::0;;48862:74::o;26167:100::-;26221:13;26254:5;26247:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26167:100;:::o;27726:221::-;27802:7;31069:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31069:16:0;27822:73;;;;-1:-1:-1;;;27822:73:0;;14806:2:1;27822:73:0;;;14788:21:1;14845:2;14825:18;;;14818:30;14884:34;14864:18;;;14857:62;-1:-1:-1;;;14935:18:1;;;14928:42;14987:19;;27822:73:0;14604:408:1;27822:73:0;-1:-1:-1;27915:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27915:24:0;;27726:221::o;27249:411::-;27330:13;27346:23;27361:7;27346:14;:23::i;:::-;27330:39;;27394:5;-1:-1:-1;;;;;27388:11:0;:2;-1:-1:-1;;;;;27388:11:0;;;27380:57;;;;-1:-1:-1;;;27380:57:0;;15996:2:1;27380:57:0;;;15978:21:1;16035:2;16015:18;;;16008:30;16074:34;16054:18;;;16047:62;-1:-1:-1;;;16125:18:1;;;16118:31;16166:19;;27380:57:0;15794:397:1;27380:57:0;2916:10;-1:-1:-1;;;;;27472:21:0;;;;:62;;-1:-1:-1;27497:37:0;27514:5;2916:10;28245:164;:::i;27497:37::-;27450:168;;;;-1:-1:-1;;;27450:168:0;;13199:2:1;27450:168:0;;;13181:21:1;13238:2;13218:18;;;13211:30;13277:34;13257:18;;;13250:62;13348:26;13328:18;;;13321:54;13392:19;;27450:168:0;12997:420:1;27450:168:0;27631:21;27640:2;27644:7;27631:8;:21::i;:::-;27319:341;27249:411;;:::o;48362:126::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48445:14:::1;:35:::0;48362:126::o;48944:74::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48995:7:::1;:15:::0;;-1:-1:-1;;48995:15:0::1;::::0;;48944:74::o;28476:339::-;28671:41;2916:10;28704:7;28671:18;:41::i;:::-;28663:103;;;;-1:-1:-1;;;28663:103:0;;;;;;;:::i;:::-;28779:28;28789:4;28795:2;28799:7;28779:9;:28::i;39655:256::-;39752:7;39788:23;39805:5;39788:16;:23::i;:::-;39780:5;:31;39772:87;;;;-1:-1:-1;;;39772:87:0;;7868:2:1;39772:87:0;;;7850:21:1;7907:2;7887:18;;;7880:30;7946:34;7926:18;;;7919:62;-1:-1:-1;;;7997:18:1;;;7990:41;8048:19;;39772:87:0;7666:407:1;39772:87:0;-1:-1:-1;;;;;;39877:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39655:256::o;47502:249::-;47561:4;;47578:143;47599:9;:16;47595:20;;47578:143;;;47657:5;-1:-1:-1;;;;;47641:21:0;:9;47651:1;47641:12;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;47641:12:0;:21;47637:73;;;-1:-1:-1;47690:4:0;;47502:249;-1:-1:-1;;47502:249:0:o;47637:73::-;47617:3;;;;:::i;:::-;;;;47578:143;;;-1:-1:-1;47738:5:0;;47502:249;-1:-1:-1;;47502:249:0:o;49172:165::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;49229:12:::1;49255:7;4185:6:::0;;-1:-1:-1;;;;;4185:6:0;;4112:87;49255:7:::1;-1:-1:-1::0;;;;;49247:21:0::1;49276;49247:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49228:74;;;49321:7;49313:16;;;::::0;::::1;;49217:120;49172:165::o:0;48781:73::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48832:6:::1;:14:::0;;-1:-1:-1;;48832:14:0::1;::::0;;48781:73::o;28886:185::-;29024:39;29041:4;29047:2;29051:7;29024:39;;;;;;;;;;;;:16;:39::i;40177:233::-;40252:7;40288:30;40075:10;:17;;39987:113;40288:30;40280:5;:38;40272:95;;;;-1:-1:-1;;;40272:95:0;;16816:2:1;40272:95:0;;;16798:21:1;16855:2;16835:18;;;16828:30;16894:34;16874:18;;;16867:62;-1:-1:-1;;;16945:18:1;;;16938:42;16997:19;;40272:95:0;16614:408:1;40272:95:0;40385:10;40396:5;40385:17;;;;;;;;:::i;:::-;;;;;;;;;40378:24;;40177:233;;;:::o;48496:98::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48565:7:::1;:21:::0;48496:98::o;48136:104::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48211:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48136:104:::0;:::o;25861:239::-;25933:7;25969:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25969:16:0;26004:19;25996:73;;;;-1:-1:-1;;;25996:73:0;;14035:2:1;25996:73:0;;;14017:21:1;14074:2;14054:18;;;14047:30;14113:34;14093:18;;;14086:62;-1:-1:-1;;;14164:18:1;;;14157:39;14213:19;;25996:73:0;13833:405:1;45655:79:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48248:106::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48321:9:::1;:25:::0;48248:106::o;25591:208::-;25663:7;-1:-1:-1;;;;;25691:19:0;;25683:74;;;;-1:-1:-1;;;25683:74:0;;13624:2:1;25683:74:0;;;13606:21:1;13663:2;13643:18;;;13636:30;13702:34;13682:18;;;13675:62;-1:-1:-1;;;13753:18:1;;;13746:40;13803:19;;25683:74:0;13422:406:1;25683:74:0;-1:-1:-1;;;;;;25775:16:0;;;;;:9;:16;;;;;;;25591:208::o;4763:103::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;45958:26::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45958:26:0;;-1:-1:-1;45958:26:0;:::o;48602:90::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48667:5:::1;:17:::0;48602:90::o;26336:104::-;26392:13;26425:7;26418:14;;;;;:::i;48700:73::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48752:6:::1;:13:::0;;-1:-1:-1;;48752:13:0::1;48761:4;48752:13;::::0;;48700:73::o;46250:864::-;46319:6;;;;46311:45;;;;-1:-1:-1;;;46311:45:0;;12492:2:1;46311:45:0;;;12474:21:1;12531:2;12511:18;;;12504:30;12570:28;12550:18;;;12543:56;12616:18;;46311:45:0;12290:350:1;46311:45:0;46367:14;46384:13;40075:10;:17;;39987:113;46384:13;46367:30;;46430:1;46416:11;:15;46408:62;;;;-1:-1:-1;;;46408:62:0;;11742:2:1;46408:62:0;;;11724:21:1;11781:2;11761:18;;;11754:30;11820:34;11800:18;;;11793:62;-1:-1:-1;;;11871:18:1;;;11864:32;11913:19;;46408:62:0;11540:398:1;46408:62:0;46513:9;;46489:20;46498:11;46489:6;:20;:::i;:::-;:33;;46481:65;;;;-1:-1:-1;;;46481:65:0;;10628:2:1;46481:65:0;;;10610:21:1;10667:2;10647:18;;;10640:30;-1:-1:-1;;;10686:18:1;;;10679:49;10745:18;;46481:65:0;10426:343:1;46481:65:0;4185:6;;-1:-1:-1;;;;;4185:6:0;46563:10;:21;46559:433;;46605:7;;;;;;;;:15;;:7;:15;46601:302;;;46649:25;46663:10;46649:13;:25::i;:::-;46641:61;;;;-1:-1:-1;;;46641:61:0;;12847:2:1;46641:61:0;;;12829:21:1;12886:2;12866:18;;;12859:30;12925:25;12905:18;;;12898:53;12968:18;;46641:61:0;12645:347:1;46641:61:0;46744:14;;46729:11;:29;;46721:66;;;;-1:-1:-1;;;46721:66:0;;11389:2:1;46721:66:0;;;11371:21:1;11428:2;11408:18;;;11401:30;-1:-1:-1;;;11447:18:1;;;11440:54;11511:18;;46721:66:0;11187:348:1;46721:66:0;46601:302;;;46851:7;;46836:11;:22;;46828:59;;;;-1:-1:-1;;;46828:59:0;;11389:2:1;46828:59:0;;;11371:21:1;11428:2;11408:18;;;11401:30;-1:-1:-1;;;11447:18:1;;;11440:54;11511:18;;46828:59:0;11187:348:1;46828:59:0;46946:11;46938:5;;:19;;;;:::i;:::-;46925:9;:32;;46917:63;;;;-1:-1:-1;;;46917:63:0;;12145:2:1;46917:63:0;;;12127:21:1;12184:2;12164:18;;;12157:30;-1:-1:-1;;;12203:18:1;;;12196:48;12261:18;;46917:63:0;11943:342:1;46917:63:0;47021:1;47004:103;47029:11;47024:1;:16;47004:103;;47062:33;47072:10;47084;47093:1;47084:6;:10;:::i;:::-;47062:9;:33::i;:::-;47042:3;;;;:::i;:::-;;;;47004:103;;28019:155;28114:52;2916:10;28147:8;28157;28114:18;:52::i;29142:328::-;29317:41;2916:10;29350:7;29317:18;:41::i;:::-;29309:103;;;;-1:-1:-1;;;29309:103:0;;;;;;;:::i;:::-;29423:39;29437:4;29443:2;29447:7;29456:5;29423:13;:39::i;:::-;29142:328;;;;:::o;47139:355::-;31045:4;31069:16;;;:7;:16;;;;;;47212:13;;-1:-1:-1;;;;;31069:16:0;47238:76;;;;-1:-1:-1;;;47238:76:0;;15580:2:1;47238:76:0;;;15562:21:1;15619:2;15599:18;;;15592:30;15658:34;15638:18;;;15631:62;-1:-1:-1;;;15709:18:1;;;15702:45;15764:19;;47238:76:0;15378:411:1;47238:76:0;47325:24;47352:10;:8;:10::i;:::-;47325:37;;47407:1;47386:10;47380:24;:28;:106;;;;;;;;;;;;;;;;;47435:10;47452:18;:7;:16;:18::i;:::-;47418:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47380:106;47373:113;47139:355;-1:-1:-1;;;47139:355:0:o;47759:347::-;47819:16;47848:18;47869:19;47879:8;47869:9;:19::i;:::-;47848:40;;47899:25;47941:10;47927:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47927:25:0;;47899:53;;47968:9;47963:110;47983:10;47979:1;:14;47963:110;;;48029:32;48049:8;48059:1;48029:19;:32::i;:::-;48015:8;48024:1;48015:11;;;;;;;;:::i;:::-;;;;;;;;;;:46;47995:3;;;;:::i;:::-;;;;47963:110;;;-1:-1:-1;48090:8:0;47759:347;-1:-1:-1;;;47759:347:0:o;5021:201::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5110:22:0;::::1;5102:73;;;::::0;-1:-1:-1;;;5102:73:0;;8699:2:1;5102:73:0::1;::::0;::::1;8681:21:1::0;8738:2;8718:18;;;8711:30;8777:34;8757:18;;;8750:62;-1:-1:-1;;;8828:18:1;;;8821:36;8874:19;;5102:73:0::1;8497:402:1::0;5102:73:0::1;5186:28;5205:8;5186:18;:28::i;49026:138::-:0;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;49107:16:::1;49114:9;;49107:16;:::i;:::-;49134:22;:9;49146:10:::0;;49134:22:::1;:::i;6813:326::-:0;-1:-1:-1;;;;;7108:19:0;;:23;;;6813:326::o;25222:305::-;25324:4;-1:-1:-1;;;;;;25361:40:0;;-1:-1:-1;;;25361:40:0;;:105;;-1:-1:-1;;;;;;;25418:48:0;;-1:-1:-1;;;25418:48:0;25361:105;:158;;;-1:-1:-1;;;;;;;;;;17005:40:0;;;25483:36;16896:157;35126:174;35201:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35201:29:0;-1:-1:-1;;;;;35201:29:0;;;;;;;;:24;;35255:23;35201:24;35255:14;:23::i;:::-;-1:-1:-1;;;;;35246:46:0;;;;;;;;;;;35126:174;;:::o;31274:348::-;31367:4;31069:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31069:16:0;31384:73;;;;-1:-1:-1;;;31384:73:0;;10976:2:1;31384:73:0;;;10958:21:1;11015:2;10995:18;;;10988:30;11054:34;11034:18;;;11027:62;-1:-1:-1;;;11105:18:1;;;11098:42;11157:19;;31384:73:0;10774:408:1;31384:73:0;31468:13;31484:23;31499:7;31484:14;:23::i;:::-;31468:39;;31537:5;-1:-1:-1;;;;;31526:16:0;:7;-1:-1:-1;;;;;31526:16:0;;:51;;;;31570:7;-1:-1:-1;;;;;31546:31:0;:20;31558:7;31546:11;:20::i;:::-;-1:-1:-1;;;;;31546:31:0;;31526:51;:87;;;-1:-1:-1;;;;;;28366:25:0;;;28342:4;28366:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31581:32;31518:96;31274:348;-1:-1:-1;;;;31274:348:0:o;34383:625::-;34542:4;-1:-1:-1;;;;;34515:31:0;:23;34530:7;34515:14;:23::i;:::-;-1:-1:-1;;;;;34515:31:0;;34507:81;;;;-1:-1:-1;;;34507:81:0;;9106:2:1;34507:81:0;;;9088:21:1;9145:2;9125:18;;;9118:30;9184:34;9164:18;;;9157:62;-1:-1:-1;;;9235:18:1;;;9228:35;9280:19;;34507:81:0;8904:401:1;34507:81:0;-1:-1:-1;;;;;34607:16:0;;34599:65;;;;-1:-1:-1;;;34599:65:0;;9869:2:1;34599:65:0;;;9851:21:1;9908:2;9888:18;;;9881:30;9947:34;9927:18;;;9920:62;-1:-1:-1;;;9998:18:1;;;9991:34;10042:19;;34599:65:0;9667:400:1;34599:65:0;34677:39;34698:4;34704:2;34708:7;34677:20;:39::i;:::-;34781:29;34798:1;34802:7;34781:8;:29::i;:::-;-1:-1:-1;;;;;34823:15:0;;;;;;:9;:15;;;;;:20;;34842:1;;34823:15;:20;;34842:1;;34823:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34854:13:0;;;;;;:9;:13;;;;;:18;;34871:1;;34854:13;:18;;34871:1;;34854:18;:::i;:::-;;;;-1:-1:-1;;34883:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34883:21:0;-1:-1:-1;;;;;34883:21:0;;;;;;;;;34922:27;;34883:16;;34922:27;;;;;;;27319:341;27249:411;;:::o;5382:191::-;5475:6;;;-1:-1:-1;;;;;5492:17:0;;;-1:-1:-1;;;;;;5492:17:0;;;;;;;5525:40;;5475:6;;;5492:17;5475:6;;5525:40;;5456:16;;5525:40;5445:128;5382:191;:::o;31964:110::-;32040:26;32050:2;32054:7;32040:26;;;;;;;;;;;;:9;:26::i;35442:315::-;35597:8;-1:-1:-1;;;;;35588:17:0;:5;-1:-1:-1;;;;;35588:17:0;;;35580:55;;;;-1:-1:-1;;;35580:55:0;;10274:2:1;35580:55:0;;;10256:21:1;10313:2;10293:18;;;10286:30;10352:27;10332:18;;;10325:55;10397:18;;35580:55:0;10072:349:1;35580:55:0;-1:-1:-1;;;;;35646:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35646:46:0;;;;;;;;;;35708:41;;7390::1;;;35708::0;;7363:18:1;35708:41:0;;;;;;;35442:315;;;:::o;30352:::-;30509:28;30519:4;30525:2;30529:7;30509:9;:28::i;:::-;30556:48;30579:4;30585:2;30589:7;30598:5;30556:22;:48::i;:::-;30548:111;;;;-1:-1:-1;;;30548:111:0;;;;;;;:::i;46111:108::-;46171:13;46204:7;46197:14;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;41023:589;-1:-1:-1;;;;;41229:18:0;;41225:187;;41264:40;41296:7;42439:10;:17;;42412:24;;;;:15;:24;;;;;:44;;;42467:24;;;;;;;;;;;;42335:164;41264:40;41225:187;;;41334:2;-1:-1:-1;;;;;41326:10:0;:4;-1:-1:-1;;;;;41326:10:0;;41322:90;;41353:47;41386:4;41392:7;41353:32;:47::i;:::-;-1:-1:-1;;;;;41426:16:0;;41422:183;;41459:45;41496:7;41459:36;:45::i;41422:183::-;41532:4;-1:-1:-1;;;;;41526:10:0;:2;-1:-1:-1;;;;;41526:10:0;;41522:83;;41553:40;41581:2;41585:7;41553:27;:40::i;32301:321::-;32431:18;32437:2;32441:7;32431:5;:18::i;:::-;32482:54;32513:1;32517:2;32521:7;32530:5;32482:22;:54::i;:::-;32460:154;;;;-1:-1:-1;;;32460:154:0;;;;;;;:::i;36322:799::-;36477:4;-1:-1:-1;;;;;36498:13:0;;7108:19;:23;36494:620;;36534:72;;-1:-1:-1;;;36534:72:0;;-1:-1:-1;;;;;36534:36:0;;;;;:72;;2916:10;;36585:4;;36591:7;;36600:5;;36534:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36534:72:0;;;;;;;;-1:-1:-1;;36534:72:0;;;;;;;;;;;;:::i;:::-;;;36530:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36776:13:0;;36772:272;;36819:60;;-1:-1:-1;;;36819:60:0;;;;;;;:::i;36772:272::-;36994:6;36988:13;36979:6;36975:2;36971:15;36964:38;36530:529;-1:-1:-1;;;;;;36657:51:0;-1:-1:-1;;;36657:51:0;;-1:-1:-1;36650:58:0;;36494:620;-1:-1:-1;37098:4:0;36322:799;;;;;;:::o;43126:988::-;43392:22;43442:1;43417:22;43434:4;43417:16;:22::i;:::-;:26;;;;:::i;:::-;43454:18;43475:26;;;:17;:26;;;;;;43392:51;;-1:-1:-1;43608:28:0;;;43604:328;;-1:-1:-1;;;;;43675:18:0;;43653:19;43675:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43726:30;;;;;;:44;;;43843:30;;:17;:30;;;;;:43;;;43604:328;-1:-1:-1;44028:26:0;;;;:17;:26;;;;;;;;44021:33;;;-1:-1:-1;;;;;44072:18:0;;;;;:12;:18;;;;;:34;;;;;;;44065:41;43126:988::o;44409:1079::-;44687:10;:17;44662:22;;44687:21;;44707:1;;44687:21;:::i;:::-;44719:18;44740:24;;;:15;:24;;;;;;45113:10;:26;;44662:46;;-1:-1:-1;44740:24:0;;44662:46;;45113:26;;;;;;:::i;:::-;;;;;;;;;45091:48;;45177:11;45152:10;45163;45152:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45257:28;;;:15;:28;;;;;;;:41;;;45429:24;;;;;45422:31;45464:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44480:1008;;;44409:1079;:::o;41913:221::-;41998:14;42015:20;42032:2;42015:16;:20::i;:::-;-1:-1:-1;;;;;42046:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42091:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41913:221:0:o;32958:439::-;-1:-1:-1;;;;;33038:16:0;;33030:61;;;;-1:-1:-1;;;33030:61:0;;14445:2:1;33030:61:0;;;14427:21:1;;;14464:18;;;14457:30;14523:34;14503:18;;;14496:62;14575:18;;33030:61:0;14243:356:1;33030:61:0;31045:4;31069:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31069:16:0;:30;33102:58;;;;-1:-1:-1;;;33102:58:0;;9512:2:1;33102:58:0;;;9494:21:1;9551:2;9531:18;;;9524:30;9590;9570:18;;;9563:58;9638:18;;33102:58:0;9310:352:1;33102:58:0;33173:45;33202:1;33206:2;33210:7;33173:20;:45::i;:::-;-1:-1:-1;;;;;33231:13:0;;;;;;:9;:13;;;;;:18;;33248:1;;33231:13;:18;;33248:1;;33231:18;:::i;:::-;;;;-1:-1:-1;;33260:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33260:21:0;-1:-1:-1;;;;;33260:21:0;;;;;;;;33299:33;;33260:16;;;33299:33;;33260:16;;33299:33;48211:21:::1;48136:104:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:615::-;2985:6;2993;3046:2;3034:9;3025:7;3021:23;3017:32;3014:52;;;3062:1;3059;3052:12;3014:52;3102:9;3089:23;3131:18;3172:2;3164:6;3161:14;3158:34;;;3188:1;3185;3178:12;3158:34;3226:6;3215:9;3211:22;3201:32;;3271:7;3264:4;3260:2;3256:13;3252:27;3242:55;;3293:1;3290;3283:12;3242:55;3333:2;3320:16;3359:2;3351:6;3348:14;3345:34;;;3375:1;3372;3365:12;3345:34;3428:7;3423:2;3413:6;3410:1;3406:14;3402:2;3398:23;3394:32;3391:45;3388:65;;;3449:1;3446;3439:12;3388:65;3480:2;3472:11;;;;;3502:6;;-1:-1:-1;2899:615:1;;-1:-1:-1;;;;2899:615:1:o;3519:245::-;3577:6;3630:2;3618:9;3609:7;3605:23;3601:32;3598:52;;;3646:1;3643;3636:12;3598:52;3685:9;3672:23;3704:30;3728:5;3704:30;:::i;3769:249::-;3838:6;3891:2;3879:9;3870:7;3866:23;3862:32;3859:52;;;3907:1;3904;3897:12;3859:52;3939:9;3933:16;3958:30;3982:5;3958:30;:::i;4023:450::-;4092:6;4145:2;4133:9;4124:7;4120:23;4116:32;4113:52;;;4161:1;4158;4151:12;4113:52;4201:9;4188:23;4234:18;4226:6;4223:30;4220:50;;;4266:1;4263;4256:12;4220:50;4289:22;;4342:4;4334:13;;4330:27;-1:-1:-1;4320:55:1;;4371:1;4368;4361:12;4320:55;4394:73;4459:7;4454:2;4441:16;4436:2;4432;4428:11;4394:73;:::i;4478:180::-;4537:6;4590:2;4578:9;4569:7;4565:23;4561:32;4558:52;;;4606:1;4603;4596:12;4558:52;-1:-1:-1;4629:23:1;;4478:180;-1:-1:-1;4478:180:1:o;4663:257::-;4704:3;4742:5;4736:12;4769:6;4764:3;4757:19;4785:63;4841:6;4834:4;4829:3;4825:14;4818:4;4811:5;4807:16;4785:63;:::i;:::-;4902:2;4881:15;-1:-1:-1;;4877:29:1;4868:39;;;;4909:4;4864:50;;4663:257;-1:-1:-1;;4663:257:1:o;4925:772::-;5306:3;5344:6;5338:13;5360:53;5406:6;5401:3;5394:4;5386:6;5382:17;5360:53;:::i;:::-;-1:-1:-1;;;5435:16:1;;;5460:18;;;5503:13;;5525:65;5503:13;5577:1;5566:13;;5559:4;5547:17;;5525:65;:::i;:::-;-1:-1:-1;;;5653:1:1;5609:20;;;;5645:10;;;5638:27;5689:1;5681:10;;4925:772;-1:-1:-1;;;;4925:772:1:o;6120:488::-;-1:-1:-1;;;;;6389:15:1;;;6371:34;;6441:15;;6436:2;6421:18;;6414:43;6488:2;6473:18;;6466:34;;;6536:3;6531:2;6516:18;;6509:31;;;6314:4;;6557:45;;6582:19;;6574:6;6557:45;:::i;:::-;6549:53;6120:488;-1:-1:-1;;;;;;6120:488:1:o;6613:632::-;6784:2;6836:21;;;6906:13;;6809:18;;;6928:22;;;6755:4;;6784:2;7007:15;;;;6981:2;6966:18;;;6755:4;7050:169;7064:6;7061:1;7058:13;7050:169;;;7125:13;;7113:26;;7194:15;;;;7159:12;;;;7086:1;7079:9;7050:169;;;-1:-1:-1;7236:3:1;;6613:632;-1:-1:-1;;;;;;6613:632:1:o;7442:219::-;7591:2;7580:9;7573:21;7554:4;7611:44;7651:2;7640:9;7636:18;7628:6;7611:44;:::i;8078:414::-;8280:2;8262:21;;;8319:2;8299:18;;;8292:30;8358:34;8353:2;8338:18;;8331:62;-1:-1:-1;;;8424:2:1;8409:18;;8402:48;8482:3;8467:19;;8078:414::o;15017:356::-;15219:2;15201:21;;;15238:18;;;15231:30;15297:34;15292:2;15277:18;;15270:62;15364:2;15349:18;;15017:356::o;16196:413::-;16398:2;16380:21;;;16437:2;16417:18;;;16410:30;16476:34;16471:2;16456:18;;16449:62;-1:-1:-1;;;16542:2:1;16527:18;;16520:47;16599:3;16584:19;;16196:413::o;17209:128::-;17249:3;17280:1;17276:6;17273:1;17270:13;17267:39;;;17286:18;;:::i;:::-;-1:-1:-1;17322:9:1;;17209:128::o;17342:120::-;17382:1;17408;17398:35;;17413:18;;:::i;:::-;-1:-1:-1;17447:9:1;;17342:120::o;17467:168::-;17507:7;17573:1;17569;17565:6;17561:14;17558:1;17555:21;17550:1;17543:9;17536:17;17532:45;17529:71;;;17580:18;;:::i;:::-;-1:-1:-1;17620:9:1;;17467:168::o;17640:125::-;17680:4;17708:1;17705;17702:8;17699:34;;;17713:18;;:::i;:::-;-1:-1:-1;17750:9:1;;17640:125::o;17770:258::-;17842:1;17852:113;17866:6;17863:1;17860:13;17852:113;;;17942:11;;;17936:18;17923:11;;;17916:39;17888:2;17881:10;17852:113;;;17983:6;17980:1;17977:13;17974:48;;;-1:-1:-1;;18018:1:1;18000:16;;17993:27;17770:258::o;18033:380::-;18112:1;18108:12;;;;18155;;;18176:61;;18230:4;18222:6;18218:17;18208:27;;18176:61;18283:2;18275:6;18272:14;18252:18;18249:38;18246:161;;;18329:10;18324:3;18320:20;18317:1;18310:31;18364:4;18361:1;18354:15;18392:4;18389:1;18382:15;18246:161;;18033:380;;;:::o;18418:135::-;18457:3;-1:-1:-1;;18478:17:1;;18475:43;;;18498:18;;:::i;:::-;-1:-1:-1;18545:1:1;18534:13;;18418:135::o;18558:112::-;18590:1;18616;18606:35;;18621:18;;:::i;:::-;-1:-1:-1;18655:9:1;;18558:112::o;18675:127::-;18736:10;18731:3;18727:20;18724:1;18717:31;18767:4;18764:1;18757:15;18791:4;18788:1;18781:15;18807:127;18868:10;18863:3;18859:20;18856:1;18849:31;18899:4;18896:1;18889:15;18923:4;18920:1;18913:15;18939:127;19000:10;18995:3;18991:20;18988:1;18981:31;19031:4;19028:1;19021:15;19055:4;19052:1;19045:15;19071:127;19132:10;19127:3;19123:20;19120:1;19113:31;19163:4;19160:1;19153:15;19187:4;19184:1;19177:15;19203:127;19264:10;19259:3;19255:20;19252:1;19245:31;19295:4;19292:1;19285:15;19319:4;19316:1;19309:15;19335:131;-1:-1:-1;;;;;;19409:32:1;;19399:43;;19389:71;;19456:1;19453;19446:12
Swarm Source
ipfs://a2e8de9a58cf7e23f79548387108434fc78b7c60ca039aef6d97565004d1ce95
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.