ERC-721
NFT
Overview
Max Total Supply
129 ELON
Holders
74
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 ELONLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ShibElon
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-23 */ // SPDX-License-Identifier: MIT // Author : iblockchainer (Telegram) // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), "ERC721: owner query for nonexistent token" ); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } pragma solidity ^0.8.0; contract ShibElon is ERC721, Ownable { uint16 public mintCount = 0; uint16 supply = totalSupply(); uint256 public MAX_SUPPLY = 500; uint256 public FREECLAIM_RESERVED = 100; uint256 public MAX_ALLOWED = 8; uint256 public price = 100000000000000000; //0.1 Ether string baseTokenURI; bool public saleOpen = true; bool public freeClaim = true; address public oldContractAddress = 0x6ACf4FDC54281441b7C0dD736301AC83fd5F6160; //ShibElon Old Contract - Mainnet event NFTMinted(uint256 totalMinted); constructor(string memory baseURI) ERC721("ShibElon", "ELON") { setBaseURI(baseURI); } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function setPrice(uint256 _newPrice) public onlyOwner { price = _newPrice; } function setMaxAllowd(uint256 _maxAllowed) public onlyOwner { MAX_ALLOWED = _maxAllowed; } function setMaxSupply(uint256 _max_supply) public onlyOwner { require(_max_supply <= MAX_SUPPLY,'Max supply can not be more than 8000'); MAX_SUPPLY = _max_supply; } function setMintCount(uint16 _mintCount) public onlyOwner { mintCount = _mintCount; } function totalSupply() public view returns (uint16) { return mintCount; } function burnUnsold() external onlyOwner { MAX_SUPPLY = totalSupply(); } function getPrice() external view returns(uint256){ return price; } //Close sale function pauseSale() public onlyOwner { saleOpen = false; } //Open sale function unpauseSale() public onlyOwner { saleOpen = true; } //Open freeclaim function setOldContractAddress(address _oldContractAddress) public onlyOwner { oldContractAddress = _oldContractAddress; } //Open freeclaim function unpauseFreeClaim() public onlyOwner { freeClaim = true; } //Close freeclaim function pauseFreeClaim() public onlyOwner { freeClaim = true; } function withdrawAll() public onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function freeClaimEligible() public view returns (bool) { IERC721 nft = IERC721(oldContractAddress); if(nft.balanceOf(msg.sender) > 0 && balanceOf(msg.sender) < nft.balanceOf(msg.sender)){ return true; }else{ return false; } } //Claim NFT function claimNFT() public payable { IERC721 nft = IERC721(oldContractAddress); supply = totalSupply(); if (msg.sender != owner()) { require((freeClaim == true), "Claim NFT is not open please try again later"); } require( nft.balanceOf(msg.sender) > 0, "You are not eligible for free claim" ); require(balanceOf(msg.sender) < nft.balanceOf(msg.sender), "You have claimed allowd NFTs for this account"); require( totalSupply() + nft.balanceOf(msg.sender) <= (FREECLAIM_RESERVED), "All allowed NFTs claimed" ); mintCount += uint16(nft.balanceOf(msg.sender)); for (uint256 i = 0; i < nft.balanceOf(msg.sender); i++) { _safeMint(_msgSender(), ++supply); emit NFTMinted(supply); } FREECLAIM_RESERVED = FREECLAIM_RESERVED - nft.balanceOf(msg.sender); } //mint NFT function mintNFT(uint16 _count) public payable { supply = totalSupply(); if (msg.sender != owner()) { require((saleOpen == true), "Sale is not open please try again later"); } require( _count > 0 && (balanceOf(msg.sender)+_count) <= MAX_ALLOWED, "You have reached the NFT minting limit per transaction" ); require(balanceOf(msg.sender) < MAX_ALLOWED, "You have reached maximum NFT minting limit per account"); if (msg.sender != owner()) { require( totalSupply() + _count <= MAX_SUPPLY, "All NFTs sold" ); }else{ require( totalSupply() + _count <= (MAX_SUPPLY), "All NFTs sold" ); } require( msg.value >= price * _count, "Ether sent with this transaction is not correct" ); mintCount += _count; for (uint256 i = 0; i < _count; i++) { _safeMint(_msgSender(), ++supply); emit NFTMinted(supply); } } function airdrop(address[] calldata _recipients) external onlyOwner { supply = totalSupply(); require( totalSupply() + _recipients.length <= MAX_SUPPLY, "Airdrop minting will exceed maximum supply" ); require(_recipients.length != 0, "Address not found for minting"); for (uint256 i = 0; i < _recipients.length; i++) { require(_recipients[i] != address(0), "Minting to Null address"); _safeMint(_recipients[i], ++supply); } mintCount = mintCount + uint16(_recipients.length); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"NFTMinted","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":"FREECLAIM_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ALLOWED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnUnsold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeClaimEligible","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCount","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_count","type":"uint16"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oldContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"pauseFreeClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxAllowed","type":"uint256"}],"name":"setMaxAllowd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintCount","type":"uint16"}],"name":"setMintCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_oldContractAddress","type":"address"}],"name":"setOldContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpauseFreeClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526006805461ffff60a01b191690556200001c62000157565b6006805461ffff60b01b1916600160b01b61ffff93909316929092029190911790556101f46007556064600890815560095567016345785d8a0000600a55600c805461010060ff1990911660011761ff0019161762010000600160b01b031916756acf4fdc54281441b7c0dd736301ac83fd5f61600000179055348015620000a357600080fd5b506040516200336038038062003360833981016040819052620000c691620002db565b604080518082018252600881526729b434b122b637b760c11b60208083019182528351808501909452600484526322a627a760e11b908401528151919291620001129160009162000235565b5080516200012890600190602084019062000235565b505050620001456200013f6200016860201b60201c565b6200016c565b6200015081620001be565b5062000432565b600654600160a01b900461ffff1690565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001c862000168565b6001600160a01b0316620001db62000226565b6001600160a01b0316146200020d5760405162461bcd60e51b81526004016200020490620003aa565b60405180910390fd5b80516200022290600b90602084019062000235565b5050565b6006546001600160a01b031690565b8280546200024390620003df565b90600052602060002090601f016020900481019282620002675760008555620002b2565b82601f106200028257805160ff1916838001178555620002b2565b82800160010185558215620002b2579182015b82811115620002b257825182559160200191906001019062000295565b50620002c0929150620002c4565b5090565b5b80821115620002c05760008155600101620002c5565b60006020808385031215620002ee578182fd5b82516001600160401b038082111562000305578384fd5b818501915085601f83011262000319578384fd5b8151818111156200032e576200032e6200041c565b604051601f8201601f19168101850183811182821017156200035457620003546200041c565b60405281815283820185018810156200036b578586fd5b8592505b818310156200038e57838301850151818401860152918401916200036f565b818311156200039f57858583830101525b979650505050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600281046001821680620003f457607f821691505b602082108114156200041657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612f1e80620004426000396000f3fe6080604052600436106102515760003560e01c806391b7f5ed11610139578063b03f7685116100b6578063c87b56dd1161007a578063c87b56dd14610617578063dad6bb2c14610637578063df85b4b214610657578063e88d3b3e1461066c578063e985e9c514610681578063f2fde38b146106a157610251565b8063b03f7685146103fe578063b52a5851146105b8578063b77551fa146105cd578063b88d4fde146105e2578063bb33d7291461060257610251565b806399288dbb116100fd57806399288dbb146105465780639a6a62371461055b578063a035b1fe14610570578063a22cb46514610585578063a39e9a2f146105a557610251565b806391b7f5ed146104d2578063957888c3146104f257806395d89b41146105075780639659867e1461051c57806398d5fdca1461053157610251565b806355f804b3116101d25780636f8b44b0116101965780636f8b44b01461043357806370a0823114610453578063715018a614610473578063729ad39e14610488578063853828b6146104a85780638da5cb5b146104bd57610251565b806355f804b3146103b65780636352211e146103d6578063672756ad146103f65780636c5c0991146103fe5780636cf39f841461041357610251565b806318160ddd1161021957806318160ddd1461031d57806323b872dd1461033f57806332cb6b0c1461035f57806342842e0e1461038157806355367ba9146103a157610251565b806301ffc9a71461025657806305bce6731461028c57806306fdde03146102ae578063081812fc146102d0578063095ea7b3146102fd575b600080fd5b34801561026257600080fd5b5061027661027136600461239f565b6106c1565b604051610283919061251b565b60405180910390f35b34801561029857600080fd5b506102ac6102a73660046121cd565b610709565b005b3480156102ba57600080fd5b506102c361077b565b6040516102839190612526565b3480156102dc57600080fd5b506102f06102eb36600461243f565b61080e565b60405161028391906124ca565b34801561030957600080fd5b506102ac610318366004612307565b610851565b34801561032957600080fd5b506103326108e9565b6040516102839190612d41565b34801561034b57600080fd5b506102ac61035a366004612219565b6108fa565b34801561036b57600080fd5b50610374610932565b6040516102839190612d50565b34801561038d57600080fd5b506102ac61039c366004612219565b610938565b3480156103ad57600080fd5b506102ac610953565b3480156103c257600080fd5b506102ac6103d13660046123d7565b61099e565b3480156103e257600080fd5b506102f06103f136600461243f565b6109f4565b6102ac610a29565b34801561040a57600080fd5b506102ac610f07565b34801561041f57600080fd5b506102ac61042e36600461243f565b610f57565b34801561043f57600080fd5b506102ac61044e36600461243f565b610f9b565b34801561045f57600080fd5b5061037461046e3660046121cd565b611001565b34801561047f57600080fd5b506102ac611045565b34801561049457600080fd5b506102ac6104a3366004612330565b611090565b3480156104b457600080fd5b506102ac61123a565b3480156104c957600080fd5b506102f06112f8565b3480156104de57600080fd5b506102ac6104ed36600461243f565b611307565b3480156104fe57600080fd5b5061027661134b565b34801561051357600080fd5b506102c3611482565b34801561052857600080fd5b50610332611491565b34801561053d57600080fd5b506103746114a2565b34801561055257600080fd5b506102766114a8565b34801561056757600080fd5b506103746114b1565b34801561057c57600080fd5b506103746114b7565b34801561059157600080fd5b506102ac6105a03660046122cd565b6114bd565b6102ac6105b336600461241d565b61158b565b3480156105c457600080fd5b506102ac6117da565b3480156105d957600080fd5b5061037461182a565b3480156105ee57600080fd5b506102ac6105fd366004612254565b611830565b34801561060e57600080fd5b506102ac61186f565b34801561062357600080fd5b506102c361063236600461243f565b6118bd565b34801561064357600080fd5b506102ac61065236600461241d565b611940565b34801561066357600080fd5b506102f06119a1565b34801561067857600080fd5b506102766119b6565b34801561068d57600080fd5b5061027661069c3660046121e7565b6119c4565b3480156106ad57600080fd5b506102ac6106bc3660046121cd565b6119f2565b60006001600160e01b031982166380ac58cd60e01b14806106f257506001600160e01b03198216635b5e139f60e01b145b80610701575061070182611a60565b90505b919050565b610711611a79565b6001600160a01b03166107226112f8565b6001600160a01b0316146107515760405162461bcd60e51b815260040161074890612a10565b60405180910390fd5b600c80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b60606000805461078a90612e04565b80601f01602080910402602001604051908101604052809291908181526020018280546107b690612e04565b80156108035780601f106107d857610100808354040283529160200191610803565b820191906000526020600020905b8154815290600101906020018083116107e657829003601f168201915b505050505090505b90565b600061081982611a7d565b6108355760405162461bcd60e51b815260040161074890612975565b506000908152600460205260409020546001600160a01b031690565b600061085c826109f4565b9050806001600160a01b0316836001600160a01b031614156108905760405162461bcd60e51b815260040161074890612b61565b806001600160a01b03166108a2611a79565b6001600160a01b031614806108be57506108be8161069c611a79565b6108da5760405162461bcd60e51b815260040161074890612764565b6108e48383611a9a565b505050565b600654600160a01b900461ffff1690565b61090b610905611a79565b82611b08565b6109275760405162461bcd60e51b815260040161074890612bcc565b6108e4838383611b8d565b60075481565b6108e483838360405180602001604052806000815250611830565b61095b611a79565b6001600160a01b031661096c6112f8565b6001600160a01b0316146109925760405162461bcd60e51b815260040161074890612a10565b600c805460ff19169055565b6109a6611a79565b6001600160a01b03166109b76112f8565b6001600160a01b0316146109dd5760405162461bcd60e51b815260040161074890612a10565b80516109f090600b9060208401906120b6565b5050565b6000818152600260205260408120546001600160a01b0316806107015760405162461bcd60e51b815260040161074890612855565b600c546201000090046001600160a01b0316610a436108e9565b600660166101000a81548161ffff021916908361ffff160217905550610a676112f8565b6001600160a01b0316336001600160a01b031614610aac57600c5460ff610100909104161515600114610aac5760405162461bcd60e51b8152600401610748906128f4565b6040516370a0823160e01b81526000906001600160a01b038316906370a0823190610adb9033906004016124ca565b60206040518083038186803b158015610af357600080fd5b505afa158015610b07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2b9190612457565b11610b485760405162461bcd60e51b815260040161074890612c1d565b6040516370a0823160e01b81526001600160a01b038216906370a0823190610b749033906004016124ca565b60206040518083038186803b158015610b8c57600080fd5b505afa158015610ba0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc49190612457565b610bcd33611001565b10610bea5760405162461bcd60e51b815260040161074890612b14565b6008546040516370a0823160e01b81526001600160a01b038316906370a0823190610c199033906004016124ca565b60206040518083038186803b158015610c3157600080fd5b505afa158015610c45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c699190612457565b610c716108e9565b61ffff16610c7f9190612d76565b1115610c9d5760405162461bcd60e51b815260040161074890612a45565b6040516370a0823160e01b81526001600160a01b038216906370a0823190610cc99033906004016124ca565b60206040518083038186803b158015610ce157600080fd5b505afa158015610cf5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d199190612457565b60068054601490610d36908490600160a01b900461ffff16612d59565b92506101000a81548161ffff021916908361ffff16021790555060005b6040516370a0823160e01b81526001600160a01b038316906370a0823190610d7f9033906004016124ca565b60206040518083038186803b158015610d9757600080fd5b505afa158015610dab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dcf9190612457565b811015610e7757610e1e610de1611a79565b60068054601690610dfc90600160b01b900461ffff16612e3f565b91906101000a81548161ffff021916908361ffff160217905561ffff16611cba565b7fd9dc24857f317ed9abbbb42e920ede0104231eb1d3d70236a74887ffaf159868600660169054906101000a900461ffff16604051610e5d9190612d41565b60405180910390a180610e6f81612e61565b915050610d53565b506040516370a0823160e01b81526001600160a01b038216906370a0823190610ea49033906004016124ca565b60206040518083038186803b158015610ebc57600080fd5b505afa158015610ed0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef49190612457565b600854610f019190612dc1565b60085550565b610f0f611a79565b6001600160a01b0316610f206112f8565b6001600160a01b031614610f465760405162461bcd60e51b815260040161074890612a10565b600c805461ff001916610100179055565b610f5f611a79565b6001600160a01b0316610f706112f8565b6001600160a01b031614610f965760405162461bcd60e51b815260040161074890612a10565b600955565b610fa3611a79565b6001600160a01b0316610fb46112f8565b6001600160a01b031614610fda5760405162461bcd60e51b815260040161074890612a10565b600754811115610ffc5760405162461bcd60e51b815260040161074890612cfd565b600755565b60006001600160a01b0382166110295760405162461bcd60e51b81526004016107489061280b565b506001600160a01b031660009081526003602052604090205490565b61104d611a79565b6001600160a01b031661105e6112f8565b6001600160a01b0316146110845760405162461bcd60e51b815260040161074890612a10565b61108e6000611cd4565b565b611098611a79565b6001600160a01b03166110a96112f8565b6001600160a01b0316146110cf5760405162461bcd60e51b815260040161074890612a10565b6110d76108e9565b6006805461ffff92909216600160b01b0261ffff60b01b19909216919091179055600754816111046108e9565b61ffff166111129190612d76565b11156111305760405162461bcd60e51b8152600401610748906127c1565b8061114d5760405162461bcd60e51b815260040161074890612539565b60005b8181101561120057600083838381811061117a57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061118f91906121cd565b6001600160a01b031614156111b65760405162461bcd60e51b815260040161074890612570565b6111ee8383838181106111d957634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610de191906121cd565b806111f881612e61565b915050611150565b5060065461121a908290600160a01b900461ffff16612d59565b600660146101000a81548161ffff021916908361ffff1602179055505050565b611242611a79565b6001600160a01b03166112536112f8565b6001600160a01b0316146112795760405162461bcd60e51b815260040161074890612a10565b6000336001600160a01b0316476040516112929061080b565b60006040518083038185875af1925050503d80600081146112cf576040519150601f19603f3d011682016040523d82523d6000602084013e6112d4565b606091505b50509050806112f55760405162461bcd60e51b815260040161074890612ba2565b50565b6006546001600160a01b031690565b61130f611a79565b6001600160a01b03166113206112f8565b6001600160a01b0316146113465760405162461bcd60e51b815260040161074890612a10565b600a55565b600c546040516370a0823160e01b81526000916201000090046001600160a01b031690829082906370a08231906113869033906004016124ca565b60206040518083038186803b15801561139e57600080fd5b505afa1580156113b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113d69190612457565b11801561146557506040516370a0823160e01b81526001600160a01b038216906370a082319061140a9033906004016124ca565b60206040518083038186803b15801561142257600080fd5b505afa158015611436573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145a9190612457565b61146333611001565b105b1561147457600191505061080b565b600091505061080b565b5090565b60606001805461078a90612e04565b600654600160a01b900461ffff1681565b600a5490565b600c5460ff1681565b60095481565b600a5481565b6114c5611a79565b6001600160a01b0316826001600160a01b031614156114f65760405162461bcd60e51b8152600401610748906126ba565b8060056000611503611a79565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611547611a79565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161157f919061251b565b60405180910390a35050565b6115936108e9565b600660166101000a81548161ffff021916908361ffff1602179055506115b76112f8565b6001600160a01b0316336001600160a01b0316146115f657600c5460ff1615156001146115f65760405162461bcd60e51b815260040161074890612cb6565b60008161ffff1611801561162357506009548161ffff1661161633611001565b6116209190612d76565b11155b61163f5760405162461bcd60e51b815260040161074890612c60565b60095461164b33611001565b106116685760405162461bcd60e51b81526004016107489061289e565b6116706112f8565b6001600160a01b0316336001600160a01b0316146116c557600754816116946108e9565b61169e9190612d59565b61ffff1611156116c05760405162461bcd60e51b81526004016107489061273d565b6116fd565b600754816116d16108e9565b6116db9190612d59565b61ffff1611156116fd5760405162461bcd60e51b81526004016107489061273d565b8061ffff16600a5461170f9190612da2565b34101561172e5760405162461bcd60e51b8152600401610748906129c1565b80600660148282829054906101000a900461ffff1661174d9190612d59565b92506101000a81548161ffff021916908361ffff16021790555060005b8161ffff168110156109f057611781610de1611a79565b7fd9dc24857f317ed9abbbb42e920ede0104231eb1d3d70236a74887ffaf159868600660169054906101000a900461ffff166040516117c09190612d41565b60405180910390a1806117d281612e61565b91505061176a565b6117e2611a79565b6001600160a01b03166117f36112f8565b6001600160a01b0316146118195760405162461bcd60e51b815260040161074890612a10565b6118216108e9565b61ffff16600755565b60085481565b61184161183b611a79565b83611b08565b61185d5760405162461bcd60e51b815260040161074890612bcc565b61186984848484611d26565b50505050565b611877611a79565b6001600160a01b03166118886112f8565b6001600160a01b0316146118ae5760405162461bcd60e51b815260040161074890612a10565b600c805460ff19166001179055565b60606118c882611a7d565b6118e45760405162461bcd60e51b815260040161074890612ac5565b60006118ee611d59565b9050600081511161190e5760405180602001604052806000815250611939565b8061191884611d68565b60405160200161192992919061249b565b6040516020818303038152906040525b9392505050565b611948611a79565b6001600160a01b03166119596112f8565b6001600160a01b03161461197f5760405162461bcd60e51b815260040161074890612a10565b6006805461ffff909216600160a01b0261ffff60a01b19909216919091179055565b600c546201000090046001600160a01b031681565b600c54610100900460ff1681565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6119fa611a79565b6001600160a01b0316611a0b6112f8565b6001600160a01b031614611a315760405162461bcd60e51b815260040161074890612a10565b6001600160a01b038116611a575760405162461bcd60e51b8152600401610748906125f9565b6112f581611cd4565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611acf826109f4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b1382611a7d565b611b2f5760405162461bcd60e51b8152600401610748906126f1565b6000611b3a836109f4565b9050806001600160a01b0316846001600160a01b03161480611b755750836001600160a01b0316611b6a8461080e565b6001600160a01b0316145b80611b855750611b8581856119c4565b949350505050565b826001600160a01b0316611ba0826109f4565b6001600160a01b031614611bc65760405162461bcd60e51b815260040161074890612a7c565b6001600160a01b038216611bec5760405162461bcd60e51b815260040161074890612676565b611bf78383836108e4565b611c02600082611a9a565b6001600160a01b0383166000908152600360205260408120805460019290611c2b908490612dc1565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c59908490612d76565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109f0828260405180602001604052806000815250611e83565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d31848484611b8d565b611d3d84848484611eb6565b6118695760405162461bcd60e51b8152600401610748906125a7565b6060600b805461078a90612e04565b606081611d8d57506040805180820190915260018152600360fc1b6020820152610704565b8160005b8115611db75780611da181612e61565b9150611db09050600a83612d8e565b9150611d91565b60008167ffffffffffffffff811115611de057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e0a576020820181803683370190505b5090505b8415611b8557611e1f600183612dc1565b9150611e2c600a86612e7c565b611e37906030612d76565b60f81b818381518110611e5a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611e7c600a86612d8e565b9450611e0e565b611e8d8383611fd1565b611e9a6000848484611eb6565b6108e45760405162461bcd60e51b8152600401610748906125a7565b6000611eca846001600160a01b03166120b0565b15611fc657836001600160a01b031663150b7a02611ee6611a79565b8786866040518563ffffffff1660e01b8152600401611f0894939291906124de565b602060405180830381600087803b158015611f2257600080fd5b505af1925050508015611f52575060408051601f3d908101601f19168201909252611f4f918101906123bb565b60015b611fac573d808015611f80576040519150601f19603f3d011682016040523d82523d6000602084013e611f85565b606091505b508051611fa45760405162461bcd60e51b8152600401610748906125a7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b85565b506001949350505050565b6001600160a01b038216611ff75760405162461bcd60e51b815260040161074890612940565b61200081611a7d565b1561201d5760405162461bcd60e51b81526004016107489061263f565b612029600083836108e4565b6001600160a01b0382166000908152600360205260408120805460019290612052908490612d76565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b8280546120c290612e04565b90600052602060002090601f0160209004810192826120e4576000855561212a565b82601f106120fd57805160ff191683800117855561212a565b8280016001018555821561212a579182015b8281111561212a57825182559160200191906001019061210f565b5061147e9291505b8082111561147e5760008155600101612132565b600067ffffffffffffffff8084111561216157612161612ebc565b604051601f8501601f19168101602001828111828210171561218557612185612ebc565b60405284815291508183850186101561219d57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461070457600080fd5b6000602082840312156121de578081fd5b611939826121b6565b600080604083850312156121f9578081fd5b612202836121b6565b9150612210602084016121b6565b90509250929050565b60008060006060848603121561222d578081fd5b612236846121b6565b9250612244602085016121b6565b9150604084013590509250925092565b60008060008060808587031215612269578081fd5b612272856121b6565b9350612280602086016121b6565b925060408501359150606085013567ffffffffffffffff8111156122a2578182fd5b8501601f810187136122b2578182fd5b6122c187823560208401612146565b91505092959194509250565b600080604083850312156122df578182fd5b6122e8836121b6565b9150602083013580151581146122fc578182fd5b809150509250929050565b60008060408385031215612319578182fd5b612322836121b6565b946020939093013593505050565b60008060208385031215612342578182fd5b823567ffffffffffffffff80821115612359578384fd5b818501915085601f83011261236c578384fd5b81358181111561237a578485fd5b866020808302850101111561238d578485fd5b60209290920196919550909350505050565b6000602082840312156123b0578081fd5b813561193981612ed2565b6000602082840312156123cc578081fd5b815161193981612ed2565b6000602082840312156123e8578081fd5b813567ffffffffffffffff8111156123fe578182fd5b8201601f8101841361240e578182fd5b611b8584823560208401612146565b60006020828403121561242e578081fd5b813561ffff81168114611939578182fd5b600060208284031215612450578081fd5b5035919050565b600060208284031215612468578081fd5b5051919050565b60008151808452612487816020860160208601612dd8565b601f01601f19169290920160200192915050565b600083516124ad818460208801612dd8565b8351908301906124c1818360208801612dd8565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125119083018461246f565b9695505050505050565b901515815260200190565b600060208252611939602083018461246f565b6020808252601d908201527f41646472657373206e6f7420666f756e6420666f72206d696e74696e67000000604082015260600190565b60208082526017908201527f4d696e74696e6720746f204e756c6c2061646472657373000000000000000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600d908201526c105b1b081391951cc81cdbdb19609a1b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f41697264726f70206d696e74696e672077696c6c20657863656564206d6178696040820152696d756d20737570706c7960b01b606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526036908201527f596f7520686176652072656163686564206d6178696d756d204e4654206d696e6040820152751d1a5b99c81b1a5b5a5d081c195c881858d8dbdd5b9d60521b606082015260800190565b6020808252602c908201527f436c61696d204e4654206973206e6f74206f70656e20706c656173652074727960408201526b1030b3b0b4b7103630ba32b960a11b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602f908201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60408201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526018908201527f416c6c20616c6c6f776564204e46547320636c61696d65640000000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252602d908201527f596f75206861766520636c61696d656420616c6c6f7764204e46547320666f7260408201526c081d1a1a5cc81858d8dbdd5b9d609a1b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526023908201527f596f7520617265206e6f7420656c696769626c6520666f72206672656520636c60408201526261696d60e81b606082015260800190565b60208082526036908201527f596f752068617665207265616368656420746865204e4654206d696e74696e67604082015275103634b6b4ba103832b9103a3930b739b0b1ba34b7b760511b606082015260800190565b60208082526027908201527f53616c65206973206e6f74206f70656e20706c6561736520747279206167616960408201526637103630ba32b960c91b606082015260800190565b60208082526024908201527f4d617820737570706c792063616e206e6f74206265206d6f7265207468616e206040820152630383030360e41b606082015260800190565b61ffff91909116815260200190565b90815260200190565b600061ffff8083168185168083038211156124c1576124c1612e90565b60008219821115612d8957612d89612e90565b500190565b600082612d9d57612d9d612ea6565b500490565b6000816000190483118215151615612dbc57612dbc612e90565b500290565b600082821015612dd357612dd3612e90565b500390565b60005b83811015612df3578181015183820152602001612ddb565b838111156118695750506000910152565b600281046001821680612e1857607f821691505b60208210811415612e3957634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415612e5757612e57612e90565b6001019392505050565b6000600019821415612e7557612e75612e90565b5060010190565b600082612e8b57612e8b612ea6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112f557600080fdfea264697066735822122098dab28fdd8e2886849e42c26f2b906a0c378c03d7862af92fb2f17978e6b16064736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000023687474703a2f2f6e66742e73686962656c6f6e2e6e65742f756e72657665616c65642f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102515760003560e01c806391b7f5ed11610139578063b03f7685116100b6578063c87b56dd1161007a578063c87b56dd14610617578063dad6bb2c14610637578063df85b4b214610657578063e88d3b3e1461066c578063e985e9c514610681578063f2fde38b146106a157610251565b8063b03f7685146103fe578063b52a5851146105b8578063b77551fa146105cd578063b88d4fde146105e2578063bb33d7291461060257610251565b806399288dbb116100fd57806399288dbb146105465780639a6a62371461055b578063a035b1fe14610570578063a22cb46514610585578063a39e9a2f146105a557610251565b806391b7f5ed146104d2578063957888c3146104f257806395d89b41146105075780639659867e1461051c57806398d5fdca1461053157610251565b806355f804b3116101d25780636f8b44b0116101965780636f8b44b01461043357806370a0823114610453578063715018a614610473578063729ad39e14610488578063853828b6146104a85780638da5cb5b146104bd57610251565b806355f804b3146103b65780636352211e146103d6578063672756ad146103f65780636c5c0991146103fe5780636cf39f841461041357610251565b806318160ddd1161021957806318160ddd1461031d57806323b872dd1461033f57806332cb6b0c1461035f57806342842e0e1461038157806355367ba9146103a157610251565b806301ffc9a71461025657806305bce6731461028c57806306fdde03146102ae578063081812fc146102d0578063095ea7b3146102fd575b600080fd5b34801561026257600080fd5b5061027661027136600461239f565b6106c1565b604051610283919061251b565b60405180910390f35b34801561029857600080fd5b506102ac6102a73660046121cd565b610709565b005b3480156102ba57600080fd5b506102c361077b565b6040516102839190612526565b3480156102dc57600080fd5b506102f06102eb36600461243f565b61080e565b60405161028391906124ca565b34801561030957600080fd5b506102ac610318366004612307565b610851565b34801561032957600080fd5b506103326108e9565b6040516102839190612d41565b34801561034b57600080fd5b506102ac61035a366004612219565b6108fa565b34801561036b57600080fd5b50610374610932565b6040516102839190612d50565b34801561038d57600080fd5b506102ac61039c366004612219565b610938565b3480156103ad57600080fd5b506102ac610953565b3480156103c257600080fd5b506102ac6103d13660046123d7565b61099e565b3480156103e257600080fd5b506102f06103f136600461243f565b6109f4565b6102ac610a29565b34801561040a57600080fd5b506102ac610f07565b34801561041f57600080fd5b506102ac61042e36600461243f565b610f57565b34801561043f57600080fd5b506102ac61044e36600461243f565b610f9b565b34801561045f57600080fd5b5061037461046e3660046121cd565b611001565b34801561047f57600080fd5b506102ac611045565b34801561049457600080fd5b506102ac6104a3366004612330565b611090565b3480156104b457600080fd5b506102ac61123a565b3480156104c957600080fd5b506102f06112f8565b3480156104de57600080fd5b506102ac6104ed36600461243f565b611307565b3480156104fe57600080fd5b5061027661134b565b34801561051357600080fd5b506102c3611482565b34801561052857600080fd5b50610332611491565b34801561053d57600080fd5b506103746114a2565b34801561055257600080fd5b506102766114a8565b34801561056757600080fd5b506103746114b1565b34801561057c57600080fd5b506103746114b7565b34801561059157600080fd5b506102ac6105a03660046122cd565b6114bd565b6102ac6105b336600461241d565b61158b565b3480156105c457600080fd5b506102ac6117da565b3480156105d957600080fd5b5061037461182a565b3480156105ee57600080fd5b506102ac6105fd366004612254565b611830565b34801561060e57600080fd5b506102ac61186f565b34801561062357600080fd5b506102c361063236600461243f565b6118bd565b34801561064357600080fd5b506102ac61065236600461241d565b611940565b34801561066357600080fd5b506102f06119a1565b34801561067857600080fd5b506102766119b6565b34801561068d57600080fd5b5061027661069c3660046121e7565b6119c4565b3480156106ad57600080fd5b506102ac6106bc3660046121cd565b6119f2565b60006001600160e01b031982166380ac58cd60e01b14806106f257506001600160e01b03198216635b5e139f60e01b145b80610701575061070182611a60565b90505b919050565b610711611a79565b6001600160a01b03166107226112f8565b6001600160a01b0316146107515760405162461bcd60e51b815260040161074890612a10565b60405180910390fd5b600c80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b60606000805461078a90612e04565b80601f01602080910402602001604051908101604052809291908181526020018280546107b690612e04565b80156108035780601f106107d857610100808354040283529160200191610803565b820191906000526020600020905b8154815290600101906020018083116107e657829003601f168201915b505050505090505b90565b600061081982611a7d565b6108355760405162461bcd60e51b815260040161074890612975565b506000908152600460205260409020546001600160a01b031690565b600061085c826109f4565b9050806001600160a01b0316836001600160a01b031614156108905760405162461bcd60e51b815260040161074890612b61565b806001600160a01b03166108a2611a79565b6001600160a01b031614806108be57506108be8161069c611a79565b6108da5760405162461bcd60e51b815260040161074890612764565b6108e48383611a9a565b505050565b600654600160a01b900461ffff1690565b61090b610905611a79565b82611b08565b6109275760405162461bcd60e51b815260040161074890612bcc565b6108e4838383611b8d565b60075481565b6108e483838360405180602001604052806000815250611830565b61095b611a79565b6001600160a01b031661096c6112f8565b6001600160a01b0316146109925760405162461bcd60e51b815260040161074890612a10565b600c805460ff19169055565b6109a6611a79565b6001600160a01b03166109b76112f8565b6001600160a01b0316146109dd5760405162461bcd60e51b815260040161074890612a10565b80516109f090600b9060208401906120b6565b5050565b6000818152600260205260408120546001600160a01b0316806107015760405162461bcd60e51b815260040161074890612855565b600c546201000090046001600160a01b0316610a436108e9565b600660166101000a81548161ffff021916908361ffff160217905550610a676112f8565b6001600160a01b0316336001600160a01b031614610aac57600c5460ff610100909104161515600114610aac5760405162461bcd60e51b8152600401610748906128f4565b6040516370a0823160e01b81526000906001600160a01b038316906370a0823190610adb9033906004016124ca565b60206040518083038186803b158015610af357600080fd5b505afa158015610b07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2b9190612457565b11610b485760405162461bcd60e51b815260040161074890612c1d565b6040516370a0823160e01b81526001600160a01b038216906370a0823190610b749033906004016124ca565b60206040518083038186803b158015610b8c57600080fd5b505afa158015610ba0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc49190612457565b610bcd33611001565b10610bea5760405162461bcd60e51b815260040161074890612b14565b6008546040516370a0823160e01b81526001600160a01b038316906370a0823190610c199033906004016124ca565b60206040518083038186803b158015610c3157600080fd5b505afa158015610c45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c699190612457565b610c716108e9565b61ffff16610c7f9190612d76565b1115610c9d5760405162461bcd60e51b815260040161074890612a45565b6040516370a0823160e01b81526001600160a01b038216906370a0823190610cc99033906004016124ca565b60206040518083038186803b158015610ce157600080fd5b505afa158015610cf5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d199190612457565b60068054601490610d36908490600160a01b900461ffff16612d59565b92506101000a81548161ffff021916908361ffff16021790555060005b6040516370a0823160e01b81526001600160a01b038316906370a0823190610d7f9033906004016124ca565b60206040518083038186803b158015610d9757600080fd5b505afa158015610dab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dcf9190612457565b811015610e7757610e1e610de1611a79565b60068054601690610dfc90600160b01b900461ffff16612e3f565b91906101000a81548161ffff021916908361ffff160217905561ffff16611cba565b7fd9dc24857f317ed9abbbb42e920ede0104231eb1d3d70236a74887ffaf159868600660169054906101000a900461ffff16604051610e5d9190612d41565b60405180910390a180610e6f81612e61565b915050610d53565b506040516370a0823160e01b81526001600160a01b038216906370a0823190610ea49033906004016124ca565b60206040518083038186803b158015610ebc57600080fd5b505afa158015610ed0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef49190612457565b600854610f019190612dc1565b60085550565b610f0f611a79565b6001600160a01b0316610f206112f8565b6001600160a01b031614610f465760405162461bcd60e51b815260040161074890612a10565b600c805461ff001916610100179055565b610f5f611a79565b6001600160a01b0316610f706112f8565b6001600160a01b031614610f965760405162461bcd60e51b815260040161074890612a10565b600955565b610fa3611a79565b6001600160a01b0316610fb46112f8565b6001600160a01b031614610fda5760405162461bcd60e51b815260040161074890612a10565b600754811115610ffc5760405162461bcd60e51b815260040161074890612cfd565b600755565b60006001600160a01b0382166110295760405162461bcd60e51b81526004016107489061280b565b506001600160a01b031660009081526003602052604090205490565b61104d611a79565b6001600160a01b031661105e6112f8565b6001600160a01b0316146110845760405162461bcd60e51b815260040161074890612a10565b61108e6000611cd4565b565b611098611a79565b6001600160a01b03166110a96112f8565b6001600160a01b0316146110cf5760405162461bcd60e51b815260040161074890612a10565b6110d76108e9565b6006805461ffff92909216600160b01b0261ffff60b01b19909216919091179055600754816111046108e9565b61ffff166111129190612d76565b11156111305760405162461bcd60e51b8152600401610748906127c1565b8061114d5760405162461bcd60e51b815260040161074890612539565b60005b8181101561120057600083838381811061117a57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061118f91906121cd565b6001600160a01b031614156111b65760405162461bcd60e51b815260040161074890612570565b6111ee8383838181106111d957634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610de191906121cd565b806111f881612e61565b915050611150565b5060065461121a908290600160a01b900461ffff16612d59565b600660146101000a81548161ffff021916908361ffff1602179055505050565b611242611a79565b6001600160a01b03166112536112f8565b6001600160a01b0316146112795760405162461bcd60e51b815260040161074890612a10565b6000336001600160a01b0316476040516112929061080b565b60006040518083038185875af1925050503d80600081146112cf576040519150601f19603f3d011682016040523d82523d6000602084013e6112d4565b606091505b50509050806112f55760405162461bcd60e51b815260040161074890612ba2565b50565b6006546001600160a01b031690565b61130f611a79565b6001600160a01b03166113206112f8565b6001600160a01b0316146113465760405162461bcd60e51b815260040161074890612a10565b600a55565b600c546040516370a0823160e01b81526000916201000090046001600160a01b031690829082906370a08231906113869033906004016124ca565b60206040518083038186803b15801561139e57600080fd5b505afa1580156113b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113d69190612457565b11801561146557506040516370a0823160e01b81526001600160a01b038216906370a082319061140a9033906004016124ca565b60206040518083038186803b15801561142257600080fd5b505afa158015611436573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145a9190612457565b61146333611001565b105b1561147457600191505061080b565b600091505061080b565b5090565b60606001805461078a90612e04565b600654600160a01b900461ffff1681565b600a5490565b600c5460ff1681565b60095481565b600a5481565b6114c5611a79565b6001600160a01b0316826001600160a01b031614156114f65760405162461bcd60e51b8152600401610748906126ba565b8060056000611503611a79565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611547611a79565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161157f919061251b565b60405180910390a35050565b6115936108e9565b600660166101000a81548161ffff021916908361ffff1602179055506115b76112f8565b6001600160a01b0316336001600160a01b0316146115f657600c5460ff1615156001146115f65760405162461bcd60e51b815260040161074890612cb6565b60008161ffff1611801561162357506009548161ffff1661161633611001565b6116209190612d76565b11155b61163f5760405162461bcd60e51b815260040161074890612c60565b60095461164b33611001565b106116685760405162461bcd60e51b81526004016107489061289e565b6116706112f8565b6001600160a01b0316336001600160a01b0316146116c557600754816116946108e9565b61169e9190612d59565b61ffff1611156116c05760405162461bcd60e51b81526004016107489061273d565b6116fd565b600754816116d16108e9565b6116db9190612d59565b61ffff1611156116fd5760405162461bcd60e51b81526004016107489061273d565b8061ffff16600a5461170f9190612da2565b34101561172e5760405162461bcd60e51b8152600401610748906129c1565b80600660148282829054906101000a900461ffff1661174d9190612d59565b92506101000a81548161ffff021916908361ffff16021790555060005b8161ffff168110156109f057611781610de1611a79565b7fd9dc24857f317ed9abbbb42e920ede0104231eb1d3d70236a74887ffaf159868600660169054906101000a900461ffff166040516117c09190612d41565b60405180910390a1806117d281612e61565b91505061176a565b6117e2611a79565b6001600160a01b03166117f36112f8565b6001600160a01b0316146118195760405162461bcd60e51b815260040161074890612a10565b6118216108e9565b61ffff16600755565b60085481565b61184161183b611a79565b83611b08565b61185d5760405162461bcd60e51b815260040161074890612bcc565b61186984848484611d26565b50505050565b611877611a79565b6001600160a01b03166118886112f8565b6001600160a01b0316146118ae5760405162461bcd60e51b815260040161074890612a10565b600c805460ff19166001179055565b60606118c882611a7d565b6118e45760405162461bcd60e51b815260040161074890612ac5565b60006118ee611d59565b9050600081511161190e5760405180602001604052806000815250611939565b8061191884611d68565b60405160200161192992919061249b565b6040516020818303038152906040525b9392505050565b611948611a79565b6001600160a01b03166119596112f8565b6001600160a01b03161461197f5760405162461bcd60e51b815260040161074890612a10565b6006805461ffff909216600160a01b0261ffff60a01b19909216919091179055565b600c546201000090046001600160a01b031681565b600c54610100900460ff1681565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6119fa611a79565b6001600160a01b0316611a0b6112f8565b6001600160a01b031614611a315760405162461bcd60e51b815260040161074890612a10565b6001600160a01b038116611a575760405162461bcd60e51b8152600401610748906125f9565b6112f581611cd4565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611acf826109f4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b1382611a7d565b611b2f5760405162461bcd60e51b8152600401610748906126f1565b6000611b3a836109f4565b9050806001600160a01b0316846001600160a01b03161480611b755750836001600160a01b0316611b6a8461080e565b6001600160a01b0316145b80611b855750611b8581856119c4565b949350505050565b826001600160a01b0316611ba0826109f4565b6001600160a01b031614611bc65760405162461bcd60e51b815260040161074890612a7c565b6001600160a01b038216611bec5760405162461bcd60e51b815260040161074890612676565b611bf78383836108e4565b611c02600082611a9a565b6001600160a01b0383166000908152600360205260408120805460019290611c2b908490612dc1565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c59908490612d76565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109f0828260405180602001604052806000815250611e83565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d31848484611b8d565b611d3d84848484611eb6565b6118695760405162461bcd60e51b8152600401610748906125a7565b6060600b805461078a90612e04565b606081611d8d57506040805180820190915260018152600360fc1b6020820152610704565b8160005b8115611db75780611da181612e61565b9150611db09050600a83612d8e565b9150611d91565b60008167ffffffffffffffff811115611de057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e0a576020820181803683370190505b5090505b8415611b8557611e1f600183612dc1565b9150611e2c600a86612e7c565b611e37906030612d76565b60f81b818381518110611e5a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611e7c600a86612d8e565b9450611e0e565b611e8d8383611fd1565b611e9a6000848484611eb6565b6108e45760405162461bcd60e51b8152600401610748906125a7565b6000611eca846001600160a01b03166120b0565b15611fc657836001600160a01b031663150b7a02611ee6611a79565b8786866040518563ffffffff1660e01b8152600401611f0894939291906124de565b602060405180830381600087803b158015611f2257600080fd5b505af1925050508015611f52575060408051601f3d908101601f19168201909252611f4f918101906123bb565b60015b611fac573d808015611f80576040519150601f19603f3d011682016040523d82523d6000602084013e611f85565b606091505b508051611fa45760405162461bcd60e51b8152600401610748906125a7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b85565b506001949350505050565b6001600160a01b038216611ff75760405162461bcd60e51b815260040161074890612940565b61200081611a7d565b1561201d5760405162461bcd60e51b81526004016107489061263f565b612029600083836108e4565b6001600160a01b0382166000908152600360205260408120805460019290612052908490612d76565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b8280546120c290612e04565b90600052602060002090601f0160209004810192826120e4576000855561212a565b82601f106120fd57805160ff191683800117855561212a565b8280016001018555821561212a579182015b8281111561212a57825182559160200191906001019061210f565b5061147e9291505b8082111561147e5760008155600101612132565b600067ffffffffffffffff8084111561216157612161612ebc565b604051601f8501601f19168101602001828111828210171561218557612185612ebc565b60405284815291508183850186101561219d57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461070457600080fd5b6000602082840312156121de578081fd5b611939826121b6565b600080604083850312156121f9578081fd5b612202836121b6565b9150612210602084016121b6565b90509250929050565b60008060006060848603121561222d578081fd5b612236846121b6565b9250612244602085016121b6565b9150604084013590509250925092565b60008060008060808587031215612269578081fd5b612272856121b6565b9350612280602086016121b6565b925060408501359150606085013567ffffffffffffffff8111156122a2578182fd5b8501601f810187136122b2578182fd5b6122c187823560208401612146565b91505092959194509250565b600080604083850312156122df578182fd5b6122e8836121b6565b9150602083013580151581146122fc578182fd5b809150509250929050565b60008060408385031215612319578182fd5b612322836121b6565b946020939093013593505050565b60008060208385031215612342578182fd5b823567ffffffffffffffff80821115612359578384fd5b818501915085601f83011261236c578384fd5b81358181111561237a578485fd5b866020808302850101111561238d578485fd5b60209290920196919550909350505050565b6000602082840312156123b0578081fd5b813561193981612ed2565b6000602082840312156123cc578081fd5b815161193981612ed2565b6000602082840312156123e8578081fd5b813567ffffffffffffffff8111156123fe578182fd5b8201601f8101841361240e578182fd5b611b8584823560208401612146565b60006020828403121561242e578081fd5b813561ffff81168114611939578182fd5b600060208284031215612450578081fd5b5035919050565b600060208284031215612468578081fd5b5051919050565b60008151808452612487816020860160208601612dd8565b601f01601f19169290920160200192915050565b600083516124ad818460208801612dd8565b8351908301906124c1818360208801612dd8565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125119083018461246f565b9695505050505050565b901515815260200190565b600060208252611939602083018461246f565b6020808252601d908201527f41646472657373206e6f7420666f756e6420666f72206d696e74696e67000000604082015260600190565b60208082526017908201527f4d696e74696e6720746f204e756c6c2061646472657373000000000000000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600d908201526c105b1b081391951cc81cdbdb19609a1b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f41697264726f70206d696e74696e672077696c6c20657863656564206d6178696040820152696d756d20737570706c7960b01b606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526036908201527f596f7520686176652072656163686564206d6178696d756d204e4654206d696e6040820152751d1a5b99c81b1a5b5a5d081c195c881858d8dbdd5b9d60521b606082015260800190565b6020808252602c908201527f436c61696d204e4654206973206e6f74206f70656e20706c656173652074727960408201526b1030b3b0b4b7103630ba32b960a11b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602f908201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60408201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526018908201527f416c6c20616c6c6f776564204e46547320636c61696d65640000000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252602d908201527f596f75206861766520636c61696d656420616c6c6f7764204e46547320666f7260408201526c081d1a1a5cc81858d8dbdd5b9d609a1b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526023908201527f596f7520617265206e6f7420656c696769626c6520666f72206672656520636c60408201526261696d60e81b606082015260800190565b60208082526036908201527f596f752068617665207265616368656420746865204e4654206d696e74696e67604082015275103634b6b4ba103832b9103a3930b739b0b1ba34b7b760511b606082015260800190565b60208082526027908201527f53616c65206973206e6f74206f70656e20706c6561736520747279206167616960408201526637103630ba32b960c91b606082015260800190565b60208082526024908201527f4d617820737570706c792063616e206e6f74206265206d6f7265207468616e206040820152630383030360e41b606082015260800190565b61ffff91909116815260200190565b90815260200190565b600061ffff8083168185168083038211156124c1576124c1612e90565b60008219821115612d8957612d89612e90565b500190565b600082612d9d57612d9d612ea6565b500490565b6000816000190483118215151615612dbc57612dbc612e90565b500290565b600082821015612dd357612dd3612e90565b500390565b60005b83811015612df3578181015183820152602001612ddb565b838111156118695750506000910152565b600281046001821680612e1857607f821691505b60208210811415612e3957634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415612e5757612e57612e90565b6001019392505050565b6000600019821415612e7557612e75612e90565b5060010190565b600082612e8b57612e8b612ea6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112f557600080fdfea264697066735822122098dab28fdd8e2886849e42c26f2b906a0c378c03d7862af92fb2f17978e6b16064736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000023687474703a2f2f6e66742e73686962656c6f6e2e6e65742f756e72657665616c65642f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): http://nft.shibelon.net/unrevealed/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [2] : 687474703a2f2f6e66742e73686962656c6f6e2e6e65742f756e72657665616c
Arg [3] : 65642f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
36595:5628:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23481:355;;;;;;;;;;-1:-1:-1;23481:355:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38412:136;;;;;;;;;;-1:-1:-1;38412:136:0;;;;;:::i;:::-;;:::i;:::-;;24650:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26343:308::-;;;;;;;;;;-1:-1:-1;26343:308:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25866:411::-;;;;;;;;;;-1:-1:-1;25866:411:0;;;;;:::i;:::-;;:::i;37906:87::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27402:376::-;;;;;;;;;;-1:-1:-1;27402:376:0;;;;;:::i;:::-;;:::i;36711:31::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27849:185::-;;;;;;;;;;-1:-1:-1;27849:185:0;;;;;:::i;:::-;;:::i;38206:73::-;;;;;;;;;;;;;:::i;37277:101::-;;;;;;;;;;-1:-1:-1;37277:101:0;;;;;:::i;:::-;;:::i;24257:326::-;;;;;;;;;;-1:-1:-1;24257:326:0;;;;;:::i;:::-;;:::i;39280:1000::-;;;:::i;38578:80::-;;;;;;;;;;;;;:::i;37484:104::-;;;;;;;;;;-1:-1:-1;37484:104:0;;;;;:::i;:::-;;:::i;37596:187::-;;;;;;;;;;-1:-1:-1;37596:187:0;;;;;:::i;:::-;;:::i;23900:295::-;;;;;;;;;;-1:-1:-1;23900:295:0;;;;;:::i;:::-;;:::i;8369:94::-;;;;;;;;;;;;;:::i;41502:597::-;;;;;;;;;;-1:-1:-1;41502:597:0;;;;;:::i;:::-;;:::i;38779:174::-;;;;;;;;;;;;;:::i;7718:87::-;;;;;;;;;;;;;:::i;37386:90::-;;;;;;;;;;-1:-1:-1;37386:90:0;;;;;:::i;:::-;;:::i;38961:294::-;;;;;;;;;;;;;:::i;24819:104::-;;;;;;;;;;;;;:::i;36639:27::-;;;;;;;;;;;;;:::i;38095:81::-;;;;;;;;;;;;;:::i;36924:27::-;;;;;;;;;;;;;:::i;36795:30::-;;;;;;;;;;;;;:::i;36832:41::-;;;;;;;;;;;;;:::i;26723:327::-;;;;;;;;;;-1:-1:-1;26723:327:0;;;;;:::i;:::-;;:::i;40308:1182::-;;;;;;:::i;:::-;;:::i;38001:86::-;;;;;;;;;;;;;:::i;36749:39::-;;;;;;;;;;;;;:::i;28105:365::-;;;;;;;;;;-1:-1:-1;28105:365:0;;;;;:::i;:::-;;:::i;38308:74::-;;;;;;;;;;;;;:::i;24994:468::-;;;;;;;;;;-1:-1:-1;24994:468:0;;;;;:::i;:::-;;:::i;37795:99::-;;;;;;;;;;-1:-1:-1;37795:99:0;;;;;:::i;:::-;;:::i;36999:78::-;;;;;;;;;;;;;:::i;36958:28::-;;;;;;;;;;;;;:::i;27121:214::-;;;;;;;;;;-1:-1:-1;27121:214:0;;;;;:::i;:::-;;:::i;8618:229::-;;;;;;;;;;-1:-1:-1;8618:229:0;;;;;:::i;:::-;;:::i;23481:355::-;23628:4;-1:-1:-1;;;;;;23670:40:0;;-1:-1:-1;;;23670:40:0;;:105;;-1:-1:-1;;;;;;;23727:48:0;;-1:-1:-1;;;23727:48:0;23670:105;:158;;;;23792:36;23816:11;23792:23;:36::i;:::-;23650:178;;23481:355;;;;:::o;38412:136::-;7949:12;:10;:12::i;:::-;-1:-1:-1;;;;;7938:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7938:23:0;;7930:68;;;;-1:-1:-1;;;7930:68:0;;;;;;;:::i;:::-;;;;;;;;;38500:18:::1;:40:::0;;-1:-1:-1;;;;;38500:40:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;38500:40:0;;::::1;::::0;;;::::1;::::0;;38412:136::o;24650:100::-;24704:13;24737:5;24730:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24650:100;;:::o;26343:308::-;26464:7;26511:16;26519:7;26511;:16::i;:::-;26489:110;;;;-1:-1:-1;;;26489:110:0;;;;;;;:::i;:::-;-1:-1:-1;26619:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26619:24:0;;26343:308::o;25866:411::-;25947:13;25963:23;25978:7;25963:14;:23::i;:::-;25947:39;;26011:5;-1:-1:-1;;;;;26005:11:0;:2;-1:-1:-1;;;;;26005:11:0;;;25997:57;;;;-1:-1:-1;;;25997:57:0;;;;;;;:::i;:::-;26105:5;-1:-1:-1;;;;;26089:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26089:21:0;;:62;;;;26114:37;26131:5;26138:12;:10;:12::i;26114:37::-;26067:168;;;;-1:-1:-1;;;26067:168:0;;;;;;;:::i;:::-;26248:21;26257:2;26261:7;26248:8;:21::i;:::-;25866:411;;;:::o;37906:87::-;37976:9;;-1:-1:-1;;;37976:9:0;;;;;37906:87::o;27402:376::-;27611:41;27630:12;:10;:12::i;:::-;27644:7;27611:18;:41::i;:::-;27589:140;;;;-1:-1:-1;;;27589:140:0;;;;;;;:::i;:::-;27742:28;27752:4;27758:2;27762:7;27742:9;:28::i;36711:31::-;;;;:::o;27849:185::-;27987:39;28004:4;28010:2;28014:7;27987:39;;;;;;;;;;;;:16;:39::i;38206:73::-;7949:12;:10;:12::i;:::-;-1:-1:-1;;;;;7938:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7938:23:0;;7930:68;;;;-1:-1:-1;;;7930:68:0;;;;;;;:::i;:::-;38255:8:::1;:16:::0;;-1:-1:-1;;38255:16:0::1;::::0;;38206:73::o;37277:101::-;7949:12;:10;:12::i;:::-;-1:-1:-1;;;;;7938:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7938:23:0;;7930:68;;;;-1:-1:-1;;;7930:68:0;;;;;;;:::i;:::-;37348:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;37277:101:::0;:::o;24257:326::-;24374:7;24415:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24415:16:0;24464:19;24442:110;;;;-1:-1:-1;;;24442:110:0;;;;;;;:::i;39280:1000::-;39348:18;;;;;-1:-1:-1;;;;;39348:18:0;39388:13;:11;:13::i;:::-;39379:6;;:22;;;;;;;;;;;;;;;;;;39430:7;:5;:7::i;:::-;-1:-1:-1;;;;;39416:21:0;:10;-1:-1:-1;;;;;39416:21:0;;39412:130;;39463:9;;;;;;;;:17;;:9;:17;39454:76;;;;-1:-1:-1;;;39454:76:0;;;;;;;:::i;:::-;39584:25;;-1:-1:-1;;;39584:25:0;;39612:1;;-1:-1:-1;;;;;39584:13:0;;;;;:25;;39598:10;;39584:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:29;39562:114;;;;-1:-1:-1;;;39562:114:0;;;;;;;:::i;:::-;39721:25;;-1:-1:-1;;;39721:25:0;;-1:-1:-1;;;;;39721:13:0;;;;;:25;;39735:10;;39721:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39697:21;39707:10;39697:9;:21::i;:::-;:49;39689:107;;;;-1:-1:-1;;;39689:107:0;;;;;;;:::i;:::-;39889:18;;39859:25;;-1:-1:-1;;;39859:25:0;;-1:-1:-1;;;;;39859:13:0;;;;;:25;;39873:10;;39859:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39843:13;:11;:13::i;:::-;:41;;;;;;:::i;:::-;:65;;39817:151;;;;-1:-1:-1;;;39817:151:0;;;;;;;:::i;:::-;40001:25;;-1:-1:-1;;;40001:25:0;;-1:-1:-1;;;;;40001:13:0;;;;;:25;;40015:10;;40001:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39981:9;:46;;:9;;:46;;;;-1:-1:-1;;;39981:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;40045:9;40040:153;40064:25;;-1:-1:-1;;;40064:25:0;;-1:-1:-1;;;;;40064:13:0;;;;;:25;;40078:10;;40064:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40060:1;:29;40040:153;;;40111:33;40121:12;:10;:12::i;:::-;40137:6;40135:8;;40137:6;;40135:8;;-1:-1:-1;;;40135:8:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;40111:33;;:9;:33::i;:::-;40164:17;40174:6;;;;;;;;;;;40164:17;;;;;;:::i;:::-;;;;;;;;40091:3;;;;:::i;:::-;;;;40040:153;;;-1:-1:-1;40247:25:0;;-1:-1:-1;;;40247:25:0;;-1:-1:-1;;;;;40247:13:0;;;;;:25;;40261:10;;40247:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40226:18;;:46;;;;:::i;:::-;40205:18;:67;-1:-1:-1;39280:1000:0:o;38578:80::-;7949:12;:10;:12::i;:::-;-1:-1:-1;;;;;7938:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7938:23:0;;7930:68;;;;-1:-1:-1;;;7930:68:0;;;;;;;:::i;:::-;38634:9:::1;:16:::0;;-1:-1:-1;;38634:16:0::1;;;::::0;;38578:80::o;37484:104::-;7949:12;:10;:12::i;:::-;-1:-1:-1;;;;;7938:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7938:23:0;;7930:68;;;;-1:-1:-1;;;7930:68:0;;;;;;;:::i;:::-;37555:11:::1;:25:::0;37484:104::o;37596:187::-;7949:12;:10;:12::i;:::-;-1:-1:-1;;;;;7938:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7938:23:0;;7930:68;;;;-1:-1:-1;;;7930:68:0;;;;;;;:::i;:::-;37690:10:::1;;37675:11;:25;;37667:73;;;;-1:-1:-1::0;;;37667:73:0::1;;;;;;;:::i;:::-;37751:10;:24:::0;37596:187::o;23900:295::-;24017:7;-1:-1:-1;;;;;24064:19:0;;24042:111;;;;-1:-1:-1;;;24042:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;24171:16:0;;;;;:9;:16;;;;;;;23900:295::o;8369:94::-;7949:12;:10;:12::i;:::-;-1:-1:-1;;;;;7938:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7938:23:0;;7930:68;;;;-1:-1:-1;;;7930:68:0;;;;;;;:::i;:::-;8434:21:::1;8452:1;8434:9;:21::i;:::-;8369:94::o:0;41502:597::-;7949:12;:10;:12::i;:::-;-1:-1:-1;;;;;7938:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7938:23:0;;7930:68;;;;-1:-1:-1;;;7930:68:0;;;;;;;:::i;:::-;41590:13:::1;:11;:13::i;:::-;41581:6;:22:::0;;::::1;::::0;;;::::1;-1:-1:-1::0;;;41581:22:0::1;-1:-1:-1::0;;;;41581:22:0;;::::1;::::0;;;::::1;::::0;;41674:10:::1;::::0;41652:11;41636:13:::1;:11;:13::i;:::-;:34;;;;;;:::i;:::-;:48;;41614:140;;;;-1:-1:-1::0;;;41614:140:0::1;;;;;;;:::i;:::-;41773:23:::0;41765:65:::1;;;;-1:-1:-1::0;;;41765:65:0::1;;;;;;;:::i;:::-;41846:9;41841:190;41861:22:::0;;::::1;41841:190;;;41939:1;41913:11:::0;;41925:1;41913:14;;::::1;;;-1:-1:-1::0;;;41913:14:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;41913:28:0::1;;;41905:64;;;;-1:-1:-1::0;;;41905:64:0::1;;;;;;;:::i;:::-;41984:35;41994:11;;42006:1;41994:14;;;;;-1:-1:-1::0;;;41994:14:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;41984:35::-;41885:3:::0;::::1;::::0;::::1;:::i;:::-;;;;41841:190;;;-1:-1:-1::0;42053:9:0::1;::::0;:38:::1;::::0;42072:11;;-1:-1:-1;;;42053:9:0;::::1;;;:38;:::i;:::-;42041:9;;:50;;;;;;;;;;;;;;;;;;41502:597:::0;;:::o;38779:174::-;7949:12;:10;:12::i;:::-;-1:-1:-1;;;;;7938:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7938:23:0;;7930:68;;;;-1:-1:-1;;;7930:68:0;;;;;;;:::i;:::-;38831:12:::1;38849:10;-1:-1:-1::0;;;;;38849:15:0::1;38872:21;38849:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38830:68;;;38917:7;38909:36;;;;-1:-1:-1::0;;;38909:36:0::1;;;;;;;:::i;:::-;8009:1;38779:174::o:0;7718:87::-;7791:6;;-1:-1:-1;;;;;7791:6:0;7718:87;:::o;37386:90::-;7949:12;:10;:12::i;:::-;-1:-1:-1;;;;;7938:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7938:23:0;;7930:68;;;;-1:-1:-1;;;7930:68:0;;;;;;;:::i;:::-;37451:5:::1;:17:::0;37386:90::o;38961:294::-;39050:18;;39084:25;;-1:-1:-1;;;39084:25:0;;39011:4;;39050:18;;;-1:-1:-1;;;;;39050:18:0;;39011:4;;39050:18;;39084:13;;:25;;39098:10;;39084:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:29;:82;;;;-1:-1:-1;39141:25:0;;-1:-1:-1;;;39141:25:0;;-1:-1:-1;;;;;39141:13:0;;;;;:25;;39155:10;;39141:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39117:21;39127:10;39117:9;:21::i;:::-;:49;39084:82;39081:167;;;39189:4;39182:11;;;;;39081:167;39231:5;39224:12;;;;;39081:167;38961:294;;:::o;24819:104::-;24875:13;24908:7;24901:14;;;;;:::i;36639:27::-;;;-1:-1:-1;;;36639:27:0;;;;;:::o;38095:81::-;38163:5;;38095:81;:::o;36924:27::-;;;;;;:::o;36795:30::-;;;;:::o;36832:41::-;;;;:::o;26723:327::-;26870:12;:10;:12::i;:::-;-1:-1:-1;;;;;26858:24:0;:8;-1:-1:-1;;;;;26858:24:0;;;26850:62;;;;-1:-1:-1;;;26850:62:0;;;;;;;:::i;:::-;26970:8;26925:18;:32;26944:12;:10;:12::i;:::-;-1:-1:-1;;;;;26925:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;26925:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;26925:53:0;;;;;;;;;;;27009:12;:10;:12::i;:::-;-1:-1:-1;;;;;26994:48:0;;27033:8;26994:48;;;;;;:::i;:::-;;;;;;;;26723:327;;:::o;40308:1182::-;40375:13;:11;:13::i;:::-;40366:6;;:22;;;;;;;;;;;;;;;;;;40419:7;:5;:7::i;:::-;-1:-1:-1;;;;;40405:21:0;:10;-1:-1:-1;;;;;40405:21:0;;40401:124;;40452:8;;;;:16;;:8;:16;40443:70;;;;-1:-1:-1;;;40443:70:0;;;;;;;:::i;:::-;40576:1;40567:6;:10;;;:59;;;;;40615:11;;40604:6;40582:28;;:21;40592:10;40582:9;:21::i;:::-;:28;;;;:::i;:::-;40581:45;;40567:59;40545:162;;;;-1:-1:-1;;;40545:162:0;;;;;;;:::i;:::-;40760:11;;40736:21;40746:10;40736:9;:21::i;:::-;:35;40728:102;;;;-1:-1:-1;;;40728:102:0;;;;;;;:::i;:::-;40869:7;:5;:7::i;:::-;-1:-1:-1;;;;;40855:21:0;:10;-1:-1:-1;;;;;40855:21:0;;40851:309;;40945:10;;40935:6;40919:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;;;40893:111;;;;-1:-1:-1;;;40893:111:0;;;;;;;:::i;:::-;40851:309;;;41088:10;;41077:6;41061:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;;;;41035:113;;;;-1:-1:-1;;;41035:113:0;;;;;;;:::i;:::-;41223:6;41215:14;;:5;;:14;;;;:::i;:::-;41202:9;:27;;41180:124;;;;-1:-1:-1;;;41180:124:0;;;;;;;:::i;:::-;41330:6;41317:9;;:19;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;41354:9;41349:134;41373:6;41369:10;;:1;:10;41349:134;;;41401:33;41411:12;:10;:12::i;41401:33::-;41454:17;41464:6;;;;;;;;;;;41454:17;;;;;;:::i;:::-;;;;;;;;41381:3;;;;:::i;:::-;;;;41349:134;;38001:86;7949:12;:10;:12::i;:::-;-1:-1:-1;;;;;7938:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7938:23:0;;7930:68;;;;-1:-1:-1;;;7930:68:0;;;;;;;:::i;:::-;38066:13:::1;:11;:13::i;:::-;38053:26;;:10;:26:::0;38001:86::o;36749:39::-;;;;:::o;28105:365::-;28294:41;28313:12;:10;:12::i;:::-;28327:7;28294:18;:41::i;:::-;28272:140;;;;-1:-1:-1;;;28272:140:0;;;;;;;:::i;:::-;28423:39;28437:4;28443:2;28447:7;28456:5;28423:13;:39::i;:::-;28105:365;;;;:::o;38308:74::-;7949:12;:10;:12::i;:::-;-1:-1:-1;;;;;7938:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7938:23:0;;7930:68;;;;-1:-1:-1;;;7930:68:0;;;;;;;:::i;:::-;38359:8:::1;:15:::0;;-1:-1:-1;;38359:15:0::1;38370:4;38359:15;::::0;;38308:74::o;24994:468::-;25112:13;25165:16;25173:7;25165;:16::i;:::-;25143:113;;;;-1:-1:-1;;;25143:113:0;;;;;;;:::i;:::-;25269:21;25293:10;:8;:10::i;:::-;25269:34;;25358:1;25340:7;25334:21;:25;:120;;;;;;;;;;;;;;;;;25403:7;25412:18;:7;:16;:18::i;:::-;25386:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25334:120;25314:140;24994:468;-1:-1:-1;;;24994:468:0:o;37795:99::-;7949:12;:10;:12::i;:::-;-1:-1:-1;;;;;7938:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7938:23:0;;7930:68;;;;-1:-1:-1;;;7930:68:0;;;;;;;:::i;:::-;37864:9:::1;:22:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;37864:22:0::1;-1:-1:-1::0;;;;37864:22:0;;::::1;::::0;;;::::1;::::0;;37795:99::o;36999:78::-;;;;;;-1:-1:-1;;;;;36999:78:0;;:::o;36958:28::-;;;;;;;;;:::o;27121:214::-;-1:-1:-1;;;;;27292:25:0;;;27263:4;27292:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27121:214::o;8618:229::-;7949:12;:10;:12::i;:::-;-1:-1:-1;;;;;7938:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7938:23:0;;7930:68;;;;-1:-1:-1;;;7930:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8721:22:0;::::1;8699:110;;;;-1:-1:-1::0;;;8699:110:0::1;;;;;;;:::i;:::-;8820:19;8830:8;8820:9;:19::i;9827:207::-:0;-1:-1:-1;;;;;;9986:40:0;;-1:-1:-1;;;9986:40:0;9827:207;;;:::o;691:98::-;771:10;691:98;:::o;30017:127::-;30082:4;30106:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30106:16:0;:30;;;30017:127::o;34140:174::-;34215:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34215:29:0;-1:-1:-1;;;;;34215:29:0;;;;;;;;:24;;34269:23;34215:24;34269:14;:23::i;:::-;-1:-1:-1;;;;;34260:46:0;;;;;;;;;;;34140:174;;:::o;30311:452::-;30440:4;30484:16;30492:7;30484;:16::i;:::-;30462:110;;;;-1:-1:-1;;;30462:110:0;;;;;;;:::i;:::-;30583:13;30599:23;30614:7;30599:14;:23::i;:::-;30583:39;;30652:5;-1:-1:-1;;;;;30641:16:0;:7;-1:-1:-1;;;;;30641:16:0;;:64;;;;30698:7;-1:-1:-1;;;;;30674:31:0;:20;30686:7;30674:11;:20::i;:::-;-1:-1:-1;;;;;30674:31:0;;30641:64;:113;;;;30722:32;30739:5;30746:7;30722:16;:32::i;:::-;30633:122;30311:452;-1:-1:-1;;;;30311:452:0:o;33407:615::-;33580:4;-1:-1:-1;;;;;33553:31:0;:23;33568:7;33553:14;:23::i;:::-;-1:-1:-1;;;;;33553:31:0;;33531:122;;;;-1:-1:-1;;;33531:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33672:16:0;;33664:65;;;;-1:-1:-1;;;33664:65:0;;;;;;;:::i;:::-;33742:39;33763:4;33769:2;33773:7;33742:20;:39::i;:::-;33846:29;33863:1;33867:7;33846:8;:29::i;:::-;-1:-1:-1;;;;;33888:15:0;;;;;;:9;:15;;;;;:20;;33907:1;;33888:15;:20;;33907:1;;33888:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33919:13:0;;;;;;:9;:13;;;;;:18;;33936:1;;33919:13;:18;;33936:1;;33919:18;:::i;:::-;;;;-1:-1:-1;;33948:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33948:21:0;-1:-1:-1;;;;;33948:21:0;;;;;;;;;33987:27;;33948:16;;33987:27;;;;;;;33407:615;;;:::o;31105:110::-;31181:26;31191:2;31195:7;31181:26;;;;;;;;;;;;:9;:26::i;8855:173::-;8930:6;;;-1:-1:-1;;;;;8947:17:0;;;-1:-1:-1;;;;;;8947:17:0;;;;;;;8980:40;;8930:6;;;8947:17;8930:6;;8980:40;;8911:16;;8980:40;8855:173;;:::o;29352:352::-;29509:28;29519:4;29525:2;29529:7;29509:9;:28::i;:::-;29570:48;29593:4;29599:2;29603:7;29612:5;29570:22;:48::i;:::-;29548:148;;;;-1:-1:-1;;;29548:148:0;;;;;;;:::i;42107:113::-;42167:13;42200:12;42193:19;;;;;:::i;10348:723::-;10404:13;10625:10;10621:53;;-1:-1:-1;10652:10:0;;;;;;;;;;;;-1:-1:-1;;;10652:10:0;;;;;;10621:53;10699:5;10684:12;10740:78;10747:9;;10740:78;;10773:8;;;;:::i;:::-;;-1:-1:-1;10796:10:0;;-1:-1:-1;10804:2:0;10796:10;;:::i;:::-;;;10740:78;;;10828:19;10860:6;10850:17;;;;;;-1:-1:-1;;;10850:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10850:17:0;;10828:39;;10878:154;10885:10;;10878:154;;10912:11;10922:1;10912:11;;:::i;:::-;;-1:-1:-1;10981:10:0;10989:2;10981:5;:10;:::i;:::-;10968:24;;:2;:24;:::i;:::-;10955:39;;10938:6;10945;10938:14;;;;;;-1:-1:-1;;;10938:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;10938:56:0;;;;;;;;-1:-1:-1;11009:11:0;11018:2;11009:11;;:::i;:::-;;;10878:154;;31442:321;31572:18;31578:2;31582:7;31572:5;:18::i;:::-;31623:54;31654:1;31658:2;31662:7;31671:5;31623:22;:54::i;:::-;31601:154;;;;-1:-1:-1;;;31601:154:0;;;;;;;:::i;34879:984::-;35034:4;35055:15;:2;-1:-1:-1;;;;;35055:13:0;;:15::i;:::-;35051:805;;;35124:2;-1:-1:-1;;;;;35108:36:0;;35167:12;:10;:12::i;:::-;35202:4;35229:7;35259:5;35108:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35108:175:0;;;;;;;;-1:-1:-1;;35108:175:0;;;;;;;;;;;;:::i;:::-;;;35087:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35470:13:0;;35466:320;;35513:108;;-1:-1:-1;;;35513:108:0;;;;;;;:::i;35466:320::-;35736:6;35730:13;35721:6;35717:2;35713:15;35706:38;35087:714;-1:-1:-1;;;;;;35347:55:0;-1:-1:-1;;;35347:55:0;;-1:-1:-1;35340:62:0;;35051:805;-1:-1:-1;35840:4:0;34879:984;;;;;;:::o;32099:382::-;-1:-1:-1;;;;;32179:16:0;;32171:61;;;;-1:-1:-1;;;32171:61:0;;;;;;;:::i;:::-;32252:16;32260:7;32252;:16::i;:::-;32251:17;32243:58;;;;-1:-1:-1;;;32243:58:0;;;;;;;:::i;:::-;32314:45;32343:1;32347:2;32351:7;32314:20;:45::i;:::-;-1:-1:-1;;;;;32372:13:0;;;;;;:9;:13;;;;;:18;;32389:1;;32372:13;:18;;32389:1;;32372:18;:::i;:::-;;;;-1:-1:-1;;32401:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32401:21:0;-1:-1:-1;;;;;32401:21:0;;;;;;;;32440:33;;32401:16;;;32440:33;;32401:16;;32440:33;32099:382;;:::o;12901:387::-;13224:20;13272:8;;;12901:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:666::-;;;3134:2;3122:9;3113:7;3109:23;3105:32;3102:2;;;3155:6;3147;3140:22;3102:2;3200:9;3187:23;3229:18;3270:2;3262:6;3259:14;3256:2;;;3291:6;3283;3276:22;3256:2;3334:6;3323:9;3319:22;3309:32;;3379:7;3372:4;3368:2;3364:13;3360:27;3350:2;;3406:6;3398;3391:22;3350:2;3451;3438:16;3477:2;3469:6;3466:14;3463:2;;;3498:6;3490;3483:22;3463:2;3557:7;3552:2;3546;3538:6;3534:15;3530:2;3526:24;3522:33;3519:46;3516:2;;;3583:6;3575;3568:22;3516:2;3619;3611:11;;;;;3641:6;;-1:-1:-1;3092:561:1;;-1:-1:-1;;;;3092:561:1:o;3658:257::-;;3769:2;3757:9;3748:7;3744:23;3740:32;3737:2;;;3790:6;3782;3775:22;3737:2;3834:9;3821:23;3853:32;3879:5;3853:32;:::i;3920:261::-;;4042:2;4030:9;4021:7;4017:23;4013:32;4010:2;;;4063:6;4055;4048:22;4010:2;4100:9;4094:16;4119:32;4145:5;4119:32;:::i;4186:482::-;;4308:2;4296:9;4287:7;4283:23;4279:32;4276:2;;;4329:6;4321;4314:22;4276:2;4374:9;4361:23;4407:18;4399:6;4396:30;4393:2;;;4444:6;4436;4429:22;4393:2;4472:22;;4525:4;4517:13;;4513:27;-1:-1:-1;4503:2:1;;4559:6;4551;4544:22;4503:2;4587:75;4654:7;4649:2;4636:16;4631:2;4627;4623:11;4587:75;:::i;4673:292::-;;4784:2;4772:9;4763:7;4759:23;4755:32;4752:2;;;4805:6;4797;4790:22;4752:2;4849:9;4836:23;4899:6;4892:5;4888:18;4881:5;4878:29;4868:2;;4926:6;4918;4911:22;4970:190;;5082:2;5070:9;5061:7;5057:23;5053:32;5050:2;;;5103:6;5095;5088:22;5050:2;-1:-1:-1;5131:23:1;;5040:120;-1:-1:-1;5040:120:1:o;5165:194::-;;5288:2;5276:9;5267:7;5263:23;5259:32;5256:2;;;5309:6;5301;5294:22;5256:2;-1:-1:-1;5337:16:1;;5246:113;-1:-1:-1;5246:113:1:o;5364:259::-;;5445:5;5439:12;5472:6;5467:3;5460:19;5488:63;5544:6;5537:4;5532:3;5528:14;5521:4;5514:5;5510:16;5488:63;:::i;:::-;5605:2;5584:15;-1:-1:-1;;5580:29:1;5571:39;;;;5612:4;5567:50;;5415:208;-1:-1:-1;;5415:208:1:o;5628:470::-;;5845:6;5839:13;5861:53;5907:6;5902:3;5895:4;5887:6;5883:17;5861:53;:::i;:::-;5977:13;;5936:16;;;;5999:57;5977:13;5936:16;6033:4;6021:17;;5999:57;:::i;:::-;6072:20;;5815:283;-1:-1:-1;;;;5815:283:1:o;6313:203::-;-1:-1:-1;;;;;6477:32:1;;;;6459:51;;6447:2;6432:18;;6414:102::o;6521:490::-;-1:-1:-1;;;;;6790:15:1;;;6772:34;;6842:15;;6837:2;6822:18;;6815:43;6889:2;6874:18;;6867:34;;;6937:3;6932:2;6917:18;;6910:31;;;6521:490;;6958:47;;6985:19;;6977:6;6958:47;:::i;:::-;6950:55;6724:287;-1:-1:-1;;;;;;6724:287:1:o;7016:187::-;7181:14;;7174:22;7156:41;;7144:2;7129:18;;7111:92::o;7208:221::-;;7357:2;7346:9;7339:21;7377:46;7419:2;7408:9;7404:18;7396:6;7377:46;:::i;7434:353::-;7636:2;7618:21;;;7675:2;7655:18;;;7648:30;7714:31;7709:2;7694:18;;7687:59;7778:2;7763:18;;7608:179::o;7792:347::-;7994:2;7976:21;;;8033:2;8013:18;;;8006:30;8072:25;8067:2;8052:18;;8045:53;8130:2;8115:18;;7966:173::o;8144:414::-;8346:2;8328:21;;;8385:2;8365:18;;;8358:30;8424:34;8419:2;8404:18;;8397:62;-1:-1:-1;;;8490:2:1;8475:18;;8468:48;8548:3;8533:19;;8318:240::o;8563:402::-;8765:2;8747:21;;;8804:2;8784:18;;;8777:30;8843:34;8838:2;8823:18;;8816:62;-1:-1:-1;;;8909:2:1;8894:18;;8887:36;8955:3;8940:19;;8737:228::o;8970:352::-;9172:2;9154:21;;;9211:2;9191:18;;;9184:30;9250;9245:2;9230:18;;9223:58;9313:2;9298:18;;9144:178::o;9327:400::-;9529:2;9511:21;;;9568:2;9548:18;;;9541:30;9607:34;9602:2;9587:18;;9580:62;-1:-1:-1;;;9673:2:1;9658:18;;9651:34;9717:3;9702:19;;9501:226::o;9732:349::-;9934:2;9916:21;;;9973:2;9953:18;;;9946:30;10012:27;10007:2;9992:18;;9985:55;10072:2;10057:18;;9906:175::o;10086:408::-;10288:2;10270:21;;;10327:2;10307:18;;;10300:30;10366:34;10361:2;10346:18;;10339:62;-1:-1:-1;;;10432:2:1;10417:18;;10410:42;10484:3;10469:19;;10260:234::o;10499:337::-;10701:2;10683:21;;;10740:2;10720:18;;;10713:30;-1:-1:-1;;;10774:2:1;10759:18;;10752:43;10827:2;10812:18;;10673:163::o;10841:420::-;11043:2;11025:21;;;11082:2;11062:18;;;11055:30;11121:34;11116:2;11101:18;;11094:62;11192:26;11187:2;11172:18;;11165:54;11251:3;11236:19;;11015:246::o;11266:406::-;11468:2;11450:21;;;11507:2;11487:18;;;11480:30;11546:34;11541:2;11526:18;;11519:62;-1:-1:-1;;;11612:2:1;11597:18;;11590:40;11662:3;11647:19;;11440:232::o;11677:406::-;11879:2;11861:21;;;11918:2;11898:18;;;11891:30;11957:34;11952:2;11937:18;;11930:62;-1:-1:-1;;;12023:2:1;12008:18;;12001:40;12073:3;12058:19;;11851:232::o;12088:405::-;12290:2;12272:21;;;12329:2;12309:18;;;12302:30;12368:34;12363:2;12348:18;;12341:62;-1:-1:-1;;;12434:2:1;12419:18;;12412:39;12483:3;12468:19;;12262:231::o;12498:418::-;12700:2;12682:21;;;12739:2;12719:18;;;12712:30;12778:34;12773:2;12758:18;;12751:62;-1:-1:-1;;;12844:2:1;12829:18;;12822:52;12906:3;12891:19;;12672:244::o;12921:408::-;13123:2;13105:21;;;13162:2;13142:18;;;13135:30;13201:34;13196:2;13181:18;;13174:62;-1:-1:-1;;;13267:2:1;13252:18;;13245:42;13319:3;13304:19;;13095:234::o;13334:356::-;13536:2;13518:21;;;13555:18;;;13548:30;13614:34;13609:2;13594:18;;13587:62;13681:2;13666:18;;13508:182::o;13695:408::-;13897:2;13879:21;;;13936:2;13916:18;;;13909:30;13975:34;13970:2;13955:18;;13948:62;-1:-1:-1;;;14041:2:1;14026:18;;14019:42;14093:3;14078:19;;13869:234::o;14108:411::-;14310:2;14292:21;;;14349:2;14329:18;;;14322:30;14388:34;14383:2;14368:18;;14361:62;-1:-1:-1;;;14454:2:1;14439:18;;14432:45;14509:3;14494:19;;14282:237::o;14524:356::-;14726:2;14708:21;;;14745:18;;;14738:30;14804:34;14799:2;14784:18;;14777:62;14871:2;14856:18;;14698:182::o;14885:348::-;15087:2;15069:21;;;15126:2;15106:18;;;15099:30;15165:26;15160:2;15145:18;;15138:54;15224:2;15209:18;;15059:174::o;15238:405::-;15440:2;15422:21;;;15479:2;15459:18;;;15452:30;15518:34;15513:2;15498:18;;15491:62;-1:-1:-1;;;15584:2:1;15569:18;;15562:39;15633:3;15618:19;;15412:231::o;15648:411::-;15850:2;15832:21;;;15889:2;15869:18;;;15862:30;15928:34;15923:2;15908:18;;15901:62;-1:-1:-1;;;15994:2:1;15979:18;;15972:45;16049:3;16034:19;;15822:237::o;16064:409::-;16266:2;16248:21;;;16305:2;16285:18;;;16278:30;16344:34;16339:2;16324:18;;16317:62;-1:-1:-1;;;16410:2:1;16395:18;;16388:43;16463:3;16448:19;;16238:235::o;16478:397::-;16680:2;16662:21;;;16719:2;16699:18;;;16692:30;16758:34;16753:2;16738:18;;16731:62;-1:-1:-1;;;16824:2:1;16809:18;;16802:31;16865:3;16850:19;;16652:223::o;16880:340::-;17082:2;17064:21;;;17121:2;17101:18;;;17094:30;-1:-1:-1;;;17155:2:1;17140:18;;17133:46;17211:2;17196:18;;17054:166::o;17225:413::-;17427:2;17409:21;;;17466:2;17446:18;;;17439:30;17505:34;17500:2;17485:18;;17478:62;-1:-1:-1;;;17571:2:1;17556:18;;17549:47;17628:3;17613:19;;17399:239::o;17643:399::-;17845:2;17827:21;;;17884:2;17864:18;;;17857:30;17923:34;17918:2;17903:18;;17896:62;-1:-1:-1;;;17989:2:1;17974:18;;17967:33;18032:3;18017:19;;17817:225::o;18047:418::-;18249:2;18231:21;;;18288:2;18268:18;;;18261:30;18327:34;18322:2;18307:18;;18300:62;-1:-1:-1;;;18393:2:1;18378:18;;18371:52;18455:3;18440:19;;18221:244::o;18470:403::-;18672:2;18654:21;;;18711:2;18691:18;;;18684:30;18750:34;18745:2;18730:18;;18723:62;-1:-1:-1;;;18816:2:1;18801:18;;18794:37;18863:3;18848:19;;18644:229::o;18878:400::-;19080:2;19062:21;;;19119:2;19099:18;;;19092:30;19158:34;19153:2;19138:18;;19131:62;-1:-1:-1;;;19224:2:1;19209:18;;19202:34;19268:3;19253:19;;19052:226::o;19283:188::-;19457:6;19445:19;;;;19427:38;;19415:2;19400:18;;19382:89::o;19670:177::-;19816:25;;;19804:2;19789:18;;19771:76::o;19852:224::-;;19919:6;19952:2;19949:1;19945:10;19982:2;19979:1;19975:10;20013:3;20009:2;20005:12;20000:3;19997:21;19994:2;;;20021:18;;:::i;20081:128::-;;20152:1;20148:6;20145:1;20142:13;20139:2;;;20158:18;;:::i;:::-;-1:-1:-1;20194:9:1;;20129:80::o;20214:120::-;;20280:1;20270:2;;20285:18;;:::i;:::-;-1:-1:-1;20319:9:1;;20260:74::o;20339:168::-;;20445:1;20441;20437:6;20433:14;20430:1;20427:21;20422:1;20415:9;20408:17;20404:45;20401:2;;;20452:18;;:::i;:::-;-1:-1:-1;20492:9:1;;20391:116::o;20512:125::-;;20580:1;20577;20574:8;20571:2;;;20585:18;;:::i;:::-;-1:-1:-1;20622:9:1;;20561:76::o;20642:258::-;20714:1;20724:113;20738:6;20735:1;20732:13;20724:113;;;20814:11;;;20808:18;20795:11;;;20788:39;20760:2;20753:10;20724:113;;;20855:6;20852:1;20849:13;20846:2;;;-1:-1:-1;;20890:1:1;20872:16;;20865:27;20695:205::o;20905:380::-;20990:1;20980:12;;21037:1;21027:12;;;21048:2;;21102:4;21094:6;21090:17;21080:27;;21048:2;21155;21147:6;21144:14;21124:18;21121:38;21118:2;;;21201:10;21196:3;21192:20;21189:1;21182:31;21236:4;21233:1;21226:15;21264:4;21261:1;21254:15;21118:2;;20960:325;;;:::o;21290:197::-;;21356:6;21397:2;21390:5;21386:14;21424:2;21415:7;21412:15;21409:2;;;21430:18;;:::i;:::-;21479:1;21466:15;;21336:151;-1:-1:-1;;;21336:151:1:o;21492:135::-;;-1:-1:-1;;21552:17:1;;21549:2;;;21572:18;;:::i;:::-;-1:-1:-1;21619:1:1;21608:13;;21539:88::o;21632:112::-;;21690:1;21680:2;;21695:18;;:::i;:::-;-1:-1:-1;21729:9:1;;21670:74::o;21749:127::-;21810:10;21805:3;21801:20;21798:1;21791:31;21841:4;21838:1;21831:15;21865:4;21862:1;21855:15;21881:127;21942:10;21937:3;21933:20;21930:1;21923:31;21973:4;21970:1;21963:15;21997:4;21994:1;21987:15;22013:127;22074:10;22069:3;22065:20;22062:1;22055:31;22105:4;22102:1;22095:15;22129:4;22126:1;22119:15;22145:133;-1:-1:-1;;;;;;22221:32:1;;22211:43;;22201:2;;22268:1;22265;22258:12
Swarm Source
ipfs://98dab28fdd8e2886849e42c26f2b906a0c378c03d7862af92fb2f17978e6b160
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.